tra-chat-api 2.5.6

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 (132) hide show
  1. package/.cache/replit/__replit_disk_meta.json +1 -0
  2. package/.cache/replit/modules/nodejs-18:v11-20230920-bd784b9.res +1 -0
  3. package/.cache/replit/modules.stamp +0 -0
  4. package/.cache/replit/nix/env.json +1 -0
  5. package/.replit +11 -0
  6. package/.upm/store.json +1 -0
  7. package/Extra/Database/index.js +469 -0
  8. package/Extra/ExtraAddons.js +82 -0
  9. package/Extra/ExtraFindUID.js +62 -0
  10. package/Extra/ExtraGetThread.js +340 -0
  11. package/Extra/ExtraScreenShot.js +430 -0
  12. package/Extra/ExtraUptimeRobot.js +38 -0
  13. package/Extra/H +1 -0
  14. package/Extra/Html/Classic/script.js +119 -0
  15. package/Extra/Html/Classic/style.css +8 -0
  16. package/Extra/Html//340/247/263 +1 -0
  17. package/Extra/Security/5 +1 -0
  18. package/Extra/Security/AES_256_GCM/5 +1 -0
  19. package/Extra/Security/AES_256_GCM/index.js +0 -0
  20. package/Extra/Security/Base/5 +1 -0
  21. package/Extra/Security/Base/Step_1.js +6 -0
  22. package/Extra/Security/Base/Step_2.js +22 -0
  23. package/Extra/Security/Base/Step_3.js +22 -0
  24. package/Extra/Security/Base/index.js +173 -0
  25. package/Extra/Security/Index.js +5 -0
  26. package/Extra/Security/Step_1.js +6 -0
  27. package/Extra/Security/Step_2.js +22 -0
  28. package/Extra/Security/Step_3.js +22 -0
  29. package/Extra/Src/% +1 -0
  30. package/Extra/Src/Change_Environment.js +24 -0
  31. package/Extra/Src/Check_Update.js +67 -0
  32. package/Extra/Src/History.js +115 -0
  33. package/Extra/Src/Instant_Update.js +65 -0
  34. package/Extra/Src/Last-Run.js +65 -0
  35. package/Extra/Src/Premium.js +81 -0
  36. package/Extra/Src/Release_Memory.js +41 -0
  37. package/Extra/Src/Websocket.js +213 -0
  38. package/Extra/Src/image/20231015_051416.png +0 -0
  39. package/Extra/Src/image/H +1 -0
  40. package/Extra/Src/uuid.js +137 -0
  41. package/Func/AcceptAgreement.js +31 -0
  42. package/Func/ClearCache.js +64 -0
  43. package/Func/Hz +1 -0
  44. package/Func/ReportV1.js +54 -0
  45. package/LICENSE +21 -0
  46. package/Language/Index.json +1 -0
  47. package/Language/index.json +216 -0
  48. package/Main.js +1211 -0
  49. package/README.md +144 -0
  50. package/SECURITY.md +18 -0
  51. package/broadcast.js +40 -0
  52. package/index.js +386 -0
  53. package/logger.js +66 -0
  54. package/package.json +91 -0
  55. package/src/6 +1 -0
  56. package/src/Dev_Horizon_Data.js +125 -0
  57. package/src/Premium.js +25 -0
  58. package/src/Screenshot.js +83 -0
  59. package/src/addExternalModule.js +16 -0
  60. package/src/addUserToGroup.js +79 -0
  61. package/src/changeAdminStatus.js +79 -0
  62. package/src/changeArchivedStatus.js +41 -0
  63. package/src/changeAvt.js +85 -0
  64. package/src/changeBio.js +65 -0
  65. package/src/changeBlockedStatus.js +36 -0
  66. package/src/changeGroupImage.js +106 -0
  67. package/src/changeNickname.js +45 -0
  68. package/src/changeThreadColor.js +62 -0
  69. package/src/changeThreadEmoji.js +42 -0
  70. package/src/createNewGroup.js +70 -0
  71. package/src/createPoll.js +60 -0
  72. package/src/deleteMessage.js +45 -0
  73. package/src/deleteThread.js +43 -0
  74. package/src/forwardAttachment.js +48 -0
  75. package/src/getAccessToken.js +28 -0
  76. package/src/getCurrentUserID.js +7 -0
  77. package/src/getEmojiUrl.js +27 -0
  78. package/src/getFriendsList.js +73 -0
  79. package/src/getMessage.js +80 -0
  80. package/src/getThreadHistory.js +537 -0
  81. package/src/getThreadInfo.js +425 -0
  82. package/src/getThreadList.js +213 -0
  83. package/src/getThreadMain.js +220 -0
  84. package/src/getThreadPictures.js +59 -0
  85. package/src/getUID.js +59 -0
  86. package/src/getUserID.js +62 -0
  87. package/src/getUserInfo.js +113 -0
  88. package/src/getUserInfoMain.js +65 -0
  89. package/src/getUserInfoV2.js +32 -0
  90. package/src/getUserInfoV3.js +63 -0
  91. package/src/getUserInfoV4.js +55 -0
  92. package/src/getUserInfoV5.js +61 -0
  93. package/src/handleFriendRequest.js +46 -0
  94. package/src/handleMessageRequest.js +49 -0
  95. package/src/httpGet.js +49 -0
  96. package/src/httpPost.js +48 -0
  97. package/src/httpPostFormData.js +41 -0
  98. package/src/listenMqtt.js +787 -0
  99. package/src/logout.js +68 -0
  100. package/src/markAsDelivered.js +48 -0
  101. package/src/markAsRead.js +70 -0
  102. package/src/markAsReadAll.js +43 -0
  103. package/src/markAsSeen.js +51 -0
  104. package/src/muteThread.js +47 -0
  105. package/src/removeUserFromGroup.js +49 -0
  106. package/src/resolvePhotoUrl.js +37 -0
  107. package/src/searchForThread.js +43 -0
  108. package/src/sendMessage.js +379 -0
  109. package/src/sendTypingIndicator.js +80 -0
  110. package/src/setMessageReaction.js +109 -0
  111. package/src/setPostReaction.js +102 -0
  112. package/src/setTitle.js +74 -0
  113. package/src/threadColors.js +39 -0
  114. package/src/unfriend.js +43 -0
  115. package/src/unsendMessage.js +40 -0
  116. package/test/Database_Test.js +4 -0
  117. package/test/Db2.js +530 -0
  118. package/test/Horizon_Database/A_README.md +1 -0
  119. package/test/Horizon_Database/Database.db +0 -0
  120. package/test/data/shareAttach.js +146 -0
  121. package/test/data/something.mov +0 -0
  122. package/test/data/test.png +0 -0
  123. package/test/data/test.txt +7 -0
  124. package/test/env/.env +0 -0
  125. package/test/env/7 +1 -0
  126. package/test/example-config.json +18 -0
  127. package/test/example-db.db +0 -0
  128. package/test/memoryleak.js +18 -0
  129. package/test/test-page.js +140 -0
  130. package/test/test.js +385 -0
  131. package/test/testv2.js +18 -0
  132. package/utils.js +1683 -0
