mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { DOMWindow } from 'jsdom'
|
|
|
|
export class AxiosHandler {
|
|
name = 'axios'
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
shouldPrehandle = (url: URL, _dom: DOMWindow): boolean => {
|
|
const host = this.name + '.com'
|
|
// check if url ends with axios.com
|
|
return url.hostname.endsWith(host)
|
|
}
|
|
|
|
prehandle = (url: URL, dom: DOMWindow): Promise<DOMWindow> => {
|
|
const body = dom.document.querySelector('table')
|
|
|
|
// this removes ads and replaces table with a div
|
|
body?.querySelectorAll('table').forEach((el, k) => {
|
|
if (k > 0) {
|
|
el.remove()
|
|
} else {
|
|
// removes the first few rows of the table (the header)
|
|
// remove the last two rows of the table (they are ads)
|
|
el.querySelectorAll('tr').forEach((tr, i) => {
|
|
if (i <= 7 || i >= el.querySelectorAll('tr').length - 2) {
|
|
console.log('removing', tr)
|
|
tr.remove()
|
|
}
|
|
})
|
|
// replace the table with a div
|
|
const div = dom.document.createElement('div')
|
|
div.innerHTML = el.innerHTML
|
|
el.parentNode?.replaceChild(div, el)
|
|
}
|
|
})
|
|
|
|
return Promise.resolve(dom)
|
|
}
|
|
}
|