-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
412 lines (371 loc) · 13.1 KB
/
background.js
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
console.log("Background script loaded");
self.oninstall = (event) => {
console.log("Extension installed");
};
self.onactivate = (event) => {
console.log("Extension activated");
};
function prefetchShortcuts() {
console.log("Attempting to prefetch shortcuts...");
return new Promise((resolve, reject) => {
chrome.storage.local.get(["token", "user_id"], ({ token, user_id }) => {
console.log("Storage data for prefetch:", { token: !!token, user_id });
if (token && user_id) {
const url = `https://shortcuts.advokati-bg.com:3222/getShortcuts/${user_id}`;
console.log("Prefetch URL:", url);
fetch(url, {
method: "GET",
headers: {
Authorization: `Bearer ${token}`,
},
})
.then((response) => {
console.log("Prefetch response status:", response.status);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then((data) => {
console.log("Prefetch data received:", data);
chrome.storage.local.set({ cachedShortcuts: data }, () => {
chrome.tabs.query({}, (tabs) => {
const notifyPromises = tabs.map((tab) =>
chrome.tabs
.sendMessage(tab.id, {
action: "shortcutsUpdated",
shortcuts: data,
})
.catch(() => {})
);
Promise.all(notifyPromises).then(() => resolve(data));
});
});
})
.catch((error) => {
console.error("Prefetch error details:", error);
reject(error);
});
} else {
console.log("Prefetch skipped - missing token or user_id");
reject(new Error("Missing token or user_id"));
}
});
});
}
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log("Message received in background with action:", request?.action);
console.log("Full message details:", request);
if (request.action === "login") {
console.log("Processing login request...");
console.log("Login credentials:", {
username: request.credentials.username,
passwordLength: request.credentials.password?.length,
});
// First, try to check server availability
console.log("Testing server connection...");
fetch("https://shortcuts.advokati-bg.com:3222/", {
method: "GET",
mode: "no-cors", // Try with no-cors first
})
.then(() => {
console.log("Server is reachable, proceeding with login");
return fetch("https://shortcuts.advokati-bg.com:3222/login", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(request.credentials),
});
})
.then((response) => {
console.log("Login response received:", response.status);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then((data) => {
console.log("Login successful:", data);
if (data.token && data.user_id) {
// Check for both token and user_id
chrome.storage.local.set(
{
token: data.token,
user_id: data.user_id, // Use the user_id from the server response
},
() => {
sendResponse({
success: true,
token: data.token,
user_id: data.user_id,
});
prefetchShortcuts();
}
);
} else {
sendResponse({
success: false,
error: "Invalid server response: missing token or user_id",
});
}
})
.catch((error) => {
console.error("Login error:", error);
sendResponse({ success: false, error: error.message });
});
return true;
}
if (request.action === "getShortcuts") {
console.log("Processing getShortcuts request");
chrome.storage.local.get(["token", "user_id"], ({ token, user_id }) => {
console.log("Retrieved storage data:", { hasToken: !!token, user_id });
if (!token || !user_id) {
console.log("Not authenticated");
sendResponse({ success: false, error: "Not authenticated" });
return;
}
fetch(`https://shortcuts.advokati-bg.com:3222/getShortcuts/${user_id}`, {
headers: {
Authorization: `Bearer ${token}`,
},
})
.then(async (response) => {
console.log("Get shortcuts response status:", response.status);
if (!response.ok) {
const errorText = await response.text();
console.error("Get shortcuts error response:", errorText);
throw new Error(`Failed to get shortcuts: ${response.status}`);
}
return response.json();
})
.then((data) => {
console.log("Retrieved shortcuts:", data);
chrome.storage.local.set({ cachedShortcuts: data });
sendResponse({ success: true, data });
})
.catch((error) => {
console.error("Get shortcuts error:", error);
sendResponse({
success: false,
error: error.message || "Failed to get shortcuts",
});
});
});
return true;
}
if (request.action === "register") {
console.log("Processing registration request...");
const API_URL = "https://shortcuts.advokati-bg.com:3222";
const fetchOptions = {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(request.userData),
};
// Direct registration without test endpoint
fetch(`${API_URL}/register`, fetchOptions)
.then(async (response) => {
console.log("Registration response status:", response.status);
if (!response.ok) {
const errorText = await response.text();
console.error("Registration error response:", errorText);
throw new Error(`Registration failed: ${response.status}`);
}
return response.json();
})
.then((data) => {
console.log("Registration successful:", data);
if (data.token && data.user_id) {
chrome.storage.local.set(
{
token: data.token,
user_id: data.user_id,
},
() => {
sendResponse({
success: true,
token: data.token,
user_id: data.user_id,
});
}
);
} else {
throw new Error("Invalid response format");
}
})
.catch((error) => {
console.error("Registration error:", error);
sendResponse({
success: false,
error: error.message || "Registration failed",
});
});
return true;
}
if (request.action === "addShortcut") {
console.log("Processing addShortcut request:", request.shortcutData);
chrome.storage.local.get(["token", "user_id"], ({ token, user_id }) => {
if (!token || !user_id) {
console.log("Authentication missing:", { token: !!token, user_id });
sendResponse({ success: false, error: "Not authenticated" });
return;
}
const shortcutData = {
...request.shortcutData,
user_id: user_id,
};
console.log("Sending shortcut data:", shortcutData);
fetch("https://shortcuts.advokati-bg.com:3222/addShortcut", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${token}`,
},
body: JSON.stringify(shortcutData),
})
.then(async (response) => {
console.log("Add shortcut response status:", response.status);
if (!response.ok) {
const errorText = await response.text();
console.error("Add shortcut error response:", errorText);
throw new Error(`Failed to add shortcut: ${response.status}`);
}
return response.json();
})
.then((data) => {
console.log("Shortcut added successfully:", data);
// Refresh shortcuts after adding
prefetchShortcuts()
.then(() => {
sendResponse({ success: true, data });
})
.catch((error) => {
console.error("Error refreshing shortcuts:", error);
sendResponse({ success: true, data }); // Still return success even if refresh fails
});
})
.catch((error) => {
console.error("Add shortcut error:", error);
sendResponse({
success: false,
error: error.message || "Failed to add shortcut",
});
});
});
return true;
}
if (request.action === "updateShortcut") {
console.log("Processing update request:", request.shortcutData);
chrome.storage.local.get(["token", "user_id"], ({ token, user_id }) => {
if (!token || !user_id) {
console.log("Authentication missing:", { token: !!token, user_id });
sendResponse({ success: false, error: "Not authenticated" });
return;
}
const shortcutData = {
...request.shortcutData,
user_id: user_id,
};
console.log("Sending update request with data:", shortcutData);
fetch("https://shortcuts.advokati-bg.com:3222/updateShortcut", {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${token}`,
},
body: JSON.stringify(shortcutData),
})
.then(async (response) => {
const text = await response.text();
console.log("Raw response:", text);
if (!response.ok) {
throw new Error(
`HTTP error! status: ${response.status}, response: ${text}`
);
}
let data;
try {
data = JSON.parse(text);
} catch (e) {
console.error("Response parsing error:", e);
throw new Error("Invalid server response");
}
return data;
})
.then((data) => {
console.log("Update successful:", data);
if (data.shortcuts) {
// Update local cache with the new shortcuts
chrome.storage.local.set({ cachedShortcuts: data.shortcuts });
// Notify all tabs
chrome.tabs.query({}, (tabs) => {
tabs.forEach((tab) => {
chrome.tabs
.sendMessage(tab.id, {
action: "shortcutsUpdated",
shortcuts: data.shortcuts,
})
.catch(() => {});
});
});
}
sendResponse({ success: true, data: data.shortcuts || data });
})
.catch((error) => {
console.error("Update error:", error);
sendResponse({
success: false,
error: error.message || "Failed to update shortcut",
});
});
});
return true;
}
if (request.action === "deleteShortcut") {
chrome.storage.local.get(["token", "user_id"], ({ token, user_id }) => {
if (!token || !user_id) {
sendResponse({ success: false, error: "Not authenticated" });
return;
}
fetch(
`https://shortcuts.advokati-bg.com:3222/deleteShortcut/${request.shortcutId}?user_id=${user_id}`,
{
method: "DELETE",
headers: {
Authorization: `Bearer ${token}`,
},
}
)
.then(async (response) => {
console.log("Delete shortcut response status:", response.status);
if (!response.ok) {
const errorText = await response.text();
console.error("Delete shortcut error response:", errorText);
throw new Error(`Failed to delete shortcut: ${response.status}`);
}
return response.json();
})
.then((data) => {
console.log("Delete successful:", data);
prefetchShortcuts()
.then(() => {
sendResponse({ success: true, data });
})
.catch((error) => {
console.error("Error refreshing shortcuts after delete:", error);
sendResponse({ success: true, data }); // Still return success even if refresh fails
});
})
.catch((error) => {
console.error("Delete error:", error);
sendResponse({
success: false,
error: error.message || "Failed to delete shortcut",
});
});
});
return true;
}
});