-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.cjs
More file actions
479 lines (389 loc) · 13.2 KB
/
Copy pathindex.cjs
File metadata and controls
479 lines (389 loc) · 13.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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
'use strict';
/**
* Custom API error that includes HTTP metadata and response payload.
*/
class TcpShieldApiError extends Error {
constructor(message, options) {
super(message);
this.name = 'TcpShieldApiError';
this.status = options.status;
this.statusText = options.statusText;
this.url = options.url;
this.method = options.method;
this.data = options.data;
this.headers = options.headers;
}
}
/**
* Resolve a fetch implementation from runtime or user options.
* @param {Function | undefined} customFetch
* @returns {Function}
*/
function resolveFetch(customFetch) {
if (typeof customFetch === 'function') {
return customFetch;
}
if (typeof globalThis.fetch === 'function') {
return globalThis.fetch.bind(globalThis);
}
throw new Error(
'No fetch implementation found. Provide options.fetch (for example undici.fetch or node-fetch) when using Node.js < 18.'
);
}
/**
* Normalize base URL by ensuring a trailing slash.
* @param {string} url
* @returns {string}
*/
function normalizeBaseUrl(url) {
if (!url || typeof url !== 'string') {
return 'https://api.tcpshield.com/';
}
return url.endsWith('/') ? url : `${url}/`;
}
/**
* Build URL query string from key-value pairs.
* @param {Record<string, string | number | boolean | undefined | null>} query
* @returns {string}
*/
function buildQueryString(query) {
if (!query || typeof query !== 'object') {
return '';
}
const searchParams = new URLSearchParams();
for (const [key, value] of Object.entries(query)) {
if (value === undefined || value === null) {
continue;
}
searchParams.append(key, String(value));
}
const serialized = searchParams.toString();
return serialized ? `?${serialized}` : '';
}
/**
* @typedef {Object} TcpShieldClientOptions
* @property {string} [baseUrl] Base URL of the TCPShield API.
* @property {Function} [fetch] Custom fetch implementation.
* @property {number} [timeout] Request timeout in milliseconds.
* @property {Record<string, string>} [headers] Additional default headers.
*/
/**
* Production-ready TCPShield API client for Node.js.
*/
class TcpShieldClient {
/**
* @param {string} apiKey TCPShield API key.
* @param {TcpShieldClientOptions} [options]
*/
constructor(apiKey, options = {}) {
if (!apiKey || typeof apiKey !== 'string') {
throw new Error('A valid TCPShield API key is required.');
}
this.apiKey = apiKey;
this.baseUrl = normalizeBaseUrl(options.baseUrl || 'https://api.tcpshield.com/');
this.fetchImpl = resolveFetch(options.fetch);
this.timeout = Number.isFinite(options.timeout) ? options.timeout : 30000;
this.defaultHeaders = {
'X-API-Key': this.apiKey,
Accept: 'application/json',
...(options.headers || {})
};
}
/**
* Create a client instance from environment variables.
*
* Reads `TCPSHIELD_API_KEY` and optional `TCPSHIELD_API_URL`.
* @param {Omit<TcpShieldClientOptions, 'baseUrl'> & { baseUrl?: string }} [options]
* @returns {TcpShieldClient}
*/
static fromEnv(options = {}) {
const apiKey = process.env.TCPSHIELD_API_KEY;
if (!apiKey) {
throw new Error('TCPSHIELD_API_KEY environment variable is not set.');
}
const baseUrl = options.baseUrl || process.env.TCPSHIELD_API_URL;
return new TcpShieldClient(apiKey, { ...options, baseUrl });
}
/**
* Execute a raw request against the API.
* @param {string} path
* @param {{ method?: string; query?: Record<string, string | number | boolean | undefined | null>; body?: any; headers?: Record<string, string>; signal?: AbortSignal }} [options]
* @returns {Promise<any>}
*/
async request(path, options = {}) {
const method = options.method || 'GET';
const query = buildQueryString(options.query);
const sanitizedPath = path.startsWith('/') ? path.slice(1) : path;
const url = `${this.baseUrl}${sanitizedPath}${query}`;
const hasBody = options.body !== undefined;
const headers = {
...this.defaultHeaders,
...(hasBody ? { 'Content-Type': 'application/json' } : {}),
...(options.headers || {})
};
const controller = new AbortController();
const externalSignal = options.signal;
const timeoutHandle = setTimeout(() => controller.abort(), this.timeout);
if (externalSignal) {
if (externalSignal.aborted) {
clearTimeout(timeoutHandle);
controller.abort();
} else {
externalSignal.addEventListener('abort', () => controller.abort(), { once: true });
}
}
let response;
try {
response = await this.fetchImpl(url, {
method,
headers,
body: hasBody ? JSON.stringify(options.body) : undefined,
signal: controller.signal
});
} catch (error) {
clearTimeout(timeoutHandle);
if (error && error.name === 'AbortError') {
throw new TcpShieldApiError(`Request timed out after ${this.timeout}ms`, {
status: 408,
statusText: 'Request Timeout',
url,
method,
data: null,
headers: {}
});
}
throw error;
}
clearTimeout(timeoutHandle);
const responseText = await response.text();
const contentType = response.headers.get('content-type') || '';
let payload = null;
if (responseText) {
if (contentType.includes('application/json')) {
try {
payload = JSON.parse(responseText);
} catch (_error) {
payload = responseText;
}
} else {
payload = responseText;
}
}
if (!response.ok) {
throw new TcpShieldApiError(
`TCPShield API request failed with status ${response.status} ${response.statusText}`,
{
status: response.status,
statusText: response.statusText,
url,
method,
data: payload,
headers: Object.fromEntries(response.headers.entries())
}
);
}
return payload;
}
// Network
listNetworks() {
return this.request('/networks');
}
createNetwork(data) {
return this.request('/networks', { method: 'POST', body: data });
}
getNetwork(networkId) {
return this.request(`/networks/${networkId}`);
}
updateNetwork(networkId, data) {
return this.request(`/networks/${networkId}`, { method: 'PATCH', body: data });
}
deleteNetwork(networkId) {
return this.request(`/networks/${networkId}`, { method: 'DELETE' });
}
// Domains
listDomains(networkId) {
return this.request(`/networks/${networkId}/domains`);
}
createDomain(networkId, data) {
return this.request(`/networks/${networkId}/domains`, { method: 'POST', body: data });
}
getDomain(networkId, domainId) {
return this.request(`/networks/${networkId}/domains/${domainId}`);
}
updateDomain(networkId, domainId, data) {
return this.request(`/networks/${networkId}/domains/${domainId}`, { method: 'PATCH', body: data });
}
deleteDomain(networkId, domainId) {
return this.request(`/networks/${networkId}/domains/${domainId}`, { method: 'DELETE' });
}
preverifyDomain(networkId, data) {
return this.request(`/networks/${networkId}/domains/preverify`, { method: 'POST', body: data });
}
verifyDomain(networkId, domainId) {
return this.request(`/networks/${networkId}/domains/${domainId}/verify`);
}
// Backend sets
listBackendSets(networkId) {
return this.request(`/networks/${networkId}/backendSets`);
}
createBackendSet(networkId, data) {
return this.request(`/networks/${networkId}/backendSets`, { method: 'POST', body: data });
}
getBackendSet(networkId, setId) {
return this.request(`/networks/${networkId}/backendSets/${setId}`);
}
updateBackendSet(networkId, setId, data) {
return this.request(`/networks/${networkId}/backendSets/${setId}`, { method: 'PATCH', body: data });
}
deleteBackendSet(networkId, setId) {
return this.request(`/networks/${networkId}/backendSets/${setId}`, { method: 'DELETE' });
}
// IP Firewall
listIpFirewallEntries(networkId) {
return this.request(`/networks/${networkId}/firewall`);
}
createIpFirewallEntry(networkId, data) {
return this.request(`/networks/${networkId}/firewall`, { method: 'POST', body: data });
}
deleteIpFirewallEntry(networkId, firewallEntryId) {
return this.request(`/networks/${networkId}/firewall/${firewallEntryId}`, { method: 'DELETE' });
}
// ASN Firewall
listAsnFirewallEntries(networkId) {
return this.request(`/networks/${networkId}/asnFirewall`);
}
createAsnFirewallEntry(networkId, data) {
return this.request(`/networks/${networkId}/asnFirewall`, { method: 'POST', body: data });
}
deleteAsnFirewallEntry(networkId, firewallEntryId) {
return this.request(`/networks/${networkId}/asnFirewall/${firewallEntryId}`, { method: 'DELETE' });
}
// Country Firewall
listCountryFirewallEntries(networkId) {
return this.request(`/networks/${networkId}/countryFirewall`);
}
createCountryFirewallEntry(networkId, data) {
return this.request(`/networks/${networkId}/countryFirewall`, { method: 'POST', body: data });
}
deleteCountryFirewallEntry(networkId, firewallEntryId) {
return this.request(`/networks/${networkId}/countryFirewall/${firewallEntryId}`, { method: 'DELETE' });
}
// Bedrock Tunnels
listBedrockTunnels(networkId) {
return this.request(`/networks/${networkId}/bedrockTunnels`);
}
createBedrockTunnel(networkId, data) {
return this.request(`/networks/${networkId}/bedrockTunnels`, { method: 'POST', body: data });
}
listBedrockTunnelLocations(networkId) {
return this.request(`/networks/${networkId}/bedrockTunnels/locations`);
}
getBedrockTunnel(networkId, tunnelId) {
return this.request(`/networks/${networkId}/bedrockTunnels/${tunnelId}`);
}
updateBedrockTunnel(networkId, tunnelId, data) {
return this.request(`/networks/${networkId}/bedrockTunnels/${tunnelId}`, { method: 'PATCH', body: data });
}
deleteBedrockTunnel(networkId, tunnelId) {
return this.request(`/networks/${networkId}/bedrockTunnels/${tunnelId}`, { method: 'DELETE' });
}
// Analytics
getAnalyticsBounceRate(networkId) {
return this.request(`/networks/${networkId}/analytics/bounceRate`);
}
getAnalyticsTopDomains(networkId) {
return this.request(`/networks/${networkId}/analytics/topDomains`);
}
getAnalyticsUniqueUsers(networkId) {
return this.request(`/networks/${networkId}/analytics/uniqueUsers`);
}
getAnalyticsRetention(networkId) {
return this.request(`/networks/${networkId}/analytics/retention`);
}
getAnalyticsMitigatedCount(networkId) {
return this.request(`/networks/${networkId}/analytics/mitigatedCount`);
}
getAnalyticsMcVersionBreakdown(networkId) {
return this.request(`/networks/${networkId}/analytics/mcVersionBreakdown`);
}
// User
getUserSummary() {
return this.request('/user/summary');
}
updateUserEmail(data) {
return this.request('/user/email', { method: 'PATCH', body: data });
}
getUserApiKey() {
return this.request('/user/apikey');
}
regenerateUserApiKey() {
return this.request('/user/apikey/regenerate', { method: 'POST' });
}
updateUserGeneralInfo(data) {
return this.request('/user/updateGeneralInfo', { method: 'POST', body: data });
}
updateUserPassword(data) {
return this.request('/user/password', { method: 'POST', body: data });
}
// Sentry Tunnels
listSentryTunnels() {
return this.request('/tunnels');
}
createSentryTunnel(data) {
return this.request('/tunnels', { method: 'POST', body: data });
}
listSentryTunnelLocations() {
return this.request('/tunnels/locations');
}
getSentryTunnelBindPort() {
return this.request('/tunnels/getBindPort');
}
getSentryTunnelSetupScript(tunnelId) {
return this.request(`/tunnels/${tunnelId}/setupScript`);
}
getSentryTunnelAnalytics(tunnelId) {
return this.request(`/tunnels/${tunnelId}/analytics`);
}
getSentryTunnel(tunnelId) {
return this.request(`/tunnels/${tunnelId}`);
}
updateSentryTunnel(tunnelId, data) {
return this.request(`/tunnels/${tunnelId}`, { method: 'PUT', body: data });
}
deleteSentryTunnel(tunnelId) {
return this.request(`/tunnels/${tunnelId}`, { method: 'DELETE' });
}
// Tunnel Filters / Firewall
listTunnelFilters() {
return this.request('/tunnelFilters');
}
createTunnelFirewallRule(tunnelId, data) {
return this.request(`/tunnel/${tunnelId}/tunnelFirewall`, { method: 'POST', body: data });
}
listTunnelFirewallRules(tunnelId) {
return this.request(`/tunnel/${tunnelId}/tunnelFirewalls`);
}
getTunnelFirewallFilter(filterId) {
return this.request(`/tunnelFirewall/${filterId}`);
}
updateTunnelFirewallFilter(filterId, data) {
return this.request(`/tunnelFirewall/${filterId}`, { method: 'PUT', body: data });
}
deleteTunnelFirewallFilter(filterId) {
return this.request(`/tunnelFirewall/${filterId}`, { method: 'DELETE' });
}
}
/**
* Factory helper for dependency injection and concise setup.
* @param {string} apiKey
* @param {TcpShieldClientOptions} [options]
* @returns {TcpShieldClient}
*/
function createTcpShieldClient(apiKey, options) {
return new TcpShieldClient(apiKey, options);
}
module.exports = {
TcpShieldClient,
TcpShieldApiError,
createTcpShieldClient
};