39 lines
987 B
Swift
39 lines
987 B
Swift
//
|
|
// SingleArticleFetcher.swift
|
|
// Account
|
|
//
|
|
// Created by Maurice Parker on 11/29/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Articles
|
|
|
|
public struct SingleArticleFetcher: ArticleFetcher {
|
|
|
|
private let account: Account
|
|
private let articleID: String
|
|
|
|
public init(account: Account, articleID: String) {
|
|
self.account = account
|
|
self.articleID = articleID
|
|
}
|
|
|
|
public func fetchArticles() -> Set<Article> {
|
|
return account.fetchArticles(.articleIDs(Set([articleID])))
|
|
}
|
|
|
|
public func fetchArticlesAsync(_ completion: @escaping ArticleSetBlock) {
|
|
return account.fetchArticlesAsync(.articleIDs(Set([articleID])), completion)
|
|
}
|
|
|
|
public func fetchUnreadArticles() -> Set<Article> {
|
|
return account.fetchArticles(.articleIDs(Set([articleID])))
|
|
}
|
|
|
|
public func fetchUnreadArticlesAsync(_ completion: @escaping ArticleSetBlock) {
|
|
return account.fetchArticlesAsync(.articleIDs(Set([articleID])), completion)
|
|
}
|
|
|
|
}
|