2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// ProfileManager.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 2/19/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 Combine
|
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
|
|
|
|
|
|
|
@MainActor
|
|
|
|
public final class ProfileManager: ObservableObject {
|
2024-09-30 12:56:20 +00:00
|
|
|
public enum Event {
|
|
|
|
case save(Profile)
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-09-30 12:56:20 +00:00
|
|
|
case remove([Profile.ID])
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
private let repository: any ProfileRepository
|
|
|
|
|
2024-10-26 19:41:07 +00:00
|
|
|
private let backupRepository: (any ProfileRepository)?
|
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
private let remoteRepository: (any ProfileRepository)?
|
2024-09-30 12:56:20 +00:00
|
|
|
|
2024-11-03 22:35:45 +00:00
|
|
|
private let deletingRemotely: Bool
|
|
|
|
|
|
|
|
private let isIncluded: ((Profile) -> Bool)?
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
@Published
|
2024-09-30 12:56:20 +00:00
|
|
|
private var profiles: [Profile]
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
private var allProfiles: [Profile.ID: Profile] {
|
|
|
|
didSet {
|
2024-10-04 18:58:11 +00:00
|
|
|
reloadFilteredProfiles(with: searchSubject.value)
|
2024-10-03 16:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var allRemoteProfiles: [Profile.ID: Profile]
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
public let didChange: PassthroughSubject<Event, Never>
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
private let searchSubject: CurrentValueSubject<String, Never>
|
|
|
|
|
|
|
|
private var subscriptions: Set<AnyCancellable>
|
|
|
|
|
|
|
|
// for testing/previews
|
2024-09-26 21:13:55 +00:00
|
|
|
public init(profiles: [Profile]) {
|
2024-10-10 14:03:02 +00:00
|
|
|
repository = InMemoryProfileRepository(profiles: profiles)
|
2024-10-26 19:41:07 +00:00
|
|
|
backupRepository = nil
|
2024-10-03 16:41:27 +00:00
|
|
|
remoteRepository = nil
|
2024-11-03 22:35:45 +00:00
|
|
|
deletingRemotely = false
|
|
|
|
isIncluded = nil
|
2024-10-03 16:41:27 +00:00
|
|
|
self.profiles = []
|
|
|
|
allProfiles = profiles.reduce(into: [:]) {
|
|
|
|
$0[$1.id] = $1
|
|
|
|
}
|
|
|
|
allRemoteProfiles = [:]
|
|
|
|
|
|
|
|
didChange = PassthroughSubject()
|
2024-09-23 13:02:26 +00:00
|
|
|
searchSubject = CurrentValueSubject("")
|
|
|
|
subscriptions = []
|
|
|
|
}
|
|
|
|
|
2024-10-26 19:41:07 +00:00
|
|
|
public init(
|
|
|
|
repository: any ProfileRepository,
|
|
|
|
backupRepository: (any ProfileRepository)? = nil,
|
2024-11-03 22:35:45 +00:00
|
|
|
remoteRepository: (any ProfileRepository)?,
|
|
|
|
deletingRemotely: Bool = false,
|
|
|
|
isIncluded: ((Profile) -> Bool)? = nil
|
2024-10-26 19:41:07 +00:00
|
|
|
) {
|
2024-11-03 22:35:45 +00:00
|
|
|
precondition(!deletingRemotely || remoteRepository != nil, "deletingRemotely requires a non-nil remoteRepository")
|
2024-09-23 13:02:26 +00:00
|
|
|
self.repository = repository
|
2024-10-26 19:41:07 +00:00
|
|
|
self.backupRepository = backupRepository
|
2024-10-03 16:41:27 +00:00
|
|
|
self.remoteRepository = remoteRepository
|
2024-11-03 22:35:45 +00:00
|
|
|
self.deletingRemotely = deletingRemotely
|
|
|
|
self.isIncluded = isIncluded
|
2024-10-03 16:41:27 +00:00
|
|
|
profiles = []
|
|
|
|
allProfiles = [:]
|
|
|
|
allRemoteProfiles = [:]
|
|
|
|
|
|
|
|
didChange = PassthroughSubject()
|
2024-09-23 13:02:26 +00:00
|
|
|
searchSubject = CurrentValueSubject("")
|
|
|
|
subscriptions = []
|
|
|
|
}
|
2024-09-30 12:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - CRUD
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-09-30 12:56:20 +00:00
|
|
|
extension ProfileManager {
|
2024-09-23 13:02:26 +00:00
|
|
|
public var hasProfiles: Bool {
|
|
|
|
!profiles.isEmpty
|
|
|
|
}
|
|
|
|
|
|
|
|
public var isSearching: Bool {
|
|
|
|
!searchSubject.value.isEmpty
|
|
|
|
}
|
|
|
|
|
|
|
|
public var headers: [ProfileHeader] {
|
|
|
|
profiles.map {
|
|
|
|
$0.header()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public func search(byName name: String) {
|
|
|
|
searchSubject.send(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func profile(withId profileId: Profile.ID) -> Profile? {
|
|
|
|
profiles.first {
|
|
|
|
$0.id == profileId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
public func save(_ originalProfile: Profile, force: Bool = false, isShared: Bool? = nil) async throws {
|
|
|
|
let profile: Profile
|
|
|
|
if force {
|
|
|
|
var builder = originalProfile.builder()
|
|
|
|
builder.attributes.lastUpdate = Date()
|
|
|
|
builder.attributes.fingerprint = UUID()
|
|
|
|
profile = try builder.tryBuild()
|
|
|
|
} else {
|
|
|
|
profile = originalProfile
|
|
|
|
}
|
2024-10-04 18:58:11 +00:00
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .notice, "Save profile \(profile.id)...")
|
2024-11-03 22:35:45 +00:00
|
|
|
do {
|
2024-11-04 09:10:17 +00:00
|
|
|
let existingProfile = allProfiles[profile.id]
|
|
|
|
if existingProfile == nil || profile != existingProfile {
|
|
|
|
try await repository.saveProfile(profile)
|
|
|
|
if let backupRepository {
|
|
|
|
Task.detached {
|
|
|
|
try await backupRepository.saveProfile(profile)
|
|
|
|
}
|
2024-11-03 22:35:45 +00:00
|
|
|
}
|
2024-11-04 09:10:17 +00:00
|
|
|
allProfiles[profile.id] = profile
|
|
|
|
didChange.send(.save(profile))
|
|
|
|
} else {
|
|
|
|
pp_log(.app, .notice, "\tProfile \(profile.id) not modified, not saving")
|
2024-10-04 18:58:11 +00:00
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
} catch {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .fault, "\tUnable to save profile \(profile.id): \(error)")
|
2024-09-23 13:02:26 +00:00
|
|
|
throw error
|
|
|
|
}
|
2024-10-04 18:58:11 +00:00
|
|
|
do {
|
|
|
|
if let isShared, let remoteRepository {
|
|
|
|
if isShared {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .notice, "\tEnable remote sharing of profile \(profile.id)...")
|
|
|
|
try await remoteRepository.saveProfile(profile)
|
2024-10-04 18:58:11 +00:00
|
|
|
} else {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .notice, "\tDisable remote sharing of profile \(profile.id)...")
|
|
|
|
try await remoteRepository.removeProfiles(withIds: [profile.id])
|
2024-10-04 18:58:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .fault, "\tUnable to save/remove remote profile \(profile.id): \(error)")
|
2024-10-04 18:58:11 +00:00
|
|
|
throw error
|
|
|
|
}
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .notice, "Finished saving profile \(profile.id)")
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public func remove(withId profileId: Profile.ID) async {
|
|
|
|
await remove(withIds: [profileId])
|
|
|
|
}
|
|
|
|
|
|
|
|
public func remove(withIds profileIds: [Profile.ID]) async {
|
2024-10-04 18:58:11 +00:00
|
|
|
pp_log(.app, .notice, "Remove profiles \(profileIds)...")
|
2024-09-23 13:02:26 +00:00
|
|
|
do {
|
2024-10-03 23:26:52 +00:00
|
|
|
// remove local profiles
|
2024-10-03 16:41:27 +00:00
|
|
|
var newAllProfiles = allProfiles
|
2024-10-10 14:20:36 +00:00
|
|
|
try await repository.removeProfiles(withIds: profileIds)
|
2024-10-03 16:41:27 +00:00
|
|
|
profileIds.forEach {
|
|
|
|
newAllProfiles.removeValue(forKey: $0)
|
|
|
|
}
|
2024-10-03 23:26:52 +00:00
|
|
|
|
|
|
|
// remove remote counterpart too
|
2024-10-10 14:20:36 +00:00
|
|
|
try? await remoteRepository?.removeProfiles(withIds: profileIds)
|
2024-10-03 23:26:52 +00:00
|
|
|
profileIds.forEach {
|
|
|
|
allRemoteProfiles.removeValue(forKey: $0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// publish update
|
2024-10-03 16:41:27 +00:00
|
|
|
allProfiles = newAllProfiles
|
2024-09-30 12:56:20 +00:00
|
|
|
didChange.send(.remove(profileIds))
|
2024-09-23 13:02:26 +00:00
|
|
|
} catch {
|
|
|
|
pp_log(.app, .fault, "Unable to remove profiles \(profileIds): \(error)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public func exists(withId profileId: Profile.ID) -> Bool {
|
2024-10-03 16:41:27 +00:00
|
|
|
allProfiles.keys.contains(profileId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-03 22:35:45 +00:00
|
|
|
// MARK: - Remote/Attributes
|
2024-10-03 16:41:27 +00:00
|
|
|
|
|
|
|
extension ProfileManager {
|
|
|
|
public func isRemotelyShared(profileWithId profileId: Profile.ID) -> Bool {
|
|
|
|
allRemoteProfiles.keys.contains(profileId)
|
|
|
|
}
|
|
|
|
|
2024-11-03 22:42:17 +00:00
|
|
|
public func isAvailableForTV(profileWithId profileId: Profile.ID) -> Bool {
|
|
|
|
profile(withId: profileId)?.attributes.isAvailableForTV == true
|
|
|
|
}
|
|
|
|
|
2024-10-04 18:58:11 +00:00
|
|
|
public func eraseRemotelySharedProfiles() async throws {
|
|
|
|
pp_log(.app, .notice, "Erase remotely shared profiles...")
|
2024-10-10 14:20:36 +00:00
|
|
|
try await remoteRepository?.removeProfiles(withIds: Array(allRemoteProfiles.keys))
|
2024-10-03 21:25:51 +00:00
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-09-30 12:56:20 +00:00
|
|
|
// MARK: - Shortcuts
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
extension ProfileManager {
|
|
|
|
public func new(withName name: String) -> Profile {
|
|
|
|
var builder = Profile.Builder()
|
|
|
|
builder.name = firstUniqueName(from: name)
|
|
|
|
do {
|
|
|
|
return try builder.tryBuild()
|
|
|
|
} catch {
|
|
|
|
fatalError("Unable to build new empty profile: \(error)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public func duplicate(profileWithId profileId: Profile.ID) async throws {
|
|
|
|
guard let profile = profile(withId: profileId) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var builder = profile.builder(withNewId: true)
|
|
|
|
builder.name = firstUniqueName(from: profile.name)
|
2024-10-04 18:58:11 +00:00
|
|
|
pp_log(.app, .notice, "Duplicate profile [\(profileId), \(profile.name)] -> [\(builder.id), \(builder.name)]...")
|
2024-09-23 13:02:26 +00:00
|
|
|
let copy = try builder.tryBuild()
|
|
|
|
|
|
|
|
try await save(copy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension ProfileManager {
|
2024-09-30 12:56:20 +00:00
|
|
|
func firstUniqueName(from name: String) -> String {
|
|
|
|
let allNames = profiles.map(\.name)
|
|
|
|
var newName = name
|
|
|
|
var index = 1
|
|
|
|
while true {
|
|
|
|
if !allNames.contains(newName) {
|
|
|
|
return newName
|
|
|
|
}
|
|
|
|
newName = [name, index.description].joined(separator: ".")
|
|
|
|
index += 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Observation
|
|
|
|
|
|
|
|
extension ProfileManager {
|
|
|
|
public func observeObjects(searchDebounce: Int = 200) {
|
2024-09-23 13:02:26 +00:00
|
|
|
repository
|
2024-10-10 14:20:36 +00:00
|
|
|
.profilesPublisher
|
2024-09-23 13:02:26 +00:00
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.sink { [weak self] in
|
2024-10-04 18:58:11 +00:00
|
|
|
self?.reloadLocalProfiles($0)
|
2024-10-03 16:41:27 +00:00
|
|
|
}
|
|
|
|
.store(in: &subscriptions)
|
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
// observe remote after first local profiles
|
|
|
|
let remotePublisher = remoteRepository?
|
2024-10-10 14:20:36 +00:00
|
|
|
.profilesPublisher
|
2024-11-04 09:10:17 +00:00
|
|
|
.zip(repository.profilesPublisher)
|
|
|
|
|
|
|
|
remotePublisher?
|
|
|
|
.first()
|
2024-10-03 16:41:27 +00:00
|
|
|
.receive(on: DispatchQueue.main)
|
2024-11-04 09:10:17 +00:00
|
|
|
.sink { [weak self] remote, _ in
|
|
|
|
self?.loadInitialRemoteProfiles(remote)
|
2024-10-04 18:58:11 +00:00
|
|
|
}
|
|
|
|
.store(in: &subscriptions)
|
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
remotePublisher?
|
2024-10-04 18:58:11 +00:00
|
|
|
.dropFirst()
|
2024-11-04 09:10:17 +00:00
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.sink { [weak self] remote, _ in
|
|
|
|
self?.reloadRemoteProfiles(remote)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
.store(in: &subscriptions)
|
|
|
|
|
|
|
|
searchSubject
|
|
|
|
.debounce(for: .milliseconds(searchDebounce), scheduler: DispatchQueue.main)
|
2024-09-30 12:56:20 +00:00
|
|
|
.sink { [weak self] in
|
|
|
|
self?.performSearch($0)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
.store(in: &subscriptions)
|
|
|
|
}
|
2024-09-30 12:56:20 +00:00
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-09-30 12:56:20 +00:00
|
|
|
private extension ProfileManager {
|
2024-10-10 14:20:36 +00:00
|
|
|
func reloadLocalProfiles(_ result: [Profile]) {
|
|
|
|
pp_log(.app, .info, "Reload local profiles: \(result.map(\.id))")
|
|
|
|
allProfiles = result.reduce(into: [:]) {
|
2024-09-30 12:56:20 +00:00
|
|
|
$0[$1.id] = $1
|
|
|
|
}
|
2024-11-03 22:35:45 +00:00
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
// should not be imported at all, but you never know
|
2024-11-03 22:35:45 +00:00
|
|
|
if let isIncluded {
|
|
|
|
let idsToRemove: [Profile.ID] = allProfiles
|
|
|
|
.filter {
|
|
|
|
!isIncluded($0.value)
|
|
|
|
}
|
|
|
|
.map(\.key)
|
|
|
|
|
|
|
|
if !idsToRemove.isEmpty {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .info, "Delete non-included local profiles: \(idsToRemove)")
|
2024-11-03 22:35:45 +00:00
|
|
|
Task.detached {
|
|
|
|
try await self.repository.removeProfiles(withIds: idsToRemove)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 16:41:27 +00:00
|
|
|
}
|
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
func loadInitialRemoteProfiles(_ result: [Profile]) {
|
|
|
|
pp_log(.app, .info, "Load initial remote profiles: \(result.map(\.id))")
|
2024-10-10 14:20:36 +00:00
|
|
|
allRemoteProfiles = result.reduce(into: [:]) {
|
2024-10-03 16:41:27 +00:00
|
|
|
$0[$1.id] = $1
|
2024-09-30 12:56:20 +00:00
|
|
|
}
|
2024-11-04 09:10:17 +00:00
|
|
|
objectWillChange.send()
|
|
|
|
}
|
2024-11-03 22:35:45 +00:00
|
|
|
|
2024-11-04 09:10:17 +00:00
|
|
|
func reloadRemoteProfiles(_ result: [Profile]) {
|
|
|
|
pp_log(.app, .info, "Reload remote profiles: \(result.map(\.id))")
|
|
|
|
allRemoteProfiles = result.reduce(into: [:]) {
|
|
|
|
$0[$1.id] = $1
|
2024-11-03 22:35:45 +00:00
|
|
|
}
|
2024-10-03 21:25:51 +00:00
|
|
|
objectWillChange.send()
|
2024-09-30 12:56:20 +00:00
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
let profilesToImport = result
|
2024-11-03 22:35:45 +00:00
|
|
|
let allFingerprints = allProfiles.values.reduce(into: [:]) {
|
|
|
|
$0[$1.id] = $1.attributes.fingerprint
|
|
|
|
}
|
2024-11-04 09:10:17 +00:00
|
|
|
let remotelyDeletedIds = Set(allProfiles.keys).subtracting(Set(allRemoteProfiles.keys))
|
|
|
|
let deletingRemotely = deletingRemotely
|
2024-11-03 22:35:45 +00:00
|
|
|
|
2024-10-03 20:25:59 +00:00
|
|
|
Task.detached { [weak self] in
|
2024-11-04 09:10:17 +00:00
|
|
|
guard let self else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pp_log(.app, .info, "Start importing remote profiles...")
|
|
|
|
var idsToRemove: [Profile.ID] = []
|
|
|
|
if !remotelyDeletedIds.isEmpty {
|
|
|
|
pp_log(.app, .info, "\tWill \(deletingRemotely ? "delete" : "retain") local profiles not present in remote repository: \(remotelyDeletedIds)")
|
|
|
|
|
|
|
|
if deletingRemotely {
|
|
|
|
idsToRemove.append(contentsOf: remotelyDeletedIds)
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 20:25:59 +00:00
|
|
|
for remoteProfile in profilesToImport {
|
2024-10-03 16:41:27 +00:00
|
|
|
do {
|
2024-11-04 09:10:17 +00:00
|
|
|
guard isIncluded?(remoteProfile) ?? true else {
|
|
|
|
pp_log(.app, .info, "\tWill delete non-included remote profile \(remoteProfile.id)")
|
|
|
|
idsToRemove.append(remoteProfile.id)
|
2024-11-03 22:35:45 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
if let localFingerprint = allFingerprints[remoteProfile.id] {
|
|
|
|
guard remoteProfile.attributes.fingerprint != localFingerprint else {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .info, "\tSkip re-importing local profile \(remoteProfile.id)")
|
2024-11-03 22:35:45 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .notice, "\tImport remote profile \(remoteProfile.id)...")
|
|
|
|
try await save(remoteProfile)
|
2024-10-03 16:41:27 +00:00
|
|
|
} catch {
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .error, "\tUnable to import remote profile: \(error)")
|
2024-10-03 16:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
2024-11-04 09:10:17 +00:00
|
|
|
pp_log(.app, .notice, "Finished importing remote profiles, delete stale profiles: \(idsToRemove)")
|
|
|
|
try? await repository.removeProfiles(withIds: idsToRemove)
|
2024-09-30 12:56:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func performSearch(_ search: String) {
|
2024-10-04 18:58:11 +00:00
|
|
|
pp_log(.app, .notice, "Filter profiles with '\(search)'")
|
2024-10-03 16:41:27 +00:00
|
|
|
reloadFilteredProfiles(with: search)
|
|
|
|
}
|
|
|
|
|
2024-10-04 18:58:11 +00:00
|
|
|
func reloadFilteredProfiles(with search: String) {
|
2024-10-03 16:41:27 +00:00
|
|
|
profiles = allProfiles
|
|
|
|
.values
|
|
|
|
.filter {
|
2024-10-04 18:58:11 +00:00
|
|
|
if !search.isEmpty {
|
2024-10-03 16:41:27 +00:00
|
|
|
return $0.name.lowercased().contains(search.lowercased())
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
.sorted {
|
|
|
|
$0.name.lowercased() < $1.name.lowercased()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|