2017-08-24 21:54:02 +00:00
|
|
|
const storage = require('../storage');
|
|
|
|
const mozlog = require('../log');
|
|
|
|
const log = mozlog('send.download');
|
|
|
|
|
|
|
|
module.exports = async function(req, res) {
|
|
|
|
const id = req.params.id;
|
|
|
|
try {
|
2018-02-06 22:31:18 +00:00
|
|
|
const meta = req.meta;
|
2017-08-24 21:54:02 +00:00
|
|
|
const contentLength = await storage.length(id);
|
|
|
|
res.writeHead(200, {
|
2017-08-31 16:43:36 +00:00
|
|
|
'Content-Disposition': 'attachment',
|
2017-08-24 21:54:02 +00:00
|
|
|
'Content-Type': 'application/octet-stream',
|
|
|
|
'Content-Length': contentLength,
|
2018-02-06 22:31:18 +00:00
|
|
|
'WWW-Authenticate': `send-v1 ${req.nonce}`
|
2017-08-24 21:54:02 +00:00
|
|
|
});
|
2018-08-08 18:07:09 +00:00
|
|
|
|
2018-08-07 22:40:17 +00:00
|
|
|
const fileStream = await storage.get(id);
|
2018-07-12 21:00:22 +00:00
|
|
|
let cancelled = false;
|
|
|
|
|
2018-07-12 23:07:18 +00:00
|
|
|
req.on('close', () => {
|
|
|
|
cancelled = true;
|
2018-08-07 22:40:17 +00:00
|
|
|
fileStream.destroy();
|
2018-07-12 23:07:18 +00:00
|
|
|
});
|
2018-07-12 21:00:22 +00:00
|
|
|
|
2018-08-07 22:40:17 +00:00
|
|
|
fileStream.on('end', async () => {
|
2018-07-12 21:00:22 +00:00
|
|
|
if (cancelled) {
|
2018-06-05 22:26:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-07-17 16:48:47 +00:00
|
|
|
|
2018-02-06 22:31:18 +00:00
|
|
|
const dl = meta.dl + 1;
|
|
|
|
const dlimit = meta.dlimit;
|
2017-08-24 21:54:02 +00:00
|
|
|
try {
|
2017-11-30 21:41:09 +00:00
|
|
|
if (dl >= dlimit) {
|
2018-02-06 22:31:18 +00:00
|
|
|
await storage.del(id);
|
2017-11-30 21:41:09 +00:00
|
|
|
} else {
|
|
|
|
await storage.setField(id, 'dl', dl);
|
|
|
|
}
|
2017-08-24 21:54:02 +00:00
|
|
|
} catch (e) {
|
2017-11-30 21:41:09 +00:00
|
|
|
log.info('StorageError:', id);
|
2017-08-24 21:54:02 +00:00
|
|
|
}
|
|
|
|
});
|
2018-07-12 21:00:22 +00:00
|
|
|
|
2018-08-07 22:40:17 +00:00
|
|
|
fileStream.pipe(res);
|
2017-08-24 21:54:02 +00:00
|
|
|
} catch (e) {
|
|
|
|
res.sendStatus(404);
|
|
|
|
}
|
|
|
|
};
|