@crawlee/core 4.0.0-beta.49 → 4.0.0-beta.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crawlee/core",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.50",
|
|
4
4
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.0.0"
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@apify/pseudo_url": "^2.0.59",
|
|
54
54
|
"@apify/timeout": "^0.3.2",
|
|
55
55
|
"@apify/utilities": "^2.15.5",
|
|
56
|
-
"@crawlee/memory-storage": "4.0.0-beta.
|
|
57
|
-
"@crawlee/types": "4.0.0-beta.
|
|
58
|
-
"@crawlee/utils": "4.0.0-beta.
|
|
56
|
+
"@crawlee/memory-storage": "4.0.0-beta.50",
|
|
57
|
+
"@crawlee/types": "4.0.0-beta.50",
|
|
58
|
+
"@crawlee/utils": "4.0.0-beta.50",
|
|
59
59
|
"@sapphire/async-queue": "^1.5.5",
|
|
60
60
|
"@vladfrangu/async_event_emitter": "^2.4.6",
|
|
61
61
|
"csv-stringify": "^6.5.2",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "cdd082a1e9d106e6ea46fbe21928cc2f1978f4f7"
|
|
80
80
|
}
|
package/proxy_configuration.d.ts
CHANGED
|
@@ -20,52 +20,9 @@ export interface ProxyConfigurationOptions {
|
|
|
20
20
|
* This function is used to generate the URL when {@link ProxyConfiguration.newUrl} or {@link ProxyConfiguration.newProxyInfo} is called.
|
|
21
21
|
*/
|
|
22
22
|
newUrlFunction?: ProxyConfigurationFunction;
|
|
23
|
-
/**
|
|
24
|
-
* An array of custom proxy URLs to be rotated stratified in tiers.
|
|
25
|
-
* This is a more advanced version of `proxyUrls` that allows you to define a hierarchy of proxy URLs
|
|
26
|
-
* If everything goes well, all the requests will be sent through the first proxy URL in the list.
|
|
27
|
-
* Whenever the crawler encounters a problem with the current proxy on the given domain, it will switch to the higher tier for this domain.
|
|
28
|
-
* The crawler probes lower-level proxies at intervals to check if it can make the tier downshift.
|
|
29
|
-
*
|
|
30
|
-
* This feature is useful when you have a set of proxies with different performance characteristics (speed, price, antibot performance etc.) and you want to use the best one for each domain.
|
|
31
|
-
*
|
|
32
|
-
* Use `null` as a proxy URL to disable the proxy for the given tier.
|
|
33
|
-
*/
|
|
34
|
-
tieredProxyUrls?: UrlList[];
|
|
35
|
-
}
|
|
36
|
-
export interface TieredProxy {
|
|
37
|
-
proxyUrl: string | null;
|
|
38
|
-
proxyTier?: number;
|
|
39
23
|
}
|
|
40
|
-
interface
|
|
24
|
+
interface NewUrlOptions {
|
|
41
25
|
request?: Request;
|
|
42
|
-
proxyTier?: number;
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* Internal class for tracking the proxy tier history for a specific domain.
|
|
46
|
-
*
|
|
47
|
-
* Predicts the best proxy tier for the next request based on the error history for different proxy tiers.
|
|
48
|
-
*/
|
|
49
|
-
declare class ProxyTierTracker {
|
|
50
|
-
private histogram;
|
|
51
|
-
private currentTier;
|
|
52
|
-
constructor(tieredProxyUrls: (string | null)[][]);
|
|
53
|
-
/**
|
|
54
|
-
* Processes a single step of the algorithm and updates the current tier prediction based on the error history.
|
|
55
|
-
*/
|
|
56
|
-
private processStep;
|
|
57
|
-
/**
|
|
58
|
-
* Increases the error score for the given proxy tier. This raises the chance of picking a different proxy tier for the subsequent requests.
|
|
59
|
-
*
|
|
60
|
-
* The error score is increased by 10 for the given tier. This means that this tier will be disadvantaged for the next 10 requests (every new request prediction decreases the error score by 1).
|
|
61
|
-
* @param tier The proxy tier to mark as problematic.
|
|
62
|
-
*/
|
|
63
|
-
addError(tier: number): void;
|
|
64
|
-
/**
|
|
65
|
-
* Returns the best proxy tier for the next request based on the error history for different proxy tiers.
|
|
66
|
-
* @returns The proxy tier prediction
|
|
67
|
-
*/
|
|
68
|
-
predictTier(): number;
|
|
69
26
|
}
|
|
70
27
|
/**
|
|
71
28
|
* Configures connection to a proxy server with the provided options. Proxy servers are used to prevent target websites from blocking
|
|
@@ -99,12 +56,10 @@ export declare class ProxyConfiguration {
|
|
|
99
56
|
isManInTheMiddle: boolean;
|
|
100
57
|
protected nextCustomUrlIndex: number;
|
|
101
58
|
protected proxyUrls?: UrlList;
|
|
102
|
-
protected tieredProxyUrls?: UrlList[];
|
|
103
59
|
protected usedProxyUrls: Map<string, string | null>;
|
|
104
60
|
protected newUrlFunction?: ProxyConfigurationFunction;
|
|
105
61
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
106
62
|
protected log: import("@crawlee/types").CrawleeLogger;
|
|
107
|
-
protected domainTiers: Map<string, ProxyTierTracker>;
|
|
108
63
|
/**
|
|
109
64
|
* Creates a {@link ProxyConfiguration} instance based on the provided options. Proxy servers are used to prevent target websites from
|
|
110
65
|
* blocking your crawlers based on IP address rate limits or blacklists. Setting proxy configuration in your crawlers automatically configures
|
|
@@ -135,26 +90,14 @@ export declare class ProxyConfiguration {
|
|
|
135
90
|
*
|
|
136
91
|
* @return Represents information about used proxy and its configuration.
|
|
137
92
|
*/
|
|
138
|
-
newProxyInfo(options?:
|
|
139
|
-
/**
|
|
140
|
-
* Given a request / proxy tier, this function returns a new proxy URL based on the provided configuration options.
|
|
141
|
-
* @param options Options for the tiered proxy rotation
|
|
142
|
-
* @returns An object with the proxy URL and the proxy tier used.
|
|
143
|
-
*/
|
|
144
|
-
protected _handleTieredUrl(options?: TieredProxyOptions): TieredProxy;
|
|
145
|
-
/**
|
|
146
|
-
* Given a `Request` object, this function returns the tier of the proxy that should be used for the request.
|
|
147
|
-
*
|
|
148
|
-
* This returns `null` if `tieredProxyUrls` option is not set.
|
|
149
|
-
*/
|
|
150
|
-
protected predictProxyTier(request: Request): number | null;
|
|
93
|
+
newProxyInfo(options?: NewUrlOptions): Promise<ProxyInfo | undefined>;
|
|
151
94
|
/**
|
|
152
95
|
* Returns a new proxy URL based on provided configuration options.
|
|
153
96
|
*
|
|
154
97
|
* @return A string with a proxy URL, including authentication credentials and port number.
|
|
155
98
|
* For example, `http://bob:password123@proxy.example.com:8000`
|
|
156
99
|
*/
|
|
157
|
-
newUrl(options?:
|
|
100
|
+
newUrl(options?: NewUrlOptions): Promise<string | undefined>;
|
|
158
101
|
protected _handleProxyUrlsList(): string | null;
|
|
159
102
|
/**
|
|
160
103
|
* Calls the custom newUrlFunction and checks format of its return value
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxy_configuration.d.ts","sourceRoot":"","sources":["../src/proxy_configuration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAc,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAG5D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAG5C,MAAM,WAAW,0BAA0B;IACvC,CAAC,OAAO,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;CAC7E;AAED,KAAK,OAAO,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,EAAE,CAAC;AAEjC,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"proxy_configuration.d.ts","sourceRoot":"","sources":["../src/proxy_configuration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAc,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAG5D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAG5C,MAAM,WAAW,0BAA0B;IACvC,CAAC,OAAO,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;CAC7E;AAED,KAAK,OAAO,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,EAAE,CAAC;AAEjC,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,0BAA0B,CAAC;CAC/C;AAED,UAAU,aAAa;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,qBAAa,kBAAkB;IAC3B,gBAAgB,UAAS;IACzB,SAAS,CAAC,kBAAkB,SAAK;IACjC,SAAS,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC;IAC9B,SAAS,CAAC,aAAa,6BAAoC;IAC3D,SAAS,CAAC,cAAc,CAAC,EAAE,0BAA0B,CAAC;IACtD,SAAS,CAAC,GAAG,yCAAsE;IAEnF;;;;;;;;;;;;;;;;;;;OAmBG;gBACS,OAAO,GAAE,yBAA8B;IA2BnD;;;;;;;;OAQG;IACG,YAAY,CAAC,OAAO,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC;IAe3E;;;;;OAKG;IACG,MAAM,CAAC,OAAO,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAQlE,SAAS,CAAC,oBAAoB,IAAI,MAAM,GAAG,IAAI;IAI/C;;OAEG;cACa,mBAAmB,CAAC,OAAO,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE;IAcnE,SAAS,CAAC,gCAAgC,IAAI,KAAK;IAMnD,SAAS,CAAC,uBAAuB,IAAI,KAAK;CAG7C"}
|
package/proxy_configuration.js
CHANGED
|
@@ -1,54 +1,5 @@
|
|
|
1
1
|
import ow from 'ow';
|
|
2
2
|
import { serviceLocator } from './service_locator.js';
|
|
3
|
-
/**
|
|
4
|
-
* Internal class for tracking the proxy tier history for a specific domain.
|
|
5
|
-
*
|
|
6
|
-
* Predicts the best proxy tier for the next request based on the error history for different proxy tiers.
|
|
7
|
-
*/
|
|
8
|
-
class ProxyTierTracker {
|
|
9
|
-
histogram;
|
|
10
|
-
currentTier;
|
|
11
|
-
constructor(tieredProxyUrls) {
|
|
12
|
-
this.histogram = tieredProxyUrls.map(() => 0);
|
|
13
|
-
this.currentTier = 0;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Processes a single step of the algorithm and updates the current tier prediction based on the error history.
|
|
17
|
-
*/
|
|
18
|
-
processStep() {
|
|
19
|
-
this.histogram.forEach((x, i) => {
|
|
20
|
-
if (this.currentTier === i)
|
|
21
|
-
return;
|
|
22
|
-
if (x > 0)
|
|
23
|
-
this.histogram[i]--;
|
|
24
|
-
});
|
|
25
|
-
const left = this.currentTier > 0 ? this.histogram[this.currentTier - 1] : Infinity;
|
|
26
|
-
const right = this.currentTier < this.histogram.length - 1 ? this.histogram[this.currentTier + 1] : Infinity;
|
|
27
|
-
if (this.histogram[this.currentTier] > Math.min(left, right)) {
|
|
28
|
-
this.currentTier = left <= right ? this.currentTier - 1 : this.currentTier + 1;
|
|
29
|
-
}
|
|
30
|
-
else if (this.histogram[this.currentTier] === left) {
|
|
31
|
-
this.currentTier--;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* Increases the error score for the given proxy tier. This raises the chance of picking a different proxy tier for the subsequent requests.
|
|
36
|
-
*
|
|
37
|
-
* The error score is increased by 10 for the given tier. This means that this tier will be disadvantaged for the next 10 requests (every new request prediction decreases the error score by 1).
|
|
38
|
-
* @param tier The proxy tier to mark as problematic.
|
|
39
|
-
*/
|
|
40
|
-
addError(tier) {
|
|
41
|
-
this.histogram[tier] += 10;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Returns the best proxy tier for the next request based on the error history for different proxy tiers.
|
|
45
|
-
* @returns The proxy tier prediction
|
|
46
|
-
*/
|
|
47
|
-
predictTier() {
|
|
48
|
-
this.processStep();
|
|
49
|
-
return this.currentTier;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
3
|
/**
|
|
53
4
|
* Configures connection to a proxy server with the provided options. Proxy servers are used to prevent target websites from blocking
|
|
54
5
|
* your crawlers based on IP address rate limits or blacklists. Setting proxy configuration in your crawlers automatically configures
|
|
@@ -81,11 +32,9 @@ export class ProxyConfiguration {
|
|
|
81
32
|
isManInTheMiddle = false;
|
|
82
33
|
nextCustomUrlIndex = 0;
|
|
83
34
|
proxyUrls;
|
|
84
|
-
tieredProxyUrls;
|
|
85
35
|
usedProxyUrls = new Map();
|
|
86
36
|
newUrlFunction;
|
|
87
37
|
log = serviceLocator.getLogger().child({ prefix: 'ProxyConfiguration' });
|
|
88
|
-
domainTiers = new Map();
|
|
89
38
|
/**
|
|
90
39
|
* Creates a {@link ProxyConfiguration} instance based on the provided options. Proxy servers are used to prevent target websites from
|
|
91
40
|
* blocking your crawlers based on IP address rate limits or blacklists. Setting proxy configuration in your crawlers automatically configures
|
|
@@ -108,19 +57,21 @@ export class ProxyConfiguration {
|
|
|
108
57
|
*/
|
|
109
58
|
constructor(options = {}) {
|
|
110
59
|
const { validateRequired, ...rest } = options;
|
|
60
|
+
if ('tieredProxyUrls' in rest) {
|
|
61
|
+
throw new Error('The `tieredProxyUrls` option has been removed in Crawlee v4. ' +
|
|
62
|
+
'See the v4 upgrading guide for the recommended migration to named sessions.');
|
|
63
|
+
}
|
|
111
64
|
ow(rest, ow.object.exactShape({
|
|
112
65
|
proxyUrls: ow.optional.array.nonEmpty.ofType(ow.any(ow.string.url, ow.null)),
|
|
113
66
|
newUrlFunction: ow.optional.function,
|
|
114
|
-
tieredProxyUrls: ow.optional.array.nonEmpty.ofType(ow.array.nonEmpty.ofType(ow.any(ow.string.url, ow.null))),
|
|
115
67
|
}));
|
|
116
|
-
const { proxyUrls, newUrlFunction
|
|
117
|
-
if (
|
|
68
|
+
const { proxyUrls, newUrlFunction } = options;
|
|
69
|
+
if (proxyUrls && newUrlFunction)
|
|
118
70
|
this._throwCannotCombineCustomMethods();
|
|
119
71
|
if (!proxyUrls && !newUrlFunction && validateRequired)
|
|
120
72
|
this._throwNoOptionsProvided();
|
|
121
73
|
this.proxyUrls = proxyUrls;
|
|
122
74
|
this.newUrlFunction = newUrlFunction;
|
|
123
|
-
this.tieredProxyUrls = tieredProxyUrls;
|
|
124
75
|
}
|
|
125
76
|
/**
|
|
126
77
|
* This function creates a new {@link ProxyInfo} info object.
|
|
@@ -132,16 +83,7 @@ export class ProxyConfiguration {
|
|
|
132
83
|
* @return Represents information about used proxy and its configuration.
|
|
133
84
|
*/
|
|
134
85
|
async newProxyInfo(options) {
|
|
135
|
-
|
|
136
|
-
let tier;
|
|
137
|
-
if (this.tieredProxyUrls) {
|
|
138
|
-
const { proxyUrl, proxyTier } = this._handleTieredUrl(options);
|
|
139
|
-
url = proxyUrl ?? undefined;
|
|
140
|
-
tier = proxyTier;
|
|
141
|
-
}
|
|
142
|
-
else {
|
|
143
|
-
url = await this.newUrl(options);
|
|
144
|
-
}
|
|
86
|
+
const url = await this.newUrl(options);
|
|
145
87
|
if (!url)
|
|
146
88
|
return undefined;
|
|
147
89
|
const { username, password, port, hostname } = new URL(url);
|
|
@@ -151,59 +93,8 @@ export class ProxyConfiguration {
|
|
|
151
93
|
password: decodeURIComponent(password),
|
|
152
94
|
hostname,
|
|
153
95
|
port: port,
|
|
154
|
-
proxyTier: tier,
|
|
155
|
-
};
|
|
156
|
-
}
|
|
157
|
-
/**
|
|
158
|
-
* Given a request / proxy tier, this function returns a new proxy URL based on the provided configuration options.
|
|
159
|
-
* @param options Options for the tiered proxy rotation
|
|
160
|
-
* @returns An object with the proxy URL and the proxy tier used.
|
|
161
|
-
*/
|
|
162
|
-
_handleTieredUrl(options) {
|
|
163
|
-
if (!this.tieredProxyUrls)
|
|
164
|
-
throw new Error('Tiered proxy URLs are not set');
|
|
165
|
-
if (!options || (!options?.request && options?.proxyTier === undefined)) {
|
|
166
|
-
const allProxyUrls = this.tieredProxyUrls.flat();
|
|
167
|
-
return {
|
|
168
|
-
proxyUrl: allProxyUrls[this.nextCustomUrlIndex++ % allProxyUrls.length],
|
|
169
|
-
};
|
|
170
|
-
}
|
|
171
|
-
let tierPrediction = options.proxyTier;
|
|
172
|
-
if (typeof tierPrediction !== 'number') {
|
|
173
|
-
tierPrediction = this.predictProxyTier(options.request);
|
|
174
|
-
}
|
|
175
|
-
const proxyTier = this.tieredProxyUrls[tierPrediction];
|
|
176
|
-
return {
|
|
177
|
-
proxyUrl: proxyTier[this.nextCustomUrlIndex++ % proxyTier.length],
|
|
178
|
-
proxyTier: tierPrediction,
|
|
179
96
|
};
|
|
180
97
|
}
|
|
181
|
-
/**
|
|
182
|
-
* Given a `Request` object, this function returns the tier of the proxy that should be used for the request.
|
|
183
|
-
*
|
|
184
|
-
* This returns `null` if `tieredProxyUrls` option is not set.
|
|
185
|
-
*/
|
|
186
|
-
predictProxyTier(request) {
|
|
187
|
-
if (!this.tieredProxyUrls)
|
|
188
|
-
return null;
|
|
189
|
-
const domain = new URL(request.url).hostname;
|
|
190
|
-
if (!this.domainTiers.has(domain)) {
|
|
191
|
-
this.domainTiers.set(domain, new ProxyTierTracker(this.tieredProxyUrls));
|
|
192
|
-
}
|
|
193
|
-
request.userData.__crawlee ??= {};
|
|
194
|
-
const tracker = this.domainTiers.get(domain);
|
|
195
|
-
if (typeof request.userData.__crawlee.lastProxyTier === 'number') {
|
|
196
|
-
tracker.addError(request.userData.__crawlee.lastProxyTier);
|
|
197
|
-
}
|
|
198
|
-
const tierPrediction = tracker.predictTier();
|
|
199
|
-
if (typeof request.userData.__crawlee.lastProxyTier === 'number' &&
|
|
200
|
-
request.userData.__crawlee.lastProxyTier !== tierPrediction) {
|
|
201
|
-
this.log.debug(`Changing proxy tier for domain "${domain}" from ${request.userData.__crawlee.lastProxyTier} to ${tierPrediction}.`);
|
|
202
|
-
}
|
|
203
|
-
request.userData.__crawlee.lastProxyTier = tierPrediction;
|
|
204
|
-
request.userData.__crawlee.forefront = true;
|
|
205
|
-
return tierPrediction;
|
|
206
|
-
}
|
|
207
98
|
/**
|
|
208
99
|
* Returns a new proxy URL based on provided configuration options.
|
|
209
100
|
*
|
|
@@ -214,9 +105,6 @@ export class ProxyConfiguration {
|
|
|
214
105
|
if (this.newUrlFunction) {
|
|
215
106
|
return (await this._callNewUrlFunction({ request: options?.request })) ?? undefined;
|
|
216
107
|
}
|
|
217
|
-
if (this.tieredProxyUrls) {
|
|
218
|
-
return this._handleTieredUrl(options).proxyUrl ?? undefined;
|
|
219
|
-
}
|
|
220
108
|
return this._handleProxyUrlsList() ?? undefined;
|
|
221
109
|
}
|
|
222
110
|
_handleProxyUrlsList() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxy_configuration.js","sourceRoot":"","sources":["../src/proxy_configuration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,IAAI,CAAC;AAGpB,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"proxy_configuration.js","sourceRoot":"","sources":["../src/proxy_configuration.ts"],"names":[],"mappings":"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"}
|