-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathphone_number_verification.py
More file actions
250 lines (200 loc) · 8.84 KB
/
phone_number_verification.py
File metadata and controls
250 lines (200 loc) · 8.84 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
# Copyright 2026 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.
"""Firebase Phone Number Verification module.
This module contains functions for verifying JWTs related to the Firebase
Phone Number Verification service.
"""
from __future__ import annotations
from typing import Any, Dict, Optional
import jwt
from jwt import (
PyJWKClient, InvalidSignatureError,
PyJWKClientError, InvalidAudienceError, InvalidIssuerError, ExpiredSignatureError
)
from firebase_admin import App, _utils, exceptions
_FPNV_ATTRIBUTE = '_phone_number_verification'
_FPNV_JWKS_URL = 'https://fpnv.googleapis.com/v1beta/jwks'
_FPNV_ISSUER = 'https://fpnv.googleapis.com/projects/'
_ALGORITHM_ES256 = 'ES256'
def _get_fpnv_service(app):
return _utils.get_app_service(app, _FPNV_ATTRIBUTE, _FpnvService)
def verify_token(token: str, app: Optional[App] = None) -> PhoneNumberVerificationToken:
"""Verifies a Firebase Phone Number Verification token.
Args:
token: A string containing the Firebase Phone Number Verification JWT.
app: An App instance (optional).
Returns:
PhoneNumberVerificationToken: The verified token claims.
Raises:
ValueError: If the token is not a string or is empty.
InvalidTokenError: If the token is invalid or malformed.
ExpiredTokenError: If the token has expired.
"""
return _get_fpnv_service(app).verify_token(token)
class PhoneNumberVerificationToken(dict):
"""Represents a verified Firebase Phone Number Verification token.
This class behaves like a dictionary, allowing access to the decoded claims.
It also provides convenience properties for common claims.
"""
def __init__(self, claims):
super().__init__(claims)
self['phone_number'] = claims.get('sub')
@property
def phone_number(self) -> str:
"""Returns the phone number of the user.
This corresponds to the 'sub' claim in the JWT.
"""
return self.get('sub')
@property
def issuer(self) -> str:
"""Returns the issuer identifier for the issuer of the response."""
return self.get('iss')
@property
def audience(self) -> str:
"""Returns the audience for which this token is intended."""
return self.get('aud')
@property
def exp(self) -> int:
"""Returns the expiration time since the Unix epoch."""
return self.get('exp')
@property
def iat(self) -> int:
"""Returns the issued-at time since the Unix epoch."""
return self.get('iat')
@property
def sub(self) -> str:
"""Returns the sub (subject) of the token, which is the phone number."""
return self.get('sub')
@property
def claims(self):
"""Returns the entire map of claims."""
return self
class _FpnvService:
"""Service class that implements Firebase Phone Number Verification functionality."""
_project_id = None
def __init__(self, app):
self._project_id = app.project_id
if not self._project_id:
raise ValueError(
'Project ID is required for Firebase Phone Number Verification. Please ensure the '
'app is initialized with a credential that contains a project ID.'
)
self._verifier = _FpnvTokenVerifier(self._project_id)
def verify_token(self, token) -> PhoneNumberVerificationToken:
"""Verifies a Firebase Phone Number Verification token.
Verifies the signature, expiration, and claims of the token.
Args:
token: A string containing the Firebase Phone Number Verification JWT.
Returns:
PhoneNumberVerificationToken: The verified token claims.
Raises:
ValueError: If the token is not a string or is empty.
InvalidTokenError: If the token is invalid or malformed.
ExpiredTokenError: If the token has expired.
"""
return PhoneNumberVerificationToken(self._verifier.verify(token))
class _FpnvTokenVerifier:
"""Internal class for verifying Firebase Phone Number Verification JWTs signed with ES256."""
_jwks_client = None
_project_id = None
def __init__(self, project_id):
self._project_id = project_id
self._jwks_client = PyJWKClient(_FPNV_JWKS_URL, lifespan=21600)
def verify(self, token) -> Dict[str, Any]:
"""Verifies the given Firebase Phone Number Verification token."""
_Validators.check_string("Firebase Phone Number Verification check token", token)
try:
self._validate_headers(jwt.get_unverified_header(token))
signing_key = self._jwks_client.get_signing_key_from_jwt(token)
claims = self._decode_and_verify(token, signing_key.key)
except (jwt.InvalidTokenError, PyJWKClientError) as exception:
raise InvalidTokenError(
'Verifying phone number verification token failed.',
cause=exception,
http_response=getattr(exception, 'http_response', None)
) from exception
return claims
def _validate_headers(self, headers: Any) -> None:
"""Validates the headers."""
if headers.get('kid') is None:
raise InvalidTokenError("Token has no 'kid' claim.")
if headers.get('typ') != 'JWT':
raise InvalidTokenError(
'The provided token has an incorrect type header. ' \
f"Expected 'JWT' but got {headers.get('typ')!r}."
)
algorithm = headers.get('alg')
if algorithm != _ALGORITHM_ES256:
raise InvalidTokenError(
'The provided token has an incorrect alg header. '
f'Expected {_ALGORITHM_ES256} but got {algorithm}.'
)
def _decode_and_verify(self, token, signing_key) -> Dict[str, Any]:
"""Decodes and verifies the token."""
expected_issuer = f'{_FPNV_ISSUER}{self._project_id}'
try:
payload = jwt.decode(
token,
signing_key,
algorithms=[_ALGORITHM_ES256],
audience=expected_issuer,
issuer=expected_issuer
)
except InvalidSignatureError as exception:
raise InvalidTokenError(
'The provided token has an invalid signature.'
) from exception
except InvalidAudienceError as exception:
raise InvalidTokenError(
'The provided token has an incorrect "aud" (audience) claim. '
f'Expected {expected_issuer}.'
) from exception
except InvalidIssuerError as exception:
raise InvalidTokenError(
'The provided token has an incorrect "iss" (issuer) claim. '
f'Expected {expected_issuer}.'
) from exception
except ExpiredSignatureError as exception:
raise ExpiredTokenError(
'The provided token has expired.'
) from exception
except jwt.InvalidTokenError as exception:
raise InvalidTokenError(
f'Decoding token failed. Error: {exception}'
) from exception
sub_claim = payload.get('sub')
if not isinstance(sub_claim, str) or not sub_claim:
raise InvalidTokenError(
'The provided token has an incorrect "sub" (subject) claim. '
'Expected a non-empty string.'
)
return payload
class _Validators:
"""A collection of data validation utilities.
Methods provided in this class raise ``ValueErrors`` if any validations fail.
"""
@classmethod
def check_string(cls, label: str, value: Any):
"""Checks if the given value is a string."""
if not isinstance(value, str) or not value:
raise ValueError(f'{label} must be a non-empty string.')
# Firebase Phone Number Verification Errors
class InvalidTokenError(exceptions.InvalidArgumentError):
"""Raised when a Firebase Phone Number Verification token is invalid."""
def __init__(self, message, cause=None, http_response=None):
exceptions.InvalidArgumentError.__init__(self, message, cause, http_response)
class ExpiredTokenError(InvalidTokenError):
"""Raised when a Firebase Phone Number Verification token is expired."""
def __init__(self, message, cause=None, http_response=None):
InvalidTokenError.__init__(self, message, cause, http_response)