2017-06-06 19:24:58 +02:00
|
|
|
const express = require('express');
|
2017-06-08 01:16:38 +02:00
|
|
|
const exphbs = require('express-handlebars');
|
2017-06-06 19:24:58 +02:00
|
|
|
const busboy = require('connect-busboy');
|
|
|
|
const path = require('path');
|
|
|
|
const bodyParser = require('body-parser');
|
2017-06-08 01:16:38 +02:00
|
|
|
const bytes = require('bytes');
|
|
|
|
const conf = require('./config.js');
|
2017-06-07 23:07:31 +02:00
|
|
|
const storage = require('./storage.js');
|
2017-06-06 00:35:36 +02:00
|
|
|
|
2017-06-09 19:44:12 +02:00
|
|
|
const notLocalHost = conf.notLocalHost;
|
2017-06-06 00:35:36 +02:00
|
|
|
|
2017-06-08 22:45:28 +02:00
|
|
|
const mozlog = require('./log.js');
|
|
|
|
|
2017-06-09 19:44:12 +02:00
|
|
|
const log = mozlog('portal.server');
|
2017-06-06 00:35:36 +02:00
|
|
|
|
2017-06-06 19:24:58 +02:00
|
|
|
const app = express();
|
2017-06-06 00:35:36 +02:00
|
|
|
|
2017-06-08 01:16:38 +02:00
|
|
|
app.engine('handlebars', exphbs({ defaultLayout: 'main' }));
|
|
|
|
app.set('view engine', 'handlebars');
|
2017-06-01 22:14:14 +02:00
|
|
|
|
|
|
|
app.use(busboy());
|
|
|
|
app.use(bodyParser.json());
|
2017-06-08 01:16:38 +02:00
|
|
|
|
2017-06-06 23:24:51 +02:00
|
|
|
app.use(express.static(path.join(__dirname, '../public')));
|
2017-06-01 22:14:14 +02:00
|
|
|
|
2017-06-08 01:16:38 +02:00
|
|
|
app.get('/', (req, res) => {
|
|
|
|
res.render('index');
|
|
|
|
});
|
|
|
|
|
2017-06-08 22:45:28 +02:00
|
|
|
app.get('/exists/:id', (req, res) => {
|
2017-06-09 19:44:12 +02:00
|
|
|
const id = req.params.id;
|
2017-06-08 22:45:28 +02:00
|
|
|
storage.exists(id).then(doesExist => {
|
|
|
|
res.sendStatus(doesExist ? 200 : 404);
|
2017-06-09 00:02:00 +02:00
|
|
|
});
|
2017-06-08 22:45:28 +02:00
|
|
|
});
|
|
|
|
|
2017-06-06 23:24:51 +02:00
|
|
|
app.get('/download/:id', (req, res) => {
|
2017-06-09 19:44:12 +02:00
|
|
|
const id = req.params.id;
|
2017-06-08 01:16:38 +02:00
|
|
|
storage.filename(id).then(filename => {
|
|
|
|
storage
|
|
|
|
.length(id)
|
|
|
|
.then(contentLength => {
|
|
|
|
res.render('download', {
|
|
|
|
filename: filename,
|
|
|
|
filesize: bytes(contentLength)
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
res.render('download');
|
|
|
|
});
|
|
|
|
});
|
2017-06-01 22:14:14 +02:00
|
|
|
});
|
|
|
|
|
2017-06-06 23:24:51 +02:00
|
|
|
app.get('/assets/download/:id', (req, res) => {
|
2017-06-09 19:44:12 +02:00
|
|
|
const id = req.params.id;
|
2017-06-06 23:24:51 +02:00
|
|
|
if (!validateID(id)) {
|
2017-06-06 19:24:58 +02:00
|
|
|
res.sendStatus(404);
|
2017-06-01 22:14:14 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-08 01:16:38 +02:00
|
|
|
storage
|
|
|
|
.filename(id)
|
|
|
|
.then(reply => {
|
2017-06-07 23:07:31 +02:00
|
|
|
storage.length(id).then(contentLength => {
|
2017-06-06 19:24:58 +02:00
|
|
|
res.writeHead(200, {
|
|
|
|
'Content-Disposition': 'attachment; filename=' + reply,
|
|
|
|
'Content-Type': 'application/octet-stream',
|
2017-06-07 23:07:31 +02:00
|
|
|
'Content-Length': contentLength
|
2017-06-06 19:23:37 +02:00
|
|
|
});
|
2017-06-09 19:44:12 +02:00
|
|
|
const file_stream = storage.get(id);
|
2017-06-06 00:35:36 +02:00
|
|
|
|
2017-06-08 02:03:03 +02:00
|
|
|
file_stream.on(notLocalHost ? 'finish' : 'close', () => {
|
|
|
|
storage.forceDelete(id).then(err => {
|
|
|
|
if (!err) {
|
2017-06-09 00:01:04 +02:00
|
|
|
log.info('Deleted:', id);
|
2017-06-08 02:03:03 +02:00
|
|
|
}
|
|
|
|
});
|
2017-06-07 23:07:31 +02:00
|
|
|
});
|
|
|
|
|
2017-06-08 02:03:03 +02:00
|
|
|
file_stream.pipe(res);
|
|
|
|
});
|
2017-06-08 01:16:38 +02:00
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
res.sendStatus(404);
|
|
|
|
});
|
2017-06-01 22:14:14 +02:00
|
|
|
});
|
|
|
|
|
2017-06-06 23:24:51 +02:00
|
|
|
app.post('/delete/:id', (req, res) => {
|
2017-06-09 19:44:12 +02:00
|
|
|
const id = req.params.id;
|
2017-06-01 22:14:14 +02:00
|
|
|
|
2017-06-06 23:24:51 +02:00
|
|
|
if (!validateID(id)) {
|
2017-06-01 22:14:14 +02:00
|
|
|
res.send(404);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-06 23:24:51 +02:00
|
|
|
|
2017-06-09 19:44:12 +02:00
|
|
|
const delete_token = req.body.delete_token;
|
2017-06-06 23:24:51 +02:00
|
|
|
|
|
|
|
if (!delete_token) {
|
2017-06-01 22:14:14 +02:00
|
|
|
res.sendStatus(404);
|
|
|
|
}
|
|
|
|
|
2017-06-07 23:07:31 +02:00
|
|
|
storage
|
2017-06-08 01:16:38 +02:00
|
|
|
.delete(id, delete_token)
|
2017-06-07 23:07:31 +02:00
|
|
|
.then(err => {
|
|
|
|
if (!err) {
|
2017-06-08 22:45:28 +02:00
|
|
|
log.info('Deleted:', id);
|
2017-06-08 23:38:00 +02:00
|
|
|
res.sendStatus(200);
|
2017-06-07 23:07:31 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => res.sendStatus(404));
|
2017-06-01 22:14:14 +02:00
|
|
|
});
|
|
|
|
|
2017-06-06 19:24:58 +02:00
|
|
|
app.post('/upload/:id', (req, res, next) => {
|
|
|
|
if (!validateID(req.params.id)) {
|
|
|
|
res.send(404);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-01 22:14:14 +02:00
|
|
|
|
2017-06-06 19:24:58 +02:00
|
|
|
req.pipe(req.busboy);
|
|
|
|
req.busboy.on('file', (fieldname, file, filename) => {
|
2017-06-08 22:45:28 +02:00
|
|
|
log.info('Uploading:', req.params.id);
|
2017-06-08 22:48:51 +02:00
|
|
|
|
2017-06-09 00:01:04 +02:00
|
|
|
const protocol = notLocalHost ? 'https' : req.protocol;
|
2017-06-09 19:44:12 +02:00
|
|
|
const url = `${protocol}://${req.get('host')}/download/${req.params.id}/`;
|
2017-06-06 19:24:58 +02:00
|
|
|
|
2017-06-08 01:16:38 +02:00
|
|
|
storage.set(req.params.id, file, filename, url).then(linkAndID => {
|
|
|
|
res.json(linkAndID);
|
|
|
|
});
|
2017-06-06 23:24:51 +02:00
|
|
|
});
|
2017-06-01 22:14:14 +02:00
|
|
|
});
|
|
|
|
|
2017-06-09 19:44:12 +02:00
|
|
|
app.listen(conf.listen_port, () => {
|
2017-06-08 22:45:28 +02:00
|
|
|
log.info('startServer:', `Portal app listening on port ${conf.listen_port}!`);
|
2017-06-06 23:24:51 +02:00
|
|
|
});
|
2017-06-01 22:14:14 +02:00
|
|
|
|
2017-06-09 19:44:12 +02:00
|
|
|
const validateID = route_id => {
|
2017-06-01 22:14:14 +02:00
|
|
|
return route_id.match(/^[0-9a-fA-F]{32}$/) !== null;
|
2017-06-06 23:24:51 +02:00
|
|
|
};
|