// // CDProfileRepositoryV3.swift // 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 . // import AppData import AppLibrary import Combine import CommonUtils import CoreData import Foundation import PassepartoutKit extension AppData { public static func cdProfileRepositoryV3( registry: Registry, coder: ProfileCoder, context: NSManagedObjectContext, observingResults: Bool, onResultError: ((Error) -> CoreDataResultAction)? ) -> ProfileRepository { let repository = CoreDataRepository( context: context, observingResults: observingResults ) { $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) let cdProfile = CDProfileV3(context: $1) cdProfile.uuid = $0.id cdProfile.name = $0.name cdProfile.encoded = encoded cdProfile.lastUpdate = Date() return cdProfile } onResultError: { onResultError?($0) ?? .ignore } return repository } } // MARK: - Specialization extension CDProfileV3: CoreDataUniqueEntity { } extension Profile: UniqueEntity { public var uuid: UUID? { id } } extension CoreDataRepository: ProfileRepository where T == Profile { 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) } }