-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Issues with verifyIdToken #58
Open
jtdLab
wants to merge
6
commits into
invertase:main
Choose a base branch
from
jtdLab:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1981f22
update token_verifier to match node admin-sdk
jtdLab f2d9a30
fix token verification for emulator
jtdLab b0c844c
test: add decode id token test
jtdLab 8cab3de
refactor: simplify by readding verifyJwtSignature
jtdLab c37a01f
fix: dont catch all errors when using emulator e.g expired should sti…
jtdLab a6d1436
test: remove uid
jtdLab File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,15 @@ class EmulatorSignatureVerifier implements SignatureVerifier { | |
@override | ||
Future<void> verify(String token) async { | ||
// Signature checks skipped for emulator; no need to fetch public keys. | ||
|
||
try { | ||
verifyJwtSignature( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would recommend maybe keeping the |
||
token, | ||
SecretKey(''), | ||
); | ||
} on JWTInvalidException catch (e) { | ||
// Emulator tokens have "alg": "none" | ||
if (e.message == 'unknown algorithm') return; | ||
if (e.message == 'invalid signature') return; | ||
rethrow; | ||
} | ||
|
@@ -122,11 +125,23 @@ class PublicKeySignatureVerifier implements SignatureVerifier { | |
'no-matching-kid-error', | ||
); | ||
} | ||
verifyJwtSignature( | ||
token, | ||
RSAPublicKey.cert(publicKey), | ||
issueAt: Duration.zero, // Any past date should be valid | ||
); | ||
|
||
try { | ||
verifyJwtSignature( | ||
token, | ||
RSAPublicKey.cert(publicKey), | ||
issueAt: Duration.zero, // Any past date should be valid | ||
); | ||
} catch (e, stackTrace) { | ||
Error.throwWithStackTrace( | ||
JwtError( | ||
JwtErrorCode.invalidSignature, | ||
'Error while verifying signature of Firebase ID token: $e', | ||
), | ||
stackTrace, | ||
); | ||
} | ||
|
||
// At this point most JWTException's should have been caught in | ||
// verifyJwtSignature, but we could still get some from JWT.decode above | ||
} on JWTException catch (e) { | ||
|
@@ -169,14 +184,6 @@ void verifyJwtSignature( | |
), | ||
stackTrace, | ||
); | ||
} catch (e, stackTrace) { | ||
Error.throwWithStackTrace( | ||
JwtError( | ||
JwtErrorCode.invalidSignature, | ||
'Error while verifying signature of Firebase ID token: $e', | ||
), | ||
stackTrace, | ||
); | ||
} | ||
} | ||
|
||
|
51 changes: 51 additions & 0 deletions
51
packages/dart_firebase_admin/test/auth/token_verifier_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import 'package:dart_firebase_admin/src/auth.dart'; | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('DecodedIdToken', () { | ||
test('.fromMap', () async { | ||
final idToken = DecodedIdToken.fromMap( | ||
{ | ||
'aud': 'mock-aud', | ||
'auth_time': 1, | ||
'email': 'mock-email', | ||
'email_verified': true, | ||
'exp': 1, | ||
'firebase': { | ||
'identities': { | ||
'email': 'mock-email', | ||
}, | ||
'sign_in_provider': 'mock-sign-in-provider', | ||
'sign_in_second_factor': 'mock-sign-in-second-factor', | ||
'second_factor_identifier': 'mock-second-factor-identifier', | ||
'tenant': 'mock-tenant', | ||
}, | ||
'iat': 1, | ||
'iss': 'mock-iss', | ||
'phone_number': 'mock-phone-number', | ||
'picture': 'mock-picture', | ||
'sub': 'mock-sub', | ||
}, | ||
); | ||
expect(idToken.aud, 'mock-aud'); | ||
expect(idToken.authTime, DateTime.fromMillisecondsSinceEpoch(1000)); | ||
expect(idToken.email, 'mock-email'); | ||
expect(idToken.emailVerified, true); | ||
expect(idToken.exp, 1); | ||
expect(idToken.firebase.identities, {'email': 'mock-email'}); | ||
expect(idToken.firebase.signInProvider, 'mock-sign-in-provider'); | ||
expect(idToken.firebase.signInSecondFactor, 'mock-sign-in-second-factor'); | ||
expect( | ||
idToken.firebase.secondFactorIdentifier, | ||
'mock-second-factor-identifier', | ||
); | ||
expect(idToken.firebase.tenant, 'mock-tenant'); | ||
expect(idToken.iat, 1); | ||
expect(idToken.iss, 'mock-iss'); | ||
expect(idToken.phoneNumber, 'mock-phone-number'); | ||
expect(idToken.picture, 'mock-picture'); | ||
expect(idToken.sub, 'mock-sub'); | ||
expect(idToken.uid, 'mock-sub'); | ||
}); | ||
}); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since behavior changed here, would you mind writing a test?