2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
import * as send from 'koa-send';
|
2019-03-18 05:20:49 +01:00
|
|
|
import * as rename from 'rename';
|
2019-02-03 10:16:57 +01:00
|
|
|
import { serverLogger } from '..';
|
2019-03-18 07:23:45 +01:00
|
|
|
import { contentDisposition } from '../../misc/content-disposition';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { DriveFiles } from '../../models';
|
|
|
|
import { InternalStorage } from '../../services/drive/internal-storage';
|
2018-05-03 13:03:14 +02:00
|
|
|
|
2018-05-04 10:59:51 +02:00
|
|
|
const assets = `${__dirname}/../../server/file/assets/`;
|
|
|
|
|
2019-11-24 09:09:32 +01:00
|
|
|
const commonReadableHandlerGenerator = (ctx: Koa.Context) => (e: Error): void => {
|
2019-02-03 10:16:57 +01:00
|
|
|
serverLogger.error(e);
|
2018-05-03 13:03:14 +02:00
|
|
|
ctx.status = 500;
|
|
|
|
};
|
2018-04-12 23:06:18 +02:00
|
|
|
|
2019-11-24 09:09:32 +01:00
|
|
|
export default async function(ctx: Koa.Context) {
|
2019-04-07 14:50:36 +02:00
|
|
|
const key = ctx.params.key;
|
2018-04-12 23:06:18 +02:00
|
|
|
|
|
|
|
// Fetch drive file
|
2019-04-07 14:50:36 +02:00
|
|
|
const file = await DriveFiles.createQueryBuilder('file')
|
|
|
|
.where('file.accessKey = :accessKey', { accessKey: key })
|
|
|
|
.orWhere('file.thumbnailAccessKey = :thumbnailAccessKey', { thumbnailAccessKey: key })
|
|
|
|
.orWhere('file.webpublicAccessKey = :webpublicAccessKey', { webpublicAccessKey: key })
|
|
|
|
.getOne();
|
2018-04-12 23:06:18 +02:00
|
|
|
|
|
|
|
if (file == null) {
|
|
|
|
ctx.status = 404;
|
2019-01-22 13:42:05 +01:00
|
|
|
await send(ctx as any, '/dummy.png', { root: assets });
|
2018-04-12 23:06:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (!file.storedInternal) {
|
2018-05-25 13:19:14 +02:00
|
|
|
ctx.status = 204;
|
2018-04-17 13:04:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const isThumbnail = file.thumbnailAccessKey === key;
|
|
|
|
const isWebpublic = file.webpublicAccessKey === key;
|
|
|
|
|
|
|
|
if (isThumbnail) {
|
|
|
|
ctx.set('Content-Type', 'image/jpeg');
|
|
|
|
ctx.set('Content-Disposition', contentDisposition('inline', `${rename(file.name, { suffix: '-thumb', extname: '.jpeg' })}`));
|
|
|
|
ctx.body = InternalStorage.read(key);
|
|
|
|
} else if (isWebpublic) {
|
2019-07-05 10:44:23 +02:00
|
|
|
ctx.set('Content-Type', file.type === 'image/apng' ? 'image/png' : file.type);
|
2019-04-07 14:50:36 +02:00
|
|
|
ctx.set('Content-Disposition', contentDisposition('inline', `${rename(file.name, { suffix: '-web' })}`));
|
|
|
|
ctx.body = InternalStorage.read(key);
|
2018-05-03 13:03:14 +02:00
|
|
|
} else {
|
2019-10-04 13:18:41 +02:00
|
|
|
ctx.set('Content-Disposition', contentDisposition('inline', `${file.name}`));
|
2018-04-12 23:06:18 +02:00
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const readable = InternalStorage.read(file.accessKey!);
|
2019-04-07 14:50:36 +02:00
|
|
|
readable.on('error', commonReadableHandlerGenerator(ctx));
|
|
|
|
ctx.set('Content-Type', file.type);
|
|
|
|
ctx.body = readable;
|
2018-05-03 13:03:14 +02:00
|
|
|
}
|
2018-04-12 23:06:18 +02:00
|
|
|
}
|