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

51 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-04-12 21:06:18 +00:00
import * as Koa from 'koa';
2018-08-25 16:56:21 +00:00
import * as request from 'request-promise-native';
2016-12-28 22:49:51 +00:00
import summaly from 'summaly';
2018-11-22 23:13:17 +00:00
import fetchMeta from '../../misc/fetch-meta';
2019-02-28 03:00:57 +00:00
import Logger from '../../misc/logger';
const logger = new Logger('url-preview');
2016-12-28 22:49:51 +00:00
2019-01-22 12:42:05 +00:00
module.exports = async (ctx: Koa.BaseContext) => {
2018-11-22 23:13:17 +00:00
const meta = await fetchMeta();
2019-03-01 05:40:29 +00:00
logger.info(meta.summalyProxy
? `(Proxy) Getting preview of ${ctx.query.url} ...`
: `Getting preview of ${ctx.query.url} ...`);
2019-02-28 03:00:57 +00:00
2018-05-18 03:08:05 +00:00
try {
2018-11-22 23:13:17 +00:00
const summary = meta.summalyProxy ? await request.get({
url: meta.summalyProxy,
2018-08-25 16:56:21 +00:00
qs: {
url: ctx.query.url
},
json: true
}) : await summaly(ctx.query.url, {
2018-05-18 03:21:53 +00:00
followRedirects: false
});
2018-08-25 16:56:21 +00:00
2019-02-28 03:00:57 +00:00
logger.succ(`Got preview of ${ctx.query.url}: ${summary.title}`);
2018-05-18 03:08:05 +00:00
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) {
2019-02-28 03:00:57 +00:00
logger.error(`Failed to get preview of ${ctx.query.url}: ${e}`);
ctx.status = 200;
ctx.set('Cache-Control', 'max-age=86400, immutable');
ctx.body = '{}';
2018-05-18 03:08:05 +00:00
}
2016-12-28 22:49:51 +00:00
};
function wrap(url: string): string {
2017-01-14 01:51:48 +00:00
return url != null
2019-02-10 10:19:26 +00:00
? url.match(/^https?:\/\//)
? `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, '').replace(/^https:\/\//, 'ssl:'))}&w=200&h=200`
: url
2017-01-14 01:51:48 +00:00
: null;
2016-12-28 22:49:51 +00:00
}