Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@connor
Created May 9, 2012 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save connor/2641260 to your computer and use it in GitHub Desktop.
Save connor/2641260 to your computer and use it in GitHub Desktop.
github auth using everyauth
// Modules
var express = require('express')
, everyauth = require('everyauth')
, connect = require('connect');
var app = module.exports = express.createServer();
everyauth.debug = true
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.cookieParser());
app.use(express.session({ secret: "secret" }));
app.use(everyauth.middleware());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
})
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// Everyauth
everyauth.github
.appId("APP_ID")
.appSecret("APP_SECRET")
.findOrCreateUser( function (sess, accessToken, accessTokenExtra, ghUser) {
console.log('find user')
// return usersByGhId[ghUser.id] || (usersByGhId[ghUser.id] = addUser('github', ghUser));
})
.redirectPath('/');
everyauth.helpExpress(app);
// Routes
app.get('/', function(req, res) {
res.render('index')
});
// Do you hear that??
app.listen(process.env.PORT || 3000);
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);
a(href="/auth/github") Login with github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment