2016-06-24 00:29:55 +02:00
|
|
|
import { Router } from 'express';
|
2016-11-17 17:15:35 +01:00
|
|
|
import { renderIndex } from '../views/index';
|
2017-01-06 21:05:02 +01:00
|
|
|
import { get404Sketch } from '../views/404Page';
|
2017-02-22 20:29:35 +01:00
|
|
|
import { userExists } from '../controllers/user.controller';
|
2018-02-19 21:21:47 +01:00
|
|
|
import { projectExists, projectForUserExists } from '../controllers/project.controller';
|
2017-02-22 20:29:35 +01:00
|
|
|
|
|
|
|
const router = new Router();
|
2016-06-19 00:33:49 +02:00
|
|
|
|
2016-06-24 00:29:55 +02:00
|
|
|
// this is intended to be a temporary file
|
2016-06-19 00:33:49 +02:00
|
|
|
// until i figure out isomorphic rendering
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/', (req, res) => {
|
2016-11-09 00:11:12 +01:00
|
|
|
res.send(renderIndex());
|
2016-06-19 00:33:49 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/signup', (req, res) => {
|
2017-09-29 20:52:20 +02:00
|
|
|
if (req.user) {
|
|
|
|
return res.redirect('/');
|
|
|
|
}
|
2017-10-16 05:27:05 +02:00
|
|
|
return res.send(renderIndex());
|
2016-06-19 00:33:49 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/projects/:project_id', (req, res) => {
|
2018-02-19 21:21:47 +01:00
|
|
|
projectExists(req.params.project_id, exists => (
|
|
|
|
exists ? res.send(renderIndex()) : get404Sketch(html => res.send(html))
|
|
|
|
));
|
2016-06-19 00:33:49 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/:username/sketches/:project_id', (req, res) => {
|
2018-02-19 21:21:47 +01:00
|
|
|
projectForUserExists(req.params.username, req.params.project_id, exists => (
|
|
|
|
exists ? res.send(renderIndex()) : get404Sketch(html => res.send(html))
|
|
|
|
));
|
2016-12-01 23:12:34 +01:00
|
|
|
});
|
|
|
|
|
2018-10-18 20:10:37 +02:00
|
|
|
router.get('/:username/full/:project_id', (req, res) => {
|
|
|
|
projectForUserExists(req.params.username, req.params.project_id, exists => (
|
|
|
|
exists ? res.send(renderIndex()) : get404Sketch(html => res.send(html))
|
|
|
|
));
|
|
|
|
});
|
2017-06-01 06:08:11 +02:00
|
|
|
|
2018-10-18 20:10:37 +02:00
|
|
|
router.get('/full/:project_id', (req, res) => {
|
|
|
|
projectExists(req.params.project_id, exists => (
|
|
|
|
exists ? res.send(renderIndex()) : get404Sketch(html => res.send(html))
|
|
|
|
));
|
|
|
|
});
|
2016-08-18 00:13:17 +02:00
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/login', (req, res) => {
|
2017-09-29 20:52:20 +02:00
|
|
|
if (req.user) {
|
|
|
|
return res.redirect('/');
|
|
|
|
}
|
2017-10-16 05:27:05 +02:00
|
|
|
return res.send(renderIndex());
|
2016-06-19 00:33:49 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/reset-password', (req, res) => {
|
2016-11-09 00:11:12 +01:00
|
|
|
res.send(renderIndex());
|
2016-10-12 18:02:46 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/reset-password/:reset_password_token', (req, res) => {
|
2016-11-09 00:11:12 +01:00
|
|
|
res.send(renderIndex());
|
2016-10-18 22:07:25 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/verify', (req, res) => {
|
2017-06-26 18:48:28 +02:00
|
|
|
res.send(renderIndex());
|
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/sketches', (req, res) => {
|
2018-05-30 23:23:11 +02:00
|
|
|
if (req.user) {
|
|
|
|
res.send(renderIndex());
|
|
|
|
} else {
|
|
|
|
res.redirect('/login');
|
|
|
|
}
|
2018-05-30 06:37:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/assets', (req, res) => {
|
2018-05-30 23:23:11 +02:00
|
|
|
if (req.user) {
|
|
|
|
res.send(renderIndex());
|
|
|
|
} else {
|
|
|
|
res.redirect('/login');
|
|
|
|
}
|
2018-05-30 06:37:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/account', (req, res) => {
|
2018-05-30 23:23:11 +02:00
|
|
|
if (req.user) {
|
|
|
|
res.send(renderIndex());
|
|
|
|
} else {
|
|
|
|
res.redirect('/login');
|
|
|
|
}
|
2016-07-05 22:04:14 +02:00
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/about', (req, res) => {
|
2016-11-09 00:11:12 +01:00
|
|
|
res.send(renderIndex());
|
2016-08-22 18:35:59 +02:00
|
|
|
});
|
|
|
|
|
2018-02-09 22:32:06 +01:00
|
|
|
router.get('/feedback', (req, res) => {
|
|
|
|
res.send(renderIndex());
|
|
|
|
});
|
|
|
|
|
2018-01-09 21:57:49 +01:00
|
|
|
router.get('/:username/sketches', (req, res) => {
|
2017-02-22 20:29:35 +01:00
|
|
|
userExists(req.params.username, exists => (
|
2017-01-06 19:08:03 +01:00
|
|
|
exists ? res.send(renderIndex()) : get404Sketch(html => res.send(html))
|
|
|
|
));
|
2016-08-17 21:53:25 +02:00
|
|
|
});
|
|
|
|
|
2016-06-24 00:29:55 +02:00
|
|
|
export default router;
|