// // ArticleFetcher.swift // NetNewsWire // // Created by Brent Simmons on 2/4/18. // Copyright © 2018 Ranchero Software, LLC. All rights reserved. // import Foundation import Articles public protocol ArticleFetcher { func fetchArticles() -> Set
func fetchArticlesAsync(_ callback: @escaping ArticleSetBlock) func fetchUnreadArticles() -> Set
func fetchUnreadArticlesAsync(_ callback: @escaping ArticleSetBlock) } extension Feed: ArticleFetcher { public func fetchArticles() -> Set
{ return account?.fetchArticles(.feed(self)) ?? Set
() } public func fetchArticlesAsync(_ callback: @escaping ArticleSetBlock) { guard let account = account else { assertionFailure("Expected feed.account, but got nil.") callback(Set
()) return } account.fetchArticlesAsync(.feed(self), callback) } public func fetchUnreadArticles() -> Set
{ return fetchArticles().unreadArticles() } public func fetchUnreadArticlesAsync(_ callback: @escaping ArticleSetBlock) { guard let account = account else { assertionFailure("Expected feed.account, but got nil.") callback(Set
()) return } account.fetchArticlesAsync(.feed(self)) { callback($0.unreadArticles()) } } } extension Folder: ArticleFetcher { public func fetchArticles() -> Set
{ return fetchUnreadArticles() } public func fetchArticlesAsync(_ callback: @escaping ArticleSetBlock) { fetchUnreadArticlesAsync(callback) } public func fetchUnreadArticles() -> Set
{ guard let account = account else { assertionFailure("Expected folder.account, but got nil.") return Set
() } return account.fetchArticles(.unreadForFolder(self)) } public func fetchUnreadArticlesAsync(_ callback: @escaping ArticleSetBlock) { guard let account = account else { assertionFailure("Expected folder.account, but got nil.") callback(Set
()) return } account.fetchArticlesAsync(.unreadForFolder(self), callback) } }