FIRStartMFASignInRequest.m 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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/FIRStartMFASignInRequest.h"
  17. static NSString *const kStartMFASignInEndPoint = @"accounts/mfaSignIn:start";
  18. /** @var kTenantIDKey
  19. @brief The key for the tenant id value in the request.
  20. */
  21. static NSString *const kTenantIDKey = @"tenantId";
  22. @implementation FIRStartMFASignInRequest
  23. - (nullable instancetype)
  24. initWithMFAPendingCredential:(NSString *)MFAPendingCredential
  25. MFAEnrollmentID:(NSString *)MFAEnrollmentID
  26. signInInfo:(FIRAuthProtoStartMFAPhoneRequestInfo *)signInInfo
  27. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration {
  28. self = [super initWithEndpoint:kStartMFASignInEndPoint
  29. requestConfiguration:requestConfiguration
  30. useIdentityPlatform:YES
  31. useStaging:NO];
  32. if (self) {
  33. _MFAPendingCredential = MFAPendingCredential;
  34. _MFAEnrollmentID = MFAEnrollmentID;
  35. _signInInfo = signInInfo;
  36. }
  37. return self;
  38. }
  39. - (nullable id)unencodedHTTPRequestBodyWithError:(NSError *__autoreleasing _Nullable *)error {
  40. NSMutableDictionary *postBody = [NSMutableDictionary dictionary];
  41. if (_MFAPendingCredential) {
  42. postBody[@"mfaPendingCredential"] = _MFAPendingCredential;
  43. }
  44. if (_MFAEnrollmentID) {
  45. postBody[@"mfaEnrollmentId"] = _MFAEnrollmentID;
  46. }
  47. if (_signInInfo) {
  48. if ([_signInInfo isKindOfClass:[FIRAuthProtoStartMFAPhoneRequestInfo class]]) {
  49. postBody[@"phoneSignInInfo"] = [_signInInfo dictionary];
  50. }
  51. }
  52. if (self.tenantID) {
  53. postBody[kTenantIDKey] = self.tenantID;
  54. }
  55. return [postBody copy];
  56. }
  57. @end