- Replace ServerConnectivity with CheckServerReachabilityUseCase - Add InfoApiClient for /api/info endpoint - Implement ServerInfoRepository with 30s cache TTL and 5s rate limiting - Update ShareBookmarkViewModel to use ShareExtensionServerCheck manager - Add server reachability check in AppViewModel on app start - Update OfflineSyncManager to use new UseCase - Extend SimpleAPI with checkServerReachability for Share Extension
115 lines
3.5 KiB
Swift
115 lines
3.5 KiB
Swift
//
|
|
// ServerInfoRepository.swift
|
|
// readeck
|
|
//
|
|
// Created by Claude Code
|
|
|
|
import Foundation
|
|
|
|
class ServerInfoRepository: PServerInfoRepository {
|
|
private let apiClient: PInfoApiClient
|
|
private let logger = Logger.network
|
|
|
|
// Cache properties
|
|
private var cachedServerInfo: ServerInfo?
|
|
private var lastCheckTime: Date?
|
|
private let cacheTTL: TimeInterval = 30.0 // 30 seconds cache
|
|
private let rateLimitInterval: TimeInterval = 5.0 // min 5 seconds between requests
|
|
|
|
// Thread safety
|
|
private let queue = DispatchQueue(label: "com.readeck.serverInfoRepository", attributes: .concurrent)
|
|
|
|
init(apiClient: PInfoApiClient) {
|
|
self.apiClient = apiClient
|
|
}
|
|
|
|
func checkServerReachability() async -> Bool {
|
|
// Check cache first
|
|
if let cached = getCachedReachability() {
|
|
logger.debug("Server reachability from cache: \(cached)")
|
|
return cached
|
|
}
|
|
|
|
// Check rate limiting
|
|
if isRateLimited() {
|
|
logger.debug("Server reachability check rate limited, using cached value")
|
|
return cachedServerInfo?.isReachable ?? false
|
|
}
|
|
|
|
// Perform actual check
|
|
do {
|
|
let info = try await apiClient.getServerInfo()
|
|
let serverInfo = ServerInfo(from: info)
|
|
updateCache(serverInfo: serverInfo)
|
|
logger.info("Server reachability checked: true (version: \(info.version))")
|
|
return true
|
|
} catch {
|
|
let unreachableInfo = ServerInfo.unreachable
|
|
updateCache(serverInfo: unreachableInfo)
|
|
logger.warning("Server reachability check failed: \(error.localizedDescription)")
|
|
return false
|
|
}
|
|
}
|
|
|
|
func getServerInfo() async throws -> ServerInfo {
|
|
// Check cache first
|
|
if let cached = getCachedServerInfo() {
|
|
logger.debug("Server info from cache")
|
|
return cached
|
|
}
|
|
|
|
// Check rate limiting
|
|
if isRateLimited(), let cached = cachedServerInfo {
|
|
logger.debug("Server info check rate limited, using cached value")
|
|
return cached
|
|
}
|
|
|
|
// Fetch fresh info
|
|
let dto = try await apiClient.getServerInfo()
|
|
let serverInfo = ServerInfo(from: dto)
|
|
updateCache(serverInfo: serverInfo)
|
|
logger.info("Server info fetched: version \(dto.version)")
|
|
return serverInfo
|
|
}
|
|
|
|
// MARK: - Cache Management
|
|
|
|
private func getCachedReachability() -> Bool? {
|
|
queue.sync {
|
|
guard let lastCheck = lastCheckTime,
|
|
Date().timeIntervalSince(lastCheck) < cacheTTL,
|
|
let cached = cachedServerInfo else {
|
|
return nil
|
|
}
|
|
return cached.isReachable
|
|
}
|
|
}
|
|
|
|
private func getCachedServerInfo() -> ServerInfo? {
|
|
queue.sync {
|
|
guard let lastCheck = lastCheckTime,
|
|
Date().timeIntervalSince(lastCheck) < cacheTTL,
|
|
let cached = cachedServerInfo else {
|
|
return nil
|
|
}
|
|
return cached
|
|
}
|
|
}
|
|
|
|
private func isRateLimited() -> Bool {
|
|
queue.sync {
|
|
guard let lastCheck = lastCheckTime else {
|
|
return false
|
|
}
|
|
return Date().timeIntervalSince(lastCheck) < rateLimitInterval
|
|
}
|
|
}
|
|
|
|
private func updateCache(serverInfo: ServerInfo) {
|
|
queue.async(flags: .barrier) { [weak self] in
|
|
self?.cachedServerInfo = serverInfo
|
|
self?.lastCheckTime = Date()
|
|
}
|
|
}
|
|
}
|