@@ -7,24 +7,40 @@ import { asBold, asPrimary } from './utils/format'
7
7
export let apiKey = process . env . E2B_API_KEY
8
8
export let accessToken = process . env . E2B_ACCESS_TOKEN
9
9
10
- const authErrorBox = ( keyName : string ) => boxen . default (
11
- `You must be logged in to use this command. Run ${ asBold ( 'e2b auth login' ) } .
10
+ const authErrorBox = ( keyName : string ) => {
11
+ let link
12
+ let msg
13
+ switch ( keyName ) {
14
+ case 'E2B_API_KEY' :
15
+ link = 'https://e2b.dev/dashboard?tab=keys'
16
+ msg = 'API key'
12
17
13
- If you are seeing this message in CI/CD you may need to set the ${ asBold (
14
- `${ keyName } `
15
- ) } environment variable.
16
- Visit ${ asPrimary (
17
- 'https://e2b.dev/docs/getting-started/api-key'
18
- ) } to get the access token.`,
19
- {
20
- width : 70 ,
21
- float : 'center' ,
22
- padding : 0.5 ,
23
- margin : 1 ,
24
- borderStyle : 'round' ,
25
- borderColor : 'redBright' ,
18
+ case 'E2B_ACCESS_TOKEN' :
19
+ link = 'https://e2b.dev/dashboard?tab=personal'
20
+ msg = 'access token'
21
+ }
22
+ // throwing error in default in switch statement results in unreachable code,
23
+ // so we need to check if link and msg are defined here instead
24
+ if ( ! link || ! msg ) {
25
+ throw new Error ( `Unknown key name: ${ keyName } ` )
26
26
}
27
- )
27
+ return boxen . default (
28
+ `You must be logged in to use this command. Run ${ asBold ( 'e2b auth login' ) } .
29
+
30
+ If you are seeing this message in CI/CD you may need to set the ${ asBold (
31
+ `${ keyName } `
32
+ ) } environment variable.
33
+ Visit ${ asPrimary ( link ) } to get the ${ msg } .` ,
34
+ {
35
+ width : 70 ,
36
+ float : 'center' ,
37
+ padding : 0.5 ,
38
+ margin : 1 ,
39
+ borderStyle : 'round' ,
40
+ borderColor : 'redBright' ,
41
+ }
42
+ )
43
+ }
28
44
29
45
export function ensureAPIKey ( ) {
30
46
// If apiKey is not already set (either from env var or from user config), try to get it from config file
0 commit comments