-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrawl.js
More file actions
88 lines (73 loc) · 2.2 KB
/
crawl.js
File metadata and controls
88 lines (73 loc) · 2.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const { JSDOM } = require("jsdom");
async function crawlPages(baseURL, getCurrUrl, pages) {
const baseURLObj = new URL(baseURL);
const getCurrUrlObj = new URL(getCurrUrl);
if (baseURLObj.hostname !== getCurrUrlObj.hostname) {
return pages;
}
const normalizedgetCurrURL = normalizeURL(getCurrUrl);
if (pages[normalizedgetCurrURL] > 0) {
pages[normalizedgetCurrURL]++;
return pages;
}
pages[normalizedgetCurrURL] = 1;
console.log(`actively crawling :${getCurrUrl}`);
try {
const res = await fetch(getCurrUrl);
if (res.status > 399) {
console.log(`error in fetch code ${res.status} on page ${getCurrUrl}`);
return pages;
}
const contentType = res.headers.get("content-type");
if (!contentType.includes("text/html")) {
console.log(
`non html response , contentType : ${contentType} , on page : ${getCurrUrl}`
);
return pages;
}
const htmlBody = await res.text();
const nextURLs = getURLsFromHTML(htmlBody, baseURL);
for (const nextURL of nextURLs) {
pages = await crawlPages(baseURL, nextURL, pages);
}
} catch (error) {
console.log(`Bad URL at ${getCurrUrl} , error at ${error.message}`);
}
return pages
}
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 in relative URLs", error.message);
}
} else {
try {
const urlObj = new URL(linkElement.href);
urls.push(urlObj.href);
} catch (error) {
console.log("Error in absolute URLs", error.message);
}
}
}
return urls;
}
function normalizeURL(urlString) {
const urlObj = new URL(urlString);
const hostName = `${urlObj.hostname}${urlObj.pathname}`;
if (hostName.length > 0 && hostName.slice(-1) === "/") {
return hostName.slice(0, -1);
}
return hostName;
}
module.exports = {
normalizeURL,
getURLsFromHTML,
crawlPages,
};