86 lines
2.5 KiB
JavaScript
86 lines
2.5 KiB
JavaScript
import path from 'path';
|
|
import Router from 'koa-router';
|
|
import csrf from 'koa-csrf';
|
|
import views from 'koa-views';
|
|
import stats from 'koa-statsd';
|
|
import * as redis from '../lib/redis';
|
|
import StatsD from 'statsy';
|
|
// waiting for PR to be merged, can remove swig dependency when done
|
|
import errors from '../lib/koa-error';
|
|
import * as index from './routes/index';
|
|
import * as file from './routes/file';
|
|
import * as pro from './routes/pro';
|
|
import * as user from './routes/user';
|
|
|
|
const router = new Router();
|
|
|
|
router.use(errors({template: path.join(__dirname, 'public', 'error.html')}));
|
|
|
|
const statsdOpts = {prefix: 'hostr-web', host: process.env.STATSD_HOST || 'localhost'};
|
|
router.use(stats(statsdOpts));
|
|
const statsd = new StatsD(statsdOpts);
|
|
router.use(function* statsMiddleware(next) {
|
|
this.statsd = statsd;
|
|
yield next;
|
|
});
|
|
|
|
router.use(redis.sessionStore());
|
|
|
|
router.use(function* stateMiddleware(next) {
|
|
this.state = {
|
|
session: this.session,
|
|
apiURL: process.env.API_URL,
|
|
baseURL: process.env.BASE_URL,
|
|
stripePublic: process.env.STRIPE_PUBLIC_KEY,
|
|
};
|
|
yield next;
|
|
});
|
|
|
|
router.use(csrf());
|
|
|
|
router.use(views('views', {
|
|
default: 'ejs',
|
|
}));
|
|
|
|
router.get('/', index.main);
|
|
router.get('/account', index.main);
|
|
router.get('/billing', index.main);
|
|
router.get('/pro', index.main);
|
|
|
|
router.get('/signin', user.signin);
|
|
router.post('/signin', user.signin);
|
|
router.get('/signup', user.signup);
|
|
router.post('/signup', user.signup);
|
|
router.get('/logout', user.logout);
|
|
router.post('/logout', user.logout);
|
|
router.get('/forgot', user.forgot);
|
|
router.get('/forgot/:token', user.forgot);
|
|
router.post('/forgot/:token', user.forgot);
|
|
router.post('/forgot', user.forgot);
|
|
router.get('/activate/:code', user.activate);
|
|
|
|
router.get('/terms', index.staticPage);
|
|
router.get('/privacy', index.staticPage);
|
|
router.get('/pricing', index.staticPage);
|
|
router.get('/apps', index.staticPage);
|
|
router.get('/stats', index.staticPage);
|
|
|
|
router.post('/pro/create', pro.create);
|
|
router.post('/pro/cancel', pro.cancel);
|
|
|
|
router.get('/:id', file.landing);
|
|
router.get('/file/:id/:name', file.get);
|
|
router.get('/file/:size/:id/:name', file.get);
|
|
router.get('/files/:id/:name', file.get);
|
|
router.get('/download/:id/:name', function* downloadRedirect(id) {
|
|
this.redirect('/' + id);
|
|
});
|
|
|
|
router.get('/updaters/mac', function* macUpdater() {
|
|
this.redirect('/updaters/mac.xml');
|
|
});
|
|
router.get('/updaters/mac/changelog', function* macChangelog() {
|
|
yield this.render('mac-update-changelog');
|
|
});
|
|
|
|
export default router;
|