FIRFinalizeMFASignInRequest.m 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright 2019 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import "FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h"
  17. static NSString *const kFinalizeMFASignInEndPoint = @"accounts/mfaSignIn:finalize";
  18. /** @var kTenantIDKey
  19. @brief The key for the tenant id value in the request.
  20. */
  21. static NSString *const kTenantIDKey = @"tenantId";
  22. @implementation FIRFinalizeMFASignInRequest
  23. - (nullable instancetype)initWithMFAPendingCredential:(NSString *)MFAPendingCredential
  24. verificationInfo:(NSObject<FIRAuthProto> *)verificationInfo
  25. requestConfiguration:
  26. (FIRAuthRequestConfiguration *)requestConfiguration {
  27. self = [super initWithEndpoint:kFinalizeMFASignInEndPoint
  28. requestConfiguration:requestConfiguration];
  29. self.useIdentityPlatform = YES;
  30. if (self) {
  31. _MFAPendingCredential = MFAPendingCredential;
  32. _verificationInfo = verificationInfo;
  33. }
  34. return self;
  35. }
  36. - (nullable id)unencodedHTTPRequestBodyWithError:(NSError *__autoreleasing _Nullable *)error {
  37. NSMutableDictionary *postBody = [NSMutableDictionary dictionary];
  38. if (_MFAPendingCredential) {
  39. postBody[@"mfaPendingCredential"] = _MFAPendingCredential;
  40. }
  41. if (_verificationInfo) {
  42. if ([_verificationInfo isKindOfClass:[FIRAuthProtoFinalizeMFAPhoneRequestInfo class]]) {
  43. postBody[@"phoneVerificationInfo"] = [_verificationInfo dictionary];
  44. }
  45. if ([_verificationInfo isKindOfClass:[FIRAuthProtoFinalizeMFATOTPSignInRequestInfo class]]) {
  46. postBody[@"totpVerificationInfo"] = [_verificationInfo dictionary];
  47. FIRAuthProtoFinalizeMFATOTPSignInRequestInfo *fIRAuthProtoFinalizeMFATotpSignInRequestInfo =
  48. (FIRAuthProtoFinalizeMFATOTPSignInRequestInfo *)_verificationInfo;
  49. // mfaEnrollmentID only required for TOTP
  50. // https://source.corp.google.com/piper///depot/google3/google/cloud/identitytoolkit/v2/authentication_service.proto;l=139?q=symbol:google.cloud.identitytoolkit.v2.FinalizeMfaSignInRequest
  51. postBody[@"mfaEnrollmentId"] = fIRAuthProtoFinalizeMFATotpSignInRequestInfo.mfaEnrollmentID;
  52. }
  53. }
  54. if (self.tenantID) {
  55. postBody[kTenantIDKey] = self.tenantID;
  56. }
  57. return [postBody copy];
  58. }
  59. @end