-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[Passkey #10] Add sample code for passkey sign in and enrollment #12128
Draft
Xiaoshouzi-gh
wants to merge
3
commits into
passkey-main
Choose a base branch
from
passkey-sample
base: passkey-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.
Draft
Changes from all commits
Commits
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
31 changes: 31 additions & 0 deletions
31
FirebaseAuth/Tests/Sample/Sample/MainViewController+Passkey.h
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,31 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* 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. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import "MainViewController.h" | ||
|
||
#import "StaticContentTableViewManager.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MainViewController (Passkey) | ||
|
||
- (StaticContentTableViewSection *)passkeySection; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
103 changes: 103 additions & 0 deletions
103
FirebaseAuth/Tests/Sample/Sample/MainViewController+Passkey.m
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,103 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* 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. | ||
*/ | ||
#import "MainViewController+Passkey.h" | ||
#import "AppManager.h" | ||
#import "MainViewController+Internal.h" | ||
#import <AuthenticationServices/AuthenticationServices.h> | ||
|
||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
@interface MainViewController () <ASAuthorizationControllerDelegate, ASAuthorizationControllerPresentationContextProviding> | ||
@end | ||
|
||
@implementation MainViewController (Passkey) | ||
|
||
- (StaticContentTableViewSection *)passkeySection { | ||
__weak typeof(self) weakSelf = self; | ||
return [StaticContentTableViewSection sectionWithTitle:@"Passkey" cells:@[ | ||
[StaticContentTableViewCell cellWithTitle:@"Sign Up With Passkey" | ||
action:^{ [weakSelf passkeySignUp]; }], | ||
[StaticContentTableViewCell cellWithTitle:@"Sign In With Passkey" | ||
action:^{ [weakSelf passkeySignIn]; }], | ||
[StaticContentTableViewCell cellWithTitle:@"Enroll with Passkey" | ||
action:^{ [weakSelf passkeyEnroll]; }], | ||
]]; | ||
} | ||
|
||
- (void)passkeySignUp { | ||
// sign in anoymously | ||
[[AppManager auth] signInAnonymouslyWithCompletion:^(FIRAuthDataResult *_Nullable result, | ||
NSError *_Nullable error) { | ||
if (error) { | ||
[self logFailure:@"sign-in anonymously failed" error:error]; | ||
} else { | ||
[self logSuccess:@"sign-in anonymously succeeded."]; | ||
[self log:[NSString stringWithFormat:@"User ID : %@", result.user.uid]]; | ||
[self passkeyEnroll]; | ||
} | ||
}]; | ||
} | ||
|
||
- (void)passkeyEnroll { | ||
FIRUser *user = FIRAuth.auth.currentUser; | ||
if (!user) { | ||
[self logFailure:@"Please sign in first." error:nil]; | ||
return; | ||
} | ||
[self showTextInputPromptWithMessage:@"passkey name" | ||
keyboardType:UIKeyboardTypeEmailAddress | ||
completionBlock:^(BOOL userPressedOK, NSString *_Nullable passkeyName) { | ||
if (@available(iOS 16.0, macOS 12.0, tvOS 16.0, *)) { | ||
[user startPasskeyEnrollmentWithName:passkeyName completion:^(ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest * _Nullable request, NSError * _Nullable error) { | ||
if (request) { | ||
ASAuthorizationController *controller = [[ASAuthorizationController alloc] initWithAuthorizationRequests: [NSMutableArray arrayWithObject:request]]; | ||
controller.delegate = self; | ||
controller.presentationContextProvider = self; | ||
[controller performRequests]; | ||
} else if (error) { | ||
[self logFailure:@"Passkey enrollment failed" error:error]; | ||
} | ||
}]; | ||
} else { | ||
[self log:@"OS version is not supported for this action."]; | ||
} | ||
}]; | ||
|
||
} | ||
|
||
- (void)passkeySignIn { | ||
if (@available(iOS 16.0, macOS 12.0, tvOS 16.0, *)) { | ||
[[AppManager auth] startPasskeySignInWithCompletion:^(ASAuthorizationPlatformPublicKeyCredentialAssertionRequest * _Nullable request, NSError * _Nullable error) { | ||
if (request) { | ||
ASAuthorizationController *controller = [[ASAuthorizationController alloc] initWithAuthorizationRequests: [NSMutableArray arrayWithObject:request]]; | ||
controller.delegate = self; | ||
controller.presentationContextProvider = self; | ||
[controller performRequestsWithOptions:ASAuthorizationControllerRequestOptionPreferImmediatelyAvailableCredentials]; | ||
} | ||
}]; | ||
} else { | ||
[self log:@"OS version is not supported for this action."]; | ||
} | ||
} | ||
|
||
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. Please remove unused code. |
||
//- (ASPresentationAnchor)presentationAnchorForAuthorizationController:(ASAuthorizationController *)controller API_AVAILABLE(ios(13.0)){ | ||
// | ||
// return self.view.window; | ||
//} | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
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
Oops, something went wrong.
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.
nit: fix TODO