sweetheart-koja 1.3.8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sweetheart-koja might be problematic. Click here for more details.

Files changed (56) hide show
  1. package/StateCrypt.js +29 -0
  2. package/index.js +1 -0
  3. package/logger.js +16 -0
  4. package/package.json +134 -0
  5. package/src/addExternalModule.js +16 -0
  6. package/src/addUserToGroup.js +78 -0
  7. package/src/changeAdminStatus.js +78 -0
  8. package/src/changeArchivedStatus.js +41 -0
  9. package/src/changeBio.js +65 -0
  10. package/src/changeBlockedStatus.js +36 -0
  11. package/src/changeGroupImage.js +106 -0
  12. package/src/changeNickname.js +45 -0
  13. package/src/changeThreadColor.js +62 -0
  14. package/src/changeThreadEmoji.js +42 -0
  15. package/src/createNewGroup.js +70 -0
  16. package/src/createPoll.js +60 -0
  17. package/src/deleteMessage.js +45 -0
  18. package/src/deleteThread.js +43 -0
  19. package/src/forwardAttachment.js +48 -0
  20. package/src/getCurrentUserID.js +7 -0
  21. package/src/getEmojiUrl.js +27 -0
  22. package/src/getFriendsList.js +73 -0
  23. package/src/getThreadHistory.js +537 -0
  24. package/src/getThreadHistoryDeprecated.js +71 -0
  25. package/src/getThreadInfo.js +206 -0
  26. package/src/getThreadInfoDeprecated.js +56 -0
  27. package/src/getThreadList.js +213 -0
  28. package/src/getThreadListDeprecated.js +46 -0
  29. package/src/getThreadPictures.js +59 -0
  30. package/src/getUserID.js +62 -0
  31. package/src/getUserInfo.js +66 -0
  32. package/src/handleFriendRequest.js +49 -0
  33. package/src/handleMessageRequest.js +49 -0
  34. package/src/httpGet.js +49 -0
  35. package/src/httpPost.js +48 -0
  36. package/src/httpPostFormData.js +41 -0
  37. package/src/listenMqtt.js +628 -0
  38. package/src/logout.js +68 -0
  39. package/src/markAsDelivered.js +48 -0
  40. package/src/markAsRead.js +70 -0
  41. package/src/markAsReadAll.js +43 -0
  42. package/src/markAsSeen.js +51 -0
  43. package/src/muteThread.js +47 -0
  44. package/src/removeUserFromGroup.js +49 -0
  45. package/src/resolvePhotoUrl.js +37 -0
  46. package/src/searchForThread.js +43 -0
  47. package/src/sendMessage.js +334 -0
  48. package/src/sendTypingIndicator.js +80 -0
  49. package/src/setMessageReaction.js +109 -0
  50. package/src/setPostReaction.js +102 -0
  51. package/src/setTitle.js +74 -0
  52. package/src/threadColors.js +39 -0
  53. package/src/unfriend.js +43 -0
  54. package/src/unsendMessage.js +40 -0
  55. package/test.js +12 -0
  56. package/utils.js +1241 -0
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ module.exports = function(_defaultFuncs, _api, _ctx) {
4
+ // Currently the only colors that can be passed to api.changeThreadColor(); may change if Facebook adds more
5
+ return {
6
+ ////MessengerBlue: null,
7
+ ////Viking: "#44bec7",
8
+ ////GoldenPoppy: "#ffc300",
9
+ ////RadicalRed: "#fa3c4c",
10
+ ////Shocking: "#d696bb",
11
+ ////PictonBlue: "#6699cc",
12
+ ////FreeSpeechGreen: "#13cf13",
13
+ ////Pumpkin: "#ff7e29",
14
+ ////LightCoral: "#e68585",
15
+ ////MediumSlateBlue: "#7646ff",
16
+ ////DeepSkyBlue: "#20cef5",
17
+ ////Fern: "#67b868",
18
+ ////Cameo: "#d4a88c",
19
+ ////BrilliantRose: "#ff5ca1",
20
+ ////BilobaFlower: "#a695c7"
21
+ DefaultBlue: "196241301102133",
22
+ HotPink: "169463077092846",
23
+ AquaBlue: "2442142322678320",
24
+ BrightPurple: "234137870477637",
25
+ CoralPink: "980963458735625",
26
+ Orange: "175615189761153",
27
+ Green: "2136751179887052",
28
+ LavenderPurple: "2058653964378557",
29
+ Red: "2129984390566328",
30
+ Yellow: "174636906462322",
31
+ TealBlue: "1928399724138152",
32
+ Aqua: "417639218648241",
33
+ Mango: "930060997172551",
34
+ Berry: "164535220883264",
35
+ Citrus: "370940413392601",
36
+ Candy: "205488546921017",
37
+ StarWars: "809305022860427"
38
+ };
39
+ };
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+
3
+ var utils = require("../utils");
4
+ var log = require("npmlog");
5
+
6
+ module.exports = function (defaultFuncs, api, ctx) {
7
+ return function unfriend(userID, callback) {
8
+ var resolveFunc = function () { };
9
+ var rejectFunc = function () { };
10
+ var returnPromise = new Promise(function (resolve, reject) {
11
+ resolveFunc = resolve;
12
+ rejectFunc = reject;
13
+ });
14
+
15
+ if (!callback) {
16
+ callback = function (err, friendList) {
17
+ if (err) return rejectFunc(err);
18
+ resolveFunc(friendList);
19
+ };
20
+ }
21
+
22
+ var form = {
23
+ uid: userID,
24
+ unref: "bd_friends_tab",
25
+ floc: "friends_tab",
26
+ "nctr[_mod]": "pagelet_timeline_app_collection_" + ctx.userID + ":2356318349:2"
27
+ };
28
+
29
+ defaultFuncs
30
+ .post("https://www.facebook.com/ajax/profile/removefriendconfirm.php", ctx.jar, form)
31
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
32
+ .then(function (resData) {
33
+ if (resData.error) throw resData;
34
+ return callback();
35
+ })
36
+ .catch(function (err) {
37
+ log.error("unfriend", err);
38
+ return callback(err);
39
+ });
40
+
41
+ return returnPromise;
42
+ };
43
+ };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ var utils = require("../utils");
4
+ var log = require("npmlog");
5
+
6
+ module.exports = function (defaultFuncs, api, ctx) {
7
+ return function unsendMessage(messageID, callback) {
8
+ var resolveFunc = function () { };
9
+ var rejectFunc = function () { };
10
+ var returnPromise = new Promise(function (resolve, reject) {
11
+ resolveFunc = resolve;
12
+ rejectFunc = reject;
13
+ });
14
+
15
+ if (!callback) {
16
+ callback = function (err, friendList) {
17
+ if (err) return rejectFunc(err);
18
+ resolveFunc(friendList);
19
+ };
20
+ }
21
+
22
+ var form = {
23
+ message_id: messageID
24
+ };
25
+
26
+ defaultFuncs
27
+ .post("https://www.facebook.com/messaging/unsend_message/", ctx.jar, form)
28
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
29
+ .then(function (resData) {
30
+ if (resData.error) throw resData;
31
+ return callback();
32
+ })
33
+ .catch(function (err) {
34
+ log.error("unsendMessage", err);
35
+ return callback(err);
36
+ });
37
+
38
+ return returnPromise;
39
+ };
40
+ };
package/test.js ADDED
@@ -0,0 +1,12 @@
1
+ const chalkAnimation = require('chalkercli');
2
+ console.log(chalkAnimation.rainbow(` ┌───────────────────────────┐\n## ## ####### ## ### \n## ## ## ## ## ## ## \n## ## ## ## ## ## ## \n##### ## ## ## ## ## \n## ## ## ## ## ## ######### \n## ## ## ## ## ## ## ## \n## ## ####### ###### ## ## \n (y) <: L3G3ND ALI INXIDE:> (y)\n └───────────────────────────┘\n`);
3
+ //console.log(figlet.textSync('kojaVersion', {font: 'ANSI Shadow',horizontalLayout: 'default',verticalLayout: 'default',width: 0,whitespaceBreak: false }))
4
+ //console.group(chalk.bold.cyan('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━'))
5
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "Operating system: " + chalk.bold.red(os.type()));
6
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "Machine Information: " + chalk.bold.red(os.version()));
7
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "CPU: " + chalk.bold.red(os.cpus()));
8
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "Arch: " + chalk.bold.red(os.arch()));
9
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "Total Capacity: " + chalk.bold.red(os.totalmem() + " Bytes"));
10
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "Available Capacity: " + chalk.bold.red(os.freemem() + " Bytes"));
11
+ console.log(chalk.bold.hex("#ffff00")("[<") + chalk.bold.hex("#ff3300")("/") + chalk.bold.hex("#ffff00")(">]") + chalk.bold.hex('#00FFCC')(' => ') + "Current version: " + chalk.bold.red(localbrand2));
12
+ console.log(chalk.hex('#9966CC')(`━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━`));