24
1
Fork 0
drop.chapril.org-firefoxsend/server/routes/download.js

48 lines
1.1 KiB
JavaScript
Raw Normal View History

const storage = require('../storage');
const mozlog = require('../log');
const log = mozlog('send.download');
2019-02-12 20:50:06 +01:00
const { statDownloadEvent } = require('../amplitude');
module.exports = async function(req, res) {
const id = req.params.id;
try {
2018-02-06 23:31:18 +01:00
const meta = req.meta;
2018-08-08 00:40:17 +02:00
const fileStream = await storage.get(id);
let cancelled = false;
2020-04-30 02:33:12 +02:00
req.on('aborted', () => {
2018-07-13 01:07:18 +02:00
cancelled = true;
2018-08-08 00:40:17 +02:00
fileStream.destroy();
2018-07-13 01:07:18 +02:00
});
2018-11-16 22:33:40 +01:00
fileStream.pipe(res).on('finish', async () => {
if (cancelled) {
2018-06-06 00:26:24 +02:00
return;
}
2018-07-17 18:48:47 +02:00
2018-02-06 23:31:18 +01:00
const dl = meta.dl + 1;
const dlimit = meta.dlimit;
2019-02-12 20:50:06 +01:00
const ttl = await storage.ttl(id);
statDownloadEvent({
id,
ip: req.ip,
owner: meta.owner,
download_count: dl,
2019-05-03 18:25:12 +02:00
ttl,
agent: req.ua.browser.name || req.ua.ua.substring(0, 6)
2019-02-12 20:50:06 +01:00
});
try {
2017-11-30 22:41:09 +01:00
if (dl >= dlimit) {
2018-02-06 23:31:18 +01:00
await storage.del(id);
2017-11-30 22:41:09 +01:00
} else {
await storage.incrementField(id, 'dl');
2017-11-30 22:41:09 +01:00
}
} catch (e) {
2017-11-30 22:41:09 +01:00
log.info('StorageError:', id);
}
});
} catch (e) {
res.sendStatus(404);
}
};