| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * Copyright 2019 Google
- *
- * 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/LICENSE2.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.
- */
- #include <TargetConditionals.h>
- #if TARGET_OS_IOS
- #import "FIRMultiFactorResolver.h"
- #import "FIRAdditionalUserInfo.h"
- #import "FIRAuthBackend+MultiFactor.h"
- #import "FIRAuthDataResult_Internal.h"
- #import "FIRAuthProtoFinalizeMFAPhoneRequestInfo.h"
- #import "FIRAuth_Internal.h"
- #import "FIRFinalizeMFASignInRequest.h"
- #import "FIRMultiFactorResolver+Internal.h"
- #import "FIRMultiFactorSession+Internal.h"
- #if TARGET_OS_IOS
- #import "FIRPhoneAuthCredential_Internal.h"
- #import "FIRPhoneMultiFactorAssertion+Internal.h"
- #import "FIRPhoneMultiFactorAssertion.h"
- #endif
- NS_ASSUME_NONNULL_BEGIN
- @implementation FIRMultiFactorResolver
- - (instancetype)initWithMFAPendingCredential:(NSString *_Nullable)MFAPendingCredential
- hints:(NSArray<FIRMultiFactorInfo *> *)hints {
- self = [super init];
- if (self) {
- _MFAPendingCredential = MFAPendingCredential;
- _hints = hints;
- _auth = [FIRAuth auth];
- _session = [[FIRMultiFactorSession alloc] init];
- _session.MFAPendingCredential = MFAPendingCredential;
- }
- return self;
- }
- - (void)resolveSignInWithAssertion:(nonnull FIRMultiFactorAssertion *)assertion
- completion:(nullable FIRAuthDataResultCallback)completion {
- #if TARGET_OS_IOS
- FIRPhoneMultiFactorAssertion *phoneAssertion = (FIRPhoneMultiFactorAssertion *)assertion;
- FIRAuthProtoFinalizeMFAPhoneRequestInfo *finalizeMFAPhoneRequestInfo =
- [[FIRAuthProtoFinalizeMFAPhoneRequestInfo alloc]
- initWithSessionInfo:phoneAssertion.authCredential.verificationID
- verificationCode:phoneAssertion.authCredential.verificationCode];
- FIRFinalizeMFASignInRequest *request =
- [[FIRFinalizeMFASignInRequest alloc] initWithMFAProvider:phoneAssertion.factorID
- MFAPendingCredential:self.MFAPendingCredential
- verificationInfo:finalizeMFAPhoneRequestInfo
- requestConfiguration:self.auth.requestConfiguration];
- [FIRAuthBackend finalizeMultiFactorSignIn:request
- callback:^(FIRFinalizeMFASignInResponse * _Nullable response,
- NSError * _Nullable error) {
- if (error) {
- if (completion) {
- completion(nil, error);
- }
- } else {
- [FIRAuth.auth completeSignInWithAccessToken:response.IDToken
- accessTokenExpirationDate:nil
- refreshToken:response.refreshToken
- anonymous:NO
- callback:^(FIRUser *_Nullable user, NSError *_Nullable error) {
- FIRAuthDataResult* result =
- [[FIRAuthDataResult alloc] initWithUser:user additionalUserInfo:nil];
- FIRAuthDataResultCallback decoratedCallback =
- [FIRAuth.auth signInFlowAuthDataResultCallbackByDecoratingCallback:completion];
- decoratedCallback(result, error);
- }];
- }
- }];
- #endif
- }
- @end
- NS_ASSUME_NONNULL_END
- #endif
|