Use proxy instead of weserv for url-preview images (#4466)
This commit is contained in:
parent
c6cdfa2f5a
commit
4d425fc8a4
2 changed files with 9 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ import * as request from 'request';
|
|||
import fileType from 'file-type';
|
||||
import { serverLogger } from '..';
|
||||
import config from '../../config';
|
||||
import { IImage, ConvertToPng } from '../../services/drive/image-processor';
|
||||
import { IImage, ConvertToPng, ConvertToJpeg } from '../../services/drive/image-processor';
|
||||
import checkSvg from '../../misc/check-svg';
|
||||
|
||||
export async function proxyMedia(ctx: Koa.BaseContext) {
|
||||
|
|
@ -29,6 +29,8 @@ export async function proxyMedia(ctx: Koa.BaseContext) {
|
|||
|
||||
if ('static' in ctx.query && ['image/png', 'image/gif'].includes(type)) {
|
||||
image = await ConvertToPng(path, 498, 280);
|
||||
} else if ('preview' in ctx.query && ['image/jpeg', 'image/png', 'image/gif'].includes(type)) {
|
||||
image = await ConvertToJpeg(path, 200, 200);
|
||||
} else {
|
||||
image = {
|
||||
data: fs.readFileSync(path),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue