Sharkey/packages/backend/src/server/web/UrlPreviewService.ts

87 lines
2.2 KiB
TypeScript
Raw Normal View History

2022-09-17 21:27:08 +03:00
import { Inject, Injectable } from '@nestjs/common';
import summaly from 'summaly';
import { DI } from '@/di-symbols.js';
import { UsersRepository } from '@/models/index.js';
import { Config } from '@/config.js';
import { MetaService } from '@/core/MetaService.js';
import { HttpRequestService } from '@/core/HttpRequestService.js';
2022-09-18 17:07:41 +03:00
import type Logger from '@/logger.js';
2022-09-17 21:27:08 +03:00
import { query } from '@/misc/prelude/url.js';
2022-09-18 17:07:41 +03:00
import { LoggerService } from '@/core/LoggerService.js';
2022-09-17 21:27:08 +03:00
import type Koa from 'koa';
@Injectable()
export class UrlPreviewService {
2022-09-18 21:11:50 +03:00
private logger: Logger;
2022-09-17 21:27:08 +03:00
constructor(
@Inject(DI.config)
private config: Config,
@Inject(DI.usersRepository)
private usersRepository: UsersRepository,
private metaService: MetaService,
private httpRequestService: HttpRequestService,
2022-09-18 17:07:41 +03:00
private loggerService: LoggerService,
2022-09-17 21:27:08 +03:00
) {
2022-09-18 21:11:50 +03:00
this.logger = this.loggerService.getLogger('url-preview');
2022-09-17 21:27:08 +03:00
}
2022-09-18 21:11:50 +03:00
private wrap(url?: string): string | null {
2022-09-17 21:27:08 +03:00
return url != null
? url.match(/^https?:\/\//)
? `${this.config.url}/proxy/preview.webp?${query({
url,
preview: '1',
})}`
: url
: null;
}
public async handle(ctx: Koa.Context) {
const url = ctx.query.url;
if (typeof url !== 'string') {
ctx.status = 400;
return;
}
const lang = ctx.query.lang;
if (Array.isArray(lang)) {
ctx.status = 400;
return;
}
const meta = await this.metaService.fetch();
2022-09-18 21:11:50 +03:00
this.logger.info(meta.summalyProxy
2022-09-17 21:27:08 +03:00
? `(Proxy) Getting preview of ${url}@${lang} ...`
: `Getting preview of ${url}@${lang} ...`);
try {
const summary = meta.summalyProxy ? await this.httpRequestService.getJson(`${meta.summalyProxy}?${query({
url: url,
lang: lang ?? 'ja-JP',
})}`) : await summaly.default(url, {
followRedirects: false,
lang: lang ?? 'ja-JP',
});
2022-09-18 21:11:50 +03:00
this.logger.succ(`Got preview of ${url}: ${summary.title}`);
2022-09-17 21:27:08 +03:00
2022-09-18 21:11:50 +03:00
summary.icon = this.wrap(summary.icon);
summary.thumbnail = this.wrap(summary.thumbnail);
2022-09-17 21:27:08 +03:00
// Cache 7days
ctx.set('Cache-Control', 'max-age=604800, immutable');
ctx.body = summary;
} catch (err) {
2022-09-18 21:11:50 +03:00
this.logger.warn(`Failed to get preview of ${url}: ${err}`);
2022-09-17 21:27:08 +03:00
ctx.status = 200;
ctx.set('Cache-Control', 'max-age=86400, immutable');
ctx.body = '{}';
}
}
}