2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* File Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
import * as cors from '@koa/cors';
|
|
|
|
import * as Router from 'koa-router';
|
|
|
|
import pour from './pour';
|
|
|
|
import sendDriveFile from './send-drive-file';
|
|
|
|
|
|
|
|
// Init app
|
|
|
|
const app = new Koa();
|
2016-12-28 23:49:51 +01:00
|
|
|
app.use(cors());
|
|
|
|
|
2018-04-13 02:44:00 +02:00
|
|
|
app.use(async (ctx, next) => {
|
2018-04-13 18:46:03 +02:00
|
|
|
// Cache 365days
|
2018-04-13 02:44:00 +02:00
|
|
|
ctx.set('Cache-Control', 'max-age=31536000, immutable');
|
|
|
|
await next();
|
|
|
|
});
|
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get('/default-avatar.jpg', ctx => {
|
2017-11-10 02:54:08 +01:00
|
|
|
const file = fs.createReadStream(`${__dirname}/assets/avatar.jpg`);
|
2018-04-12 23:06:18 +02:00
|
|
|
pour(file, 'image/jpeg', ctx);
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get('/app-default.jpg', ctx => {
|
2017-11-10 02:54:08 +01:00
|
|
|
const file = fs.createReadStream(`${__dirname}/assets/dummy.png`);
|
2018-04-12 23:06:18 +02:00
|
|
|
pour(file, 'image/png', ctx);
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get('/:id', sendDriveFile);
|
2018-04-13 02:44:00 +02:00
|
|
|
router.get('/:id/*', sendDriveFile);
|
2017-11-06 07:39:16 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Register router
|
|
|
|
app.use(router.routes());
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
module.exports = app;
|