node-ainzfb-new 1.5.2 → 1.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +485 -517
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,95 +1,13 @@
1
- 'use strict';
2
-
3
- /!-[ Max Cpu Speed ]-!/
4
-
5
- process.env.UV_THREADPOOL_SIZE = require('os').cpus().length;
6
-
7
- /!-[ Global Set ]-!/
8
-
9
- global.isThread = new Array();
10
- global.isUser = new Array();
11
- global.startTime = Date.now();
12
- global.getText = require('gettext.js')();
13
-
14
- /!-[ Require All Package Need Use ]-!/
15
- /*globalThis.Fca = new Object({
16
- test: console,log("test"),
17
- Require: new Object({})
18
- });*/
19
- var utils = require("./utils"),
20
- cheerio = require("cheerio"),
21
- log = require("npmlog"),
22
- //{ getAccessToken } = require('./Extra/ExtraAddons'),
23
- logger = require('./logger'),
24
- fs = require('fs-extra'),
25
- getText = require('gettext.js')(),
26
- logger = require('./logger'),
27
- Fetch = require('got'),
28
- fs = require('fs-extra'),
29
- StateCrypt = require('./StateCrypt'),
30
- Client = require("@replit/database"),
31
- languageFile = require('./Language/index.json'),
32
- ObjFastConfig = {
33
- "Language": "en",
34
- "MainColor": "#9900FF",
35
- "BroadCast": true,
36
- "EncryptFeature": true,
37
- "PreKey": "",
38
- "Uptime": false
39
- };
40
-
41
- var defaultLogRecordSize = 100;
42
- log.maxRecordSize = defaultLogRecordSize;
43
-
44
- /!-[ Check File To Run Process ]-!/
45
-
46
- try {
47
- if (!fs.existsSync('./FastConfigFca.json')) {
48
- fs.writeFileSync("./FastConfigFca.json", JSON.stringify(ObjFastConfig, null, "\t"));
49
- process.exit(1);
50
- } else if (fs.existsSync('./FastConfigFca.json')) {
51
- try {
52
- var DataLanguageSetting = require("../../FastConfigFca.json");
53
- } catch (e) {
54
- logger("Invalid Config Settings, Restoring Default...");
55
- fs.writeFileSync("./FastConfigFca.json", JSON.stringify(ObjFastConfig, null, "\t"));
56
- process.exit(1);
57
- }
58
- try {
59
- if (DataLanguageSetting && !DataLanguageSetting.PreKey) {
60
- DataLanguageSetting.PreKey = "";
61
- fs.writeFileSync("./FastConfigFca.json", JSON.stringify(DataLanguageSetting, null, "\t"));
62
- }
63
- } catch (e) {
64
- console.log(e);
65
- }
66
- if (!languageFile.some(i => i.Language == DataLanguageSetting.Language)) {
67
- logger("Not Support Language: " + DataLanguageSetting.Language + " Only 'en' and 'vi'", "[ FCA-SUS ]");
68
- process.exit(0);
69
- }
70
- var Language = languageFile.find(i => i.Language == DataLanguageSetting.Language).Folder.Index;
71
- } else process.exit(1);
72
- if (utils.getType(DataLanguageSetting.BroadCast) != "Boolean" && DataLanguageSetting.BroadCast != undefined) {
73
- log.warn("FastConfig-BroadCast", getText.gettext(Language.IsNotABoolean, DataLanguageSetting.BroadCast));
74
- process.exit(0)
75
- } else if (DataLanguageSetting.BroadCast == undefined) {
76
- fs.writeFileSync("./FastConfigFca.json", JSON.stringify(ObjFastConfig, null, "\t"));
77
- process.exit(1);
78
- }
1
+ "use strict";
79
2
 
80
- global.FastConfig = DataLanguageSetting;
81
-
82
- } catch (e) {
83
- console.log(e);
84
- logger.Error();
85
- }
3
+ var utils = require("./utils");
4
+ var cheerio = require("cheerio");
5
+ var log = require("npmlog");
86
6
 
87
- /!-[ Set Variable For Process ]-!/
88
-
89
- log.maxRecordSize = 100;
90
7
  var checkVerified = null;
91
8
 
92
- /!-[ Function setOptions ]-!/
9
+ var defaultLogRecordSize = 100;
10
+ log.maxRecordSize = defaultLogRecordSize;
93
11
 
