-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathregister-action-handler.ts
460 lines (384 loc) · 11.8 KB
/
register-action-handler.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
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/* eslint-disable max-classes-per-file */
import { APL, AuthData } from "@/APL";
import { SALEOR_API_URL_HEADER } from "@/const";
import { createDebug } from "@/debug";
import { fetchRemoteJwks } from "@/fetch-remote-jwks";
import { getAppId } from "@/get-app-id";
import { GenericCreateAppRegisterHandlerOptions } from "../shared";
import {
ActionHandlerInterface,
ActionHandlerResult,
PlatformAdapterInterface,
ResultStatusCodes,
} from "../shared/generic-adapter-use-case-types";
import { SaleorRequestProcessor } from "../shared/saleor-request-processor";
import { validateAllowSaleorUrls } from "../shared/validate-allow-saleor-urls";
const debug = createDebug("createAppRegisterHandler");
/** Error raised by async handlers passed by
* users in config to Register handler */
class RegisterCallbackError extends Error {
public status: ResultStatusCodes = 500;
constructor(errorParams: HookCallbackErrorParams) {
super(errorParams.message);
if (errorParams.status) {
this.status = errorParams.status;
}
}
}
export type RegisterErrorCode =
| "SALEOR_URL_PROHIBITED"
| "APL_NOT_CONFIGURED"
| "UNKNOWN_APP_ID"
| "JWKS_NOT_AVAILABLE"
| "REGISTER_HANDLER_HOOK_ERROR";
export type RegisterHandlerResponseBody = {
success: boolean;
error?: {
code?: RegisterErrorCode;
message?: string;
};
};
export const createRegisterHandlerResponseBody = (
success: boolean,
error?: RegisterHandlerResponseBody["error"],
statusCode?: ResultStatusCodes
): ActionHandlerResult<RegisterHandlerResponseBody> => ({
status: statusCode ?? (success ? 200 : 500),
body: {
success,
error,
},
bodyType: "json",
});
export type HookCallbackErrorParams = {
status?: ResultStatusCodes;
message?: string;
};
export type CallbackErrorHandler = (params: HookCallbackErrorParams) => never;
export class RegisterActionHandler<I>
implements ActionHandlerInterface<RegisterHandlerResponseBody>
{
constructor(private adapter: PlatformAdapterInterface<I>) {}
private requestProcessor = new SaleorRequestProcessor(this.adapter);
private runPreChecks(): ActionHandlerResult<RegisterHandlerResponseBody> | null {
const checksToRun = [
this.requestProcessor.withMethod(["POST"]),
this.requestProcessor.withSaleorApiUrlPresent(),
];
for (const check of checksToRun) {
if (check) {
return check;
}
}
return null;
}
async handleAction(
config: GenericCreateAppRegisterHandlerOptions<I>
): Promise<ActionHandlerResult<RegisterHandlerResponseBody>> {
debug("Request received");
const precheckResult = this.runPreChecks();
if (precheckResult) {
return precheckResult;
}
const saleorApiUrl = this.adapter.getHeader(SALEOR_API_URL_HEADER) as string;
const authTokenResult = await this.parseRequestBody();
if (!authTokenResult.success) {
return authTokenResult.response;
}
const { authToken } = authTokenResult;
const handleOnRequestResult = await this.handleOnRequestStartCallback(config.onRequestStart, {
authToken,
saleorApiUrl,
});
if (handleOnRequestResult) {
return handleOnRequestResult;
}
const saleorApiUrlValidationResult = this.handleSaleorApiUrlValidation({
saleorApiUrl,
allowedSaleorUrls: config.allowedSaleorUrls,
});
if (saleorApiUrlValidationResult) {
return saleorApiUrlValidationResult;
}
const aplCheckResult = await this.checkAplIsConfigured(config.apl);
if (aplCheckResult) {
return aplCheckResult;
}
const getAppIdResult = await this.getAppIdAndHandleMissingAppId({
saleorApiUrl,
token: authToken,
});
if (!getAppIdResult.success) {
return getAppIdResult.responseBody;
}
const { appId } = getAppIdResult;
const getJwksResult = await this.getJwksAndHandleMissingJwks({ saleorApiUrl });
if (!getJwksResult.success) {
return getJwksResult.responseBody;
}
const { jwks } = getJwksResult;
const authData = {
token: authToken,
saleorApiUrl,
appId,
jwks,
};
const onRequestVerifiedErrorResponse = await this.handleOnRequestVerifiedCallback(
config.onRequestVerified,
authData
);
if (onRequestVerifiedErrorResponse) {
return onRequestVerifiedErrorResponse;
}
const aplSaveResponse = await this.saveAplAuthData({
apl: config.apl,
authData,
onAplSetFailed: config.onAplSetFailed,
onAuthAplSaved: config.onAuthAplSaved,
});
return aplSaveResponse;
}
private async parseRequestBody(): Promise<
| {
success: false;
response: ActionHandlerResult<RegisterHandlerResponseBody>;
authToken?: never;
}
| {
success: true;
authToken: string;
response?: never;
}
> {
let body: { auth_token: string };
try {
body = (await this.adapter.getBody()) as { auth_token: string };
} catch (err) {
return {
success: false,
response: {
status: 400,
body: "Invalid request json.",
bodyType: "string",
},
};
}
const authToken = body?.auth_token;
if (!authToken) {
debug("Found missing authToken param");
return {
success: false,
response: {
status: 400,
body: "Missing auth token.",
bodyType: "string",
},
};
}
return {
success: true,
authToken,
};
}
private async handleOnRequestStartCallback(
onRequestStart: GenericCreateAppRegisterHandlerOptions<I>["onRequestStart"],
{ authToken, saleorApiUrl }: { authToken: string; saleorApiUrl: string }
) {
if (onRequestStart) {
debug("Calling \"onRequestStart\" hook");
try {
await onRequestStart(this.adapter.request, {
authToken,
saleorApiUrl,
respondWithError: this.createCallbackError,
});
} catch (e: RegisterCallbackError | unknown) {
debug("\"onRequestStart\" hook thrown error: %o", e);
return this.handleHookError(e);
}
}
return null;
}
private handleSaleorApiUrlValidation({
saleorApiUrl,
allowedSaleorUrls,
}: {
saleorApiUrl: string;
allowedSaleorUrls: GenericCreateAppRegisterHandlerOptions<I>["allowedSaleorUrls"];
}) {
if (!validateAllowSaleorUrls(saleorApiUrl, allowedSaleorUrls)) {
debug(
"Validation of URL %s against allowSaleorUrls param resolves to false, throwing",
saleorApiUrl
);
return createRegisterHandlerResponseBody(
false,
{
code: "SALEOR_URL_PROHIBITED",
message: "This app expects to be installed only in allowed Saleor instances",
},
403
);
}
return null;
}
private async checkAplIsConfigured(apl: GenericCreateAppRegisterHandlerOptions<I>["apl"]) {
const { configured: aplConfigured } = await apl.isConfigured();
if (!aplConfigured) {
debug("The APL has not been configured");
return createRegisterHandlerResponseBody(
false,
{
code: "APL_NOT_CONFIGURED",
message: "APL_NOT_CONFIGURED. App is configured properly. Check APL docs for help.",
},
503
);
}
return null;
}
private async getAppIdAndHandleMissingAppId({
saleorApiUrl,
token,
}: {
saleorApiUrl: string;
token: string;
}): Promise<
| {
success: false;
responseBody: ActionHandlerResult<RegisterHandlerResponseBody>;
}
| { success: true; appId: string }
> {
// Try to get App ID from the API, to confirm that communication can be established
const appId = await getAppId({ saleorApiUrl, token });
if (!appId) {
const responseBody = createRegisterHandlerResponseBody(
false,
{
code: "UNKNOWN_APP_ID",
message: `The auth data given during registration request could not be used to fetch app ID.
This usually means that App could not connect to Saleor during installation. Saleor URL that App tried to connect: ${saleorApiUrl}`,
},
401
);
return { success: false, responseBody };
}
return { success: true, appId };
}
private async getJwksAndHandleMissingJwks({ saleorApiUrl }: { saleorApiUrl: string }): Promise<
| {
success: false;
responseBody: ActionHandlerResult<RegisterHandlerResponseBody>;
}
| { success: true; jwks: string }
> {
// Fetch the JWKS which will be used during webhook validation
try {
const jwks = await fetchRemoteJwks(saleorApiUrl);
if (jwks) {
return { success: true, jwks };
}
} catch (err) {
// no-op - will return result below
}
const responseBody = createRegisterHandlerResponseBody(
false,
{
code: "JWKS_NOT_AVAILABLE",
message: "Can't fetch the remote JWKS.",
},
401
);
return { success: false, responseBody };
}
private async handleOnRequestVerifiedCallback(
onRequestVerified: GenericCreateAppRegisterHandlerOptions<I>["onRequestVerified"],
authData: AuthData
) {
if (onRequestVerified) {
debug("Calling \"onRequestVerified\" hook");
try {
await onRequestVerified(this.adapter.request, {
authData,
respondWithError: this.createCallbackError,
});
} catch (e: RegisterCallbackError | unknown) {
debug("\"onRequestVerified\" hook thrown error: %o", e);
return this.handleHookError(e);
}
}
return null;
}
private async saveAplAuthData({
apl,
onAplSetFailed,
onAuthAplSaved,
authData,
}: {
apl: APL;
onAplSetFailed: GenericCreateAppRegisterHandlerOptions<I>["onAplSetFailed"];
onAuthAplSaved: GenericCreateAppRegisterHandlerOptions<I>["onAuthAplSaved"];
authData: AuthData;
}) {
try {
await apl.set(authData);
if (onAuthAplSaved) {
debug("Calling \"onAuthAplSaved\" hook");
try {
await onAuthAplSaved(this.adapter.request, {
authData,
respondWithError: this.createCallbackError,
});
} catch (e: RegisterCallbackError | unknown) {
debug("\"onAuthAplSaved\" hook thrown error: %o", e);
return this.handleHookError(e);
}
}
} catch (aplError: unknown) {
debug("There was an error during saving the auth data");
if (onAplSetFailed) {
debug("Calling \"onAuthAplFailed\" hook");
try {
await onAplSetFailed(this.adapter.request, {
authData,
error: aplError,
respondWithError: this.createCallbackError,
});
} catch (hookError: RegisterCallbackError | unknown) {
debug("\"onAuthAplFailed\" hook thrown error: %o", hookError);
return this.handleHookError(hookError);
}
}
return createRegisterHandlerResponseBody(false, {
message: "Registration failed: could not save the auth data.",
});
}
debug("Register complete");
return createRegisterHandlerResponseBody(true);
}
/** Callbacks declared by users in configuration can throw an error
* It is caught here and converted into a response */
private handleHookError(
e: RegisterCallbackError | unknown
): ActionHandlerResult<RegisterHandlerResponseBody> {
if (e instanceof RegisterCallbackError) {
return createRegisterHandlerResponseBody(
false,
{
code: "REGISTER_HANDLER_HOOK_ERROR",
message: e.message,
},
e.status
);
}
return {
status: 500,
body: "Error during app installation",
bodyType: "string",
};
}
private createCallbackError: CallbackErrorHandler = (params: HookCallbackErrorParams) => {
throw new RegisterCallbackError(params);
};
}