From 7ef5bc29e6032ae9f7318ae5790e45057f7e5b4f Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Tue, 30 Apr 2013 13:31:00 +0200 Subject: renamed router to routes as it now contains more static routes, than actually working as a router --- routes.js | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 routes.js (limited to 'routes.js') diff --git a/routes.js b/routes.js new file mode 100644 index 0000000..ae94779 --- /dev/null +++ b/routes.js @@ -0,0 +1,61 @@ + +/** + * Dependencies + */ + +var users = require('./controllers/users') + , system = require('./controllers/system'); + + +/* + * ============================================================ + * Routes + * + */ + +module.exports = function(app, passport, auth) { + app.get('/', system.index); + + app.get('/test', system.test); + + app.get('/home', system.home); + + app.get('/faq', system.faq); + + app.get('/login', users.login); + + app.get('/signup', users.signup); + + app.post('/signup', users.create); + + + app.post('/test', users.signin); + + app.get('/auth/facebook', passport.authenticate('facebook', { failureRedirect: '/test' }), users.signin); + + app.get('/auth/facebook/callback', passport.authenticate('facebook', { failureRedirect: '/test' }), function(req, res) { + console.log('/auth/facebook/callback --- ' + req.user.username); + res.redirect('/dashboard'); + }); + + app.get('/auth/twitter', passport.authenticate('twitter', { failureRedirect: '/test' }), users.signin); + app.get('/auth/twitter/callback', passport.authenticate('twitter', { failureRedirect: '/test' }), users.authCallback); + + app.get('/logout', users.logout); + + + /** + * REQUIRES LOGIN + * ============================================================ + */ + + + app.get('/dashboard', auth.requiresLogin, system.dashboard); + + + app.get('/project', auth.requiresLogin, system.project); + + app.get('/project/new', auth.requiresLogin, system.newProject); + + app.post('/project/new', auth.requiresLogin, system.postNewProject) +}; -- cgit v1.2.3