mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
Add strict custom Iroh relay profiles with safe restart and rollback across the Rust core, Compose apps, and Apple apps. Preserve multi-relay invitations and fail closed on configuration or recovery mismatches.
248 lines
8.3 KiB
Swift
248 lines
8.3 KiB
Swift
import Foundation
|
|
import Combine
|
|
|
|
/// Receive-destination descriptor, ported from `core/FileSystemService.kt`.
|
|
enum ReceiveFolderKind: String, Codable, Sendable {
|
|
case fileSystemPath
|
|
case iosSecurityScopedUrl
|
|
}
|
|
|
|
struct ReceiveFolder: Equatable, Codable, Sendable {
|
|
let kind: ReceiveFolderKind
|
|
let value: String
|
|
let displayName: String
|
|
}
|
|
|
|
enum FolderAccessStatus {
|
|
case writable
|
|
case permissionRequired
|
|
case unavailable
|
|
}
|
|
|
|
enum RelayPreferenceMode: String, Codable, CaseIterable, Sendable {
|
|
case automatic
|
|
case custom
|
|
}
|
|
|
|
struct RelayConfiguration: Equatable, Codable, Sendable {
|
|
var mode: RelayPreferenceMode
|
|
var relayURLs: [String]
|
|
|
|
static let automatic = RelayConfiguration(mode: .automatic, relayURLs: [])
|
|
}
|
|
|
|
enum RelayConfigurationValidationError: Error, Equatable, Sendable {
|
|
case missingURL
|
|
case tooManyURLs
|
|
case httpsRequired(index: Int)
|
|
case invalidURL(index: Int)
|
|
case duplicateURL(index: Int)
|
|
|
|
var urlIndex: Int? {
|
|
switch self {
|
|
case .httpsRequired(let index), .invalidURL(let index), .duplicateURL(let index): return index
|
|
case .missingURL, .tooManyURLs: return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
enum RelayConfigurationValidator {
|
|
static let maximumRelayCount = 8
|
|
static let maximumRelayURLBytes = 2_048
|
|
|
|
static func validate(
|
|
mode: RelayPreferenceMode,
|
|
relayURLs: [String],
|
|
retainedRelayURLs: [String] = []
|
|
) throws -> RelayConfiguration {
|
|
guard mode == .custom else {
|
|
return RelayConfiguration(mode: .automatic, relayURLs: retainedRelayURLs)
|
|
}
|
|
|
|
let relayEntries = relayURLs.enumerated().compactMap { index, value -> (Int, String)? in
|
|
let trimmed = value.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
return trimmed.isEmpty ? nil : (index, trimmed)
|
|
}
|
|
guard !relayEntries.isEmpty else {
|
|
throw RelayConfigurationValidationError.missingURL
|
|
}
|
|
guard relayEntries.count <= maximumRelayCount else {
|
|
throw RelayConfigurationValidationError.tooManyURLs
|
|
}
|
|
|
|
var seen = Set<String>()
|
|
var normalizedURLs: [String] = []
|
|
for (index, relayURL) in relayEntries {
|
|
guard relayURL.lengthOfBytes(using: .utf8) <= maximumRelayURLBytes,
|
|
relayURL.rangeOfCharacter(from: .whitespacesAndNewlines.union(.controlCharacters)) == nil,
|
|
var components = URLComponents(string: relayURL) else {
|
|
throw RelayConfigurationValidationError.invalidURL(index: index)
|
|
}
|
|
guard components.scheme?.lowercased() == "https" else {
|
|
throw RelayConfigurationValidationError.httpsRequired(index: index)
|
|
}
|
|
guard
|
|
let host = components.host,
|
|
!host.isEmpty,
|
|
components.port.map({ (1...65_535).contains($0) }) ?? true,
|
|
components.user == nil,
|
|
components.password == nil,
|
|
components.query == nil,
|
|
components.fragment == nil,
|
|
components.path.isEmpty || components.path == "/"
|
|
else {
|
|
throw RelayConfigurationValidationError.invalidURL(index: index)
|
|
}
|
|
|
|
components.scheme = "https"
|
|
components.host = host.lowercased()
|
|
if components.port == 443 { components.port = nil }
|
|
if components.path == "/" { components.path = "" }
|
|
guard let canonicalURL = components.string, seen.insert(canonicalURL).inserted else {
|
|
throw RelayConfigurationValidationError.duplicateURL(index: index)
|
|
}
|
|
normalizedURLs.append(canonicalURL)
|
|
}
|
|
|
|
return RelayConfiguration(mode: .custom, relayURLs: normalizedURLs)
|
|
}
|
|
}
|
|
|
|
/// Persisted app preferences, ported from `preferences/AppPreferencesRepository.kt`.
|
|
/// Backed by `UserDefaults` instead of DataStore; keys and semantics match.
|
|
struct AppPreferences: Equatable {
|
|
var username: String
|
|
var receiveFolder: ReceiveFolder
|
|
var themeMode: ThemeMode
|
|
var notificationsEnabled: Bool
|
|
var diagnosticsEnabled: Bool
|
|
var diagnosticsInstallId: String
|
|
var relayConfiguration: RelayConfiguration
|
|
}
|
|
|
|
struct AppPreferencesDefaults {
|
|
let username: String
|
|
let receiveFolder: ReceiveFolder
|
|
let themeMode: ThemeMode
|
|
var notificationsEnabled: Bool = false
|
|
var diagnosticsEnabled: Bool = false
|
|
}
|
|
|
|
@MainActor
|
|
final class AppPreferencesRepository: ObservableObject {
|
|
@Published private(set) var preferences: AppPreferences
|
|
|
|
private let defaults: UserDefaults
|
|
private let fallback: AppPreferencesDefaults
|
|
|
|
private enum Key {
|
|
static let username = "username"
|
|
static let receiveFolderKind = "receive_folder_kind"
|
|
static let receiveFolderValue = "receive_folder_value"
|
|
static let receiveFolderDisplayName = "receive_folder_display_name"
|
|
static let themeMode = "theme_mode"
|
|
static let notificationsEnabled = "notifications_enabled"
|
|
static let diagnosticsEnabled = "diagnostics_enabled"
|
|
static let diagnosticsInstallId = "diagnostics_install_id"
|
|
static let relayConfiguration = "relay_configuration"
|
|
}
|
|
|
|
init(defaults: UserDefaults = .standard, fallback: AppPreferencesDefaults) {
|
|
self.defaults = defaults
|
|
self.fallback = fallback
|
|
self.preferences = Self.read(from: defaults, fallback: fallback)
|
|
}
|
|
|
|
private static func read(from defaults: UserDefaults, fallback: AppPreferencesDefaults) -> AppPreferences {
|
|
let username = (defaults.string(forKey: Key.username)).flatMap { $0.isEmpty ? nil : $0 } ?? fallback.username
|
|
let folder = resolveReceiveFolder(defaults, fallback: fallback.receiveFolder)
|
|
let themeMode = defaults.string(forKey: Key.themeMode).flatMap(ThemeMode.init(rawValue:)) ?? fallback.themeMode
|
|
let notifications = defaults.object(forKey: Key.notificationsEnabled) as? Bool ?? fallback.notificationsEnabled
|
|
let diagnostics = defaults.object(forKey: Key.diagnosticsEnabled) as? Bool ?? fallback.diagnosticsEnabled
|
|
let installId = defaults.string(forKey: Key.diagnosticsInstallId) ?? ""
|
|
return AppPreferences(
|
|
username: username,
|
|
receiveFolder: folder,
|
|
themeMode: themeMode,
|
|
notificationsEnabled: notifications,
|
|
diagnosticsEnabled: diagnostics,
|
|
diagnosticsInstallId: installId,
|
|
relayConfiguration: resolveRelayConfiguration(defaults)
|
|
)
|
|
}
|
|
|
|
private static func resolveRelayConfiguration(_ defaults: UserDefaults) -> RelayConfiguration {
|
|
guard defaults.object(forKey: Key.relayConfiguration) != nil else { return .automatic }
|
|
guard
|
|
let data = defaults.data(forKey: Key.relayConfiguration),
|
|
let configuration = try? JSONDecoder().decode(RelayConfiguration.self, from: data)
|
|
else {
|
|
// A stored profile must never silently fall back to public relays. Keeping
|
|
// Custom selected with no URLs makes startup fail closed and lets Settings
|
|
// offer an explicit repair or reset to Automatic.
|
|
return RelayConfiguration(mode: .custom, relayURLs: [])
|
|
}
|
|
return configuration
|
|
}
|
|
|
|
private static func resolveReceiveFolder(_ defaults: UserDefaults, fallback: ReceiveFolder) -> ReceiveFolder {
|
|
let kind = defaults.string(forKey: Key.receiveFolderKind)
|
|
.flatMap(ReceiveFolderKind.init(rawValue:)) ?? fallback.kind
|
|
let value = defaults.string(forKey: Key.receiveFolderValue).flatMap { $0.isEmpty ? nil : $0 } ?? fallback.value
|
|
let displayName = defaults.string(forKey: Key.receiveFolderDisplayName)
|
|
.flatMap { $0.isEmpty ? nil : $0 } ?? fallback.displayName
|
|
return ReceiveFolder(kind: kind, value: value, displayName: displayName)
|
|
}
|
|
|
|
private func reload() {
|
|
preferences = Self.read(from: defaults, fallback: fallback)
|
|
}
|
|
|
|
func setUsername(_ username: String) {
|
|
defaults.set(username.trimmingCharacters(in: .whitespacesAndNewlines), forKey: Key.username)
|
|
reload()
|
|
}
|
|
|
|
func setReceiveFolder(_ folder: ReceiveFolder) {
|
|
defaults.set(folder.kind.rawValue, forKey: Key.receiveFolderKind)
|
|
defaults.set(folder.value, forKey: Key.receiveFolderValue)
|
|
defaults.set(folder.displayName, forKey: Key.receiveFolderDisplayName)
|
|
reload()
|
|
}
|
|
|
|
func resetReceiveFolder() {
|
|
setReceiveFolder(fallback.receiveFolder)
|
|
}
|
|
|
|
func setThemeMode(_ mode: ThemeMode) {
|
|
defaults.set(mode.rawValue, forKey: Key.themeMode)
|
|
reload()
|
|
}
|
|
|
|
func setNotificationsEnabled(_ enabled: Bool) {
|
|
defaults.set(enabled, forKey: Key.notificationsEnabled)
|
|
reload()
|
|
}
|
|
|
|
func setDiagnosticsEnabled(_ enabled: Bool) {
|
|
defaults.set(enabled, forKey: Key.diagnosticsEnabled)
|
|
reload()
|
|
}
|
|
|
|
func setRelayConfiguration(_ configuration: RelayConfiguration) {
|
|
guard let encoded = try? JSONEncoder().encode(configuration) else { return }
|
|
defaults.set(encoded, forKey: Key.relayConfiguration)
|
|
reload()
|
|
}
|
|
|
|
@discardableResult
|
|
func ensureDiagnosticsInstallId() -> String {
|
|
let existing = preferences.diagnosticsInstallId
|
|
if !existing.isEmpty { return existing }
|
|
let created = UUID().uuidString
|
|
defaults.set(created, forKey: Key.diagnosticsInstallId)
|
|
reload()
|
|
return created
|
|
}
|
|
}
|