alicezetion 1.0.3 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. package/.cache/replit/__replit_disk_meta.json +1 -1
  2. package/.cache/replit/modules.stamp +1 -0
  3. package/.cache/replit/nix/env.json +1 -1
  4. package/index.js +536 -604
  5. package/package.json +78 -75
  6. package/replit.nix +6 -0
  7. package/src/addExternalModule.js +15 -0
  8. package/{alice → src}/addUserToGroup.js +77 -113
  9. package/src/changeAdminStatus.js +47 -0
  10. package/src/changeArchivedStatus.js +41 -0
  11. package/{alice → src}/changeBio.js +64 -77
  12. package/{alice → src}/changeBlockedStatus.js +36 -47
  13. package/{alice → src}/changeGroupImage.js +105 -129
  14. package/src/changeNickname.js +43 -0
  15. package/{alice → src}/changeThreadColor.js +61 -71
  16. package/src/changeThreadEmoji.js +41 -0
  17. package/src/chat.js +315 -0
  18. package/{alice → src}/createNewGroup.js +70 -86
  19. package/{alice → src}/createPoll.js +59 -71
  20. package/src/deleteMessage.js +44 -0
  21. package/src/deleteThread.js +42 -0
  22. package/src/forwardAttachment.js +47 -0
  23. package/src/forwardMessage.js +0 -0
  24. package/{alice → src}/getCurrentUserID.js +7 -7
  25. package/{alice → src}/getEmojiUrl.js +27 -29
  26. package/{alice → src}/getFriendsList.js +73 -84
  27. package/{alice → src}/getThreadHistory.js +537 -645
  28. package/src/getThreadHistoryDeprecated.js +71 -0
  29. package/{alice → src}/getThreadInfo.js +171 -206
  30. package/src/getThreadInfoDeprecated.js +56 -0
  31. package/{alice → src}/getThreadList.js +213 -238
  32. package/src/getThreadListDeprecated.js +46 -0
  33. package/src/getThreadPictures.js +59 -0
  34. package/{alice → src}/getUserID.js +61 -66
  35. package/{alice → src}/getUserInfo.js +66 -72
  36. package/src/handleFriendRequest.js +46 -0
  37. package/src/handleMessageRequest.js +47 -0
  38. package/{alice → src}/httpGet.js +47 -52
  39. package/{alice → src}/httpPost.js +47 -52
  40. package/src/listen.js +553 -0
  41. package/src/listenMqtt-Test.js +687 -0
  42. package/src/listenMqtt.js +677 -0
  43. package/{alice → src}/logout.js +68 -75
  44. package/{alice → src}/markAsDelivered.js +47 -58
  45. package/{alice → src}/markAsRead.js +70 -80
  46. package/{alice/seen.js → src/markAsReadAll.js} +39 -49
  47. package/{alice → src}/markAsSeen.js +48 -59
  48. package/{alice → src}/muteThread.js +45 -52
  49. package/src/removeUserFromGroup.js +45 -0
  50. package/{alice → src}/resolvePhotoUrl.js +36 -45
  51. package/src/searchForThread.js +42 -0
  52. package/{alice → src}/sendTypingIndicator.js +70 -103
  53. package/{alice/react.js → src/setMessageReaction.js} +103 -117
  54. package/{alice → src}/setPostReaction.js +63 -76
  55. package/{alice → src}/setTitle.js +70 -86
  56. package/src/threadColors.js +41 -0
  57. package/{alice → src}/unfriend.js +42 -52
  58. package/{alice → src}/unsendMessage.js +39 -49
  59. package/utils.js +1193 -1357
  60. package/alice/addExternalModule.js +0 -19
  61. package/alice/changeAdminStatus.js +0 -79
  62. package/alice/changeArchivedStatus.js +0 -55
  63. package/alice/changeNickname.js +0 -59
  64. package/alice/changeThreadEmoji.js +0 -55
  65. package/alice/chat.js +0 -459
  66. package/alice/deleteMessage.js +0 -56
  67. package/alice/deleteThread.js +0 -56
  68. package/alice/forwardAttachment.js +0 -60
  69. package/alice/getThreadHistoryDeprecated.js +0 -93
  70. package/alice/getThreadInfoDeprecated.js +0 -80
  71. package/alice/getThreadListDeprecated.js +0 -75
  72. package/alice/getThreadPictures.js +0 -79
  73. package/alice/handleFriendRequest.js +0 -61
  74. package/alice/handleMessageRequest.js +0 -65
  75. package/alice/listenMqtt.js +0 -789
  76. package/alice/removeUserFromGroup.js +0 -79
  77. package/alice/searchForThread.js +0 -53
  78. package/alice/threadColors.js +0 -57
  79. package/test/data/shareAttach.js +0 -146
  80. package/test/data/something.mov +0 -0
  81. package/test/data/test.png +0 -0
  82. package/test/data/test.txt +0 -7
  83. package/test/example-config.json +0 -18
  84. package/test/test-page.js +0 -140
  85. package/test/test.js +0 -385
