2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
2016-12-28 23:49:51 +01:00
|
|
|
import summaly from 'summaly';
|
2019-04-24 01:11:19 +02:00
|
|
|
import { fetchMeta } from '../../misc/fetch-meta';
|
2019-03-02 10:51:59 +01:00
|
|
|
import Logger from '../../services/logger';
|
2019-03-10 17:03:09 +01:00
|
|
|
import config from '../../config';
|
|
|
|
import { query } from '../../prelude/url';
|
2020-04-09 16:42:23 +02:00
|
|
|
import { getJson } from '../../misc/fetch';
|
2019-02-28 04:00:57 +01:00
|
|
|
|
|
|
|
const logger = new Logger('url-preview');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-11-24 09:09:32 +01:00
|
|
|
module.exports = async (ctx: Koa.Context) => {
|
2018-11-23 00:13:17 +01:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
|
2019-03-01 06:40:29 +01:00
|
|
|
logger.info(meta.summalyProxy
|
2019-06-21 08:41:02 +02:00
|
|
|
? `(Proxy) Getting preview of ${ctx.query.url}@${ctx.query.lang} ...`
|
|
|
|
: `Getting preview of ${ctx.query.url}@${ctx.query.lang} ...`);
|
2019-02-28 04:00:57 +01:00
|
|
|
|
2018-05-18 05:08:05 +02:00
|
|
|
try {
|
2020-04-09 16:42:23 +02:00
|
|
|
const summary = meta.summalyProxy ? await getJson(`${meta.summalyProxy}?${query({
|
|
|
|
url: ctx.query.url,
|
|
|
|
lang: ctx.query.lang || 'ja-JP'
|
|
|
|
})}`) : await summaly(ctx.query.url, {
|
2019-06-21 08:41:02 +02:00
|
|
|
followRedirects: false,
|
|
|
|
lang: ctx.query.lang || 'ja-JP'
|
2018-05-18 05:21:53 +02:00
|
|
|
});
|
2018-08-25 18:56:21 +02:00
|
|
|
|
2019-02-28 04:00:57 +01:00
|
|
|
logger.succ(`Got preview of ${ctx.query.url}: ${summary.title}`);
|
|
|
|
|
2018-05-18 05:08:05 +02:00
|
|
|
summary.icon = wrap(summary.icon);
|
|
|
|
summary.thumbnail = wrap(summary.thumbnail);
|
2018-04-13 18:45:44 +02:00
|
|
|
|
2018-05-18 05:08:05 +02:00
|
|
|
// Cache 7days
|
|
|
|
ctx.set('Cache-Control', 'max-age=604800, immutable');
|
2018-04-13 18:45:44 +02:00
|
|
|
|
2018-05-18 05:08:05 +02:00
|
|
|
ctx.body = summary;
|
|
|
|
} catch (e) {
|
2019-06-13 15:35:37 +02:00
|
|
|
logger.warn(`Failed to get preview of ${ctx.query.url}: ${e}`);
|
2018-08-11 11:04:59 +02:00
|
|
|
ctx.status = 200;
|
|
|
|
ctx.set('Cache-Control', 'max-age=86400, immutable');
|
|
|
|
ctx.body = '{}';
|
2018-05-18 05:08:05 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
function wrap(url?: string): string | null {
|
2017-01-14 02:51:48 +01:00
|
|
|
return url != null
|
2019-02-10 11:19:26 +01:00
|
|
|
? url.match(/^https?:\/\//)
|
2019-03-10 17:03:09 +01:00
|
|
|
? `${config.url}/proxy/preview.jpg?${query({
|
|
|
|
url,
|
|
|
|
preview: '1'
|
|
|
|
})}`
|
2019-02-10 11:19:26 +01:00
|
|
|
: url
|
2017-01-14 02:51:48 +01:00
|
|
|
: null;
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|