-
Notifications
You must be signed in to change notification settings - Fork 230
Expand file tree
/
Copy pathdata.ts
More file actions
362 lines (307 loc) · 7.52 KB
/
data.ts
File metadata and controls
362 lines (307 loc) · 7.52 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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import {
IsBoolean,
IsEmail,
IsHexadecimal,
IsIn,
IsInt,
IsNotEmpty,
IsOptional,
IsString,
Length,
Matches,
MaxLength,
MinLength,
Validate,
} from 'class-validator';
import {
bind,
KeyTransforms as T,
ModelDataProvider,
} from '../../../lib/model-data';
import {
IsEmailOrEmpty,
IsFxaRedirectToUrl,
IsFxaRedirectUri,
} from '../../../lib/validation';
/**
* Base integration class. Fields in this class represents data commonly accessed across many pages and is useful for various flows.
*/
export class IntegrationData extends ModelDataProvider {
// TODO: Should this only exist on OAuthIntegrationData
@IsOptional()
@IsString()
@bind()
public clientId: string | undefined;
@IsOptional()
@IsString()
@bind()
public service: string | undefined;
// TODO - Validation - This should be a URL, but it is encoded and must be decoded in order to validate.
@IsOptional()
@Validate(IsFxaRedirectToUrl, {})
@bind(T.snakeCase)
redirectTo: string | undefined;
// TODO: Double check context. This might be sync data!
@IsOptional()
@IsString()
@bind()
context: string | undefined;
@IsOptional()
@IsString()
@bind()
email: string | undefined;
@IsOptional()
@Validate(IsEmailOrEmpty, {})
@bind(T.snakeCase)
loginHint: string | undefined;
@IsOptional()
@IsString()
@bind()
action: string | undefined;
@IsOptional()
@IsString()
@bind()
entrypoint: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
entrypointVariation: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
entrypointExperiment: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
utmCampaign: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
utmContent: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
utmMedium: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
utmSource: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
utmTerm: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
flowId: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
flowBeginTime: string | undefined;
}
/**
* Represents data specific to integrations that support syncing.
*/
export class SyncBasicIntegrationData extends IntegrationData {
// TODO - Validation - Will @IsISO31661Alpha2() work?
@IsOptional()
@IsString()
@MinLength(2)
@MaxLength(7)
@bind()
country: string | undefined;
@IsOptional()
@Matches(/^[A-Za-z0-9-_]+$/)
@Length(8)
@bind()
signinCode: string | undefined;
// TODO - Validation - Double check actions
@IsOptional()
@IsIn(['signin', 'signup', 'email', 'force_auth', 'pairing'])
@bind()
action: string | undefined;
@IsOptional()
@IsString()
@bind()
syncPreference: string | undefined;
@IsOptional()
@IsString()
@bind()
multiService: boolean | undefined;
@IsOptional()
@IsString()
@bind()
tokenCode: string | undefined;
}
/**s
* Represents data specific general 'web' integrations, which are typically login processes where a user
* is trying to authenticating in oder to access their account settings page.
*/
export class WebIntegrationData extends IntegrationData {
@IsOptional()
// TODO:Validation: Should this be 'IsEmail'. Currently we are relying on query-param models to validate
// the value is actually an email.
//
@IsString()
@bind()
email: string | undefined;
@IsOptional()
@IsEmail()
@bind()
emailToHashWith: string | undefined;
@IsOptional()
@IsIn(['true', 'false', true, false])
@bind(T.snakeCase)
resetPasswordConfirm: boolean | undefined;
@IsOptional()
@IsString()
@bind()
setting: string | undefined;
@IsOptional()
@IsString()
@bind()
style: string | undefined;
@IsOptional()
@IsHexadecimal()
@Length(32)
@bind()
uid: string | undefined;
}
/**
* Represents data required for logging with OAuth. This is typical when a user directed to FxA from an relying party
* and the relying party is attempting to FxA us to validate the user.
*/
export class OAuthIntegrationData extends WebIntegrationData {
// TODO - Validation - Can we get a set of known client ids from config or api call?
// See https://github.com/mozilla/fxa/pull/15677#discussion_r1291534277
@IsOptional()
@IsHexadecimal()
@bind(T.snakeCase)
clientId!: string;
@IsOptional()
@IsString()
@bind()
imageUri: string | undefined;
@IsOptional()
@IsBoolean()
@bind()
trusted: boolean | undefined;
@IsOptional()
@IsIn(['offline', 'online'])
@bind(T.snakeCase)
accessType: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
acrValues: string | undefined;
// TODO - Validation - Double check actions
@IsOptional()
@IsIn(['signin', 'signup', 'email', 'force_auth', 'pairing'])
@bind()
action: string | undefined;
@IsOptional()
@IsString()
@MinLength(43)
@MaxLength(128)
@bind(T.snakeCase)
codeChallenge: string | undefined;
@IsOptional()
@IsIn(['S256'])
@bind(T.snakeCase)
codeChallengeMethod: string | undefined;
@IsOptional()
@IsString()
@Matches(/^[A-Za-z0-9-_]+$/)
@bind(T.snakeCase)
keysJwk: string | undefined;
@IsOptional()
@IsString()
@bind(T.snakeCase)
idTokenHint: string | undefined;
@IsOptional()
@IsInt()
@bind(T.snakeCase)
maxAge: number | undefined;
@IsOptional()
@IsString()
@bind()
permissions: string | undefined;
@IsOptional()
@IsString()
@bind()
prompt: string | undefined;
// TODO - Validation - This should be a URL, but it is encoded and must be decoded in order to validate.
@IsOptional()
@Validate(IsFxaRedirectToUrl, {})
@bind(T.snakeCase)
redirectUrl: string | undefined;
// TODO - Validation - Needs custom validation, see IsRedirectUriValid in content server.
// We fall back to clientInfo.redirectUri if this is not provided so only validate if it's present
@IsOptional()
@Validate(IsFxaRedirectUri)
@bind(T.snakeCase)
redirectUri: string | undefined;
@IsOptional()
@IsBoolean()
@bind(T.snakeCase)
returnOnError: boolean | undefined;
// TODO - Validation - Should scope be required?
@IsOptional()
@IsString()
@IsNotEmpty()
@bind()
scope: string | undefined;
@IsOptional()
@IsString()
@bind()
state!: string;
@IsOptional()
@IsString()
@bind(T.snakeCase)
deviceId: string | undefined;
}
/**
* Represents fields required to finalize a pairing flow.
*/
export class PairingAuthorityIntegrationData extends OAuthIntegrationData {
// #IsRequired
@Matches(/^[A-Za-z0-9-_]+$/)
@IsNotEmpty()
@bind(T.snakeCase)
channelId: string = '';
}
/**
* Represents fields required to finalize a paring flow.
*/
export class PairingSupplicantIntegrationData extends OAuthIntegrationData {
// TODO - Validation - Should scope be required?
@IsOptional()
@IsString()
@IsNotEmpty()
@bind()
scope: string | undefined = '';
}
/**
* Represents fields required to validate a third party authorization.
*/
export class ThirdPartyAuthCallbackIntegrationData extends WebIntegrationData {
// #IsRequired
@IsString()
@bind()
state: string | undefined;
@IsOptional()
@IsString()
@bind()
code: string | undefined;
@IsOptional()
@IsString()
@bind()
provider: string | undefined;
@IsOptional()
@IsString()
@bind()
error: string | undefined;
}