forked from d0ky/node-wp-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp-auth.js
More file actions
executable file
·298 lines (289 loc) · 8.06 KB
/
Copy pathwp-auth.js
File metadata and controls
executable file
·298 lines (289 loc) · 8.06 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
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
var crypto = require('crypto'),
phpjs = require('./serialize');
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 handleDisconnect(mysql_host,mysql_user,mysql_pass,mysql_db){
const mysql = require('mysql2');
try{
pool = mysql.createPool({
host: mysql_host,
user: mysql_user,
password: mysql_pass,
database: mysql_db,
waitForConnections: true,
connectionLimit: 10,
queueLimit: 0
});
console.info('created pool to mysql host: ', mysql_host);
return pool;
}catch(e){
let date_ob = new Date();
console.log(date_ob.getHours()+":"+date_ob.getMinutes()+' db error', e);
console.error('Pool creation failed to mysql host:', mysql_host, e);
handleDisconnect();
}
}
function WP_Auth(
wpurl,
logged_in_key,
logged_in_salt,
mysql_host,
mysql_user,
mysql_pass,
mysql_port,
mysql_db,
wp_table_prefix
) {
console.info('Inside WP AUTH');
var md5 = crypto.createHash('md5');
md5.update(wpurl);
this.cookiename = 'wordpress_logged_in_' + md5.digest('hex');
this.salt = logged_in_key + logged_in_salt;
// Create the connection pool. The pool-specific settings are the defaults
this.pool = handleDisconnect(mysql_host,mysql_user,mysql_pass,mysql_db);
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.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');
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.pool.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]);
}
);
};
WP_Auth.prototype.setUserMeta = function (id, key, value) {
if (!(id in this.meta_cache_timeout)) this.meta_cache_timeout[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.pool.query(
'delete from' +
this.table_prefix +
"usermeta where meta_key = '" +
sanitizeValue(key) +
"' and user_id = " +
parseInt(id)
);
this.pool.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.pool.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.pool.query( 'select ID as user_id, user_login from ' + this.table_prefix + 'user' ).on( 'row', function( data ) {});
this.pool.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', '@');
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) {
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');
if (hash == cookieHash) {
self.emit('auth', true, id);
} else {
self.emit('auth', false, 0, 'invalid hash');
}
}
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.pool.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,
} = 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
);
};