| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /*
- * 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 <FirebaseAuth/FIRAdditionalUserInfo.h>
- #import <FirebaseAuth/FIRMultiFactorResolver.h>
- #import "FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h"
- #import "FirebaseAuth/Sources/Auth/FIRAuth_Internal.h"
- #import "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"
- #import "FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h"
- #import "FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h"
- #import "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"
- #import "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"
- #if TARGET_OS_IOS
- #import <FirebaseAuth/FIRPhoneMultiFactorAssertion.h>
- #import "FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h"
- #import "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.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]
- initWithMFAPendingCredential: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
|