94
12
  function setOptions(globalOptions, options) {
95
13
  Object.keys(options).map(function (key) {
@@ -154,241 +72,336 @@ function setOptions(globalOptions, options) {
154
72
  });
155
73
  }
156
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
+ });
157
79
 
158
- /!-[ Function BuildAPI ]-!/
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
+ }
159
83
 
160
- async function buildAPI(globalOptions, html, jar) {
161
- var maybeCookie = jar.getCookies("https://www.facebook.com").filter(function(val) { return val.cookieString().split("=")[0] === "c_user"; });
84
+ if (html.indexOf("/checkpoint/block/?next") > -1) {
85
+ log.warn("login", "Checkpoint detected. Please log in with a browser to verify.");
86
+ }
162
87
 
163
- if (maybeCookie.length === 0) throw { error: Language.ErrAppState };
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
+ }
164
130
 
165
- if (html.indexOf("/checkpoint/block/?next") > -1) log.warn("login", Language.CheckPointLevelI);
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
+ };
166
154
 
167
- var userID = maybeCookie[0].cookieString().split("=")[1].toString();
168
- logger(getText.gettext(Language.UID, userID), "[ FCA-SUS ]");
169
- process.env['UID'] = userID;
155
+ if (noMqttData) {
156
+ api["htmlData"] = noMqttData;
157
+ }
170
158
 
171
- try {
172
- clearInterval(checkVerified);
173
- } catch (e) {
174
- console.log(e);
175
- }
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
+ 'markAsReadAll',
190
+ 'markAsSeen',
191
+ 'muteThread',
192
+ 'removeUserFromGroup',
193
+ 'resolvePhotoUrl',
194
+ 'searchForThread',
195
+ 'sendMessage',
196
+ 'sendTypingIndicator',
197
+ 'setMessageReaction',
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('./src/' + v)(defaultFuncs, api, ctx);
217
+ });
176
218
 
177
- var clientID = (Math.random() * 2147483648 | 0).toString(16);
219
+ //Removing original `listen` that uses pull.
220
+ //Map it to listenMqtt instead for backward compatibly.
221
+ api.listen = api.listenMqtt;
178
222
 
179
- let oldFBMQTTMatch = html.match(/irisSeqID:"(.+?)",appID:219994525426954,endpoint:"(.+?)"/);
180
- let mqttEndpoint = null;
181
- let region = null;
182
- let irisSeqID = null;
183
- var noMqttData = null;
223
+ return [ctx, defaultFuncs, api];
224
+ }
184
225
 
