-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
325 lines (279 loc) · 9.98 KB
/
index.ts
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
import type { IndexedDBStorage, ResetStorage, SessionStorage } from 'config/storageDrivers';
import type { AuthSession, FlowType } from 'constants/index';
import type { TokensPersistence } from 'modules/tokens/modules/storage';
import type { PetrusRootState } from 'services/reducers';
import type { HandlerReturnValue } from './helpers';
import type { StorageDriver } from './storageDriver';
export * from './helpers';
/**
* @ignore
*/
export interface ConfigurePetrusUser {}
/**
* @ignore
*/
export interface ConfigurePetrusCredentials {}
/**
* @ignore
*/
export interface ConfigurePetrusTokens {}
/**
* @ignore
*/
export interface ConfigurePetrusAppRootState {}
export type PetrusUser = ConfigurePetrusUser extends { value: unknown } ? ConfigurePetrusUser['value'] : any;
export type PetrusCredentials = ConfigurePetrusCredentials extends { value: unknown }
? ConfigurePetrusCredentials['value']
: void;
export interface Tokens {
accessToken: {
token: string;
/**
* If `expiration` is omitted, then petrus won't automatically refresh the access token.
*/
expiration?: string | null;
};
refreshToken?: {
token: string;
};
}
export type PetrusTokens = ConfigurePetrusTokens extends { value: Tokens } ? ConfigurePetrusTokens['value'] : Tokens;
/**
* @ignore
*/
export type AppRootState = ConfigurePetrusAppRootState extends { value: unknown }
? ConfigurePetrusAppRootState['value']
: any;
export type PetrusOAuth = {
searchParams: Record<string, any>;
};
export type PetrusLogger = {
error: Console['error'];
warn: Console['warn'];
};
export interface PetrusConfig {
logger: PetrusLogger;
selector: (state: AppRootState) => PetrusRootState;
/**
* @ignore
*/
initialized: boolean;
/**
* ## Implicit grant flow
* @example
*```ts
* import { configure } from '@ackee/petrus';
*
* // Minimal required setup:
* const { saga, reducer } = configure({
* oAuth: {
* origin: 'http://myapp.com',
* },
* handlers: {
* refreshTokens,
* getAuthUser,
* },
* });
*```
*
* ## Web application flow
* @example
* ```ts
* import { configure } from '@ackee/petrus';
*
* // Minimal required setup:
* const { saga, reducer } = configure({
* oAuth: {
* origin: 'http://myapp.com',
* *fetchAccessToken(searchParams) {
* const { code } = searchParams;
*
* // the actuall API request:
* const { accessToken, refreshToken, expiresIn } = yield* api.get('...');
*
* return {
* accessToken,
* refreshToken,
* expiresIn,
* };
* },
* },
* handlers: {
* refreshTokens,
* getAuthUser,
* },
* });
* ```
*
*/
oAuth: {
enabled: boolean;
/**
* Origin of your app: `window.location.origin`
* @default ''
*/
origin: string;
/**
* Pathname of redirect URL
* @default '/oauth/redirect'
*/
redirectPathname: string;
/**
* Validate the current URL on initialization,
* if the URL is valid, the 'parseRedirectUrlParams' method is called.
* @default 'src/modules/oAuth/config/validateRedirectUrl'
*/
validateRedirectUrl: (oAuth: PetrusConfig['oAuth'], location: Location) => boolean;
/**
* Parse search params from URL. It must handle both `location.search` and `location.hash`:
* - `/oauth/redirect?access_token=123`
* - `/oauth/redirect#access_token=123`
* @default 'src/modules/oAuth/config/getSearchParams'
*/
parseRedirectUrlParams: (location: Location) => HandlerReturnValue<PetrusOAuth['searchParams']>;
/**
* This method is called after 'parseRedirectUrlParams', but only if those search params don't include `accessToken` property.
*/
fetchAccessToken:
| ((searchParams: PetrusOAuth['searchParams']) => HandlerReturnValue<{
accessToken: string;
expiresIn?: number | string;
refreshToken?: string;
}>)
| (() => void);
/**
* - It creates and `accessToken` object from provided `searchParams`.
* - This method is called when access token is available.
* @default 'src/modules/oAuth/config/enforceAccessTokenScheme'
*/
enforceAccessTokenScheme: (
searchParams: PetrusOAuth['searchParams'],
) => HandlerReturnValue<PetrusTokens['accessToken']>;
/**
* - It creates and `refreshToken` object from provided `searchParams`.
* - This method is called when access token is available.
* @default 'src/modules/oAuth/config/enforceRefreshTokenScheme'
*/
enforceRefreshTokenScheme: (
searchParams: PetrusOAuth['searchParams'],
) => HandlerReturnValue<PetrusTokens['refreshToken']>;
/**
* This is final OAuth method in this custom flow that combines the results of `enforceAccessTokenScheme` and `enforceRefreshTokenScheme` to the `PetrusTokens` object or `null` if accessToken isn't available (for example due to authentication error).
* @default 'src/modules/oAuth/config/processTokens'
*/
processTokens: (
accessToken: PetrusTokens['accessToken'],
refreshToken: PetrusTokens['refreshToken'],
) => HandlerReturnValue<PetrusTokens | null>;
};
tokens: {
/**
* If true, anytime valid non-expired tokens becomes available
* the `applyAccessTokenRequest` is dispatch. Until the `applyAccessTokenResolve` is dispatched by any external service, the auth. flow is paused.
* This gives you the option to do something with access token externally, e.g. injected to the Authorization header.
*
* @default false
* @deprecated
*/
applyAccessTokenExternally: boolean;
/**
* If `false`, petrus won't start tokens retrieval saga automatically but it's up to you to call the `retrieveTokens` saga.
* By calling `retrieveTokens` saga, petrus starts the authentication flow. Either it signs-in user with avail. access token or it won't if the access token is expired and couldn't be refreshed.
* @default true
*/
autoStartTokensRetrieval: boolean;
/**
* Refresh tokens `${requestDurationEstimate}`ms before token expires.
* @default 500 // ms
*/
requestDurationEstimate: number;
/**
* @default 60_000 // 1 minute
*/
minRequiredExpiration: number;
/**
* Check if access token is expired when document visibility changes from 'hidden' to 'visibile'.
* And if it's expired, then refresh access token.
* @default true
*/
checkTokenExpirationOnTabFocus: boolean;
};
handlers: {
/**
* - Called when `loginRequest` action dispatches.
* - If returned `user` property is undefiend, the `getAuthUser` handler gets called.
* - Optional if the oauth flow is used instead.
*/
authenticate?: (
credentails: PetrusCredentials,
) => HandlerReturnValue<{ user?: PetrusUser | null; tokens: PetrusTokens }>;
/**
* - This method is called when tokens are successfully retrieved.
* - Or when the `authenticate` returns undefined `user` property.
*/
getAuthUser: (tokens: PetrusTokens) => HandlerReturnValue<PetrusUser>;
/**
* This method is called anytime when access token is expired.
*/
refreshTokens: (tokens: Required<PetrusTokens>) => HandlerReturnValue<PetrusTokens>;
};
mapStorageDriverToTokensPersistence: {
[TokensPersistence.LOCAL]: IndexedDBStorage;
[TokensPersistence.NONE]: ResetStorage;
[TokensPersistence.SESSION]: SessionStorage;
};
}
export interface PetrusEntitiesState {
/**
* @initial TokensPersistence.LOCAL
*/
tokensPersistence: TokensPersistence;
/**
* @initial null
*/
user: PetrusUser | null;
/**
* @initial null
*/
tokens: PetrusTokens | null;
/**
* @initial null
*/
sessionState: AuthSession | null;
/**
* @initial FlowType.INDETERMINATE
*/
flowType: FlowType;
}
export interface PetrusCustomConfig {
/**
* This function must return petrus reducer from your application root state,
* so you can set it on nested level or on different path.
* @default (state) => state.auth
*/
selector: PetrusConfig['selector'];
/**
* @default Console
*/
logger?: PetrusConfig['logger'];
oAuth?: {
origin: PetrusConfig['oAuth']['origin'];
redirectPathname: PetrusConfig['oAuth']['redirectPathname'];
validateRedirectUrl?: PetrusConfig['oAuth']['validateRedirectUrl'];
parseRedirectUrlParams?: PetrusConfig['oAuth']['parseRedirectUrlParams'];
fetchAccessToken?: PetrusConfig['oAuth']['fetchAccessToken'];
enforceAccessTokenScheme?: PetrusConfig['oAuth']['enforceAccessTokenScheme'];
enforceRefreshTokenScheme?: PetrusConfig['oAuth']['enforceRefreshTokenScheme'];
processTokens?: PetrusConfig['oAuth']['processTokens'];
};
tokens?: Partial<PetrusConfig['tokens']>;
/**
* Initial state of the `entities` reducer.
*/
initialState?: Partial<PetrusEntitiesState>;
handlers: PetrusConfig['handlers'];
/**
* Set a custom storage driver for a given `TokensPersistence`.
*/
mapStorageDriverToTokensPersistence?: Partial<Record<TokensPersistence, StorageDriver>>;
}