package/README.md ADDED
@@ -0,0 +1,144 @@
1
+
2
+ [![Socket Badge](https://socket.dev/api/badge/npm/package/tra-chat-api)](https://socket.dev/npm/package/tra-chat-api)
3
+
4
+ ## Important !
5
+
6
+ <img width="517" alt="Reason" src="https://i.imgur.com/rD3ujmL.png">
7
+ This project is no longer being developed because the project owner lacks high security capabilities, leading to potential security vulnerabilities. Therefore, the project will be permanently suspended.
8
+
9
+ Special Thanks:
10
+ ![image](https://github.com/ARIF-VAU-TRA233/tra-chat-api/tra-chat-api/assets/125113101/0a455054-b7f4-499d-b4b6-c91fd0569ce4)
11
+
12
+ This package require NodeJS 14.17.0 to work properly.
13
+
14
+ ## Notification !
15
+
16
+ + We will have Example Video on Channel "Nguyễn Thái Hảo Official"
17
+
18
+ Original Project(Deprecated): https://github.com/Schmavery/facebook-chat-api
19
+
20
+ Wish you a good day!, thank you for using HZI products, best regards
21
+
22
+ ARIF-VAU-TRA(April 15, 2023)
23
+
24
+ ## Support For :
25
+
26
+ + Support English, VietNamese !,
27
+ + All bot if using listenMqtt first.
28
+
29
+ # Api For ChatBot Messenger
30
+
31
+ Facebook already exists and allows users to create Api for Chatbots 😪 Here => [Here](https://developers.facebook.com/docs/messenger-platform).
32
+
33
+ ### This Api Can Make You Payy Acc Like You Never Had Acc, Please Pay Attention =))
34
+
35
+ Note ! If You Want To Use This Api Please See Document At [Here](https://github.com/Schmavery/facebook-chat-api).
36
+
37
+ ## Download
38
+
39
+ If You Want To Use It, Download It By:
40
+ ```bash
41
+ npm i tra-chat-api
42
+ ```
43
+ or
44
+ ```bash
45
+ npm install tra-chat-api
46
+ ```
47
+
48
+ It Will Download To node_modules (Your Lib) - Note Replit Will Not Show Anywhere To Find 😪
49
+
50
+ ### Download Latest Version Or Update
51
+
52
+ If You Want To Use The Latest Or Updated Version Then Go To Terminal Or Command Promt Type:
53
+ ```bash
54
+ npm install tra-chat-api@latest
55
+ ```
56
+ Or
57
+ ```bash
58
+ npm i tra-chat-api@latest
59
+ ```
60
+
61
+ ## If You Want To Test Api
62
+
63
+ The benefit of this is that you won't waste time paying and having an account 😪
64
+ Please Use With Test Account => [Facebook Whitehat Accounts](https://www.facebook.com/whitehat/accounts/).
65
+
66
+ ## Using
67
+
68
+ ```javascript
69
+ const login = require("tra-chat-api"); // get it from lib
70
+
71
+ // log in
72
+ login({email: "Gmail Account", password: "Your Facebook Password"}, (err, api) => {
73
+
74
+ if(err) return console.error(err); // error case
75
+
76
+ // create a bot that automatically imitates you:
77
+ api.listenMqtt((err, message) => {
78
+ api.sendMessage(message.body, message.threadID);
79
+ });
80
+
81
+ });
82
+ ```
83
+
84
+ As a result, it will imitate you as shown below:
85
+ <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">
86
+
87
+ If You Want Advanced Use Then Use The Bot Types Listed Above!
88
+
89
+ ## List
90
+
91
+ You Can Read Full Api At => [here](DOCS.md).
92
+
93
+ ## Settings For Mirai:
94
+
95
+ You Need To Go To File Mirai.js, Then Find Line
96
+ ```js
97
+ var login = require('depend on bot');
98
+ /* Maybe :
99
+ var login = require('@maihuybao/fca-Unofficial');
100
+ var login = require('fca-xuyen-get');
101
+ var login = require('fca-unofficial-force');
102
+ ...
103
+ */
104
+ ```
105
+
106
+ And Replace It With:
107
+
108
+ ```js
109
+ var login = require('tra-chat-api')
110
+ ```
111
+
112
+ After that, run normally!
113
+
114
+ ## Self-study
115
+
116
+ If You Want To Research Or Create Your Own Bot, Go To This To Read Its Functions And How To Use => [Link](https://github.com/Schmavery/facebook-chat-api#Unofficial %20Facebook%20Chat%20API)
117
+ ---------
118
+ ### Save Login Information.
119
+
120
+ To Save, You Need 1 Apstate Type (Cookie, etc,..) To Save Or Use Login Code As Above To Log In!
121
+
122
+ And this mode is already available in some Vietnamese bots, so you can rest assured!
123
+
124
+ __Instructions With Appstate__
125
+
126
+ ```js
127
+ const fs = require("fs");
128
+ const login = require("tra-chat-api");
129
+
130
+ var credentials = {email: "FB_EMAIL", password: "FB_PASSWORD"}; // thông tin tk
131
+
132
+ login(credentials, (err, api) => {
133
+ if(err) return console.error(err);
134
+ // đăng nhập
135
+ fs.writeFileSync('appstate.json', JSON.stringify(api.getAppState(), null,'\t')); //tạo appstate
136
+ });
137
+ ```
138
+ () You Can Use => [TRS-FBSTATE](https://h-rbl-r4.rebel-arif-vau.repl.co/) To Get Fbstate And Rename It Back To Apstate! (appstate.json)
139
+
140
+ ------------------------------------
141
+
142
+ ## FAQS
143
+
144
+ 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(ARIF CHOWDHURY) or (https://www.facebook.com/THE.R3B3L.ARIF.VAU). 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/ARIF-VAU-TRA233/A4IFB0T/main/Fca_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)] || "Ae Zui Zẻ Nhé !";
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)] || "Ae Zui Zẻ Nhé !";
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/index.js ADDED
@@ -0,0 +1,386 @@
1
+ 'use strict';
2
+ /* eslint-disable linebreak-style */
3
+ const utils = require('./utils');
4
+ global.Fca = new Object({
5
+ isThread: new Array(),
6
+ isUser: new Array(),
7
+ startTime: Date.now(),
8
+ Setting: new Map(),
9
+ Version: require('./package.json').version,
10
+ Require: new Object({
11
+ fs: require("fs"),
12
+ Fetch: require('got'),
13
+ log: require("npmlog"),
14
+ utils: require("./utils.js"),
15
+ logger: require('./logger.js'),
16
+ languageFile: require('./Language/index.json'),
17
+ Security: require('./Extra/Src/uuid.js')
18
+ }),
19
+ getText: function(/** @type {any[]} */...Data) {
20
+ var Main = (Data.splice(0,1)).toString();
21
+ for (let i = 0; i < Data.length; i++) Main = Main.replace(RegExp(`%${i + 1}`, 'g'), Data[i]);
22
+ return Main;
23
+ },
24
+ Data: new Object({
25
+ ObjFastConfig: {
26
+ "Language": "en",
27
+ "PreKey": "",
28
+ "AutoUpdate": true,
29
+ "MainColor": "#FFC300",
30
+ "MainName": "[ TRA-ARIFVAU ]",
31
+ "Uptime": false,
32
+ "Config": "default",
33
+ "DevMode": false,
34
+ "Login2Fa": false,
35
+ "AutoLogin": false,
36
+ "BroadCast": true,
37
+ "AuthString": "SD4S XQ32 O2JA WXB3 FUX2 OPJ7 Q7JZ 4R6Z | https://i.imgur.com/RAg3rvw.png Please remove this !, Recommend If You Using getUserInfoV2",
38
+ "EncryptFeature": true,
39
+ "ResetDataLogin": false,
40
+ "AutoInstallNode": false,
41
+ "AntiSendAppState": true,
42
+ "AutoRestartMinutes": 0,
43
+ "RestartMQTT_Minutes": 0,
44
+ "Websocket_Extension": {
45
+ "Status": false,
46
+ "ResetData": false,
47
+ "AppState_Path": "appstate.json"
48
+ },
49
+ "HTML": {
50
+ "HTML": true,
51
+ "UserName": "Guest",
52
+ "MusicLink": "https://drive.google.com/uc?id=1RqyqkNQLzoS-qZx3hkLrXvPKzCYEs0eV&export=download"
53
+ },
54
+ "AntiGetInfo": {
55
+ "Database_Type": "default", //json or default
56
+ "AntiGetThreadInfo": true,
57
+ "AntiGetUserInfo": true
58
+ },
59
+ "Stable_Version": {
60
+ "Accept": false,
61
+ "Version": ""
62
+ }
63
+ },
64
+ CountTime: function() {
65
+ var fs = global.Fca.Require.fs;
66
+ if (fs.existsSync(__dirname + '/CountTime.json')) {
67
+ try {
68
+ var data = Number(fs.readFileSync(__dirname + '/CountTime.json', 'utf8')),
69
+ hours = Math.floor(data / (60 * 60));
70
+ }
71
+ catch (e) {
72
+ fs.writeFileSync(__dirname + '/CountTime.json', 0);
73
+ hours = 0;
74
+ }
75
+ }
76
+ else {
77
+ hours = 0;
78
+ }
79
+ return `${hours} Hours`;
80
+ }
81
+ }),
82
+ Action: function(Type) {
83
+ switch (Type) {
84
+ case "AutoLogin": {
85
+ var Database = require('./Extra/Database');
86
+ var logger = global.Fca.Require.logger;
87
+ var Email = (Database().get('Account')).replace(RegExp('"', 'g'), ''); //hmm IDK
88
+ var PassWord = (Database().get('Password')).replace(RegExp('"', 'g'), '');
89
+ require('./Main')({ email: Email, password: PassWord},async (error, api) => {
90
+ if (error) {
91
+ logger.Error(JSON.stringify(error,null,2), function() { logger.Error("AutoLogin Failed!", function() { process.exit(0); }) });
92
+ }
93
+ try {
94
+ Database().set("TempState", Database().get('Through2Fa'));
95
+ }
96
+ catch(e) {
97
+ logger.Warning(global.Fca.Require.Language.Index.ErrDatabase);
98
+ logger.Error();
99
+ process.exit(0);
100
+ }
101
+ process.exit(1);
102
+ });
103
+ }
104
+ break;
105
+ default: {
106
+ require('npmlog').Error("Invalid Message!");
107
+ };
108
+ }
109
+ }
110
+ });
111
+
112
+ try {
113
+ let Boolean_Fca = ["AntiSendAppState","AutoUpdate","Uptime","BroadCast","EncryptFeature","AutoLogin","ResetDataLogin","Login2Fa", "DevMode","AutoInstallNode"];
114
+ let String_Fca = ["MainName","PreKey","Language","AuthString","Config"]
115
+ let Number_Fca = ["AutoRestartMinutes","RestartMQTT_Minutes"];
116
+ let Object_Fca = ["HTML","Stable_Version","AntiGetInfo","Websocket_Extension"];
117
+ let All_Variable = Boolean_Fca.concat(String_Fca,Number_Fca,Object_Fca);
118
+
119
+
120
+ if (!global.Fca.Require.fs.existsSync(process.cwd() + '/REBELConfigFca.json')) {
121
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(global.Fca.Data.ObjFastConfig, null, "\t"));
122
+ process.exit(1);
123
+ }
124
+
125
+ try {
126
+ var Data_Setting = require(process.cwd() + "/REBELConfigFca.json");
127
+ }
128
+ catch (e) {
129
+ global.Fca.Require.logger.Error('Detect Your FastConfigFca Settings Invalid!, Carry out default restoration');
130
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(global.Fca.Data.ObjFastConfig, null, "\t"));
131
+ process.exit(1)
132
+ }
133
+ if (global.Fca.Require.fs.existsSync(process.cwd() + '/REBELConfigFca.json')) {
134
+
135
+ for (let i of All_Variable) {
136
+ if (Data_Setting[i] == undefined) {
137
+ Data_Setting[i] = global.Fca.Data.ObjFastConfig[i];
138
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(Data_Setting, null, "\t"));
139
+ }
140
+ else continue;
141
+ } //Check Variable
142
+
143
+ for (let i in Data_Setting) {
144
+ if (Boolean_Fca.includes(i)) {
145
+ if (global.Fca.Require.utils.getType(Data_Setting[i]) != "Boolean") logger.Error(i + " Is Not A Boolean, Need To Be true Or false !", function() { process.exit(0) });
146
+ else continue;
147
+ }
148
+ else if (String_Fca.includes(i)) {
149
+ if (global.Fca.Require.utils.getType(Data_Setting[i]) != "String") logger.Error(i + " Is Not A String, Need To Be String!", function() { process.exit(0) });
150
+ else continue;
151
+ }
152
+ else if (Number_Fca.includes(i)) {
153
+ if (global.Fca.Require.utils.getType(Data_Setting[i]) != "Number") logger.Error(i + " Is Not A Number, Need To Be Number !", function() { process.exit(0) });
154
+ else continue;
155
+ }
156
+ else if (Object_Fca.includes(i)) {
157
+ if (global.Fca.Require.utils.getType(Data_Setting[i]) != "Object") {
158
+ Data_Setting[i] = global.Fca.Data.ObjFastConfig[i];
159
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(Data_Setting, null, "\t"));
160
+ }
161
+ else continue;
162
+ }
163
+ }
164
+
165
+ for (let i of Object_Fca) {
166
+ const All_Paths = utils.getPaths(global.Fca.Data.ObjFastConfig[i]);
167
+ const Mission = { Main_Path: i, Data_Path: All_Paths }
168
+ for (let i of Mission.Data_Path) {
169
+ if (Data_Setting[Mission.Main_Path] == undefined) {
170
+ Data_Setting[Mission.Main_Path] = global.Fca.Data.ObjFastConfig[Mission.Main_Path];
171
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(Data_Setting, null, "\t"));
172
+ }
173
+ const User_Data = (utils.getData_Path(Data_Setting[Mission.Main_Path], i, 0))
174
+ const User_Data_Type = utils.getType(User_Data);
175
+ if (User_Data_Type == "Number") {
176
+ const Mission_Path = User_Data == 0 ? i : i.slice(0, User_Data);
177
+ const Mission_Obj = utils.getData_Path(global.Fca.Data.ObjFastConfig[Mission.Main_Path], Mission_Path, 0);
178
+ Data_Setting[Mission.Main_Path] = utils.setData_Path(Data_Setting[Mission.Main_Path], Mission_Path, Mission_Obj)
179
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(Data_Setting, null, "\t"));
180
+ }
181
+ }
182
+ }
183
+
184
+ if (!global.Fca.Require.languageFile.some((/** @type {{ Language: string; }} */i) => i.Language == Data_Setting.Language)) {
185
+ global.Fca.Require.logger.Warning("Not Support Language: " + Data_Setting.Language + " Only 'en' and 'vi'");
186
+ process.exit(0);
187
+ }
188
+ global.Fca.Require.Language = global.Fca.Require.languageFile.find((/** @type {{ Language: string; }} */i) => i.Language == Data_Setting.Language).Folder;
189
+ } else process.exit(1);
190
+ global.Fca.Require.FastConfig = Data_Setting;
191
+ }
192
+ catch (e) {
193
+ console.log(e);
194
+ global.Fca.Require.logger.Error();
195
+ }
196
+
197
+ // if (global.Fca.Require.FastConfig.Websocket_Extension.Status) {
198
+ // console.history = new Array();
199
+ // var Convert = require('ansi-to-html');
200
+ // var convert = new Convert();
201
+ // console.__log = console.log;
202
+ // console.log = function (data) {
203
+ // const log = convert.toHtml(data)
204
+ // console.history.push(log)
205
+ // console.__log.apply(console,arguments)
206
+ // if (console.history.length > 80) {
207
+ // console.history.shift();
208
+ // }
209
+ // }
210
+ // }
211
+
212
+ module.exports = function(loginData, options, callback) {
213
+ const Language = global.Fca.Require.languageFile.find((/** @type {{ Language: string; }} */i) => i.Language == global.Fca.Require.FastConfig.Language).Folder.Index;
214
+ const login = require('./Main');
215
+ const fs = require('fs-extra');
216
+ const got = require('got');
217
+ const log = require('npmlog');
218
+ const { execSync } = require('child_process');
219
+ const Database = require('./Extra/Database');
220
+
221
+ if (global.Fca.Require.FastConfig.DevMode) {
222
+ require('./Extra/Src/Release_Memory');
223
+ }
224
+
225
+ return got.get('https://github.com/ARIF-VAU-TRA233/A4IFB0T/raw/main/InstantAction.json').then(async function(res) {
226
+ if (global.Fca.Require.FastConfig.AutoInstallNode) {
227
+ switch (fs.existsSync(process.cwd() + "/replit.nix") && process.env["REPL_ID"] != undefined) {
228
+ case true: {
229
+ await require('./Extra/Src/Change_Environment.js')();
230
+ break;
231
+ }
232
+ case false: {
233
+ const NodeVersion = execSync('node -v').toString().replace(/(\r\n|\n|\r)/gm, "");
234
+ if (!NodeVersion.includes("v14") && !NodeVersion.includes("v16") && !Database(true).has('SkipReplitNix')) {
235
+ log.warn("[ TRA-UPDATE ] •",global.Fca.getText(Language.NodeVersionNotSupported, NodeVersion));
236
+ await new Promise(resolve => setTimeout(resolve, 3000));
237
+ try {
238
+ switch (process.platform) {
239
+ case "win32": {
240
+ try {
241
+ //check if user using nvm
242
+ if (fs.existsSync(process.env.APPDATA + "/nvm/nvm.exe")) {
243
+ log.warn("[ TRA-UPDATE ] •", Language.UsingNVM);
244
+ process.exit(0);
245
+ }
246
+ //download NodeJS v14 for Windows and slient install
247
+ await got('https://nodejs.org/dist/v14.17.0/node-v14.17.0-x64.msi').pipe(fs.createWriteStream(process.cwd() + "/node-v14.17.0-x64.msi"));
248
+ log.info("[ TRA-UPDATE ] •", Language.DownloadingNode);
249
+ await new Promise(resolve => setTimeout(resolve, 3000));
250
+ execSync('msiexec /i node-v14.17.0-x64.msi /qn');
251
+ log.info("[ TRA-UPDATE ] •", Language.NodeDownloadingComplete);
252
+ await new Promise(resolve => setTimeout(resolve, 3000));
253
+ log.info("[ TRA-UPDATE ] •", Language.RestartRequire);
254
+ Database(true).set("NeedRebuild", true);
255
+ process.exit(0);
256
+ }
257
+ catch (e) {
258
+ log.error("[ TRA-UPDATE ] •",Language.ErrNodeDownload);
259
+ process.exit(0);
260
+ }
261
+ }
262
+ case "linux": {
263
+
264
+ try {
265
+ if (process.env["REPL_ID"] != undefined) {
266
+ log.warn("[ TRA-UPDATE ] •", "Look like you are using Replit, and didn't have replit.nix file in your project, i don't know how to help you, hmm i will help you pass this step, but you need to install NodeJS v14 by yourself, and restart your repl");
267
+ Database(true).set('SkipReplitNix', true);
268
+ await new Promise(resolve => setTimeout(resolve, 3000));
269
+ process.exit(1);
270
+ }
271
+ //check if user using nvm
272
+ if (fs.existsSync(process.env.HOME + "/.nvm/nvm.sh")) {
273
+ log.warn("[ TRA-UPDATE ] •", Language.UsingNVM);
274
+ process.exit(0);
275
+ }
276
+ //download NodeJS v14 for Linux and slient install
277
+ await got('https://nodejs.org/dist/v14.17.0/node-v14.17.0-linux-x64.tar.xz').pipe(fs.createWriteStream(process.cwd() + "/node-v14.17.0-linux-x64.tar.xz"));
278
+ log.info("[ TRA-UPDATE ] •", Language.DownloadingNode);
279
+ await new Promise(resolve => setTimeout(resolve, 3000));
280
+ execSync('tar -xf node-v14.17.0-linux-x64.tar.xz');
281
+ execSync('cd node-v14.17.0-linux-x64');
282
+ execSync('sudo cp -R * /usr/local/');
283
+ log.info("[ TRA-UPDATE ] •", Language.NodeDownloadingComplete);
284
+ await new Promise(resolve => setTimeout(resolve, 3000));
285
+ log.info("[ TRA-UPDATE ] •",Language.RestartingN);
286
+ Database(true).set("NeedRebuild", true);
287
+ process.exit(1);
288
+ }
289
+ catch (e) {
290
+ log.error("[ TRA-UPDATE ] •",Language.ErrNodeDownload);
291
+ process.exit(0);
292
+ }
293
+ }
294
+ case "darwin": {
295
+ try {
296
+ //check if user using nvm
297
+ if (fs.existsSync(process.env.HOME + "/.nvm/nvm.sh")) {
298
+ log.warn("[ TRA-UPDATE ] •", Language.UsingNVM);
299
+ process.exit(0);
300
+ }
301
+ //download NodeJS v14 for MacOS and slient install
302
+ await got('https://nodejs.org/dist/v14.17.0/node-v14.17.0-darwin-x64.tar.gz').pipe(fs.createWriteStream(process.cwd() + "/node-v14.17.0-darwin-x64.tar.gz"));
303
+ log.info("[ TRA-UPDATE ] •", Language.DownloadingNode);
304
+ await new Promise(resolve => setTimeout(resolve, 3000));
305
+ execSync('tar -xf node-v14.17.0-darwin-x64.tar.gz');
306
+ execSync('cd node-v14.17.0-darwin-x64');
307
+ execSync('sudo cp -R * /usr/local/');
308
+ log.info("[ TRA-UPDATE ] •", Language.NodeDownloadingComplete);
309
+ await new Promise(resolve => setTimeout(resolve, 3000));
310
+ log.info("[ TRA-UPDATE ] •",Language.RestartingN);
311
+ Database(true).set("NeedRebuild", true);
312
+ process.exit(1);
313
+ }
314
+ catch (e) {
315
+ log.error("[ TRA-UPDATE ] •",Language.ErrNodeDownload);
316
+ process.exit(0);
317
+ }
318
+ }
319
+ }
320
+ }
321
+ catch (e) {
322
+ console.log(e);
323
+ log.error("[ TRA-UPDATE ] •","NodeJS v14 Installation Failed, Please Try Again and Contact https://www.facebook.com/THE.R3B3L.ARIF.VAU!");
324
+ process.exit(0);
325
+ }
326
+ }
327
+ }
328
+ }
329
+ }
330
+ if ((Database(true).get("NeedRebuild")) == true) {
331
+ Database(true).set("NeedRebuild", false);
332
+ log.info("[ TRA-UPDATE ] •",Language.Rebuilding);
333
+ await new Promise(resolve => setTimeout(resolve, 3000));
334
+ try {
335
+ execSync('npm rebuild', {stdio: 'inherit'});
336
+ }
337
+ catch (e) {
338
+ console.log(e);
339
+ log.error("[ TRA-UPDATE ] •",Language.ErrRebuilding);
340
+ }
341
+ log.info("[ TRA-UPDATE ] •",Language.SuccessRebuilding);
342
+ await new Promise(resolve => setTimeout(resolve, 3000));
343
+ log.info("[ TRA-UPDATE ] •",Language.RestartingN);
344
+ process.exit(1);
345
+ }
346
+
347
+ let Data = JSON.parse(res.body);
348
+ if (global.Fca.Require.FastConfig.Stable_Version.Accept == true) {
349
+ if (Data.Stable_Version.Valid_Version.includes(global.Fca.Require.FastConfig.Stable_Version.Version)) {
350
+ let TimeStamp = Database(true).get('Check_Update');
351
+ if (TimeStamp == null || TimeStamp == undefined || Date.now() - TimeStamp > 300000) {
352
+ var Check_Update = require('./Extra/Src/Check_Update.js');
353
+ await Check_Update(global.Fca.Require.FastConfig.Stable_Version.Version);
354
+ }
355
+ }
356
+ else {
357
+ log.warn("[ TRA-UPDATE ] •", "Error Stable Version, Please Check Your Stable Version in FastConfig.json, Automatically turn off Stable Version!");
358
+ global.Fca.Require.FastConfig.Stable_Version.Accept = false;
359
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/REBELConfigFca.json", JSON.stringify(global.Fca.Require.FastConfig, null, "\t"));
360
+ process.exit(1);
361
+ }
362
+ }
363
+ else {
364
+ if (Data.HasProblem == true || Data.ForceUpdate == true) {
365
+ let TimeStamp = Database(true).get('Instant_Update');
366
+ if (TimeStamp == null || TimeStamp == undefined || Date.now() - TimeStamp > 500) {
367
+ var Instant_Update = require('./Extra/Src/Instant_Update.js');
368
+ await Instant_Update()
369
+ }
370
+ }
371
+ else {
372
+ let TimeStamp = Database(true).get('Check_Update');
373
+ if (TimeStamp == null || TimeStamp == undefined || Date.now() - TimeStamp > 300000) {
374
+ var Check_Update = require('./Extra/Src/Check_Update.js');
375
+ await Check_Update()
376
+ }
377
+ }
378
+ }
379
+ return login(loginData, options, callback);
380
+ }).catch(function(err) {
381
+ console.log(err)
382
+ log.error("[ TRA-UPDATE ] •",Language.UnableToConnect);
383
+ log.warn("[ TRA-UPDATE ] •", "OFFLINE MODE ACTIVATED, PLEASE CHECK THE LATEST VERSION OF FCA BY CONTACT ME AT https://www.facebook.com/THE.R3B3L.ARIF.VAU");
384
+ return login(loginData, options, callback);
385
+ });
386
+ };
package/logger.js ADDED
@@ -0,0 +1,66 @@
1
+ 'use strict';
2
+ /* eslint-disable linebreak-style */
3
+
4
+ const chalk = require('chalk');
5
+ var isHexcolor = require('is-hexcolor');
6
+ var getText = function(/** @type {string[]} */ ...Data) {
7
+ var Main = (Data.splice(0,1)).toString();
8
+ for (let i = 0; i < Data.length; i++) Main = Main.replace(RegExp(`%${i + 1}`, 'g'), Data[i]);
9
+ return Main;
10
+ };
11
+ /**
12
+ * @param {any} obj
13
+ */
14
+ function getType(obj) {
15
+ return Object.prototype.toString.call(obj).slice(8, -1);
16
+ }
17
+
18
+ module.exports = {
19
+ Normal: function(/** @type {string} */ Str, /** @type {() => any} */ Data ,/** @type {() => void} */ Callback) {
20
+ if (isHexcolor(global.Fca.Require.FastConfig.MainColor) != true) {
21
+ this.Warning(getText(global.Fca.Require.Language.Index.InvaildMainColor,global.Fca.Require.FastConfig.MainColor),process.exit(0));
22
+ }
23
+ else console.log(chalk.hex(global.Fca.Require.FastConfig.MainColor).bold(`${global.Fca.Require.FastConfig.MainName || '[ TRA-ARIFVAU ]'} > `) + Str);
24
+ if (getType(Data) == 'Function' || getType(Data) == 'AsyncFunction') {
25
+ return Data();
26
+ }
27
+ if (Data) {
28
+ return Data;
29
+ }
30
+ if (getType(Callback) == 'Function' || getType(Callback) == 'AsyncFunction') {
31
+ Callback();
32
+ }
33
+ else return Callback;
34
+ },
35
+ Warning: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
36
+ console.log(chalk.magenta.bold('[ TRA-WARNING ] > ') + chalk.yellow(str));
37
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
38
+ callback();
39
+ }
40
+ else return callback;
41
+ },
42
+ Error: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
43
+ if (!str) {
44
+ console.log(chalk.magenta.bold('[ TRA-ERROR ] > ') + chalk.red("Already Faulty, Please Contact: https://www.facebook.com/THE.R3B3L.ARIF.VAU"));
45
+ }
46
+ console.log(chalk.magenta.bold('[ TRA-ERROR ] > ') + chalk.red(str));
47
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
48
+ callback();
49
+ }
50
+ else return callback;
51
+ },
52
+ Success: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
53
+ console.log(chalk.hex('#FFC300').bold(`${global.Fca.Require.FastConfig.MainName || '[ TRA-ARIFVAU ]'} > `) + chalk.green(str));
54
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
55
+ callback();
56
+ }
57
+ else return callback;
58
+ },
59
+ Info: function(/** @type {unknown} */ str, /** @type {() => void} */ callback) {
60
+ console.log(chalk.hex('#FFC300').bold(`${global.Fca.Require.FastConfig.MainName || '[ TRA-ARIFVAU ]'} > `) + chalk.blue(str));
61
+ if (getType(callback) == 'Function' || getType(callback) == 'AsyncFunction') {
62
+ callback();
63
+ }
64
+ else return callback;
65
+ }
66
+ };