185
- if (oldFBMQTTMatch) {
186
- irisSeqID = oldFBMQTTMatch[1];
187
- mqttEndpoint = oldFBMQTTMatch[2];
188
- region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
189
- logger(getText.gettext(Language.Area, region), "[ FCA-SUS ]");
190
- } else {
191
- let newFBMQTTMatch = html.match(/{"app_id":"219994525426954","endpoint":"(.+?)","iris_seq_id":"(.+?)"}/);
192
- if (newFBMQTTMatch) {
193
- irisSeqID = newFBMQTTMatch[2];
194
- mqttEndpoint = newFBMQTTMatch[1].replace(/\\\//g, "/");
195
- region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
196
- logger(getText.gettext(Language.Area, region), "[ FCA-SUS ]");
197
- } else {
198
- let legacyFBMQTTMatch = html.match(/(\["MqttWebConfig",\[\],{fbid:")(.+?)(",appID:219994525426954,endpoint:")(.+?)(",pollingEndpoint:")(.+?)(3790])/);
199
- if (legacyFBMQTTMatch) {
200
- mqttEndpoint = legacyFBMQTTMatch[4];
201
- region = new URL(mqttEndpoint).searchParams.get("region").toUpperCase();
202
- log.warn("login", `Cannot get sequence ID with new RegExp. Fallback to old RegExp (without seqID)...`);
203
- logger(getText.gettext(Language.Area, region), "[ FCA-SUS ]");
204
- logger("login", `[Unused] Polling endpoint: ${legacyFBMQTTMatch[6]}`);
205
- } else {
206
- log.warn("login", getText.gettext(Language.NoAreaData));
207
- noMqttData = html;
208
- }
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." };
209
277
  }
210
- }
211
278
 
212
- var ctx = {
213
- userID: userID,
214
- jar: jar,
215
- clientID: clientID,
216
- globalOptions: globalOptions,
217
- loggedIn: true,
218
- access_token: 'none',
219
- clientMutationId: 0,
220
- mqttClient: undefined,
221
- lastSeqId: irisSeqID,
222
- syncToken: undefined,
223
- mqttEndpoint,
224
- region,
225
- firstListen: true
226
- };
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';
227
283
 
228
- var api = {
229
- setOptions: setOptions.bind(null, globalOptions),
230
- getAppState: function getAppState() {
231
- return utils.getAppState(jar);
232
- }
233
- };
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
+ });
234
295
 
235
- if (noMqttData) api["htmlData"] = noMqttData;
296
+ arr = arr.filter(function (v) {
297
+ return v.val && v.val.length;
298
+ });
236
299
 
237
- const apiFuncNames = fs.readdirSync(__dirname + "/src").filter((File) => File.endsWith(".js") && !File.includes('Dev'));
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
+ }
238
369
 
239
- var defaultFuncs = utils.makeDefaults(html, userID, ctx);
370
+ var appState = utils.getAppState(jar);
240
371
 
241
- // Load all api functions in a loop
242
- apiFuncNames.map(v => api[v.replace(".js", "")] = require('./src/' + v)(defaultFuncs, api, ctx));
243
- return [ctx, defaultFuncs, api];
244
- }
372
+ if (callback === prCallback) {
373
+ callback = function (err, api) {
374
+ if (err) {
375
+ return prReject(err);
376
+ }
377
+ return prResolve(api);
378
+ };
379
+ }
245
380
 
246
- function makeLogin(jar, email, password, loginOptions, callback, prCallback) {
247
- return function (res) {
248
- var html = res.body;
249
- var $ = cheerio.load(html);
250
- var arr = [];
251
-
252
- // This will be empty, but just to be sure we leave it
253
- $("#login_form input").map(function (i, v) {
254
- arr.push({ val: $(v).val(), name: $(v).attr("name") });
255
- });
256
-
257
- arr = arr.filter(function (v) {
258
- return v.val && v.val.length;
259
- });
260
-
261
- var form = utils.arrToForm(arr);
262
- form.lsd = utils.getFrom(html, "[\"LSD\",[],{\"token\":\"", "\"}");
263
- form.lgndim = Buffer.from("{\"w\":1440,\"h\":900,\"aw\":1440,\"ah\":834,\"c\":24}").toString('base64');
264
- form.email = email;
265
- form.pass = password;
266
- form.default_persistent = '0';
267
- form.lgnrnd = utils.getFrom(html, "name=\"lgnrnd\" value=\"", "\"");
268
- form.locale = 'en_US';
269
- form.timezone = '240';
270
- form.lgnjs = ~~(Date.now() / 1000);
271
-
272
-
273
- // Getting cookies from the HTML page... (kill me now plz)
274
- // we used to get a bunch of cookies in the headers of the response of the
275
- // request, but FB changed and they now send those cookies inside the JS.
276
- // They run the JS which then injects the cookies in the page.
277
- // The "solution" is to parse through the html and find those cookies
278
- // which happen to be conveniently indicated with a _js_ in front of their
279
- // variable name.
280
- //
281
- // ---------- Very Hacky Part Starts -----------------
282
- var willBeCookies = html.split("\"_js_");
283
- willBeCookies.slice(1).map(function (val) {
284
- var cookieData = JSON.parse("[\"" + utils.getFrom(val, "", "]") + "]");
285
- jar.setCookie(utils.formatCookie(cookieData, "facebook"), "https://www.facebook.com");
286
- });
287
- // ---------- Very Hacky Part Ends -----------------
288
-
289
- log.info("login", "Logging in...");
290
- return utils
291
- .post("https://www.facebook.com/login/device-based/regular/login/?login_attempt=1&lwv=110", jar, form, loginOptions)
292
- .then(utils.saveCookies(jar))
293
- .then(function (res) {
294
- var headers = res.headers;
295
- if (!headers.location) {
296
- throw { error: "Wrong username/password." };
297
- }
298
-
299
- // This means the account has login approvals turned on.
300
- if (headers.location.indexOf('https://www.facebook.com/checkpoint/') > -1) {
301
- log.info("login", "You have login approvals turned on.");
302
- var nextURL = 'https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php';
303
-
304
- return utils
305
- .get(headers.location, jar, null, loginOptions)
306
- .then(utils.saveCookies(jar))
307
- .then(function (res) {
308
- var html = res.body;
309
- // Make the form in advance which will contain the fb_dtsg and nh
310
- var $ = cheerio.load(html);
311
- var arr = [];
312
- $("form input").map(function (i, v) {
313
- arr.push({ val: $(v).val(), name: $(v).attr("name") });
314
- });
315
-
316
- arr = arr.filter(function (v) {
317
- return v.val && v.val.length;
318
- });
319
-
320
- var form = utils.arrToForm(arr);
321
- if (html.indexOf("checkpoint/?next") > -1) {
322
- setTimeout(() => {
323
- checkVerified = setInterval((_form) => {
324
- /* utils
325
- .post("https://www.facebook.com/login/approvals/approved_machine_check/", jar, form, loginOptions, null, {
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, {
326
396
  "Referer": "https://www.facebook.com/checkpoint/?next"
327
397
  })
328
398
  .then(utils.saveCookies(jar))
329
399
  .then(res => {
330
400
  try {
331
- JSON.parse(res.body.replace(/for\s*\(\s*;\s*;\s*\)\s*;\s*()/, ""));
401
+ JSON.parse(res.body.replace(/for\s*\(\s*;\s*;\s*\)\s*;\s*/, ""));
332
402
  } catch (ex) {
333
403
  clearInterval(checkVerified);
334
404
  log.info("login", "Verified from browser. Logging in...");
335
- return loginHelper(utils.getAppState(jar), email, password, loginOptions, callback);
336
- }
337
- })
338
- .catch(ex => {
339
- log.error("login", ex);
340
- }); */
341
- }, 5000, {
342
- fb_dtsg: form.fb_dtsg,
343
- jazoest: form.jazoest,
344
- dpr: 1
345
- });
346
- }, 2500);
347
- throw {
348
- error: 'login-approval',
349
- continue: function submit2FA(code) {
350
- form.approvals_code = code;
351
- form['submit[Continue]'] = $("#checkpointSubmitButton").html(); //'Continue';
352
- var prResolve = null;
353
- var prReject = null;
354
- var rtPromise = new Promise(function (resolve, reject) {
355
- prResolve = resolve;
356
- prReject = reject;
357
- });
358
- if (typeof code == "string") {
359
- utils
360
- .post(nextURL, jar, form, loginOptions)
361
- .then(utils.saveCookies(jar))
362
- .then(function (res) {
363
- var $ = cheerio.load(res.body);
364
- var error = $("#approvals_code").parent().attr("data-xui-error");
365
- if (error) {
366
- throw {
367
- error: 'login-approval',
368
- errordesc: "Invalid 2FA code.",
369
- lerror: error,
370
- continue: submit2FA
371
- };
372
- }
373
- })
374
- .then(function () {
375
- // Use the same form (safe I hope)
376
- delete form.no_fido;
377
- delete form.approvals_code;
378
- form.name_action_selected = 'dont_save'; //'save_device';
379
-
380
- return utils
381
- .post(nextURL, jar, form, loginOptions)
382
- .then(utils.saveCookies(jar));
383
- })
384
- .then(function (res) {
385
- var headers = res.headers;
386
- if (!headers.location && res.body.indexOf('Review Recent Login') > -1) {
387
- throw { error: "Something went wrong with login approvals." };
388
- }
389
-
390
- var appState = utils.getAppState(jar);
391
-
392
405
  if (callback === prCallback) {
393
406
  callback = function (err, api) {
394
407
  if (err) {
@@ -397,239 +410,194 @@ function makeLogin(jar, email, password, loginOptions, callback, prCallback) {
397
410
  return prResolve(api);
398
411
  };
399
412
  }
400
-
401
- // Simply call loginHelper because all it needs is the jar
402
- // and will then complete the login process
403
- return loginHelper(appState, email, password, loginOptions, callback);
404
- })
405
- .catch(function (err) {
406
- // Check if using Promise instead of callback
407
- if (callback === prCallback) {
408
- prReject(err);
409
- } else {
410
- callback(err);
411
- }
412
- });
413
- } else {
414
- utils
415
- .post("https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fhome.php", jar, form, loginOptions, null, {
416
- "Referer": "https://www.facebook.com/checkpoint/?next"
417
- })
418
- .then(utils.saveCookies(jar))
419
- .then(res => {
420
- try {
421
- JSON.parse(res.body.replace(/for\s*\(\s*;\s*;\s*\)\s*;\s*/, ""));
422
- } catch (ex) {
423
- clearInterval(checkVerified);
424
- log.info("login", "Verified from browser. Logging in...");
425
- if (callback === prCallback) {
426
- callback = function (err, api) {
427
- if (err) {
428
- return prReject(err);
429
- }
430
- return prResolve(api);
431
- };
432
- }
433
- return loginHelper(utils.getAppState(jar), email, password, loginOptions, callback);
434
- }
435
- })
436
- .catch(ex => {
437
- log.error("login", ex);
438
- if (callback === prCallback) {
439
- prReject(ex);
440
- } else {
441
- callback(ex);
442
- }
443
- });
444
- }
445
- return rtPromise;
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
+ });
446
424
  }
447
- };
448
- } else {
449
- if (!loginOptions.forceLogin) {
450
- throw { error: "Couldn't login. Facebook might have blocked this account. Please login with a browser or enable the option 'forceLogin' and try again." };
451
- }
452
- if (html.indexOf("Suspicious Login Attempt") > -1) {
453
- form['submit[This was me]'] = "This was me";
454
- } else {
455
- form['submit[This Is Okay]'] = "This Is Okay";
425
+ return rtPromise;
456
426
  }
457
-
458
- return utils
459
- .post(nextURL, jar, form, loginOptions)
460
- .then(utils.saveCookies(jar))
461
- .then(function () {
462
- // Use the same form (safe I hope)
463
- form.name_action_selected = 'save_device';
464
-
465
- return utils
466
- .post(nextURL, jar, form, loginOptions)
467
- .then(utils.saveCookies(jar));
468
- })
469
- .then(function (res) {
470
- var headers = res.headers;
471
-
472
- if (!headers.location && res.body.indexOf('Review Recent Login') > -1) {
473
- throw { error: "Something went wrong with review recent login." };
474
- }
475
-
476
- var appState = utils.getAppState(jar);
477
-
478
- // Simply call loginHelper because all it needs is the jar
479
- // and will then complete the login process
480
- return loginHelper(appState, email, password, loginOptions, callback);
481
- })
482
- .catch(function (e) {
483
- callback(e);
484
- });
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";
485
436
  }
486
- });
487
- }
488
-
489
- return utils
490
- .get('https://www.facebook.com/', jar, null, loginOptions)
491
- .then(utils.saveCookies(jar));
492
- });
493
- };
494
- }
495
437
 
