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

22 lines
787 B
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
const choo = require('choo');
const download = require('./ui/download');
const body = require('./ui/body');
2018-10-25 04:07:10 +02:00
2019-08-26 17:58:34 +02:00
module.exports = function(app = choo({ hash: true })) {
2018-10-30 19:37:33 +01:00
app.route('/', body(require('./ui/home')));
2018-10-25 04:07:10 +02:00
app.route('/download/:id', body(download));
app.route('/download/:id/:key', body(download));
app.route('/unsupported/:reason', body(require('./ui/unsupported')));
app.route('/error', body(require('./ui/error')));
app.route('/blank', body(require('./ui/blank')));
2019-02-25 20:44:44 +01:00
app.route('/oauth', function(state, emit) {
2019-02-12 20:50:06 +01:00
emit('authenticate', state.query.code, state.query.state);
2018-10-25 04:07:10 +02:00
});
app.route('/login', function(state, emit) {
emit('replaceState', '/');
setTimeout(() => emit('render'));
});
2018-10-25 04:07:10 +02:00
app.route('*', body(require('./ui/notFound')));
return app;
};