2017-07-03 10:29:44 -07:00
|
|
|
|
//
|
|
|
|
|
// Account.swift
|
2019-07-08 23:06:40 -07:00
|
|
|
|
// NetNewsWire
|
2017-07-03 10:29:44 -07:00
|
|
|
|
//
|
|
|
|
|
// Created by Brent Simmons on 7/1/17.
|
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
2019-04-17 13:01:26 -05:00
|
|
|
|
#if os(iOS)
|
|
|
|
|
import UIKit
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-07-03 10:29:44 -07:00
|
|
|
|
import Foundation
|
|
|
|
|
import RSCore
|
2018-07-23 18:29:08 -07:00
|
|
|
|
import Articles
|
2017-09-17 12:08:50 -07:00
|
|
|
|
import RSParser
|
2018-07-23 18:29:08 -07:00
|
|
|
|
import ArticlesDatabase
|
2017-10-07 17:20:19 -07:00
|
|
|
|
import RSWeb
|
2019-06-27 14:21:07 -05:00
|
|
|
|
import os.log
|
2017-07-03 10:29:44 -07:00
|
|
|
|
|
2019-07-07 14:01:44 -07:00
|
|
|
|
// Main thread only.
|
|
|
|
|
|
2017-10-07 14:40:14 -07:00
|
|
|
|
public extension Notification.Name {
|
2019-09-08 09:43:51 -05:00
|
|
|
|
static let UserDidAddAccount = Notification.Name("UserDidAddAccount")
|
|
|
|
|
static let UserDidDeleteAccount = Notification.Name("UserDidDeleteAccount")
|
2019-02-12 10:04:18 -05:00
|
|
|
|
static let AccountRefreshDidBegin = Notification.Name(rawValue: "AccountRefreshDidBegin")
|
|
|
|
|
static let AccountRefreshDidFinish = Notification.Name(rawValue: "AccountRefreshDidFinish")
|
|
|
|
|
static let AccountRefreshProgressDidChange = Notification.Name(rawValue: "AccountRefreshProgressDidChange")
|
|
|
|
|
static let AccountDidDownloadArticles = Notification.Name(rawValue: "AccountDidDownloadArticles")
|
2019-05-02 05:41:44 -05:00
|
|
|
|
static let AccountStateDidChange = Notification.Name(rawValue: "AccountStateDidChange")
|
2019-02-12 10:04:18 -05:00
|
|
|
|
static let StatusesDidChange = Notification.Name(rawValue: "StatusesDidChange")
|
2019-11-14 20:11:41 -06:00
|
|
|
|
static let WebFeedMetadataDidChange = Notification.Name(rawValue: "WebFeedMetadataDidChange")
|
2017-10-07 14:40:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-03 10:29:44 -07:00
|
|
|
|
public enum AccountType: Int {
|
|
|
|
|
// Raw values should not change since they’re stored on disk.
|
|
|
|
|
case onMyMac = 1
|
|
|
|
|
case feedly = 16
|
|
|
|
|
case feedbin = 17
|
|
|
|
|
case feedWrangler = 18
|
|
|
|
|
case newsBlur = 19
|
2019-06-20 07:22:51 -05:00
|
|
|
|
case freshRSS = 20
|
2017-07-03 10:29:44 -07:00
|
|
|
|
// TODO: more
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
public enum FetchType {
|
|
|
|
|
case starred
|
|
|
|
|
case unread
|
|
|
|
|
case today
|
2019-11-22 10:21:30 -06:00
|
|
|
|
case folder(Folder, Bool)
|
2019-11-14 20:11:41 -06:00
|
|
|
|
case webFeed(WebFeed)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
case articleIDs(Set<String>)
|
|
|
|
|
case search(String)
|
2019-08-31 15:53:47 -05:00
|
|
|
|
case searchWithArticleIDs(String, Set<String>)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-10 13:23:12 -07:00
|
|
|
|
public final class Account: DisplayNameProvider, UnreadCountProvider, Container, Hashable {
|
2017-07-03 10:29:44 -07:00
|
|
|
|
|
2017-11-04 22:51:14 -07:00
|
|
|
|
public struct UserInfoKey {
|
2019-09-08 09:43:51 -05:00
|
|
|
|
public static let account = "account" // UserDidAddAccount, UserDidDeleteAccount
|
2017-10-08 21:06:25 -07:00
|
|
|
|
public static let newArticles = "newArticles" // AccountDidDownloadArticles
|
|
|
|
|
public static let updatedArticles = "updatedArticles" // AccountDidDownloadArticles
|
2017-10-08 22:25:33 -07:00
|
|
|
|
public static let statuses = "statuses" // StatusesDidChange
|
|
|
|
|
public static let articles = "articles" // StatusesDidChange
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public static let webFeeds = "webFeeds" // AccountDidDownloadArticles, StatusesDidChange
|
2017-10-08 01:54:37 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-19 16:52:21 -05:00
|
|
|
|
public static let defaultLocalAccountName: String = {
|
|
|
|
|
let defaultName: String
|
|
|
|
|
#if os(macOS)
|
|
|
|
|
defaultName = NSLocalizedString("On My Mac", comment: "Account name")
|
|
|
|
|
#else
|
|
|
|
|
if UIDevice.current.userInterfaceIdiom == .pad {
|
|
|
|
|
defaultName = NSLocalizedString("On My iPad", comment: "Account name")
|
|
|
|
|
} else {
|
|
|
|
|
defaultName = NSLocalizedString("On My iPhone", comment: "Account name")
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return defaultName
|
|
|
|
|
}()
|
|
|
|
|
|
2019-06-27 14:21:07 -05:00
|
|
|
|
var log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: "account")
|
|
|
|
|
|
2019-05-31 08:05:26 -05:00
|
|
|
|
public var isDeleted = false
|
|
|
|
|
|
2019-11-24 18:29:00 -06:00
|
|
|
|
public var containerID: ContainerIdentifier? {
|
|
|
|
|
return ContainerIdentifier.account(accountID)
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 20:47:52 -05:00
|
|
|
|
public var account: Account? {
|
|
|
|
|
return self
|
|
|
|
|
}
|
2017-09-17 12:08:50 -07:00
|
|
|
|
public let accountID: String
|
2017-07-03 10:29:44 -07:00
|
|
|
|
public let type: AccountType
|
2019-03-27 22:10:14 -07:00
|
|
|
|
public var nameForDisplay: String {
|
|
|
|
|
guard let name = name, !name.isEmpty else {
|
|
|
|
|
return defaultName
|
|
|
|
|
}
|
|
|
|
|
return name
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public var name: String? {
|
|
|
|
|
get {
|
2019-05-05 07:49:59 -05:00
|
|
|
|
return metadata.name
|
2019-03-27 22:10:14 -07:00
|
|
|
|
}
|
|
|
|
|
set {
|
2019-03-31 16:12:03 -07:00
|
|
|
|
let currentNameForDisplay = nameForDisplay
|
2019-05-05 07:49:59 -05:00
|
|
|
|
if newValue != metadata.name {
|
|
|
|
|
metadata.name = newValue
|
2019-03-31 16:12:03 -07:00
|
|
|
|
if currentNameForDisplay != nameForDisplay {
|
|
|
|
|
postDisplayNameDidChangeNotification()
|
|
|
|
|
}
|
2019-03-27 22:10:14 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public let defaultName: String
|
2019-05-02 05:41:44 -05:00
|
|
|
|
|
|
|
|
|
public var isActive: Bool {
|
|
|
|
|
get {
|
2019-05-05 07:49:59 -05:00
|
|
|
|
return metadata.isActive
|
2019-05-02 05:41:44 -05:00
|
|
|
|
}
|
|
|
|
|
set {
|
2019-05-05 07:49:59 -05:00
|
|
|
|
if newValue != metadata.isActive {
|
|
|
|
|
metadata.isActive = newValue
|
2019-09-08 09:58:27 -05:00
|
|
|
|
var userInfo = [AnyHashable: Any]()
|
|
|
|
|
userInfo[UserInfoKey.account] = self
|
|
|
|
|
NotificationCenter.default.post(name: .AccountStateDidChange, object: self, userInfo: userInfo)
|
2019-05-02 05:41:44 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-27 22:10:14 -07:00
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public var topLevelWebFeeds = Set<WebFeed>()
|
2018-09-16 17:54:42 -07:00
|
|
|
|
public var folders: Set<Folder>? = Set<Folder>()
|
2019-11-16 12:02:58 -06:00
|
|
|
|
|
|
|
|
|
public var sortedFolders: [Folder]? {
|
|
|
|
|
if let folders = folders {
|
2019-11-16 13:25:55 -06:00
|
|
|
|
return Array(folders).sorted(by: { $0.nameForDisplay < $1.nameForDisplay })
|
2019-11-16 12:02:58 -06:00
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
private var webFeedDictionaryNeedsUpdate = true
|
|
|
|
|
private var _idToWebFeedDictionary = [String: WebFeed]()
|
|
|
|
|
var idToWebFeedDictionary: [String: WebFeed] {
|
|
|
|
|
if webFeedDictionaryNeedsUpdate {
|
|
|
|
|
rebuildWebFeedDictionaries()
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
return _idToWebFeedDictionary
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-02 18:17:52 -05:00
|
|
|
|
var username: String? {
|
|
|
|
|
get {
|
2019-05-05 07:49:59 -05:00
|
|
|
|
return metadata.username
|
2019-05-02 18:17:52 -05:00
|
|
|
|
}
|
|
|
|
|
set {
|
2019-05-05 07:49:59 -05:00
|
|
|
|
if newValue != metadata.username {
|
|
|
|
|
metadata.username = newValue
|
2019-05-02 18:17:52 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 15:16:09 -04:00
|
|
|
|
public var endpointURL: URL? {
|
|
|
|
|
get {
|
|
|
|
|
return metadata.endpointURL
|
|
|
|
|
}
|
|
|
|
|
set {
|
|
|
|
|
if newValue != metadata.endpointURL {
|
|
|
|
|
metadata.endpointURL = newValue
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-16 17:54:42 -07:00
|
|
|
|
private var fetchingAllUnreadCounts = false
|
2019-04-27 16:16:46 -05:00
|
|
|
|
var isUnreadCountsInitialized = false
|
2018-09-16 17:54:42 -07:00
|
|
|
|
|
2017-07-03 10:29:44 -07:00
|
|
|
|
let dataFolder: String
|
2018-07-23 18:29:08 -07:00
|
|
|
|
let database: ArticlesDatabase
|
2019-05-05 03:25:21 -05:00
|
|
|
|
var delegate: AccountDelegate
|
2018-02-17 15:38:54 -08:00
|
|
|
|
static let saveQueue = CoalescingQueue(name: "Account Save Queue", interval: 1.0)
|
2017-10-07 18:15:42 -07:00
|
|
|
|
|
2018-09-14 22:06:03 -07:00
|
|
|
|
private var unreadCounts = [String: Int]() // [feedID: Int]
|
2018-09-14 13:25:38 -07:00
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
private var _flattenedWebFeeds = Set<WebFeed>()
|
|
|
|
|
private var flattenedWebFeedsNeedUpdate = true
|
2018-09-16 17:54:42 -07:00
|
|
|
|
|
2019-09-13 16:12:19 -05:00
|
|
|
|
private lazy var opmlFile = OPMLFile(filename: (dataFolder as NSString).appendingPathComponent("Subscriptions.opml"), account: self)
|
2019-09-13 16:41:08 -05:00
|
|
|
|
private lazy var metadataFile = AccountMetadataFile(filename: (dataFolder as NSString).appendingPathComponent("Settings.plist"), account: self)
|
2019-09-23 09:57:50 -05:00
|
|
|
|
var metadata = AccountMetadata() {
|
|
|
|
|
didSet {
|
|
|
|
|
delegate.accountMetadata = metadata
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-20 22:10:22 -07:00
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
private lazy var webFeedMetadataFile = WebFeedMetadataFile(filename: (dataFolder as NSString).appendingPathComponent("FeedMetadata.plist"), account: self)
|
|
|
|
|
typealias WebFeedMetadataDictionary = [String: WebFeedMetadata]
|
|
|
|
|
var webFeedMetadata = WebFeedMetadataDictionary()
|
2019-03-13 23:41:43 -07:00
|
|
|
|
|
2019-09-23 10:27:17 -05:00
|
|
|
|
var startingUp = true
|
2018-09-16 20:02:24 -07:00
|
|
|
|
|
2017-10-10 13:23:12 -07:00
|
|
|
|
public var unreadCount = 0 {
|
|
|
|
|
didSet {
|
|
|
|
|
if unreadCount != oldValue {
|
|
|
|
|
postUnreadCountDidChangeNotification()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 11:34:31 -05:00
|
|
|
|
public var behaviors: AccountBehaviors {
|
|
|
|
|
return delegate.behaviors
|
2019-05-28 17:42:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-07 14:40:14 -07:00
|
|
|
|
var refreshInProgress = false {
|
|
|
|
|
didSet {
|
|
|
|
|
if refreshInProgress != oldValue {
|
|
|
|
|
if refreshInProgress {
|
|
|
|
|
NotificationCenter.default.post(name: .AccountRefreshDidBegin, object: self)
|
|
|
|
|
}
|
|
|
|
|
else {
|
2017-10-07 18:31:34 -07:00
|
|
|
|
NotificationCenter.default.post(name: .AccountRefreshDidFinish, object: self)
|
2019-09-23 10:35:48 -05:00
|
|
|
|
opmlFile.markAsDirty()
|
2017-10-07 14:40:14 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-09-28 13:16:47 -07:00
|
|
|
|
|
2017-10-07 17:20:19 -07:00
|
|
|
|
var refreshProgress: DownloadProgress {
|
2018-02-14 13:14:25 -08:00
|
|
|
|
return delegate.refreshProgress
|
2017-10-07 17:20:19 -07:00
|
|
|
|
}
|
2018-02-14 13:14:25 -08:00
|
|
|
|
|
2019-05-12 07:22:33 -05:00
|
|
|
|
init?(dataFolder: String, type: AccountType, accountID: String, transport: Transport? = nil) {
|
2019-05-02 18:17:52 -05:00
|
|
|
|
switch type {
|
|
|
|
|
case .onMyMac:
|
|
|
|
|
self.delegate = LocalAccountDelegate()
|
|
|
|
|
case .feedbin:
|
2019-05-14 18:24:19 -05:00
|
|
|
|
self.delegate = FeedbinAccountDelegate(dataFolder: dataFolder, transport: transport)
|
2019-06-20 07:22:51 -05:00
|
|
|
|
case .freshRSS:
|
2019-06-19 12:25:37 -04:00
|
|
|
|
self.delegate = ReaderAPIAccountDelegate(dataFolder: dataFolder, transport: transport)
|
2019-09-18 09:18:06 +10:00
|
|
|
|
case .feedly:
|
2019-11-07 18:54:41 +11:00
|
|
|
|
self.delegate = FeedlyAccountDelegate(dataFolder: dataFolder, transport: transport, api: FeedlyAccountDelegate.environment)
|
2019-09-28 00:44:58 -04:00
|
|
|
|
case .feedWrangler:
|
|
|
|
|
self.delegate = FeedWranglerAccountDelegate(dataFolder: dataFolder, transport: transport)
|
2019-11-20 14:01:04 -05:00
|
|
|
|
|
2019-05-02 18:17:52 -05:00
|
|
|
|
default:
|
2019-09-20 11:41:28 -05:00
|
|
|
|
return nil
|
2019-05-02 18:17:52 -05:00
|
|
|
|
}
|
2017-09-17 17:03:58 -07:00
|
|
|
|
|
|
|
|
|
self.accountID = accountID
|
|
|
|
|
self.type = type
|
|
|
|
|
self.dataFolder = dataFolder
|
2017-12-19 17:48:30 -08:00
|
|
|
|
|
2017-09-17 17:03:58 -07:00
|
|
|
|
let databaseFilePath = (dataFolder as NSString).appendingPathComponent("DB.sqlite3")
|
2018-07-23 18:29:08 -07:00
|
|
|
|
self.database = ArticlesDatabase(databaseFilePath: databaseFilePath, accountID: accountID)
|
2017-09-27 13:29:05 -07:00
|
|
|
|
|
2019-03-27 22:10:14 -07:00
|
|
|
|
switch type {
|
|
|
|
|
case .onMyMac:
|
2019-05-19 16:52:21 -05:00
|
|
|
|
defaultName = Account.defaultLocalAccountName
|
2019-03-27 22:10:14 -07:00
|
|
|
|
case .feedly:
|
|
|
|
|
defaultName = "Feedly"
|
|
|
|
|
case .feedbin:
|
|
|
|
|
defaultName = "Feedbin"
|
|
|
|
|
case .feedWrangler:
|
|
|
|
|
defaultName = "FeedWrangler"
|
|
|
|
|
case .newsBlur:
|
|
|
|
|
defaultName = "NewsBlur"
|
2019-06-20 07:22:51 -05:00
|
|
|
|
case .freshRSS:
|
|
|
|
|
defaultName = "FreshRSS"
|
2019-03-27 22:10:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-07 17:43:10 -07:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(downloadProgressDidChange(_:)), name: .DownloadProgressDidChange, object: nil)
|
2017-10-12 21:02:27 -07:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(unreadCountDidChange(_:)), name: .UnreadCountDidChange, object: nil)
|
2018-01-23 21:49:33 -08:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(batchUpdateDidPerform(_:)), name: .BatchUpdateDidPerform, object: nil)
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(displayNameDidChange(_:)), name: .DisplayNameDidChange, object: nil)
|
2018-02-24 15:54:32 -08:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(childrenDidChange(_:)), name: .ChildrenDidChange, object: nil)
|
2017-11-25 13:48:14 -08:00
|
|
|
|
|
2019-09-13 16:35:53 -05:00
|
|
|
|
metadataFile.load()
|
2019-11-14 20:11:41 -06:00
|
|
|
|
webFeedMetadataFile.load()
|
2019-09-13 16:35:53 -05:00
|
|
|
|
opmlFile.load()
|
|
|
|
|
|
2017-10-18 18:37:45 -07:00
|
|
|
|
DispatchQueue.main.async {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
self.database.cleanupDatabaseAtStartup(subscribedToWebFeedIDs: self.flattenedWebFeeds().webFeedIDs())
|
2017-12-03 11:57:53 -08:00
|
|
|
|
self.fetchAllUnreadCounts()
|
2017-10-18 18:37:45 -07:00
|
|
|
|
}
|
2017-12-19 17:48:30 -08:00
|
|
|
|
|
|
|
|
|
self.delegate.accountDidInitialize(self)
|
2018-09-16 20:02:24 -07:00
|
|
|
|
startingUp = false
|
2017-07-03 10:29:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 11:32:58 -07:00
|
|
|
|
// MARK: - API
|
2019-05-02 18:17:52 -05:00
|
|
|
|
|
2019-05-04 15:14:49 -05:00
|
|
|
|
public func storeCredentials(_ credentials: Credentials) throws {
|
2019-09-15 10:03:47 -05:00
|
|
|
|
username = credentials.username
|
2019-05-05 03:25:21 -05:00
|
|
|
|
guard let server = delegate.server else {
|
2019-09-15 10:03:47 -05:00
|
|
|
|
assertionFailure()
|
|
|
|
|
return
|
2019-05-04 15:14:49 -05:00
|
|
|
|
}
|
2019-05-05 03:25:21 -05:00
|
|
|
|
try CredentialsManager.storeCredentials(credentials, server: server)
|
2019-05-05 06:02:28 -05:00
|
|
|
|
delegate.credentials = credentials
|
2019-05-04 15:14:49 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-15 10:03:47 -05:00
|
|
|
|
public func retrieveCredentials(type: CredentialsType) throws -> Credentials? {
|
|
|
|
|
guard let username = self.username, let server = delegate.server else {
|
2019-05-30 07:48:34 -04:00
|
|
|
|
return nil
|
|
|
|
|
}
|
2019-09-15 10:03:47 -05:00
|
|
|
|
return try CredentialsManager.retrieveCredentials(type: type, server: server, username: username)
|
2019-05-30 07:48:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-15 10:03:47 -05:00
|
|
|
|
public func removeCredentials(type: CredentialsType) throws {
|
|
|
|
|
guard let username = self.username, let server = delegate.server else {
|
|
|
|
|
return
|
2019-05-30 07:48:34 -04:00
|
|
|
|
}
|
2019-09-15 10:03:47 -05:00
|
|
|
|
try CredentialsManager.removeCredentials(type: type, server: server, username: username)
|
2019-05-30 07:48:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 15:16:09 -04:00
|
|
|
|
public static func validateCredentials(transport: Transport = URLSession.webserviceTransport(), type: AccountType, credentials: Credentials, endpoint: URL? = nil, completion: @escaping (Result<Credentials?, Error>) -> Void) {
|
2019-05-02 18:17:52 -05:00
|
|
|
|
switch type {
|
|
|
|
|
case .feedbin:
|
2019-05-06 10:53:20 -05:00
|
|
|
|
FeedbinAccountDelegate.validateCredentials(transport: transport, credentials: credentials, completion: completion)
|
2019-06-20 07:22:51 -05:00
|
|
|
|
case .freshRSS:
|
2019-06-19 12:25:37 -04:00
|
|
|
|
ReaderAPIAccountDelegate.validateCredentials(transport: transport, credentials: credentials, endpoint: endpoint, completion: completion)
|
2019-09-28 00:44:58 -04:00
|
|
|
|
case .feedWrangler:
|
|
|
|
|
FeedWranglerAccountDelegate.validateCredentials(transport: transport, credentials: credentials, completion: completion)
|
2019-05-02 18:17:52 -05:00
|
|
|
|
default:
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-18 09:18:06 +10:00
|
|
|
|
|
2019-11-08 18:35:22 +11:00
|
|
|
|
internal static func oauthAuthorizationClient(for type: AccountType) -> OAuthAuthorizationClient {
|
|
|
|
|
switch type {
|
|
|
|
|
case .feedly:
|
|
|
|
|
return FeedlyAccountDelegate.environment.oauthAuthorizationClient
|
|
|
|
|
default:
|
|
|
|
|
fatalError("\(type) is not a client for OAuth authorization code granting.")
|
2019-11-07 18:54:41 +11:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-08 09:51:59 +11:00
|
|
|
|
|
2019-11-08 18:35:22 +11:00
|
|
|
|
public static func oauthAuthorizationCodeGrantRequest(for type: AccountType) -> URLRequest {
|
2019-09-18 09:18:06 +10:00
|
|
|
|
let grantingType: OAuthAuthorizationGranting.Type
|
|
|
|
|
switch type {
|
|
|
|
|
case .feedly:
|
|
|
|
|
grantingType = FeedlyAccountDelegate.self
|
|
|
|
|
default:
|
|
|
|
|
fatalError("\(type) does not support OAuth authorization code granting.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-08 18:35:22 +11:00
|
|
|
|
return grantingType.oauthAuthorizationCodeGrantRequest()
|
2019-09-18 09:18:06 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func requestOAuthAccessToken(with response: OAuthAuthorizationResponse,
|
|
|
|
|
client: OAuthAuthorizationClient,
|
|
|
|
|
accountType: AccountType,
|
|
|
|
|
transport: Transport = URLSession.webserviceTransport(),
|
|
|
|
|
completionHandler: @escaping (Result<OAuthAuthorizationGrant, Error>) -> ()) {
|
|
|
|
|
let grantingType: OAuthAuthorizationGranting.Type
|
|
|
|
|
|
|
|
|
|
switch accountType {
|
|
|
|
|
case .feedly:
|
|
|
|
|
grantingType = FeedlyAccountDelegate.self
|
|
|
|
|
default:
|
|
|
|
|
fatalError("\(accountType) does not support OAuth authorization code granting.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-08 18:35:22 +11:00
|
|
|
|
grantingType.requestOAuthAccessToken(with: response, transport: transport, completionHandler: completionHandler)
|
2019-09-18 09:18:06 +10:00
|
|
|
|
}
|
2017-09-17 11:32:58 -07:00
|
|
|
|
|
2019-05-26 11:54:32 -05:00
|
|
|
|
public func refreshAll(completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-05-15 11:52:56 -05:00
|
|
|
|
self.delegate.refreshAll(for: self, completion: completion)
|
2017-07-03 10:29:44 -07:00
|
|
|
|
}
|
2017-09-16 15:30:26 -07:00
|
|
|
|
|
2019-11-04 20:24:21 -06:00
|
|
|
|
public func syncArticleStatus(completion: ((Result<Void, Error>) -> Void)? = nil) {
|
|
|
|
|
delegate.sendArticleStatus(for: self) { [unowned self] result in
|
|
|
|
|
switch result {
|
|
|
|
|
case .success:
|
|
|
|
|
self.delegate.refreshArticleStatus(for: self) { result in
|
|
|
|
|
switch result {
|
|
|
|
|
case .success:
|
|
|
|
|
completion?(.success(()))
|
|
|
|
|
case .failure(let error):
|
|
|
|
|
completion?(.failure(error))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
case .failure(let error):
|
|
|
|
|
completion?(.failure(error))
|
2019-05-15 11:52:56 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-11 12:26:23 -05:00
|
|
|
|
public func importOPML(_ opmlFile: URL, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-06-19 17:50:32 -05:00
|
|
|
|
guard !delegate.isOPMLImportInProgress else {
|
2019-05-17 10:44:22 -05:00
|
|
|
|
completion(.failure(AccountError.opmlImportInProgress))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-12 19:31:29 -05:00
|
|
|
|
delegate.importOPML(for: self, opmlFile: opmlFile) { [weak self] result in
|
|
|
|
|
switch result {
|
|
|
|
|
case .success:
|
|
|
|
|
guard let self = self else { return }
|
2019-05-17 10:04:13 -05:00
|
|
|
|
// Reset the last fetch date to get the article history for the added feeds.
|
|
|
|
|
self.metadata.lastArticleFetch = nil
|
2019-05-26 11:54:32 -05:00
|
|
|
|
self.delegate.refreshAll(for: self, completion: completion)
|
2019-05-12 19:31:29 -05:00
|
|
|
|
case .failure(let error):
|
|
|
|
|
completion(.failure(error))
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-17 10:44:22 -05:00
|
|
|
|
|
2017-09-17 12:08:50 -07:00
|
|
|
|
}
|
2019-05-11 12:26:23 -05:00
|
|
|
|
|
2019-11-04 20:24:21 -06:00
|
|
|
|
public func suspend() {
|
|
|
|
|
delegate.cancelAll(for: self)
|
|
|
|
|
save()
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-02 15:32:34 -05:00
|
|
|
|
public func save() {
|
|
|
|
|
metadataFile.save()
|
2019-11-14 20:11:41 -06:00
|
|
|
|
webFeedMetadataFile.save()
|
2019-10-02 15:32:34 -05:00
|
|
|
|
opmlFile.save()
|
2019-09-23 11:09:40 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 18:42:31 +11:00
|
|
|
|
public func prepareForDeletion() {
|
|
|
|
|
delegate.accountWillBeDeleted(self)
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-12 18:05:29 -05:00
|
|
|
|
func loadOPMLItems(_ items: [RSOPMLItem], parentFolder: Folder?) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
var feedsToAdd = Set<WebFeed>()
|
2019-09-12 18:05:29 -05:00
|
|
|
|
|
|
|
|
|
items.forEach { (item) in
|
|
|
|
|
|
|
|
|
|
if let feedSpecifier = item.feedSpecifier {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let feed = newWebFeed(with: feedSpecifier)
|
2019-09-12 18:05:29 -05:00
|
|
|
|
feedsToAdd.insert(feed)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
guard let folderName = item.titleFromAttributes else {
|
|
|
|
|
// Folder doesn’t have a name, so it won’t be created, and its items will go one level up.
|
|
|
|
|
if let itemChildren = item.children {
|
|
|
|
|
loadOPMLItems(itemChildren, parentFolder: parentFolder)
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let folder = ensureFolder(with: folderName) {
|
2019-09-25 17:09:21 -05:00
|
|
|
|
folder.externalID = item.attributes?["nnw_externalID"] as? String
|
2019-09-12 18:05:29 -05:00
|
|
|
|
if let itemChildren = item.children {
|
|
|
|
|
loadOPMLItems(itemChildren, parentFolder: folder)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let parentFolder = parentFolder {
|
|
|
|
|
for feed in feedsToAdd {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
parentFolder.addWebFeed(feed)
|
2019-09-12 18:05:29 -05:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
for feed in feedsToAdd {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
addWebFeed(feed)
|
2019-09-12 18:05:29 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func resetWebFeedMetadataAndUnreadCounts() {
|
|
|
|
|
for feed in flattenedWebFeeds() {
|
|
|
|
|
feed.metadata = webFeedMetadata(feedURL: feed.url, webFeedID: feed.webFeedID)
|
2019-09-22 21:20:01 -05:00
|
|
|
|
}
|
2019-09-23 10:27:17 -05:00
|
|
|
|
fetchAllUnreadCounts()
|
2019-11-14 20:11:41 -06:00
|
|
|
|
NotificationCenter.default.post(name: .WebFeedMetadataDidChange, object: self, userInfo: nil)
|
2019-09-22 21:20:01 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-29 11:14:10 -07:00
|
|
|
|
public func markArticles(_ articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool) -> Set<Article>? {
|
2019-05-14 15:34:05 -05:00
|
|
|
|
return delegate.markArticles(for: self, articles: articles, statusKey: statusKey, flag: flag)
|
2017-09-17 16:30:45 -07:00
|
|
|
|
}
|
2017-10-18 19:46:35 -07:00
|
|
|
|
|
|
|
|
|
@discardableResult
|
2019-09-27 06:38:43 -05:00
|
|
|
|
func ensureFolder(with name: String) -> Folder? {
|
2017-10-18 19:46:35 -07:00
|
|
|
|
// TODO: support subfolders, maybe, some day
|
|
|
|
|
|
|
|
|
|
if name.isEmpty {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let folder = existingFolder(with: name) {
|
|
|
|
|
return folder
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let folder = Folder(account: self, name: name)
|
2018-09-16 17:54:42 -07:00
|
|
|
|
folders!.insert(folder)
|
2018-09-16 20:02:24 -07:00
|
|
|
|
structureDidChange()
|
2017-10-18 19:46:35 -07:00
|
|
|
|
|
2017-10-19 13:27:59 -07:00
|
|
|
|
postChildrenDidChangeNotification()
|
2017-10-18 19:46:35 -07:00
|
|
|
|
return folder
|
2017-09-17 13:07:55 -07:00
|
|
|
|
}
|
2017-09-25 13:31:36 -07:00
|
|
|
|
|
2017-11-04 19:03:47 -07:00
|
|
|
|
public func ensureFolder(withFolderNames folderNames: [String]) -> Folder? {
|
|
|
|
|
// TODO: support subfolders, maybe, some day.
|
|
|
|
|
// Since we don’t, just take the last name and make sure there’s a Folder.
|
|
|
|
|
|
|
|
|
|
guard let folderName = folderNames.last else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
return ensureFolder(with: folderName)
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-20 18:49:17 -05:00
|
|
|
|
public func findFolder(withDisplayName displayName: String) -> Folder? {
|
|
|
|
|
return folders?.first(where: { $0.nameForDisplay == displayName })
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func newWebFeed(with opmlFeedSpecifier: RSOPMLFeedSpecifier) -> WebFeed {
|
2019-05-11 16:07:27 -05:00
|
|
|
|
let feedURL = opmlFeedSpecifier.feedURL
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let metadata = webFeedMetadata(feedURL: feedURL, webFeedID: feedURL)
|
|
|
|
|
let feed = WebFeed(account: self, url: opmlFeedSpecifier.feedURL, metadata: metadata)
|
2019-05-11 16:07:27 -05:00
|
|
|
|
if let feedTitle = opmlFeedSpecifier.title {
|
|
|
|
|
if feed.name == nil {
|
|
|
|
|
feed.name = feedTitle
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return feed
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func addWebFeed(_ feed: WebFeed, to container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.addWebFeed(for: self, with: feed, to: container, completion: completion)
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func createWebFeed(url: String, name: String?, container: Container, completion: @escaping (Result<WebFeed, Error>) -> Void) {
|
|
|
|
|
delegate.createWebFeed(for: self, url: url, name: name, container: container, completion: completion)
|
2019-05-07 10:51:41 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func createWebFeed(with name: String?, url: String, webFeedID: String, homePageURL: String?) -> WebFeed {
|
|
|
|
|
let metadata = webFeedMetadata(feedURL: url, webFeedID: webFeedID)
|
|
|
|
|
let feed = WebFeed(account: self, url: url, metadata: metadata)
|
2019-05-07 10:51:41 -05:00
|
|
|
|
feed.name = name
|
|
|
|
|
feed.homePageURL = homePageURL
|
|
|
|
|
|
2017-09-30 16:56:48 -07:00
|
|
|
|
return feed
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func removeWebFeed(_ feed: WebFeed, from container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.removeWebFeed(for: self, with: feed, from: container, completion: completion)
|
2019-05-09 16:09:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func moveWebFeed(_ feed: WebFeed, from: Container, to: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.moveWebFeed(for: self, with: feed, from: from, to: to, completion: completion)
|
2019-05-09 16:09:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func renameWebFeed(_ feed: WebFeed, to name: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.renameWebFeed(for: self, with: feed, to: name, completion: completion)
|
2019-05-08 17:41:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func restoreWebFeed(_ feed: WebFeed, container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.restoreWebFeed(for: self, feed: feed, container: container, completion: completion)
|
2019-05-09 16:09:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-30 14:36:21 -05:00
|
|
|
|
public func addFolder(_ name: String, completion: @escaping (Result<Folder, Error>) -> Void) {
|
|
|
|
|
delegate.addFolder(for: self, name: name, completion: completion)
|
2019-05-09 16:09:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 20:53:00 -05:00
|
|
|
|
public func removeFolder(_ folder: Folder, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.removeFolder(for: self, with: folder, completion: completion)
|
2017-09-25 13:31:36 -07:00
|
|
|
|
}
|
2019-05-06 10:53:20 -05:00
|
|
|
|
|
|
|
|
|
public func renameFolder(_ folder: Folder, to name: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-05-06 17:34:41 -05:00
|
|
|
|
delegate.renameFolder(for: self, with: folder, to: name, completion: completion)
|
2019-05-06 10:53:20 -05:00
|
|
|
|
}
|
2017-09-25 13:31:36 -07:00
|
|
|
|
|
2019-05-09 16:09:21 -05:00
|
|
|
|
public func restoreFolder(_ folder: Folder, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
delegate.restoreFolder(for: self, folder: folder, completion: completion)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func clearWebFeedMetadata(_ feed: WebFeed) {
|
|
|
|
|
webFeedMetadata[feed.url] = nil
|
2019-05-31 07:47:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-09 16:09:21 -05:00
|
|
|
|
func addFolder(_ folder: Folder) {
|
|
|
|
|
folders!.insert(folder)
|
|
|
|
|
postChildrenDidChangeNotification()
|
|
|
|
|
structureDidChange()
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func updateUnreadCounts(for webFeeds: Set<WebFeed>) {
|
|
|
|
|
if webFeeds.isEmpty {
|
2017-10-18 21:53:45 -07:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.fetchUnreadCounts(for: webFeeds.webFeedIDs()) { (unreadCountDictionary) in
|
|
|
|
|
for webFeed in webFeeds {
|
|
|
|
|
if let unreadCount = unreadCountDictionary[webFeed.webFeedID] {
|
|
|
|
|
webFeed.unreadCount = unreadCount
|
2017-10-08 01:54:37 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
public func fetchArticles(_ fetchType: FetchType) -> Set<Article> {
|
|
|
|
|
switch fetchType {
|
|
|
|
|
case .starred:
|
|
|
|
|
return fetchStarredArticles()
|
|
|
|
|
case .unread:
|
|
|
|
|
return fetchUnreadArticles()
|
|
|
|
|
case .today:
|
|
|
|
|
return fetchTodayArticles()
|
2019-11-22 10:21:30 -06:00
|
|
|
|
case .folder(let folder, let readFilter):
|
|
|
|
|
if readFilter {
|
|
|
|
|
return fetchUnreadArticles(folder: folder)
|
|
|
|
|
} else {
|
|
|
|
|
return fetchArticles(folder: folder)
|
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
case .webFeed(let webFeed):
|
|
|
|
|
return fetchArticles(webFeed: webFeed)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
case .articleIDs(let articleIDs):
|
|
|
|
|
return fetchArticles(articleIDs: articleIDs)
|
|
|
|
|
case .search(let searchString):
|
|
|
|
|
return fetchArticlesMatching(searchString)
|
2019-08-31 15:53:47 -05:00
|
|
|
|
case .searchWithArticleIDs(let searchString, let articleIDs):
|
|
|
|
|
return fetchArticlesMatchingWithArticleIDs(searchString, articleIDs)
|
2018-09-10 22:08:38 -07:00
|
|
|
|
}
|
2019-02-24 19:22:16 -08:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
public func fetchArticlesAsync(_ fetchType: FetchType, _ callback: @escaping ArticleSetBlock) {
|
|
|
|
|
switch fetchType {
|
|
|
|
|
case .starred:
|
|
|
|
|
fetchStarredArticlesAsync(callback)
|
|
|
|
|
case .unread:
|
|
|
|
|
fetchUnreadArticlesAsync(callback)
|
|
|
|
|
case .today:
|
|
|
|
|
fetchTodayArticlesAsync(callback)
|
2019-11-22 10:21:30 -06:00
|
|
|
|
case .folder(let folder, let readFilter):
|
|
|
|
|
if readFilter {
|
|
|
|
|
return fetchUnreadArticlesAsync(folder: folder, callback)
|
|
|
|
|
} else {
|
|
|
|
|
return fetchArticlesAsync(folder: folder, callback)
|
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
case .webFeed(let webFeed):
|
|
|
|
|
fetchArticlesAsync(webFeed: webFeed, callback)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
case .articleIDs(let articleIDs):
|
|
|
|
|
fetchArticlesAsync(articleIDs: articleIDs, callback)
|
|
|
|
|
case .search(let searchString):
|
|
|
|
|
fetchArticlesMatchingAsync(searchString, callback)
|
2019-08-31 15:53:47 -05:00
|
|
|
|
case .searchWithArticleIDs(let searchString, let articleIDs):
|
|
|
|
|
return fetchArticlesMatchingWithArticleIDsAsync(searchString, articleIDs, callback)
|
2017-12-26 11:27:55 -08:00
|
|
|
|
}
|
2017-10-08 18:58:15 -07:00
|
|
|
|
}
|
2017-11-19 12:12:43 -08:00
|
|
|
|
|
2017-11-19 12:45:35 -08:00
|
|
|
|
public func fetchUnreadCountForToday(_ callback: @escaping (Int) -> Void) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.fetchUnreadCountForToday(for: flattenedWebFeeds().webFeedIDs(), callback: callback)
|
2017-11-19 12:12:43 -08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 15:40:02 -08:00
|
|
|
|
public func fetchUnreadCountForStarredArticles(_ callback: @escaping (Int) -> Void) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.fetchStarredAndUnreadCount(for: flattenedWebFeeds().webFeedIDs(), callback: callback)
|
2017-11-19 15:40:02 -08:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 10:39:52 -05:00
|
|
|
|
public func fetchUnreadArticleIDs() -> Set<String> {
|
|
|
|
|
return database.fetchUnreadArticleIDs()
|
2019-05-14 06:20:53 -05:00
|
|
|
|
}
|
2019-07-07 15:05:36 -07:00
|
|
|
|
|
2019-08-30 10:39:52 -05:00
|
|
|
|
public func fetchStarredArticleIDs() -> Set<String> {
|
|
|
|
|
return database.fetchStarredArticleIDs()
|
2019-05-14 06:20:53 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 10:39:52 -05:00
|
|
|
|
public func fetchArticleIDsForStatusesWithoutArticles() -> Set<String> {
|
|
|
|
|
return database.fetchArticleIDsForStatusesWithoutArticles()
|
2019-05-17 14:56:27 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func unreadCount(for webFeed: WebFeed) -> Int {
|
|
|
|
|
return unreadCounts[webFeed.webFeedID] ?? 0
|
2018-09-14 22:06:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func setUnreadCount(_ unreadCount: Int, for webFeed: WebFeed) {
|
|
|
|
|
unreadCounts[webFeed.webFeedID] = unreadCount
|
2018-09-14 22:06:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-16 17:54:42 -07:00
|
|
|
|
public func structureDidChange() {
|
|
|
|
|
// Feeds were added or deleted. Or folders added or deleted.
|
|
|
|
|
// Or feeds inside folders were added or deleted.
|
2018-09-16 20:02:24 -07:00
|
|
|
|
if !startingUp {
|
2019-09-13 10:15:11 -05:00
|
|
|
|
opmlFile.markAsDirty()
|
2018-09-16 20:02:24 -07:00
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
flattenedWebFeedsNeedUpdate = true
|
|
|
|
|
webFeedDictionaryNeedsUpdate = true
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func update(_ webFeed: WebFeed, with parsedFeed: ParsedFeed, _ completion: @escaping (() -> Void)) {
|
2019-10-13 19:02:56 -07:00
|
|
|
|
// Used only by an On My Mac account.
|
2019-11-14 20:11:41 -06:00
|
|
|
|
webFeed.takeSettings(from: parsedFeed)
|
|
|
|
|
let webFeedIDsAndItems = [webFeed.webFeedID: parsedFeed.items]
|
|
|
|
|
update(webFeedIDsAndItems: webFeedIDsAndItems, defaultRead: false, completion: completion)
|
2019-05-12 18:32:32 -05:00
|
|
|
|
}
|
2019-10-13 19:02:56 -07:00
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func update(webFeedIDsAndItems: [String: Set<ParsedItem>], defaultRead: Bool, completion: @escaping (() -> Void)) {
|
2019-10-13 19:23:36 -07:00
|
|
|
|
assert(Thread.isMainThread)
|
2019-11-14 20:11:41 -06:00
|
|
|
|
guard !webFeedIDsAndItems.isEmpty else {
|
2019-10-13 19:02:56 -07:00
|
|
|
|
completion()
|
|
|
|
|
return
|
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.update(webFeedIDsAndItems: webFeedIDsAndItems, defaultRead: defaultRead) { (newArticles, updatedArticles) in
|
2019-05-11 12:26:23 -05:00
|
|
|
|
var userInfo = [String: Any]()
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let webFeeds = Set(webFeedIDsAndItems.compactMap { (key, _) -> WebFeed? in
|
|
|
|
|
self.existingWebFeed(withWebFeedID: key)
|
2019-10-13 19:02:56 -07:00
|
|
|
|
})
|
2019-05-11 12:26:23 -05:00
|
|
|
|
if let newArticles = newArticles, !newArticles.isEmpty {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
self.updateUnreadCounts(for: webFeeds)
|
2019-05-11 12:26:23 -05:00
|
|
|
|
userInfo[UserInfoKey.newArticles] = newArticles
|
|
|
|
|
}
|
|
|
|
|
if let updatedArticles = updatedArticles, !updatedArticles.isEmpty {
|
|
|
|
|
userInfo[UserInfoKey.updatedArticles] = updatedArticles
|
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
userInfo[UserInfoKey.webFeeds] = webFeeds
|
2019-10-13 19:02:56 -07:00
|
|
|
|
|
2019-05-11 12:26:23 -05:00
|
|
|
|
completion()
|
2019-10-13 19:02:56 -07:00
|
|
|
|
|
2019-05-11 12:26:23 -05:00
|
|
|
|
NotificationCenter.default.post(name: .AccountDidDownloadArticles, object: self, userInfo: userInfo)
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-12 18:32:32 -05:00
|
|
|
|
|
2019-07-07 15:05:36 -07:00
|
|
|
|
@discardableResult
|
2019-05-14 15:34:05 -05:00
|
|
|
|
func update(_ articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool) -> Set<Article>? {
|
|
|
|
|
// Returns set of Articles whose statuses did change.
|
2019-07-07 15:05:36 -07:00
|
|
|
|
guard !articles.isEmpty, let updatedStatuses = database.mark(articles, statusKey: statusKey, flag: flag) else {
|
2019-05-14 15:34:05 -05:00
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let updatedArticleIDs = updatedStatuses.articleIDs()
|
|
|
|
|
let updatedArticles = Set(articles.filter{ updatedArticleIDs.contains($0.articleID) })
|
|
|
|
|
|
|
|
|
|
noteStatusesForArticlesDidChange(updatedArticles)
|
|
|
|
|
return updatedArticles
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-06 13:20:48 +11:00
|
|
|
|
func ensureStatuses(_ articleIDs: Set<String>, _ defaultRead: Bool, _ statusKey: ArticleStatus.Key, _ flag: Bool, completionHandler: (() -> ())? = nil) {
|
|
|
|
|
guard !articleIDs.isEmpty else {
|
|
|
|
|
completionHandler?()
|
|
|
|
|
return
|
2019-07-07 15:05:36 -07:00
|
|
|
|
}
|
2019-11-06 13:20:48 +11:00
|
|
|
|
database.ensureStatuses(articleIDs, defaultRead, statusKey, flag, completionHandler: completionHandler)
|
2019-05-14 10:06:29 -05:00
|
|
|
|
}
|
2019-08-21 13:23:46 -07:00
|
|
|
|
|
2019-10-12 15:06:21 -07:00
|
|
|
|
/// Empty caches that can reasonably be emptied. Call when the app goes in the background, for instance.
|
|
|
|
|
func emptyCaches() {
|
|
|
|
|
database.emptyCaches()
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-16 17:54:42 -07:00
|
|
|
|
// MARK: - Container
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func flattenedWebFeeds() -> Set<WebFeed> {
|
2019-07-07 14:01:44 -07:00
|
|
|
|
assert(Thread.isMainThread)
|
2019-11-14 20:11:41 -06:00
|
|
|
|
if flattenedWebFeedsNeedUpdate {
|
|
|
|
|
updateFlattenedWebFeeds()
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
return _flattenedWebFeeds
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func removeWebFeed(_ webFeed: WebFeed) {
|
|
|
|
|
topLevelWebFeeds.remove(webFeed)
|
2019-05-07 17:41:32 -05:00
|
|
|
|
structureDidChange()
|
2019-10-03 18:45:16 +10:00
|
|
|
|
postChildrenDidChangeNotification()
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func removeFeeds(_ webFeeds: Set<WebFeed>) {
|
|
|
|
|
guard !webFeeds.isEmpty else {
|
2019-10-03 18:45:16 +10:00
|
|
|
|
return
|
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
topLevelWebFeeds.subtract(webFeeds)
|
2019-10-03 18:45:16 +10:00
|
|
|
|
structureDidChange()
|
2019-05-07 17:41:32 -05:00
|
|
|
|
postChildrenDidChangeNotification()
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func addWebFeed(_ webFeed: WebFeed) {
|
|
|
|
|
topLevelWebFeeds.insert(webFeed)
|
2018-09-16 17:54:42 -07:00
|
|
|
|
structureDidChange()
|
|
|
|
|
postChildrenDidChangeNotification()
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func addFeedIfNotInAnyFolder(_ webFeed: WebFeed) {
|
|
|
|
|
if !flattenedWebFeeds().contains(webFeed) {
|
|
|
|
|
addWebFeed(webFeed)
|
2019-05-28 13:38:40 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 20:53:00 -05:00
|
|
|
|
func removeFolder(_ folder: Folder) {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
folders?.remove(folder)
|
|
|
|
|
structureDidChange()
|
|
|
|
|
postChildrenDidChangeNotification()
|
|
|
|
|
}
|
2019-05-06 17:34:41 -05:00
|
|
|
|
|
2017-11-25 11:13:15 -08:00
|
|
|
|
// MARK: - Debug
|
|
|
|
|
|
|
|
|
|
public func debugDropConditionalGetInfo() {
|
|
|
|
|
#if DEBUG
|
2019-11-14 20:11:41 -06:00
|
|
|
|
flattenedWebFeeds().forEach{ $0.debugDropConditionalGetInfo() }
|
2017-11-25 11:13:15 -08:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-18 22:29:43 -08:00
|
|
|
|
public func debugRunSearch() {
|
|
|
|
|
#if DEBUG
|
2019-02-24 19:22:16 -08:00
|
|
|
|
let t1 = Date()
|
|
|
|
|
let articles = fetchArticlesMatching("Brent NetNewsWire")
|
|
|
|
|
let t2 = Date()
|
|
|
|
|
print(t2.timeIntervalSince(t1))
|
|
|
|
|
print(articles.count)
|
2019-02-18 22:29:43 -08:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-07 17:43:10 -07:00
|
|
|
|
// MARK: - Notifications
|
|
|
|
|
|
|
|
|
|
@objc func downloadProgressDidChange(_ note: Notification) {
|
|
|
|
|
guard let noteObject = note.object as? DownloadProgress, noteObject === refreshProgress else {
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-10-07 17:20:19 -07:00
|
|
|
|
|
|
|
|
|
refreshInProgress = refreshProgress.numberRemaining > 0
|
|
|
|
|
NotificationCenter.default.post(name: .AccountRefreshProgressDidChange, object: self)
|
|
|
|
|
}
|
2017-10-12 21:02:27 -07:00
|
|
|
|
|
|
|
|
|
@objc func unreadCountDidChange(_ note: Notification) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
if let feed = note.object as? WebFeed, feed.account === self {
|
2018-09-13 22:25:10 -07:00
|
|
|
|
updateUnreadCount()
|
2017-10-13 06:50:33 -07:00
|
|
|
|
}
|
2017-10-12 21:02:27 -07:00
|
|
|
|
}
|
2017-11-15 13:26:10 -08:00
|
|
|
|
|
|
|
|
|
@objc func batchUpdateDidPerform(_ note: Notification) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
flattenedWebFeedsNeedUpdate = true
|
|
|
|
|
rebuildWebFeedDictionaries()
|
2017-11-15 13:26:10 -08:00
|
|
|
|
updateUnreadCount()
|
|
|
|
|
}
|
2017-10-07 17:20:19 -07:00
|
|
|
|
|
2018-02-24 15:54:32 -08:00
|
|
|
|
@objc func childrenDidChange(_ note: Notification) {
|
|
|
|
|
guard let object = note.object else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if let account = object as? Account, account === self {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
structureDidChange()
|
2019-05-16 09:54:19 -05:00
|
|
|
|
updateUnreadCount()
|
2018-02-24 15:54:32 -08:00
|
|
|
|
}
|
|
|
|
|
if let folder = object as? Folder, folder.account === self {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
structureDidChange()
|
2018-02-24 15:54:32 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 21:49:33 -08:00
|
|
|
|
@objc func displayNameDidChange(_ note: Notification) {
|
2018-02-24 15:54:32 -08:00
|
|
|
|
if let folder = note.object as? Folder, folder.account === self {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
structureDidChange()
|
2018-01-23 21:49:33 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-25 11:54:58 -07:00
|
|
|
|
// MARK: - Hashable
|
|
|
|
|
|
|
|
|
|
public func hash(into hasher: inout Hasher) {
|
|
|
|
|
hasher.combine(accountID)
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 11:32:58 -07:00
|
|
|
|
// MARK: - Equatable
|
2017-09-16 15:30:26 -07:00
|
|
|
|
|
2017-09-17 11:32:58 -07:00
|
|
|
|
public class func ==(lhs: Account, rhs: Account) -> Bool {
|
|
|
|
|
return lhs === rhs
|
2017-09-16 15:30:26 -07:00
|
|
|
|
}
|
2017-07-03 10:29:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-05 07:49:59 -05:00
|
|
|
|
// MARK: - AccountMetadataDelegate
|
2019-05-05 07:21:26 -05:00
|
|
|
|
|
2019-05-05 07:49:59 -05:00
|
|
|
|
extension Account: AccountMetadataDelegate {
|
|
|
|
|
func valueDidChange(_ accountMetadata: AccountMetadata, key: AccountMetadata.CodingKeys) {
|
2019-09-13 16:12:19 -05:00
|
|
|
|
metadataFile.markAsDirty()
|
2019-05-05 07:21:26 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-03 10:29:44 -07:00
|
|
|
|
|
2019-03-13 23:41:43 -07:00
|
|
|
|
// MARK: - FeedMetadataDelegate
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
extension Account: WebFeedMetadataDelegate {
|
2019-03-13 23:41:43 -07:00
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func valueDidChange(_ feedMetadata: WebFeedMetadata, key: WebFeedMetadata.CodingKeys) {
|
|
|
|
|
webFeedMetadataFile.markAsDirty()
|
|
|
|
|
guard let feed = existingWebFeed(withWebFeedID: feedMetadata.webFeedID) else {
|
2019-03-17 12:47:04 -07:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
feed.postFeedSettingDidChangeNotification(key)
|
2019-03-13 23:41:43 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
// MARK: - Fetching (Private)
|
|
|
|
|
|
|
|
|
|
private extension Account {
|
|
|
|
|
|
|
|
|
|
func fetchStarredArticles() -> Set<Article> {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
return database.fetchStarredArticles(flattenedWebFeeds().webFeedIDs())
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchStarredArticlesAsync(_ callback: @escaping ArticleSetBlock) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.fetchedStarredArticlesAsync(flattenedWebFeeds().webFeedIDs(), callback)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchUnreadArticles() -> Set<Article> {
|
|
|
|
|
return fetchUnreadArticles(forContainer: self)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchUnreadArticlesAsync(_ callback: @escaping ArticleSetBlock) {
|
|
|
|
|
fetchUnreadArticlesAsync(forContainer: self, callback)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchTodayArticles() -> Set<Article> {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
return database.fetchTodayArticles(flattenedWebFeeds().webFeedIDs())
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchTodayArticlesAsync(_ callback: @escaping ArticleSetBlock) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.fetchTodayArticlesAsync(flattenedWebFeeds().webFeedIDs(), callback)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchArticles(folder: Folder) -> Set<Article> {
|
2019-11-22 10:21:30 -06:00
|
|
|
|
return fetchArticles(forContainer: folder)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchArticlesAsync(folder: Folder, _ callback: @escaping ArticleSetBlock) {
|
2019-11-22 10:21:30 -06:00
|
|
|
|
fetchArticlesAsync(forContainer: folder, callback)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchUnreadArticles(folder: Folder) -> Set<Article> {
|
|
|
|
|
return fetchUnreadArticles(forContainer: folder)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchUnreadArticlesAsync(folder: Folder, _ callback: @escaping ArticleSetBlock) {
|
2019-07-05 20:06:31 -07:00
|
|
|
|
fetchUnreadArticlesAsync(forContainer: folder, callback)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func fetchArticles(webFeed: WebFeed) -> Set<Article> {
|
|
|
|
|
let articles = database.fetchArticles(webFeed.webFeedID)
|
|
|
|
|
validateUnreadCount(webFeed, articles)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
return articles
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func fetchArticlesAsync(webFeed: WebFeed, _ callback: @escaping ArticleSetBlock) {
|
|
|
|
|
database.fetchArticlesAsync(webFeed.webFeedID) { [weak self] (articles) in
|
|
|
|
|
self?.validateUnreadCount(webFeed, articles)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
callback(articles)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchArticlesMatching(_ searchString: String) -> Set<Article> {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
return database.fetchArticlesMatching(searchString, flattenedWebFeeds().webFeedIDs())
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-31 15:53:47 -05:00
|
|
|
|
func fetchArticlesMatchingWithArticleIDs(_ searchString: String, _ articleIDs: Set<String>) -> Set<Article> {
|
|
|
|
|
return database.fetchArticlesMatchingWithArticleIDs(searchString, articleIDs)
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
func fetchArticlesMatchingAsync(_ searchString: String, _ callback: @escaping ArticleSetBlock) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
database.fetchArticlesMatchingAsync(searchString, flattenedWebFeeds().webFeedIDs(), callback)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-31 15:53:47 -05:00
|
|
|
|
func fetchArticlesMatchingWithArticleIDsAsync(_ searchString: String, _ articleIDs: Set<String>, _ callback: @escaping ArticleSetBlock) {
|
|
|
|
|
database.fetchArticlesMatchingWithArticleIDsAsync(searchString, articleIDs, callback)
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
func fetchArticles(articleIDs: Set<String>) -> Set<Article> {
|
|
|
|
|
return database.fetchArticles(articleIDs: articleIDs)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchArticlesAsync(articleIDs: Set<String>, _ callback: @escaping ArticleSetBlock) {
|
|
|
|
|
return database.fetchArticlesAsync(articleIDs: articleIDs, callback)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func fetchUnreadArticles(webFeed: WebFeed) -> Set<Article> {
|
|
|
|
|
let articles = database.fetchUnreadArticles(Set([webFeed.webFeedID]))
|
|
|
|
|
validateUnreadCount(webFeed, articles)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
return articles
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func fetchUnreadArticlesAsync(for webFeed: WebFeed, callback: @escaping (Set<Article>) -> Void) {
|
2019-07-05 20:06:31 -07:00
|
|
|
|
// database.fetchUnreadArticlesAsync(for: Set([feed.feedID])) { [weak self] (articles) in
|
|
|
|
|
// self?.validateUnreadCount(feed, articles)
|
|
|
|
|
// callback(articles)
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-11-22 10:21:30 -06:00
|
|
|
|
func fetchArticles(forContainer container: Container) -> Set<Article> {
|
|
|
|
|
let feeds = container.flattenedWebFeeds()
|
|
|
|
|
let articles = database.fetchArticles(feeds.webFeedIDs())
|
|
|
|
|
validateUnreadCountsAfterFetchingUnreadArticles(feeds, articles)
|
|
|
|
|
return articles
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchArticlesAsync(forContainer container: Container, _ callback: @escaping ArticleSetBlock) {
|
|
|
|
|
let webFeeds = container.flattenedWebFeeds()
|
|
|
|
|
database.fetchArticlesAsync(webFeeds.webFeedIDs()) { [weak self] (articles) in
|
|
|
|
|
self?.validateUnreadCountsAfterFetchingUnreadArticles(webFeeds, articles)
|
|
|
|
|
callback(articles)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 20:06:31 -07:00
|
|
|
|
func fetchUnreadArticles(forContainer container: Container) -> Set<Article> {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let feeds = container.flattenedWebFeeds()
|
|
|
|
|
let articles = database.fetchUnreadArticles(feeds.webFeedIDs())
|
2019-07-05 20:06:31 -07:00
|
|
|
|
validateUnreadCountsAfterFetchingUnreadArticles(feeds, articles)
|
|
|
|
|
return articles
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func fetchUnreadArticlesAsync(forContainer container: Container, _ callback: @escaping ArticleSetBlock) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let webFeeds = container.flattenedWebFeeds()
|
|
|
|
|
database.fetchUnreadArticlesAsync(webFeeds.webFeedIDs()) { [weak self] (articles) in
|
|
|
|
|
self?.validateUnreadCountsAfterFetchingUnreadArticles(webFeeds, articles)
|
2019-07-05 20:06:31 -07:00
|
|
|
|
callback(articles)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func validateUnreadCountsAfterFetchingUnreadArticles(_ webFeeds: Set<WebFeed>, _ articles: Set<Article>) {
|
2019-07-05 20:06:31 -07:00
|
|
|
|
// Validate unread counts. This was the site of a performance slowdown:
|
|
|
|
|
// it was calling going through the entire list of articles once per feed:
|
|
|
|
|
// feeds.forEach { validateUnreadCount($0, articles) }
|
|
|
|
|
// Now we loop through articles exactly once. This makes a huge difference.
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
var unreadCountStorage = [String: Int]() // [WebFeedID: Int]
|
2019-07-06 11:50:22 -07:00
|
|
|
|
for article in articles where !article.status.read {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
unreadCountStorage[article.webFeedID, default: 0] += 1
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
webFeeds.forEach { (webFeed) in
|
|
|
|
|
let unreadCount = unreadCountStorage[webFeed.webFeedID, default: 0]
|
|
|
|
|
webFeed.unreadCount = unreadCount
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func validateUnreadCount(_ webFeed: WebFeed, _ articles: Set<Article>) {
|
2019-07-05 20:06:31 -07:00
|
|
|
|
// articles must contain all the unread articles for the feed.
|
|
|
|
|
// The unread number should match the feed’s unread count.
|
|
|
|
|
|
|
|
|
|
let feedUnreadCount = articles.reduce(0) { (result, article) -> Int in
|
2019-11-14 20:11:41 -06:00
|
|
|
|
if article.webFeed == webFeed && !article.status.read {
|
2019-07-05 20:06:31 -07:00
|
|
|
|
return result + 1
|
|
|
|
|
}
|
|
|
|
|
return result
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
webFeed.unreadCount = feedUnreadCount
|
2019-07-05 20:06:31 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-01 10:59:35 -07:00
|
|
|
|
// MARK: - Private
|
2017-09-27 13:29:05 -07:00
|
|
|
|
|
|
|
|
|
private extension Account {
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func webFeedMetadata(feedURL: String, webFeedID: String) -> WebFeedMetadata {
|
|
|
|
|
if let d = webFeedMetadata[feedURL] {
|
2019-03-16 17:30:30 -07:00
|
|
|
|
assert(d.delegate === self)
|
|
|
|
|
return d
|
|
|
|
|
}
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let d = WebFeedMetadata(webFeedID: webFeedID)
|
2019-03-16 17:30:30 -07:00
|
|
|
|
d.delegate = self
|
2019-11-14 20:11:41 -06:00
|
|
|
|
webFeedMetadata[feedURL] = d
|
2019-03-16 17:30:30 -07:00
|
|
|
|
return d
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func updateFlattenedWebFeeds() {
|
|
|
|
|
var feeds = Set<WebFeed>()
|
|
|
|
|
feeds.formUnion(topLevelWebFeeds)
|
2018-09-16 17:54:42 -07:00
|
|
|
|
for folder in folders! {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
feeds.formUnion(folder.flattenedWebFeeds())
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
_flattenedWebFeeds = feeds
|
|
|
|
|
flattenedWebFeedsNeedUpdate = false
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
func rebuildWebFeedDictionaries() {
|
|
|
|
|
var idDictionary = [String: WebFeed]()
|
2017-10-22 11:08:51 -07:00
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
flattenedWebFeeds().forEach { (feed) in
|
|
|
|
|
idDictionary[feed.webFeedID] = feed
|
2017-10-22 11:08:51 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
_idToWebFeedDictionary = idDictionary
|
|
|
|
|
webFeedDictionaryNeedsUpdate = false
|
2017-10-01 10:59:35 -07:00
|
|
|
|
}
|
2017-10-10 13:23:12 -07:00
|
|
|
|
|
|
|
|
|
func updateUnreadCount() {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
if fetchingAllUnreadCounts {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
var updatedUnreadCount = 0
|
2019-11-14 20:11:41 -06:00
|
|
|
|
for feed in flattenedWebFeeds() {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
updatedUnreadCount += feed.unreadCount
|
|
|
|
|
}
|
|
|
|
|
unreadCount = updatedUnreadCount
|
2017-10-10 13:23:12 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-12 21:02:27 -07:00
|
|
|
|
func noteStatusesForArticlesDidChange(_ articles: Set<Article>) {
|
2019-11-14 20:11:41 -06:00
|
|
|
|
let feeds = Set(articles.compactMap { $0.webFeed })
|
2017-10-12 21:02:27 -07:00
|
|
|
|
let statuses = Set(articles.map { $0.status })
|
2017-10-10 13:23:12 -07:00
|
|
|
|
|
|
|
|
|
// .UnreadCountDidChange notification will get sent to Folder and Account objects,
|
|
|
|
|
// which will update their own unread counts.
|
|
|
|
|
updateUnreadCounts(for: feeds)
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
NotificationCenter.default.post(name: .StatusesDidChange, object: self, userInfo: [UserInfoKey.statuses: statuses, UserInfoKey.articles: articles, UserInfoKey.webFeeds: feeds])
|
2017-10-10 13:23:12 -07:00
|
|
|
|
}
|
2017-12-03 11:57:53 -08:00
|
|
|
|
|
|
|
|
|
func fetchAllUnreadCounts() {
|
2018-09-16 17:54:42 -07:00
|
|
|
|
fetchingAllUnreadCounts = true
|
2017-12-03 11:57:53 -08:00
|
|
|
|
|
2019-07-08 23:06:40 -07:00
|
|
|
|
database.fetchAllNonZeroUnreadCounts { (unreadCountDictionary) in
|
2017-12-03 11:57:53 -08:00
|
|
|
|
if unreadCountDictionary.isEmpty {
|
2018-09-26 22:05:35 -07:00
|
|
|
|
self.fetchingAllUnreadCounts = false
|
|
|
|
|
self.updateUnreadCount()
|
2019-04-27 16:16:46 -05:00
|
|
|
|
self.isUnreadCountsInitialized = true
|
2019-11-26 20:23:12 -06:00
|
|
|
|
self.postUnreadCountDidInitializeNotification()
|
2017-12-03 11:57:53 -08:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
self.flattenedWebFeeds().forEach{ (feed) in
|
2017-12-03 11:57:53 -08:00
|
|
|
|
// When the unread count is zero, it won’t appear in unreadCountDictionary.
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
if let unreadCount = unreadCountDictionary[feed.webFeedID] {
|
2017-12-03 11:57:53 -08:00
|
|
|
|
feed.unreadCount = unreadCount
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
feed.unreadCount = 0
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-26 20:23:12 -06:00
|
|
|
|
|
2018-09-16 17:54:42 -07:00
|
|
|
|
self.fetchingAllUnreadCounts = false
|
2018-09-13 22:25:10 -07:00
|
|
|
|
self.updateUnreadCount()
|
2019-04-27 16:16:46 -05:00
|
|
|
|
self.isUnreadCountsInitialized = true
|
2019-11-26 20:23:12 -06:00
|
|
|
|
self.postUnreadCountDidInitializeNotification()
|
2017-12-03 11:57:53 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-03 10:29:44 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-22 11:08:51 -07:00
|
|
|
|
// MARK: - Container Overrides
|
|
|
|
|
|
|
|
|
|
extension Account {
|
|
|
|
|
|
2019-11-14 20:11:41 -06:00
|
|
|
|
public func existingWebFeed(withWebFeedID webFeedID: String) -> WebFeed? {
|
|
|
|
|
return idToWebFeedDictionary[webFeedID]
|
2017-10-22 11:08:51 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-27 13:29:05 -07:00
|
|
|
|
// MARK: - OPMLRepresentable
|
|
|
|
|
|
2017-09-16 15:25:38 -07:00
|
|
|
|
extension Account: OPMLRepresentable {
|
|
|
|
|
|
2019-09-25 17:01:09 -05:00
|
|
|
|
public func OPMLString(indentLevel: Int, strictConformance: Bool) -> String {
|
2017-09-16 15:25:38 -07:00
|
|
|
|
var s = ""
|
2019-11-14 20:11:41 -06:00
|
|
|
|
for feed in topLevelWebFeeds {
|
2019-09-25 17:01:09 -05:00
|
|
|
|
s += feed.OPMLString(indentLevel: indentLevel + 1, strictConformance: strictConformance)
|
2018-09-16 17:54:42 -07:00
|
|
|
|
}
|
|
|
|
|
for folder in folders! {
|
2019-09-25 17:01:09 -05:00
|
|
|
|
s += folder.OPMLString(indentLevel: indentLevel + 1, strictConformance: strictConformance)
|
2017-09-16 15:25:38 -07:00
|
|
|
|
}
|
|
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
}
|