496
- function makeid(length) {
497
- var result = '';
498
- var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
499
- var charactersLength = characters.length;
500
- for (var i = 0; i < length; i++) {
501
- result += characters.charAt(Math.floor(Math.random() * charactersLength));
502
- }
503
- return result;
504
- }
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
+ }
505
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
+ }
506
475
 
507
476
  // Helps the login
508
477
  function loginHelper(appState, email, password, globalOptions, callback, prCallback) {
509
- var mainPromise = null;
510
- var jar = utils.getJar();
511
-
512
- // If we're given an appState we loop through it and save each cookie
513
- // back into the jar.
514
- if (appState) {
515
- appState.map(function (c) {
516
- var str = c.key + "=" + c.value + "; expires=" + c.expires + "; domain=" + c.domain + "; path=" + c.path + ";";
517
- jar.setCookie(str, "http://" + c.domain);
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));
518
504
  });
519
-
520
- // Load the main page.
521
- mainPromise = utils
522
- .get('https://www.facebook.com/', jar, null, globalOptions, { noRef: true })
523
- .then(utils.saveCookies(jar));
524
- } else {
525
- // Open the main page, then we login with the given credentials and finally
526
- // load the main page again (it'll give us some IDs that we need)
527
- mainPromise = utils
528
- .get("https://www.facebook.com/", null, null, globalOptions, { noRef: true })
529
- .then(utils.saveCookies(jar))
530
- .then(makeLogin(jar, email, password, globalOptions, callback, prCallback))
531
- .then(function () {
532
- return utils
533
- .get('https://www.facebook.com/', jar, null, globalOptions)
534
- .then(utils.saveCookies(jar));
535
- });
536
- }
537
-
538
- var ctx = null;
539
- var _defaultFuncs = null;
540
- var api = null;
541
-
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) {
542
534
  mainPromise = mainPromise
543
- .then(function (res) {
544
- // Hacky check for the redirection that happens on some ISPs, which doesn't return statusCode 3xx
545
- var reg = /<meta http-equiv="refresh" content="0;url=([^"]+)[^>]+>/;
546
- var redirect = reg.exec(res.body);
547
- if (redirect && redirect[1]) {
548
- return utils
549
- .get(redirect[1], jar, null, globalOptions)
550
- .then(utils.saveCookies(jar));
551
- }
552
- return res;
553
- })
554
- .then(function (res) {
555
- var html = res.body;
556
- var stuff = buildAPI(globalOptions, html, jar);
557
- ctx = stuff[0];
558
- _defaultFuncs = stuff[1];
559
- api = stuff[2];
560
- return res;
561
- });
562
-
563
- // given a pageID we log in as a page
564
- if (globalOptions.pageID) {
565
- mainPromise = mainPromise
566
- .then(function () {
567
- return utils
568
- .get('https://www.facebook.com/' + ctx.globalOptions.pageID + '/messages/?section=messages&subsection=inbox', ctx.jar, null, globalOptions);
569
- })
570
- .then(function (resData) {
571
- var url = utils.getFrom(resData.body, 'window.location.replace("https:\\/\\/www.facebook.com\\', '");').split('\\').join('');
572
- url = url.substring(0, url.length - 1);
573
-
574
- return utils
575
- .get('https://www.facebook.com' + url, ctx.jar, null, globalOptions);
576
- });
577
- }
578
-
579
- // At the end we call the callback or catch an exception
580
- mainPromise
581
535
  .then(function () {
582
- log.info("login", 'Done logging in.');
583
- return callback(null, api);
536
+ return utils
537
+ .get('https://www.facebook.com/' + ctx.globalOptions.pageID + '/messages/?section=messages&subsection=inbox', ctx.jar, null, globalOptions);
584
538
  })
