-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxy_configuration.d.ts
245 lines (245 loc) · 10.4 KB
/
proxy_configuration.d.ts
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import type { Request } from './request';
export interface ProxyConfigurationFunction {
(sessionId: string | number, options?: {
request?: Request;
}): string | null | Promise<string | null>;
}
export interface ProxyConfigurationOptions {
/**
* An array of custom proxy URLs to be rotated.
* Custom proxies are not compatible with Apify Proxy and an attempt to use both
* configuration options will cause an error to be thrown on initialize.
*/
proxyUrls?: string[];
/**
* Custom function that allows you to generate the new proxy URL dynamically. It gets the `sessionId` as a parameter and an optional parameter with the `Request` object when applicable.
* Can return either stringified proxy URL or `null` if the proxy should not be used. Can be asynchronous.
*
* This function is used to generate the URL when {@apilink ProxyConfiguration.newUrl} or {@apilink ProxyConfiguration.newProxyInfo} is called.
*/
newUrlFunction?: ProxyConfigurationFunction;
/**
* An array of custom proxy URLs to be rotated stratified in tiers.
* This is a more advanced version of `proxyUrls` that allows you to define a hierarchy of proxy URLs
* If everything goes well, all the requests will be sent through the first proxy URL in the list.
* Whenever the crawler encounters a problem with the current proxy on the given domain, it will switch to the higher tier for this domain.
* The crawler probes lower-level proxies at intervals to check if it can make the tier downshift.
*
* 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.
*/
tieredProxyUrls?: string[][];
}
export interface TieredProxy {
proxyUrl: string;
proxyTier?: number;
}
/**
* The main purpose of the ProxyInfo object is to provide information
* about the current proxy connection used by the crawler for the request.
* Outside of crawlers, you can get this object by calling {@apilink ProxyConfiguration.newProxyInfo}.
*
* **Example usage:**
*
* ```javascript
* const proxyConfiguration = new ProxyConfiguration({
* proxyUrls: ['...', '...'] // List of Proxy URLs to rotate
* });
*
* // Getting proxyInfo object by calling class method directly
* const proxyInfo = await proxyConfiguration.newProxyInfo();
*
* // In crawler
* const crawler = new CheerioCrawler({
* // ...
* proxyConfiguration,
* requestHandler({ proxyInfo }) {
* // Getting used proxy URL
* const proxyUrl = proxyInfo.url;
*
* // Getting ID of used Session
* const sessionIdentifier = proxyInfo.sessionId;
* }
* })
*
* ```
*/
export interface ProxyInfo {
/**
* The identifier of used {@apilink Session}, if used.
*/
sessionId?: string;
/**
* The URL of the proxy.
*/
url: string;
/**
* Username for the proxy.
*/
username?: string;
/**
* User's password for the proxy.
*/
password: string;
/**
* Hostname of your proxy.
*/
hostname: string;
/**
* Proxy port.
*/
port: number | string;
/**
* Proxy tier for the current proxy, if applicable (only for `tieredProxyUrls`).
*/
proxyTier?: number;
}
interface TieredProxyOptions {
request?: Request;
proxyTier?: number;
}
/**
* Internal class for tracking the proxy tier history for a specific domain.
*
* Predicts the best proxy tier for the next request based on the error history for different proxy tiers.
*/
declare class ProxyTierTracker {
private histogram;
private currentTier;
constructor(tieredProxyUrls: string[][]);
/**
* Processes a single step of the algorithm and updates the current tier prediction based on the error history.
*/
private processStep;
/**
* Increases the error score for the given proxy tier. This raises the chance of picking a different proxy tier for the subsequent requests.
*
* 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).
* @param tier The proxy tier to mark as problematic.
*/
addError(tier: number): void;
/**
* Returns the best proxy tier for the next request based on the error history for different proxy tiers.
* @returns The proxy tier prediction
*/
predictTier(): number;
}
/**
* Configures connection to a proxy server with the provided options. Proxy servers are used to prevent target websites from blocking
* your crawlers based on IP address rate limits or blacklists. Setting proxy configuration in your crawlers automatically configures
* them to use the selected proxies for all connections. You can get information about the currently used proxy by inspecting
* the {@apilink ProxyInfo} property in your crawler's page function. There, you can inspect the proxy's URL and other attributes.
*
* If you want to use your own proxies, use the {@apilink ProxyConfigurationOptions.proxyUrls} option. Your list of proxy URLs will
* be rotated by the configuration if this option is provided.
*
* **Example usage:**
*
* ```javascript
*
* const proxyConfiguration = new ProxyConfiguration({
* proxyUrls: ['...', '...'],
* });
*
* const crawler = new CheerioCrawler({
* // ...
* proxyConfiguration,
* requestHandler({ proxyInfo }) {
* const usedProxyUrl = proxyInfo.url; // Getting the proxy URL
* }
* })
*
* ```
* @category Scaling
*/
export declare class ProxyConfiguration {
isManInTheMiddle: boolean;
protected nextCustomUrlIndex: number;
protected proxyUrls?: string[];
protected tieredProxyUrls?: string[][];
protected usedProxyUrls: Map<string, string>;
protected newUrlFunction?: ProxyConfigurationFunction;
// @ts-ignore optional peer dependency or compatibility with es2022
protected log: import("@apify/log").Log;
protected domainTiers: Map<string, ProxyTierTracker>;
/**
* Creates a {@apilink ProxyConfiguration} instance based on the provided options. Proxy servers are used to prevent target websites from
* blocking your crawlers based on IP address rate limits or blacklists. Setting proxy configuration in your crawlers automatically configures
* them to use the selected proxies for all connections.
*
* ```javascript
* const proxyConfiguration = new ProxyConfiguration({
* proxyUrls: ['http://user:[email protected]', 'http://user:[email protected]'],
* });
*
* const crawler = new CheerioCrawler({
* // ...
* proxyConfiguration,
* requestHandler({ proxyInfo }) {
* const usedProxyUrl = proxyInfo.url; // Getting the proxy URL
* }
* })
*
* ```
*/
constructor(options?: ProxyConfigurationOptions);
/**
* This function creates a new {@apilink ProxyInfo} info object.
* It is used by CheerioCrawler and PuppeteerCrawler to generate proxy URLs and also to allow the user to inspect
* the currently used proxy via the requestHandler parameter `proxyInfo`.
* Use it if you want to work with a rich representation of a proxy URL.
* If you need the URL string only, use {@apilink ProxyConfiguration.newUrl}.
* @param [sessionId]
* Represents the identifier of user {@apilink Session} that can be managed by the {@apilink SessionPool} or
* you can use the Apify Proxy [Session](https://docs.apify.com/proxy#sessions) identifier.
* When the provided sessionId is a number, it's converted to a string. Property sessionId of
* {@apilink ProxyInfo} is always returned as a type string.
*
* All the HTTP requests going through the proxy with the same session identifier
* will use the same target proxy server (i.e. the same IP address).
* The identifier must not be longer than 50 characters and include only the following: `0-9`, `a-z`, `A-Z`, `"."`, `"_"` and `"~"`.
* @return Represents information about used proxy and its configuration.
*/
newProxyInfo(sessionId?: string | number, options?: TieredProxyOptions): Promise<ProxyInfo | undefined>;
/**
* Given a session identifier and a request / proxy tier, this function returns a new proxy URL based on the provided configuration options.
* @param _sessionId Session identifier
* @param options Options for the tiered proxy rotation
* @returns An object with the proxy URL and the proxy tier used.
*/
protected _handleTieredUrl(_sessionId: string, options?: TieredProxyOptions): TieredProxy;
/**
* Given a `Request` object, this function returns the tier of the proxy that should be used for the request.
*
* This returns `null` if `tieredProxyUrls` option is not set.
*/
protected predictProxyTier(request: Request): number | null;
/**
* Returns a new proxy URL based on provided configuration options and the `sessionId` parameter.
* @param [sessionId]
* Represents the identifier of user {@apilink Session} that can be managed by the {@apilink SessionPool} or
* you can use the Apify Proxy [Session](https://docs.apify.com/proxy#sessions) identifier.
* When the provided sessionId is a number, it's converted to a string.
*
* All the HTTP requests going through the proxy with the same session identifier
* will use the same target proxy server (i.e. the same IP address).
* The identifier must not be longer than 50 characters and include only the following: `0-9`, `a-z`, `A-Z`, `"."`, `"_"` and `"~"`.
* @return A string with a proxy URL, including authentication credentials and port number.
* For example, `http://bob:[email protected]:8000`
*/
newUrl(sessionId?: string | number, options?: TieredProxyOptions): Promise<string | undefined>;
/**
* Handles custom url rotation with session
*/
protected _handleCustomUrl(sessionId?: string): string;
/**
* Calls the custom newUrlFunction and checks format of its return value
*/
protected _callNewUrlFunction(sessionId?: string, options?: {
request?: Request;
}): Promise<string | null>;
protected _throwNewUrlFunctionInvalid(err: Error): never;
protected _throwCannotCombineCustomMethods(): never;
protected _throwNoOptionsProvided(): never;
}
export {};
//# sourceMappingURL=proxy_configuration.d.ts.map