egirlskey/src/server/web/url-preview.ts

26 lines
612 B
TypeScript
Raw Normal View History

2018-04-12 21:06:18 +00:00
import * as Koa from 'koa';
2016-12-28 22:49:51 +00:00
import summaly from 'summaly';
2018-04-12 21:06:18 +00:00
module.exports = async (ctx: Koa.Context) => {
2018-05-18 03:08:05 +00:00
try {
const summary = await summaly(ctx.query.url);
summary.icon = wrap(summary.icon);
summary.thumbnail = wrap(summary.thumbnail);
2018-04-13 16:45:44 +00:00
2018-05-18 03:08:05 +00:00
// Cache 7days
ctx.set('Cache-Control', 'max-age=604800, immutable');
2018-04-13 16:45:44 +00:00
2018-05-18 03:08:05 +00:00
ctx.body = summary;
} catch (e) {
ctx.status = 500;
}
2016-12-28 22:49:51 +00:00
};
function wrap(url: string): string {
2017-01-14 01:51:48 +00:00
return url != null
? url.startsWith('https://') || url.startsWith('data:')
2018-05-05 17:08:27 +00:00
? url
2018-05-09 11:14:34 +00:00
: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
2017-01-14 01:51:48 +00:00
: null;
2016-12-28 22:49:51 +00:00
}