-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
433 lines (383 loc) · 14.2 KB
/
index.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
"use strict";
var utils = require("./utils");
var cheerio = require("cheerio");
var log = require("npmlog");
var fs = require("fs");
function setOptions(globalOptions, options) {
Object.keys(options).map(function(key) {
switch (key) {
case 'logLevel':
log.level = options.logLevel;
globalOptions.logLevel = options.logLevel;
break;
case 'selfListen':
globalOptions.selfListen = options.selfListen;
break;
case 'listenEvents':
globalOptions.listenEvents = options.listenEvents;
break;
case 'pageID':
globalOptions.pageID = options.pageID.toString();
break;
case 'updatePresence':
globalOptions.updatePresence = options.updatePresence;
break;
case 'forceLogin':
globalOptions.forceLogin = options.forceLogin;
break;
default:
log.warn('Unrecognized option given to setOptions', key);
break;
}
});
}
function buildAPI(globalOptions, html, jar) {
var maybeCookie = jar.getCookies("https://www.facebook.com").filter(function(val) {
return val.cookieString().split("=")[0] === "c_user";
});
if(maybeCookie.length === 0) {
throw {error: "Error retrieving userID. This can be caused by a lot of things, including getting blocked by Facebook for logging in from an unknown location. Try logging in with a browser to verify."};
}
var userID = maybeCookie[0].cookieString().split("=")[1].toString();
log.info("Logged in");
var clientID = (Math.random() * 2147483648 | 0).toString(16);
// All data available to api functions
var ctx = {
userID: userID,
jar: jar,
clientID: clientID,
globalOptions: globalOptions,
loggedIn: true,
access_token: 'NONE'
};
var api = {
setOptions: setOptions.bind(null, globalOptions),
getAppState: function getAppState() {
return utils.getAppState(jar);
},
};
var apiFuncNames = [
'addUserToGroup',
'changeArchivedStatus',
'changeGroupImage',
'changeThreadColor',
'changeThreadEmoji',
'changeNickname',
'deleteMessage',
'deleteThread',
'getCurrentUserID',
'getFriendsList',
'getThreadHistory',
'getThreadInfo',
'getThreadList',
'getUserID',
'getUserInfo',
'handleMessageRequest',
'listen',
'logout',
'markAsRead',
'muteThread',
'removeUserFromGroup',
'searchForThread',
'sendMessage',
'sendTypingIndicator',
'setTitle',
];
var defaultFuncs = utils.makeDefaults(html, userID);
// Load all api functions in a loop
apiFuncNames.map(function(v) {
api[v] = require('./src/' + v)(defaultFuncs, api, ctx);
});
return [ctx, defaultFuncs, api];
}
function makeLogin(jar, email, password, loginOptions, callback) {
return function(res) {
var html = res.body;
var $ = cheerio.load(html);
var arr = [];
// This will be empty, but just to be sure we leave it
$("#login_form input").map(function(i, v){
arr.push({val: $(v).val(), name: $(v).attr("name")});
});
arr = arr.filter(function(v) {
return v.val && v.val.length;
});
var form = utils.arrToForm(arr);
form.lsd = utils.getFrom(html, "[\"LSD\",[],{\"token\":\"", "\"}");
form.lgndim = new Buffer("{\"w\":1440,\"h\":900,\"aw\":1440,\"ah\":834,\"c\":24}").toString('base64');
form.email = email;
form.pass = password;
form.default_persistent = '0';
form.lgnrnd = utils.getFrom(html, "name=\"lgnrnd\" value=\"", "\"");
form.locale = 'en_US';
form.timezone = '240';
form.lgnjs = ~~(Date.now() / 1000);
// Getting cookies from the HTML page... (kill me now plz)
// we used to get a bunch of cookies in the headers of the response of the
// request, but FB changed and they now send those cookies inside the JS.
// They run the JS which then injects the cookies in the page.
// The "solution" is to parse through the html and find those cookies
// which happen to be conveniently indicated with a _js_ in front of their
// variable name.
//
// ---------- Very Hacky Part Starts -----------------
var willBeCookies = html.split("\"_js_");
willBeCookies.slice(1).map(function(val) {
var cookieData = JSON.parse("[\"" + utils.getFrom(val, "", "]") + "]");
jar.setCookie(utils.formatCookie(cookieData, "facebook"), "https://www.facebook.com");
});
// ---------- Very Hacky Part Ends -----------------
log.info("Logging in...");
return utils
.post("https://www.facebook.com/login.php?login_attempt=1&lwv=110", jar, form)
.then(utils.saveCookies(jar))
.then(function(res) {
var headers = res.headers;
if (!headers.location) {
throw {error: "Wrong username/password."};
}
// This means the account has login approvals turned on.
if (headers.location.indexOf('https://www.facebook.com/checkpoint/') > -1) {
var nextURL = 'https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php';
return utils
.get(headers.location, jar)
.then(utils.saveCookies(jar))
.then(function(res) {
var html = res.body;
// Make the form in advance which will contain the fb_dtsg and nh
var $ = cheerio.load(html);
var arr = [];
$("form input").map(function(i, v){
arr.push({val: $(v).val(), name: $(v).attr("name")});
});
arr = arr.filter(function(v) {
return v.val && v.val.length;
});
var form = utils.arrToForm(arr);
if (html.indexOf("Enter Security Code to Continue") > -1 ||
html.indexOf("Enter Your Login Code") > -1) {
throw {
error: 'login-approval',
continue: function(code) {
form.approvals_code = code;
form['submit[Continue]'] = 'Continue';
return utils
.post(nextURL, jar, form)
.then(utils.saveCookies(jar))
.then(function() {
// Use the same form (safe I hope)
form.name_action_selected = 'save_device';
return utils
.post(nextURL, jar, form)
.then(utils.saveCookies(jar));
})
.then(function(res) {
var headers = res.headers;
if (!headers.location && res.body.indexOf('Review Recent Login') > -1) {
throw {error: "Something went wrong with login approvals."};
}
var appState = utils.getAppState(jar);
// Simply call loginHelper because all it needs is the jar
// and will then complete the login process
return loginHelper(appState, email, password, loginOptions, callback);
})
.catch(function(err) {
callback(err);
});
}
};
} else {
if (!loginOptions.forceLogin) {
throw {error: "Couldn't login. Facebook might have blocked this account. Please login with a browser or enable the option 'forceLogin' and try again."};
}
if (html.indexOf("Suspicious Login Attempt") > -1) {
form['submit[This was me]'] = "This was me";
} else {
form['submit[This Is Okay]'] = "This Is Okay";
}
return utils
.post(nextURL, jar, form)
.then(utils.saveCookies(jar))
.then(function() {
// Use the same form (safe I hope)
form.name_action_selected = 'save_device';
return utils
.post(nextURL, jar, form)
.then(utils.saveCookies(jar));
})
.then(function(res) {
var headers = res.headers;
if (!headers.location && res.body.indexOf('Review Recent Login') > -1) {
throw {error: "Something went wrong with review recent login."};
}
var appState = utils.getAppState(jar);
// Simply call loginHelper because all it needs is the jar
// and will then complete the login process
return loginHelper(appState, email, password, loginOptions, callback);
})
.catch(function(e) {
callback(e);
});
}
});
}
return utils
.get('https://www.facebook.com/', jar)
.then(utils.saveCookies(jar));
});
};
}
// Helps the login
function loginHelper(appState, email, password, globalOptions, callback) {
var mainPromise = null;
var jar = utils.getJar();
// If we're given an appState we loop through it and save each cookie
// back into the jar.
if(appState) {
appState.map(function(c) {
var str = c.key + "=" + c.value + "; expires=" + c.expires + "; domain=" + c.domain + "; path=" + c.path + ";";
jar.setCookie(str, "http://" + c.domain);
});
// Load the main page.
mainPromise = utils
.get('https://www.facebook.com/', jar)
.then(utils.saveCookies(jar));
} else {
// Open the main page, then we login with the given credentials and finally
// load the main page again (it'll give us some IDs that we need)
mainPromise = utils
.get("https://www.facebook.com/", null)
.then(utils.saveCookies(jar))
.then(makeLogin(jar, email, password, globalOptions, callback))
.then(function() {
return utils
.get('https://www.facebook.com/', jar)
.then(utils.saveCookies(jar));
});
}
var ctx = null;
var defaultFuncs = null;
var api = null;
mainPromise = mainPromise
.then(function(res) {
var html = res.body;
var stuff = buildAPI(globalOptions, html, jar);
ctx = stuff[0];
defaultFuncs = stuff[1];
api = stuff[2];
return res;
})
.then(function() {
var form = {
reason: 6
};
log.info('Request to reconnect');
return defaultFuncs
.get("https://www.facebook.com/ajax/presence/reconnect.php", ctx.jar, form)
.then(utils.saveCookies(ctx.jar));
})
.then(function(res) {
log.info('Request to pull 1');
var form = {
channel : 'p_' + ctx.userID,
seq : 0,
partition : -2,
clientid : ctx.clientID,
viewer_uid : ctx.userID,
uid : ctx.userID,
state : 'active',
idle : 0,
cap : 8,
msgs_recv: 0
};
var presence = utils.generatePresence(ctx.userID);
ctx.jar.setCookie("presence=" + presence + "; path=/; domain=.facebook.com; secure", "https://www.facebook.com");
ctx.jar.setCookie("presence=" + presence + "; path=/; domain=.messenger.com; secure", "https://www.messenger.com");
ctx.jar.setCookie("locale=en_US; path=/; domain=.facebook.com; secure", "https://www.facebook.com");
ctx.jar.setCookie("locale=en_US; path=/; domain=.messenger.com; secure", "https://www.messenger.com");
ctx.jar.setCookie("a11y=" + utils.generateAccessiblityCookie() + "; path=/; domain=.facebook.com; secure", "https://www.facebook.com");
return utils
.get("https://0-edge-chat.facebook.com/pull", ctx.jar, form)
.then(utils.saveCookies(ctx.jar))
.then(function(res) {
var ret = null;
try {
ret = JSON.parse(utils.makeParsable(res.body));
} catch(e) {
throw {error: "Error inside first pull request. Received HTML instead of JSON. Logging in inside a browser might help fix this."};
}
return ret;
});
})
.then(function(resData) {
if (resData.t !== 'lb') throw {error: "Bad response from pull 1"};
var form = {
channel : 'p_' + ctx.userID,
seq : 0,
partition : -2,
clientid : ctx.clientID,
viewer_uid : ctx.userID,
uid : ctx.userID,
state : 'active',
idle : 0,
cap : 8,
msgs_recv:0,
sticky_token: resData.lb_info.sticky,
sticky_pool: resData.lb_info.pool,
};
log.info("Request to pull 2");
return utils
.get("https://0-edge-chat.facebook.com/pull", ctx.jar, form)
.then(utils.saveCookies(ctx.jar));
})
.then(function() {
var form = {
'client' : 'mercury',
'folders[0]': 'inbox',
'last_action_timestamp' : '0'
};
log.info("Request to thread_sync");
return defaultFuncs
.post("https://www.facebook.com/ajax/mercury/thread_sync.php", ctx.jar, form)
.then(utils.saveCookies(ctx.jar));
});
// given a pageID we log in as a page
if (globalOptions.pageID) {
mainPromise = mainPromise
.then(function() {
return utils
.get('https://www.facebook.com/' + ctx.globalOptions.pageID + '/messages/?section=messages&subsection=inbox', ctx.jar);
})
.then(function(resData) {
var url = utils.getFrom(resData.body, 'window.location.replace("https:\\/\\/www.facebook.com\\', '");').split('\\').join('');
url = url.substring(0, url.length - 1);
return utils
.get('https://www.facebook.com' + url, ctx.jar);
});
}
// At the end we call the callback or catch an exception
mainPromise
.then(function() {
log.info('Done logging in.');
return callback(null, api);
})
.catch(function(e) {
log.error("Error in login:", e.error || e);
callback(e);
});
}
function login(loginData, options, callback) {
if(utils.getType(options) === 'Function') {
callback = options;
options = {};
}
var globalOptions = {
selfListen: false,
listenEvents: false,
updatePresence: false,
forceLogin: false,
};
setOptions(globalOptions, options);
loginHelper(loginData.appState, loginData.email, loginData.password, globalOptions, callback);
}
module.exports = login;