-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathidentity_fn.py
600 lines (460 loc) · 17 KB
/
identity_fn.py
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
595
596
597
598
599
600
# Copyright 2022 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Cloud functions to handle Eventarc events."""
# pylint: disable=protected-access,cyclic-import
import typing as _typing
import functools as _functools
import datetime as _dt
import dataclasses as _dataclasses
import firebase_functions.options as _options
import firebase_functions.private.util as _util
from flask import (
Request as _Request,
Response as _Response,
)
@_dataclasses.dataclass(frozen=True)
class AuthUserInfo:
"""
User info that is part of the AuthUserRecord.
"""
uid: str
"""The user identifier for the linked provider."""
provider_id: str
"""The linked provider ID (such as "google.com" for the Google provider)."""
display_name: str | None = None
"""The display name for the linked provider."""
email: str | None = None
"""The email for the linked provider."""
photo_url: str | None = None
"""The photo URL for the linked provider."""
phone_number: str | None = None
"""The phone number for the linked provider."""
@_dataclasses.dataclass(frozen=True)
class AuthUserMetadata:
"""
Additional metadata about the user.
"""
creation_time: _dt.datetime
"""The date the user was created."""
last_sign_in_time: _typing.Optional[_dt.datetime]
"""The date the user last signed in."""
@_dataclasses.dataclass(frozen=True)
class AuthMultiFactorInfo:
"""
Interface representing the common properties of a user-enrolled second factor.
"""
uid: str
"""
The ID of the enrolled second factor. This ID is unique to the user.
"""
display_name: str | None
"""
The optional display name of the enrolled second factor.
"""
factor_id: str
"""
The type identifier of the second factor. For SMS second factors, this is `phone`.
"""
enrollment_time: _dt.datetime | None
"""
The optional date the second factor was enrolled.
"""
phone_number: str | None
"""
The phone number associated with a phone second factor.
"""
@_dataclasses.dataclass(frozen=True)
class AuthMultiFactorSettings:
"""
The multi-factor related properties for the current user, if available.
"""
enrolled_factors: list[AuthMultiFactorInfo]
"""
List of second factors enrolled with the current user.
"""
@_dataclasses.dataclass(frozen=True)
class AuthUserRecord:
"""
The UserRecord passed to auth blocking functions from the identity platform.
"""
uid: str
"""
The user's `uid`.
"""
email: str | None
"""
The user's primary email, if set.
"""
email_verified: bool | None
"""
Whether or not the user's primary email is verified.
"""
display_name: str | None
"""
The user's display name.
"""
photo_url: str | None
"""
The user's photo URL.
"""
phone_number: str | None
"""
The user's primary phone number, if set.
"""
disabled: bool
"""
Whether or not the user is disabled: `true` for disabled; `false` for enabled.
"""
metadata: AuthUserMetadata
"""
Additional metadata about the user.
"""
provider_data: list[AuthUserInfo]
"""
An array of providers (such as Google or Facebook) linked to the user.
"""
password_hash: str | None
"""
The user's hashed password (base64-encoded).
"""
password_salt: str | None
"""
The user's password salt (base64-encoded).
"""
custom_claims: dict[str, _typing.Any] | None
"""
The user's custom claims object if available.
"""
tenant_id: str | None
"""
The ID of the tenant the user belongs to, if available.
"""
tokens_valid_after_time: _dt.datetime | None
"""The date the user's tokens are valid after."""
multi_factor: AuthMultiFactorSettings | None
"""The multi-factor related properties for the current user, if available."""
@_dataclasses.dataclass(frozen=True)
class AdditionalUserInfo:
"""
The additional user info component of the auth event context.
"""
provider_id: str | None
"""The provider identifier."""
profile: dict[str, _typing.Any] | None
"""The user's profile data as a dictionary."""
username: str | None
"""The user's username, if available."""
is_new_user: bool
"""A boolean indicating if the user is new or not."""
recaptcha_score: float | None
"""The user's reCAPTCHA score, if available."""
email: str | None
"""The user's email, if available."""
phone_number: str | None
"""The user's phone number, if available."""
@_dataclasses.dataclass(frozen=True)
class Credential:
"""
The credential component of the auth event context.
"""
claims: dict[str, _typing.Any] | None
"""The user's claims data as a dictionary."""
id_token: str | None
"""The user's ID token."""
access_token: str | None
"""The user's access token."""
refresh_token: str | None
"""The user's refresh token."""
expiration_time: _dt.datetime | None
"""The expiration time of the user's access token."""
secret: str | None
"""The user's secret."""
provider_id: str
"""The provider identifier."""
sign_in_method: str
"""The user's sign-in method."""
EmailType = _typing.Literal["EMAIL_SIGN_IN", "PASSWORD_RESET"]
SmsType = _typing.Literal["SIGN_IN_OR_SIGN_UP", "MULTI_FACTOR_SIGN_IN",
"MULTI_FACTOR_ENROLLMENT"]
@_dataclasses.dataclass(frozen=True)
class AuthBlockingEvent:
"""
Defines an auth event for identitytoolkit v2 auth blocking events.
"""
data: AuthUserRecord | None # This is None for beforeEmailSent and beforeSmsSent events
"""
The UserRecord passed to auth blocking functions from the identity platform.
"""
locale: str | None
"""
The application locale. You can set the locale using the client SDK,
or by passing the locale header in the REST API.
Example: 'fr' or 'sv-SE'
"""
event_id: str
"""
The event's unique identifier.
Example: 'rWsyPtolplG2TBFoOkkgyg'
"""
ip_address: str
"""
The IP address of the device the end user is registering or signing in from.
Example: '114.14.200.1'
"""
user_agent: str
"""
The user agent triggering the blocking function.
Example: 'Mozilla/5.0 (X11; Linux x86_64)'
"""
additional_user_info: AdditionalUserInfo
"""An object containing information about the user."""
credential: Credential | None
"""An object containing information about the user's credential."""
email_type: EmailType | None
"""The type of email event."""
sms_type: SmsType | None
"""The type of SMS event."""
timestamp: _dt.datetime
"""
The time the event was triggered."""
RecaptchaActionOptions = _typing.Literal["ALLOW", "BLOCK"]
"""
The reCAPTCHA action options.
"""
class BeforeCreateResponse(_typing.TypedDict, total=False):
"""
The handler response type for 'before_user_created' blocking events.
"""
display_name: str | None
"""The user's display name."""
disabled: bool | None
"""Whether or not the user is disabled."""
email_verified: bool | None
"""Whether or not the user's primary email is verified."""
photo_url: str | None
"""The user's photo URL."""
custom_claims: dict[str, _typing.Any] | None
"""The user's custom claims object if available."""
recaptcha_action_override: RecaptchaActionOptions | None
class BeforeSignInResponse(BeforeCreateResponse, total=False):
"""
The handler response type for 'before_user_signed_in' blocking events.
"""
session_claims: dict[str, _typing.Any] | None
"""The user's session claims object if available."""
class BeforeEmailSentResponse(_typing.TypedDict, total=False):
"""
The handler response type for 'before_email_sent' blocking events.
"""
recaptcha_action_override: RecaptchaActionOptions | None
class BeforeSmsSentResponse(_typing.TypedDict, total=False):
"""
The handler response type for 'before_sms_sent' blocking events.
"""
recaptcha_action_override: RecaptchaActionOptions | None
BeforeUserCreatedCallable = _typing.Callable[[AuthBlockingEvent],
BeforeCreateResponse | None]
"""
The type of the callable for 'before_user_created' blocking events.
"""
BeforeUserSignedInCallable = _typing.Callable[[AuthBlockingEvent],
BeforeSignInResponse | None]
"""
The type of the callable for 'before_user_signed_in' blocking events.
"""
BeforeEmailSentCallable = _typing.Callable[[AuthBlockingEvent],
BeforeEmailSentResponse | None]
"""
The type of the callable for 'before_email_sent' blocking events.
"""
BeforeSmsSentCallable = _typing.Callable[[AuthBlockingEvent],
BeforeSmsSentResponse | None]
"""
The type of the callable for 'before_sms_sent' blocking events.
"""
@_util.copy_func_kwargs(_options.BlockingOptions)
def before_user_signed_in(
**kwargs,
) -> _typing.Callable[[BeforeUserSignedInCallable], BeforeUserSignedInCallable]:
"""
Handles an event that is triggered before a user is signed in.
Example:
.. code-block:: python
from firebase_functions import identity_fn
@identity_fn.before_user_signed_in()
def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeSignInResponse | None:
pass
:param \\*\\*kwargs: Options.
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BlockingOptions`
:rtype: :exc:`typing.Callable`
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
:exc:`firebase_functions.identity_fn.BeforeSignInResponse` \\| `None` \\]
A function that takes a AuthBlockingEvent and optionally returns BeforeSignInResponse.
"""
options = _options.BlockingOptions(**kwargs)
def before_user_signed_in_decorator(func: BeforeUserSignedInCallable):
from firebase_functions.private._identity_fn import event_type_before_sign_in
@_functools.wraps(func)
def before_user_signed_in_wrapped(request: _Request) -> _Response:
from firebase_functions.private._identity_fn import before_operation_handler
return before_operation_handler(
func,
event_type_before_sign_in,
request,
)
_util.set_func_endpoint_attr(
before_user_signed_in_wrapped,
options._endpoint(
func_name=func.__name__,
event_type=event_type_before_sign_in,
),
)
_util.set_required_apis_attr(
before_user_signed_in_wrapped,
options._required_apis(),
)
return before_user_signed_in_wrapped
return before_user_signed_in_decorator
@_util.copy_func_kwargs(_options.BlockingOptions)
def before_user_created(
**kwargs,
) -> _typing.Callable[[BeforeUserCreatedCallable], BeforeUserCreatedCallable]:
"""
Handles an event that is triggered before a user is created.
Example:
.. code-block:: python
from firebase_functions import identity_fn
@identity_fn.before_user_created()
def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeCreateResponse | None:
pass
:param \\*\\*kwargs: Options.
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BlockingOptions`
:rtype: :exc:`typing.Callable`
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
:exc:`firebase_functions.identity_fn.BeforeCreateResponse` \\| `None` \\]
A function that takes a AuthBlockingEvent and optionally returns BeforeCreateResponse.
"""
options = _options.BlockingOptions(**kwargs)
def before_user_created_decorator(func: BeforeUserCreatedCallable):
from firebase_functions.private._identity_fn import event_type_before_create
@_functools.wraps(func)
def before_user_created_wrapped(request: _Request) -> _Response:
from firebase_functions.private._identity_fn import before_operation_handler
return before_operation_handler(
func,
event_type_before_create,
request,
)
_util.set_func_endpoint_attr(
before_user_created_wrapped,
options._endpoint(
func_name=func.__name__,
event_type=event_type_before_create,
),
)
_util.set_required_apis_attr(
before_user_created_wrapped,
options._required_apis(),
)
return before_user_created_wrapped
return before_user_created_decorator
@_util.copy_func_kwargs(_options.BaseBlockingOptions)
def before_email_sent(
**kwargs,
) -> _typing.Callable[[BeforeEmailSentCallable], BeforeEmailSentCallable]:
"""
Handles an event that is triggered before a user's email is sent.
Example:
.. code-block:: python
from firebase_functions import identity_fn
@identity_fn.before_email_sent()
def example(
event: identity_fn.AuthBlockingEvent
) -> identity_fn.BeforeEmailSentResponse | None:
pass
:param \\*\\*kwargs: Options.
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BaseBlockingOptions`
:rtype: :exc:`typing.Callable`
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
:exc:`firebase_functions.identity_fn.BeforeEmailSentResponse` \\| `None` \\]
A function that takes a AuthBlockingEvent and optionally returns
BeforeEmailSentResponse.
"""
options = _options.BaseBlockingOptions(**kwargs)
def before_email_sent_decorator(func: BeforeEmailSentCallable):
from firebase_functions.private._identity_fn_event_types import event_type_before_email_sent
@_functools.wraps(func)
def before_email_sent_wrapped(request: _Request) -> _Response:
from firebase_functions.private._identity_fn import before_operation_handler
return before_operation_handler(
func,
event_type_before_email_sent,
request,
)
_util.set_func_endpoint_attr(
before_email_sent_wrapped,
options._endpoint(
func_name=func.__name__,
event_type=event_type_before_email_sent,
),
)
_util.set_required_apis_attr(
before_email_sent_wrapped,
options._required_apis(),
)
return before_email_sent_wrapped
return before_email_sent_decorator
@_util.copy_func_kwargs(_options.BaseBlockingOptions)
def before_sms_sent(
**kwargs,
) -> _typing.Callable[[BeforeSmsSentCallable], BeforeSmsSentCallable]:
"""
Handles an event that is triggered before a user's SMS is sent.
Example:
.. code-block:: python
from firebase_functions import identity_fn
@identity_fn.before_sms_sent()
def example(event: identity_fn.AuthBlockingEvent) -> identity_fn.BeforeSmsSentResponse | None:
pass
:param \\*\\*kwargs: Options.
:type \\*\\*kwargs: as :exc:`firebase_functions.options.BaseBlockingOptions`
:rtype: :exc:`typing.Callable`
\\[ \\[ :exc:`firebase_functions.identity_fn.AuthBlockingEvent` \\],
:exc:`firebase_functions.identity_fn.BeforeSmsSentResponse` \\| `None` \\]
A function that takes a AuthBlockingEvent and optionally returns BeforeSmsSentResponse.
"""
options = _options.BaseBlockingOptions(**kwargs)
def before_sms_sent_decorator(func: BeforeSmsSentCallable):
from firebase_functions.private._identity_fn_event_types import event_type_before_sms_sent
@_functools.wraps(func)
def before_sms_sent_wrapped(request: _Request) -> _Response:
from firebase_functions.private._identity_fn import before_operation_handler
return before_operation_handler(
func,
event_type_before_sms_sent,
request,
)
_util.set_func_endpoint_attr(
before_sms_sent_wrapped,
options._endpoint(
func_name=func.__name__,
event_type=event_type_before_sms_sent,
),
)
_util.set_required_apis_attr(
before_sms_sent_wrapped,
options._required_apis(),
)
return before_sms_sent_wrapped
return before_sms_sent_decorator