2017-11-19 22:57:42 +01:00
|
|
|
//
|
2017-11-20 00:40:02 +01:00
|
|
|
// SmartFeed.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
// NetNewsWire
|
2017-11-19 22:57:42 +01:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/19/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2017-11-20 00:40:02 +01:00
|
|
|
import RSCore
|
2018-07-24 03:29:08 +02:00
|
|
|
import Articles
|
2017-11-19 22:57:42 +01:00
|
|
|
import Account
|
|
|
|
|
2017-11-20 00:40:02 +01:00
|
|
|
final class SmartFeed: PseudoFeed {
|
|
|
|
|
|
|
|
var nameForDisplay: String {
|
2018-02-14 22:14:25 +01:00
|
|
|
return delegate.nameForDisplay
|
2017-11-20 00:40:02 +01:00
|
|
|
}
|
2017-11-19 22:57:42 +01:00
|
|
|
|
|
|
|
var unreadCount = 0 {
|
|
|
|
didSet {
|
|
|
|
if unreadCount != oldValue {
|
|
|
|
postUnreadCountDidChangeNotification()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
#if os(macOS)
|
2018-02-12 07:10:28 +01:00
|
|
|
var pasteboardWriter: NSPasteboardWriting {
|
|
|
|
return SmartFeedPasteboardWriter(smartFeed: self)
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
#endif
|
2018-02-12 07:10:28 +01:00
|
|
|
|
2017-11-20 00:40:02 +01:00
|
|
|
private let delegate: SmartFeedDelegate
|
2019-05-22 22:08:22 +02:00
|
|
|
private var unreadCounts = [String: Int]()
|
2017-11-19 22:57:42 +01:00
|
|
|
|
2017-11-20 00:40:02 +01:00
|
|
|
init(delegate: SmartFeedDelegate) {
|
|
|
|
self.delegate = delegate
|
2017-11-19 22:57:42 +01:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(unreadCountDidChange(_:)), name: .UnreadCountDidChange, object: nil)
|
2018-02-18 00:15:26 +01:00
|
|
|
queueFetchUnreadCounts() // Fetch unread count at startup
|
2017-11-19 22:57:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func unreadCountDidChange(_ note: Notification) {
|
2019-05-07 00:46:41 +02:00
|
|
|
if note.object is AppDelegate {
|
2018-02-18 00:15:26 +01:00
|
|
|
queueFetchUnreadCounts()
|
2017-11-19 22:57:42 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-18 00:15:26 +01:00
|
|
|
|
|
|
|
@objc func fetchUnreadCounts() {
|
2019-05-02 13:01:30 +02:00
|
|
|
AccountManager.shared.activeAccounts.forEach { self.fetchUnreadCount(for: $0) }
|
2018-02-18 00:15:26 +01:00
|
|
|
}
|
2018-02-10 22:22:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extension SmartFeed: ArticleFetcher {
|
|
|
|
|
|
|
|
func fetchArticles() -> Set<Article> {
|
|
|
|
return delegate.fetchArticles()
|
|
|
|
}
|
|
|
|
|
2019-07-06 05:06:31 +02:00
|
|
|
func fetchArticlesAsync(_ callback: @escaping ArticleSetBlock) {
|
|
|
|
delegate.fetchArticlesAsync(callback)
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:22:02 +01:00
|
|
|
func fetchUnreadArticles() -> Set<Article> {
|
|
|
|
return delegate.fetchUnreadArticles()
|
|
|
|
}
|
2019-07-06 05:06:31 +02:00
|
|
|
|
|
|
|
func fetchUnreadArticlesAsync(_ callback: @escaping ArticleSetBlock) {
|
|
|
|
delegate.fetchUnreadArticlesAsync(callback)
|
|
|
|
}
|
2017-11-19 22:57:42 +01:00
|
|
|
}
|
|
|
|
|
2017-11-20 00:40:02 +01:00
|
|
|
private extension SmartFeed {
|
2017-11-19 22:57:42 +01:00
|
|
|
|
2018-02-18 00:15:26 +01:00
|
|
|
func queueFetchUnreadCounts() {
|
2018-02-18 02:45:05 +01:00
|
|
|
CoalescingQueue.standard.add(self, #selector(fetchUnreadCounts))
|
2018-02-18 00:15:26 +01:00
|
|
|
}
|
2017-11-19 22:57:42 +01:00
|
|
|
|
2018-02-18 00:15:26 +01:00
|
|
|
func fetchUnreadCount(for account: Account) {
|
2017-11-20 00:40:02 +01:00
|
|
|
delegate.fetchUnreadCount(for: account) { (accountUnreadCount) in
|
2019-05-22 22:08:22 +02:00
|
|
|
self.unreadCounts[account.accountID] = accountUnreadCount
|
2017-11-19 22:57:42 +01:00
|
|
|
self.updateUnreadCount()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-18 00:15:26 +01:00
|
|
|
func updateUnreadCount() {
|
2019-05-02 13:01:30 +02:00
|
|
|
unreadCount = AccountManager.shared.activeAccounts.reduce(0) { (result, account) -> Int in
|
2019-05-22 22:08:22 +02:00
|
|
|
if let oneUnreadCount = unreadCounts[account.accountID] {
|
2017-11-19 22:57:42 +01:00
|
|
|
return result + oneUnreadCount
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|