FIRFinalizeMFAEnrollmentRequest.m 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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/Enroll/FIRFinalizeMFAEnrollmentRequest.h"
  17. static NSString *const kFinalizeMFAEnrollmentEndPoint = @"accounts/mfaEnrollment: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 FIRFinalizeMFAEnrollmentRequest
  23. - (nullable instancetype)initWithIDToken:(NSString *)IDToken
  24. displayName:(NSString *)displayName
  25. verificationInfo:(FIRAuthProtoFinalizeMFAPhoneRequestInfo *)verificationInfo
  26. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration {
  27. self = [super initWithEndpoint:kFinalizeMFAEnrollmentEndPoint
  28. requestConfiguration:requestConfiguration
  29. useIdentityPlatform:YES
  30. useStaging:NO];
  31. if (self) {
  32. _IDToken = IDToken;
  33. _displayName = displayName;
  34. _verificationInfo = verificationInfo;
  35. }
  36. return self;
  37. }
  38. - (nullable id)unencodedHTTPRequestBodyWithError:(NSError *__autoreleasing _Nullable *)error {
  39. NSMutableDictionary *postBody = [NSMutableDictionary dictionary];
  40. if (_IDToken) {
  41. postBody[@"idToken"] = _IDToken;
  42. }
  43. if (_displayName) {
  44. postBody[@"displayName"] = _displayName;
  45. }
  46. if (_verificationInfo) {
  47. if ([_verificationInfo isKindOfClass:[FIRAuthProtoFinalizeMFAPhoneRequestInfo class]]) {
  48. postBody[@"phoneVerificationInfo"] = [_verificationInfo dictionary];
  49. }
  50. }
  51. if (self.tenantID) {
  52. postBody[kTenantIDKey] = self.tenantID;
  53. }
  54. return [postBody copy];
  55. }
  56. @end