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 {
|
2017-01-14 02:51:48 +01:00
|
|
|
return url != null
|
|
|
|
? `https://images.weserv.nl/?url=${url.replace(/^https?:\/\//, '')}`
|
|
|
|
: null;
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|