summaryrefslogtreecommitdiff
path: root/src/server/web/url-preview.ts
blob: cd53837a25b0a07b9dd31cb0c4dc72a8b6562fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import * as Koa from 'koa';
import summaly from 'summaly';

module.exports = async (ctx: Koa.Context) => {
	const summary = await summaly(ctx.query.url);
	summary.icon = wrap(summary.icon);
	summary.thumbnail = wrap(summary.thumbnail);

	// Cache 7days
	ctx.set('Cache-Control', 'max-age=604800, immutable');

	ctx.body = summary;
};

function wrap(url: string): string {
	return url != null
		? url.startsWith('https://') || url.startsWith('data:')
			? url
			: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
		: null;
}