| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // 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 "sendVerificationCodeEnd" endpoint.
- private let kSendVerificationCodeEndPoint = "sendVerificationCode"
- /// 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"
- /// The key for the "clientType" value in the request.
- private let kClientType = "clientType"
- /// The key for the "captchaResponse" value in the request.
- private let kCaptchaResponseKey = "captchaResponse"
- /// The key for the "recaptchaVersion" value in the request.
- private let kRecaptchaVersion = "recaptchaVersion"
- /// The key for the tenant id value in the request.
- private let kTenantIDKey = "tenantId"
- /// A verification code can be an appCredential or a reCaptcha Token
- enum CodeIdentity: Equatable {
- case credential(AuthAppCredential)
- case recaptcha(String)
- case empty
- }
- @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
- class SendVerificationCodeRequest: IdentityToolkitRequest, AuthRPCRequest {
- typealias Response = SendVerificationCodeResponse
- /// The phone number to which the verification code should be sent.
- let phoneNumber: String
- /// The credential or reCAPTCHA token to prove the identity of the app in order to send the
- /// verification code.
- let codeIdentity: CodeIdentity
- /// Response to the captcha.
- var captchaResponse: String?
- /// The reCAPTCHA version.
- var recaptchaVersion: String?
- init(phoneNumber: String, codeIdentity: CodeIdentity,
- requestConfiguration: AuthRequestConfiguration) {
- self.phoneNumber = phoneNumber
- self.codeIdentity = codeIdentity
- super.init(
- endpoint: kSendVerificationCodeEndPoint,
- requestConfiguration: requestConfiguration
- )
- }
- var unencodedHTTPRequestBody: [String: AnyHashable]? {
- var postBody: [String: AnyHashable] = [:]
- postBody[kPhoneNumberKey] = phoneNumber
- switch codeIdentity {
- case let .credential(appCredential):
- postBody[kReceiptKey] = appCredential.receipt
- postBody[kSecretKey] = appCredential.secret
- case let .recaptcha(reCAPTCHAToken):
- postBody[kreCAPTCHATokenKey] = reCAPTCHAToken
- case .empty: break
- }
- if let captchaResponse {
- postBody[kCaptchaResponseKey] = captchaResponse
- }
- if let recaptchaVersion {
- postBody[kRecaptchaVersion] = recaptchaVersion
- }
- if let tenantID {
- postBody[kTenantIDKey] = tenantID
- }
- postBody[kClientType] = clientType
- return postBody
- }
- func injectRecaptchaFields(recaptchaResponse: String?, recaptchaVersion: String) {
- captchaResponse = recaptchaResponse
- self.recaptchaVersion = recaptchaVersion
- }
- }
|