Files
sing-box-for-apple/Library/Database/Profile+Update.swift
T
2026-02-05 02:37:02 +08:00

40 lines
1.1 KiB
Swift

import Foundation
import GRDB
import Libbox
public extension Profile {
nonisolated func updateRemoteProfile() async throws {
if type != .remote {
return
}
let remoteContent = try await HTTPClient.getStringAsync(remoteURL)
try await BlockingIO.run {
var error: NSError?
LibboxCheckConfig(remoteContent, &error)
if let error {
throw error
}
}
lastUpdated = Date()
try await ProfileManager.update(self)
do {
let oldContent = try await readAsync()
if oldContent == remoteContent {
return
}
} catch {}
try await writeAsync(remoteContent)
try await onProfileUpdated()
}
nonisolated func onProfileUpdated() async throws {
if await SharedPreferences.selectedProfileID.get() == id {
if let profile = try? await ExtensionProfile.load() {
if await profile.status == .connected {
try await profile.reloadService()
}
}
}
}
}