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.
73 lines
2.3 KiB
73 lines
2.3 KiB
//
|
|
// DataAcces.swift
|
|
// LeStorage
|
|
//
|
|
// Created by Laurent Morvillier on 21/11/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class DataAccess: SyncedModelObject, SyncedStorable {
|
|
|
|
static func tokenExemptedMethods() -> [HTTPMethod] { return [] }
|
|
static func resourceName() -> String { return "data-access" }
|
|
static func relationships() -> [Relationship] { return [] }
|
|
static var copyServerResponse: Bool = false
|
|
|
|
override required init() {
|
|
super.init()
|
|
}
|
|
|
|
var id: String = Store.randomId()
|
|
var sharedWith: [String] = []
|
|
var modelName: String = ""
|
|
var modelId: String = ""
|
|
var grantedAt: Date = Date()
|
|
|
|
init(owner: String, sharedWith: [String], modelName: String, modelId: String) {
|
|
self.sharedWith = sharedWith
|
|
self.modelName = modelName
|
|
self.modelId = modelId
|
|
super.init()
|
|
self.relatedUser = owner
|
|
}
|
|
|
|
// Codable implementation
|
|
enum CodingKeys: String, CodingKey {
|
|
case id
|
|
case sharedWith
|
|
case modelName
|
|
case modelId
|
|
case grantedAt
|
|
}
|
|
|
|
required init(from decoder: Decoder) throws {
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
id = try container.decode(String.self, forKey: .id)
|
|
sharedWith = try container.decode([String].self, forKey: .sharedWith)
|
|
modelName = try container.decode(String.self, forKey: .modelName)
|
|
modelId = try container.decode(String.self, forKey: .modelId)
|
|
grantedAt = try container.decode(Date.self, forKey: .grantedAt)
|
|
try super.init(from: decoder)
|
|
}
|
|
|
|
override func encode(to encoder: Encoder) throws {
|
|
var container = encoder.container(keyedBy: CodingKeys.self)
|
|
try container.encode(id, forKey: .id)
|
|
try container.encode(sharedWith, forKey: .sharedWith)
|
|
try container.encode(modelName, forKey: .modelName)
|
|
try container.encode(modelId, forKey: .modelId)
|
|
try container.encode(grantedAt, forKey: .grantedAt)
|
|
try super.encode(to: encoder)
|
|
}
|
|
|
|
func copy(from other: any Storable) {
|
|
guard let dataAccess = other as? DataAccess else { return }
|
|
self.id = dataAccess.id
|
|
self.sharedWith = dataAccess.sharedWith
|
|
self.modelName = dataAccess.modelName
|
|
self.modelId = dataAccess.modelId
|
|
self.grantedAt = dataAccess.grantedAt
|
|
}
|
|
|
|
}
|
|
|