585
- .catch(function (e) {
586
- log.error("login", e.error || e);
587
- callback(e);
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);
588
545
  });
589
546
  }
590
547
 
591
- function login(loginData, options, callback) {
592
- if (utils.getType(options) === 'Function' || utils.getType(options) === 'AsyncFunction') {
593
- callback = options;
594
- options = {};
595
- }
596
-
597
- var globalOptions = {
598
- selfListen: false,
599
- listenEvents: false,
600
- listenTyping: false,
601
- updatePresence: false,
602
- forceLogin: false,
603
- autoMarkDelivery: true,
604
- autoMarkRead: false,
605
- autoReconnect: true,
606
- logRecordSize: defaultLogRecordSize,
607
- online: true,
608
- emitReady: false,
609
- userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8"
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_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8"
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);
610
596
  };
611
-
612
- setOptions(globalOptions, options);
613
-
614
- var prCallback = null;
615
- if (utils.getType(callback) !== "Function" && utils.getType(callback) !== "AsyncFunction") {
616
- var rejectFunc = null;
617
- var resolveFunc = null;
618
- var returnPromise = new Promise(function (resolve, reject) {
619
- resolveFunc = resolve;
620
- rejectFunc = reject;
621
- });
622
- prCallback = function (error, api) {
623
- if (error) {
624
- return rejectFunc(error);
625
- }
626
- return resolveFunc(api);
627
- };
628
- callback = prCallback;
629
- }
630
- loginHelper(loginData.appState, loginData.email, loginData.password, globalOptions, callback, prCallback);
631
- return returnPromise;
597
+ callback = prCallback;
632
598
  }
633
-
634
- module.exports = login;
635
-
599
+ loginHelper(loginData.appState, loginData.email, loginData.password, globalOptions, callback, prCallback);
600
+ return returnPromise;
601
+ }
602
+
603
+ module.exports = login;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-ainzfb-new",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "A Facebook chat API that doesn't rely on XMPP. Will NOT be deprecated after April 30th 2015.",
5
5
  "scripts": {
6
6
  "test": "mocha",