-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathparseAmplifyOutputs.ts
More file actions
437 lines (370 loc) · 10.4 KB
/
Copy pathparseAmplifyOutputs.ts
File metadata and controls
437 lines (370 loc) · 10.4 KB
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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/* This is because JSON schema contains keys with snake_case */
/* eslint-disable camelcase */
/* Does not like exhaustive checks */
import {
APIConfig,
APIEventsConfig,
APIGraphQLConfig,
GraphQLAuthMode,
ModelIntrospectionSchema,
} from './singleton/API/types';
import {
CognitoUserPoolConfigMfaStatus,
OAuthProvider,
PreferredChallenge,
} from './singleton/Auth/types';
import { NotificationsConfig } from './singleton/Notifications/types';
import {
AmplifyOutputsAnalyticsProperties,
AmplifyOutputsAuthProperties,
AmplifyOutputsCustomProperties,
AmplifyOutputsDataProperties,
AmplifyOutputsGeoProperties,
AmplifyOutputsNotificationsProperties,
AmplifyOutputsStorageBucketProperties,
AmplifyOutputsStorageProperties,
AmplifyOutputsUnknown,
} from './singleton/AmplifyOutputs/types';
import {
AnalyticsConfig,
AuthConfig,
BucketInfo,
GeoConfig,
LegacyConfig,
ResourcesConfig,
StorageConfig,
} from './singleton/types';
export function isAmplifyOutputs(
config: ResourcesConfig | LegacyConfig | AmplifyOutputsUnknown,
): config is AmplifyOutputsUnknown {
// version format initially will be '1' but is expected to be something like x.y where x is major and y minor version
const { version } = config as AmplifyOutputsUnknown;
if (!version) {
return false;
}
return version.startsWith('1');
}
function parseStorage(
amplifyOutputsStorageProperties?: AmplifyOutputsStorageProperties,
): StorageConfig | undefined {
if (!amplifyOutputsStorageProperties) {
return undefined;
}
const { bucket_name, aws_region, buckets } = amplifyOutputsStorageProperties;
return {
S3: {
bucket: bucket_name,
region: aws_region,
buckets: buckets && createBucketInfoMap(buckets),
},
};
}
function parseAuth(
amplifyOutputsAuthProperties?: AmplifyOutputsAuthProperties,
): AuthConfig | undefined {
if (!amplifyOutputsAuthProperties) {
return undefined;
}
const {
user_pool_id,
user_pool_client_id,
auth_session_validity,
identity_pool_id,
password_policy,
mfa_configuration,
mfa_methods,
unauthenticated_identities_enabled,
oauth,
username_attributes,
standard_required_attributes,
groups,
passwordless,
} = amplifyOutputsAuthProperties;
const authConfig = {
Cognito: {
userPoolId: user_pool_id,
userPoolClientId: user_pool_client_id,
groups,
},
} as AuthConfig;
if (auth_session_validity !== undefined) {
authConfig.Cognito.authSessionValidity = auth_session_validity;
}
if (identity_pool_id) {
authConfig.Cognito = {
...authConfig.Cognito,
identityPoolId: identity_pool_id,
};
}
if (password_policy) {
authConfig.Cognito.passwordFormat = {
requireLowercase: password_policy.require_lowercase,
requireNumbers: password_policy.require_numbers,
requireUppercase: password_policy.require_uppercase,
requireSpecialCharacters: password_policy.require_symbols,
minLength: password_policy.min_length ?? 6,
};
}
if (mfa_configuration) {
authConfig.Cognito.mfa = {
status: getMfaStatus(mfa_configuration),
smsEnabled: mfa_methods?.includes('SMS'),
totpEnabled: mfa_methods?.includes('TOTP'),
};
}
if (unauthenticated_identities_enabled) {
authConfig.Cognito.allowGuestAccess = unauthenticated_identities_enabled;
}
if (oauth) {
authConfig.Cognito.loginWith = {
oauth: {
domain: oauth.domain,
redirectSignIn: oauth.redirect_sign_in_uri,
redirectSignOut: oauth.redirect_sign_out_uri,
responseType: oauth.response_type === 'token' ? 'token' : 'code',
scopes: oauth.scopes,
providers: getOAuthProviders(oauth.identity_providers),
},
};
}
if (username_attributes) {
authConfig.Cognito.loginWith = {
...authConfig.Cognito.loginWith,
email: username_attributes.includes('email'),
phone: username_attributes.includes('phone_number'),
// Signing in with a username is not currently supported in Gen2, this should always evaluate to false
username: username_attributes.includes('username'),
};
}
if (standard_required_attributes) {
authConfig.Cognito.userAttributes = standard_required_attributes.reduce(
(acc, curr) => ({ ...acc, [curr]: { required: true } }),
{},
);
}
if (passwordless) {
authConfig.Cognito.passwordless = {
emailOtpEnabled: passwordless.email_otp_enabled,
smsOtpEnabled: passwordless.sms_otp_enabled,
webAuthn: passwordless.web_authn
? {
relyingPartyId: passwordless.web_authn.relying_party_id,
userVerification: passwordless.web_authn.user_verification,
}
: undefined,
preferredChallenge:
passwordless.preferred_challenge as PreferredChallenge,
};
}
return authConfig;
}
export function parseAnalytics(
amplifyOutputsAnalyticsProperties?: AmplifyOutputsAnalyticsProperties,
): AnalyticsConfig | undefined {
if (!amplifyOutputsAnalyticsProperties?.amazon_pinpoint) {
return undefined;
}
const { amazon_pinpoint } = amplifyOutputsAnalyticsProperties;
return {
Pinpoint: {
appId: amazon_pinpoint.app_id,
region: amazon_pinpoint.aws_region,
},
};
}
function parseGeo(
amplifyOutputsAnalyticsProperties?: AmplifyOutputsGeoProperties,
): GeoConfig | undefined {
if (!amplifyOutputsAnalyticsProperties) {
return undefined;
}
const { aws_region, geofence_collections, maps, search_indices } =
amplifyOutputsAnalyticsProperties;
return {
LocationService: {
region: aws_region,
searchIndices: search_indices,
geofenceCollections: geofence_collections,
maps,
},
};
}
function parseData(
amplifyOutputsDataProperties?: AmplifyOutputsDataProperties,
): APIConfig | undefined {
if (!amplifyOutputsDataProperties) {
return undefined;
}
const {
aws_region,
default_authorization_type,
url,
api_key,
model_introspection,
} = amplifyOutputsDataProperties;
const GraphQL: APIGraphQLConfig = {
endpoint: url,
defaultAuthMode: getGraphQLAuthMode(default_authorization_type),
region: aws_region,
apiKey: api_key,
modelIntrospection: model_introspection as ModelIntrospectionSchema,
};
return {
GraphQL,
};
}
function parseCustom(
amplifyOutputsCustomProperties?: AmplifyOutputsCustomProperties,
) {
if (!amplifyOutputsCustomProperties?.events) {
return undefined;
}
const { url, aws_region, api_key, default_authorization_type } =
amplifyOutputsCustomProperties.events;
const Events: APIEventsConfig = {
endpoint: url,
defaultAuthMode: getGraphQLAuthMode(default_authorization_type),
region: aws_region,
apiKey: api_key,
};
return {
Events,
};
}
function parseNotifications(
amplifyOutputsNotificationsProperties?: AmplifyOutputsNotificationsProperties,
): NotificationsConfig | undefined {
if (!amplifyOutputsNotificationsProperties) {
return undefined;
}
const { aws_region, channels, amazon_pinpoint_app_id } =
amplifyOutputsNotificationsProperties;
const hasInAppMessaging = channels.includes('IN_APP_MESSAGING');
const hasPushNotification =
channels.includes('APNS') || channels.includes('FCM');
if (!(hasInAppMessaging || hasPushNotification)) {
return undefined;
}
// At this point, we know the Amplify outputs contains at least one supported channel
const notificationsConfig: NotificationsConfig = {} as NotificationsConfig;
if (hasInAppMessaging) {
notificationsConfig.InAppMessaging = {
Pinpoint: {
appId: amazon_pinpoint_app_id,
region: aws_region,
},
};
}
if (hasPushNotification) {
notificationsConfig.PushNotification = {
Pinpoint: {
appId: amazon_pinpoint_app_id,
region: aws_region,
},
};
}
return notificationsConfig;
}
export function parseAmplifyOutputs(
amplifyOutputs: AmplifyOutputsUnknown,
): ResourcesConfig {
const resourcesConfig: ResourcesConfig = {};
if (amplifyOutputs.storage) {
resourcesConfig.Storage = parseStorage(
amplifyOutputs.storage as AmplifyOutputsStorageProperties,
);
}
if (amplifyOutputs.auth) {
resourcesConfig.Auth = parseAuth(
amplifyOutputs.auth as AmplifyOutputsAuthProperties,
);
}
if (amplifyOutputs.analytics) {
resourcesConfig.Analytics = parseAnalytics(amplifyOutputs.analytics);
}
if (amplifyOutputs.geo) {
resourcesConfig.Geo = parseGeo(
amplifyOutputs.geo as AmplifyOutputsGeoProperties,
);
}
if (amplifyOutputs.data) {
resourcesConfig.API = parseData(
amplifyOutputs.data as AmplifyOutputsDataProperties,
);
}
if (amplifyOutputs.custom) {
const customConfig = parseCustom(amplifyOutputs.custom);
if (customConfig && 'Events' in customConfig) {
resourcesConfig.API = { ...resourcesConfig.API, ...customConfig };
}
}
if (amplifyOutputs.notifications) {
resourcesConfig.Notifications = parseNotifications(
amplifyOutputs.notifications as AmplifyOutputsNotificationsProperties,
);
}
return resourcesConfig;
}
const authModeNames: Record<string, GraphQLAuthMode> = {
AMAZON_COGNITO_USER_POOLS: 'userPool',
API_KEY: 'apiKey',
AWS_IAM: 'iam',
AWS_LAMBDA: 'lambda',
OPENID_CONNECT: 'oidc',
};
function getGraphQLAuthMode(authType: string): GraphQLAuthMode {
return authModeNames[authType];
}
const providerNames: Record<string, OAuthProvider> = {
GOOGLE: 'Google',
LOGIN_WITH_AMAZON: 'Amazon',
FACEBOOK: 'Facebook',
SIGN_IN_WITH_APPLE: 'Apple',
};
function getOAuthProviders(providers: string[] = []): OAuthProvider[] {
return providers.reduce<OAuthProvider[]>((oAuthProviders, provider) => {
if (providerNames[provider] !== undefined) {
oAuthProviders.push(providerNames[provider]);
}
return oAuthProviders;
}, []);
}
function getMfaStatus(
mfaConfiguration: string,
): CognitoUserPoolConfigMfaStatus {
if (mfaConfiguration === 'OPTIONAL') return 'optional';
if (mfaConfiguration === 'REQUIRED') return 'on';
return 'off';
}
function createBucketInfoMap(
buckets: AmplifyOutputsStorageBucketProperties[],
): Record<string, BucketInfo> {
const mappedBuckets: Record<string, BucketInfo> = {};
buckets.forEach(
({ name, bucket_name: bucketName, aws_region: region, paths }) => {
if (name in mappedBuckets) {
throw new Error(
`Duplicate friendly name found: ${name}. Name must be unique.`,
);
}
const sanitizedPaths = paths
? Object.entries(paths).reduce<
Record<string, Record<string, string[] | undefined>>
>((acc, [key, value]) => {
if (value !== undefined) {
acc[key] = value;
}
return acc;
}, {})
: undefined;
mappedBuckets[name] = {
bucketName,
region,
paths: sanitizedPaths,
};
},
);
return mappedBuckets;
}