2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* File Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as express from 'express';
|
|
|
|
import * as bodyParser from 'body-parser';
|
|
|
|
import * as cors from 'cors';
|
|
|
|
import * as mongodb from 'mongodb';
|
|
|
|
import * as gm from 'gm';
|
|
|
|
|
2017-11-06 07:35:20 +01:00
|
|
|
import DriveFile, { getGridFSBucket } from '../api/models/drive-file';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
|
|
|
const app = express();
|
|
|
|
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
app.locals.cache = true;
|
|
|
|
app.use(bodyParser.urlencoded({ extended: true }));
|
|
|
|
app.use(cors());
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Statics
|
|
|
|
*/
|
2017-04-14 13:45:37 +02:00
|
|
|
app.use('/assets', express.static(`${__dirname}/assets`, {
|
2016-12-28 23:49:51 +01:00
|
|
|
maxAge: 1000 * 60 * 60 * 24 * 365 // 一年
|
|
|
|
}));
|
|
|
|
|
|
|
|
app.get('/', (req, res) => {
|
|
|
|
res.send('yee haw');
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/default-avatar.jpg', (req, res) => {
|
2017-04-14 13:45:37 +02:00
|
|
|
const file = fs.readFileSync(`${__dirname}/assets/avatar.jpg`);
|
2016-12-28 23:49:51 +01:00
|
|
|
send(file, 'image/jpeg', req, res);
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/app-default.jpg', (req, res) => {
|
2017-04-14 13:45:37 +02:00
|
|
|
const file = fs.readFileSync(`${__dirname}/assets/dummy.png`);
|
2016-12-28 23:49:51 +01:00
|
|
|
send(file, 'image/png', req, res);
|
|
|
|
});
|
|
|
|
|
|
|
|
async function raw(data: Buffer, type: string, download: boolean, res: express.Response): Promise<any> {
|
|
|
|
res.header('Content-Type', type);
|
|
|
|
|
|
|
|
if (download) {
|
|
|
|
res.header('Content-Disposition', 'attachment');
|
|
|
|
}
|
|
|
|
|
|
|
|
res.send(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function thumbnail(data: Buffer, type: string, resize: number, res: express.Response): Promise<any> {
|
|
|
|
if (!/^image\/.*$/.test(type)) {
|
2017-04-14 13:45:37 +02:00
|
|
|
data = fs.readFileSync(`${__dirname}/assets/dummy.png`);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let g = gm(data);
|
|
|
|
|
|
|
|
if (resize) {
|
|
|
|
g = g.resize(resize, resize);
|
|
|
|
}
|
|
|
|
|
|
|
|
g
|
2017-04-14 13:45:37 +02:00
|
|
|
.compress('jpeg')
|
|
|
|
.quality(80)
|
|
|
|
.toBuffer('jpeg', (err, img) => {
|
|
|
|
if (err !== undefined && err !== null) {
|
|
|
|
console.error(err);
|
|
|
|
res.sendStatus(500);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res.header('Content-Type', 'image/jpeg');
|
|
|
|
res.send(img);
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function send(data: Buffer, type: string, req: express.Request, res: express.Response): void {
|
|
|
|
if (req.query.thumbnail !== undefined) {
|
|
|
|
thumbnail(data, type, req.query.size, res);
|
|
|
|
} else {
|
|
|
|
raw(data, type, req.query.download !== undefined, res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Routing
|
|
|
|
*/
|
|
|
|
|
2017-02-06 14:04:00 +01:00
|
|
|
app.get('/:id', async (req, res) => {
|
|
|
|
// Validate id
|
|
|
|
if (!mongodb.ObjectID.isValid(req.params.id)) {
|
|
|
|
res.status(400).send('incorrect id');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-06 07:35:20 +01:00
|
|
|
const fileId = new mongodb.ObjectID(req.params.id)
|
|
|
|
const file = await DriveFile.findOne({ _id: fileId });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-01-26 15:11:42 +01:00
|
|
|
if (file == null) {
|
2017-11-06 07:37:04 +01:00
|
|
|
res.status(404).sendFile(`${__dirname}/assets/dummy.png`);
|
2016-12-28 23:49:51 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-06 07:35:20 +01:00
|
|
|
const bucket = await getGridFSBucket()
|
|
|
|
|
|
|
|
const buffer = await ((id): Promise<Buffer> => new Promise((resolve, reject) => {
|
|
|
|
const chunks = []
|
|
|
|
const readableStream = bucket.openDownloadStream(id)
|
|
|
|
readableStream.on('data', chunk => {
|
|
|
|
chunks.push(chunk);
|
|
|
|
})
|
|
|
|
readableStream.on('end', () => {
|
|
|
|
resolve(Buffer.concat(chunks))
|
|
|
|
})
|
|
|
|
}))(fileId)
|
|
|
|
|
|
|
|
send(buffer, file.metadata.type, req, res);
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2017-02-06 14:04:00 +01:00
|
|
|
app.get('/:id/:name', async (req, res) => {
|
|
|
|
// Validate id
|
|
|
|
if (!mongodb.ObjectID.isValid(req.params.id)) {
|
|
|
|
res.status(400).send('incorrect id');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-14 13:45:37 +02:00
|
|
|
const file = await File.findOne({ _id: new mongodb.ObjectID(req.params.id) });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-01-26 15:11:42 +01:00
|
|
|
if (file == null) {
|
2017-04-14 13:45:37 +02:00
|
|
|
res.status(404).sendFile(`${__dirname}/assets/dummy.png`);
|
2016-12-28 23:49:51 +01:00
|
|
|
return;
|
2017-01-26 15:11:42 +01:00
|
|
|
} else if (file.data == null) {
|
2017-02-06 14:04:00 +01:00
|
|
|
res.sendStatus(400);
|
2017-01-26 15:11:42 +01:00
|
|
|
return;
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
send(file.data.buffer, file.type, req, res);
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = app;
|