| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import checkSanitizeOptions from './checkSanitizeOptions.mjs'
- import Scrape from './scrape.mjs'
- import { fileURLToPath } from 'node:url'
- import { scriptRunner } from '../../lib/ScriptRunner.mjs'
- const { getAllPagesAndCache, scrapeAndCachePage } = Scrape
- async function main() {
- const BASE_URL = process.argv.pop()
- if (!BASE_URL.startsWith('http')) {
- throw new Error(
- 'Usage: node scripts/learn/checkSanitize/index.mjs https://LEARN_WIKI'
- )
- }
- const pages = await getAllPagesAndCache(BASE_URL)
- for (const page of pages) {
- try {
- const parsed = await scrapeAndCachePage(BASE_URL, page)
- const title = parsed.title
- const text = parsed.text ? parsed.text['*'] : ''
- checkSanitizeOptions(page, title, text)
- } catch (e) {
- console.error('---')
- console.error(page, e)
- throw e
- }
- }
- }
- if (fileURLToPath(import.meta.url) === process.argv[1]) {
- try {
- await scriptRunner(main)
- process.exit(0)
- } catch (error) {
- console.error(error)
- process.exit(1)
- }
- }
|