@@ -8,19 +8,20 @@ import {
8
8
} from 'jose' ;
9
9
import { PassageBase , PassageInstanceConfig } from '../PassageBase' ;
10
10
import { PassageError } from '../PassageError' ;
11
- import { CreateMagicLinkRequest , MagicLink , MagicLinksApi , ResponseError } from '../../generated' ;
11
+ import { MagicLink , MagicLinksApi } from '../../generated' ;
12
+ import { CreateMagicLinkArgs } from './types' ;
12
13
13
14
/**
14
15
* Auth class that provides methods for validating JWTs and creating Magic Links.
15
16
*/
16
17
export class Auth extends PassageBase {
17
- private jwks : ( protectedHeader ?: JWSHeaderParameters , token ?: FlattenedJWSInput ) => Promise < KeyLike > ;
18
+ private readonly jwks : ( protectedHeader ?: JWSHeaderParameters , token ?: FlattenedJWSInput ) => Promise < KeyLike > ;
18
19
19
20
/**
20
21
* Auth class constructor.
21
22
* @param {PassageInstanceConfig } config config properties for Passage instance
22
23
*/
23
- constructor ( protected config : PassageInstanceConfig ) {
24
+ public constructor ( protected config : PassageInstanceConfig ) {
24
25
super ( config ) ;
25
26
this . jwks = createRemoteJWKSet (
26
27
new URL ( `https://auth.passage.id/v1/apps/${ this . config . appId } /.well-known/jwks.json` ) ,
@@ -40,52 +41,48 @@ export class Auth extends PassageBase {
40
41
try {
41
42
const { kid } = decodeProtectedHeader ( jwt ) ;
42
43
if ( ! kid ) {
43
- throw new PassageError ( 'Could not find valid cookie for authentication.' ) ;
44
+ throw new PassageError ( 'Could not find valid cookie for authentication. You must catch this error. ' ) ;
44
45
}
45
46
46
47
const {
47
48
payload : { sub : userId , aud } ,
48
49
} = await jwtVerify ( jwt , this . jwks ) ;
49
50
50
51
if ( ! userId ) {
51
- throw new PassageError ( 'Could not validate auth token.' ) ;
52
+ throw new PassageError ( 'Could not validate auth token. You must catch this error. ' ) ;
52
53
}
53
54
if ( Array . isArray ( aud ) ) {
54
55
if ( ! aud . includes ( this . config . appId ) ) {
55
- throw new Error ( 'Incorrect app ID claim in token.' ) ;
56
+ throw new Error ( 'Incorrect app ID claim in token. You must catch this error. ' ) ;
56
57
}
57
58
}
58
59
return userId ;
59
60
} catch ( e ) {
60
61
if ( e instanceof Error ) {
61
- throw new PassageError ( `Could not verify token: ${ e . toString ( ) } .` ) ;
62
+ throw new PassageError ( `Could not verify token: ${ e . toString ( ) } . You must catch this error. ` ) ;
62
63
}
63
64
64
- throw new PassageError ( `Could not verify token.` ) ;
65
+ throw new PassageError ( `Could not verify token. You must catch this error. ` ) ;
65
66
}
66
67
}
67
68
68
69
/**
69
70
* Create a Magic Link for your app.
70
71
*
71
- * @param {MagicLinkRequest } magicLinkReq options for creating a MagicLink.
72
+ * @param {CreateMagicLinkArgs } args options for creating a MagicLink.
72
73
* @return {Promise<MagicLink> } Passage MagicLink object
73
74
*/
74
- public async createMagicLink ( magicLinkReq : CreateMagicLinkRequest ) : Promise < MagicLink > {
75
+ public async createMagicLink ( args : CreateMagicLinkArgs ) : Promise < MagicLink > {
75
76
try {
76
77
const magicLinksApi = new MagicLinksApi ( this . config . apiConfiguration ) ;
77
78
const response = await magicLinksApi . createMagicLink ( {
78
79
appId : this . config . appId ,
79
- createMagicLinkRequest : magicLinkReq ,
80
+ createMagicLinkRequest : args ,
80
81
} ) ;
81
82
82
83
return response . magic_link ;
83
84
} catch ( err ) {
84
- if ( err instanceof ResponseError ) {
85
- throw await PassageError . fromResponseError ( err , 'Could not create a magic link for this app' ) ;
86
- }
87
-
88
- throw err ;
85
+ throw await this . parseError ( err , 'Could not create a magic link for this app' ) ;
89
86
}
90
87
}
91
88
}
0 commit comments