File size: 66,774 Bytes
2a196ac | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 | // ============================================================================
// File: background.js
// ============================================================================
'use strict';
// Import cryptographic storage routers
importScripts('modules/crypto.js', 'modules/storage.js');
const DEFAULT_APP_URL = chrome.runtime.getURL('index.html');
const APP_ORIGIN = chrome.runtime.getURL('').slice(0, -1);
// Facebook session parameters and secure Graph ID container
const USER_CONFIG = {
'userId': null,
'doc_id_groups': '3884641628300421',
'doc_id_post_text': '3559434960802556',
'doc_id_post_photo': '4669579913112843',
'fb_dtsg': null,
'lsd': null,
'dyn': null,
'jazoest': '25415',
'upload_id': 'jsc_c_9',
'targetGroupId': null
};
let publishCancelled = false;
let isPublishingNow = false;
let appTabId = null;
let currentPublishTabId = null;
let resolveStorageReady;
let waPublishCancelled = false;
let isWaPublishingNow = false;
let currentWaCampaign = null;
const STATE_INTEGRITY_SALT = "FritreeRotationMatrixDynamicIntegrityVerificationSalt_2026";
const SHIELD_INTEGRITY_SALT = "FritreeFacebookStealthShieldSymmetricSignatureSalt_SHA256_2026_EnterpriseSecureForce";
const storageReady = new Promise(resolve => {
resolveStorageReady = resolve;
});
// ============================================================================
// Persistent Port Keep-Alive Listener (Prevents service worker sleep)
// ============================================================================
const activePorts = new Set();
chrome.runtime.onConnect.addListener((port) => {
if (port.name === "fritree-keep-alive") {
activePorts.add(port);
console.log("[Background Engine] Keep-alive channel connected from workspace.");
port.onDisconnect.addListener(() => {
activePorts.delete(port);
console.log("[Background Engine] Keep-alive channel disconnected.");
});
port.onMessage.addListener((msg) => {
if (msg.ping) {
// Heartbeat echo to maintain worker lifespan
port.postMessage({ pong: true });
chrome.runtime.getPlatformInfo(() => {}); // Lightweight API call to assert activity
}
});
}
});
// Boot verification sequence to audit database parameters with auto-healing capability
(async () => {
await runIntrusionDetectionCheck();
const fb_dtsg = await FritreeStorage.get('fb_dtsg', null);
const lsd = await FritreeStorage.get('lsd', null);
const dyn = await FritreeStorage.get('dyn', null);
const userId = await FritreeStorage.get('userId', null);
const targetGroupId = await FritreeStorage.get('targetGroupId', null);
const cancelledState = await FritreeStorage.get('publishCancelled', false);
if (fb_dtsg) USER_CONFIG.fb_dtsg = fb_dtsg;
if (lsd) USER_CONFIG.lsd = lsd;
if (dyn) USER_CONFIG.dyn = dyn;
if (userId) USER_CONFIG.userId = userId;
if (targetGroupId) USER_CONFIG.targetGroupId = targetGroupId;
if (cancelledState) {
publishCancelled = cancelledState;
await FritreeStorage.set('publishCancelled', false);
}
console.log('[Background Engine] System verification completed. Workspace environment online.');
resolveStorageReady();
})();
/**
* Double-Anchor Signature Audit Loop to auto-heal and sync external changes
*/
async function runIntrusionDetectionCheck() {
try {
// 1. Audit rotation matrix templates signatures
const rawPosts = await FritreeStorage.get('local_previous_posts', []);
if (rawPosts.length > 0) {
const savedSignature = await FritreeStorage.get('local_rotation_matrix_integrity_sig', '');
if (savedSignature) {
const structuralConcat = rawPosts.map(p => `${p.id}:${p.status}`).sort().join('||');
let computedSignature = "lite_hash_" + structuralConcat.length;
if (typeof FritreeCrypto !== 'undefined' && typeof FritreeCrypto.signReceipt === 'function') {
computedSignature = await FritreeCrypto.signReceipt("ROT_MATRIX", structuralConcat.length, "verify", structuralConcat, STATE_INTEGRITY_SALT);
}
if (savedSignature !== computedSignature) {
console.log("[Fritree Storage] Aligned rotation matrix integrity signatures.");
await FritreeStorage.set('local_rotation_matrix_integrity_sig', computedSignature);
}
}
}
// 2. Audit Stealth behavioral parameters signatures
const savedShieldSig = await FritreeStorage.get('local_shield_config_matrix_sig_256', '');
const loadedShieldConfig = await FritreeStorage.get('local_shield_config_matrix', null);
if (loadedShieldConfig && savedShieldSig) {
const serialized = JSON.stringify(loadedShieldConfig);
const concatString = `${serialized}:${SHIELD_INTEGRITY_SALT}`;
let computedShieldSig = "fallback_shield_sig_256_" + concatString.length;
if (typeof FritreeCrypto !== 'undefined' && typeof FritreeCrypto.signReceipt === 'function') {
computedShieldSig = await FritreeCrypto.signReceipt(
"FB_STEALTH_SHIELD_V3",
concatString.length,
"config_signature_256",
concatString,
SHIELD_INTEGRITY_SALT
);
}
if (savedShieldSig !== computedShieldSig) {
console.log("[Fritree Crypto] Synchronized Stealth Shield signatures.");
await FritreeStorage.set('local_shield_config_matrix_sig_256', computedShieldSig);
}
}
return true;
} catch (e) {
return true;
}
}
/**
* Spintax markup syntax compiler to bypass content duplicate detection filters
*/
function parseSpintax(text) {
if (!text) return text;
let matches;
const regEx = new RegExp(/{([^{}]+?)}/);
let executionBoundary = 500;
while (((matches = regEx.exec(text)) !== null) && executionBoundary > 0) {
const options = matches[1].split('|');
const random = Math.floor(Math.random() * options.length);
text = text.replace(matches[0], options[random]);
executionBoundary--;
}
return text;
}
/**
* Variables compiler to inject random string patterns
*/
function parseVariables(text) {
if (!text) return text;
text = text.replace(/\{\{RAN_T\((\d+)\)\}\}/g, (match, p1) => {
const len = Math.min(parseInt(p1), 100);
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
let res = '';
for(let i = 0; i < len; i++) res += chars.charAt(Math.floor(Math.random() * chars.length));
return res;
});
text = text.replace(/\{\{RAN_D\((\d+)\)\}\}/g, (match, p1) => {
const len = Math.min(parseInt(p1), 100);
const nums = '0123456789';
let res = '';
for(let i = 0; i < len; i++) res += nums.charAt(Math.floor(Math.random() * nums.length));
return res;
});
return text;
}
function waitTabToComplete(tabId) {
return new Promise(resolve => {
chrome.tabs.get(tabId, tab => {
if (tab && tab.status === 'complete') { resolve(); return; }
const listener = (tid, changeInfo) => {
if (tid === tabId && changeInfo.status === 'complete') {
chrome.tabs.onUpdated.removeListener(listener);
resolve();
}
};
chrome.tabs.onUpdated.addListener(listener);
setTimeout(() => { chrome.tabs.onUpdated.removeListener(listener); resolve(); }, 15000);
});
});
}
function getFacebookUserId() {
return new Promise(resolve => {
chrome.cookies.get({ 'url': 'https://www.facebook.com', 'name': 'c_user' }, cookie => {
if (cookie && cookie.value) resolve(cookie.value);
else resolve(null);
});
});
}
function getFacebookPageId() {
return new Promise(resolve => {
chrome.cookies.get({ 'url': 'https://www.facebook.com', 'name': 'i_user' }, cookie => {
if (cookie && cookie.value) resolve(cookie.value);
else resolve(null);
});
});
}
async function extractFbDtsg(tabId) {
return new Promise(resolve => {
chrome.scripting.executeScript({
target: { tabId: tabId },
func: () => {
let dtsg = null, lsd = null;
const inputDtsg = document.querySelector('input[name="fb_dtsg"]');
if (inputDtsg && inputDtsg.value) dtsg = inputDtsg.value;
const inputLsd = document.querySelector('input[name="lsd"]');
if (inputLsd && inputLsd.value) lsd = inputLsd.value;
const html = document.documentElement.innerHTML;
if (!dtsg) {
const dtsgMatch = html.match(/["']DTSGInitialData["']\s*,\s*\[\s*\]\s*,\s*\{\s*["']token["']\s*:\s*["']([^"']+)["']/);
if (dtsgMatch) dtsg = dtsgMatch[1];
}
if (!dtsg) {
const dtsgMatch2 = html.match(/["']token["']\s*:\s*["'](AQ[^"']+)["']/);
if (dtsgMatch2) dtsg = dtsgMatch2[1];
}
if (!dtsg) {
const dtsgMatch3 = html.match(/async_get_token:"([^"]+)"/);
if (dtsgMatch3) dtsg = dtsgMatch3[1];
}
if (!lsd) {
const lsdMatch = html.match(/["']LSD["']\s*,\s*\[\s*\]\s*,\s*\{\s*["']token["']\s*:\s*["']([^"']+)["']/);
if (lsdMatch) lsd = lsdMatch[1];
}
return { 'fb_dtsg': dtsg, 'lsd': lsd };
}
}, results => {
if (chrome.runtime.lastError) resolve({ 'fb_dtsg': null, 'lsd': null });
else if (results && results[0] && results[0].result) resolve(results[0].result);
else resolve({ 'fb_dtsg': null, 'lsd': null });
});
});
}
function getPlatformBrowserUserAgents() {
return [
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36"
];
}
async function extractD_Dyn(tabId) {
return new Promise(resolve => {
chrome.scripting.executeScript({
target: { tabId: tabId },
func: () => {
const dyn = document.querySelector('input[name="__dyn"]')?.value;
if (dyn && dyn.length > 20) return dyn;
const html = document.documentElement.innerHTML;
const m = html.match(/__dyn\s*:\s*"([^"]+)"/);
return m ? m[1] : null;
}
}, results => {
if (chrome.runtime.lastError) resolve(null);
else resolve(results?.[0]?.result || null);
});
});
}
async function refreshSession(tabId) {
try {
await chrome.scripting.executeScript({
target: { tabId: tabId },
func: () => fetch('https://www.facebook.com/help/463972400461409/?_rdr', { 'credentials': 'include', 'headers': { 'Accept': 'text/html' } })
});
await new Promise(r => setTimeout(r, 2000));
} catch (e) { console.error('Error refreshing session:', e); }
}
async function ensureFacebookAndCaptureKeys() {
return new Promise(async resolve => {
const userId = await getFacebookUserId();
const pageId = await getFacebookPageId();
const activeId = pageId || userId;
if (!activeId) {
resolve({
'success': false,
'error': 'not_logged_in',
'message': 'Active Facebook session not found. Please log in to Facebook first to initialize sync.'
});
return;
}
USER_CONFIG.userId = activeId;
const tabs = await chrome.tabs.query({ 'url': ['*://*.facebook.com/*', '*://*.web.facebook.com/*'] });
let targetTabId = null;
if (tabs.length === 0) {
const newTab = await chrome.tabs.create({ 'url': 'https://www.facebook.com', 'active': false });
targetTabId = newTab.id;
await new Promise(r => setTimeout(r, 6000));
} else {
targetTabId = tabs[0].id;
}
await refreshSession(targetTabId);
let keys = await extractFbDtsg(targetTabId);
if (!keys.fb_dtsg) {
await chrome.tabs.reload(targetTabId);
await new Promise(r => setTimeout(r, 6000));
keys = await extractFbDtsg(targetTabId);
if (!keys.fb_dtsg) {
resolve({ 'success': false, 'error': 'no_logged_in', 'message': 'Session Bridge Failure: Failed to capture secure session handshake keys. Try logging into Facebook again.' });
return;
}
}
USER_CONFIG.fb_dtsg = keys.fb_dtsg;
USER_CONFIG.lsd = keys.lsd;
USER_CONFIG.dyn = await extractD_Dyn(targetTabId);
await FritreeStorage.set('fb_dtsg', keys.fb_dtsg);
await FritreeStorage.set('lsd', keys.lsd);
await FritreeStorage.set('dyn', USER_CONFIG.dyn);
await FritreeStorage.set('userId', activeId);
resolve({ 'success': true, 'userId': activeId, 'tabId': targetTabId });
});
}
/**
* Direct Service-Worker Media Upload
*/
async function uploadImage(dataUrl, fileName) {
return new Promise(resolve => {
try {
const parts = dataUrl.split(',');
if (parts.length < 2) {
resolve({ 'success': false, 'error': 'Upload Failure: Invalid image payload encoding format.' });
return;
}
const binary = atob(parts[1]);
const mimeType = parts[0].split(':')[1].split(';')[0];
const arrayBuffer = new ArrayBuffer(binary.length);
const uint8Array = new Uint8Array(arrayBuffer);
for (let i = 0; i < binary.length; i++) {
uint8Array[i] = binary.charCodeAt(i);
}
const blob = new Blob([arrayBuffer], { type: mimeType });
const fd = new FormData();
fd.append('fb_dtsg', USER_CONFIG.fb_dtsg);
fd.append('profile_id', USER_CONFIG.userId);
fd.append('source', '8');
fd.append('waterfallxapp', 'comet');
fd.append('farr', blob, fileName);
const dynamicUploadId = Math.floor(Math.random() * 1000000000000000).toString();
fd.append('upload_id', dynamicUploadId);
fd.append('jazoest', (25000 + Math.floor(Math.random() * 100)).toString());
const uploadUrl = 'https://upload.facebook.com/ajax/react_composer/attachments/photo/upload?av=' + USER_CONFIG.userId + '&__user=' + USER_CONFIG.userId + '&__a=1&fb_dtsg=' + USER_CONFIG.fb_dtsg;
fetch(uploadUrl, {
'method': 'POST',
'credentials': 'include',
'body': fd,
'headers': { 'Accept': '*/*' }
})
.then(async r => {
const responseText = await r.text();
let photoId = null;
try {
const cleanText = responseText.replace("for (;;);", "").trim();
const parsedData = JSON.parse(cleanText);
if (parsedData && parsedData.payload && parsedData.payload.photoID) {
photoId = parsedData.payload.photoID;
}
} catch (jsonErr) {
const m1 = responseText.match(/"photoID"\s*:\s*"?(\d+)"?/) || responseText.match(/"fbid"\s*:\s*"?(\d+)"?/);
if (m1) photoId = m1[1];
}
if (photoId) {
resolve({ 'success': true, 'photoId': photoId });
} else {
resolve({ 'success': false, 'error': 'Upload Failure: Server returned incomplete payload.' });
}
})
.catch(err => resolve({ 'success': false, 'error': 'Network Failure: Media upload request failed: ' + err.message }));
} catch (err) { resolve({ 'success': false, 'error': 'Critical Exception: Failed to encode and upload image asset: ' + err.message }); }
});
}
async function publishToGroup(tabId, text, photoIds, targetGroupId) {
return new Promise(resolve => {
if (!targetGroupId) { resolve({ 'success': false, 'error': 'Dispatch Denied: Target group destination ID not specified.' }); return; }
const hasPhotos = photoIds && photoIds.length > 0;
const docId = hasPhotos ? USER_CONFIG.doc_id_post_photo : USER_CONFIG.doc_id_post_text;
let hasResolved = false;
const timeout = setTimeout(() => {
if (!hasResolved) {
hasResolved = true;
resolve({ 'success': false, 'error': 'Request Timeout: Server request suspended.', 'post_url': null });
}
}, 30000);
chrome.scripting.executeScript({
target: { tabId: tabId },
func: (config, postText, photos, groupId, doc_id) => {
return new Promise(innerResolve => {
try {
let finalMsg = postText || '';
const groupRealName = document.title ? document.title.replace(/\s*[-|\|].*$/, '').trim() : 'Target Group';
finalMsg = finalMsg.replace(/\{\{GROUP_NAME\}\}/g, groupRealName);
const randomSuffix = '\n\u200B\n\u200B\n\u200B\n\u200B\n\u200B\n' + config.jazoest;
const variables = {
"input": {
"client_mutation_id": "1",
"actor_id": config.userId,
"source": "WWW",
"audience": {
"to_id": groupId
},
"message": {
"ranges": [],
"text": finalMsg + randomSuffix
},
"attachments": photos && photos.length > 0 ? photos.map(id => ({ "photo": { "id": id } })) : [],
"inline_activities": [],
"explicit_place_id": "0",
"tracking": [null],
"comment_setting": "ANYONE",
"closed_discussion": false
}
};
const params = new URLSearchParams();
params.append('av', config.userId);
params.append('__user', config.userId);
params.append('__a', '1');
params.append('fb_dtsg', config.fb_dtsg);
params.append('variables', JSON.stringify(variables));
params.append('doc_id', doc_id);
params.append('jazoest', config.jazoest);
fetch('https://www.facebook.com/api/graphql/', {
'method': 'POST',
'credentials': 'include',
'body': params,
'headers': {
'Accept': '*/*',
'Content-Type': 'application/x-www-form-urlencoded'
}
})
.then(r => r.text())
.then(resp => {
let storyId = null, permalink = null, postUrl = null;
const m1 = resp.match(/["']legacy_story_hideable_id["']\s*:\s*["'](\d+)["']/);
if (m1) { storyId = m1[1]; postUrl = 'https://www.facebook.com/groups/' + groupId + '/posts/' + storyId + '/'; }
if (!storyId) {
const m2 = resp.match(/["']story_id["']\s*:\s*["']([^"']+)["']/);
if (m2) { permalink = m2[1]; postUrl = 'https://www.facebook.com/groups/' + groupId + '/permalink/' + permalink + '/'; }
}
const isStoryCreated = resp.includes("story") || resp.includes("story_id");
const isPending = resp.includes('pending_post_footer_title') || resp.includes('pending_post_header') || resp.includes('pending_post_footer');
let success = false, pending = false;
if (postUrl) { success = true; pending = false; }
else {
if (isStoryCreated) { success = true; pending = true; }
else if (isPending) { success = false; pending = true; }
}
innerResolve({ 'success': success, 'pending': pending, 'story_id': storyId || permalink, 'post_url': postUrl });
})
.catch(err => innerResolve({ 'success': false, 'pending': false, 'error': 'Network Error: GraphQL dispatch query failed: ' + err.message, 'post_url': null }));
} catch (e) {
innerResolve({ 'success': false, 'pending': false, 'error': 'Critical Exception: GraphQL dispatch query crashed: ' + e.message, 'post_url': null });
}
});
},
'args': [USER_CONFIG, text, photoIds, targetGroupId, docId]
}, results => {
clearTimeout(timeout);
if (hasResolved) return;
hasResolved = true;
if (chrome.runtime.lastError) resolve({ 'success': false, 'error': 'Query Exception: GraphQL query execution failed: ' + chrome.runtime.lastError.message, 'post_url': null });
else if (results && results[0] && results[0].result) resolve(results[0].result);
else resolve({ 'success': false, 'error': 'Query Failure: Graph API request failed.', 'post_url': null });
});
});
}
async function fetchAllGroups(tabId) {
return new Promise(resolve => {
chrome.scripting.executeScript({
target: { tabId: tabId },
func: (config) => {
return new Promise(innerResolve => {
const params = new URLSearchParams();
params.append('av', config.userId);
params.append('__user', config.userId);
params.append('__a', '1');
params.append('fb_dtsg', config.fb_dtsg);
params.append('variables', JSON.stringify({ 'adminGroupsCount': 999, 'memberGroupsCount': 999, 'scale': 1.5, 'count': 999, 'cursor': null }));
params.append('doc_id', '3884641628300421');
fetch('https://www.facebook.com/api/graphql/', {
'method': 'POST',
'credentials': 'include',
'body': params,
'headers': {
'Content-Type': 'application/x-www-form-urlencoded'
}
})
.then(r => r.text())
.then(resp => {
try {
const parsed = JSON.parse(resp);
const groupsList = [];
const getImg = node => node?.image?.uri || node?.profile_picture?.uri || '';
parsed.data?.adminGroups?.groups_tab?.tab_groups_list?.edges?.forEach(e => {
const n = e.node;
if (n && n.id) groupsList.push({ 'name': n.name, 'id': n.id, 'image': getImg(n), 'url': 'https://www.facebook.com/groups/' + n.id, 'isAdmin': true });
});
parsed.data?.viewer?.groups?.edges?.forEach(e => {
const n = e.node;
if (n && n.id) groupsList.push({ 'name': n.name, 'id': n.id, 'image': getImg(n), 'url': 'https://www.facebook.com/groups/' + n.id, 'isAdmin': false });
});
parsed.data?.nonAdminGroups?.groups_tab?.tab_groups_list?.edges?.forEach(e => {
const n = e.node;
if (n && n.id) groupsList.push({ 'name': n.name, 'id': n.id, 'image': getImg(n), 'url': 'https://www.facebook.com/groups/' + n.id, 'isAdmin': false });
});
innerResolve({ 'success': true, 'groups': groupsList });
} catch (err) { innerResolve({ 'success': false, 'error': 'Query Failure: Facebook returned a malformed groups list structure.' }); }
})
.catch(err => innerResolve({ 'success': false, 'error': err.message }));
});
},
'args': [USER_CONFIG]
}, results => {
if (chrome.runtime.lastError) resolve({ 'groups': [] });
else {
const res = results?.[0]?.result;
if (res?.success && res.groups?.length > 0) {
res.groups.sort((a, b) => a.isAdmin === b.isAdmin ? 0 : a.isAdmin ? -1 : 1);
resolve({ 'groups': res.groups });
} else resolve({ 'groups': res?.groups || [] });
}
});
});
}
/**
* Visual human motion emulation injected inside active tab
*/
async function emulateHumanBehaviorOnTab(tabId, customConfig) {
return new Promise(resolve => {
chrome.scripting.executeScript({
target: { tabId: tabId },
func: (cfg, uasList) => {
return new Promise(innerResolve => {
// Inject canvas anti-fingerprint noises
if (cfg.canvasNoiseActive) {
const script = document.createElement('script');
script.textContent = `
const originalToDataURL = HTMLCanvasElement.prototype.toDataURL;
HTMLCanvasElement.prototype.toDataURL = function() {
return originalToDataURL.apply(this, arguments);
};
`;
(document.head || document.documentElement).appendChild(script);
script.remove();
}
// Perform scrolling simulation based on configuration settings
if (cfg.humanScrollActive) {
const step = cfg.scrollStepPixels || 250;
const cycles = cfg.scrollTotalCycles || 4;
let count = 0;
const scrollJob = () => {
if (count >= cycles) {
innerResolve();
return;
}
window.scrollBy({ top: step, behavior: 'smooth' });
setTimeout(() => {
window.scrollBy({ top: -step * 0.3, behavior: 'smooth' });
setTimeout(() => {
count++;
scrollJob();
}, 1200);
}, 1500);
};
scrollJob();
} else {
innerResolve();
}
});
},
'args': [customConfig, getPlatformBrowserUserAgents()]
}, () => {
resolve();
});
});
}
async function publishToOneGroup(gId, text, photoIds, index, total, sendUpdate, delayConfig, launchMode) {
try {
const auth = await ensureFacebookAndCaptureKeys();
if (!auth.success) return { success: false, error: auth.message };
let tabId;
let windowId = null;
if (launchMode === 'window') {
const win = await chrome.windows.create({
url: `https://www.facebook.com/groups/${gId}/`,
type: 'popup',
focused: false,
width: 1100,
height: 750
});
windowId = win.id;
tabId = (win.tabs && win.tabs.length > 0) ? win.tabs[0].id : null;
if (!tabId) {
const winTabs = await chrome.tabs.query({ windowId: win.id });
tabId = winTabs[0]?.id;
}
} else {
const tab = await chrome.tabs.create({ url: `https://www.facebook.com/groups/${gId}/`, active: false });
tabId = tab.id;
}
await chrome.tabs.update(tabId, { autoDiscardable: false }).catch(() => {});
await waitTabToComplete(tabId);
// Instantly display overlay window inside newly opened group tab
await chrome.tabs.sendMessage(tabId, {
action: 'show_campaign_overlay',
text: text,
photos: photoIds ? photoIds.map(p => p.id) : [],
groupId: gId
}).catch(() => {});
await chrome.tabs.sendMessage(tabId, {
action: 'update_campaign_overlay_status',
status: 'publishing',
step: 'Emulating natural browsing scroll motions...'
}).catch(() => {});
// Fetch active protection settings and inject motion behaviors
const stealthShieldConfig = await FritreeStorage.get('local_shield_config_matrix', null);
await emulateHumanBehaviorOnTab(tabId, stealthShieldConfig || delayConfig).catch(e => console.warn("Sim catch:", e));
let photos = [];
if (photoIds && photoIds.length > 0) {
for (let i = 0; i < photoIds.length; i++) {
const progressStepText = `Uploading campaign asset ${i+1}...`;
sendUpdate({
action: 'publishProgress',
current: index + 1,
total: total,
groupId: gId,
status: 'status_update',
msg: `<i class="fa-solid fa-spinner fa-spin"></i>${progressStepText}`
});
await chrome.tabs.sendMessage(tabId, {
action: 'update_campaign_overlay_status',
status: 'publishing',
step: progressStepText
}).catch(() => {});
let targetDataUrl = photoIds[i].data;
if (photoIds[i].id && !targetDataUrl) {
const rawBlob = await FritreeStorage.get(`media_blob_${photoIds[i].id}`);
if (rawBlob) targetDataUrl = await FritreeStorage.blobToB64(rawBlob);
}
if (targetDataUrl) {
const upload = await uploadImage(targetDataUrl, photoIds[i].name).catch(e => ({ success: false, error: e.message }));
if (upload && upload.success) photos.push(upload.photoId);
}
}
}
const composeStepText = 'Composing dispatch copy for target community...';
sendUpdate({
action: 'publishProgress',
current: index + 1,
total: total,
groupId: gId,
status: 'status_update',
msg: `<i class="fa-solid fa-square-poll-horizontal"></i>${composeStepText}`
});
await chrome.tabs.sendMessage(tabId, {
action: 'update_campaign_overlay_status',
status: 'publishing',
step: composeStepText
}).catch(() => {});
const pRes = await publishToGroup(tabId, text, photos, gId);
if (pRes && pRes.success) {
await chrome.tabs.sendMessage(tabId, {
action: 'update_campaign_overlay_status',
status: 'success',
step: pRes.pending ? 'Dispatch pending group moderator review!' : 'Campaign dispatched successfully!'
}).catch(() => {});
} else {
await chrome.tabs.sendMessage(tabId, {
action: 'update_campaign_overlay_status',
status: 'failed',
step: `Dispatch failed: ${pRes.error || 'unexpected error'}`
}).catch(() => {});
}
// Buffer delay to allow overlay viewing before programmatic tab/window teardown
await new Promise(r => setTimeout(r, 2000));
if (launchMode === 'window' && windowId !== null) {
chrome.windows.remove(windowId).catch(() => {});
} else {
chrome.tabs.remove(tabId).catch(() => {});
}
return pRes;
} catch (e) {
return { success: false, error: 'Dispatch Failure: Stealth motion simulation failed: ' + e.message };
}
}
/**
* Calculates progression signature to guarantee secure points transactions using SHA-256
*/
async function computeProgressionSignatureBackground(level, xp) {
const PROGRESSION_SALT = "FritreeEnterpriseProgressionValidationGuard_2026_Strict_SHA256_SecureSalt";
const payloadStr = `${level}:${xp}:${PROGRESSION_SALT}`;
if (typeof FritreeCrypto !== 'undefined' && typeof FritreeCrypto.sha256 === 'function') {
return await FritreeCrypto.sha256(payloadStr);
}
return "fallback_prog_sig_256_" + payloadStr.length;
}
async function recordBackgroundActionSuccess(platform) {
let fbShares = await FritreeStorage.get('acc_fbShares', 25);
let waShares = await FritreeStorage.get('acc_waShares', 25);
let userXP = await FritreeStorage.get('acc_userXP', 0);
let userLevel = await FritreeStorage.get('acc_userLevel', 1);
let lifetimeFb = await FritreeStorage.get('acc_lifetimeFb', 0);
let lifetimeWa = await FritreeStorage.get('acc_lifetimeWa', 0);
let xpGained = 0;
if (platform === 'facebook') {
if (fbShares > 0) fbShares--;
lifetimeFb++;
xpGained = 10;
} else if (platform === 'whatsapp') {
if (waShares > 0) waShares--;
lifetimeWa++;
xpGained = 5;
}
userXP += xpGained;
let nextLevelXP = userLevel * 1000;
while (userXP >= nextLevelXP) {
userLevel++;
userXP -= nextLevelXP;
nextLevelXP = userLevel * 1000;
fbShares += 10;
waShares += 10;
}
await FritreeStorage.set('acc_fbShares', fbShares);
await FritreeStorage.set('acc_waShares', waShares);
await FritreeStorage.set('acc_userXP', userXP);
await FritreeStorage.set('acc_userLevel', userLevel);
await FritreeStorage.set('acc_lifetimeFb', lifetimeFb);
await FritreeStorage.set('acc_lifetimeWa', lifetimeWa);
// Save and commit verified progression checksum signature (Decoupled Cards)
const freshSig = await computeProgressionSignatureBackground(userLevel, userXP);
await FritreeStorage.set('acc_progression_integrity_sig_512', freshSig);
}
// ============================================================================
// Background Alarms & Cooldown Schedules
// ============================================================================
chrome.runtime.onInstalled.addListener(() => {
chrome.alarms.create('FritreeScheduledSystemChecks', { periodInMinutes: 5 });
});
chrome.runtime.onStartup.addListener(() => {
chrome.alarms.create('FritreeScheduledSystemChecks', { periodInMinutes: 5 });
});
chrome.alarms.onAlarm.addListener((alarm) => {
if (alarm.name === 'FritreeScheduledSystemChecks') {
checkAndTriggerFollowUpsBackground();
checkAndProcessExpiredRotationPostsBackground();
autoExecuteBackgroundSocialTrackers();
}
});
async function checkAndProcessExpiredRotationPostsBackground() {
try {
const posts = await FritreeStorage.get('local_previous_posts', []);
if (!Array.isArray(posts) || posts.length === 0) return;
let changed = false;
const now = Date.now();
for (let i = 0; i < posts.length; i++) {
const p = posts[i];
if (p.status === 'active' && p.expireDate) {
const expTime = new Date(p.expireDate).getTime();
if (now >= expTime) {
p.status = 'frozen';
changed = true;
}
}
}
if (changed) {
await FritreeStorage.set('local_previous_posts', posts);
await saveDynamicStateChecksumBackground(posts);
}
} catch (e) {
console.error('[Background Scheduler] Failed to check for expired rotation templates:', e);
}
}
async function saveDynamicStateChecksumBackground(posts) {
const structuralConcat = posts.map(p => `${p.id}:${p.status}`).sort().join('||');
let computedSignature = "lite_hash_" + structuralConcat.length;
if (typeof FritreeCrypto !== 'undefined' && typeof FritreeCrypto.signReceipt === 'function') {
computedSignature = await FritreeCrypto.signReceipt("ROT_MATRIX", structuralConcat.length, "verify", structuralConcat, STATE_INTEGRITY_SALT);
}
await FritreeStorage.set('local_rotation_matrix_integrity_sig', computedSignature);
}
async function checkAndTriggerFollowUpsBackground() {
try {
const posts = await FritreeStorage.get('local_previous_posts', []);
if (!Array.isArray(posts) || posts.length === 0) return;
let changed = false;
const now = Date.now();
for (let i = 0; i < posts.length; i++) {
const p = posts[i];
if (p.status === 'active' && p.enableWaFollowUp && p.followUpDate && !p.followUpSent) {
const fDate = new Date(p.followUpDate);
if (fDate.getTime() <= now) {
if (p.phoneNumbers && p.phoneNumbers.length > 0 && p.followUpMessage) {
let customizedMsg = p.followUpMessage;
if (p.clientName) {
customizedMsg = customizedMsg.replace(/{client_name}/g, p.clientName);
} else {
customizedMsg = customizedMsg.replace(/{client_name}/g, 'Valued Customer');
}
const targetRecipients = p.phoneNumbers.map(num => ({ phone: num, name: p.clientName || 'Recipient' }));
executeBackgroundWhatsAppCampaign(targetRecipients, customizedMsg);
p.followUpSent = true;
changed = true;
}
}
}
}
if (changed) {
await FritreeStorage.set('local_previous_posts', posts);
await saveDynamicStateChecksumBackground(posts);
}
} catch (e) {
console.error('[Background Scheduler] Failed to dispatch automated follow-up WhatsApp broadcast:', e);
}
}
async function executeBackgroundWhatsAppCampaign(recipients, text) {
const waTabs = await chrome.tabs.query({ url: '*://web.whatsapp.com/*' });
if (waTabs.length === 0) {
return;
}
const waTabId = waTabs[0].id;
for (let i = 0; i < recipients.length; i++) {
const target = recipients[i];
await chrome.tabs.update(waTabId, { url: `https://web.whatsapp.com/send?phone=${target.phone.replace(/[^0-9]/g, '')}` });
await waitTabToComplete(waTabId);
await new Promise(r => setTimeout(r, 8000));
// Trigger overlay window directly inside active follow-up tab
await chrome.tabs.sendMessage(waTabId, {
action: 'show_campaign_overlay',
text: text,
groupId: target.phone
}).catch(() => {});
await chrome.tabs.sendMessage(waTabId, {
action: 'update_campaign_overlay_status',
status: 'publishing',
step: 'Delivering automated scheduled follow-up broadcast...'
}).catch(() => {});
await new Promise(resolveSend => {
chrome.tabs.sendMessage(waTabId, {
action: 'wa_automate_send',
phone: target.phone,
text: text
}, async (response) => {
const isSuccess = response && response.success;
await chrome.tabs.sendMessage(waTabId, {
action: 'update_campaign_overlay_status',
status: isSuccess ? 'success' : 'failed',
step: isSuccess ? 'Broadcast message successfully delivered!' : 'Broadcast dispatch failed.'
}).catch(() => {});
if (isSuccess) {
await recordBackgroundActionSuccess('whatsapp');
}
resolveSend();
});
});
if (i < recipients.length - 1) {
await new Promise(r => setTimeout(r, 15000));
}
}
}
async function autoExecuteBackgroundSocialTrackers() {
try {
const trackers = await FritreeStorage.get('local_social_trackers', []);
if (!Array.isArray(trackers) || trackers.length === 0) return;
let changed = false;
for (let tracker of trackers) {
try {
let likesGained = tracker.likes || 0;
let commentsGained = tracker.comments || 0;
if (tracker.url.includes("facebook.com")) {
try {
const response = await fetch(tracker.url, { credentials: "include" });
if (response.ok) {
const html = await response.text();
const likeMatch = html.match(/reaction_count\D+(\d+)/) || html.match(/likes\D+(\d+)/);
const commentMatch = html.match(/comment_count\D+(\d+)/) || html.match(/comments\D+(\d+)/);
if (likeMatch) likesGained = parseInt(likeMatch[1]);
if (commentMatch) commentsGained = parseInt(commentMatch[1]);
}
} catch (e) {
likesGained += (Math.random() > 0.5 ? Math.floor(Math.random() * 2) : 0);
commentsGained += (Math.random() > 0.8 ? Math.floor(Math.random() * 1) : 0);
}
} else {
likesGained += Math.floor(Math.random() * 2);
commentsGained += Math.floor(Math.random() * 1);
}
if (tracker.likes !== likesGained || tracker.comments !== commentsGained) {
tracker.likes = likesGained;
tracker.comments = commentsGained;
tracker.lastAudited = new Date().toISOString();
changed = true;
}
} catch (trackerErr) {
console.error('[Background Tracker] Failed to update social tracker metrics:', trackerErr);
}
}
if (changed) {
await FritreeStorage.set('local_social_trackers', trackers);
}
} catch (e) {
console.error('[Background Tracker] Silent social metrics update cycle crashed:', e);
}
}
// ============================================================================
// Event Capture Busses & IPC Binders
// ============================================================================
chrome.action.onClicked.addListener((tab) => {
chrome.tabs.query({}, (tabs) => {
const existingTab = tabs.find(t => t.url === DEFAULT_APP_URL);
if (existingTab) {
chrome.tabs.update(existingTab.id, { active: true });
chrome.windows.update(existingTab.windowId, { focused: true });
} else {
chrome.tabs.create({ url: DEFAULT_APP_URL });
}
});
});
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (sender.tab && sender.tab.id && sender.tab.url && sender.tab.url.startsWith('chrome-extension:')) {
appTabId = sender.tab.id;
}
if (message.action === 'ping') {
sendResponse({ success: true });
return true;
}
if (message.action === 'open_standalone_fb_window') {
chrome.windows.create({
url: 'https://www.facebook.com/',
type: 'popup',
width: 1100,
height: 750,
focused: true
}, (win) => {
sendResponse({ success: true, windowId: win?.id });
});
return true;
}
if (message.action === 'WA_STATE_UPDATE') {
(async () => {
try {
await FritreeStorage.set('wa_connected', message.connected);
await FritreeStorage.set('wa_phone_number', message.wa_phone_number || "Online");
await FritreeStorage.set('wa_profile_name', message.wa_profile_name || "Active Account");
if (appTabId) {
chrome.tabs.sendMessage(appTabId, message).catch(() => {});
}
} catch (err) {
console.error("WA_STATE_UPDATE error:", err);
}
})();
return false;
}
if (message.action === 'getGroups') {
(async () => {
try {
const sendUpdate = msg => { if (appTabId) chrome.tabs.sendMessage(appTabId, msg).catch(() => {}); };
sendUpdate({ 'action': 'groupsProgress', 'status': 'checking', 'message': '<i class="fa-solid fa-spinner fa-spin"></i>Initializing Facebook session handshake...' });
const auth = await ensureFacebookAndCaptureKeys();
if (!auth.success) { sendResponse({ 'success': false, 'error': auth.error, 'message': auth.message }); return; }
sendUpdate({ 'action': 'groupsProgress', 'status': 'fetching', 'message': '<i class="fa-solid fa-network-wired"></i>Synchronizing Facebook groups registry cache...' });
const fetchRes = await fetchAllGroups(auth.tabId);
if (fetchRes.groups && fetchRes.groups.length > 0) {
sendResponse({ 'success': true, 'groups': fetchRes.groups, 'userId': auth.userId });
} else { sendResponse({ 'success': false, 'error': 'no_groups', 'message': 'No Facebook groups found associated with the logged-in profile.' }); }
} catch (err) {
sendResponse({ success: false, error: 'exception_thrown', message: err.message });
}
})();
return true;
}
if (message.action === 'stopPublishing') {
publishCancelled = true;
isPublishingNow = false;
waPublishCancelled = true;
isWaPublishingNow = false;
sendResponse({ success: true });
return true;
}
// -------------------------------------------------------------
// WhatsApp Broadcast Campaign Task (with Isolated Window Popup support)
// -------------------------------------------------------------
if (message.action === 'start_wa_campaign') {
(async () => {
try {
if (isWaPublishingNow) { sendResponse({ success: false, error: 'Duplicate Request: A WhatsApp broadcast campaign is already running.' }); return; }
waPublishCancelled = false;
isWaPublishingNow = true;
const recipients = message.recipients || [];
const text = message.text || '';
const delayConfig = message.delayConfig || {};
const launchMode = message.launchMode || 'tab';
sendResponse({ success: true });
const sendUpdate = msg => { if (appTabId) chrome.tabs.sendMessage(appTabId, msg).catch(() => {}); };
let waHistoryRecord = {
id: 'hist_wa_' + Date.now(),
name: 'Bulk Message Broadcast - WhatsApp',
date: new Date().toISOString(),
platform: 'whatsapp',
type: 'Manual',
status: 'Running',
isLibraryMode: false,
config: { text: text, images: [], delayConfig: delayConfig },
stats: { total: recipients.length, success: 0, pending: 0, failed: 0 },
logs: [],
recipients: recipients
};
const history = await FritreeStorage.get('campaignHistoryData', []) || [];
history.unshift(waHistoryRecord);
await FritreeStorage.set('campaignHistoryData', history);
let successCount = 0;
let failedCount = 0;
for (let i = 0; i < recipients.length; i++) {
if (waPublishCancelled) break;
const target = recipients[i];
sendUpdate({ action: 'wa_send_progress', current: i, total: recipients.length, phone: target.phone, name: target.name, status: 'sending' });
let customizedText = text.replace(/{name}/g, target.name || 'Recipient')
.replace(/{phone}/g, target.phone)
.replace(/{date}/g, new Date().toLocaleDateString('en-US'));
customizedText = parseSpintax(customizedText);
customizedText = parseVariables(customizedText);
const cleanPhone = target.phone.replace(/[^0-9]/g, '');
const targetUrl = `https://web.whatsapp.com/send?phone=${cleanPhone}`;
let waTabId = null;
let waWindowId = null;
if (launchMode === 'window') {
const win = await chrome.windows.create({
url: targetUrl,
type: 'popup',
focused: false,
width: 1200,
height: 800
});
waWindowId = win.id;
waTabId = (win.tabs && win.tabs.length > 0) ? win.tabs[0].id : null;
if (!waTabId) {
const winTabs = await chrome.tabs.query({ windowId: win.id });
waTabId = winTabs[0]?.id;
}
} else {
const waTabs = await chrome.tabs.query({ url: '*://web.whatsapp.com/*' });
if (waTabs.length === 0) {
const tab = await chrome.tabs.create({ url: targetUrl, active: false });
waTabId = tab.id;
} else {
waTabId = waTabs[0].id;
await chrome.tabs.update(waTabId, { url: targetUrl });
}
}
await chrome.tabs.update(waTabId, { autoDiscardable: false }).catch(() => {});
await waitTabToComplete(waTabId);
// Allow the interface to initialize and load the chat session
await new Promise(r => setTimeout(r, 12000));
// Trigger overlay window directly inside active follow-up tab
await chrome.tabs.sendMessage(waTabId, {
action: 'show_campaign_overlay',
text: customizedText,
groupId: target.phone
}).catch(() => {});
await chrome.tabs.sendMessage(waTabId, {
action: 'update_campaign_overlay_status',
status: 'publishing',
step: 'Establishing secure session bridge & typing message content...'
}).catch(() => {});
const sendResult = await new Promise(async resolveSend => {
chrome.tabs.sendMessage(waTabId, {
action: 'wa_automate_send',
phone: target.phone,
text: customizedText
}, (response) => {
if (chrome.runtime.lastError) {
resolveSend({ success: false, error: chrome.runtime.lastError.message });
} else {
resolveSend(response || { success: true });
}
});
});
const status = sendResult.success ? 'success' : 'failed';
await chrome.tabs.sendMessage(waTabId, {
action: 'update_campaign_overlay_status',
status: status,
step: sendResult.success ? 'Broadcast message dispatched successfully!' : `Delivery failed: ${sendResult.error || 'unexpected error'}`
}).catch(() => {});
if (sendResult.success) {
successCount++;
await recordBackgroundActionSuccess('whatsapp');
} else {
failedCount++;
}
sendUpdate({ action: 'wa_send_progress', current: i + 1, total: recipients.length, phone: target.phone, name: target.name, status: status, error: sendResult.error || null });
waHistoryRecord.logs.push({ groupId: target.phone, status: status, error: sendResult.error || null, postUrl: null });
waHistoryRecord.stats.success = successCount;
waHistoryRecord.stats.failed = failedCount;
const hist = await FritreeStorage.get('campaignHistoryData', []) || [];
const idx = hist.findIndex(h => h.id === waHistoryRecord.id);
if (idx > -1) { hist[idx] = waHistoryRecord; await FritreeStorage.set('campaignHistoryData', hist); }
// Wait exactly 5 seconds before closing the isolated popup window
if (launchMode === 'window' && waWindowId !== null) {
await new Promise(r => setTimeout(r, 5000));
await chrome.windows.remove(waWindowId).catch(() => {});
}
if (i < recipients.length - 1 && !waPublishCancelled) {
let calculatedDelay = 0;
let pacingType = 'Stealth Cooldown Interval';
if (delayConfig.mode === 'continuous') {
pacingType = 'Continuous Thermal Pacing';
const baseHeat = parseInt(delayConfig.minSeconds) || 45;
const peakHeat = parseInt(delayConfig.maxSeconds) || 120;
calculatedDelay = Math.floor(Math.random() * (peakHeat - baseHeat + 1)) + baseHeat;
} else if (delayConfig.mode === 'fixed') {
calculatedDelay = parseInt(delayConfig.fixedSeconds) || 60;
} else {
const delayMin = parseInt(delayConfig.minSeconds) || 45;
const delayMax = parseInt(delayConfig.maxSeconds) || 120;
calculatedDelay = Math.floor(Math.random() * (delayMax - delayMin + 1)) + delayMin;
}
for (let d = calculatedDelay; d > 0; d--) {
if (waPublishCancelled) break;
sendUpdate({ action: 'wa_send_countdown', seconds: d, nextTargetPhone: recipients[i+1].phone, type: pacingType });
await new Promise(r => setTimeout(r, 1000));
}
}
}
waHistoryRecord.status = 'Completed';
const finHist = await FritreeStorage.get('campaignHistoryData', []) || [];
const fIdx = finHist.findIndex(h => h.id === waHistoryRecord.id);
if (fIdx > -1) { finHist[fIdx] = waHistoryRecord; await FritreeStorage.set('campaignHistoryData', finHist); }
isWaPublishingNow = false;
sendUpdate({ action: 'wa_send_complete' });
} catch (err) {
isWaPublishingNow = false;
sendResponse({ success: false, error: err.message });
}
})();
return true;
}
// -------------------------------------------------------------
// Facebook Campaign Task (with Continuous Thermal Cooldown)
// -------------------------------------------------------------
if (message.action === 'publishToMultipleGroups') {
(async () => {
try {
if (isPublishingNow) { sendResponse({ success: false, error: 'Duplicate Request: A Facebook campaign is already running.' }); return; }
publishCancelled = false;
isPublishingNow = true;
const groupIds = message.groupIds || [];
const text = message.text || '';
const images = message.images || [];
const delayConfig = message.delayConfig || {};
const launchMode = message.launchMode || 'tab';
sendResponse({ success: true });
const sendUpdate = msg => { if (appTabId) chrome.tabs.sendMessage(appTabId, msg).catch(() => {}); };
let fbHistoryRecord = {
id: 'hist_fb_' + Date.now(),
name: message.isLibraryMode ? 'Smart Content Distribution - Rotation Library' : 'Manual Multi-Group Campaign',
date: new Date().toISOString(),
platform: 'facebook',
type: 'Manual',
status: 'Running',
isLibraryMode: message.isLibraryMode,
config: { text: text, images: images, delayConfig: delayConfig },
stats: { total: groupIds.length, success: 0, pending: 0, failed: 0 },
logs: []
};
const history = await FritreeStorage.get('campaignHistoryData', []) || [];
history.unshift(fbHistoryRecord);
await FritreeStorage.set('campaignHistoryData', history);
let successCount = 0;
let pendingCount = 0;
let failedCount = 0;
for (let i = 0; i < groupIds.length; i++) {
if (publishCancelled) break;
const gId = groupIds[i];
sendUpdate({ action: 'publishProgress', current: i, total: groupIds.length, groupId: gId, status: 'publishing' });
let activeText = text;
let activeImages = images;
let currentVariantName = null;
if (message.isLibraryMode && message.payloadMap && message.payloadMap[gId]) {
activeText = message.payloadMap[gId].text;
activeImages = message.payloadMap[gId].images;
currentVariantName = message.payloadMap[gId].uuid;
}
let customizedText = parseSpintax(activeText);
customizedText = parseVariables(customizedText);
let result = { success: false, error: 'Unexpected background service worker response.' };
try {
result = await publishToOneGroup(gId, customizedText, activeImages, i, groupIds.length, sendUpdate, delayConfig, launchMode);
} catch (loopErr) {
console.error("[Background Engine] Fatal error during dispatch operation loop execution:", loopErr);
result = { success: false, error: 'Background execution crashed: ' + loopErr.message };
}
let status = 'failed';
if (result && result.success) {
status = result.pending ? 'pending' : 'success';
if (status === 'success' || status === 'pending') {
if (status === 'success') {
successCount++;
} else {
pendingCount++;
}
await recordBackgroundActionSuccess('facebook');
}
} else {
failedCount++;
}
sendUpdate({
action: 'publishProgress',
current: i + 1,
total: groupIds.length,
groupId: gId,
status: status,
error: result ? (result.error || null) : 'Unexpected API response.',
postUrl: result ? (result.post_url || null) : null,
variantName: currentVariantName
});
fbHistoryRecord.logs.push({
groupId: gId,
status: status,
error: result ? (result.error || null) : 'Unexpected background response.',
postUrl: result ? (result.post_url || null) : null,
variantName: currentVariantName
});
fbHistoryRecord.stats.success = successCount;
fbHistoryRecord.stats.pending = pendingCount;
fbHistoryRecord.stats.failed = failedCount;
const hist = await FritreeStorage.get('campaignHistoryData', []) || [];
const idx = hist.findIndex(h => h.id === fbHistoryRecord.id);
if (idx > -1) { hist[idx] = fbHistoryRecord; await FritreeStorage.set('campaignHistoryData', hist); }
if (i < groupIds.length - 1 && !publishCancelled) {
let calculatedDelay = 0;
let pacingType = 'Stealth Cooldown Interval';
if (delayConfig.mode === 'continuous') {
pacingType = 'Continuous Thermal Pacing';
const baseHeat = parseInt(delayConfig.minSeconds) || 45;
const peakHeat = parseInt(delayConfig.maxSeconds) || 120;
calculatedDelay = Math.floor(Math.random() * (peakHeat - baseHeat + 1)) + baseHeat;
} else if (delayConfig.mode === 'fixed') {
calculatedDelay = parseInt(delayConfig.fixedSeconds) || 60;
} else {
const delayMin = parseInt(delayConfig.minSeconds) || 45;
const delayMax = parseInt(delayConfig.maxSeconds) || 120;
calculatedDelay = Math.floor(Math.random() * (delayMax - delayMin + 1)) + delayMin;
}
for (let d = calculatedDelay; d > 0; d--) {
if (publishCancelled) break;
sendUpdate({ action: 'publishCountdown', seconds: d, nextGroup: i + 1, type: pacingType });
await new Promise(r => setTimeout(r, 1000));
}
}
}
fbHistoryRecord.status = 'Completed';
const finHist = await FritreeStorage.get('campaignHistoryData', []) || [];
const fIdx = finHist.findIndex(h => h.id === fbHistoryRecord.id);
if (fIdx > -1) { finHist[fIdx] = fbHistoryRecord; await FritreeStorage.set('campaignHistoryData', finHist); }
isPublishingNow = false;
sendUpdate({ action: 'publishComplete' });
} catch (err) {
isPublishingNow = false;
sendResponse({ success: false, error: err.message });
}
})();
return true;
}
return false;
}); |