2018-07-26 16:54:08 -04:00
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
|
|
|
const config = require('config');
|
2017-10-09 22:01:02 -04:00
|
|
|
|
2018-07-26 19:01:16 -04:00
|
|
|
const ModelPath = '../models/';
|
|
|
|
const User = require(ModelPath + 'User.js');
|
|
|
|
const Upload = require(ModelPath + 'Upload.js');
|
|
|
|
const Key = require(ModelPath + 'Key.js');
|
2017-10-11 10:15:19 -04:00
|
|
|
|
2018-07-26 16:54:08 -04:00
|
|
|
const multer = require('multer');
|
2018-07-26 17:34:47 -04:00
|
|
|
const fileUpload = multer({dest: config.get('Upload.path')}).single('file');
|
2018-07-26 16:54:08 -04:00
|
|
|
const fsPromises = require('fs').promises;
|
2017-10-09 22:01:02 -04:00
|
|
|
|
2018-07-26 13:17:37 -04:00
|
|
|
const requireAuth = require('../util/requireAuth').requireAuth;
|
|
|
|
const wrap = require('../util/wrap.js').wrap;
|
|
|
|
|
|
|
|
const generatedIdExists = async id =>
|
|
|
|
await Upload.countDocuments({id: id}) === 1;
|
2017-10-22 12:19:51 -04:00
|
|
|
|
2018-07-26 13:17:37 -04:00
|
|
|
const generateId = async () => {
|
2018-07-26 17:34:47 -04:00
|
|
|
const charset = config.get('Upload.charset');
|
|
|
|
const len = config.get('Upload.idLength');
|
2018-07-26 13:17:37 -04:00
|
|
|
|
|
|
|
const id = [...Array(len)]
|
|
|
|
.map(() => charset.charAt(Math.floor(Math.random() * charset.length)))
|
|
|
|
.join('');
|
|
|
|
|
|
|
|
return await generatedIdExists(id)
|
|
|
|
? generateId()
|
|
|
|
: id;
|
2017-10-22 12:19:51 -04:00
|
|
|
};
|
2017-10-14 15:13:50 -04:00
|
|
|
|
2018-07-26 13:17:37 -04:00
|
|
|
const updateStats = async req =>
|
|
|
|
Promise.all([
|
|
|
|
User.updateOne({username: req.authUser}, {$inc: {uploadCount: 1, uploadSize: req.file.size}}),
|
|
|
|
req.authKey
|
|
|
|
? Key.updateOne({key: req.authKey}, {$inc: {uploadCount: 1, uploadSize: req.file.size}})
|
|
|
|
: Promise.resolve()
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
2018-07-26 19:01:16 -04:00
|
|
|
router.post('/', requireAuth('file.upload'), fileUpload, wrap(async (req, res) => {
|
2017-10-22 12:19:51 -04:00
|
|
|
if (!req.file)
|
2018-07-26 13:17:37 -04:00
|
|
|
return res.status(400).json({message: 'No file specified.'});
|
|
|
|
|
2018-07-26 17:34:47 -04:00
|
|
|
if (req.file.size > config.get('Upload.maxSize')) {
|
2018-07-26 16:54:08 -04:00
|
|
|
await fsPromises.unlink(req.file.path);
|
2018-07-26 13:17:37 -04:00
|
|
|
return res.status(413).json({message: 'File too large.'});
|
2018-07-26 16:54:08 -04:00
|
|
|
}
|
2018-07-26 13:17:37 -04:00
|
|
|
|
|
|
|
const upload = {
|
|
|
|
id: await generateId(),
|
|
|
|
uploader: req.authUser,
|
|
|
|
uploaderKey: req.authKey,
|
|
|
|
date: Date.now(),
|
|
|
|
file: req.file
|
|
|
|
};
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
Upload.create(upload),
|
|
|
|
updateStats(req)
|
|
|
|
]);
|
|
|
|
|
|
|
|
res.status(200).json({
|
|
|
|
id: upload.id,
|
2018-07-26 17:34:47 -04:00
|
|
|
url: config.get('Server.hostname') + '/v/' + upload.id
|
2017-10-09 22:01:02 -04:00
|
|
|
});
|
2018-07-26 13:17:37 -04:00
|
|
|
}));
|
2017-10-09 22:01:02 -04:00
|
|
|
|
|
|
|
module.exports = router;
|