iceshrimp-legacy/src/web/service/url-preview.ts

14 lines
372 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
import * as express from 'express';
import summaly from 'summaly';
module.exports = async (req: express.Request, res: express.Response) => {
const summary = await summaly(req.query.url);
summary.icon = wrap(summary.icon);
summary.thumbnail = wrap(summary.thumbnail);
res.send(summary);
};
function wrap(url: string): string {
return `${config.proxy_url}/${url}`;
}