forked from ganarajpr/express-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
135 lines (111 loc) · 3.88 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* Module dependencies.
*/
var express = require('express'),
routes = require('./routes'),
everyauth = require('everyauth'),
api = require('./routes/api');
/**
* EVERYAUTH AUTHENTICATION
* -------------------------------------------------------------------------------------------------
* allows users to log in and register using OAuth services
**/
everyauth.debug = true;
// Configure Facebook auth
var usersById = {},
nextUserId = 0,
usersByFacebookId = {},
usersByTwitId = {},
usersByLogin = {
'[email protected]': addUser({ email: '[email protected]', password: 'azure'})
};
everyauth.
everymodule.
findUserById(function (id, callback) {
callback(null, usersById[id]);
});
/**
* FACEBOOK AUTHENTICATION
* -------------------------------------------------------------------------------------------------
* uncomment this section if you want to enable facebook authentication. To use this, you will need
* to get a facebook application Id and Secret, and add those to settings.json. See:
* http://developers.facebook.com/
**/
//everyauth.
// facebook.
// appId(nconf.get('facebook:applicationId')).
// appSecret(nconf.get('facebook:applicationSecret')).
// findOrCreateUser(
// function(session, accessToken, accessTokenExtra, fbUserMetadata){
// return usersByFacebookId[fbUserMetadata.claimedIdentifier] ||
// (usersByFacebookId[fbUserMetadata.claimedIdentifier] =
// addUser('facebook', fbUserMetadata));
// }).
// redirectPath('/');
/**
* TWITTER AUTHENTICATION
* -------------------------------------------------------------------------------------------------
* uncomment this section if you want to enable twitter authentication. To use this, you will need
* to get a twitter key and secret, and add those to settings.json. See:
* https://dev.twitter.com/
**/
everyauth
.twitter
.consumerKey("JLCGyLzuOK1BjnKPKGyQ")
.consumerSecret("GNqKfPqtzOcsCtFbGTMqinoATHvBcy1nzCTimeA9M0")
.findOrCreateUser( function (sess, accessToken, accessSecret, twitUser) {
return usersByTwitId[twitUser.id] || (usersByTwitId[twitUser.id] = addUser('twitter', twitUser));
})
.redirectPath('/');
// add a user to the in memory store of users. If you were looking to use a persistent store, this
// would be the place to start
function addUser (source, sourceUser) {
var user;
if (arguments.length === 1) {
user = sourceUser = source;
user.id = ++nextUserId;
return usersById[nextUserId] = user;
} else { // non-password-based
user = usersById[++nextUserId] = {id: nextUserId};
user[source] = sourceUser;
}
return user;
}
var app = module.exports = express.createServer();
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.register('.html', require('ejs'));
app.set('view engine', 'html');
app.set('view options', {
layout: false
});
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser());
app.use(express.session({ secret: 'omgnodeworks' }));
app.use(everyauth.middleware());
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());
});
// Routes
// Routes
everyauth.helpExpress(app);
app.get('/', routes.index);
app.get('/login', routes.login);
app.get('/partials/:name', routes.partials);
// JSON API
app.get('/api/posts', api.posts);
app.get('/api/post/:id', api.post);
app.post('/api/addPost', api.addPost);
app.post('/api/editPost', api.editPost);
app.post('/api/deletePost', api.deletePost);
app.listen(3000, function(){
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);
});