2024-09-23 13:02:26 +00:00
|
|
|
//
|
2024-10-03 16:41:27 +00:00
|
|
|
// CDProfileRepositoryV3.swift
|
2024-09-23 13:02:26 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 8/11/24.
|
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
|
|
|
//
|
|
|
|
// https://github.com/passepartoutvpn
|
|
|
|
//
|
|
|
|
// This file is part of Passepartout.
|
|
|
|
//
|
|
|
|
// Passepartout is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Passepartout is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import AppData
|
2024-10-10 14:20:36 +00:00
|
|
|
import Combine
|
2024-11-03 12:16:13 +00:00
|
|
|
import CommonLibrary
|
2024-11-02 09:11:59 +00:00
|
|
|
import CommonUtils
|
2024-09-23 13:02:26 +00:00
|
|
|
import CoreData
|
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
|
|
|
|
|
|
|
extension AppData {
|
2024-10-03 16:41:27 +00:00
|
|
|
public static func cdProfileRepositoryV3(
|
2024-09-23 13:02:26 +00:00
|
|
|
registry: Registry,
|
|
|
|
coder: ProfileCoder,
|
|
|
|
context: NSManagedObjectContext,
|
2024-10-10 14:03:02 +00:00
|
|
|
observingResults: Bool,
|
2024-10-02 11:35:49 +00:00
|
|
|
onResultError: ((Error) -> CoreDataResultAction)?
|
2024-10-10 14:20:36 +00:00
|
|
|
) -> ProfileRepository {
|
2024-10-10 14:03:02 +00:00
|
|
|
let repository = CoreDataRepository<CDProfileV3, Profile>(
|
|
|
|
context: context,
|
|
|
|
observingResults: observingResults
|
|
|
|
) {
|
2024-09-23 13:02:26 +00:00
|
|
|
$0.sortDescriptors = [
|
|
|
|
.init(key: "name", ascending: true, selector: #selector(NSString.caseInsensitiveCompare)),
|
|
|
|
.init(key: "lastUpdate", ascending: true)
|
|
|
|
]
|
|
|
|
} fromMapper: {
|
|
|
|
guard let encoded = $0.encoded else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return try registry.decodedProfile(from: encoded, with: coder)
|
|
|
|
} toMapper: {
|
|
|
|
let encoded = try registry.encodedProfile($0, with: coder)
|
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
let cdProfile = CDProfileV3(context: $1)
|
2024-09-23 13:02:26 +00:00
|
|
|
cdProfile.uuid = $0.id
|
|
|
|
cdProfile.name = $0.name
|
|
|
|
cdProfile.encoded = encoded
|
|
|
|
cdProfile.lastUpdate = Date()
|
|
|
|
return cdProfile
|
|
|
|
} onResultError: {
|
2024-10-02 11:35:49 +00:00
|
|
|
onResultError?($0) ?? .ignore
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return repository
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
// MARK: - Specialization
|
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
extension CDProfileV3: CoreDataUniqueEntity {
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
extension Profile: UniqueEntity {
|
|
|
|
public var uuid: UUID? {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
extension CoreDataRepository: ProfileRepository where T == Profile {
|
2024-10-10 14:20:36 +00:00
|
|
|
public nonisolated var profilesPublisher: AnyPublisher<[Profile], Never> {
|
|
|
|
entitiesPublisher
|
|
|
|
.map(\.entities)
|
|
|
|
.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
|
|
|
public func saveProfile(_ profile: Profile) async throws {
|
|
|
|
try await saveEntities([profile])
|
|
|
|
}
|
|
|
|
|
|
|
|
public func removeProfiles(withIds profileIds: [Profile.ID]) async throws {
|
|
|
|
try await removeEntities(withIds: profileIds)
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|