Bugfixes: - Add toggle for offline mode simulation (DEBUG only) - Fix VPN false-positives with interface count check - Add detailed error logging for download failures - Fix last sync timestamp display - Translate all strings to English Network Monitoring: - Add NetworkMonitorRepository with NWPathMonitor - Check path.status AND availableInterfaces for reliability - Add manual reportConnectionFailure/Success methods - Auto-load cached bookmarks when offline - Visual debug banner (green=online, red=offline) Architecture: - Clean architecture with Repository → UseCase → ViewModel - Network status in AppSettings for global access - Combine publishers for reactive updates
150 lines
4.7 KiB
Swift
150 lines
4.7 KiB
Swift
//
|
|
// AppViewModel.swift
|
|
// readeck
|
|
//
|
|
// Created by Ilyas Hallak on 27.08.25.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import Combine
|
|
|
|
@MainActor
|
|
@Observable
|
|
class AppViewModel {
|
|
private let settingsRepository = SettingsRepository()
|
|
private let factory: UseCaseFactory
|
|
private let syncTagsUseCase: PSyncTagsUseCase
|
|
let networkMonitorUseCase: PNetworkMonitorUseCase
|
|
|
|
var hasFinishedSetup: Bool = true
|
|
var isServerReachable: Bool = false
|
|
var isNetworkConnected: Bool = true
|
|
|
|
private var lastAppStartTagSyncTime: Date?
|
|
private var cancellables = Set<AnyCancellable>()
|
|
|
|
init(factory: UseCaseFactory = DefaultUseCaseFactory.shared) {
|
|
self.factory = factory
|
|
self.syncTagsUseCase = factory.makeSyncTagsUseCase()
|
|
self.networkMonitorUseCase = factory.makeNetworkMonitorUseCase()
|
|
|
|
setupNotificationObservers()
|
|
setupNetworkMonitoring()
|
|
loadSetupStatus()
|
|
}
|
|
|
|
private func setupNotificationObservers() {
|
|
NotificationCenter.default.addObserver(
|
|
forName: .unauthorizedAPIResponse,
|
|
object: nil,
|
|
queue: .main
|
|
) { [weak self] _ in
|
|
Task { @MainActor in
|
|
await self?.handleUnauthorizedResponse()
|
|
}
|
|
}
|
|
|
|
NotificationCenter.default.addObserver(
|
|
forName: .setupStatusChanged,
|
|
object: nil,
|
|
queue: .main
|
|
) { [weak self] _ in
|
|
Task { @MainActor in
|
|
self?.loadSetupStatus()
|
|
}
|
|
}
|
|
}
|
|
|
|
private func handleUnauthorizedResponse() async {
|
|
print("AppViewModel: Handling 401 Unauthorized - logging out user")
|
|
|
|
do {
|
|
try await factory.makeLogoutUseCase().execute()
|
|
loadSetupStatus()
|
|
|
|
print("AppViewModel: User successfully logged out due to 401 error")
|
|
} catch {
|
|
print("AppViewModel: Error during logout: \(error)")
|
|
}
|
|
}
|
|
|
|
private func setupNetworkMonitoring() {
|
|
// Start monitoring network status
|
|
networkMonitorUseCase.startMonitoring()
|
|
|
|
// Bind network status to our published property
|
|
networkMonitorUseCase.isConnected
|
|
.receive(on: DispatchQueue.main)
|
|
.assign(to: \.isNetworkConnected, on: self)
|
|
.store(in: &cancellables)
|
|
}
|
|
|
|
func bindNetworkStatus(to appSettings: AppSettings) {
|
|
// Bind network status to AppSettings for global access
|
|
networkMonitorUseCase.isConnected
|
|
.receive(on: DispatchQueue.main)
|
|
.sink { isConnected in
|
|
Logger.viewModel.info("🌐 Network status changed: \(isConnected ? "Connected" : "Disconnected")")
|
|
appSettings.isNetworkConnected = isConnected
|
|
}
|
|
.store(in: &cancellables)
|
|
}
|
|
|
|
private func loadSetupStatus() {
|
|
hasFinishedSetup = settingsRepository.hasFinishedSetup
|
|
}
|
|
|
|
func onAppResume() async {
|
|
await checkServerReachability()
|
|
await syncTagsOnAppStart()
|
|
syncOfflineArticlesIfNeeded()
|
|
}
|
|
|
|
private func checkServerReachability() async {
|
|
isServerReachable = await factory.makeCheckServerReachabilityUseCase().execute()
|
|
}
|
|
|
|
private func syncTagsOnAppStart() async {
|
|
let now = Date()
|
|
|
|
// Check if last sync was less than 2 minutes ago
|
|
if let lastSync = lastAppStartTagSyncTime,
|
|
now.timeIntervalSince(lastSync) < 120 {
|
|
print("AppViewModel: Skipping tag sync - last sync was less than 2 minutes ago")
|
|
return
|
|
}
|
|
|
|
// Sync tags from server to Core Data
|
|
print("AppViewModel: Syncing tags on app start")
|
|
try? await syncTagsUseCase.execute()
|
|
lastAppStartTagSyncTime = now
|
|
}
|
|
|
|
private func syncOfflineArticlesIfNeeded() {
|
|
// Run offline sync in background without blocking app start
|
|
Task.detached(priority: .background) { [weak self] in
|
|
guard let self = self else { return }
|
|
|
|
do {
|
|
let settings = try await self.settingsRepository.loadOfflineSettings()
|
|
|
|
guard settings.shouldSyncOnAppStart else {
|
|
Logger.sync.debug("Offline sync not needed (disabled or synced recently)")
|
|
return
|
|
}
|
|
|
|
Logger.sync.info("Auto-sync triggered on app start")
|
|
let offlineCacheSyncUseCase = self.factory.makeOfflineCacheSyncUseCase()
|
|
await offlineCacheSyncUseCase.syncOfflineArticles(settings: settings)
|
|
} catch {
|
|
Logger.sync.error("Failed to load offline settings for auto-sync: \(error.localizedDescription)")
|
|
}
|
|
}
|
|
}
|
|
|
|
deinit {
|
|
NotificationCenter.default.removeObserver(self)
|
|
}
|
|
}
|