-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathadapter.ts
594 lines (521 loc) · 17.4 KB
/
adapter.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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
import { CustomError } from './inspector'
import { sanitize } from './guard'
import {
clone,
isEmpty,
isObject,
isUndefined,
lowerFirst,
merge,
objectToPaths,
uniq,
walk,
} from './utils'
import type {
Action,
ActionsAlias,
AppSyncEvent,
Authorization,
Context,
GraphQLType,
Identity,
Model,
Options,
PrismaArgs,
QueryParams,
} from './types'
import {
Actions,
ActionsAliasesList,
Authorizations,
BatchActionsList,
Prisma_ReservedKeysForPaths,
} from './consts'
/**
* #### Parse AppSync direct resolver `event` and returns Query Params.
*
* @param {AppSyncEvent} appsyncEvent - AppSync event received in Lambda.
* @param {Required<PrismaAppSyncOptionsType>} options - PrismaAppSync Client options.
* @param {any|null} customResolvers? - Custom Resolvers.
* @returns `{ type, operation, context, fields, paths, args, prismaArgs, authorization, identity }` - QueryParams
*/
export async function parseEvent(appsyncEvent: AppSyncEvent, options: Options, customResolvers?: any | null): Promise<QueryParams> {
if (
isEmpty(appsyncEvent?.info?.fieldName)
|| isUndefined(appsyncEvent?.info?.selectionSetList)
|| isEmpty(appsyncEvent?.info?.parentTypeName)
|| isUndefined(appsyncEvent?.arguments)
)
throw new CustomError('Error reading required parameters from appsyncEvent.', { type: 'INTERNAL_SERVER_ERROR' })
const operation = getOperation({ fieldName: appsyncEvent.info.fieldName })
const context = getContext({ customResolvers, options, operation })
const { identity, authorization } = getAuthIdentity({
appsyncEvent,
})
const fields = getFields({
_selectionSetList: appsyncEvent.info.selectionSetList,
})
const sanitizedArgs = options.sanitize
? await sanitize(await addNullables(appsyncEvent.arguments))
: await addNullables(appsyncEvent.arguments)
const args = clone(sanitizedArgs)
const prismaArgs = getPrismaArgs({
action: context.action,
defaultPagination: options.defaultPagination,
_arguments: clone(sanitizedArgs),
_selectionSetList: appsyncEvent.info.selectionSetList,
})
const type = getType({
_parentTypeName: appsyncEvent.info.parentTypeName,
})
const paths = getPaths({
operation,
context,
prismaArgs,
})
const headers = appsyncEvent?.request?.headers || {}
return {
operation,
context,
fields,
args,
prismaArgs,
type,
authorization,
identity,
paths,
headers,
}
}
/**
* #### Convert `is: <enum>NULL` and `isNot: <enum>NULL` to `is: null` and `isNot: null`
*
* @param {any} data
* @returns any
*/
export async function addNullables(data: any): Promise<any> {
return await walk(data, async ({ key, value }, node) => {
if (key === 'is' || key === 'isNot') {
value = value === 'NULL' ? null : undefined
node.ignoreChilds()
}
else if (value && isObject(value) && Object.keys(value).includes('isNull')) {
const { isNull, ...val } = value as any
if (isNull === true)
value = { ...val, equals: null }
else
value = { ...val, not: null }
node.ignoreChilds()
}
return { key, value }
})
}
/**
* #### Returns authorization and identity.
*
* @param {any} options
* @param {AppSyncEvent} options.appsyncEvent - AppSync event received in Lambda.
* @returns `{ authorization, identity }`
*
* https://docs.aws.amazon.com/appsync/latest/devguide/resolver-context-reference.html#aws-appsync-resolver-context-reference-identity
*/
export function getAuthIdentity({ appsyncEvent }: { appsyncEvent: AppSyncEvent }): {
identity: Identity
authorization: Authorization
} {
let authorization: Authorization = null
let identity: Identity = null
// API_KEY authorization
if (isEmpty(appsyncEvent?.identity)) {
authorization = Authorizations.API_KEY
identity = {
...(appsyncEvent?.request?.headers
&& typeof appsyncEvent.request.headers['x-api-key'] !== 'undefined' && {
requestApiKey: appsyncEvent.request.headers['x-api-key'],
}),
...(appsyncEvent?.request?.headers
&& typeof appsyncEvent.request.headers['user-agent'] !== 'undefined' && {
requestUserAgent: appsyncEvent.request.headers['user-agent'],
}),
}
}
// AWS_LAMBDA authorization
else if (appsyncEvent?.identity && typeof (appsyncEvent.identity as any).resolverContext !== 'undefined') {
authorization = Authorizations.AWS_LAMBDA
identity = appsyncEvent.identity
}
// AWS_IAM authorization
else if (
appsyncEvent?.identity
&& typeof (appsyncEvent.identity as any).cognitoIdentityAuthType !== 'undefined'
&& typeof (appsyncEvent.identity as any).cognitoIdentityAuthProvider !== 'undefined'
&& typeof (appsyncEvent.identity as any).cognitoIdentityPoolId !== 'undefined'
&& typeof (appsyncEvent.identity as any).cognitoIdentityId !== 'undefined'
) {
authorization = Authorizations.AWS_IAM
identity = appsyncEvent.identity
}
// AMAZON_COGNITO_USER_POOLS authorization
else if (
appsyncEvent?.identity
&& typeof (appsyncEvent.identity as any).sub !== 'undefined'
&& typeof (appsyncEvent.identity as any).issuer !== 'undefined'
&& typeof (appsyncEvent.identity as any).username !== 'undefined'
&& typeof (appsyncEvent.identity as any).claims !== 'undefined'
&& typeof (appsyncEvent.identity as any).sourceIp !== 'undefined'
) {
authorization = Authorizations.AMAZON_COGNITO_USER_POOLS
identity = appsyncEvent.identity
}
// OPENID_CONNECT authorization
else if (
appsyncEvent?.identity
&& typeof (appsyncEvent.identity as any).sub !== 'undefined'
&& typeof (appsyncEvent.identity as any).issuer !== 'undefined'
&& typeof (appsyncEvent.identity as any).claims !== 'undefined'
) {
authorization = Authorizations.OPENID_CONNECT
identity = appsyncEvent.identity
}
// ERROR
else {
throw new CustomError('Couldn\'t detect caller identity.', {
type: 'INTERNAL_SERVER_ERROR',
})
}
return { authorization, identity }
}
/**
* #### Returns context (`action`, `alias` and `model`).
*
* @param {any} options
* @param {any|null} options.customResolvers
* @param {string} options.operation
* @param {Options} options.options
* @returns Context
*/
export function getContext({
customResolvers,
operation,
options,
}: {
customResolvers?: any | null
operation: string
options: Options
}): Context {
const context: Context = {
action: String(),
alias: null,
model: null,
}
if (customResolvers && typeof customResolvers[operation] !== 'undefined') {
context.action = operation
context.alias = 'custom'
context.model = null
}
else {
context.action = getAction({ operation })
context.model = getModel({ operation, action: context.action, options })
context.alias = getActionAlias({ action: context.action })
}
return context
}
/**
* #### Returns operation (`getPost`, `listUsers`, ..).
*
* @param {any} options
* @param {string} options.fieldName
* @returns Operation
*/
export function getOperation({ fieldName }: { fieldName: string }): string {
const operation = fieldName
if (!(operation.length > 0))
throw new CustomError('Error parsing \'operation\' from input event.', { type: 'INTERNAL_SERVER_ERROR' })
return operation
}
/**
* #### Returns action (`get`, `list`, `create`, ...).
*
* @param {any} options
* @param {string} options.operation
* @returns Action
*/
export function getAction({ operation }: { operation: string }): Action {
const actionsList = Object.keys(Actions).sort().reverse()
const action = actionsList.find((action: Action) => {
return operation.toLowerCase().startsWith(String(action).toLowerCase())
}) as Action
if (!(typeof action !== 'undefined' && String(action).length > 0)) {
throw new CustomError(
'Error parsing \'action\' from input event. If you are trying to query a custom resolver, make sure it is properly declared inside \'prismaAppSync.resolve({ event, resolvers: { /* HERE */ } })\'.',
{ type: 'INTERNAL_SERVER_ERROR' },
)
}
return action
}
/**
* #### Returns action alias (`access`, `create`, `modify`, `subscribe`).
*
* @param {any} options
* @param {Action} options.action
* @returns ActionsAlias
*/
export function getActionAlias({ action }: { action: Action }): ActionsAlias {
let actionAlias: ActionsAlias = null
for (const alias in ActionsAliasesList) {
const actionsList = ActionsAliasesList[alias]
if (actionsList.includes(action)) {
actionAlias = alias as ActionsAlias
break
}
}
if (!(typeof action !== 'undefined' && String(action).length > 0))
throw new CustomError('Error parsing \'actionAlias\' from input event.', { type: 'INTERNAL_SERVER_ERROR' })
return actionAlias
}
/**
* #### Returns model (`Post`, `User`, ...).
*
* @param {any} options
* @param {string} options.operation
* @param {Action} options.action
* @param {Options} options.options
* @returns Model
*/
export function getModel(
{ operation, action, options }:
{ operation: string; action: Action; options: Options },
): Model {
const actionModel = operation.replace(String(action), '')
if (!(actionModel.length > 0))
throw new CustomError('Error parsing \'model\' from input event.', { type: 'INTERNAL_SERVER_ERROR' })
const model = options?.modelsMapping?.[actionModel]
if (!model) {
throw new CustomError(`Resolver "${actionModel}" not found. If it's a custom resolver, please ensure it's available within your Lambda function.`, {
type: 'INTERNAL_SERVER_ERROR',
})
}
return model
}
/**
* #### Returns fields (`title`, `author`, ...).
*
* @param {any} options
* @param {string[]} options._selectionSetList
* @returns string[]
*/
export function getFields({ _selectionSetList }: { _selectionSetList: string[] }): string[] {
const fields: string[] = []
_selectionSetList.forEach((item: string) => {
const field = item.split('/')[0]
if (!fields.includes(field) && !field.startsWith('__'))
fields.push(item)
})
return fields
}
/**
* #### Returns GraphQL type (`Query`, `Mutation` or `Subscription`).
*
* @param {any} options
* @param {string} options._parentTypeName
* @returns GraphQLType
*/
export function getType({ _parentTypeName }: { _parentTypeName: string }): GraphQLType {
const type = _parentTypeName
if (!['Query', 'Mutation', 'Subscription'].includes(type))
throw new CustomError('Error parsing \'type\' from input event.', { type: 'INTERNAL_SERVER_ERROR' })
return type as GraphQLType
}
/**
* #### Returns Prisma args (`where`, `data`, `orderBy`, ...).
*
* @param {any} options
* @param {Action} options.action
* @param {Options['defaultPagination']} options.defaultPagination
* @param {any} options._arguments
* @param {any} options._selectionSetList
* @returns PrismaArgs
*/
export function getPrismaArgs({
action,
defaultPagination,
_arguments,
_selectionSetList,
}: {
action: Action
defaultPagination: Options['defaultPagination']
_arguments: any
_selectionSetList: any
}): PrismaArgs {
const prismaArgs: PrismaArgs = {}
if (typeof _arguments.data !== 'undefined' && typeof _arguments.operation !== 'undefined') {
throw new CustomError('Using \'data\' and \'operation\' together is not possible.', {
type: 'BAD_USER_INPUT',
})
}
if (typeof _arguments.data !== 'undefined')
prismaArgs.data = _arguments.data
else if (typeof _arguments.operation !== 'undefined')
prismaArgs.data = _arguments.operation
if (typeof _arguments.create !== 'undefined')
prismaArgs.create = _arguments.create
if (typeof _arguments.update !== 'undefined')
prismaArgs.update = _arguments.update
if (typeof _arguments.where !== 'undefined')
prismaArgs.where = _arguments.where
if (typeof _arguments.orderBy !== 'undefined')
prismaArgs.orderBy = parseOrderBy(_arguments.orderBy)
if (typeof _arguments.skipDuplicates !== 'undefined')
prismaArgs.skipDuplicates = _arguments.skipDuplicates
if (typeof _selectionSetList !== 'undefined')
prismaArgs.select = parseSelectionList(_selectionSetList)
if (isEmpty(prismaArgs.select))
delete prismaArgs.select
if (typeof _arguments.skip !== 'undefined')
prismaArgs.skip = Number.parseInt(_arguments.skip)
else if (defaultPagination !== false && action === Actions.list)
prismaArgs.skip = 0
if (typeof _arguments.take !== 'undefined')
prismaArgs.take = Number.parseInt(_arguments.take)
else if (defaultPagination !== false && action === Actions.list)
prismaArgs.take = defaultPagination
return prismaArgs
}
/**
* #### Returns individual `orderBy` record formatted for Prisma.
*
* @param {any} sortObj
* @returns any
*/
function getOrderBy(sortObj: any): any {
if (Object.keys(sortObj).length > 1)
throw new CustomError('Wrong \'orderBy\' input format.', { type: 'BAD_USER_INPUT' })
const key: any = Object.keys(sortObj)[0]
const value = typeof sortObj[key] === 'object' ? getOrderBy(sortObj[key]) : sortObj[key].toLowerCase()
return { [key]: value }
}
/**
* #### Returns Prisma `orderBy` from parsed `event.arguments.orderBy`.
*
* @param {any} orderByInputs
* @returns any[]
*/
function parseOrderBy(orderByInputs: any): any[] {
const orderByOutput: any = []
const orderByInputsArray = Array.isArray(orderByInputs) ? orderByInputs : [orderByInputs]
orderByInputsArray.forEach((orderByInput: any) => {
orderByOutput.push(getOrderBy(orderByInput))
})
return orderByOutput
}
/**
* #### Returns individual `include` field formatted for Prisma.
*
* @param {any} parts
* @returns any
*/
function getInclude(parts: any): any {
const field = parts[0]
const value = parts.length > 1 ? getSelect(parts.splice(1)) : true
return {
include: {
[field]: value,
},
}
}
/**
* #### Returns individual `select` field formatted for Prisma.
*
* @param {any} parts
* @returns any
*/
function getSelect(parts: any): any {
const field = parts[0]
const value = parts.length > 1 ? getSelect(parts.splice(1)) : true
return {
select: {
[field]: value,
},
}
}
/**
* #### Return Prisma `select` from parsed `event.arguments.info.selectionSetList`.
*
* @param {any} selectionSetList
* @returns any
*/
function parseSelectionList(selectionSetList: any): any {
let prismaArgs: any = { select: {} }
for (let i = 0; i < selectionSetList.length; i++) {
const path = selectionSetList[i]
const parts = path.split('/')
if (!parts.includes('__typename')) {
if (parts.length > 1)
prismaArgs = merge(prismaArgs, getInclude(parts))
else
prismaArgs = merge(prismaArgs, getSelect(parts))
}
}
if (prismaArgs.include) {
for (const include in prismaArgs.include) {
if (typeof prismaArgs.select[include] !== 'undefined')
delete prismaArgs.select[include]
}
prismaArgs.select = merge(prismaArgs.select, prismaArgs.include)
delete prismaArgs.include
}
return typeof prismaArgs.select !== 'undefined' ? prismaArgs.select : {}
}
/**
* #### Returns req and res paths (`updatePost/title`, `getPost/date`, ..).
*
* @param {any} options
* @param {string} options.operation
* @param {Context} options.context
* @param {PrismaArgs} options.prismaArgs
* @returns string[]
*/
export function getPaths({
operation,
context,
prismaArgs,
}: {
operation: string
context: Context
prismaArgs: PrismaArgs
}): string[] {
const paths: string[] = [
operation,
...objectToPaths({
...(prismaArgs?.data && {
data: prismaArgs.data,
}),
...(prismaArgs?.select && {
select: prismaArgs.select,
}),
}),
]
paths.forEach((path: string, index: number) => {
if (path.startsWith('data')) {
paths[index] = path.replace('data', operation)
}
else if (path.startsWith('select')) {
const action = BatchActionsList.includes(context.action) ? Actions.list : Actions.get
if (context.model !== null) {
const model = action === Actions.list ? context.model.plural : context.model.singular
paths[index] = path.replace('select', `${lowerFirst(action)}${model}`)
}
else {
paths[index] = path.replace('select', operation)
}
}
})
return uniq(
paths.map(
(path: string) => path
.split('/')
.filter(k => !Prisma_ReservedKeysForPaths.includes(k))
.join('/'),
).filter(Boolean),
)
}