-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
413 lines (328 loc) · 12.6 KB
/
background.js
File metadata and controls
413 lines (328 loc) · 12.6 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
import { KEY } from "./config.js";
import "./libs/pdf/pdf.mjs";
pdfjsLib.GlobalWorkerOptions.workerSrc = chrome.runtime.getURL("libs/pdf/pdf.worker.mjs");
async function detectGDPRFromIP() {
try {
console.log("Starting IP detection (ipinfo.io)...");
const response = await fetch("https://ipinfo.io/json", {
cache: "no-store"
});
const data = await response.json();
const countryCode = data.country || "Unknown";
console.log("[Location] Country Code:", countryCode);
const gdprCountries = [
"AT","BE","BG","HR","CY","CZ","DK","EE","FI","FR",
"DE","GR","HU","IE","IT","LV","LT","LU","MT","NL",
"PL","PT","RO","SK","SI","ES","SE"
];
const applies = gdprCountries.includes(countryCode);
await chrome.storage.local.set({
userCountry: countryCode,
userCountryName: data.country,
gdprApplies: applies,
lastLocationCheck: Date.now()
});
console.log("Location stored successfully.");
} catch (err) {
console.error("[Location] Detection failed:", err);
}
}
async function loadLawText(countryCode) {
try {
const fileMap = {
QA: "laws/Qatar.pdf",
SA: "laws/Saudi.pdf",
BH: "laws/Bahrain.pdf",
JO: "laws/Jordan.pdf",
AE: "laws/UAE.pdf",
ES: "laws/GDPR.pdf"
};
const filePath = fileMap[countryCode];
if (!filePath) return "";
const response = await fetch(chrome.runtime.getURL(filePath));
const arrayBuffer = await response.arrayBuffer();
const pdf = await pdfjsLib.getDocument({ data: arrayBuffer }).promise;
let fullText = "";
for (let i = 1; i <= pdf.numPages; i++) {
const page = await pdf.getPage(i);
const content = await page.getTextContent();
const strings = content.items.map(item => item.str);
fullText += strings.join(" ") + " ";
}
return fullText;
} catch (err) {
console.error("Law loading failed:", err);
return "";
}
}
let personalizationConfigCache = null;
function loadPersonalizationConfig() {
if (personalizationConfigCache) {
return Promise.resolve(personalizationConfigCache);
}
const url = chrome.runtime.getURL("runtime_personalization.json");
return fetch(url)
.then(response => {
if (!response.ok) {
throw new Error(`Could not load runtime_personalization.json: ${response.status}`);
}
return response.json();
})
.then(data => {
personalizationConfigCache = data;
return data;
})
.catch(() => null);
}
function normalizeQuestions(userQA) {
if (!Array.isArray(userQA)) return [];
return userQA
.filter(q => typeof q === "string" && q.trim().length > 0)
.map(q => q.trim().toLowerCase());
}
function inferConcernFromConfig(userQA, config) {
const questions = normalizeQuestions(userQA);
const combined = questions.join(" ");
if (!combined || !config?.profiles) return "general_privacy";
let bestConcern = "general_privacy";
let bestScore = 0;
for (const [concern, profile] of Object.entries(config.profiles)) {
const keywords = profile.keywords || [];
let score = 0;
for (const keyword of keywords) {
if (combined.includes(String(keyword).toLowerCase())) {
score++;
}
}
if (score > bestScore) {
bestScore = score;
bestConcern = concern;
}
}
return bestConcern;
}
function getRecommendationFromConfig(concern, config, userQA) {
const selected = config?.profiles?.[concern] || null;
if (!selected) return null;
return {
focusLabel: selected.focus_label || concern,
recommendation: selected.recommendation || "",
latestQuestion: userQA[userQA.length - 1] || ""
};
}
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === "detectGDPR") {
detectGDPRFromIP();
sendResponse({ status: "started" });
return true;
}
if (request.action === "forceLocationCheck") {
(async () => {
await detectGDPRFromIP();
const data = await chrome.storage.local.get(["userCountry", "gdprApplies"]);
sendResponse(data);
})();
return true;
}
// Handle message requests from popup.js
if (request.action === "processText") {
(async () => {
try {
await detectGDPRFromIP();
const data = await chrome.storage.local.get(["userCountry"]);
const country = data.userCountry;
const lawText = await loadLawText(country);
const userQA = request.userQA || [];
const config = await loadPersonalizationConfig();
let personalization = null;
if (userQA.length > 0 && config) {
const inferredConcern = inferConcernFromConfig(userQA, config);
personalization = getRecommendationFromConfig(inferredConcern, config, userQA);
}
let prompt = `
You are a legal AI assistant.
The following is the official data protection law applicable in the user's country (${country}):
${lawText.slice(0, 6000)}
Now simplify the following privacy policy.
Instructions:
- Simplify to 10th-grade level.
- Keep legal meaning accurate.
- Align explanation with the applicable national data protection law.
- Use short paragraphs.
- Use clear bullet points.
- Do NOT omit important legal information.
- Make the explanation easy to understand.
- Output language: ${request.language === "ar" ? "Modern Standard Arabic" : "English"}.
`;
if (personalization && personalization.recommendation) {
prompt += `
The user previously asked:
"${personalization.latestQuestion}"
Their likely main concern:
${personalization.focusLabel}
Use this guidance:
${personalization.recommendation}
IMPORTANT LEGAL REQUIREMENT:
- You MUST maintain alignment with the national data protection law.
- You MUST reference specific article numbers where relevant.
- Legal contextualization must NOT be removed due to personalization.
Structure:
1) Provide the legally aligned simplified summary first.
2) Then add a clearly visible section titled "Personalized Recommendations".
3) The personalized section must support the legal rights mentioned above.
`;
}
prompt += `
Privacy Policy:
${request.text}
`;
const response = await fetch("https://api.openai.com/v1/chat/completions", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${KEY}`,
},
body: JSON.stringify({
model: "gpt-4.1-mini",
messages: [
{
role: "system",
content: "You simplify privacy policies, ensure legal alignment, and personalize responses when relevant."
},
{
role: "user",
content: prompt
}
],
temperature: 0.6,
max_tokens: 1500,
})
});
const result = await response.json();
if (result.error) {
sendResponse({ summary: result.error.message });
return;
}
const simplifiedText =
result.choices?.[0]?.message?.content ||
"Unexpected API response format.";
sendResponse({ summary: simplifiedText });
if (request.deliveryMode === "audio") {
const utterance = new SpeechSynthesisUtterance(simplifiedText);
utterance.lang = request.language === "ar" ? "ar-SA" : "en-US";
speechSynthesis.speak(utterance);
}
} catch (err) {
console.error("ProcessText Error:", err);
sendResponse({ summary: "Error generating response." });
}
})();
return true;
}
// Handle question and answer based on privacy policy
if (request.action === "askQuestion") {
(async () => {
try {
const data = await new Promise(resolve =>
chrome.storage.local.get(["userCountry"], resolve)
);
const country = data.userCountry;
const lawText = await loadLawText(country);
const policyText = request.policyText || "";
const prompt = `
You are a legal AI assistant.
The following is the official data protection law applicable in the user's country (${country}):
${lawText.slice(0, 4000)}
Below is the privacy policy text:
${policyText}
Now answer the user's question.
IMPORTANT:
- You MUST use the provided privacy policy text.
- You MUST reference the specific article number(s) from the national data protection law when relevant.
- If applicable, explicitly mention the article number.
- Do NOT ask the user to provide the policy again.
- Assume the policy above is complete.
User Question:
${request.question}
`;
const response = await fetch("https://api.openai.com/v1/chat/completions", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${KEY}`
},
body: JSON.stringify({
model: "gpt-4.1-mini",
messages: [
{
role: "system",
content: "You answer privacy questions and reference exact legal articles when applicable."
},
{
role: "user",
content: prompt
}
],
temperature: 0.4,
max_tokens: 1000
})
});
const result = await response.json();
sendResponse({
answer: result.choices?.[0]?.message?.content || "Sorry, I couldn’t generate a response."
});
} catch (err) {
console.error("Q&A Error:", err);
sendResponse({ answer: "There was an error generating the answer." });
}
})();
return true;
}
});
// Translation Function to Arabic (Optimized)
function translateToArabic(text, sendResponse) {
// Using OpenAI's GPT model for translation
const prompt = `
You are a translation assistant. Translate the following text into Arabic while keeping the meaning accurate:
Text:
${text}
`;
fetch("https://api.openai.com/v1/chat/completions", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${KEY}`,
},
body: JSON.stringify({
model: "gpt-4.1-mini",
messages: [
{ "role": "system", "content": "You are a translator that translates text from English to Arabic." },
{ "role": "user", "content": prompt },
],
temperature: 0.7,
max_tokens: 1500,
})
})
.then(response => response.json())
.then(data => {
if (data.error) {
console.error("Translation API Error:", data.error);
sendResponse({ summary: "Error: Unable to translate." });
return;
}
// Send the translated Arabic text
const arabicText = data.choices[0]?.message?.content || "Error: Unexpected API response format.";
sendResponse({ summary: arabicText });
})
.catch(error => {
console.error("Translation Error:", error);
sendResponse({ summary: "Error: Unable to translate." });
});
}
;
chrome.runtime.onInstalled.addListener(() => {
detectGDPRFromIP();
});
chrome.runtime.onStartup.addListener(() => {
detectGDPRFromIP();
});