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

116 lines
3.5 KiB
JavaScript
Raw Normal View History

2018-08-08 00:40:17 +02:00
const crypto = require('crypto');
2018-02-25 03:00:43 +01:00
const express = require('express');
const helmet = require('helmet');
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');
2018-02-06 23:31:18 +01:00
2017-08-29 20:19:21 +02:00
const IS_DEV = config.env === 'development';
2018-02-06 23:31:18 +01:00
const ID_REGEX = '([0-9a-fA-F]{10})';
module.exports = function(app) {
app.use(helmet());
app.use(
helmet.hsts({
maxAge: 31536000,
2017-08-29 20:19:21 +02:00
force: !IS_DEV
})
);
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) {
app.use(
helmet.contentSecurityPolicy({
directives: {
defaultSrc: ["'self'"],
connectSrc: [
"'self'",
2018-07-12 23:27:49 +02:00
'wss://*.dev.lcip.org',
'wss://*.mozaws.net',
'wss://send.firefox.com',
'https://*.dev.lcip.org',
'https://*.accounts.firefox.com',
2017-11-30 22:41:09 +01:00
'https://sentry.prod.mozaws.net',
'https://www.google-analytics.com'
],
2018-08-08 00:40:17 +02:00
imgSrc: [
"'self'",
'https://www.google-analytics.com',
'https://*.dev.lcip.org',
'https://firefoxusercontent.com'
],
scriptSrc: [
"'self'",
function(req) {
return `'nonce-${req.cspNonce}'`;
}
],
styleSrc: ["'self'", 'https://code.cdn.mozilla.net'],
2017-11-30 22:41:09 +01:00
fontSrc: ["'self'", 'https://code.cdn.mozilla.net'],
formAction: ["'none'"],
frameAncestors: ["'none'"],
objectSrc: ["'none'"],
reportUri: '/__cspreport__'
}
})
);
}
app.use(function(req, res, next) {
res.set('Pragma', 'no-cache');
res.set('Cache-Control', 'no-cache');
next();
});
2018-02-25 03:00:43 +01:00
app.use(express.json());
2018-08-08 00:40:17 +02:00
app.get('/', language, pages.index);
app.get('/signin', pages.blank);
2018-09-26 21:22:04 +02:00
app.get('/oauth', pages.blank);
2018-02-06 23:31:18 +01:00
app.get('/legal', language, pages.legal);
app.get('/jsconfig.js', require('./jsconfig'));
2018-02-06 23:31:18 +01:00
app.get(`/share/:id${ID_REGEX}`, language, pages.blank);
app.get(`/download/:id${ID_REGEX}`, language, pages.download);
app.get('/completed', language, pages.blank);
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'));
app.get('/api/filelist', auth.fxa, filelist.get);
app.post('/api/filelist', auth.fxa, filelist.post);
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) {
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);
}
});
};