mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 14:24:59 +00:00
79 lines
2.5 KiB
Swift
79 lines
2.5 KiB
Swift
//
|
|
// PhoneValidationAPI.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Alamofire
|
|
|
|
class PhoneValidationAPI {
|
|
|
|
static func verifyPhoneNumber(regInfo: RegistrationRequest,
|
|
completion: @escaping (String?, CovidSafeAPIError?) -> Void) {
|
|
|
|
guard let apiHost = PlistHelper.getvalueFromInfoPlist(withKey: "API_Host", plistName: "CovidSafe-config") else {
|
|
return
|
|
}
|
|
|
|
let params = [
|
|
"country_code": "+\(regInfo.countryPhoneCode ?? "61")",
|
|
"phone_number": regInfo.phoneNumber,
|
|
"age": String(regInfo.age),
|
|
"postcode": regInfo.postcode,
|
|
"name": regInfo.fullName,
|
|
"device_id": UIDevice.current.identifierForVendor!.uuidString
|
|
]
|
|
CovidNetworking.shared.session.request("\(apiHost)/initiateAuth",
|
|
method: .post,
|
|
parameters: params,
|
|
encoding: JSONEncoding.default).validate().responseDecodable(of: AuthResponse.self) { (response) in
|
|
switch response.result {
|
|
case .success:
|
|
guard let authResponse = response.value else { return }
|
|
completion(authResponse.session, nil)
|
|
case .failure(_):
|
|
var apiError = CovidSafeAPIError.RequestError
|
|
|
|
if let respData = response.data {
|
|
do {
|
|
let errorResponse = try JSONDecoder().decode(CovidSafeErrorResponse.self, from: respData)
|
|
if errorResponse.message == "MaxRegistrationsReached" {
|
|
apiError = .MaxRegistrationError
|
|
}
|
|
} catch {
|
|
// unable to parse response
|
|
apiError = .ResponseError
|
|
}
|
|
}
|
|
completion(nil, apiError)
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct RegistrationRequest {
|
|
var fullName: String
|
|
var postcode: String
|
|
var age: Int
|
|
var isMinor: Bool
|
|
var phoneNumber: String
|
|
var countryPhoneCode: String?
|
|
}
|
|
|
|
struct AuthResponse: Decodable {
|
|
let session: String
|
|
let challengeName: String
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case session
|
|
case challengeName
|
|
}
|
|
}
|
|
|
|
protocol RegistrationHandler {
|
|
var registrationInfo: RegistrationRequest? { get set }
|
|
var reauthenticating: Bool { get set }
|
|
}
|