-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrawl.js
More file actions
48 lines (41 loc) · 1.37 KB
/
crawl.js
File metadata and controls
48 lines (41 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const {JSDOM} = require('jsdom')
async function crawlPage(currentUrl){
console.log(`actively crawling: ${currentUrl}`)
const res = await fetch(currentUrl)
console.log(await res.text())
}
function getUrlsfromHtml(htmlBody, baseURL){
const urls = []
const dom = new JSDOM(htmlBody)
const linkElements = dom.window.document.querySelectorAll('a')
for(const linkElement of linkElements){
if(linkElement.href.slice(0,1)==='/'){
try {
const urlObj = new URL(`${baseURL}${linkElement.href}`)
urls.push(urlObj.href)
} catch (error) {
console.log(`error with the relative url:${error.message}`)
}
}
else{
try {
const urlObj = new URL(linkElement.href)
urls.push(urlObj.href)
} catch (error) {
console.log(`error with the absolute url:${error.message}`)
}
}
}
return urls
}
function normalizeUrl(urlstring){
const objectUrl = new URL(urlstring)
const urlnormalized = (`${objectUrl.hostname}${objectUrl.pathname}`)
if((urlnormalized.length > 0) && urlnormalized.slice(-1) === '/') return urlnormalized.slice(0, -1)
return urlnormalized
}
module.exports = {
normalizeUrl,
getUrlsfromHtml,
crawlPage
}