-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
425 lines (360 loc) · 10.9 KB
/
background.js
File metadata and controls
425 lines (360 loc) · 10.9 KB
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
const DEFAULT_CONFIG = {
serverUrl: "https://api.generalbots.com",
gbServerUrl: "https://api.pragmatismo.com.br",
enableProcessing: true,
hideContacts: false,
autoMode: false,
grammarCorrection: true,
whatsappNumber: "",
authToken: "",
instanceId: "",
};
chrome.runtime.onInstalled.addListener(async (details) => {
console.log("General Bots: Extension installed/updated", details.reason);
const existing = await chrome.storage.sync.get(DEFAULT_CONFIG);
await chrome.storage.sync.set({ ...DEFAULT_CONFIG, ...existing });
chrome.contextMenus?.create({
id: "gb-correct-grammar",
title: "Correct Grammar with AI",
contexts: ["selection"],
});
chrome.contextMenus?.create({
id: "gb-translate",
title: "Translate with AI",
contexts: ["selection"],
});
});
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (
changeInfo.status === "complete" &&
tab.url?.includes("web.whatsapp.com")
) {
console.log("General Bots: WhatsApp Web detected, initializing...");
chrome.tabs.sendMessage(tabId, { action: "tabReady" }).catch(() => {});
checkAutoAuth(tabId);
}
});
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
console.log("General Bots: Received message", message.action);
switch (message.action) {
case "processText":
handleProcessText(message.text, message.options)
.then(sendResponse)
.catch((err) => sendResponse({ error: err.message }));
return true;
case "correctGrammar":
handleGrammarCorrection(message.text)
.then(sendResponse)
.catch((err) => sendResponse({ error: err.message }));
return true;
case "authenticate":
handleAuthentication(message.whatsappNumber)
.then(sendResponse)
.catch((err) => sendResponse({ error: err.message }));
return true;
case "getAuthStatus":
getAuthStatus()
.then(sendResponse)
.catch((err) => sendResponse({ error: err.message }));
return true;
case "generateAutoReply":
handleAutoReply(message.context, message.lastMessages)
.then(sendResponse)
.catch((err) => sendResponse({ error: err.message }));
return true;
case "getSettings":
chrome.storage.sync.get(DEFAULT_CONFIG).then(sendResponse);
return true;
case "saveSettings":
chrome.storage.sync.set(message.settings).then(() => {
broadcastSettingsUpdate(message.settings);
sendResponse({ success: true });
});
return true;
case "showNotification":
showNotification(message.title, message.message, message.type);
sendResponse({ success: true });
return false;
}
return false;
});
chrome.contextMenus?.onClicked.addListener(async (info, tab) => {
if (!info.selectionText) return;
switch (info.menuItemId) {
case "gb-correct-grammar":
const corrected = await handleGrammarCorrection(info.selectionText);
if (corrected.processedText && tab?.id) {
chrome.tabs.sendMessage(tab.id, {
action: "replaceSelection",
text: corrected.processedText,
});
}
break;
case "gb-translate":
break;
}
});
async function handleProcessText(text, options = {}) {
const settings = await chrome.storage.sync.get(DEFAULT_CONFIG);
if (!settings.enableProcessing) {
return { processedText: text, changed: false };
}
try {
const response = await fetch(`${settings.serverUrl}/api/v1/llm/process`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${settings.authToken}`,
},
body: JSON.stringify({
text,
instanceId: settings.instanceId,
options: {
grammarCorrection: settings.grammarCorrection,
...options,
},
}),
});
if (!response.ok) {
throw new Error(`Server error: ${response.status}`);
}
const data = await response.json();
return {
processedText: data.processedText || text,
changed: data.processedText !== text,
corrections: data.corrections || [],
};
} catch (error) {
console.error("General Bots: Process text error", error);
return { processedText: text, changed: false, error: error.message };
}
}
async function handleGrammarCorrection(text) {
const settings = await chrome.storage.sync.get(DEFAULT_CONFIG);
try {
const response = await fetch(`${settings.serverUrl}/api/v1/llm/grammar`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${settings.authToken}`,
},
body: JSON.stringify({
text,
instanceId: settings.instanceId,
language: "auto",
}),
});
if (!response.ok) {
throw new Error(`Server error: ${response.status}`);
}
const data = await response.json();
return {
processedText: data.correctedText || text,
original: text,
corrections: data.corrections || [],
language: data.detectedLanguage,
};
} catch (error) {
console.error("General Bots: Grammar correction error", error);
return { processedText: text, error: error.message };
}
}
async function handleAutoReply(context, lastMessages = []) {
const settings = await chrome.storage.sync.get(DEFAULT_CONFIG);
if (!settings.autoMode) {
return { reply: null, autoModeDisabled: true };
}
try {
const response = await fetch(
`${settings.serverUrl}/api/v1/llm/auto-reply`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${settings.authToken}`,
},
body: JSON.stringify({
context,
lastMessages,
instanceId: settings.instanceId,
whatsappNumber: settings.whatsappNumber,
}),
},
);
if (!response.ok) {
throw new Error(`Server error: ${response.status}`);
}
const data = await response.json();
return {
reply: data.suggestedReply,
confidence: data.confidence,
autoSend: data.autoSend && settings.autoMode,
};
} catch (error) {
console.error("General Bots: Auto-reply error", error);
return { reply: null, error: error.message };
}
}
async function handleAuthentication(whatsappNumber) {
const settings = await chrome.storage.sync.get(DEFAULT_CONFIG);
try {
const response = await fetch(
`${settings.gbServerUrl}/api/v1/auth/whatsapp/request`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
whatsappNumber,
extensionId: chrome.runtime.id,
timestamp: Date.now(),
}),
},
);
if (!response.ok) {
throw new Error(`Authentication request failed: ${response.status}`);
}
const data = await response.json();
await chrome.storage.sync.set({
whatsappNumber,
authPending: true,
authRequestId: data.requestId,
});
showNotification(
"Authentication Requested",
"Check your WhatsApp for a message from General Bots to complete authentication.",
"info",
);
pollAuthCompletion(data.requestId);
return { success: true, requestId: data.requestId };
} catch (error) {
console.error("General Bots: Authentication error", error);
return { success: false, error: error.message };
}
}
async function pollAuthCompletion(requestId, attempts = 0) {
if (attempts > 60) {
await chrome.storage.sync.set({ authPending: false });
showNotification("Authentication Timeout", "Please try again.", "error");
return;
}
const settings = await chrome.storage.sync.get(DEFAULT_CONFIG);
try {
const response = await fetch(
`${settings.gbServerUrl}/api/v1/auth/whatsapp/status/${requestId}`,
);
if (response.ok) {
const data = await response.json();
if (data.status === "completed") {
await chrome.storage.sync.set({
authToken: data.token,
instanceId: data.instanceId,
authPending: false,
authenticated: true,
});
showNotification(
"Authentication Complete",
"You are now connected to General Bots!",
"success",
);
broadcastSettingsUpdate({ authenticated: true });
return;
} else if (data.status === "failed") {
await chrome.storage.sync.set({ authPending: false });
showNotification(
"Authentication Failed",
data.message || "Please try again.",
"error",
);
return;
}
}
} catch (error) {
console.error("General Bots: Poll auth error", error);
}
setTimeout(() => pollAuthCompletion(requestId, attempts + 1), 5000);
}
async function getAuthStatus() {
const settings = await chrome.storage.sync.get([
"authToken",
"authenticated",
"whatsappNumber",
"instanceId",
]);
if (!settings.authToken) {
return { authenticated: false };
}
try {
const response = await fetch(
`${DEFAULT_CONFIG.gbServerUrl}/api/v1/auth/verify`,
{
headers: {
Authorization: `Bearer ${settings.authToken}`,
},
},
);
if (response.ok) {
return {
authenticated: true,
whatsappNumber: settings.whatsappNumber,
instanceId: settings.instanceId,
};
}
} catch (error) {
console.error("General Bots: Verify auth error", error);
}
await chrome.storage.sync.set({
authToken: "",
authenticated: false,
});
return { authenticated: false };
}
async function checkAutoAuth(tabId) {
const settings = await chrome.storage.sync.get([
"authenticated",
"autoMode",
"whatsappNumber",
]);
if (settings.authenticated && settings.autoMode) {
setTimeout(() => {
chrome.tabs
.sendMessage(tabId, {
action: "enableAutoMode",
whatsappNumber: settings.whatsappNumber,
})
.catch(() => {});
}, 2000);
}
}
async function broadcastSettingsUpdate(settings) {
const tabs = await chrome.tabs.query({ url: "https://web.whatsapp.com/*" });
for (const tab of tabs) {
chrome.tabs
.sendMessage(tab.id, {
action: "settingsUpdated",
settings,
})
.catch(() => {});
}
}
function showNotification(title, message, type = "info") {
const iconPath = type === "error" ? "icons/icon48.png" : "icons/icon48.png";
chrome.notifications?.create({
type: "basic",
iconUrl: iconPath,
title: `General Bots - ${title}`,
message: message,
priority: type === "error" ? 2 : 1,
});
}
chrome.alarms?.create("checkAuth", { periodInMinutes: 30 });
chrome.alarms?.onAlarm.addListener(async (alarm) => {
if (alarm.name === "checkAuth") {
const status = await getAuthStatus();
if (!status.authenticated) {
console.log("General Bots: Auth token expired or invalid");
}
}
});
console.log("General Bots: Background service worker initialized");