-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.js
653 lines (565 loc) · 20.7 KB
/
index.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
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
'use strict'
const fs = require('node:fs')
const path = require('node:path')
const { pipeline } = require('node:stream/promises')
const { ErrorWithCause } = require('pony-cause')
const pkg = require('./package.json')
/** @typedef {keyof import('./types/api').operations} SocketSdkOperations */
/**
* @template {SocketSdkOperations} T
* @typedef {import('./types/api-helpers').OpReturnType<import('./types/api').operations[T]>} SocketSdkReturnType
*/
/**
* @template {SocketSdkOperations} T
* @typedef {import('./types/api-helpers').OpErrorType<import('./types/api').operations[T]>} SocketSdkErrorType
*/
/**
* @template {SocketSdkOperations} T
* @typedef {SocketSdkReturnType<T> | SocketSdkErrorType<T>} SocketSdkResultType
*/
/**
* @typedef SocketSdkOptions
* @property {import('got').Agents} [agent]
* @property {string} [baseUrl]
* @property {string} [userAgent]
*/
class SocketSdk {
/** @type {import('got').Got|undefined} */
#client
/** @type {typeof import('got').HTTPError|undefined} */
#HTTPError
/** @type {import('got').ExtendOptions} */
#gotOptions
/**
* @param {string} apiKey
* @param {SocketSdkOptions} options
* @throws {SocketSdkAuthError}
*/
constructor (apiKey, options = {}) {
const {
agent,
baseUrl = 'https://api.socket.dev/v0/',
userAgent,
} = options
this.#gotOptions = {
prefixUrl: baseUrl,
retry: { limit: 0 },
username: apiKey,
enableUnixSockets: false, // See https://github.com/sindresorhus/got/blob/main/documentation/2-options.md#enableunixsockets
headers: {
'user-agent': (userAgent ? userAgent + ' ' : '') + createUserAgentFromPkgJson(pkg),
},
...(agent ? { agent } : {}),
}
}
/**
* @returns {Promise<import('got').Got>}
*/
async #getClient () {
if (!this.#client) {
const {
default: got,
HTTPError,
} = await import('got')
this.#HTTPError = HTTPError
this.#client = got.extend(this.#gotOptions)
}
return this.#client
}
/**
* @param {string[]} filePaths
* @param {string} pathsRelativeTo
* @param {{ [key: string]: boolean }} [issueRules]
* @returns {Promise<SocketSdkResultType<'createReport'>>}
*/
async createReportFromFilePaths (filePaths, pathsRelativeTo = '.', issueRules) {
const basePath = path.resolve(process.cwd(), pathsRelativeTo)
const absoluteFilePaths = filePaths.map(filePath => path.resolve(basePath, filePath))
const [
{ FormData, Blob },
{ fileFromPath },
client
] = await Promise.all([
import('formdata-node'),
import('formdata-node/file-from-path'),
this.#getClient(),
])
const body = new FormData()
if (issueRules) {
const issueRulesBlob = new Blob([JSON.stringify(issueRules)], { type: 'application/json' })
body.set('issueRules', issueRulesBlob, 'issueRules')
}
const files = await Promise.all(absoluteFilePaths.map(absoluteFilePath => fileFromPath(absoluteFilePath)))
for (let i = 0, length = files.length; i < length; i++) {
const absoluteFilePath = absoluteFilePaths[i]
if (absoluteFilePath) {
const relativeFilePath = path.relative(basePath, absoluteFilePath)
body.set(relativeFilePath, files[i])
}
}
try {
const data = await client.put('report/upload', { body }).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'createReport'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} pkgName
* @param {string} version
* @returns {Promise<SocketSdkResultType<'getScoreByNPMPackage'>>}
*/
async getScoreByNPMPackage (pkgName, version) {
const pkgParam = encodeURIComponent(pkgName)
const versionParam = encodeURIComponent(version)
try {
const client = await this.#getClient()
const data = await client.get(`npm/${pkgParam}/${versionParam}/score`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getScoreByNPMPackage'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} pkgName
* @param {string} version
* @returns {Promise<SocketSdkResultType<'getIssuesByNPMPackage'>>}
*/
async getIssuesByNPMPackage (pkgName, version) {
const pkgParam = encodeURIComponent(pkgName)
const versionParam = encodeURIComponent(version)
try {
const client = await this.#getClient()
const data = await client.get(`npm/${pkgParam}/${versionParam}/issues`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getIssuesByNPMPackage'>} */ (this.#handleApiError(err))
}
}
/** @returns {Promise<SocketSdkResultType<'getReportList'>>} */
async getReportList () {
try {
const client = await this.#getClient()
const data = await client.get('report/list').json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getReportList'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} id
* @returns {Promise<SocketSdkResultType<'getReport'>>}
*/
async getReport (id) {
const idParam = encodeURIComponent(id)
try {
const client = await this.#getClient()
const data = await client.get(`report/view/${idParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getReport'>} */ (this.#handleApiError(err))
}
}
/**
* @returns {Promise<SocketSdkResultType<'getReportSupportedFiles'>>}
*/
async getReportSupportedFiles () {
try {
const client = await this.#getClient()
const data = await client.get('report/supported').json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getReportSupportedFiles'>} */ (this.#handleApiError(err))
}
}
/** @returns {Promise<SocketSdkResultType<'getQuota'>>} */
async getQuota () {
try {
const client = await this.#getClient()
const data = await client.get('quota').json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getQuota'>} */ (this.#handleApiError(err))
}
}
/** @returns {Promise<SocketSdkResultType<'getOrganizations'>>} */
async getOrganizations () {
try {
const client = await this.#getClient()
const data = await client.get('organizations').json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getQuota'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} time
* @returns {Promise<SocketSdkResultType<'getOrgAnalytics'>>}
*/
async getOrgAnalytics (time) {
const timeParam = encodeURIComponent(time)
try {
const client = await this.#getClient()
const data = await client.get(`analytics/org/${timeParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getOrgAnalytics'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} repo
* @param {string} time
* @returns {Promise<SocketSdkResultType<'getRepoAnalytics'>>}
*/
async getRepoAnalytics (repo, time) {
const timeParam = encodeURIComponent(time)
const repoParam = encodeURIComponent(repo)
try {
const client = await this.#getClient()
const data = await client.get(`analytics/repo/${repoParam}/${timeParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getRepoAnalytics'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {{[key: string]: any }} queryParams
* @returns {Promise<SocketSdkResultType<'getOrgFullScanList'>>}
*/
async getOrgFullScanList (orgSlug, queryParams) {
const orgSlugParam = encodeURIComponent(orgSlug)
const formattedQueryParams = new URLSearchParams(queryParams)
try {
const client = await this.#getClient()
const data = await client.get(`orgs/${orgSlugParam}/full-scans?${formattedQueryParams}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getOrgFullScanList'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {string} fullScanId
* @param {string | undefined} file
* @returns {Promise<SocketSdkResultType<'getOrgFullScan'>>}
*/
async getOrgFullScan (orgSlug, fullScanId, file) {
const orgSlugParam = encodeURIComponent(orgSlug)
const fullScanIdParam = encodeURIComponent(fullScanId)
try {
const client = await this.#getClient()
let readStream
if (file) {
readStream = await pipeline(
client.stream(`orgs/${orgSlugParam}/full-scans/${fullScanIdParam}`),
fs.createWriteStream(file)
)
} else {
readStream = await client.stream(`orgs/${orgSlugParam}/full-scans/${fullScanIdParam}`).pipe(process.stdout)
}
return { success: true, status: 200, data: readStream }
} catch (err) {
return /** @type {SocketSdkErrorType<'getOrgFullScan'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {string} fullScanId
* @returns {Promise<SocketSdkResultType<'getOrgFullScanMetadata'>>}
*/
async getOrgFullScanMetadata (orgSlug, fullScanId) {
const orgSlugParam = encodeURIComponent(orgSlug)
const fullScanIdParam = encodeURIComponent(fullScanId)
try {
const client = await this.#getClient()
const data = await client.get(`orgs/${orgSlugParam}/full-scans/${fullScanIdParam}/metadata`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getOrgFullScanMetadata'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {string} fullScanId
* @returns {Promise<SocketSdkResultType<'deleteOrgFullScan'>>}
*/
async deleteOrgFullScan (orgSlug, fullScanId) {
const orgSlugParam = encodeURIComponent(orgSlug)
const fullScanIdParam = encodeURIComponent(fullScanId)
try {
const client = await this.#getClient()
const data = await client.delete(`orgs/${orgSlugParam}/full-scans/${fullScanIdParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'deleteOrgFullScan'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {{[key: string]: any }} queryParams
* @param {string[]} filePaths
* @param {string} pathsRelativeTo
* @returns {Promise<SocketSdkResultType<'CreateOrgFullScan'>>}
*/
async createOrgFullScan (orgSlug, queryParams, filePaths, pathsRelativeTo = '.') {
const basePath = path.resolve(process.cwd(), pathsRelativeTo)
const absoluteFilePaths = filePaths.map(filePath => path.resolve(basePath, filePath))
const orgSlugParam = encodeURIComponent(orgSlug)
const formattedQueryParams = new URLSearchParams(queryParams)
const [
{ FormData },
{ fileFromPath },
client
] = await Promise.all([
import('formdata-node'),
import('formdata-node/file-from-path'),
this.#getClient(),
])
const body = new FormData()
const files = await Promise.all(absoluteFilePaths.map(absoluteFilePath => fileFromPath(absoluteFilePath)))
for (let i = 0, length = files.length; i < length; i++) {
const absoluteFilePath = absoluteFilePaths[i]
if (absoluteFilePath) {
const relativeFilePath = path.relative(basePath, absoluteFilePath)
body.set(relativeFilePath, files[i])
}
}
try {
const data = await client.post(`orgs/${orgSlugParam}/full-scans?${formattedQueryParams}`, { body }).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'CreateOrgFullScan'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {{[key: string]: any }} queryParams
* @returns {Promise<SocketSdkResultType<'getAuditLogEvents'>>}
*/
async getAuditLogEvents (orgSlug, queryParams) {
const orgSlugParam = encodeURIComponent(orgSlug)
const formattedQueryParam = new URLSearchParams(queryParams)
try {
const client = await this.#getClient()
const data = await client.get(`orgs/${orgSlugParam}/audit-log?${formattedQueryParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getAuditLogEvents'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {string} repoSlug
* @returns {Promise<SocketSdkResultType<'getOrgRepo'>>}
*/
async getOrgRepo (orgSlug, repoSlug) {
const orgSlugParam = encodeURIComponent(orgSlug)
const repoSlugParam = encodeURIComponent(repoSlug)
try {
const client = await this.#getClient()
const data = await client.get(`orgs/${orgSlugParam}/repos/${repoSlugParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getOrgRepo'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {string} repoSlug
* @returns {Promise<SocketSdkResultType<'deleteOrgRepo'>>}
*/
async deleteOrgRepo (orgSlug, repoSlug) {
const orgSlugParam = encodeURIComponent(orgSlug)
const repoSlugParam = encodeURIComponent(repoSlug)
try {
const client = await this.#getClient()
const data = await client.delete(`orgs/${orgSlugParam}/repos/${repoSlugParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'deleteOrgRepo'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {{[key: string]: any }} queryParams
* @returns {Promise<SocketSdkResultType<'getOrgRepoList'>>}
*/
async getOrgRepoList (orgSlug, queryParams) {
const orgSlugParam = encodeURIComponent(orgSlug)
const formattedQueryParam = new URLSearchParams(queryParams)
try {
const client = await this.#getClient()
const data = await client.get(`orgs/${orgSlugParam}/repos?${formattedQueryParam}`).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'getOrgRepoList'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {{[key: string]: any }} params
* @returns {Promise<SocketSdkResultType<'createOrgRepo'>>}
*/
async createOrgRepo (orgSlug, params) {
const orgSlugParam = encodeURIComponent(orgSlug)
try {
const client = await this.#getClient()
const data = await client.post(`orgs/${orgSlugParam}/repos`, { json: params }).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'createOrgRepo'>} */ (this.#handleApiError(err))
}
}
/**
* @param {string} orgSlug
* @param {string} repoSlug
* @param {{[key: string]: any }} params
* @returns {Promise<SocketSdkResultType<'updateOrgRepo'>>}
*/
async updateOrgRepo (orgSlug, repoSlug, params) {
const orgSlugParam = encodeURIComponent(orgSlug)
try {
const client = await this.#getClient()
const data = await client.post(`orgs/${orgSlugParam}/repos/${repoSlug}`, { json: params }).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'updateOrgRepo'>} */ (this.#handleApiError(err))
}
}
/**
* @param {{[key: string]: string }} queryParams
* @param {{components: {purl: string}[] }} components
* @returns {Promise<SocketSdkResultType<'batchPackageFetch'>>}
*/
async batchPackageFetch (queryParams, components) {
const formattedQueryParam = new URLSearchParams(queryParams)
try {
const client = await this.#getClient()
const data = await client.post(`purl?${formattedQueryParam}`, { json: components })
// Parse the ndjson response
const /** @type {{[key: string]: any}[]} */ resp_json = []
const ndjson = data.body.split('\n')
ndjson.map(o => o && resp_json.push(JSON.parse(o)))
return { success: true, status: 200, data: resp_json }
} catch (err) {
return /** @type {SocketSdkErrorType<'batchPackageFetch'>} */ (this.#handleApiError(err))
}
}
/**
* @param {{[key: string]: number }} params
* @returns {Promise<SocketSdkResultType<'searchDependencies'>>}
*/
async searchDependencies (params) {
try {
const client = await this.#getClient()
const data = await client.post('dependencies/search', { json: params }).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'searchDependencies'>} */ (this.#handleApiError(err))
}
}
/**
* @param {{[key: string]: string }} params
* @param {string[]} filePaths
* @param {string} pathsRelativeTo
* @returns {Promise<SocketSdkResultType<'createDependenciesSnapshot'>>}
*/
async createDependenciesSnapshot (params, filePaths, pathsRelativeTo = '.') {
const basePath = path.resolve(process.cwd(), pathsRelativeTo)
const absoluteFilePaths = filePaths.map(filePath => path.resolve(basePath, filePath))
const formattedQueryParams = new URLSearchParams(params)
const [
{ FormData },
{ fileFromPath },
client
] = await Promise.all([
import('formdata-node'),
import('formdata-node/file-from-path'),
this.#getClient(),
])
const body = new FormData()
const files = await Promise.all(absoluteFilePaths.map(absoluteFilePath => fileFromPath(absoluteFilePath)))
for (let i = 0, length = files.length; i < length; i++) {
const absoluteFilePath = absoluteFilePaths[i]
if (absoluteFilePath) {
const relativeFilePath = path.relative(basePath, absoluteFilePath)
body.set(relativeFilePath, files[i])
}
}
try {
const data = await client.post(`dependencies/upload?${formattedQueryParams}`, { body }).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'createDependenciesSnapshot'>} */ (this.#handleApiError(err))
}
}
/**
* @param {Array<{ organization?: string }>} selectors
* @returns {Promise<SocketSdkResultType<'postSettings'>>}
*/
async postSettings (selectors) {
try {
const client = await this.#getClient()
const data = await client.post('settings', {
json: selectors
}).json()
return { success: true, status: 200, data }
} catch (err) {
return /** @type {SocketSdkErrorType<'postSettings'>} */ (this.#handleApiError(err))
}
}
/**
* @param {unknown} err
* @returns {{ success: false, status: number, error: Record<string,unknown> }}
*/
#handleApiError (err) {
if (this.#HTTPError && err instanceof this.#HTTPError) {
if (err.response.statusCode >= 500) {
throw new ErrorWithCause('API returned an error', { cause: err })
}
return {
success: false,
status: err.response.statusCode,
error: this.#getApiErrorDescription(err)
}
}
throw new ErrorWithCause('Unexpected error when calling API', { cause: err })
}
/**
* @param {import('got').HTTPError} err
* @returns {Record<string,unknown>}
*/
#getApiErrorDescription (err) {
/** @type {unknown} */
let rawBody
try {
rawBody = JSON.parse(/** @type {string} */ (err.response.body))
} catch (cause) {
throw new ErrorWithCause('Could not parse API error response', { cause })
}
const errorDescription = ensureObject(rawBody) ? rawBody['error'] : undefined
if (!ensureObject(errorDescription)) {
throw new Error('Invalid body on API error response')
}
return errorDescription
}
}
/**
* @param {unknown} value
* @returns {value is { [key: string]: unknown }}
*/
function ensureObject (value) {
return !!(value && typeof value === 'object' && !Array.isArray(value))
}
/**
* @param {{ name: string, version: string, homepage?: string }} pkgData Package.json data to base the User-Agent on
* @returns {string}
*/
function createUserAgentFromPkgJson (pkgData) {
return `${pkgData.name.replace('@', '').replace('/', '-')}/${pkgData.version}` + (pkgData.homepage ? ` (${pkgData.homepage})` : '')
}
module.exports = {
createUserAgentFromPkgJson,
SocketSdk,
}