drop.chapril.org-firefoxsend/server/routes/ws.js

70 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-06-21 02:05:33 +02:00
const crypto = require('crypto');
const storage = require('../storage');
const config = require('../config');
const mozlog = require('../log');
const Limiter = require('../limiter');
const wsStream = require('websocket-stream/stream');
const log = mozlog('send.upload');
module.exports = async function(ws, req) {
let fileStream;
2018-06-21 22:57:53 +02:00
ws.on('close', e => {
2018-06-22 22:17:23 +02:00
if (e !== 1000 && fileStream !== undefined) {
fileStream.destroy();
2018-06-21 22:57:53 +02:00
}
});
2018-06-21 02:05:33 +02:00
2018-06-25 19:57:52 +02:00
ws.once('message', async function(message) {
2018-06-21 22:57:53 +02:00
try {
2018-06-25 19:57:52 +02:00
const newId = crypto.randomBytes(5).toString('hex');
const owner = crypto.randomBytes(10).toString('hex');
2018-06-21 02:05:33 +02:00
2018-06-25 19:57:52 +02:00
const fileInfo = JSON.parse(message);
const metadata = fileInfo.fileMetadata;
const auth = fileInfo.authorization;
2018-06-21 02:05:33 +02:00
2018-06-25 19:57:52 +02:00
if (!metadata || !auth) {
2018-06-21 02:05:33 +02:00
ws.send(
JSON.stringify({
2018-06-25 19:57:52 +02:00
error: 400
2018-06-21 02:05:33 +02:00
})
);
2018-06-25 19:57:52 +02:00
return ws.close();
2018-06-21 02:05:33 +02:00
}
2018-06-25 19:57:52 +02:00
const meta = {
owner,
metadata,
auth: auth.split(' ')[1],
nonce: crypto.randomBytes(16).toString('base64')
};
const protocol = config.env === 'production' ? 'https' : req.protocol;
const url = `${protocol}://${req.get('host')}/download/${newId}/`;
const limiter = new Limiter(config.max_file_size);
fileStream = wsStream(ws, { binary: true }).pipe(limiter);
storage.set(newId, fileStream, meta);
ws.send(
JSON.stringify({
url,
owner: meta.owner,
id: newId,
authentication: `send-v1 ${meta.nonce}`
})
);
2018-06-21 22:57:53 +02:00
} catch (e) {
log.error('upload', e);
ws.send(
JSON.stringify({
error: 500
})
);
2018-06-22 22:17:23 +02:00
ws.close();
2018-06-21 22:57:53 +02:00
}
});
2018-06-21 02:05:33 +02:00
};