-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathScraper.js
223 lines (172 loc) · 6.38 KB
/
Scraper.js
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
const { Qyu } = require('qyu');
const fs = require('fs');
const path = require('path');
const { verifyDirectoryExists } = require('./utils/files')
const { deepSpread } = require('./utils/objects');
/**
* @callback errorCallback
* @param {string} errorString
*/
class Scraper {
/**
*
* @param {Object} globalConfig
* @param {string} globalConfig.startUrl
* @param {string} globalConfig.baseSiteUrl
* @param {boolean} [globalConfig.showConsoleLogs = true ]
* @param {boolean} [globalConfig.cloneFiles = true ]
* @param {boolean} [globalConfig.removeStyleAndScriptTags = true ]
* @param {number} [globalConfig.concurrency = 3]
* @param {number} [globalConfig.maxRetries = 5]
* @param {number} [globalConfig.delay = 200]
* @param {number} [globalConfig.timeout = 6000]
* @param {string} [globalConfig.filePath= null]
* @param {Object} [globalConfig.auth = null]
* @param {Object} [globalConfig.headers = {}]
* @param {string} [globalConfig.proxy = null]
* @param {Agent} [globalConfig.agent = null]
* @param {Function} [globalConfig.onError = null]
*/
constructor(globalConfig) {
//Default config
this.config = {
cloneFiles: true,//If an image with the same name exists, a new file with a number appended to it is created. Otherwise. it's overwritten.
removeStyleAndScriptTags: true,
concurrency: 3,//Maximum concurrent requests.
maxRetries: 5,//Maximum number of retries of a failed request.
startUrl: '',
baseSiteUrl: '',
delay: 200,
timeout: 6000,
filePath: null,//Needs to be provided only if a DownloadContent operation is created.
auth: null,
headers: {},
proxy: null,
showConsoleLogs: true,
onError: null //callback runs whenever any error occurs during scraping
}
this.state = {
failedScrapingIterations: [],
downloadedFiles: 0,
currentlyRunning: 0,
registeredOperations: [],//Holds a reference to each created operation.
numRequests: 0,
repetitionCycles: 0,
}
this.validateGlobalConfig(globalConfig);
deepSpread(this.config,globalConfig)
if (globalConfig.agent) {
this.config.agent = globalConfig.agent;
}
this.config.errorCodesToSkip = [404, 403, 400];
this.qyu = new Qyu({ concurrency: this.config.concurrency })//Creates an instance of the task-qyu for the requests.
this.requestSpacer = Promise.resolve();
if (this.config.usePuppeteer) {
throw new Error('usePuppeteer is deprecated since version 5. If you need it, downgrade to version 4.2.2')
}
this.referenceToRoot = null;
}
registerOperation(Operation) {
this.state.registeredOperations.push(Operation)
}
destroy() {
this.log('Scraper.destroy() is deprecated. You can now have multiple instances, without calling this method.')
}
async awaitBrowserReady() {
await this.isBrowserReady;
}
validateGlobalConfig(conf) {
if (!conf || typeof conf !== 'object')
throw 'Scraper constructor expects a configuration object';
if (!conf.baseSiteUrl || !conf.startUrl)
throw 'Please provide both baseSiteUrl and startUrl';
}
/**
* Starts the recursive scraping process
* @param {Root} rootObject
* @return {Promise<void>}
*/
async scrape(rootObject) {//This function will begin the entire scraping process. Expects a reference to the root operation.
if (!rootObject || rootObject.constructor.name !== 'Root')
throw 'Scraper.scrape() expects a Root object as an argument!';
this.referenceToRoot = rootObject;
rootObject.injectScraper(this)
if (this.config.usePuppeteer) {
await this.awaitBrowserReady();
}
await rootObject.scrape();
if (this.areThereRepeatableErrors()) {
this.log(`Number of requests that failed, in their last attempt: ${this.state.failedScrapingIterations.length}`);
} else {
this.log('All done, no final errors');
}
if (this.config.logPath) {
try {
await this.createLogs();
} catch (error) {
this.log('Error creating logs', error)
}
}
this.log(`overall files: ${this.state.downloadedFiles}`)
}
/**
* @return {boolean}
*/
areThereRepeatableErrors() {
return this.state.failedScrapingIterations.length > 0;
}
/**
*
* @param {string} errorString
* @return {void}
*/
reportFailedScrapingAction(errorString) {
this.state.failedScrapingIterations.push(errorString);
if (this.config.onError) this.config.onError(errorString);
}
/**
*
* @param {Object} data
* @param {string} fileName
* @return {Promise<void>}
*/
saveFile(data, fileName) {
return new Promise(async (resolve, reject) => {
await verifyDirectoryExists(this.config.logPath);
fs.writeFile(path.join(this.config.logPath, `${fileName}.json`), JSON.stringify(data), (error) => {
if (error) {
reject(error)
} else {
this.log(`Log file ${fileName} saved`);
resolve();
}
});
})
}
/**
* @return {Promise<void>}
*/
async createLogs() {
for (let operation of this.state.registeredOperations) {
const fileName = operation.constructor.name === 'Root' ? 'log' : operation.config.name;
const data = operation.getData();
await this.createLog({ fileName, data })
}
await this.createLog({ fileName: 'finalErrors', data: this.state.failedScrapingIterations })
}
/**
*
* @param {Object} obj
* @param {string} obj.fileName
* @param {ScrapingAction | ScrapingAction[]} obj.data
*/
async createLog(obj) {
await this.saveFile(obj.data, obj.fileName);
}
log(message) {
if (this.config.showConsoleLogs) {
console.log(message);
}
}
}
module.exports = Scraper;