mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-13 06:32:34 +01:00
1e62aa976d
this should greatly reduce the complexity of the l10n code and build pipeline and eliminate the most common error seen in sentry logs (no translate function)
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
const assets = require('../../common/assets');
|
|
const routes = require('../routes');
|
|
const pages = require('../routes/pages');
|
|
const tests = require('../../test/frontend/routes');
|
|
const express = require('express');
|
|
const expressWs = require('express-ws');
|
|
const morgan = require('morgan');
|
|
const config = require('../config');
|
|
|
|
const ID_REGEX = '([0-9a-fA-F]{10})';
|
|
|
|
module.exports = function(app, devServer) {
|
|
const wsapp = express();
|
|
expressWs(wsapp, null, { perMessageDeflate: false });
|
|
wsapp.ws('/api/ws', require('../routes/ws'));
|
|
wsapp.listen(8081, config.listen_address);
|
|
|
|
assets.setMiddleware(devServer.middleware);
|
|
app.use(morgan('dev', { stream: process.stderr }));
|
|
function android(req, res) {
|
|
const index = devServer.middleware.fileSystem.readFileSync(
|
|
devServer.middleware.getFilenameFromUrl('/android.html')
|
|
);
|
|
res.set('Content-Type', 'text/html');
|
|
res.send(index);
|
|
}
|
|
if (process.env.ANDROID) {
|
|
// map all html routes to the android index.html
|
|
app.get('/', android);
|
|
app.get('/legal', android);
|
|
app.get(`/share/:id${ID_REGEX}`, android);
|
|
app.get(`/download/:id${ID_REGEX}`, android);
|
|
app.get('/completed', android);
|
|
app.get('/preferences', android);
|
|
app.get('/options', android);
|
|
app.get('/oauth', android);
|
|
}
|
|
routes(app);
|
|
tests(app);
|
|
// webpack-dev-server routes haven't been added yet
|
|
// so wait for next tick to add 404 handler
|
|
process.nextTick(() => app.use(pages.notfound));
|
|
};
|