forked from akashkaushik33/node-wp-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-auth.js
executable file
·469 lines (424 loc) · 12.5 KB
/
wp-auth.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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
const crypto = require("crypto");
const phpjs = require("./serialize");
const mysql = require("mysql2");
function sanitizeValue(value) {
switch (typeof value) {
case "boolean":
case "object":
return phpjs.serialize(value).replace(/(\'|\\)/g, "\\$1");
case "number":
return Number.toString.call(value);
case "string":
if (phpjs.unserialize(value) === false) {
return value.replace(/(\'|\\)/g, "\\$1");
}
// If it's a serialized string, serialize it again so it comes back out of the database the same way.
return phpjs
.serialize(phpjs.serialize(phpjs.unserialize(value)))
.replace(/(\'|\\)/g, "\\$1");
default:
throw new Error("Invalid data type: " + typeof value);
}
}
function WP_Auth(
wpurl,
logged_in_key,
logged_in_salt,
mysql_host,
mysql_user,
mysql_pass,
mysql_port,
mysql_db,
wp_table_prefix,
skipAuthentication,
debug,
checkKnownHashes,
maxRetries
) {
var md5 = crypto.createHash("md5");
md5.update(wpurl);
this.cookiename = "wordpress_logged_in_" + md5.digest("hex");
this.salt = logged_in_key + logged_in_salt;
this.debug = debug;
this.checkKnownHashes = checkKnownHashes;
this.skipAuthentication = !!skipAuthentication;
this.dbConfig = {
host: mysql_host,
user: mysql_user,
port: mysql_port,
password: mysql_pass,
database: mysql_db
};
this.pingInterval = null;
this.maxRetries = maxRetries || 5;
this.retries = 0;
// create the connection to database
this.connectDB(this.dbConfig);
this.table_prefix = wp_table_prefix;
this.known_hashes = {};
this.known_hashes_timeout = {};
this.meta_cache = {};
this.meta_cache_timeout = {};
// Default cache time: 5 minutes
this.timeout = 300000;
}
WP_Auth.prototype.connectDB = function(config) {
this.debug && console.log("Starting connection with db config:: ", config);
if (this.db != null) {
this.debug && console.log("Destroying the old connection");
this.db && this.db.destroy && this.db.destroy();
}
this.db = mysql.createConnection({
...config
});
this.db.connect(err => {
if (err) {
this.debug &&
console.error("connection failed to mysql host:", config.host, err);
return;
}
// resetting number of retries after connection has been established
this.retries = 0;
this.debug && console.info("connected to mysql host: ", config.host);
});
this.db.on("error", err => {
this.debug &&
console.log("Error has occured in connection with SQL:: ", err);
setTimeout(
err => {
this.handleError(err);
},
this.retries * 10000,
err
);
});
// start pinging right now because it will ping first after 1 hour, so by then coneection should be established
this.startPinging();
};
WP_Auth.prototype.handleError = function(err) {
// do something with error?
this.retries++;
this.debug && console.log("Reconnect tries:: ", this.retries);
if (this.retries <= this.maxRetries) {
this.debug && console.log("Reconecting...");
this.connectDB(this.dbConfig);
return;
}
this.debug &&
console.log(
"Max number of reconnection tries has been reached with the following error:: ",
err
);
};
WP_Auth.prototype.startPinging = function() {
// pinging every hour to keep connection alive
clearInterval(this.pingInterval);
this.pingInterval = setInterval(() => {
this.db.ping(err => {
if (err) {
this.debug && console.log("Ping Error:: ", err);
clearInterval(this.pingInterval);
this.handleError(err);
}
});
}, 3600000);
};
WP_Auth.prototype.checkAuth = function(req) {
var self = this,
data = null;
if (req.headers.cookie)
req.headers.cookie.split(";").forEach(function(cookie) {
if (cookie.split("=")[0].trim() == self.cookiename)
data = cookie
.split("=")[1]
.trim()
.split("%7C");
});
else return new Invalid_Auth("no cookie");
if (!data) return new Invalid_Auth("no data in cookie");
if (parseInt(data[1]) < new Date() / 1000)
return new Invalid_Auth("expired cookie");
this.debug && console.log("Cookies data in check auth:::: ", data);
return new Valid_Auth(data, this);
};
WP_Auth.prototype.getUserMeta = function(id, key, callback) {
if (!(id in this.meta_cache_timeout)) this.meta_cache_timeout[id] = {};
if (
key in this.meta_cache_timeout[id] &&
this.meta_cache_timeout[id][key] < +new Date()
) {
delete this.meta_cache[id][key];
delete this.meta_cache_timeout[id][key];
}
if (id in this.meta_cache && key in this.meta_cache[id]) {
callback(this.meta_cache[id][key]);
return;
}
var self = this;
this.db.query(
"select meta_value from " +
this.table_prefix +
"usermeta where meta_key = '" +
sanitizeValue(key) +
"' and user_id = " +
parseInt(id),
function(err, results) {
var data = (results && results[0]) || {};
if (!(id in self.meta_cache)) self.meta_cache[id] = {};
if (phpjs.unserialize(data.meta_value)) {
self.meta_cache[id][key] = phpjs.unserialize(data.meta_value);
} else {
self.meta_cache[id][key] = data.meta_value;
}
if (!(key in self.meta_cache[id])) self.meta_cache[id][key] = null;
self.meta_cache_timeout[id][key] = +new Date() + self.timeout;
callback(self.meta_cache[id][key]);
}
);
};
/**
* Function will return object of meta_keys paired with meta_value if found
*
* @param {*} id User ID
* @param {*} keys array of meta keys
* @param {*} callback
* @returns
*/
WP_Auth.prototype.getUserMetas = function(id, keys, callback) {
if (!(id in this.meta_cache_timeout)) this.meta_cache_timeout[id] = {};
if (!keys || !keys.length) return;
// sanitizeValue inside values and make new key for cache based on given array
// or maybe cache per key is better?
let key = "";
keys = keys.map(k => {
let rk = "'" + sanitizeValue(k) + "'";
key = key + rk.substring(1, 3);
return rk;
});
key = key + "_" + keys.length;
if (
key in this.meta_cache_timeout[id] &&
this.meta_cache_timeout[id][key] < +new Date()
) {
delete this.meta_cache[id][key];
delete this.meta_cache_timeout[id][key];
}
if (id in this.meta_cache && key in this.meta_cache[id]) {
callback(this.meta_cache[id][key]);
return;
}
const self = this;
this.db.query(
"select meta_value, meta_key from " +
this.table_prefix +
"usermeta where meta_key IN (" +
keys.join(", ") +
") and user_id = " +
parseInt(id),
function(err, results) {
const data = results && results.length ? results : {};
if (!(id in self.meta_cache)) self.meta_cache[id] = {};
self.meta_cache[id][key] = data.map(r => {
return {
[r.meta_key]: phpjs.unserialize(r.meta_value) || r.meta_value
};
});
if (!(key in self.meta_cache[id])) self.meta_cache[id][key] = null;
self.meta_cache_timeout[id][key] = +new Date() + self.timeout;
callback(self.meta_cache[id][key]);
}
);
};
WP_Auth.prototype.setUserMeta = function(id, key, value) {
if (!(id in this.meta_cache_timeout)) this.meta_cache_timeout[id] = {};
if (!(id in this.meta_cache)) this.meta_cache[id] = {};
this.meta_cache[id][key] = value;
this.meta_cache_timeout[id][key] = +new Date() + this.timeout;
var sanitized_value = sanitizeValue(value);
var self = this;
this.db.query(
"delete from " +
this.table_prefix +
"usermeta where meta_key = '" +
sanitizeValue(key) +
"' and user_id = " +
parseInt(id)
);
this.db.query(
"insert into " +
this.table_prefix +
"usermeta (meta_key, user_id, meta_value) VALUES('" +
sanitizeValue(key) +
"', " +
parseInt(id) +
", '" +
sanitized_value +
"')"
);
};
WP_Auth.prototype.reverseUserMeta = function(key, value, callback) {
for (var id in this.meta_cache) {
if (key in this.meta_cache[id] && this.meta_cache[id][key] == value) {
callback(id);
return;
}
}
var id = null;
var self = this;
this.db.query(
"select user_id from " +
this.table_prefix +
"usermeta where meta_key = '" +
sanitizeValue(key) +
"' and meta_value = '" +
sanitizeValue(key) +
"'",
function(err, results) {
var data = (results && results[0]) || {};
id = data.user_id;
if (!(id in self.meta_cache)) self.meta_cache[id] = {};
if (!(id in self.meta_cache_timeout)) self.meta_cache_timeout[id] = {};
self.meta_cache[id][key] = value;
self.meta_cache_timeout[id][key] = +new Date() + this.timeout;
callback(id);
}
);
};
WP_Auth.prototype.getContributors = function(callback) {
var self = this;
var users = [];
// this.db.query( 'select ID as user_id, user_login from ' + this.table_prefix + 'user' ).on( 'row', function( data ) {});
this.db.query(
"select user_id, user_login from " +
this.table_prefix +
"usermeta as meta left join " +
this.table_prefix +
"users as user on user.ID = meta.user_id where meta_key = 'wp_user_level' and meta_value = '1'",
function(err, results) {
var data = (results && results[0]) || {};
users.push(data);
//end
callback(users);
}
);
};
function Invalid_Auth(err) {
this.err = err;
}
Invalid_Auth.prototype.on = function(key, callback) {
if (key != "auth") return this;
var self = this;
process.nextTick(function() {
callback.call(self, false, 0, self.err);
});
return this;
};
function Valid_Auth(data, auth) {
var self = this,
user_login = data[0],
expiration = data[1],
token = data[2],
hash = data[3];
// user_login = user_login.replace('%40', '@');
user_login = decodeURIComponent(user_login);
if (
user_login in auth.known_hashes_timeout &&
auth.known_hashes_timeout[user_login] < +new Date()
) {
delete auth.known_hashes[user_login];
delete auth.known_hashes_timeout[user_login];
}
function parse(pass_frag, id) {
// console.log('Inside parse function', pass_frag, id)
var hmac1 = crypto.createHmac("md5", auth.salt);
var key = user_login + "|" + pass_frag + "|" + expiration + "|" + token;
hmac1.update(key);
var hkey = hmac1.digest("hex");
var hmac2 = crypto.createHmac("sha256", hkey);
hmac2.update(user_login + "|" + expiration + "|" + token);
var cookieHash = hmac2.digest("hex");
self.debug &&
console.log(
"++++++++++++++++++++++++++ hash from wp config::: ",
cookieHash
);
self.debug &&
console.log("++++++++++++++++++++++++++++ hash from cookies::: ", hash);
if (hash == cookieHash) {
self.emit("auth", true, id);
} else {
const userId = auth.skipAuthentication ? id : 0;
self.emit("auth", false, userId, "invalid hash");
}
}
if (self.checkKnownHashes) {
if (user_login in auth.known_hashes) {
return process.nextTick(function() {
parse(
auth.known_hashes[user_login].frag,
auth.known_hashes[user_login].id
);
});
}
}
var found = false;
auth.db.query(
"select ID, user_pass from " +
auth.table_prefix +
"users where user_login = '" +
user_login.replace(/(\'|\\)/g, "\\$1") +
"'",
function(err, results) {
// console.log('Query results', results, err)
const data = (results && results[0]) || "";
if (err || !data) {
auth.known_hashes[user_login] = { frag: "__fail__", id: 0 };
auth.known_hashes_timeout[user_login] = +new Date() + auth.timeout;
// parse( auth.known_hashes[user_login].frag, auth.known_hashes[user_login].id );
} else {
auth.known_hashes[user_login] = {
frag: data.user_pass.substr(8, 4),
id: data.ID
};
auth.known_hashes_timeout[user_login] = +new Date() + auth.timeout;
}
parse(
auth.known_hashes[user_login].frag,
auth.known_hashes[user_login].id
);
}
);
}
require("util").inherits(Valid_Auth, require("events").EventEmitter);
exports.create = function(config) {
const {
wpurl,
logged_in_key,
logged_in_salt,
mysql_host,
mysql_user,
mysql_pass,
mysql_port,
mysql_db,
wp_table_prefix,
skipAuthentication,
debug,
checkKnownHashes,
maxRetries
} = config;
return new WP_Auth(
wpurl,
logged_in_key,
logged_in_salt,
mysql_host,
mysql_user,
mysql_pass,
mysql_port,
mysql_db,
wp_table_prefix,
skipAuthentication,
debug,
checkKnownHashes,
maxRetries
);
};