mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
14cd8f5479
Migrate rest of the scripts to esm GitOrigin-RevId: 421f3ccd15342d34113be8d22e343d08533177ea
41 lines
968 B
JavaScript
41 lines
968 B
JavaScript
import checkSanitizeOptions from './checkSanitizeOptions.mjs'
|
|
import Scrape from './scrape.mjs'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
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 main()
|
|
process.exit(0)
|
|
} catch (error) {
|
|
console.error(error)
|
|
process.exit(1)
|
|
}
|
|
}
|