2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// ProviderManager.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 3/13/22.
|
|
|
|
// Copyright (c) 2022 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 Foundation
|
|
|
|
import Combine
|
2022-06-23 21:31:01 +00:00
|
|
|
import PassepartoutCore
|
2022-04-12 13:09:14 +00:00
|
|
|
import PassepartoutServices
|
|
|
|
import PassepartoutUtils
|
|
|
|
|
2022-08-28 07:19:15 +00:00
|
|
|
public final class ProviderManager: ObservableObject, RateLimited {
|
2022-04-12 13:09:14 +00:00
|
|
|
private let appBuild: Int
|
|
|
|
|
|
|
|
private let bundleServices: WebServices
|
|
|
|
|
|
|
|
private let webServices: WebServices
|
|
|
|
|
|
|
|
private let persistence: Persistence
|
|
|
|
|
|
|
|
private let providerRepository: ProviderRepository
|
|
|
|
|
|
|
|
private let infrastructureRepository: InfrastructureRepository
|
|
|
|
|
|
|
|
private let serverRepository: ServerRepository
|
|
|
|
|
2022-07-15 06:41:05 +00:00
|
|
|
public let didUpdateProviders = PassthroughSubject<Void, Never>()
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
public init(appBuild: Int, bundleServices: WebServices, webServices: WebServices, persistence: Persistence) {
|
|
|
|
self.appBuild = appBuild
|
|
|
|
self.bundleServices = bundleServices
|
|
|
|
self.webServices = webServices
|
|
|
|
self.persistence = persistence
|
|
|
|
providerRepository = ProviderRepository(persistence.context)
|
|
|
|
infrastructureRepository = InfrastructureRepository(persistence.context)
|
|
|
|
serverRepository = ServerRepository(persistence.context)
|
|
|
|
|
|
|
|
_ = allProviders()
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Queries
|
|
|
|
|
|
|
|
public func allProviders() -> [ProviderMetadata] {
|
|
|
|
providerRepository.allProviders()
|
|
|
|
}
|
|
|
|
|
|
|
|
public func provider(withName name: ProviderName) -> ProviderMetadata? {
|
|
|
|
providerRepository.provider(withName: name)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func isAvailable(_ name: ProviderName, vpnProtocol: VPNProtocolType) -> Bool {
|
|
|
|
infrastructureRepository.lastInfrastructureUpdate(withName: name, vpnProtocol: vpnProtocol) != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
public func defaultUsername(_ name: ProviderName, vpnProtocol: VPNProtocolType) -> String? {
|
|
|
|
infrastructureRepository.defaultUsername(forProviderWithName: name, vpnProtocol: vpnProtocol)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func lastUpdate(_ name: ProviderName, vpnProtocol: VPNProtocolType) -> Date? {
|
|
|
|
infrastructureRepository.lastInfrastructureUpdate(withName: name, vpnProtocol: vpnProtocol)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func categories(_ name: ProviderName, vpnProtocol: VPNProtocolType) -> [ProviderCategory] {
|
|
|
|
serverRepository.categories(forProviderWithName: name, vpnProtocol: vpnProtocol)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func servers(forLocation location: ProviderLocation) -> [ProviderServer] {
|
|
|
|
serverRepository.servers(forLocation: location)
|
|
|
|
}
|
|
|
|
|
2022-04-26 16:49:34 +00:00
|
|
|
public func server(_ name: ProviderName, vpnProtocol: VPNProtocolType, apiId: String) -> ProviderServer? {
|
|
|
|
serverRepository.server(forProviderWithName: name, vpnProtocol: vpnProtocol, apiId: apiId)
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public func anyDefaultServer(_ name: ProviderName, vpnProtocol: VPNProtocolType) -> ProviderServer? {
|
|
|
|
serverRepository.anyDefaultServer(forProviderWithName: name, vpnProtocol: vpnProtocol)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func server(withId id: String) -> ProviderServer? {
|
|
|
|
serverRepository.server(withId: id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Modification
|
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
public func fetchProvidersIndexPublisher(priority: ProviderManagerFetchPriority) -> AnyPublisher<Void, Error> {
|
2022-04-12 13:09:14 +00:00
|
|
|
guard !isRateLimited(indexActionName) else {
|
|
|
|
return Just(())
|
|
|
|
.setFailureType(to: Error.self)
|
|
|
|
.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
|
|
|
let publisher = priority.publisher(remote: {
|
|
|
|
self.webServices.providersIndex()
|
|
|
|
}, bundle: {
|
|
|
|
self.bundleServices.providersIndex()
|
|
|
|
})
|
|
|
|
|
|
|
|
return publisher
|
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.tryMap { index in
|
|
|
|
self.saveLastAction(self.indexActionName)
|
|
|
|
try self.providerRepository.mergeIndex(index)
|
2022-07-15 06:41:05 +00:00
|
|
|
|
|
|
|
self.didUpdateProviders.send()
|
2022-04-12 13:09:14 +00:00
|
|
|
}.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
public func fetchProviderPublisher(withName providerName: ProviderName, vpnProtocol: VPNProtocolType, priority: ProviderManagerFetchPriority) -> AnyPublisher<Void, Error> {
|
2022-04-12 13:09:14 +00:00
|
|
|
guard !isRateLimited(providerName) else {
|
|
|
|
return Just(())
|
|
|
|
.setFailureType(to: Error.self)
|
|
|
|
.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
|
|
|
let publisher = priority.publisher(remote: {
|
|
|
|
let ifModifiedSince = self.infrastructureRepository.lastInfrastructureUpdate(withName: providerName, vpnProtocol: vpnProtocol)
|
2022-06-23 21:31:01 +00:00
|
|
|
return self.webServices.providerNetwork(
|
|
|
|
with: providerName.asWSProviderName,
|
|
|
|
vpnProtocol: vpnProtocol.asWSVPNProtocol,
|
|
|
|
ifModifiedSince: ifModifiedSince
|
|
|
|
)
|
2022-04-12 13:09:14 +00:00
|
|
|
}, bundle: {
|
2022-06-23 21:31:01 +00:00
|
|
|
self.bundleServices.providerNetwork(
|
|
|
|
with: providerName.asWSProviderName,
|
|
|
|
vpnProtocol: vpnProtocol.asWSVPNProtocol,
|
|
|
|
ifModifiedSince: nil
|
|
|
|
)
|
2022-04-12 13:09:14 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return publisher
|
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.flatMap { pub -> AnyPublisher<Void, Error> in
|
|
|
|
self.saveLastAction(providerName)
|
|
|
|
|
|
|
|
// ignores empty responses (e.g. HTTP 304)
|
|
|
|
guard let infrastructure = pub.value else {
|
|
|
|
return Just(())
|
|
|
|
.setFailureType(to: Error.self)
|
|
|
|
.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
2022-04-19 12:36:44 +00:00
|
|
|
guard self.appBuild >= infrastructure.build else {
|
|
|
|
pp_log.error("Infrastructure requires app build >= \(infrastructure.build) (app is \(self.appBuild))")
|
|
|
|
return Fail(error: ProviderManagerError.outdatedBuild(self.appBuild, infrastructure.build))
|
2022-04-12 13:09:14 +00:00
|
|
|
.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
try self.infrastructureRepository.saveInfrastructure(
|
|
|
|
infrastructure,
|
|
|
|
vpnProtocol: vpnProtocol,
|
|
|
|
lastUpdate: pub.lastModified ?? Date()
|
|
|
|
)
|
2022-07-15 06:41:05 +00:00
|
|
|
|
|
|
|
self.didUpdateProviders.send()
|
2022-04-12 13:09:14 +00:00
|
|
|
} catch {
|
|
|
|
pp_log.error("Unable to persist \(providerName) infrastructure (\(vpnProtocol)): \(error)")
|
|
|
|
}
|
|
|
|
return Just(())
|
|
|
|
.setFailureType(to: Error.self)
|
|
|
|
.eraseToAnyPublisher()
|
|
|
|
}.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
|
|
|
|
public func reset() {
|
|
|
|
persistence.truncate()
|
2022-07-15 06:41:05 +00:00
|
|
|
|
|
|
|
didUpdateProviders.send()
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: RateLimited
|
|
|
|
|
|
|
|
private let indexActionName = ""
|
|
|
|
|
|
|
|
public var lastActionDate: [String: Date] = [:]
|
|
|
|
|
|
|
|
public var rateLimitMilliseconds: Int?
|
|
|
|
}
|
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
private enum ProviderManagerError: LocalizedError {
|
|
|
|
case outdatedBuild(Int, Int)
|
2022-04-12 13:09:14 +00:00
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
var errorDescription: String? {
|
|
|
|
switch self {
|
|
|
|
case .outdatedBuild(let current, let min):
|
|
|
|
return "Build is outdated (found \(current), required \(min))"
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
private extension ProviderManagerFetchPriority {
|
2022-04-12 13:09:14 +00:00
|
|
|
func publisher<T>(
|
|
|
|
remote: @escaping () -> AnyPublisher<T, Error>,
|
|
|
|
bundle: @escaping () -> AnyPublisher<T, Error>
|
|
|
|
) -> AnyPublisher<T, Error> {
|
|
|
|
switch self {
|
|
|
|
case .bundle:
|
|
|
|
return bundle()
|
|
|
|
|
|
|
|
case .remote:
|
|
|
|
return remote()
|
|
|
|
|
|
|
|
case .remoteThenBundle:
|
|
|
|
return remote()
|
|
|
|
.catch { error -> AnyPublisher<T, Error> in
|
|
|
|
pp_log.warning("Unable to fetch remotely: \(error)")
|
|
|
|
pp_log.warning("Falling back to bundle")
|
|
|
|
return bundle()
|
|
|
|
}.eraseToAnyPublisher()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-23 21:31:01 +00:00
|
|
|
|
|
|
|
private extension ProviderName {
|
|
|
|
var asWSProviderName: WSProviderName {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension VPNProtocolType {
|
|
|
|
var asWSVPNProtocol: WSVPNProtocol {
|
|
|
|
switch self {
|
|
|
|
case .openVPN:
|
|
|
|
return .openVPN
|
|
|
|
|
|
|
|
case .wireGuard:
|
|
|
|
return .wireGuard
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|