FIRFinalizeMFASignInRequest.m 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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)
  24. initWithMFAPendingCredential:(NSString *)MFAPendingCredential
  25. verificationInfo:(FIRAuthProtoFinalizeMFAPhoneRequestInfo *)verificationInfo
  26. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration {
  27. self = [super initWithEndpoint:kFinalizeMFASignInEndPoint
  28. requestConfiguration:requestConfiguration
  29. useIdentityPlatform:YES
  30. useStaging:NO];
  31. if (self) {
  32. _MFAPendingCredential = MFAPendingCredential;
  33. _verificationInfo = verificationInfo;
  34. }
  35. return self;
  36. }
  37. - (nullable id)unencodedHTTPRequestBodyWithError:(NSError *__autoreleasing _Nullable *)error {
  38. NSMutableDictionary *postBody = [NSMutableDictionary dictionary];
  39. if (_MFAPendingCredential) {
  40. postBody[@"mfaPendingCredential"] = _MFAPendingCredential;
  41. }
  42. if (_verificationInfo) {
  43. if ([_verificationInfo isKindOfClass:[FIRAuthProtoFinalizeMFAPhoneRequestInfo class]]) {
  44. postBody[@"phoneVerificationInfo"] = [_verificationInfo dictionary];
  45. }
  46. }
  47. if (self.tenantID) {
  48. postBody[kTenantIDKey] = self.tenantID;
  49. }
  50. return [postBody copy];
  51. }
  52. @end