64 lines
2.2 KiB
Swift
64 lines
2.2 KiB
Swift
// 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
|
|
|
|
/// Represents the response from the emailLinkSignin endpoint.
|
|
struct EmailLinkSignInResponse: AuthRPCResponse, AuthMFAResponse {
|
|
/// The ID token in the email link sign-in response.
|
|
private(set) var idToken: String?
|
|
|
|
/// The email returned by the IdP.
|
|
var email: String?
|
|
|
|
/// The refreshToken returned by the server.
|
|
var refreshToken: String?
|
|
|
|
/// The approximate expiration date of the access token.
|
|
var approximateExpirationDate: Date?
|
|
|
|
/// Flag indicating that the user signing in is a new user and not a returning user.
|
|
var isNewUser: Bool = false
|
|
|
|
// MARK: - AuthMFAResponse
|
|
|
|
/// An opaque string that functions as proof that the user has successfully passed the first
|
|
/// factor check.
|
|
private(set) var mfaPendingCredential: String?
|
|
|
|
/// Info on which multi-factor authentication providers are enabled.
|
|
private(set) var mfaInfo: [AuthProtoMFAEnrollment]?
|
|
|
|
init(dictionary: [String: AnyHashable]) throws {
|
|
email = dictionary["email"] as? String
|
|
idToken = dictionary["idToken"] as? String
|
|
isNewUser = dictionary["isNewUser"] as? Bool ?? false
|
|
refreshToken = dictionary["refreshToken"] as? String
|
|
|
|
approximateExpirationDate = (dictionary["expiresIn"] as? String)
|
|
.flatMap { Date(timeIntervalSinceNow: ($0 as NSString).doubleValue)
|
|
}
|
|
|
|
if let mfaInfoArray = dictionary["mfaInfo"] as? [[String: AnyHashable]] {
|
|
var mfaInfo: [AuthProtoMFAEnrollment] = []
|
|
for entry in mfaInfoArray {
|
|
let enrollment = AuthProtoMFAEnrollment(dictionary: entry)
|
|
mfaInfo.append(enrollment)
|
|
}
|
|
self.mfaInfo = mfaInfo
|
|
}
|
|
mfaPendingCredential = dictionary["mfaPendingCredential"] as? String
|
|
}
|
|
}
|