2024-10-10 14:03:02 +00:00
|
|
|
//
|
|
|
|
// NEProfileRepository.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 10/10/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
|
2024-10-10 14:20:36 +00:00
|
|
|
import CommonLibrary
|
2024-10-10 14:03:02 +00:00
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
|
|
|
|
|
|
|
public final class NEProfileRepository: ProfileRepository {
|
|
|
|
private let repository: NETunnelManagerRepository
|
|
|
|
|
2024-10-10 22:31:32 +00:00
|
|
|
private let title: (Profile) -> String
|
|
|
|
|
2024-10-10 14:03:02 +00:00
|
|
|
private let profilesSubject: CurrentValueSubject<[Profile], Never>
|
|
|
|
|
|
|
|
private var subscription: AnyCancellable?
|
|
|
|
|
2024-10-10 22:31:32 +00:00
|
|
|
public init(repository: NETunnelManagerRepository, title: @escaping (Profile) -> String) {
|
2024-10-10 14:03:02 +00:00
|
|
|
self.repository = repository
|
2024-10-10 22:31:32 +00:00
|
|
|
self.title = title
|
2024-10-10 14:03:02 +00:00
|
|
|
profilesSubject = CurrentValueSubject([])
|
|
|
|
|
|
|
|
subscription = repository
|
|
|
|
.managersPublisher
|
|
|
|
.sink { [weak self] allManagers in
|
|
|
|
let profiles = allManagers.values.compactMap {
|
2024-10-11 01:45:20 +00:00
|
|
|
do {
|
|
|
|
return try repository.profile(from: $0)
|
|
|
|
} catch {
|
|
|
|
pp_log(.app, .error, "Unable to decode profile from NE manager '\($0.localizedDescription ?? "")': \(error)")
|
|
|
|
return nil
|
|
|
|
}
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
self?.profilesSubject.send(profiles)
|
|
|
|
}
|
|
|
|
|
|
|
|
Task {
|
|
|
|
do {
|
|
|
|
try await repository.load()
|
|
|
|
} catch {
|
|
|
|
pp_log(.app, .fault, "Unable to load NE profiles: \(error)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
public var profilesPublisher: AnyPublisher<[Profile], Never> {
|
|
|
|
profilesSubject.eraseToAnyPublisher()
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
public func saveProfile(_ profile: Profile) async throws {
|
2024-10-10 22:31:32 +00:00
|
|
|
try await repository.save(profile, connect: false, title: title)
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
public func removeProfiles(withIds profileIds: [Profile.ID]) async throws {
|
|
|
|
for id in profileIds {
|
|
|
|
try await repository.remove(profileId: id)
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|