passepartout-apple/Passepartout/Library/Sources/AppDataProfiles/CDProfileRepositoryV3.swift

73 lines
2.3 KiB
Swift
Raw Normal View History

2024-09-23 13:02:26 +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
import CoreData
import Foundation
import PassepartoutKit
import UtilsLibrary
extension AppData {
2024-10-01 13:45:25 +00:00
// TODO: #656, make non-static
public static func cdProfileRepositoryV3(
2024-09-23 13:02:26 +00:00
registry: Registry,
coder: ProfileCoder,
context: NSManagedObjectContext,
onResultError: ((Error) -> CoreDataResultAction)?
2024-09-23 13:02:26 +00:00
) -> any ProfileRepository {
let repository = CoreDataRepository<CDProfileV3, Profile>(context: context) {
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)
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: {
onResultError?($0) ?? .ignore
2024-09-23 13:02:26 +00:00
}
return repository
}
}
extension CDProfileV3: CoreDataUniqueEntity {
2024-09-23 13:02:26 +00:00
}
extension CoreDataRepository: ProfileRepository where T == Profile {
}