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

140 lines
4.0 KiB
JavaScript
Raw Normal View History

2018-08-08 00:40:17 +02:00
const crypto = require('crypto');
2019-02-15 20:59:39 +01:00
const bodyParser = require('body-parser');
const helmet = require('helmet');
2019-02-12 20:50:06 +01:00
const uaparser = require('ua-parser-js');
const storage = require('../storage');
const config = require('../config');
2018-02-06 23:31:18 +01:00
const auth = require('../middleware/auth');
const language = require('../middleware/language');
const pages = require('./pages');
2018-08-08 00:40:17 +02:00
const filelist = require('./filelist');
const clientConstants = require('../clientConstants');
2018-02-06 23:31:18 +01:00
2017-08-29 20:19:21 +02:00
const IS_DEV = config.env === 'development';
2019-03-26 17:32:44 +01:00
const ID_REGEX = '([0-9a-fA-F]{10,16})';
module.exports = function(app) {
2019-02-12 20:50:06 +01:00
app.set('trust proxy', true);
app.use(helmet());
app.use(
helmet.hsts({
maxAge: 31536000,
2017-08-29 20:19:21 +02:00
force: !IS_DEV
})
);
2019-02-12 20:50:06 +01:00
app.use(function(req, res, next) {
req.ua = uaparser(req.header('user-agent'));
next();
});
2018-08-08 00:40:17 +02:00
app.use(function(req, res, next) {
req.cspNonce = crypto.randomBytes(16).toString('hex');
next();
});
2017-11-30 22:41:09 +01:00
if (!IS_DEV) {
let csp = {
directives: {
defaultSrc: ["'self'"],
connectSrc: [
"'self'",
function(req) {
const baseUrl = config.deriveBaseUrl(req);
const r = baseUrl.replace(/^http(s?):\/\//, 'ws$1://');
console.log([baseUrl, r]);
return r;
}
],
imgSrc: ["'self'", 'data:'],
scriptSrc: [
"'self'",
function(req) {
return `'nonce-${req.cspNonce}'`;
}
],
2022-04-12 15:58:58 +02:00
styleSrc: [
"'self'",
function(req) {
return `'nonce-${req.cspNonce}'`;
}
],
formAction: ["'none'"],
frameAncestors: ["'none'"],
objectSrc: ["'none'"],
reportUri: '/__cspreport__'
}
};
app.use(helmet.contentSecurityPolicy(csp));
2017-11-30 22:41:09 +01:00
}
app.use(function(req, res, next) {
res.set('Pragma', 'no-cache');
2019-09-05 22:32:59 +02:00
res.set(
'Cache-Control',
'private, no-cache, no-store, must-revalidate, max-age=0'
);
next();
});
app.use(function(req, res, next) {
try {
// set by the load balancer
const [country, state] = req.header('X-Client-Geo-Location').split(',');
req.geo = {
country,
state
};
} catch (e) {
req.geo = {};
}
next();
});
2019-02-15 20:59:39 +01:00
app.use(bodyParser.json());
app.use(bodyParser.text());
2018-08-08 00:40:17 +02:00
app.get('/', language, pages.index);
app.get('/config', function(req, res) {
res.json(clientConstants);
});
2019-02-25 20:44:44 +01:00
app.get('/error', language, pages.blank);
2018-10-17 01:53:33 +02:00
app.get('/oauth', language, pages.blank);
app.get('/login', language, pages.index);
2018-11-20 21:00:32 +01:00
app.get('/app.webmanifest', language, require('./webmanifest'));
2018-02-06 23:31:18 +01:00
app.get(`/download/:id${ID_REGEX}`, language, pages.download);
app.get('/unsupported/:reason', language, pages.unsupported);
2018-08-08 00:40:17 +02:00
app.get(`/api/download/:id${ID_REGEX}`, auth.hmac, require('./download'));
app.get(
`/api/download/blob/:id${ID_REGEX}`,
auth.hmac,
require('./download')
);
2018-02-06 23:31:18 +01:00
app.get(`/api/exists/:id${ID_REGEX}`, require('./exists'));
2018-08-08 00:40:17 +02:00
app.get(`/api/metadata/:id${ID_REGEX}`, auth.hmac, require('./metadata'));
2019-02-27 04:58:03 +01:00
app.get('/api/filelist/:id([\\w-]{16})', auth.fxa, filelist.get);
app.post('/api/filelist/:id([\\w-]{16})', auth.fxa, filelist.post);
2018-08-08 00:40:17 +02:00
app.post('/api/upload', auth.fxa, require('./upload'));
app.post(`/api/delete/:id${ID_REGEX}`, auth.owner, require('./delete'));
app.post(`/api/password/:id${ID_REGEX}`, auth.owner, require('./password'));
2018-08-31 19:59:26 +02:00
app.post(
`/api/params/:id${ID_REGEX}`,
auth.owner,
auth.fxa,
require('./params')
);
2018-08-08 00:40:17 +02:00
app.post(`/api/info/:id${ID_REGEX}`, auth.owner, require('./info'));
app.get('/__version__', function(req, res) {
// eslint-disable-next-line n/no-missing-require
res.sendFile(require.resolve('../../dist/version.json'));
});
app.get('/__lbheartbeat__', function(req, res) {
res.sendStatus(200);
});
2017-08-25 19:03:49 +02:00
app.get('/__heartbeat__', async (req, res) => {
try {
await storage.ping();
res.sendStatus(200);
} catch (e) {
res.sendStatus(500);
}
});
};