2019-04-15 22:03:05 +02:00
|
|
|
//
|
|
|
|
// AppDefaults.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 9/22/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
struct AppDefaults {
|
|
|
|
|
2019-11-04 18:35:45 +01:00
|
|
|
static var shared: UserDefaults = {
|
2019-10-25 19:56:28 +02:00
|
|
|
let appIdentifierPrefix = Bundle.main.object(forInfoDictionaryKey: "AppIdentifierPrefix") as! String
|
|
|
|
let suiteName = "\(appIdentifierPrefix)group.\(Bundle.main.bundleIdentifier!)"
|
2019-10-15 16:11:18 +02:00
|
|
|
return UserDefaults.init(suiteName: suiteName)!
|
2019-11-04 18:35:45 +01:00
|
|
|
}()
|
2019-10-15 16:11:18 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
struct Key {
|
2019-09-17 00:09:49 +02:00
|
|
|
static let lastImageCacheFlushDate = "lastImageCacheFlushDate"
|
2019-04-15 22:03:05 +02:00
|
|
|
static let firstRunDate = "firstRunDate"
|
2019-09-09 00:41:00 +02:00
|
|
|
static let timelineGroupByFeed = "timelineGroupByFeed"
|
2020-01-11 02:14:21 +01:00
|
|
|
static let refreshClearsReadArticles = "refreshClearsReadArticles"
|
2019-09-09 00:41:00 +02:00
|
|
|
static let timelineNumberOfLines = "timelineNumberOfLines"
|
2019-11-09 00:16:09 +01:00
|
|
|
static let timelineIconSize = "timelineIconSize"
|
2019-04-15 22:03:05 +02:00
|
|
|
static let timelineSortDirection = "timelineSortDirection"
|
2020-02-04 20:24:06 +01:00
|
|
|
static let articleFullscreenAvailable = "articleFullscreenAvailable"
|
2019-11-24 21:18:58 +01:00
|
|
|
static let articleFullscreenEnabled = "articleFullscreenEnabled"
|
2020-01-11 19:30:16 +01:00
|
|
|
static let confirmMarkAllAsRead = "confirmMarkAllAsRead"
|
2019-04-26 22:24:39 +02:00
|
|
|
static let lastRefresh = "lastRefresh"
|
2019-11-16 19:02:58 +01:00
|
|
|
static let addWebFeedAccountID = "addWebFeedAccountID"
|
2019-11-16 20:25:55 +01:00
|
|
|
static let addWebFeedFolderName = "addWebFeedFolderName"
|
2019-11-16 19:02:58 +01:00
|
|
|
static let addFolderAccountID = "addFolderAccountID"
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static let isFirstRun: Bool = {
|
2019-09-22 20:09:06 +02:00
|
|
|
if let _ = AppDefaults.shared.object(forKey: Key.firstRunDate) as? Date {
|
2019-04-15 22:03:05 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
firstRunDate = Date()
|
|
|
|
return true
|
|
|
|
}()
|
2019-11-16 19:02:58 +01:00
|
|
|
|
|
|
|
static var addWebFeedAccountID: String? {
|
|
|
|
get {
|
|
|
|
return string(for: Key.addWebFeedAccountID)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setString(for: Key.addWebFeedAccountID, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-16 20:25:55 +01:00
|
|
|
static var addWebFeedFolderName: String? {
|
|
|
|
get {
|
|
|
|
return string(for: Key.addWebFeedFolderName)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setString(for: Key.addWebFeedFolderName, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-16 19:02:58 +01:00
|
|
|
static var addFolderAccountID: String? {
|
|
|
|
get {
|
|
|
|
return string(for: Key.addFolderAccountID)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setString(for: Key.addFolderAccountID, newValue)
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2019-09-17 00:09:49 +02:00
|
|
|
static var lastImageCacheFlushDate: Date? {
|
|
|
|
get {
|
|
|
|
return date(for: Key.lastImageCacheFlushDate)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setDate(for: Key.lastImageCacheFlushDate, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-09 00:41:00 +02:00
|
|
|
static var timelineGroupByFeed: Bool {
|
|
|
|
get {
|
|
|
|
return bool(for: Key.timelineGroupByFeed)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setBool(for: Key.timelineGroupByFeed, newValue)
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2020-01-11 02:14:21 +01:00
|
|
|
static var refreshClearsReadArticles: Bool {
|
|
|
|
get {
|
|
|
|
return bool(for: Key.refreshClearsReadArticles)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setBool(for: Key.refreshClearsReadArticles, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
static var timelineSortDirection: ComparisonResult {
|
|
|
|
get {
|
|
|
|
return sortDirection(for: Key.timelineSortDirection)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setSortDirection(for: Key.timelineSortDirection, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:24:06 +01:00
|
|
|
static var articleFullscreenAvailable: Bool {
|
|
|
|
get {
|
|
|
|
return bool(for: Key.articleFullscreenAvailable)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setBool(for: Key.articleFullscreenAvailable, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-24 21:18:58 +01:00
|
|
|
static var articleFullscreenEnabled: Bool {
|
|
|
|
get {
|
|
|
|
return bool(for: Key.articleFullscreenEnabled)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setBool(for: Key.articleFullscreenEnabled, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-11 19:30:16 +01:00
|
|
|
static var confirmMarkAllAsRead: Bool {
|
2019-10-08 02:48:58 +02:00
|
|
|
get {
|
2020-01-11 19:30:16 +01:00
|
|
|
return bool(for: Key.confirmMarkAllAsRead)
|
2019-10-08 02:48:58 +02:00
|
|
|
}
|
|
|
|
set {
|
2020-01-11 19:30:16 +01:00
|
|
|
setBool(for: Key.confirmMarkAllAsRead, newValue)
|
2019-10-08 02:48:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-26 22:24:39 +02:00
|
|
|
static var lastRefresh: Date? {
|
|
|
|
get {
|
|
|
|
return date(for: Key.lastRefresh)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setDate(for: Key.lastRefresh, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-29 22:29:00 +02:00
|
|
|
static var timelineNumberOfLines: Int {
|
|
|
|
get {
|
|
|
|
return int(for: Key.timelineNumberOfLines)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setInt(for: Key.timelineNumberOfLines, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 02:44:01 +01:00
|
|
|
static var timelineIconSize: IconSize {
|
2019-11-09 00:16:09 +01:00
|
|
|
get {
|
|
|
|
let rawValue = AppDefaults.shared.integer(forKey: Key.timelineIconSize)
|
2019-11-17 02:44:01 +01:00
|
|
|
return IconSize(rawValue: rawValue) ?? IconSize.medium
|
2019-11-09 00:16:09 +01:00
|
|
|
}
|
|
|
|
set {
|
|
|
|
AppDefaults.shared.set(newValue.rawValue, forKey: Key.timelineIconSize)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
static func registerDefaults() {
|
2020-02-03 00:55:51 +01:00
|
|
|
let defaults: [String : Any] = [Key.timelineGroupByFeed: false,
|
2020-01-11 02:14:21 +01:00
|
|
|
Key.refreshClearsReadArticles: false,
|
2019-10-23 20:33:22 +02:00
|
|
|
Key.timelineNumberOfLines: 2,
|
2019-11-17 02:44:01 +01:00
|
|
|
Key.timelineIconSize: IconSize.medium.rawValue,
|
2019-10-08 02:48:58 +02:00
|
|
|
Key.timelineSortDirection: ComparisonResult.orderedDescending.rawValue,
|
2020-02-04 20:24:06 +01:00
|
|
|
Key.articleFullscreenAvailable: false,
|
2019-11-24 21:18:58 +01:00
|
|
|
Key.articleFullscreenEnabled: false,
|
2020-01-11 19:30:16 +01:00
|
|
|
Key.confirmMarkAllAsRead: true]
|
2019-09-22 20:09:06 +02:00
|
|
|
AppDefaults.shared.register(defaults: defaults)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension AppDefaults {
|
|
|
|
|
|
|
|
static var firstRunDate: Date? {
|
|
|
|
get {
|
|
|
|
return date(for: Key.firstRunDate)
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
setDate(for: Key.firstRunDate, newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-16 19:02:58 +01:00
|
|
|
static func string(for key: String) -> String? {
|
|
|
|
return UserDefaults.standard.string(forKey: key)
|
|
|
|
}
|
|
|
|
|
|
|
|
static func setString(for key: String, _ value: String?) {
|
|
|
|
UserDefaults.standard.set(value, forKey: key)
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
static func bool(for key: String) -> Bool {
|
2019-09-22 20:09:06 +02:00
|
|
|
return AppDefaults.shared.bool(forKey: key)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func setBool(for key: String, _ flag: Bool) {
|
2019-09-22 20:09:06 +02:00
|
|
|
AppDefaults.shared.set(flag, forKey: key)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func int(for key: String) -> Int {
|
2019-09-22 20:09:06 +02:00
|
|
|
return AppDefaults.shared.integer(forKey: key)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func setInt(for key: String, _ x: Int) {
|
2019-09-22 20:09:06 +02:00
|
|
|
AppDefaults.shared.set(x, forKey: key)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func date(for key: String) -> Date? {
|
2019-09-22 20:09:06 +02:00
|
|
|
return AppDefaults.shared.object(forKey: key) as? Date
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func setDate(for key: String, _ date: Date?) {
|
2019-09-22 20:09:06 +02:00
|
|
|
AppDefaults.shared.set(date, forKey: key)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func sortDirection(for key:String) -> ComparisonResult {
|
|
|
|
let rawInt = int(for: key)
|
|
|
|
if rawInt == ComparisonResult.orderedAscending.rawValue {
|
|
|
|
return .orderedAscending
|
|
|
|
}
|
|
|
|
return .orderedDescending
|
|
|
|
}
|
|
|
|
|
|
|
|
static func setSortDirection(for key: String, _ value: ComparisonResult) {
|
|
|
|
if value == .orderedAscending {
|
|
|
|
setInt(for: key, ComparisonResult.orderedAscending.rawValue)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setInt(for: key, ComparisonResult.orderedDescending.rawValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|