summaryrefslogtreecommitdiff
path: root/src/server/web/url-preview.ts
blob: d5464d0cd4e0bdc4caa237813367b8add39968e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
		? `https://images.weserv.nl/?url=${url.replace(/^https?:\/\//, '')}`
		: null;
}