226 lines
5.8 KiB
Swift
226 lines
5.8 KiB
Swift
//
|
|
// LocalAccountDelegate.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 9/16/17.
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import os.log
|
|
import Parser
|
|
import Articles
|
|
import ArticlesDatabase
|
|
import Web
|
|
import Secrets
|
|
import Core
|
|
|
|
public enum LocalAccountDelegateError: String, Error {
|
|
case invalidParameter = "An invalid parameter was used."
|
|
}
|
|
|
|
final class LocalAccountDelegate: AccountDelegate {
|
|
|
|
private var log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: "LocalAccount")
|
|
|
|
weak var account: Account?
|
|
|
|
private lazy var refresher: LocalAccountRefresher = {
|
|
let refresher = LocalAccountRefresher()
|
|
refresher.delegate = self
|
|
return refresher
|
|
}()
|
|
|
|
let behaviors: AccountBehaviors = []
|
|
let isOPMLImportInProgress = false
|
|
|
|
let server: String? = nil
|
|
var credentials: Credentials?
|
|
var accountMetadata: AccountMetadata?
|
|
|
|
let refreshProgress = DownloadProgress(numberOfTasks: 0)
|
|
|
|
func receiveRemoteNotification(for account: Account, userInfo: [AnyHashable : Any]) async {
|
|
}
|
|
|
|
func refreshAll(for account: Account) async throws {
|
|
|
|
guard refreshProgress.isComplete else {
|
|
return
|
|
}
|
|
|
|
let feeds = account.flattenedFeeds()
|
|
refreshProgress.addToNumberOfTasksAndRemaining(feeds.count)
|
|
|
|
await refresher.refreshFeeds(feeds)
|
|
|
|
self.refreshProgress.clear()
|
|
account.metadata.lastArticleFetchEndTime = Date()
|
|
}
|
|
|
|
func syncArticleStatus(for account: Account) async throws {
|
|
}
|
|
|
|
func sendArticleStatus(for account: Account) async throws {
|
|
}
|
|
|
|
func refreshArticleStatus(for account: Account) async throws {
|
|
}
|
|
|
|
func importOPML(for account:Account, opmlFile: URL) async throws {
|
|
|
|
let opmlData = try Data(contentsOf: opmlFile)
|
|
let parserData = ParserData(url: opmlFile.absoluteString, data: opmlData)
|
|
|
|
let opmlDocument = try RSOPMLParser.parseOPML(with: parserData)
|
|
guard let children = opmlDocument.children else {
|
|
return
|
|
}
|
|
|
|
BatchUpdate.shared.perform {
|
|
account.loadOPMLItems(children)
|
|
}
|
|
}
|
|
|
|
func createFeed(for account: Account, url urlString: String, name: String?, container: Container, validateFeed: Bool) async throws -> Feed {
|
|
|
|
guard let url = URL(string: urlString) else {
|
|
throw LocalAccountDelegateError.invalidParameter
|
|
}
|
|
|
|
return try await createRSSFeed(for: account, url: url, editedName: name, container: container)
|
|
}
|
|
|
|
func renameFeed(for account: Account, with feed: Feed, to name: String) async throws {
|
|
|
|
feed.editedName = name
|
|
}
|
|
|
|
func removeFeed(for account: Account, with feed: Feed, from container: any Container) async throws {
|
|
|
|
container.removeFeed(feed)
|
|
}
|
|
|
|
func moveFeed(for account: Account, with feed: Feed, from: Container, to: Container) async throws {
|
|
|
|
from.removeFeed(feed)
|
|
to.addFeed(feed)
|
|
}
|
|
|
|
func addFeed(for account: Account, with feed: Feed, to container: any Container) async throws {
|
|
|
|
container.addFeed(feed)
|
|
}
|
|
|
|
func restoreFeed(for account: Account, feed: Feed, container: any Container) async throws {
|
|
|
|
container.addFeed(feed)
|
|
}
|
|
|
|
func createFolder(for account: Account, name: String) async throws -> Folder {
|
|
|
|
guard let folder = account.ensureFolder(with: name) else {
|
|
throw LocalAccountDelegateError.invalidParameter
|
|
}
|
|
return folder
|
|
}
|
|
|
|
func renameFolder(for account: Account, with folder: Folder, to name: String) async throws {
|
|
|
|
folder.name = name
|
|
}
|
|
|
|
func removeFolder(for account: Account, with folder: Folder) async throws {
|
|
|
|
account.removeFolder(folder: folder)
|
|
}
|
|
|
|
func restoreFolder(for account: Account, folder: Folder) async throws {
|
|
|
|
account.addFolder(folder)
|
|
}
|
|
|
|
func markArticles(for account: Account, articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool) async throws {
|
|
|
|
try await account.update(articles: articles, statusKey: statusKey, flag: flag)
|
|
}
|
|
|
|
func accountDidInitialize(_ account: Account) {
|
|
self.account = account
|
|
}
|
|
|
|
func accountWillBeDeleted(_ account: Account) {
|
|
}
|
|
|
|
static func validateCredentials(transport: Transport, credentials: Credentials, endpoint: URL?, secretsProvider: SecretsProvider) async throws -> Credentials? {
|
|
|
|
return nil
|
|
}
|
|
|
|
// MARK: Suspend and Resume (for iOS)
|
|
|
|
func suspendNetwork() {
|
|
refresher.suspend()
|
|
}
|
|
|
|
func suspendDatabase() {
|
|
// Nothing to do
|
|
}
|
|
|
|
func resume() {
|
|
refresher.resume()
|
|
}
|
|
}
|
|
|
|
extension LocalAccountDelegate: LocalAccountRefresherDelegate {
|
|
|
|
|
|
func localAccountRefresher(_ refresher: LocalAccountRefresher, requestCompletedFor: Feed) {
|
|
refreshProgress.completeTask()
|
|
}
|
|
|
|
func localAccountRefresher(_ refresher: LocalAccountRefresher, articleChanges: ArticleChanges, completion: @escaping () -> Void) {
|
|
completion()
|
|
}
|
|
|
|
}
|
|
|
|
private extension LocalAccountDelegate {
|
|
|
|
func createRSSFeed(for account: Account, url: URL, editedName: String?, container: Container) async throws -> Feed {
|
|
|
|
// We need to use a batch update here because we need to add the feed to the
|
|
// container before the name has been downloaded. This will put it in the sidebar
|
|
// with an Untitled name if we don't delay it being added to the sidebar.
|
|
BatchUpdate.shared.start()
|
|
refreshProgress.addToNumberOfTasksAndRemaining(1)
|
|
defer {
|
|
refreshProgress.completeTask()
|
|
BatchUpdate.shared.end()
|
|
}
|
|
|
|
let feedSpecifiers = try await FeedFinder.find(url: url)
|
|
|
|
guard let bestFeedSpecifier = FeedSpecifier.bestFeed(in: feedSpecifiers),
|
|
let url = URL(string: bestFeedSpecifier.urlString) else {
|
|
throw AccountError.createErrorNotFound
|
|
}
|
|
|
|
guard !account.hasFeed(withURL: bestFeedSpecifier.urlString) else {
|
|
throw AccountError.createErrorAlreadySubscribed
|
|
}
|
|
|
|
guard let parsedFeed = await InitialFeedDownloader.download(url) else {
|
|
throw AccountError.createErrorNotFound
|
|
}
|
|
|
|
let feed = account.createFeed(with: nil, url: url.absoluteString, feedID: url.absoluteString, homePageURL: nil)
|
|
feed.editedName = editedName
|
|
container.addFeed(feed)
|
|
|
|
try await account.update(feed: feed, with: parsedFeed)
|
|
|
|
return feed
|
|
}
|
|
}
|