NetNewsWire/Shared/ArticleStyles/ArticleThemesManager.swift

157 lines
4.2 KiB
Swift
Raw Normal View History

2021-09-07 23:58:06 +02:00
//
// ArticleThemesManager.sqift
// NetNewsWire
//
// Created by Brent Simmons on 9/26/15.
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
//
import Foundation
2021-09-07 23:58:06 +02:00
import RSCore
public extension Notification.Name {
static let ArticleThemeNamesDidChangeNotification = Notification.Name("ArticleThemeNamesDidChangeNotification")
static let CurrentArticleThemeDidChangeNotification = Notification.Name("CurrentArticleThemeDidChangeNotification")
}
2021-09-07 23:58:06 +02:00
final class ArticleThemesManager: NSObject, NSFilePresenter {
2021-09-07 23:58:06 +02:00
static var shared: ArticleThemesManager!
2021-09-12 03:32:15 +02:00
public let folderPath: String
2021-09-07 23:58:06 +02:00
lazy var presentedItemOperationQueue = OperationQueue.main
var presentedItemURL: URL? {
return URL(fileURLWithPath: folderPath)
}
2021-09-07 23:58:06 +02:00
var currentThemeName: String {
get {
return AppDefaults.shared.currentThemeName ?? AppDefaults.defaultThemeName
}
set {
if newValue != currentThemeName {
AppDefaults.shared.currentThemeName = newValue
updateCurrentTheme()
2021-09-07 23:58:06 +02:00
}
}
}
var currentTheme: ArticleTheme {
didSet {
NotificationCenter.default.post(name: .CurrentArticleThemeDidChangeNotification, object: self)
2021-09-07 23:58:06 +02:00
}
}
var themeNames = [AppDefaults.defaultThemeName] {
didSet {
NotificationCenter.default.post(name: .ArticleThemeNamesDidChangeNotification, object: self)
2021-09-07 23:58:06 +02:00
}
}
init(folderPath: String) {
self.folderPath = folderPath
self.currentTheme = ArticleTheme.defaultTheme
2021-09-07 23:58:06 +02:00
super.init()
2021-09-07 23:58:06 +02:00
do {
try FileManager.default.createDirectory(atPath: folderPath, withIntermediateDirectories: true, attributes: nil)
} catch {
assertionFailure("Could not create folder for Themes.")
abort()
}
updateThemeNames()
updateCurrentTheme()
NSFileCoordinator.addFilePresenter(self)
}
func presentedSubitemDidChange(at url: URL) {
updateThemeNames()
updateCurrentTheme()
2021-09-07 23:58:06 +02:00
}
// MARK: API
func themeExists(filename: String) -> Bool {
let filenameLastPathComponent = (filename as NSString).lastPathComponent
let toFilename = (folderPath as NSString).appendingPathComponent(filenameLastPathComponent)
return FileManager.default.fileExists(atPath: toFilename)
}
func importTheme(filename: String) throws {
let filenameLastPathComponent = (filename as NSString).lastPathComponent
let toFilename = (folderPath as NSString).appendingPathComponent(filenameLastPathComponent)
if FileManager.default.fileExists(atPath: toFilename) {
try FileManager.default.removeItem(atPath: toFilename)
}
try FileManager.default.copyItem(atPath: filename, toPath: toFilename)
2021-09-07 23:58:06 +02:00
}
}
// MARK : Private
2021-09-07 23:58:06 +02:00
private extension ArticleThemesManager {
2021-09-07 23:58:06 +02:00
func updateThemeNames() {
let updatedThemeNames = allThemePaths(folderPath).map { ArticleTheme.themeNameForPath($0) }
2021-09-09 03:02:38 +02:00
let sortedThemeNames = updatedThemeNames.sorted(by: { $0.compare($1, options: .caseInsensitive) == .orderedAscending })
if sortedThemeNames != themeNames {
themeNames = sortedThemeNames
2021-09-07 23:58:06 +02:00
}
}
func articleThemeWithThemeName(_ themeName: String) -> ArticleTheme? {
2021-09-07 23:58:06 +02:00
if themeName == AppDefaults.defaultThemeName {
return ArticleTheme.defaultTheme
}
guard let path = pathForThemeName(themeName, folder: folderPath) else {
return nil
}
return ArticleTheme(path: path)
}
func defaultArticleTheme() -> ArticleTheme {
2021-09-07 23:58:06 +02:00
return articleThemeWithThemeName(AppDefaults.defaultThemeName)!
}
func updateCurrentTheme() {
2021-09-07 23:58:06 +02:00
var themeName = currentThemeName
if !themeNames.contains(themeName) {
themeName = AppDefaults.defaultThemeName
currentThemeName = AppDefaults.defaultThemeName
}
var articleTheme = articleThemeWithThemeName(themeName)
if articleTheme == nil {
articleTheme = defaultArticleTheme()
currentThemeName = AppDefaults.defaultThemeName
}
if let articleTheme = articleTheme, articleTheme != currentTheme {
currentTheme = articleTheme
}
}
func allThemePaths(_ folder: String) -> [String] {
let filepaths = FileManager.default.filePaths(inFolder: folder)
return filepaths?.filter { $0.hasSuffix(ArticleTheme.nnwThemeSuffix) } ?? []
}
2021-09-07 23:58:06 +02:00
func pathForThemeName(_ themeName: String, folder: String) -> String? {
for onePath in allThemePaths(folder) {
if ArticleTheme.pathIsPathForThemeName(themeName, path: onePath) {
return onePath
}
2021-09-07 23:58:06 +02:00
}
return nil
2021-09-07 23:58:06 +02:00
}
2021-09-07 23:58:06 +02:00
}