You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.7 KiB
97 lines
2.7 KiB
//
|
|
// User.swift
|
|
// PadelClub
|
|
//
|
|
// Created by Laurent Morvillier on 21/02/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import LeStorage
|
|
|
|
enum UserRight: Int, Codable {
|
|
case none = 0
|
|
case edition = 1
|
|
case creation = 2
|
|
}
|
|
|
|
@Observable
|
|
class User: UserBase, Storable {
|
|
|
|
static func resourceName() -> String { "users" }
|
|
|
|
func deleteDependencies() throws { }
|
|
|
|
public var id: String = Store.randomId()
|
|
public var username: String
|
|
public var email: String
|
|
var club: String?
|
|
var umpireCode: String?
|
|
var licenceId: String?
|
|
var firstName: String
|
|
var lastName: String
|
|
var phone: String?
|
|
var country: String?
|
|
|
|
init(username: String, email: String, firstName: String, lastName: String, phone: String?, country: String?) {
|
|
self.username = username
|
|
self.firstName = firstName
|
|
self.lastName = lastName
|
|
self.email = email
|
|
self.phone = phone
|
|
self.country = country
|
|
}
|
|
|
|
public func uuid() throws -> UUID {
|
|
if let uuid = UUID(uuidString: self.id) {
|
|
return uuid
|
|
}
|
|
throw UUIDError.cantConvertString(string: self.id)
|
|
}
|
|
|
|
func currentPlayerData() -> ImportedPlayer? {
|
|
guard let licenceId else { return nil }
|
|
let federalContext = PersistenceController.shared.localContainer.viewContext
|
|
let fetchRequest = ImportedPlayer.fetchRequest()
|
|
let predicate = NSPredicate(format: "license == %@", licenceId)
|
|
fetchRequest.predicate = predicate
|
|
return try? federalContext.fetch(fetchRequest).first
|
|
}
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case _id = "id"
|
|
case _username = "username"
|
|
case _email = "email"
|
|
case _club = "club"
|
|
case _umpireCode = "umpireCode"
|
|
case _licenceId = "licenceId"
|
|
case _firstName = "firstName"
|
|
case _lastName = "lastName"
|
|
case _phone = "phone"
|
|
case _country = "country"
|
|
}
|
|
|
|
}
|
|
|
|
class UserCreationForm: User, UserPasswordBase {
|
|
|
|
init(username: String, password: String, firstName: String, lastName: String, email: String, phone: String?, country: String?) {
|
|
self.password = password
|
|
super.init(username: username, email: email, firstName: firstName, lastName: lastName, phone: phone, country: country)
|
|
}
|
|
|
|
required init(from decoder: Decoder) throws {
|
|
fatalError("init(from:) has not been implemented")
|
|
}
|
|
|
|
public var password: String
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case password
|
|
}
|
|
|
|
override func encode(to encoder: Encoder) throws {
|
|
try super.encode(to: encoder)
|
|
var container = encoder.container(keyedBy: CodingKeys.self)
|
|
try container.encode(self.password, forKey: .password)
|
|
}
|
|
}
|
|
|