yattee/Model/Cache/VideosCacheModel.swift

38 lines
944 B
Swift
Raw Normal View History

2022-12-10 00:23:13 +00:00
import Cache
import Foundation
import Logging
import SwiftyJSON
struct VideosCacheModel {
static let shared = VideosCacheModel()
let logger = Logger(label: "stream.yattee.cache.videos")
2022-12-10 02:01:59 +00:00
static let diskConfig = DiskConfig(name: "videos")
static let memoryConfig = MemoryConfig()
2022-12-10 00:23:13 +00:00
2022-12-10 02:01:59 +00:00
let storage = try! Storage<String, JSON>(
diskConfig: Self.diskConfig,
memoryConfig: Self.memoryConfig,
transformer: CacheModel.jsonTransformer
2022-12-10 00:23:13 +00:00
)
func storeVideo(_ video: Video) {
logger.info("caching \(video.cacheKey)")
2022-12-10 02:01:59 +00:00
try? storage.setObject(video.json, forKey: video.cacheKey)
2022-12-10 00:23:13 +00:00
}
func retrieveVideo(_ cacheKey: String) -> Video? {
logger.info("retrieving cache for \(cacheKey)")
2022-12-10 02:01:59 +00:00
if let json = try? storage.object(forKey: cacheKey) {
2022-12-10 00:23:13 +00:00
return Video.from(json)
}
return nil
}
2022-12-10 02:01:59 +00:00
func clear() {
try? storage.removeAll()
}
2022-12-10 00:23:13 +00:00
}