FMHY-SafeGuard/platform/firefox/js/background.js
Kenneth Hendricks 6c7a89d27a
Update background.js
Updated links
2024-11-03 17:54:24 -05:00

396 lines
11 KiB
JavaScript

// URLs and Constants
const filterListURLUnsafe =
"https://raw.githubusercontent.com/fmhy/FMHYFilterlist/refs/heads/main/sitelist.txt";
const filterListURLPotentiallyUnsafe =
"https://raw.githubusercontent.com/fmhy/FMHYFilterlist/refs/heads/main/sitelist-plus.txt";
const safeListURL = "https://api.fmhy.net/single-page";
const starredListURL =
"https://raw.githubusercontent.com/fmhy/bookmarks/refs/heads/main/fmhy_in_bookmarks_starred_only.html";
const fmhyFilterListURL =
"https://raw.githubusercontent.com/fmhy/FMHY-SafeGuard/refs/heads/main/fmhy-filterlist.txt";
const DEFAULT_CHECK_INTERVAL = 60 * 60 * 1000; // 1 hour in milliseconds
// State Variables
let unsafeSitesRegex = null;
let potentiallyUnsafeSitesRegex = null;
let fmhySitesRegex = null;
let safeSites = [];
let starredSites = [];
const approvedUrls = new Map(); // Map to store approved URLs per tab
// Helper Functions
function extractUrlsFromMarkdown(markdown) {
const urlRegex = /https?:\/\/[^\s)]+/g;
return markdown.match(urlRegex) || [];
}
function extractUrlsFromBookmarks(html) {
const urlRegex = /<A HREF="(https?:\/\/[^\s"]+)"/g;
let matches;
const urls = [];
while ((matches = urlRegex.exec(html)) !== null) {
urls.push(matches[1]);
}
return urls;
}
function normalizeUrl(url) {
if (!url) {
console.warn("Received null or undefined URL.");
return null;
}
try {
if (!/^https?:\/\//i.test(url)) {
url = `https://${url}`;
}
const urlObj = new URL(url);
urlObj.search = "";
urlObj.hash = "";
return urlObj.href.replace(/\/+$/, "");
} catch (error) {
console.warn(`Invalid URL skipped: ${url}`);
return null;
}
}
function extractRootUrl(url) {
if (!url) {
console.warn("Received null or undefined URL for root extraction.");
return null;
}
try {
const urlObj = new URL(url);
return `${urlObj.protocol}//${urlObj.hostname}`;
} catch (error) {
console.warn(`Failed to extract root URL from: ${url}`);
return null;
}
}
function generateRegexFromList(list) {
const escapedList = list.map((domain) =>
domain.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")
);
return new RegExp(`(${escapedList.join("|")})`, "i");
}
function extractUrlsFromFilterList(text) {
return text
.split("\n")
.map((line) => line.trim())
.filter((line) => line && !line.startsWith("!"))
.map((line) => normalizeUrl(line))
.filter((url) => url !== null);
}
// Fetch and Update Functions
async function fetchFilterLists() {
console.log("Fetching filter lists...");
try {
const [unsafeResponse, potentiallyUnsafeResponse, fmhyResponse] =
await Promise.all([
fetch(filterListURLUnsafe),
fetch(filterListURLPotentiallyUnsafe),
fetch(fmhyFilterListURL),
]);
let unsafeSites = [];
let potentiallyUnsafeSites = [];
let fmhySites = [];
if (unsafeResponse.ok) {
const unsafeText = await unsafeResponse.text();
unsafeSites = extractUrlsFromFilterList(unsafeText);
unsafeSitesRegex = generateRegexFromList(unsafeSites);
}
if (potentiallyUnsafeResponse.ok) {
const potentiallyUnsafeText = await potentiallyUnsafeResponse.text();
potentiallyUnsafeSites = extractUrlsFromFilterList(potentiallyUnsafeText);
potentiallyUnsafeSitesRegex = generateRegexFromList(
potentiallyUnsafeSites
);
}
if (fmhyResponse.ok) {
const fmhyText = await fmhyResponse.text();
fmhySites = extractUrlsFromFilterList(fmhyText);
fmhySitesRegex = generateRegexFromList(fmhySites);
}
await browser.storage.local.set({
unsafeFilterCount: unsafeSites.length,
potentiallyUnsafeFilterCount: potentiallyUnsafeSites.length,
fmhyFilterCount: fmhySites.length,
lastUpdated: new Date().toISOString(),
});
console.log("Stored FMHY filter count:", fmhySites.length);
notifySettingsPage();
} catch (error) {
console.error("Error fetching filter lists:", error);
}
}
async function fetchSafeSites() {
console.log("Fetching safe sites...");
try {
const response = await fetch(safeListURL);
if (response.ok) {
const markdown = await response.text();
const urls = extractUrlsFromMarkdown(markdown);
safeSites = [...new Set(urls.map((url) => normalizeUrl(url.trim())))];
await browser.storage.local.set({
safeSiteCount: safeSites.length,
});
console.log("Stored safe site count:", safeSites.length);
}
} catch (error) {
console.error("Error fetching safe sites:", error);
}
}
async function fetchStarredSites() {
console.log("Fetching starred sites...");
try {
const response = await fetch(starredListURL);
if (response.ok) {
const html = await response.text();
const urls = extractUrlsFromBookmarks(html);
starredSites = [...new Set([...urls.map(normalizeUrl), ...starredSites])];
}
} catch (error) {
console.error("Error fetching starred sites:", error);
}
}
// UI Update Functions
function updatePageAction(status, tabId) {
const icons = {
safe: {
19: "../res/icons/safe_19.png",
38: "../res/icons/safe_38.png",
},
unsafe: {
19: "../res/icons/unsafe_19.png",
38: "../res/icons/unsafe_38.png",
},
potentially_unsafe: {
19: "../res/icons/potentially_unsafe_19.png",
38: "../res/icons/potentially_unsafe_38.png",
},
starred: {
19: "../res/icons/starred_19.png",
38: "../res/icons/starred_38.png",
},
fmhy: {
19: "../res/icons/fmhy_19.png",
38: "../res/icons/fmhy_38.png",
},
default: {
19: "../res/icons/default_19.png",
38: "../res/icons/default_38.png",
},
};
const icon = icons[status] || icons["default"];
browser.action.setIcon({
tabId: tabId,
path: icon,
});
}
async function notifySettingsPage() {
const tabs = await browser.tabs.query({});
for (const tab of tabs) {
try {
await browser.tabs.sendMessage(tab.id, { type: "filterlistUpdated" });
} catch (e) {
// Ignore errors for tabs that can't receive messages
}
}
}
// Site Status Checking
function checkSiteAndUpdatePageAction(tabId, url) {
if (!url) {
updatePageAction("default", tabId);
return;
}
const normalizedUrl = normalizeUrl(url.trim());
const rootUrl = extractRootUrl(normalizedUrl);
const isUnsafe =
unsafeSitesRegex?.test(rootUrl) || unsafeSitesRegex?.test(normalizedUrl);
const isPotentiallyUnsafe =
potentiallyUnsafeSitesRegex?.test(rootUrl) ||
potentiallyUnsafeSitesRegex?.test(normalizedUrl);
const isFMHY =
fmhySitesRegex?.test(rootUrl) || fmhySitesRegex?.test(normalizedUrl);
const isStarred =
starredSites.includes(rootUrl) || starredSites.includes(normalizedUrl);
const isSafe =
safeSites.includes(rootUrl) || safeSites.includes(normalizedUrl);
const tabApprovedUrls = approvedUrls.get(tabId) || [];
const isApproved = tabApprovedUrls.includes(normalizedUrl);
if (isUnsafe && !isApproved) {
updatePageAction("unsafe", tabId);
openWarningPage(tabId, url);
} else if (isPotentiallyUnsafe) {
updatePageAction("potentially_unsafe", tabId);
} else if (isFMHY) {
updatePageAction("fmhy", tabId);
} else if (isStarred) {
updatePageAction("starred", tabId);
} else if (isSafe) {
updatePageAction("safe", tabId);
} else {
updatePageAction("default", tabId);
}
}
// Update Schedule Management
async function shouldUpdate() {
try {
const { lastUpdated } = await browser.storage.local.get("lastUpdated");
const { updateFrequency } = await browser.storage.sync.get({
updateFrequency: "daily",
});
if (!lastUpdated) return true;
const lastUpdate = new Date(lastUpdated);
const now = new Date();
const diffHours = (now - lastUpdate) / (1000 * 60 * 60);
switch (updateFrequency) {
case "daily":
return diffHours >= 24;
case "weekly":
return diffHours >= 168;
case "monthly":
return diffHours >= 720;
default:
return false;
}
} catch (error) {
console.error("Error checking update schedule:", error);
return false;
}
}
async function setupUpdateSchedule() {
await browser.alarms.clearAll();
browser.alarms.create("checkUpdate", {
periodInMinutes: 60,
});
}
// Event Listeners
browser.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.action === "checkSiteStatus") {
const normalizedUrl = normalizeUrl(message.url.trim());
const rootUrl = extractRootUrl(normalizedUrl);
let isUnsafe =
unsafeSitesRegex?.test(rootUrl) || unsafeSitesRegex?.test(normalizedUrl);
let isPotentiallyUnsafe =
potentiallyUnsafeSitesRegex?.test(rootUrl) ||
potentiallyUnsafeSitesRegex?.test(normalizedUrl);
let isFMHY =
fmhySitesRegex?.test(rootUrl) || fmhySitesRegex?.test(normalizedUrl);
let isStarred =
starredSites.includes(rootUrl) || starredSites.includes(normalizedUrl);
let isSafe =
safeSites.includes(rootUrl) || safeSites.includes(normalizedUrl);
let status = "no_data";
if (isFMHY) {
status = "fmhy";
} else if (isStarred) {
status = "starred";
} else if (isUnsafe) {
status = "unsafe";
} else if (isPotentiallyUnsafe) {
status = "potentially_unsafe";
} else if (isSafe) {
status = "safe";
}
sendResponse({ status: status });
return true; // Indicates asynchronous response handling
}
});
async function openWarningPage(tabId, unsafeUrl) {
const tabApprovedUrls = approvedUrls.get(tabId) || [];
if (tabApprovedUrls.includes(normalizeUrl(unsafeUrl))) {
console.log(`URL ${unsafeUrl} was already approved for tab ${tabId}`);
return;
}
const { warningPage } = await browser.storage.sync.get({ warningPage: true });
if (!warningPage) {
console.log("Warning page is disabled by the user settings.");
return;
}
const warningPageUrl = browser.runtime.getURL(
`../pub/warning-page.html?url=${encodeURIComponent(unsafeUrl)}`
);
browser.tabs.update(tabId, { url: warningPageUrl });
}
browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (changeInfo.status === "complete" && tab.url) {
checkSiteAndUpdatePageAction(tabId, tab.url);
}
});
browser.tabs.onActivated.addListener(async (activeInfo) => {
const tab = await browser.tabs.get(activeInfo.tabId);
if (tab.url) {
checkSiteAndUpdatePageAction(tab.id, tab.url);
}
});
browser.alarms.onAlarm.addListener(async (alarm) => {
if (alarm.name === "checkUpdate") {
const needsUpdate = await shouldUpdate();
if (needsUpdate) {
await fetchFilterLists();
}
}
});
browser.tabs.onRemoved.addListener((tabId) => {
approvedUrls.delete(tabId);
browser.storage.local.remove(`proceedTab_${tabId}`);
});
// Initialize extension
async function initializeExtension() {
try {
await Promise.all([
fetchFilterLists(),
fetchSafeSites(),
fetchStarredSites(),
setupUpdateSchedule(),
]);
console.log("Extension initialized successfully.");
} catch (error) {
console.error("Error during extension initialization:", error);
}
}
initializeExtension();