package/index.js CHANGED
@@ -1,604 +1,536 @@
1
- "use strict";
2
-
3
- var utils = require("./utils");
4
- var cheerio = require("cheerio");
5
- var log = require("npmlog");
6
-
7
- var checkVerified = null;
8
-
9
- var defaultLogRecordSize = 100;
10
- log.maxRecordSize = defaultLogRecordSize;
11
-
12
- function setOptions(globalOptions, options) {
13
- Object.keys(options).map(function (key) {
14
- switch (key) {
15
- case 'online':
16
- globalOptions.online = Boolean(options.online);
17
- break;
18
- case 'logLevel':
19
- log.level = options.logLevel;
20
- globalOptions.logLevel = options.logLevel;
21
- break;
22
- case 'logRecordSize':
23
- log.maxRecordSize = options.logRecordSize;
24
- globalOptions.logRecordSize = options.logRecordSize;
25
- break;
26
- case 'selfListen':
27
- globalOptions.selfListen = Boolean(options.selfListen);
28
- break;
29
- case 'listenEvents':
30
- globalOptions.listenEvents = Boolean(options.listenEvents);
31
- break;
32
- case 'pageID':
33
- globalOptions.pageID = options.pageID.toString();
34
- break;
35
- case 'updatePresence':
36
- globalOptions.updatePresence = Boolean(options.updatePresence);
37
- break;
38
- case 'forceLogin':
39
- globalOptions.forceLogin = Boolean(options.forceLogin);
40
- break;
41
- case 'userAgent':
42
- globalOptions.userAgent = options.userAgent;
43
- break;
44
- case 'autoMarkDelivery':
45
- globalOptions.autoMarkDelivery = Boolean(options.autoMarkDelivery);
46
- break;
47
- case 'autoMarkRead':
48
- globalOptions.autoMarkRead = Boolean(options.autoMarkRead);
49
- break;
50
- case 'listenTyping':
51
- globalOptions.listenTyping = Boolean(options.listenTyping);
52
- break;
53
- case 'proxy':
54
- if (typeof options.proxy != "string") {
55
- delete globalOptions.proxy;
56
- utils.setProxy();
57
- } else {
58
- globalOptions.proxy = options.proxy;
59
- utils.setProxy(globalOptions.proxy);
60
- }
61
- break;
62
- case 'autoReconnect':
63
- globalOptions.autoReconnect = Boolean(options.autoReconnect);
64
- break;
65
- case 'emitReady':
66
- globalOptions.emitReady = Boolean(options.emitReady);
67
- break;
68
- default:
69
- log.warn("setOptions", "Unrecognized option given to setOptions: " + key);
70
- break;
71
- }
72
- });
73
- }
74
-
75
- function buildAPI(globalOptions, html, jar) {
76
- var maybeCookie = jar.getCookies("https://www.facebook.com").filter(function (val) {
77
- return val.cookieString().split("=")[0] === "c_user";
78
- });
79
-
80
- if (maybeCookie.length === 0) {
81
- 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." };
82
- }
83
-
84
- if (html.indexOf("/checkpoint/block/?next") > -1) {
85
- log.warn("login", "Checkpoint detected. Please log in with a browser to verify.");
86
- }
87
-
88
- var userID = maybeCookie[0].cookieString().split("=")[1].toString();
89
- log.info("login", `Logged in as ${userID}`);
90
-
91
- try {
92
- clearInterval(checkVerified);
93
- } catch (_) { }
94
-
95
- var clientID = (Math.random() * 2147483648 | 0).toString(16);
96
-
97
-
98
- let oldFBMQTTMatch = html.match(/irisSeqID:"(.+?)",appID:219994525426954,endpoint:"(.+?)"/);
99
- let mqttEndpoint = null;
100
- let region = null;
101
- let irisSeqID = null;
102
- var noMqttData = null;
103
-
104
- if (oldFBMQTTMatch) {
105
- irisSeqID = oldFBMQTTMatch[1];
106
- mqttEndpoint = oldFBMQTTMatch[2];
107
- region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
108
- log.info("login", `Got this account's message region: ${region}`);
109
- } else {
110
- let newFBMQTTMatch = html.match(/{"app_id":"219994525426954","endpoint":"(.+?)","iris_seq_id":"(.+?)"}/);
111
- if (newFBMQTTMatch) {
112
- irisSeqID = newFBMQTTMatch[2];
113
- mqttEndpoint = newFBMQTTMatch[1].replace(/\\\//g, "/");
114
- region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
115
- log.info("login", `Got this account's message region: ${region}`);
116
- } else {
117
- let legacyFBMQTTMatch = html.match(/(\["MqttWebConfig",\[\],{fbid:")(.+?)(",appID:219994525426954,endpoint:")(.+?)(",pollingEndpoint:")(.+?)(3790])/);
118
- if (legacyFBMQTTMatch) {
119
- mqttEndpoint = legacyFBMQTTMatch[4];
120
- region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
121
- log.warn("login", `Cannot get sequence ID with new RegExp. Fallback to old RegExp (without seqID)...`);
122
- log.info("login", `Got this account's message region: ${region}`);
123
- log.info("login", `[Unused] Polling endpoint: ${legacyFBMQTTMatch[6]}`);
124
- } else {
125
- log.warn("login", "Cannot get MQTT region & sequence ID.");
126
- noMqttData = html;
127
- }
128
- }
129
- }
130
-
131
- // All data available to api functions
132
- var ctx = {
133
- userID: userID,
134
- jar: jar,
135
- clientID: clientID,
136
- globalOptions: globalOptions,
137
- loggedIn: true,
138
- access_token: 'NONE',
139
- clientMutationId: 0,
140
- mqttClient: undefined,
141
- lastSeqId: irisSeqID,
142
- syncToken: undefined,
143
- mqttEndpoint,
144
- region,
145
- firstListen: true
146
- };
147
-
148
- var api = {
149
- setOptions: setOptions.bind(null, globalOptions),
150
- getAppState: function getAppState() {
151
- return utils.getAppState(jar);
152
- }
153
- };
154
-
155
- if (noMqttData) {
156
- api["htmlData"] = noMqttData;
157
- }
158
-
159
- const apiFuncNames = [
160
- 'addExternalModule',
161
- 'addUserToGroup',
162
- 'changeAdminStatus',
163
- 'changeArchivedStatus',
164
- 'changeBio',
165
- 'changeBlockedStatus',
166
- 'changeGroupImage',
167
- 'changeNickname',
168
- 'changeThreadColor',
169
- 'changeThreadEmoji',
170
- 'createNewGroup',
171
- 'createPoll',
172
- 'deleteMessage',
173
- 'deleteThread',
174
- 'forwardAttachment',
175
- 'getCurrentUserID',
176
- 'getEmojiUrl',
177
- 'getFriendsList',
178
- 'getThreadHistory',
179
- 'getThreadInfo',
180
- 'getThreadList',
181
- 'getThreadPictures',
182
- 'getUserID',
183
- 'getUserInfo',
184
- 'handleMessageRequest',
185
- 'listenMqtt',
186
- 'logout',
187
- 'markAsDelivered',
188
- 'markAsRead',
189
- 'seen',
190
- 'markAsSeen',
191
- 'muteThread',
192
- 'removeUserFromGroup',
193
- 'resolvePhotoUrl',
194
- 'searchForThread',
195
- 'chat',
196
- 'sendTypingIndicator',
197
- 'react',
198
- 'setTitle',
199
- 'threadColors',
200
- 'unsendMessage',
201
-
202
- // HTTP
203
- 'httpGet',
204
- 'httpPost',
205
-
206
- // Deprecated features
207
- "getThreadListDeprecated",
208
- 'getThreadHistoryDeprecated',
209
- 'getThreadInfoDeprecated',
210
- ];
211
-
212
- var defaultFuncs = utils.makeDefaults(html, userID, ctx);
213
-
214
- // Load all api functions in a loop
215
- apiFuncNames.map(function (v) {
216
- api[v] = require('./alice/' + v)(defaultFuncs, api, ctx);
217
- });
218
-
219
- //Removing original `listen` that uses pull.
220
- //Map it to listenMqtt instead for backward compatibly.
221
- api.listen = api.listenMqtt;
222
-
223
- return [ctx, defaultFuncs, api];
224
- }
225
-
226
- function makeLogin(jar, email, password, loginOptions, callback, prCallback) {
227
- return function (res) {
228
- var html = res.body;
229
- var $ = cheerio.load(html);
230
- var arr = [];
231
-
232
- // This will be empty, but just to be sure we leave it
233
- $("#login_form input").map(function (i, v) {
234
- arr.push({ val: $(v).val(), name: $(v).attr("name") });
235
- });
236
-
237
- arr = arr.filter(function (v) {
238
- return v.val && v.val.length;
239
- });
240
-
241
- var form = utils.arrToForm(arr);
242
- form.lsd = utils.getFrom(html, "[\"LSD\",[],{\"token\":\"", "\"}");
243
- form.lgndim = Buffer.from("{\"w\":1440,\"h\":900,\"aw\":1440,\"ah\":834,\"c\":24}").toString('base64');
244
- form.email = email;
245
- form.pass = password;
246
- form.default_persistent = '0';
247
- form.lgnrnd = utils.getFrom(html, "name=\"lgnrnd\" value=\"", "\"");
248
- form.locale = 'en_US';
249
- form.timezone = '240';
250
- form.lgnjs = ~~(Date.now() / 1000);
251
-
252
-
253
- // Getting cookies from the HTML page... (kill me now plz)
254
- // we used to get a bunch of cookies in the headers of the response of the
255
- // request, but FB changed and they now send those cookies inside the JS.
256
- // They run the JS which then injects the cookies in the page.
257
- // The "solution" is to parse through the html and find those cookies
258
- // which happen to be conveniently indicated with a _js_ in front of their
259
- // variable name.
260
- //
261
- // ---------- Very Hacky Part Starts -----------------
262
- var willBeCookies = html.split("\"_js_");
263
- willBeCookies.slice(1).map(function (val) {
264
- var cookieData = JSON.parse("[\"" + utils.getFrom(val, "", "]") + "]");
265
- jar.setCookie(utils.formatCookie(cookieData, "facebook"), "https://www.facebook.com");
266
- });
267
- // ---------- Very Hacky Part Ends -----------------
268
-
269
- log.info("login", "Logging in...");
270
- return utils
271
- .post("https://www.facebook.com/login/device-based/regular/login/?login_attempt=1&lwv=110", jar, form, loginOptions)
272
- .then(utils.saveCookies(jar))
273
- .then(function (res) {
274
- var headers = res.headers;
275
- if (!headers.location) {
276
- throw { error: "Wrong username/password." };
277
- }
278
-
279
- // This means the account has login approvals turned on.
280
- if (headers.location.indexOf('https://www.facebook.com/checkpoint/') > -1) {
281
- log.info("login", "You have login approvals turned on.");
282
- var nextURL = 'https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php';
283
-
284
- return utils
285
- .get(headers.location, jar, null, loginOptions)
286
- .then(utils.saveCookies(jar))
287
- .then(function (res) {
288
- var html = res.body;
289
- // Make the form in advance which will contain the fb_dtsg and nh
290
- var $ = cheerio.load(html);
291
- var arr = [];
292
- $("form input").map(function (i, v) {
293
- arr.push({ val: $(v).val(), name: $(v).attr("name") });
294
- });
295
-
296
- arr = arr.filter(function (v) {
297
- return v.val && v.val.length;
298
- });
299
-
300
- var form = utils.arrToForm(arr);
301
- if (html.indexOf("checkpoint/?next") > -1) {
302
- setTimeout(() => {
303
- checkVerified = setInterval((_form) => {
304
- /* utils
305
- .post("https://www.facebook.com/login/approvals/approved_machine_check/", jar, form, loginOptions, null, {
306
- "Referer": "https://www.facebook.com/checkpoint/?next"
307
- })
308
- .then(utils.saveCookies(jar))
309
- .then(res => {
310
- try {
311
- JSON.parse(res.body.replace(/for\s*\(\s*;\s*;\s*\)\s*;\s*()/, ""));
312
- } catch (ex) {
313
- clearInterval(checkVerified);
314
- log.info("login", "Verified from browser. Logging in...");
315
- return loginHelper(utils.getAppState(jar), email, password, loginOptions, callback);
316
- }
317
- })
318
- .catch(ex => {
319
- log.error("login", ex);
320
- }); */
321
- }, 5000, {
322
- fb_dtsg: form.fb_dtsg,
323
- jazoest: form.jazoest,
324
- dpr: 1
325
- });
326
- }, 2500);
327
- throw {
328
- error: 'login-approval',
329
- continue: function submit2FA(code) {
330
- form.approvals_code = code;
331
- form['submit[Continue]'] = $("#checkpointSubmitButton").html(); //'Continue';
332
- var prResolve = null;
333
- var prReject = null;
334
- var rtPromise = new Promise(function (resolve, reject) {
335
- prResolve = resolve;
336
- prReject = reject;
337
- });
338
- if (typeof code == "string") {
339
- utils
340
- .post(nextURL, jar, form, loginOptions)
341
- .then(utils.saveCookies(jar))
342
- .then(function (res) {
343
- var $ = cheerio.load(res.body);
344
- var error = $("#approvals_code").parent().attr("data-xui-error");
345
- if (error) {
346
- throw {
347
- error: 'login-approval',
348
- errordesc: "Invalid 2FA code.",
349
- lerror: error,
350
- continue: submit2FA
351
- };
352
- }
353
- })
354
- .then(function () {
355
- // Use the same form (safe I hope)
356
- delete form.no_fido;
357
- delete form.approvals_code;
358
- form.name_action_selected = 'dont_save'; //'save_device';
359
-
360
- return utils
361
- .post(nextURL, jar, form, loginOptions)
362
- .then(utils.saveCookies(jar));
363
- })
364
- .then(function (res) {
365
- var headers = res.headers;
366
- if (!headers.location && res.body.indexOf('Review Recent Login') > -1) {
367
- throw { error: "Something went wrong with login approvals." };
368
- }
369
-
370
- var appState = utils.getAppState(jar);
371
-
372
- if (callback === prCallback) {
373
- callback = function (err, api) {
374
- if (err) {
375
- return prReject(err);
376
- }
377
- return prResolve(api);
378
- };
379
- }
380
-
381
- // Simply call loginHelper because all it needs is the jar
382
- // and will then complete the login process
383
- return loginHelper(appState, email, password, loginOptions, callback);
384
- })
385
- .catch(function (err) {
386
- // Check if using Promise instead of callback
387
- if (callback === prCallback) {
388
- prReject(err);
389
- } else {
390
- callback(err);
391
- }
392
- });
393
- } else {
394
- utils
395
- .post("https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php", jar, form, loginOptions, null, {
396
- "Referer": "https://www.facebook.com/checkpoint/?next"
397
- })
398
- .then(utils.saveCookies(jar))
399
- .then(res => {
400
- try {
401
- JSON.parse(res.body.replace(/for\s*\(\s*;\s*;\s*\)\s*;\s*/, ""));
402
- } catch (ex) {
403
- clearInterval(checkVerified);
404
- log.info("login", "Verified from browser. Logging in...");
405
- if (callback === prCallback) {
406
- callback = function (err, api) {
407
- if (err) {
408
- return prReject(err);
409
- }
410
- return prResolve(api);
411
- };
412
- }
413
- return loginHelper(utils.getAppState(jar), email, password, loginOptions, callback);
414
- }
415
- })
416
- .catch(ex => {
417
- log.error("login", ex);
418
- if (callback === prCallback) {
419
- prReject(ex);
420
- } else {
421
- callback(ex);
422
- }
423
- });
424
- }
425
- return rtPromise;
426
- }
427
- };
428
- } else {
429
- if (!loginOptions.forceLogin) {
430
- throw { error: "Couldn't login. Facebook might have blocked this account. Please login with a browser or enable the option 'forceLogin' and try again." };
431
- }
432
- if (html.indexOf("Suspicious Login Attempt") > -1) {
433
- form['submit[This was me]'] = "This was me";
434
- } else {
435
- form['submit[This Is Okay]'] = "This Is Okay";
436
- }
437
-
438
- return utils
439
- .post(nextURL, jar, form, loginOptions)
440
- .then(utils.saveCookies(jar))
441
- .then(function () {
442
- // Use the same form (safe I hope)
443
- form.name_action_selected = 'save_device';
444
-
445
- return utils
446
- .post(nextURL, jar, form, loginOptions)
447
- .then(utils.saveCookies(jar));
448
- })
449
- .then(function (res) {
450
- var headers = res.headers;
451
-
452
- if (!headers.location && res.body.indexOf('Review Recent Login') > -1) {
453
- throw { error: "Something went wrong with review recent login." };
454
- }
455
-
456
- var appState = utils.getAppState(jar);
457
-
458
- // Simply call loginHelper because all it needs is the jar
459
- // and will then complete the login process
460
- return loginHelper(appState, email, password, loginOptions, callback);
461
- })
462
- .catch(function (e) {
463
- callback(e);
464
- });
465
- }
466
- });
467
- }
468
-
469
- return utils
470
- .get('https://www.facebook.com/', jar, null, loginOptions)
471
- .then(utils.saveCookies(jar));
472
- });
473
- };
474
- }
475
-
476
- // Helps the login
477
- function loginHelper(appState, email, password, globalOptions, callback, prCallback) {
478
- var mainPromise = null;
479
- var jar = utils.getJar();
480
-
481
- // If we're given an appState we loop through it and save each cookie
482
- // back into the jar.
483
- if (appState) {
484
- appState.map(function (c) {
485
- var str = c.key + "=" + c.value + "; expires=" + c.expires + "; domain=" + c.domain + "; path=" + c.path + ";";
486
- jar.setCookie(str, "http://" + c.domain);
487
- });
488
-
489
- // Load the main page.
490
- mainPromise = utils
491
- .get('https://www.facebook.com/', jar, null, globalOptions, { noRef: true })
492
- .then(utils.saveCookies(jar));
493
- } else {
494
- // Open the main page, then we login with the given credentials and finally
495
- // load the main page again (it'll give us some IDs that we need)
496
- mainPromise = utils
497
- .get("https://www.facebook.com/", null, null, globalOptions, { noRef: true })
498
- .then(utils.saveCookies(jar))
499
- .then(makeLogin(jar, email, password, globalOptions, callback, prCallback))
500
- .then(function () {
501
- return utils
502
- .get('https://www.facebook.com/', jar, null, globalOptions)
503
- .then(utils.saveCookies(jar));
504
- });
505
- }
506
-
507
- var ctx = null;
508
- var _defaultFuncs = null;
509
- var api = null;
510
-
511
- mainPromise = mainPromise
512
- .then(function (res) {
513
- // Hacky check for the redirection that happens on some ISPs, which doesn't return statusCode 3xx
514
- var reg = /<meta http-equiv="refresh" content="0;url=([^"]+)[^>]+>/;
515
- var redirect = reg.exec(res.body);
516
- if (redirect && redirect[1]) {
517
- return utils
518
- .get(redirect[1], jar, null, globalOptions)
519
- .then(utils.saveCookies(jar));
520
- }
521
- return res;
522
- })
523
- .then(function (res) {
524
- var html = res.body;
525
- var stuff = buildAPI(globalOptions, html, jar);
526
- ctx = stuff[0];
527
- _defaultFuncs = stuff[1];
528
- api = stuff[2];
529
- return res;
530
- });
531
-
532
- // given a pageID we log in as a page
533
- if (globalOptions.pageID) {
534
- mainPromise = mainPromise
535
- .then(function () {
536
- return utils
537
- .get('https://www.facebook.com/' + ctx.globalOptions.pageID + '/messages/?section=messages&subsection=inbox', ctx.jar, null, globalOptions);
538
- })
539
- .then(function (resData) {
540
- var url = utils.getFrom(resData.body, 'window.location.replace("https:\\/\\/www.facebook.com\\', '");').split('\\').join('');
541
- url = url.substring(0, url.length - 1);
542
-
543
- return utils
544
- .get('https://www.facebook.com' + url, ctx.jar, null, globalOptions);
545
- });
546
- }
547
-
548
- // At the end we call the callback or catch an exception
549
- mainPromise
550
- .then(function () {
551
- log.info("login", 'Done logging in.');
552
- return callback(null, api);
553
- })
554
- .catch(function (e) {
555
- log.error("login", e.error || e);
556
- callback(e);
557
- });
558
- }
559
-
560
- function login(loginData, options, callback) {
561
- if (utils.getType(options) === 'Function' || utils.getType(options) === 'AsyncFunction') {
562
- callback = options;
563
- options = {};
564
- }
565
-
566
- var globalOptions = {
567
- selfListen: false,
568
- listenEvents: false,
569
- listenTyping: false,
570
- updatePresence: false,
571
- forceLogin: false,
572
- autoMarkDelivery: true,
573
- autoMarkRead: false,
574
- autoReconnect: true,
575
- logRecordSize: defaultLogRecordSize,
576
- online: true,
577
- emitReady: false,
578
- userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18"
579
- };
580
-
581
- setOptions(globalOptions, options);
582
-
583
- var prCallback = null;
584
- if (utils.getType(callback) !== "Function" && utils.getType(callback) !== "AsyncFunction") {
585
- var rejectFunc = null;
586
- var resolveFunc = null;
587
- var returnPromise = new Promise(function (resolve, reject) {
588
- resolveFunc = resolve;
589
- rejectFunc = reject;
590
- });
591
- prCallback = function (error, api) {
592
- if (error) {
593
- return rejectFunc(error);
594
- }
595
- return resolveFunc(api);
596
- };
597
- callback = prCallback;
598
- }
599
- loginHelper(loginData.appState, loginData.email, loginData.password, globalOptions, callback, prCallback);
600
- return returnPromise;
601
- }
602
-
603
- module.exports = login;
604
-
1
+ /*
2
+ LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash LeiamNash
3
+ */
4
+
5
+ "use strict";
6
+
7
+ var utils = require("./utils");
8
+ var cheerio = require("cheerio");
9
+ var log = require("npmlog");
10
+
11
+ var checkVerified = null;
12
+
13
+ var defaultLogRecordSize = 100;
14
+ log.maxRecordSize = defaultLogRecordSize;
15
+
16
+ function setOptions(globalOptions, options) {
17
+ Object.keys(options).map(function(key) {
18
+ switch (key) {
19
+ case 'pauseLog':
20
+ if (options.pauseLog) log.pause();
21
+ break;
22
+ case 'online':
23
+ globalOptions.online = Boolean(options.online);
24
+ break;
25
+ case 'logLevel':
26
+ log.level = options.logLevel;
27
+ globalOptions.logLevel = options.logLevel;
28
+ break;
29
+ case 'logRecordSize':
30
+ log.maxRecordSize = options.logRecordSize;
31
+ globalOptions.logRecordSize = options.logRecordSize;
32
+ break;
33
+ case 'selfListen':
34
+ globalOptions.selfListen = Boolean(options.selfListen);
35
+ break;
36
+ case 'listenEvents':
37
+ globalOptions.listenEvents = Boolean(options.listenEvents);
38
+ break;
39
+ case 'pageID':
40
+ globalOptions.pageID = options.pageID.toString();
41
+ break;
42
+ case 'updatePresence':
43
+ globalOptions.updatePresence = Boolean(options.updatePresence);
44
+ break;
45
+ case 'forceLogin':
46
+ globalOptions.forceLogin = Boolean(options.forceLogin);
47
+ break;
48
+ case 'userAgent':
49
+ globalOptions.userAgent = options.userAgent;
50
+ break;
51
+ case 'autoMarkDelivery':
52
+ globalOptions.autoMarkDelivery = Boolean(options.autoMarkDelivery);
53
+ break;
54
+ case 'autoMarkRead':
55
+ globalOptions.autoMarkRead = Boolean(options.autoMarkRead);
56
+ break;
57
+ case 'listenTyping':
58
+ globalOptions.listenTyping = Boolean(options.listenTyping);
59
+ break;
60
+ case 'proxy':
61
+ if (typeof options.proxy != "string") {
62
+ delete globalOptions.proxy;
63
+ utils.setProxy();
64
+ } else {
65
+ globalOptions.proxy = options.proxy;
66
+ utils.setProxy(globalOptions.proxy);
67
+ }
68
+ break;
69
+ case 'autoReconnect':
70
+ globalOptions.autoReconnect = Boolean(options.autoReconnect);
71
+ break;
72
+ case 'emitReady':
73
+ globalOptions.emitReady = Boolean(options.emitReady);
74
+ break;
75
+ default:
76
+ log.warn("setOptions", "Unrecognized option given to setOptions: " + key);
77
+ break;
78
+ }
79
+ });
80
+ }
81
+
82
+ function buildAPI(globalOptions, html, jar) {
83
+ var maybeCookie = jar.getCookies("https://www.facebook.com").filter(function(val) {
84
+ return val.cookieString().split("=")[0] === "c_user";
85
+ });
86
+
87
+ 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." };
88
+
89
+ if (html.indexOf("/checkpoint/block/?next") > -1) log.warn("login", "Checkpoint detected. Please log in with a browser to verify.");
90
+
91
+ var userID = maybeCookie[0].cookieString().split("=")[1].toString();
92
+ //log.info("login", `Logged in as ${userID}`);
93
+
94
+ try {
95
+ clearInterval(checkVerified);
96
+ } catch (_) {}
97
+
98
+ var clientID = (Math.random() * 2147483648 | 0).toString(16);
99
+
100
+ let oldFBMQTTMatch = html.match(/irisSeqID:"(.+?)",appID:219994525426954,endpoint:"(.+?)"/);
101
+ let mqttEndpoint = null;
102
+ let region = null;
103
+ let irisSeqID = null;
104
+ var noMqttData = null;
105
+
106
+ if (oldFBMQTTMatch) {
107
+ irisSeqID = oldFBMQTTMatch[1];
108
+ mqttEndpoint = oldFBMQTTMatch[2];
109
+ region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
110
+ //log.info("login", `Got this account's message region: ${region}`);
111
+ } else {
112
+ let newFBMQTTMatch = html.match(/{"app_id":"219994525426954","endpoint":"(.+?)","iris_seq_id":"(.+?)"}/);
113
+ if (newFBMQTTMatch) {
114
+ irisSeqID = newFBMQTTMatch[2];
115
+ mqttEndpoint = newFBMQTTMatch[1].replace(/\\\//g, "/");
116
+ region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
117
+ log.info("login", `Got this account's message region: ${region}`);
118
+ } else {
119
+ let legacyFBMQTTMatch = html.match(/(\["MqttWebConfig",\[\],{fbid:")(.+?)(",appID:219994525426954,endpoint:")(.+?)(",pollingEndpoint:")(.+?)(3790])/);
120
+ if (legacyFBMQTTMatch) {
121
+ mqttEndpoint = legacyFBMQTTMatch[4];
122
+ region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
123
+ log.warn("login", `Cannot get sequence ID with new RegExp. Fallback to old RegExp (without seqID)...`);
124
+ log.info("login", `Got this account's message region: ${region}`);
125
+ log.info("login", `[Unused] Polling endpoint: ${legacyFBMQTTMatch[6]}`);
126
+ } else {
127
+ log.warn("login", "» Cannot get MQTT region & sequence ID.");
128
+ log.error("login", "» Please try closing and reopening your browser window or get new fbstate.");
129
+ noMqttData = html;
130
+ process.exit();
131
+ }
132
+ }
133
+ }
134
+
135
+ // All data available to api functions
136
+ var ctx = {
137
+ userID: userID,
138
+ jar: jar,
139
+ clientID: clientID,
140
+ globalOptions: globalOptions,
141
+ loggedIn: true,
142
+ access_token: 'NONE',
143
+ clientMutationId: 0,
144
+ mqttClient: undefined,
145
+ lastSeqId: irisSeqID,
146
+ syncToken: undefined,
147
+ mqttEndpoint,
148
+ region,
149
+ firstListen: true
150
+ };
151
+
152
+ var api = {
153
+ setOptions: setOptions.bind(null, globalOptions),
154
+ getAppState: function getAppState() {
155
+ return utils.getAppState(jar);
156
+ }
157
+ };
158
+
159
+ if (noMqttData) api["htmlData"] = noMqttData;
160
+
161
+ const apiFuncNames = [
162
+ 'addExternalModule',
163
+ 'addUserToGroup',
164
+ 'changeAdminStatus',
165
+ 'changeArchivedStatus',
166
+ 'changeBio',
167
+ 'changeBlockedStatus',
168
+ 'changeGroupImage',
169
+ 'changeNickname',
170
+ 'changeThreadColor',
171
+ 'changeThreadEmoji',
172
+ 'chat',
173
+ 'createNewGroup',
174
+ 'createPoll',
175
+ 'deleteMessage',
176
+ 'deleteThread',
177
+ 'forwardAttachment',
178
+ 'getCurrentUserID',
179
+ 'getEmojiUrl',
180
+ 'getFriendsList',
181
+ 'getThreadHistory',
182
+ 'getThreadInfo',
183
+ 'getThreadList',
184
+ 'getThreadPictures',
185
+ 'getUserID',
186
+ 'getUserInfo',
187
+ 'handleFriendRequest',
188
+ 'handleMessageRequest',
189
+ 'listenMqtt',
190
+ 'logout',
191
+ 'markAsDelivered',
192
+ 'markAsRead',
193
+ 'markAsReadAll',
194
+ 'markAsSeen',
195
+ 'muteThread',
196
+ 'removeUserFromGroup',
197
+ 'resolvePhotoUrl',
198
+ 'searchForThread',
199
+ 'sendTypingIndicator',
200
+ 'setMessageReaction',
201
+ 'setTitle',
202
+ 'threadColors',
203
+ 'unsendMessage',
204
+ 'unfriend',
205
+
206
+ // HTTP
207
+ 'httpGet',
208
+ 'httpPost',
209
+
210
+ // Deprecated features
211
+ "getThreadListDeprecated",
212
+ 'getThreadHistoryDeprecated',
213
+ 'getThreadInfoDeprecated',
214
+ ];
215
+
216
+ var defaultFuncs = utils.makeDefaults(html, userID, ctx);
217
+
218
+ // Load all api functions in a loop
219
+ apiFuncNames.map(v => api[v] = require('./src/' + v)(defaultFuncs, api, ctx));
220
+
221
+ return [ctx, defaultFuncs, api];
222
+ }
223
+
224
+ function makeLogin(jar, email, password, loginOptions, callback, prCallback) {
225
+ return function(res) {
226
+ var html = res.body;
227
+ var $ = cheerio.load(html);
228
+ var arr = [];
229
+
230
+ // This will be empty, but just to be sure we leave it
231
+ $("#login_form input").map((i, v) => arr.push({ val: $(v).val(), name: $(v).attr("name") }));
232
+
233
+ arr = arr.filter(function(v) {
234
+ return v.val && v.val.length;
235
+ });
236
+
237
+ var form = utils.arrToForm(arr);
238
+ form.lsd = utils.getFrom(html, "[\"LSD\",[],{\"token\":\"", "\"}");
239
+ form.lgndim = Buffer.from("{\"w\":1440,\"h\":900,\"aw\":1440,\"ah\":834,\"c\":24}").toString('base64');
240
+ form.email = email;
241
+ form.pass = password;
242
+ form.default_persistent = '0';
243
+ form.lgnrnd = utils.getFrom(html, "name=\"lgnrnd\" value=\"", "\"");
244
+ form.locale = 'en_US';
245
+ form.timezone = '240';
246
+ form.lgnjs = ~~(Date.now() / 1000);
247
+
248
+
249
+ // Getting cookies from the HTML page... (kill me now plz)
250
+ // we used to get a bunch of cookies in the headers of the response of the
251
+ // request, but FB changed and they now send those cookies inside the JS.
252
+ // They run the JS which then injects the cookies in the page.
253
+ // The "solution" is to parse through the html and find those cookies
254
+ // which happen to be conveniently indicated with a _js_ in front of their
255
+ // variable name.
256
+ //
257
+ // ---------- Very Hacky Part Starts -----------------
258
+ var willBeCookies = html.split("\"_js_");
259
+ willBeCookies.slice(1).map(function(val) {
260
+ var cookieData = JSON.parse("[\"" + utils.getFrom(val, "", "]") + "]");
261
+ jar.setCookie(utils.formatCookie(cookieData, "facebook"), "https://www.facebook.com");
262
+ });
263
+ // ---------- Very Hacky Part Ends -----------------
264
+
265
+ log.info("login", "Logging in...");
266
+ return utils
267
+ .post("https://www.facebook.com/login/device-based/regular/login/?login_attempt=1&lwv=110", jar, form, loginOptions)
268
+ .then(utils.saveCookies(jar))
269
+ .then(function(res) {
270
+ var headers = res.headers;
271
+ if (!headers.location) throw { error: "Wrong username/password." };
272
+
273
+ // This means the account has login approvals turned on.
274
+ if (headers.location.indexOf('https://www.facebook.com/checkpoint/') > -1) {
275
+ log.info("login", "You have login approvals turned on.");
276
+ var nextURL = 'https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php';
277
+
278
+ return utils
279
+ .get(headers.location, jar, null, loginOptions)
280
+ .then(utils.saveCookies(jar))
281
+ .then(function(res) {
282
+ var html = res.body;
283
+ // Make the form in advance which will contain the fb_dtsg and nh
284
+ var $ = cheerio.load(html);
285
+ var arr = [];
286
+ $("form input").map((i, v) => arr.push({ val: $(v).val(), name: $(v).attr("name") }));
287
+
288
+ arr = arr.filter(function(v) {
289
+ return v.val && v.val.length;
290
+ });
291
+
292
+ var form = utils.arrToForm(arr);
293
+ if (html.indexOf("checkpoint/?next") > -1) {
294
+ setTimeout(() => {
295
+ checkVerified = setInterval((_form) => {}, 5000, {
296
+ fb_dtsg: form.fb_dtsg,
297
+ jazoest: form.jazoest,
298
+ dpr: 1
299
+ });
300
+ }, 2500);
301
+ throw {
302
+ error: 'login-approval',
303
+ continue: function submit2FA(code) {
304
+ form.approvals_code = code;
305
+ form['submit[Continue]'] = $("#checkpointSubmitButton").html(); //'Continue';
306
+ var prResolve = null;
307
+ var prReject = null;
308
+ var rtPromise = new Promise(function(resolve, reject) {
309
+ prResolve = resolve;
310
+ prReject = reject;
311
+ });
312
+ if (typeof code == "string") {
313
+ utils
314
+ .post(nextURL, jar, form, loginOptions)
315
+ .then(utils.saveCookies(jar))
316
+ .then(function(res) {
317
+ var $ = cheerio.load(res.body);
318
+ var error = $("#approvals_code").parent().attr("data-xui-error");
319
+ if (error) {
320
+ throw {
321
+ error: 'login-approval',
322
+ errordesc: "Invalid 2FA code.",
323
+ lerror: error,
324
+ continue: submit2FA
325
+ };
326
+ }
327
+ })
328
+ .then(function() {
329
+ // Use the same form (safe I hope)
330
+ delete form.no_fido;
331
+ delete form.approvals_code;
332
+ form.name_action_selected = 'dont_save'; //'save_device';
333
+
334
+ return utils.post(nextURL, jar, form, loginOptions).then(utils.saveCookies(jar));
335
+ })
336
+ .then(function(res) {
337
+ var headers = res.headers;
338
+ if (!headers.location && res.body.indexOf('Review Recent Login') > -1) throw { error: "Something went wrong with login approvals." };
339
+
340
+ var appState = utils.getAppState(jar);
341
+
342
+ if (callback === prCallback) {
343
+ callback = function(err, api) {
344
+ if (err) return prReject(err);
345
+ return prResolve(api);
346
+ };
347
+ }
348
+
349
+ // Simply call loginHelper because all it needs is the jar
350
+ // and will then complete the login process
351
+ return loginHelper(appState, email, password, loginOptions, callback);
352
+ })
353
+ .catch(function(err) {
354
+ // Check if using Promise instead of callback
355
+ if (callback === prCallback) prReject(err);
356
+ else callback(err);
357
+ });
358
+ } else {
359
+ utils
360
+ .post("https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php", jar, form, loginOptions, null, { "Referer": "https://www.facebook.com/checkpoint/?next" })
361
+ .then(utils.saveCookies(jar))
362
+ .then(res => {
363
+ try {
364
+ JSON.parse(res.body.replace(/for\s*\(\s*;\s*;\s*\)\s*;\s*/, ""));
365
+ } catch (ex) {
366
+ clearInterval(checkVerified);
367
+ log.info("login", "Verified from browser. Logging in...");
368
+ if (callback === prCallback) {
369
+ callback = function(err, api) {
370
+ if (err) return prReject(err);
371
+ return prResolve(api);
372
+ };
373
+ }
374
+ return loginHelper(utils.getAppState(jar), email, password, loginOptions, callback);
375
+ }
376
+ })
377
+ .catch(ex => {
378
+ log.error("login", ex);
379
+ if (callback === prCallback) prReject(ex);
380
+ else callback(ex);
381
+ });
382
+ }
383
+ return rtPromise;
384
+ }
385
+ };
386
+ } else {
387
+ 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." };
388
+
389
+ if (html.indexOf("Suspicious Login Attempt") > -1) form['submit[This was me]'] = "This was me";
390
+ else form['submit[This Is Okay]'] = "This Is Okay";
391
+
392
+ return utils
393
+ .post(nextURL, jar, form, loginOptions)
394
+ .then(utils.saveCookies(jar))
395
+ .then(function() {
396
+ // Use the same form (safe I hope)
397
+ form.name_action_selected = 'save_device';
398
+
399
+ return utils.post(nextURL, jar, form, loginOptions).then(utils.saveCookies(jar));
400
+ })
401
+ .then(function(res) {
402
+ var headers = res.headers;
403
+
404
+ if (!headers.location && res.body.indexOf('Review Recent Login') > -1) throw { error: "Something went wrong with review recent login." };
405
+
406
+ var appState = utils.getAppState(jar);
407
+
408
+ // Simply call loginHelper because all it needs is the jar
409
+ // and will then complete the login process
410
+ return loginHelper(appState, email, password, loginOptions, callback);
411
+ })
412
+ .catch(e => callback(e));
413
+ }
414
+ });
415
+ }
416
+
417
+ return utils.get('https://www.facebook.com/', jar, null, loginOptions).then(utils.saveCookies(jar));
418
+ });
419
+ };
420
+ }
421
+
422
+ // Helps the login
423
+ function loginHelper(appState, email, password, globalOptions, callback, prCallback) {
424
+ var mainPromise = null;
425
+ var jar = utils.getJar();
426
+
427
+ // If we're given an appState we loop through it and save each cookie
428
+ // back into the jar.
429
+ if (appState) {
430
+ appState.map(function(c) {
431
+ var str = c.key + "=" + c.value + "; expires=" + c.expires + "; domain=" + c.domain + "; path=" + c.path + ";";
432
+ jar.setCookie(str, "http://" + c.domain);
433
+ });
434
+
435
+ // Load the main page.
436
+ mainPromise = utils.get('https://www.facebook.com/', jar, null, globalOptions, { noRef: true }).then(utils.saveCookies(jar));
437
+ } else {
438
+ // Open the main page, then we login with the given credentials and finally
439
+ // load the main page again (it'll give us some IDs that we need)
440
+ mainPromise = utils
441
+ .get("https://www.facebook.com/", null, null, globalOptions, { noRef: true })
442
+ .then(utils.saveCookies(jar))
443
+ .then(makeLogin(jar, email, password, globalOptions, callback, prCallback))
444
+ .then(function() {
445
+ return utils.get('https://www.facebook.com/', jar, null, globalOptions).then(utils.saveCookies(jar));
446
+ });
447
+ }
448
+
449
+ var ctx = null;
450
+ var _defaultFuncs = null;
451
+ var api = null;
452
+
453
+ mainPromise = mainPromise
454
+ .then(function(res) {
455
+ // Hacky check for the redirection that happens on some ISPs, which doesn't return statusCode 3xx
456
+ var reg = /<meta http-equiv="refresh" content="0;url=([^"]+)[^>]+>/;
457
+ var redirect = reg.exec(res.body);
458
+ if (redirect && redirect[1]) return utils.get(redirect[1], jar, null, globalOptions).then(utils.saveCookies(jar));
459
+ return res;
460
+ })
461
+ .then(function(res) {
462
+ var html = res.body;
463
+ var stuff = buildAPI(globalOptions, html, jar);
464
+ ctx = stuff[0];
465
+ _defaultFuncs = stuff[1];
466
+ api = stuff[2];
467
+ return res;
468
+ });
469
+
470
+ // given a pageID we log in as a page
471
+ if (globalOptions.pageID) {
472
+ mainPromise = mainPromise
473
+ .then(function() {
474
+ return utils.get('https://www.facebook.com/' + ctx.globalOptions.pageID + '/messages/?section=messages&subsection=inbox', ctx.jar, null, globalOptions);
475
+ })
476
+ .then(function(resData) {
477
+ var url = utils.getFrom(resData.body, 'window.location.replace("https:\\/\\/www.facebook.com\\', '");').split('\\').join('');
478
+ url = url.substring(0, url.length - 1);
479
+ return utils.get('https://www.facebook.com' + url, ctx.jar, null, globalOptions);
480
+ });
481
+ }
482
+
483
+ // At the end we call the callback or catch an exception
484
+ mainPromise
485
+ .then(function() {
486
+ //log.info("login", 'Done logging in.');
487
+ return callback(null, api);
488
+ })
489
+ .catch(function(e) {
490
+ log.error("login", e.error || e);
491
+ callback(e);
492
+ });
493
+ }
494
+
495
+ function login(loginData, options, callback) {
496
+ if (utils.getType(options) === 'Function' || utils.getType(options) === 'AsyncFunction') {
497
+ callback = options;
498
+ options = {};
499
+ }
500
+
501
+ var globalOptions = {
502
+ selfListen: false,
503
+ listenEvents: true,
504
+ listenTyping: false,
505
+ updatePresence: false,
506
+ forceLogin: false,
507
+ autoMarkDelivery: false,
508
+ autoMarkRead: true,
509
+ autoReconnect: true,
510
+ logRecordSize: defaultLogRecordSize,
511
+ online: false,
512
+ emitReady: false,
513
+ userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18"
514
+ };
515
+
516
+ setOptions(globalOptions, options);
517
+
518
+ var prCallback = null;
519
+ if (utils.getType(callback) !== "Function" && utils.getType(callback) !== "AsyncFunction") {
520
+ var rejectFunc = null;
521
+ var resolveFunc = null;
522
+ var returnPromise = new Promise(function(resolve, reject) {
523
+ resolveFunc = resolve;
524
+ rejectFunc = reject;
525
+ });
526
+ prCallback = function(error, api) {
527
+ if (error) return rejectFunc(error);
528
+ return resolveFunc(api);
529
+ };
530
+ callback = prCallback;
531
+ }
532
+ loginHelper(loginData.appState, loginData.email, loginData.password, globalOptions, callback, prCallback);
533
+ return returnPromise;
534
+ }
535
+
536
+ module.exports = login;