-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.js
More file actions
232 lines (203 loc) · 7.6 KB
/
library.js
File metadata and controls
232 lines (203 loc) · 7.6 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
var passport = module.parent.require('passport'),
winston = module.parent.require('winston'),
user = module.parent.require('./user'),
passportLocal = module.parent.require('passport-local').Strategy,
hash = require('./libs/sha512').hex_sha512,
url = (process.env.NETSBLOX_URL || 'https://editor.netsblox.org') + '/api',
request = require('request'),
COOKIE_ID = 'netsblox-cookie',
plugin = {};
plugin.login = function() {
winston.info('[login] Registering new local login strategy');
passport.use(new passportLocal({passReqToCallback: true}, plugin.continueLogin));
};
plugin.continueLogin = function(req, username, password, next) {
var jar = request.jar();
// POST request to url
winston.info('[login] Trying to log in at ' + url);
request.post({
url: url,
jar: jar,
form: {
__u: username,
__h: hash(password),
return_user: true
}},
(err, res, body) => {
if (err) {
winston.error(err);
return next(new Error('[[error:' + err + ']]'));
}
if (res.statusCode === 200) {
// Parse the user response
try {
body = JSON.parse(body);
} catch (err) {
return next(new Error('[[error:' + err + ']]'));
}
var cookie = jar.getCookies(url).find(function(c) {
return c.key === COOKIE_ID;
});
// Attach the netsblox cookie to the user's response
if (cookie) {
const rawValue = cookie.toString();
winston.info(`[login] forwarding "${COOKIE_ID}" cookie`);
req.res.set('Set-Cookie', rawValue);
}
user.getUidByEmail(body.email, (err, uid) => {
user.exists(uid, (err, exists) => {
winston.info(`[login] username "${username}" exists: ${exists}`);
if (err) {
winston.error('Could not check if user exists...');
return next(new Error('[[error:' + err + ']]'));
}
if (!exists) {
winston.info(`[login] Creating ${username} ${body.admin ? '(admin)': ''}`);
user.create({
username: username,
isAdmin: body.admin,
displayName: username,
email: body.email
}, (err, uid) => {
if (err) {
return next(new Error(err));
}
// If the login was successful:
next(null, {
uid: uid
}, '[[success:authentication-successful]]');
});
} else {
user.getUidByEmail(body.email, (err, uid) => {
if (err) {
return next(new Error(err));
}
// If the login was successful:
next(null, {
uid: uid
}, '[[success:authentication-successful]]');
})
}
});
});
} else if (399 < res.statusCode < 500) {
// But if the login was unsuccessful, pass an error back, like so:
let reason = 'Invalid Username or Password';
const resMsg = res.body.toLowerCase();
if (resMsg.includes('password')) {
reason = 'invalid-password';
} else if (resMsg.includes('user')) {
reason = 'invalid-username';
}
next(new Error(`[[error:${reason}]]`));
}
});
/*
You'll probably want to add login in this method to determine whether a login
refers to an existing user (in which case log in as above), or a new user, in
which case you'd want to create the user by calling User.create. For your
convenience, this is how you'd create a user:
var user = module.parent.require('./user');
user.create({
username: 'someuser',
email: 'someuser@example.com'
});
Acceptable values are: username, email, password
*/
};
// Registration
plugin.validate = function(data, callback) {
var username = data.userData.username,
email = data.userData.email,
password = data.userData.password,
signupUrl = url + '/SignUp/validate';
// Don't login on registration
data.res.locals.processLogin = false;
// Try to SignUp on NetsBlox
winston.info('[registration] Validating at ' + url);
request.post({
url: signupUrl,
form: {
Username: username,
Password: hash(password),
Email: email
}},
(err, res, body) => {
if (err) {
return callback(err);
}
if (res.statusCode === 200) { // success!
return callback();
} else {
return callback(new Error(body));
}
});
};
plugin.checkAndRegister = function(data, callback) {
plugin.register(data.userData, function(err) {
if (err) {
return callback(err);
}
plugin.continueLogin(
data,
data.userData.username,
data.userData.password,
callback
);
});
};
plugin.registerOnComplete = function(data, callback) {
var uid = data.uid;
user.getUsersFields([uid], ['username', 'email'], function(err, users) {
if (err) {
return callback(err);
}
return plugin.register(users.pop(), callback);
});
};
plugin.register = function(userData, callback) {
var signupUrl = url + '/SignUp';
username = userData.username,
email = userData.email,
password = userData.password;
// Try to SignUp on NetsBlox
winston.info('[registration] Signing up at NetsBlox...');
request.post({
url: signupUrl,
form: {
Username: username,
Password: password ? hash(password) : '',
Email: email
}},
function(err, res, body) {
if (err) {
return callback(err);
}
if (res.statusCode === 200) { // success!
return callback();
} else {
return callback(new Error(body));
}
});
};
// logout
plugin.logout = function(data, callback) {
winston.info('[logout] logging out from ' + url);
request.post({
url: url + '/logout'
}, function(err, res, body) {
if (err) {
return callback(err);
}
if (res.statusCode === 200) {
// update the cookie header from the login server
const rawValue = res.headers['set-cookie'];
winston.info(`[logout] clearing cookie for ${url}`);
data.req.res.set('Set-Cookie', rawValue);
return callback();
} else {
return callback(body);
}
});
};
module.exports = plugin;