| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Copyright 2023 Google LLC
- //
- // 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/LICENSE-2.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.
- import Foundation
- /// The key for the Phone Number parameter in the request.
- private let kPhoneNumberKey = "phoneNumber"
- /// The key for the receipt parameter in the request.
- private let kReceiptKey = "iosReceipt"
- /// The key for the Secret parameter in the request.
- private let kSecretKey = "iosSecret"
- /// The key for the reCAPTCHAToken parameter in the request.
- private let kreCAPTCHATokenKey = "recaptchaToken"
- class AuthProtoStartMFAPhoneRequestInfo: NSObject, AuthProto {
- required init(dictionary: [String: AnyHashable]) {
- fatalError()
- }
- var phoneNumber: String?
- var codeIdentity: CodeIdentity
- init(phoneNumber: String?, codeIdentity: CodeIdentity) {
- self.phoneNumber = phoneNumber
- self.codeIdentity = codeIdentity
- }
- var dictionary: [String: AnyHashable] {
- var dict: [String: AnyHashable] = [:]
- if let phoneNumber = phoneNumber {
- dict[kPhoneNumberKey] = phoneNumber
- }
- switch codeIdentity {
- case let .credential(appCredential):
- dict[kReceiptKey] = appCredential.receipt
- dict[kSecretKey] = appCredential.secret
- case let .recaptcha(reCAPTCHAToken):
- dict[kreCAPTCHATokenKey] = reCAPTCHAToken
- case .empty:
- break
- }
- return dict
- }
- }
|