-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
97 lines (86 loc) · 2.91 KB
/
server.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
'use strict';
var express = require('express');
var helpers = require('express-stormpath/lib/helpers');
var stormpath = require('express-stormpath');
var uuid = require('node-uuid');
var app = express();
app.use(stormpath.init(app, { website: true }));
// This middleware will look at the incoming user Account request -- and if this
// Account is a social account, it will be swapped for a non-social Account.
function unify(req, res, next) {
var application = app.get('stormpathApplication');
helpers.getUser(req, res, function() {
if (!req.user) {
return next();
}
req.user.getProviderData(function(err, data) {
if (err) {
return next(err);
}
if (data.providerId === 'stormpath') {
return next();
}
// If this user was literally logged in on this SAME request, we cannot do
// anything, so just continue onwards and force a page reload.
if (res.headerSent) {
return res.redirect(req.originalUrl);
}
// We found a social user, so we'll attempt to look up their Cloud
// directory account.
application.getAccounts({ email: req.user.email }, function(err, accounts) {
if (err) {
return next(err);
}
var cloudAccount;
accounts.each(function(account, cb) {
account.getProviderData(function(err, data) {
if (err) {
return cb(err);
}
if (data.providerId === 'stormpath') {
cloudAccount = account;
}
cb();
});
}, function(err) {
if (err) {
return next(err);
}
// Swap session.
if (cloudAccount) {
res.locals.user = cloudAccount;
req.user = cloudAccount;
helpers.createStormpathSession(req.user, req, res, function(err) {
return next();
});
} else {
// If we get here, it means we need to create a new Cloud account for
// this social user -- so, let's do it!
application.createAccount({
status: req.user.status,
givenName: req.user.givenName,
surname: req.user.surname,
middleName: req.user.middleName,
email: req.user.email,
password: uuid.v4() + uuid.v4().toUpperCase()
}, { registrationWorkflowEnabled: false }, function(err, account) {
if (err) {
return next(err);
}
res.locals.user = account;
req.user = account;
helpers.createStormpathSession(account, req, res, function(err) {
next();
});
});
}
});
});
});
});
};
app.use(unify);
app.get('/', stormpath.loginRequired, function(req, res) {
res.send('Hi, ' + req.user.givenName + '! You are now logged in!');
});
app.listen(3000);