Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf6c96a3b1 | ||
|
|
5a4896b5b4 | ||
|
|
b1f4ad61ff | ||
|
|
0423ed8807 |
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Slop Farmer",
|
||||
"version": "0.1",
|
||||
"version": "0.3",
|
||||
|
||||
"author": "Jack Case",
|
||||
"description": "Crowd-source AI slop pages and domains",
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
<title>Slop Farmer</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello, world!</h1>
|
||||
<form id="login-form">
|
||||
<label for="email" id="username">user:</label>
|
||||
<input type="text" name="username" required />
|
||||
@@ -16,4 +15,5 @@
|
||||
<input type="password" name="password" required />
|
||||
<button id="login-button">login</button>
|
||||
</form>
|
||||
<h2 style="visibility: collapse;" id="login-status">You're logged in.</h2>
|
||||
</body>
|
||||
@@ -1,34 +1,87 @@
|
||||
const ddg_result_selector = "a[data-testid=\"result-title-a\""
|
||||
const ddg_result_list_selector = "ol.react-results--main"
|
||||
|
||||
let result_list_node
|
||||
let result_list_observer
|
||||
const page_links = new Map()
|
||||
|
||||
class SearchLink {
|
||||
constructor(link_node) {
|
||||
this.node = link_node
|
||||
this.target = link_node.getAttribute("href")
|
||||
this.url = new URL(link_node.getAttribute("href"))
|
||||
this.checked = false
|
||||
this.result = undefined
|
||||
}
|
||||
}
|
||||
|
||||
function check_links(links) {
|
||||
class ResultLinks extends Map {
|
||||
// map domains to paths and their associated nodes
|
||||
set(domain, path, search_link) {
|
||||
if(!super.get(domain)) {
|
||||
const nested_map = new Map()
|
||||
nested_map.set(path, search_link)
|
||||
super.set(domain, nested_map)
|
||||
} else {
|
||||
super.get(domain).set(path, search_link)
|
||||
}
|
||||
}
|
||||
|
||||
setNode(link_node) {
|
||||
const search_link = new SearchLink(link_node)
|
||||
this.set(search_link.url.hostname, search_link.url.pathname, search_link)
|
||||
}
|
||||
|
||||
get(domain, path="/") {
|
||||
return super.get(domain).get(path)
|
||||
}
|
||||
|
||||
getDomain(domain) {
|
||||
return super.get(domain)
|
||||
}
|
||||
|
||||
getUrl(url) {
|
||||
const urlobj = new URL(url)
|
||||
return this.get(urlobj.hostname, urlobj.pathname)
|
||||
}
|
||||
|
||||
getSearchLinks() {
|
||||
// return an iterator over the nested SearchLink objects
|
||||
const domain_value_iterator = super.values()
|
||||
const search_link_iterator = domain_value_iterator.flatMap((domain_map) => {
|
||||
return domain_map.values()
|
||||
})
|
||||
return search_link_iterator
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const ddg_result_selector = "a[data-testid=\"result-title-a\""
|
||||
const ddg_result_list_selector = "ol.react-results--main"
|
||||
|
||||
let result_list_node
|
||||
let result_list_observer
|
||||
const page_links = new ResultLinks()
|
||||
|
||||
|
||||
function check_links(search_links) {
|
||||
// send a message to background script with a list of URLs to check
|
||||
browser.runtime.sendMessage({type: "check", urls: links})
|
||||
links.forEach((link) => {page_links.get(link).checked = true})
|
||||
const urls = search_links.map((search_link) => {
|
||||
search_link.checked = true
|
||||
return search_link.target
|
||||
})
|
||||
browser.runtime.sendMessage({type: "check", urls: urls.toArray()})
|
||||
}
|
||||
|
||||
async function message_listener(message) {
|
||||
// handle slop reports returned from the background script
|
||||
if(message.type === "check_result") {
|
||||
console.log(message.url, message.result)
|
||||
const link = page_links.get(message.url)
|
||||
if ( message.result.slop_domain ) {
|
||||
if (message.domain) {
|
||||
const paths = page_links.getDomain(message.domain)
|
||||
paths.forEach((search_link) => {
|
||||
search_link.node.setAttribute("style", "color: red;")
|
||||
search_link.result = message.result
|
||||
})
|
||||
} else if (message.url) {
|
||||
const link = page_links.getUrl(message.url)
|
||||
link.node.setAttribute("style", "color: red;")
|
||||
link.result = message.result
|
||||
}
|
||||
link.result = message.result
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,10 +89,9 @@ function get_initial_links() {
|
||||
// get links from initial page load
|
||||
const links = document.querySelectorAll(ddg_result_selector)
|
||||
links.forEach((node) => {
|
||||
const link = new SearchLink(node)
|
||||
page_links.set(link.target, link)
|
||||
page_links.setNode(node)
|
||||
})
|
||||
const link_targets = page_links.keys().toArray()
|
||||
const link_targets = page_links.getSearchLinks()
|
||||
check_links(link_targets)
|
||||
}
|
||||
|
||||
@@ -47,15 +99,13 @@ function update_links() {
|
||||
// the result list has updated, add new links and check them
|
||||
const links = document.querySelectorAll(ddg_result_selector)
|
||||
links.forEach((node) => {
|
||||
const link = new SearchLink(node)
|
||||
if (page_links.has(link.target)) return
|
||||
page_links.set(link.target, link)
|
||||
page_links.setNode(node)
|
||||
})
|
||||
const link_iter = page_links.getSearchLinks().filter((search_link) => {
|
||||
return !(search_link.checked)
|
||||
})
|
||||
const link_arr = page_links.keys().filter((key) => {
|
||||
return !(page_links.get(key).checked)
|
||||
}).toArray()
|
||||
|
||||
check_links(link_arr)
|
||||
check_links(link_iter)
|
||||
}
|
||||
|
||||
function setup_result_observer() {
|
||||
|
||||
@@ -3,6 +3,10 @@ let access_token
|
||||
|
||||
const login_form = document.getElementById("login-form")
|
||||
if(login_form) {
|
||||
const login_status = document.getElementById("login-status")
|
||||
if (localStorage.getItem("accessToken")) {
|
||||
login_status.setAttribute("style", "visibility: visible;")
|
||||
}
|
||||
login_form.addEventListener("submit", (event) => {event.preventDefault(); submit_login_form()})
|
||||
}
|
||||
|
||||
@@ -148,7 +152,8 @@ async function on_button_clicked_handler(tab) {
|
||||
const domain = tab_url.hostname
|
||||
const path = tab_url.pathname
|
||||
|
||||
insert_slop(domain, path)
|
||||
await insert_slop(domain, path)
|
||||
update_page_action_icon({frameId: 0, tabId: tab.id, url: tab.url})
|
||||
}
|
||||
|
||||
async function update_page_action_icon(details) {
|
||||
@@ -198,7 +203,7 @@ async function message_listener(message, sender) {
|
||||
|
||||
let remote_slop = await check_remote_slop(not_found_local)
|
||||
remote_slop.forEach((result) => {
|
||||
browser.tabs.sendMessage(tabid, { type: "check_result", url: result.url, result: result })
|
||||
browser.tabs.sendMessage(tabid, { type: "check_result", domain: result.domain_name, result: result })
|
||||
})
|
||||
}
|
||||
}
|
||||
@@ -227,6 +232,8 @@ async function submit_login_form() {
|
||||
const body = await response.json()
|
||||
const token = body.access_token
|
||||
localStorage.setItem("accessToken", token)
|
||||
const status_el = document.getElementById("login-status")
|
||||
status_el.setAttribute("style", "visibility: visible;")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user