-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocket.ts
More file actions
436 lines (410 loc) · 12.4 KB
/
socket.ts
File metadata and controls
436 lines (410 loc) · 12.4 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
/**
* @file Socket Security environment variable getters.
*/
import { envAsBoolean } from './boolean'
import { envAsNumber } from './number'
import { getEnvValue } from './rewire'
/**
* SOCKET_ACCEPT_RISKS environment variable getter. Whether to accept all Socket
* Security risks.
*
* @example
* ;```typescript
* import { getSocketAcceptRisks } from '@socketsecurity/lib/env/socket'
*
* if (getSocketAcceptRisks()) {
* console.log('All risks accepted')
* }
* ```
*
* @returns `true` if risks are accepted, `false` otherwise
*/
export function getSocketAcceptRisks(): boolean {
return envAsBoolean(getEnvValue('SOCKET_ACCEPT_RISKS'))
}
/**
* SOCKET_API_BASE_URL environment variable getter. Socket Security API base
* URL.
*
* @example
* ;```typescript
* import { getSocketApiBaseUrl } from '@socketsecurity/lib/env/socket'
*
* const baseUrl = getSocketApiBaseUrl()
* // e.g. 'https://api.socket.dev' or undefined
* ```
*
* @returns The API base URL, or `undefined` if not set
*/
export function getSocketApiBaseUrl(): string | undefined {
return getEnvValue('SOCKET_API_BASE_URL')
}
/**
* SOCKET_API_PROXY environment variable getter. Proxy URL for Socket Security
* API requests.
*
* @example
* ;```typescript
* import { getSocketApiProxy } from '@socketsecurity/lib/env/socket'
*
* const proxy = getSocketApiProxy()
* // e.g. 'http://proxy.example.com:8080' or undefined
* ```
*
* @returns The API proxy URL, or `undefined` if not set
*/
export function getSocketApiProxy(): string | undefined {
return getEnvValue('SOCKET_API_PROXY')
}
/**
* SOCKET_API_TIMEOUT environment variable getter. Timeout in milliseconds for
* Socket Security API requests.
*
* @example
* ;```typescript
* import { getSocketApiTimeout } from '@socketsecurity/lib/env/socket'
*
* const timeout = getSocketApiTimeout()
* // e.g. 30000 or 0 if not set
* ```
*
* @returns The timeout in milliseconds, or `0` if not set
*/
export function getSocketApiTimeout(): number {
return envAsNumber(getEnvValue('SOCKET_API_TIMEOUT'))
}
/**
* Socket Security API authentication token.
*
* Checks the canonical SOCKET_API_TOKEN first, then a chain of legacy aliases
* for full v1.x backward compatibility plus the bare SOCKET_API_KEY form used
* by older MCP-server installs:
*
* SOCKET_API_TOKEN → SOCKET_API_KEY → SOCKET_CLI_API_TOKEN → SOCKET_CLI_API_KEY
* → SOCKET_SECURITY_API_TOKEN → SOCKET_SECURITY_API_KEY.
*
* @example
* ;```typescript
* import { getSocketApiToken } from '@socketsecurity/lib/env/socket'
*
* const token = getSocketApiToken()
* // e.g. a Socket API token string or undefined
* ```
*
* @returns The API token, or `undefined` if no name in the chain is set
*/
export function getSocketApiToken(): string | undefined {
return (
getEnvValue('SOCKET_API_TOKEN') ||
getEnvValue('SOCKET_API_TOKEN') ||
getEnvValue('SOCKET_CLI_API_TOKEN') ||
getEnvValue('SOCKET_CLI_API_KEY') ||
getEnvValue('SOCKET_API_TOKEN') ||
getEnvValue('SOCKET_API_TOKEN')
)
}
/**
* Socket API endpoint URL override. SOCKET_API_URL — when set, replaces the
* app's default Socket API base. Each consumer composes its own default (e.g.
* socket-mcp's depscore endpoint vs. socket-cli's scan endpoints), so this
* helper returns the raw override and lets the caller fall back.
*
* @example
* ;```typescript
* import { getSocketApiUrl } from '@socketsecurity/lib/env/socket'
*
* const apiUrl = getSocketApiUrl() ?? 'https://api.socket.dev/v0/...'
* ```
*
* @returns The API URL override, or `undefined` if not set
*/
export function getSocketApiUrl(): string | undefined {
return getEnvValue('SOCKET_API_URL')
}
/**
* Git branch name for the current Socket scan. SOCKET_BRANCH_NAME — set by CI /
* GHA to label the scan with the source branch. Used by basics and coana.
*
* @example
* ;```typescript
* import { getSocketBranchName } from '@socketsecurity/lib/env/socket'
*
* const branch = getSocketBranchName()
* ```
*
* @returns The branch name, or `undefined` if not set
*/
export function getSocketBranchName(): string | undefined {
return getEnvValue('SOCKET_BRANCH_NAME')
}
/**
* SOCKET_CACACHE_DIR environment variable getter. Overrides the default Socket
* cacache directory location.
*
* @example
* ;```typescript
* import { getSocketCacacheDirEnv } from '@socketsecurity/lib/env/socket'
*
* const dir = getSocketCacacheDirEnv()
* // e.g. '/tmp/.socket-cache' or undefined
* ```
*
* @returns The cacache directory path, or `undefined` if not set
*/
export function getSocketCacacheDirEnv(): string | undefined {
return getEnvValue('SOCKET_CACACHE_DIR')
}
/**
* SOCKET_CLOUD_AUTH_URL environment variable getter. SocketCloud OAuth
* authorization URL. depot's better-auth provider config reads this to override
* the default authorize endpoint when pointing at a staging or self-hosted
* SocketCloud server.
*
* @example
* ;```typescript
* import { getSocketCloudAuthUrl } from '@socketsecurity/lib/env/socket'
*
* const url =
* getSocketCloudAuthUrl() ?? 'https://api.socket.dev/v1/oauth2/authorize'
* ```
*
* @returns The override URL, or `undefined` when default applies
*/
export function getSocketCloudAuthUrl(): string | undefined {
return getEnvValue('SOCKET_CLOUD_AUTH_URL')
}
/**
* SOCKET_CLOUD_CLIENT_ID environment variable getter. OAuth client ID for
* SocketCloud. Required (alongside SOCKET_CLOUD_CLIENT_SECRET) to enable the
* SocketCloud auth provider. Returns `undefined` when not configured — callers
* should treat that as "SocketCloud auth disabled".
*
* @returns The client ID, or `undefined` if not set
*/
export function getSocketCloudClientId(): string | undefined {
return getEnvValue('SOCKET_CLOUD_CLIENT_ID')
}
/**
* SOCKET_CLOUD_CLIENT_SECRET environment variable getter. OAuth client secret
* for SocketCloud. Required (alongside SOCKET_CLOUD_CLIENT_ID) to enable the
* SocketCloud auth provider. Returns `undefined` when not configured.
*
* @returns The client secret, or `undefined` if not set
*/
export function getSocketCloudClientSecret(): string | undefined {
return getEnvValue('SOCKET_CLOUD_CLIENT_SECRET')
}
/**
* SOCKET_CLOUD_INTROSPECT_URL environment variable getter. SocketCloud OAuth
* token-introspection URL. depot uses this to verify access tokens against the
* SocketCloud authorization server. Defaults handled at the call site.
*
* @returns The override URL, or `undefined` when default applies
*/
export function getSocketCloudIntrospectUrl(): string | undefined {
return getEnvValue('SOCKET_CLOUD_INTROSPECT_URL')
}
/**
* SOCKET_CLOUD_TOKEN_URL environment variable getter. SocketCloud OAuth
* token-exchange URL. depot's better-auth provider config reads this to
* override the default token endpoint.
*
* @returns The override URL, or `undefined` when default applies
*/
export function getSocketCloudTokenUrl(): string | undefined {
return getEnvValue('SOCKET_CLOUD_TOKEN_URL')
}
/**
* SOCKET_CLOUD_USERINFO_URL environment variable getter. SocketCloud OAuth
* userinfo endpoint. depot uses this to fetch the authenticated principal's
* profile after an OAuth code exchange.
*
* @returns The override URL, or `undefined` when default applies
*/
export function getSocketCloudUserinfoUrl(): string | undefined {
return getEnvValue('SOCKET_CLOUD_USERINFO_URL')
}
/**
* SOCKET_CONFIG environment variable getter. Socket Security configuration file
* path.
*
* @example
* ;```typescript
* import { getSocketConfig } from '@socketsecurity/lib/env/socket'
*
* const config = getSocketConfig()
* // e.g. '/tmp/project/socket.yml' or undefined
* ```
*
* @returns The config file path, or `undefined` if not set
*/
export function getSocketConfig(): string | undefined {
return getEnvValue('SOCKET_CONFIG')
}
/**
* SOCKET_DEBUG environment variable getter. Controls Socket-specific debug
* output.
*
* @example
* ;```typescript
* import { getSocketDebug } from '@socketsecurity/lib/env/socket'
*
* const debug = getSocketDebug()
* // e.g. '*' or 'api' or undefined
* ```
*
* @returns The Socket debug filter, or `undefined` if not set
*/
export function getSocketDebug(): string | undefined {
return getEnvValue('SOCKET_DEBUG')
}
/**
* SOCKET_DLX_DIR environment variable getter. Overrides the default Socket DLX
* directory location.
*
* @example
* ;```typescript
* import { getSocketDlxDirEnv } from '@socketsecurity/lib/env/socket'
*
* const dlxDir = getSocketDlxDirEnv()
* // e.g. '/tmp/.socket-dlx' or undefined
* ```
*
* @returns The DLX directory path, or `undefined` if not set
*/
export function getSocketDlxDirEnv(): string | undefined {
return getEnvValue('SOCKET_DLX_DIR')
}
/**
* SOCKET_HOME environment variable getter. Socket Security home directory path.
*
* @example
* ;```typescript
* import { getSocketHome } from '@socketsecurity/lib/env/socket'
*
* const home = getSocketHome()
* // e.g. '/tmp/.socket' or undefined
* ```
*
* @returns The Socket home directory, or `undefined` if not set
*/
export function getSocketHome(): string | undefined {
return getEnvValue('SOCKET_HOME')
}
/**
* SOCKET_NO_API_TOKEN environment variable getter. Whether to skip Socket
* Security API token requirement.
*
* @example
* ;```typescript
* import { getSocketNoApiToken } from '@socketsecurity/lib/env/socket'
*
* if (getSocketNoApiToken()) {
* console.log('API token requirement skipped')
* }
* ```
*
* @returns `true` if the API token requirement is skipped, `false` otherwise
*/
export function getSocketNoApiToken(): boolean {
return envAsBoolean(getEnvValue('SOCKET_NO_API_TOKEN'))
}
/**
* SOCKET_NPM_REGISTRY environment variable getter. Socket NPM registry URL
* (alternative name).
*
* @example
* ;```typescript
* import { getSocketNpmRegistry } from '@socketsecurity/lib/env/socket'
*
* const registry = getSocketNpmRegistry()
* // e.g. 'https://npm.socket.dev/' or undefined
* ```
*
* @returns The Socket NPM registry URL, or `undefined` if not set
*/
export function getSocketNpmRegistry(): string | undefined {
return getEnvValue('SOCKET_NPM_REGISTRY')
}
/**
* SOCKET_ORG_SLUG environment variable getter. Socket Security organization
* slug identifier.
*
* @example
* ;```typescript
* import { getSocketOrgSlug } from '@socketsecurity/lib/env/socket'
*
* const slug = getSocketOrgSlug()
* // e.g. 'my-org' or undefined
* ```
*
* @returns The organization slug, or `undefined` if not set
*/
export function getSocketOrgSlug(): string | undefined {
return getEnvValue('SOCKET_ORG_SLUG')
}
/**
* SOCKET_REGISTRY_URL environment variable getter. Socket Registry URL for
* package installation.
*
* @example
* ;```typescript
* import { getSocketRegistryUrl } from '@socketsecurity/lib/env/socket'
*
* const registryUrl = getSocketRegistryUrl()
* // e.g. 'https://registry.socket.dev/' or undefined
* ```
*
* @returns The Socket registry URL, or `undefined` if not set
*/
export function getSocketRegistryUrl(): string | undefined {
return getEnvValue('SOCKET_REGISTRY_URL')
}
/**
* Repository name for the current Socket scan. SOCKET_REPOSITORY_NAME
* (canonical) — set by CI / GHA to label the scan with the source repository.
* Also accepts `SOCKET_REPO_NAME` as an alias. Used by basics and coana.
*
* @example
* ;```typescript
* import { getSocketRepositoryName } from '@socketsecurity/lib/env/socket'
*
* const repo = getSocketRepositoryName()
* ```
*
* @returns The repository name, or `undefined` if neither is set
*/
export function getSocketRepositoryName(): string | undefined {
return (
getEnvValue('SOCKET_REPOSITORY_NAME') ||
// Used by Coana.
getEnvValue('SOCKET_REPO_NAME')
)
}
/**
* SOCKET_VIEW_ALL_RISKS environment variable getter. Whether to view all Socket
* Security risks.
*
* @example
* ;```typescript
* import { getSocketViewAllRisks } from '@socketsecurity/lib/env/socket'
*
* if (getSocketViewAllRisks()) {
* console.log('Viewing all risks')
* }
* ```
*
* @returns `true` if viewing all risks, `false` otherwise
*/
export function getSocketViewAllRisks(): boolean {
return envAsBoolean(getEnvValue('SOCKET_VIEW_ALL_RISKS'))
}
export {
getMcpHttpMode,
getMcpPort,
getSocketOauthIntrospectionClientId,
getSocketOauthIntrospectionClientSecret,
getSocketOauthIssuer,
getSocketOauthRequiredScopes,
getTrustProxy,
} from './socket-mcp'