59 lines
1.6 KiB
Swift
59 lines
1.6 KiB
Swift
//
|
|
// Persistence.swift
|
|
// Persistence
|
|
//
|
|
// Created by Cirno MainasuK on 2021-8-18.
|
|
// Copyright © 2021 Twidere. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum Persistence {
|
|
case searchHistory
|
|
case homeTimeline(UserIdentifier)
|
|
case notificationsMentions(UserIdentifier)
|
|
case notificationsAll(UserIdentifier)
|
|
|
|
private var filename: String {
|
|
switch self {
|
|
case .searchHistory:
|
|
return "search_history" // todo: @zeitschlag should this be user-scoped as well?
|
|
case let .homeTimeline(userIdentifier):
|
|
return "home_timeline_\(userIdentifier.uniqueUserDomainIdentifier)"
|
|
case let .notificationsMentions(userIdentifier):
|
|
return "notifications_mentions_\(userIdentifier.uniqueUserDomainIdentifier)"
|
|
case let .notificationsAll(userIdentifier):
|
|
return "notifications_all_\(userIdentifier.uniqueUserDomainIdentifier)"
|
|
}
|
|
}
|
|
|
|
public func filepath(baseURL: URL) -> URL {
|
|
baseURL
|
|
.appending(path: filename)
|
|
.appendingPathExtension("json")
|
|
}
|
|
}
|
|
|
|
|
|
extension Persistence {
|
|
public enum MastodonUser { }
|
|
public enum Status { }
|
|
public enum Poll { }
|
|
public enum Card { }
|
|
public enum PollOption { }
|
|
public enum Tag { }
|
|
public enum SearchHistory { }
|
|
public enum Notification { }
|
|
}
|
|
|
|
extension Persistence {
|
|
public class PersistCache<T> {
|
|
var dictionary: [String : T] = [:]
|
|
|
|
public init(dictionary: [String : T] = [:]) {
|
|
self.dictionary = dictionary
|
|
}
|
|
}
|
|
}
|
|
|