Spaces:
Sleeping
Sleeping
File size: 11,053 Bytes
0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 0473fc1 682ea26 f4ccb3e 682ea26 f4ccb3e 682ea26 f4ccb3e 0473fc1 f4ccb3e 0473fc1 682ea26 | 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 | /**
* ClauseGuard β Background Service Worker v4.3
* FIXED v4.3: API_BASE now routes through the Netlify web app which has
* proper Gradio SSE polling logic. The old URL pointed at the Gradio Space
* directly, which doesn't expose a REST /api/analyze endpoint.
* FIXED v4.3: session_id from analyze response is now stored so chat can use it.
* FIXED v4.3: sidePanel.open() is properly awaited.
*/
// FIX v4.3: Route through the Netlify web app β it already has Gradio SSE
// polling in its /api/analyze route. The extension just needs a REST endpoint.
// Previously pointed to "https://gaurv007-clauseguard.hf.space" which is a
// Gradio Space that only exposes /gradio_api/call/analyze (SSE, not REST).
const API_BASE = "https://clauseguardweb.netlify.app";
const FREE_SCANS_PER_MONTH = 10;
const API_TIMEOUT_MS = 90000; // Increased to 90s β web route polls Gradio which can be slow
const SITE_ORIGINS = [
"https://clauseguardweb.netlify.app",
];
try { chrome.sidePanel.setPanelBehavior({ openPanelOnActionClick: false }); } catch(e) {}
// βββ Fetch with timeout βββ
async function fetchWithTimeout(url, options, timeoutMs) {
const controller = new AbortController();
const timer = setTimeout(() => controller.abort(), timeoutMs);
try {
const resp = await fetch(url, { ...options, signal: controller.signal });
clearTimeout(timer);
return resp;
} catch (err) { clearTimeout(timer); throw err; }
}
// βββ Message Router βββ
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
const handle = async () => {
switch (message.type) {
case "ANALYZE_TEXT": return await handleAnalyze(message.payload, sender.tab?.id);
case "GET_AUTH": return await getAuth();
case "GET_USER": return await getUser();
case "CHECK_USAGE": return await checkUsage();
case "OPEN_SIDEPANEL":
if (sender.tab?.id) {
try { await chrome.sidePanel.open({ tabId: sender.tab.id }); } catch(e) { console.warn("sidePanel.open failed:", e); }
}
return { ok: true };
case "GET_RESULTS": return await getStoredResults(sender.tab?.id || message.tabId);
case "SYNC_AUTH": return await syncAuthFromWebsite();
case "GET_SCAN_HISTORY": return await getScanHistory();
case "GET_SESSION_ID": return await getStoredSessionId(sender.tab?.id || message.tabId);
default: return null;
}
};
handle().then(sendResponse).catch(err => sendResponse({ error: err.message }));
return true;
});
// βββ External messages from website βββ
chrome.runtime.onMessageExternal.addListener((message, sender, sendResponse) => {
const handle = async () => {
switch (message.type) {
case "SET_AUTH": {
await chrome.storage.sync.set({
authToken: message.token,
plan: message.plan || "free",
email: message.email || "",
userName: message.name || "",
userId: message.userId || "",
authSource: "website",
lastSyncAt: Date.now(),
});
return { success: true };
}
case "LOGOUT": {
await chrome.storage.sync.remove(["authToken", "plan", "email", "userName", "userId", "authSource", "lastSyncAt"]);
return { success: true };
}
case "GET_STATUS": {
const auth = await getAuth();
const usage = await checkUsage();
return { auth, usage };
}
case "PING": {
return { installed: true, version: chrome.runtime.getManifest().version };
}
default: return null;
}
};
handle().then(sendResponse).catch(err => sendResponse({ error: err.message }));
return true;
});
// βββ Core: Analyze βββ
async function handleAnalyze(payload, tabId) {
const usage = await checkUsage();
if (!usage.allowed) {
return { error: "limit_reached", message: "Free scan limit reached.", usage };
}
const { text, url } = payload;
if (!text || text.trim().length < 100) {
return { error: "too_short", message: "Not enough text to analyze." };
}
let results;
try {
const auth = await getAuth();
// FIX v4.3: Send {text, source_url} to the Netlify web route which
// handles Gradio SSE polling internally and returns plain JSON.
const resp = await fetchWithTimeout(`${API_BASE}/api/analyze`, {
method: "POST",
headers: {
"Content-Type": "application/json",
...(auth.token ? { Authorization: `Bearer ${auth.token}` } : {}),
},
body: JSON.stringify({ text: text.substring(0, 100000), source_url: url }),
}, API_TIMEOUT_MS);
if (resp.status === 429) {
return { error: "rate_limited", message: "Too many requests. Please wait a moment." };
}
if (resp.status === 401) {
// Web route requires auth β fall back to local analysis for guests
console.warn("API returned 401, using local analysis for guest user");
results = localAnalyze(text);
results.source = "local";
} else if (!resp.ok) {
throw new Error(`HTTP ${resp.status}`);
} else {
results = await resp.json();
results.source = "api";
}
} catch (err) {
console.warn("API unavailable, using local:", err.message);
results = localAnalyze(text);
results.source = "local";
}
// Store results
if (tabId) {
await chrome.storage.local.set({ [`results_${tabId}`]: results });
// FIX v4.3: Also store session_id so the chat feature can use it
if (results.session_id) {
await chrome.storage.local.set({ [`session_${tabId}`]: results.session_id });
}
const flagged = results.results?.filter(r => r.categories?.length > 0).length || results.flagged_count || 0;
chrome.action.setBadgeText({ text: flagged > 0 ? String(flagged) : "", tabId });
if (flagged > 0) chrome.action.setBadgeBackgroundColor({ color: flagged > 3 ? "#ef4444" : "#f59e0b", tabId });
}
// Save scan to history
const scanRecord = {
url: url || "",
risk_score: results.risk_score,
grade: results.grade,
flagged_count: results.flagged_count,
total_clauses: results.total_clauses,
source: results.source,
scanned_at: Date.now(),
};
const { scanHistory = [] } = await chrome.storage.local.get("scanHistory");
scanHistory.unshift(scanRecord);
if (scanHistory.length > 50) scanHistory.length = 50;
await chrome.storage.local.set({ scanHistory });
await incrementUsage();
return results;
}
// βββ Get scan history βββ
async function getScanHistory() {
const { scanHistory = [] } = await chrome.storage.local.get("scanHistory");
return { history: scanHistory };
}
// βββ Get stored session ID (for chat) βββ
async function getStoredSessionId(tabId) {
if (!tabId) return null;
return new Promise(r => chrome.storage.local.get([`session_${tabId}`], d => r(d[`session_${tabId}`] || null)));
}
// βββ Sync auth from website βββ
async function syncAuthFromWebsite() {
return await getAuth();
}
// βββ Local fallback βββ
function localAnalyze(text) {
const clauses = splitIntoClauses(text);
const patterns = {
0: [/arbitrat/i, /binding arbitration/i, /waive.*right.*court/i],
1: [/sole discretion/i, /reserves? the right to (modify|change|update)/i, /at any time.*without.*notice/i],
2: [/remove.*content.*without/i, /right to remove/i],
3: [/exclusive jurisdiction/i, /courts? of.*(california|delaware|new york|ireland)/i, /submit to.*jurisdiction/i],
4: [/governed by.*laws? of/i, /shall be governed/i],
5: [/not liable/i, /shall not be (liable|responsible)/i, /in no event.*liable/i, /limitation of liability/i, /without warranty/i],
6: [/terminat.*at any time/i, /suspend.*account.*without/i, /we may (terminat|suspend)/i],
7: [/by (using|accessing).*you agree/i, /continued use.*constitutes/i],
};
const names = ["Arbitration","Unilateral change","Content removal","Jurisdiction","Choice of law","Limitation of liability","Unilateral termination","Contract by using"];
const sevMap = {0:"HIGH",1:"MEDIUM",2:"MEDIUM",3:"MEDIUM",4:"MEDIUM",5:"HIGH",6:"HIGH",7:"LOW"};
const results = clauses.map(clause => {
const categories = [];
for (const [id, pats] of Object.entries(patterns)) {
if (pats.some(p => p.test(clause))) categories.push({ name: names[id], severity: sevMap[id] });
}
return { text: clause, categories };
});
const flagged = results.filter(r => r.categories.length > 0);
const sev = { HIGH: 0, MEDIUM: 0, LOW: 0 };
flagged.forEach(r => r.categories.forEach(c => {
if (sev.hasOwnProperty(c.severity)) sev[c.severity]++;
else sev.MEDIUM++;
}));
const weighted = sev.HIGH * 20 + sev.MEDIUM * 10 + sev.LOW * 3;
const risk = Math.min(100, Math.round(100 * (1 - (1 / (1 + weighted / 30)))));
return {
risk_score: risk,
grade: risk >= 70 ? "F" : risk >= 50 ? "D" : risk >= 30 ? "C" : risk >= 15 ? "B" : "A",
total_clauses: clauses.length, flagged_count: flagged.length, results,
};
}
// βββ Utils βββ
function splitIntoClauses(text) {
return text.replace(/\n{2,}/g, "\n").trim()
.split(/(?<=[.!?])\s+(?=[A-Z0-9(])|(?:\n)(?=\d+[.)]\s|\([a-z]\)\s)/)
.map(c => c.trim()).filter(c => c.length > 30);
}
async function getAuth() {
return new Promise(r => chrome.storage.sync.get(
["authToken","plan","email","userName","userId","authSource","lastSyncAt"], d => r({
token: d.authToken||null, plan: d.plan||"free", email: d.email||null,
name: d.userName||null, userId: d.userId||null,
isLoggedIn: !!d.authToken, isPro: d.plan==="pro"||d.plan==="team",
isGuest: !d.authToken, authSource: d.authSource||null,
lastSyncAt: d.lastSyncAt||null,
})));
}
async function getUser() {
const auth = await getAuth();
const usage = await checkUsage();
return { ...auth, ...usage };
}
async function checkUsage() {
return new Promise(r => chrome.storage.sync.get(["plan","scansThisMonth","monthResetAt"], d => {
const now = new Date(), reset = d.monthResetAt ? new Date(d.monthResetAt) : null;
if (!reset || now.getMonth() !== reset.getMonth() || now.getFullYear() !== reset.getFullYear()) {
chrome.storage.sync.set({ scansThisMonth: 0, monthResetAt: now.toISOString() });
r({ allowed: true, used: 0, limit: FREE_SCANS_PER_MONTH, plan: d.plan||"free" });
return;
}
const used = d.scansThisMonth||0, plan = d.plan||"free";
r({ allowed: plan!=="free"||used<FREE_SCANS_PER_MONTH, used, limit: plan==="free"?FREE_SCANS_PER_MONTH:Infinity, plan });
}));
}
async function incrementUsage() {
return new Promise(r => chrome.storage.sync.get(["scansThisMonth"], d =>
chrome.storage.sync.set({ scansThisMonth: (d.scansThisMonth||0)+1 }, r)));
}
async function getStoredResults(tabId) {
return new Promise(r => chrome.storage.local.get([`results_${tabId}`], d => r(d[`results_${tabId}`]||null)));
}
chrome.tabs.onRemoved.addListener(tabId => chrome.storage.local.remove([`results_${tabId}`, `session_${tabId}`]));
|