Skip to content

Commit 5680695

Browse files
authored
Merge branch 'main' into PSG-5450-remove-deploy-workflow
2 parents 246b394 + 0cd94ec commit 5680695

File tree

13 files changed

+97
-125
lines changed

13 files changed

+97
-125
lines changed

src/classes/Auth/Auth.ts

+13-16
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ import {
88
} from 'jose';
99
import { PassageBase, PassageInstanceConfig } from '../PassageBase';
1010
import { PassageError } from '../PassageError';
11-
import { CreateMagicLinkRequest, MagicLink, MagicLinksApi, ResponseError } from '../../generated';
11+
import { MagicLink, MagicLinksApi } from '../../generated';
12+
import { CreateMagicLinkArgs } from './types';
1213

1314
/**
1415
* Auth class that provides methods for validating JWTs and creating Magic Links.
1516
*/
1617
export class Auth extends PassageBase {
17-
private jwks: (protectedHeader?: JWSHeaderParameters, token?: FlattenedJWSInput) => Promise<KeyLike>;
18+
private readonly jwks: (protectedHeader?: JWSHeaderParameters, token?: FlattenedJWSInput) => Promise<KeyLike>;
1819

1920
/**
2021
* Auth class constructor.
2122
* @param {PassageInstanceConfig} config config properties for Passage instance
2223
*/
23-
constructor(protected config: PassageInstanceConfig) {
24+
public constructor(protected config: PassageInstanceConfig) {
2425
super(config);
2526
this.jwks = createRemoteJWKSet(
2627
new URL(`https://auth.passage.id/v1/apps/${this.config.appId}/.well-known/jwks.json`),
@@ -40,52 +41,48 @@ export class Auth extends PassageBase {
4041
try {
4142
const { kid } = decodeProtectedHeader(jwt);
4243
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.');
4445
}
4546

4647
const {
4748
payload: { sub: userId, aud },
4849
} = await jwtVerify(jwt, this.jwks);
4950

5051
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.');
5253
}
5354
if (Array.isArray(aud)) {
5455
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.');
5657
}
5758
}
5859
return userId;
5960
} catch (e) {
6061
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.`);
6263
}
6364

64-
throw new PassageError(`Could not verify token.`);
65+
throw new PassageError(`Could not verify token. You must catch this error.`);
6566
}
6667
}
6768

6869
/**
6970
* Create a Magic Link for your app.
7071
*
71-
* @param {MagicLinkRequest} magicLinkReq options for creating a MagicLink.
72+
* @param {CreateMagicLinkArgs} args options for creating a MagicLink.
7273
* @return {Promise<MagicLink>} Passage MagicLink object
7374
*/
74-
public async createMagicLink(magicLinkReq: CreateMagicLinkRequest): Promise<MagicLink> {
75+
public async createMagicLink(args: CreateMagicLinkArgs): Promise<MagicLink> {
7576
try {
7677
const magicLinksApi = new MagicLinksApi(this.config.apiConfiguration);
7778
const response = await magicLinksApi.createMagicLink({
7879
appId: this.config.appId,
79-
createMagicLinkRequest: magicLinkReq,
80+
createMagicLinkRequest: args,
8081
});
8182

8283
return response.magic_link;
8384
} 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');
8986
}
9087
}
9188
}

src/classes/Auth/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export * from './Auth';
2+
export * from './types';

src/classes/Auth/types.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { CreateMagicLinkRequest } from '../../generated';
2+
3+
export type CreateMagicLinkArgs = CreateMagicLinkRequest;
4+
5+
export { MagicLinkType, MagicLink } from '../../generated';
6+
7+
export { CreateMagicLinkRequest };

src/classes/Passage/Passage.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
import { AuthStrategy } from '../../types/AuthStrategy';
22
import { PassageConfig } from '../../types/PassageConfig';
33
import { PassageError } from '../PassageError';
4-
import { AppInfo, AppsApi, Configuration, CreateMagicLinkRequest, MagicLink, ResponseError } from '../../generated';
4+
import { AppInfo, AppsApi, Configuration, MagicLink, ResponseError } from '../../generated';
55
import apiConfiguration from '../../utils/apiConfiguration';
66
import { IncomingMessage } from 'http';
77
import { getHeaderFromRequest } from '../../utils/getHeader';
88
import { PassageInstanceConfig } from '../PassageBase';
9-
import { Auth } from '../Auth';
9+
import { Auth, CreateMagicLinkArgs } from '../Auth';
1010
import { User } from '../User';
1111

1212
/**
1313
* Passage Class
1414
*/
1515
export class Passage {
16-
private appId: string;
17-
#apiKey: string | undefined;
18-
private authStrategy: AuthStrategy;
19-
public user: User;
20-
public auth: Auth;
16+
private readonly appId: string;
17+
private _apiKey: string | undefined;
18+
private readonly authStrategy: AuthStrategy;
19+
public readonly user: User;
20+
public readonly auth: Auth;
2121

22-
private _apiConfiguration: Configuration;
22+
private readonly _apiConfiguration: Configuration;
2323

2424
/**
2525
* Initialize a new Passage instance.
2626
* @param {PassageConfig} config The default config for Passage initialization
2727
*/
28-
constructor(config: PassageConfig) {
28+
public constructor(config: PassageConfig) {
2929
if (!config.appID) {
3030
throw new PassageError(
3131
'A Passage appID is required. Please include {appID: YOUR_APP_ID, apiKey: YOUR_API_KEY}.',
@@ -51,7 +51,7 @@ export class Passage {
5151

5252
// To be removed on next major release
5353
this.appId = config.appID;
54-
this.#apiKey = config.apiKey;
54+
this._apiKey = config.apiKey;
5555

5656
this.authStrategy = config?.authStrategy ? config.authStrategy : 'COOKIE';
5757
}
@@ -79,7 +79,7 @@ export class Passage {
7979
* @param {string} _apiKey
8080
*/
8181
set apiKey(_apiKey) {
82-
this.#apiKey = _apiKey;
82+
this._apiKey = _apiKey;
8383
}
8484

8585
/**
@@ -88,7 +88,7 @@ export class Passage {
8888
* @return {string | undefined} Passage API Key
8989
*/
9090
get apiKey(): string | undefined {
91-
return this.#apiKey;
91+
return this._apiKey;
9292
}
9393

9494
/**
@@ -171,11 +171,11 @@ export class Passage {
171171
* @deprecated Use Passage.auth.createMagicLink instead.
172172
* Create a Magic Link for your app.
173173
*
174-
* @param {MagicLinkRequest} magicLinkReq options for creating a MagicLink.
174+
* @param {CreateMagicLinkArgs} args options for creating a MagicLink.
175175
* @return {Promise<MagicLink>} Passage MagicLink object
176176
*/
177-
async createMagicLink(magicLinkReq: CreateMagicLinkRequest): Promise<MagicLink> {
178-
return this.auth.createMagicLink(magicLinkReq);
177+
async createMagicLink(args: CreateMagicLinkArgs): Promise<MagicLink> {
178+
return this.auth.createMagicLink(args);
179179
}
180180

181181
/**

src/classes/Passage/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export * from './Passage';
2+
export * from './types';

src/classes/Passage/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { AppInfo, Layouts, LayoutConfig, UserMetadataFieldType, UserMetadataField } from '../../generated';

src/classes/PassageBase/PassageBase.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { PassageError, ResponseError } from '../PassageError';
12
import { PassageInstanceConfig } from './types';
23

34
/**
@@ -8,5 +9,18 @@ export class PassageBase {
89
* PassageBase class constructor.
910
* @param {PassageInstanceConfig} config config properties for Passage instance
1011
*/
11-
constructor(protected config: PassageInstanceConfig) {}
12+
public constructor(protected config: PassageInstanceConfig) {}
13+
14+
/**
15+
* Handle errors from PassageFlex API
16+
* @param {unknown} err error from node-fetch request
17+
* @param {string} message optional message to include in the error
18+
* @return {Promise<void>}
19+
*/
20+
protected async parseError(err: unknown, message?: string): Promise<Error> {
21+
if (err instanceof ResponseError) {
22+
throw await PassageError.fromResponseError(err, message);
23+
}
24+
return err as Error;
25+
}
1226
}

src/classes/PassageError/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export * from './PassageError';
2+
export * from './types';

src/classes/PassageError/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { ResponseError } from '../../generated';

0 commit comments

Comments
 (0)