2019-09-18 01:18:06 +02:00
|
|
|
//
|
|
|
|
// FeedlyAccountDelegate.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Kiel Gillard on 3/9/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Articles
|
|
|
|
import RSCore
|
|
|
|
import RSParser
|
|
|
|
import RSWeb
|
|
|
|
import SyncDatabase
|
|
|
|
import os.log
|
|
|
|
|
|
|
|
final class FeedlyAccountDelegate: AccountDelegate {
|
2019-09-20 18:34:31 +02:00
|
|
|
|
|
|
|
// TODO: Kiel, if you decide not to support OPML import you will have to disallow it in the behaviors
|
|
|
|
// See https://developer.feedly.com/v3/opml/
|
|
|
|
var behaviors: AccountBehaviors = [.disallowFeedInRootFolder]
|
2019-09-18 01:18:06 +02:00
|
|
|
|
|
|
|
let isOPMLImportSupported = false
|
|
|
|
|
|
|
|
var isOPMLImportInProgress = false
|
|
|
|
|
|
|
|
var server: String? {
|
|
|
|
return caller.server
|
|
|
|
}
|
|
|
|
|
2019-09-19 04:56:43 +02:00
|
|
|
var credentials: Credentials? {
|
|
|
|
didSet {
|
|
|
|
// https://developer.feedly.com/v3/developer/
|
|
|
|
if let devToken = ProcessInfo.processInfo.environment["FEEDLY_DEV_ACCESS_TOKEN"], !devToken.isEmpty {
|
2019-10-03 05:30:43 +02:00
|
|
|
caller.credentials = Credentials(type: .oauthAccessToken, username: "Developer", secret: devToken)
|
2019-09-19 04:56:43 +02:00
|
|
|
} else {
|
|
|
|
caller.credentials = credentials
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
|
|
|
|
var accountMetadata: AccountMetadata?
|
|
|
|
|
|
|
|
var refreshProgress = DownloadProgress(numberOfTasks: 0)
|
|
|
|
|
|
|
|
private let caller: FeedlyAPICaller
|
2019-09-19 04:56:43 +02:00
|
|
|
private let log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: "Feedly")
|
2019-10-15 09:31:24 +02:00
|
|
|
private let database: SyncDatabase
|
2019-09-18 01:18:06 +02:00
|
|
|
|
|
|
|
init(dataFolder: String, transport: Transport?, api: FeedlyAPICaller.API = .default) {
|
|
|
|
|
|
|
|
if let transport = transport {
|
|
|
|
caller = FeedlyAPICaller(transport: transport, api: api)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
let sessionConfiguration = URLSessionConfiguration.default
|
|
|
|
sessionConfiguration.requestCachePolicy = .reloadIgnoringLocalCacheData
|
|
|
|
sessionConfiguration.timeoutIntervalForRequest = 60.0
|
|
|
|
sessionConfiguration.httpShouldSetCookies = false
|
|
|
|
sessionConfiguration.httpCookieAcceptPolicy = .never
|
|
|
|
sessionConfiguration.httpMaximumConnectionsPerHost = 1
|
|
|
|
sessionConfiguration.httpCookieStorage = nil
|
|
|
|
sessionConfiguration.urlCache = nil
|
|
|
|
|
|
|
|
if let userAgentHeaders = UserAgent.headers() {
|
|
|
|
sessionConfiguration.httpAdditionalHeaders = userAgentHeaders
|
|
|
|
}
|
|
|
|
|
|
|
|
let session = URLSession(configuration: sessionConfiguration)
|
|
|
|
caller = FeedlyAPICaller(transport: session, api: api)
|
|
|
|
}
|
|
|
|
|
2019-10-15 09:31:24 +02:00
|
|
|
let databaseFilePath = (dataFolder as NSString).appendingPathComponent("Sync.sqlite3")
|
|
|
|
self.database = SyncDatabase(databaseFilePath: databaseFilePath)
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Account API
|
|
|
|
|
2019-09-19 04:56:43 +02:00
|
|
|
private var syncStrategy: FeedlySyncStrategy?
|
|
|
|
|
2019-09-18 01:18:06 +02:00
|
|
|
func refreshAll(for account: Account, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-09-19 04:56:43 +02:00
|
|
|
let date = Date()
|
|
|
|
let log = self.log
|
|
|
|
let progress = refreshProgress
|
|
|
|
progress.addToNumberOfTasksAndRemaining(1)
|
|
|
|
syncStrategy?.startSync { result in
|
|
|
|
os_log(.debug, log: log, "Sync took %.3f seconds", -date.timeIntervalSinceNow)
|
2019-10-03 13:23:49 +02:00
|
|
|
progress.completeTask()
|
|
|
|
completion(result)
|
2019-09-19 04:56:43 +02:00
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func sendArticleStatus(for account: Account, completion: @escaping (() -> Void)) {
|
2019-09-23 09:29:53 +02:00
|
|
|
// Ensure remote articles have the same status as they do locally.
|
2019-10-15 09:31:24 +02:00
|
|
|
let send = FeedlySendArticleStatusesOperation(database: database, caller: caller, log: log)
|
|
|
|
send.completionBlock = {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
completion()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
OperationQueue.main.addOperation(send)
|
2019-09-23 09:29:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempts to ensure local articles have the same status as they do remotely.
|
|
|
|
/// So if the user is using another client roughly simultaneously with this app,
|
|
|
|
/// this app does its part to ensure the articles have a consistent status between both.
|
|
|
|
///
|
|
|
|
/// Feedly has no API that allows the app to fetch the identifiers of unread articles only.
|
|
|
|
/// The only way to identify unread articles is to pull all of the article data,
|
|
|
|
/// which is effectively equivalent of a full refresh.
|
|
|
|
///
|
|
|
|
/// - Parameter account: The account whose articles have a remote status.
|
|
|
|
/// - Parameter completion: Call on the main queue.
|
2019-09-18 01:18:06 +02:00
|
|
|
func refreshArticleStatus(for account: Account, completion: @escaping (() -> Void)) {
|
2019-09-23 09:29:53 +02:00
|
|
|
refreshAll(for: account) { _ in
|
|
|
|
completion()
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func importOPML(for account: Account, opmlFile: URL, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-09-23 09:29:53 +02:00
|
|
|
let data: Data
|
|
|
|
|
|
|
|
do {
|
|
|
|
data = try Data(contentsOf: opmlFile)
|
|
|
|
} catch {
|
|
|
|
completion(.failure(error))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
os_log(.debug, log: log, "Begin importing OPML...")
|
|
|
|
isOPMLImportInProgress = true
|
|
|
|
refreshProgress.addToNumberOfTasksAndRemaining(1)
|
|
|
|
|
|
|
|
caller.importOpml(data) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
os_log(.debug, log: self.log, "Import OPML done.")
|
|
|
|
self.refreshProgress.completeTask()
|
|
|
|
self.isOPMLImportInProgress = false
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
completion(.success(()))
|
|
|
|
}
|
|
|
|
case .failure(let error):
|
|
|
|
os_log(.debug, log: self.log, "Import OPML failed.")
|
|
|
|
self.refreshProgress.completeTask()
|
|
|
|
self.isOPMLImportInProgress = false
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
let wrappedError = AccountError.wrappedError(error: error, account: account)
|
|
|
|
completion(.failure(wrappedError))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func addFolder(for account: Account, name: String, completion: @escaping (Result<Folder, Error>) -> Void) {
|
2019-10-09 10:06:59 +02:00
|
|
|
|
|
|
|
let progress = refreshProgress
|
|
|
|
progress.addToNumberOfTasksAndRemaining(1)
|
|
|
|
|
2019-09-27 10:13:27 +02:00
|
|
|
caller.createCollection(named: name) { result in
|
2019-10-09 10:06:59 +02:00
|
|
|
progress.completeTask()
|
|
|
|
|
2019-09-27 10:13:27 +02:00
|
|
|
switch result {
|
|
|
|
case .success(let collection):
|
|
|
|
if let folder = account.ensureFolder(with: collection.label) {
|
|
|
|
folder.externalID = collection.id
|
|
|
|
completion(.success(folder))
|
|
|
|
} else {
|
2019-10-09 09:38:12 +02:00
|
|
|
// Is the name empty? Or one of the global resource names?
|
|
|
|
completion(.failure(FeedlyAccountDelegateError.unableToAddFolder(name)))
|
2019-09-27 10:13:27 +02:00
|
|
|
}
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func renameFolder(for account: Account, with folder: Folder, to name: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-09-27 10:13:27 +02:00
|
|
|
guard let id = folder.externalID else {
|
2019-10-09 09:38:12 +02:00
|
|
|
return DispatchQueue.main.async {
|
|
|
|
completion(.failure(FeedlyAccountDelegateError.unableToRenameFolder(folder.nameForDisplay, name)))
|
|
|
|
}
|
2019-09-27 10:13:27 +02:00
|
|
|
}
|
2019-10-09 09:38:12 +02:00
|
|
|
|
|
|
|
let nameBefore = folder.name
|
|
|
|
|
2019-09-27 10:13:27 +02:00
|
|
|
caller.renameCollection(with: id, to: name) { result in
|
|
|
|
switch result {
|
|
|
|
case .success(let collection):
|
|
|
|
folder.name = collection.label
|
|
|
|
completion(.success(()))
|
|
|
|
case .failure(let error):
|
2019-10-09 09:38:12 +02:00
|
|
|
folder.name = nameBefore
|
2019-09-27 10:13:27 +02:00
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
2019-10-09 09:38:12 +02:00
|
|
|
|
|
|
|
folder.name = name
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func removeFolder(for account: Account, with folder: Folder, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-09-27 10:13:27 +02:00
|
|
|
guard let id = folder.externalID else {
|
2019-10-09 09:38:12 +02:00
|
|
|
return DispatchQueue.main.async {
|
|
|
|
completion(.failure(FeedlyAccountDelegateError.unableToRemoveFolder(folder.nameForDisplay)))
|
|
|
|
}
|
2019-09-27 10:13:27 +02:00
|
|
|
}
|
2019-10-09 09:38:12 +02:00
|
|
|
|
2019-10-09 10:06:59 +02:00
|
|
|
let progress = refreshProgress
|
|
|
|
progress.addToNumberOfTasksAndRemaining(1)
|
|
|
|
|
2019-09-27 10:13:27 +02:00
|
|
|
caller.deleteCollection(with: id) { result in
|
2019-10-09 10:06:59 +02:00
|
|
|
progress.completeTask()
|
|
|
|
|
2019-09-27 10:13:27 +02:00
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
account.removeFolder(folder)
|
|
|
|
completion(.success(()))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
var createFeedRequest: FeedlyAddFeedRequest?
|
2019-10-10 12:24:45 +02:00
|
|
|
|
2019-09-18 01:18:06 +02:00
|
|
|
func createFeed(for account: Account, url: String, name: String?, container: Container, completion: @escaping (Result<Feed, Error>) -> Void) {
|
2019-10-10 12:24:45 +02:00
|
|
|
|
2019-10-09 10:06:59 +02:00
|
|
|
let progress = refreshProgress
|
|
|
|
progress.addToNumberOfTasksAndRemaining(1)
|
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
let request = FeedlyAddFeedRequest(account: account, caller: caller, container: container, log: log)
|
2019-10-10 12:24:45 +02:00
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
self.createFeedRequest = request
|
2019-10-10 12:24:45 +02:00
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
request.addNewFeed(at: url, name: name) { [weak self] result in
|
2019-10-10 12:24:45 +02:00
|
|
|
progress.completeTask()
|
|
|
|
self?.createFeedRequest = nil
|
|
|
|
completion(result)
|
2019-10-09 09:38:12 +02:00
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func renameFeed(for account: Account, with feed: Feed, to name: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-10-09 09:38:12 +02:00
|
|
|
let folderCollectionIds = account.folders?.filter { $0.has(feed) }.compactMap { $0.externalID }
|
|
|
|
guard let collectionIds = folderCollectionIds, let collectionId = collectionIds.first else {
|
2019-10-11 11:32:21 +02:00
|
|
|
completion(.failure(FeedlyAccountDelegateError.unableToRenameFeed(feed.nameForDisplay, name)))
|
2019-10-09 09:38:12 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let feedId = FeedlyFeedResourceId(id: feed.feedID)
|
|
|
|
let editedNameBefore = feed.editedName
|
|
|
|
|
2019-10-09 10:06:59 +02:00
|
|
|
// Adding an existing feed updates it.
|
|
|
|
// Updating feed name in one folder/collection updates it for all folders/collections.
|
2019-10-09 09:38:12 +02:00
|
|
|
caller.addFeed(with: feedId, title: name, toCollectionWith: collectionId) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
completion(.success(()))
|
|
|
|
|
|
|
|
case .failure(let error):
|
|
|
|
feed.editedName = editedNameBefore
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// optimistically set the name
|
|
|
|
feed.editedName = name
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
var addFeedRequest: FeedlyAddFeedRequest?
|
|
|
|
|
|
|
|
func addFeed(for account: Account, with feed: Feed, to container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
|
|
|
|
let progress = refreshProgress
|
|
|
|
progress.addToNumberOfTasksAndRemaining(1)
|
|
|
|
|
|
|
|
let request = FeedlyAddFeedRequest(account: account, caller: caller, container: container, log: log)
|
2019-10-09 09:38:12 +02:00
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
self.addFeedRequest = request
|
2019-10-09 09:38:12 +02:00
|
|
|
|
2019-10-11 11:32:21 +02:00
|
|
|
request.add(existing: feed) { [weak self] result in
|
|
|
|
progress.completeTask()
|
|
|
|
|
|
|
|
self?.addFeedRequest = nil
|
|
|
|
|
2019-10-09 09:38:12 +02:00
|
|
|
switch result {
|
2019-10-11 11:32:21 +02:00
|
|
|
case .success:
|
2019-10-09 09:38:12 +02:00
|
|
|
completion(.success(()))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func removeFeed(for account: Account, with feed: Feed, from container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-10-09 09:38:12 +02:00
|
|
|
guard let folder = container as? Folder, let collectionId = folder.externalID else {
|
|
|
|
return DispatchQueue.main.async {
|
|
|
|
completion(.failure(FeedlyAccountDelegateError.unableToRemoveFeed(feed)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
caller.removeFeed(feed.feedID, fromCollectionWith: collectionId) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
completion(.success(()))
|
|
|
|
case .failure(let error):
|
|
|
|
folder.addFeed(feed)
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
folder.removeFeed(feed)
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func moveFeed(for account: Account, with feed: Feed, from: Container, to: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-10-09 09:38:12 +02:00
|
|
|
guard let from = from as? Folder, let to = to as? Folder else {
|
|
|
|
return DispatchQueue.main.async {
|
|
|
|
completion(.failure(FeedlyAccountDelegateError.addFeedChooseFolder))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addFeed(for: account, with: feed, to: to) { [weak self] addResult in
|
|
|
|
switch addResult {
|
|
|
|
// now that we have added the feed, remove it from the other collection
|
|
|
|
case .success:
|
|
|
|
self?.removeFeed(for: account, with: feed, from: from) { removeResult in
|
|
|
|
switch removeResult {
|
|
|
|
case .success:
|
|
|
|
completion(.success(()))
|
|
|
|
case .failure:
|
|
|
|
from.addFeed(feed)
|
|
|
|
completion(.failure(FeedlyAccountDelegateError.unableToMoveFeedBetweenFolders(feed, from, to)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case .failure(let error):
|
|
|
|
from.addFeed(feed)
|
|
|
|
to.removeFeed(feed)
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// optimistically move the feed, undoing as appropriate to the failure
|
|
|
|
from.removeFeed(feed)
|
|
|
|
to.addFeed(feed)
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func restoreFeed(for account: Account, feed: Feed, container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-10-09 10:42:12 +02:00
|
|
|
if let existingFeed = account.existingFeed(withURL: feed.url) {
|
|
|
|
account.addFeed(existingFeed, to: container) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
completion(.success(()))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
createFeed(for: account, url: feed.url, name: feed.editedName, container: container) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
completion(.success(()))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func restoreFolder(for account: Account, folder: Folder, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-10-09 10:44:52 +02:00
|
|
|
let group = DispatchGroup()
|
|
|
|
|
|
|
|
for feed in folder.topLevelFeeds {
|
|
|
|
|
|
|
|
folder.topLevelFeeds.remove(feed)
|
|
|
|
|
|
|
|
group.enter()
|
|
|
|
restoreFeed(for: account, feed: feed, container: folder) { result in
|
|
|
|
group.leave()
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
break
|
|
|
|
case .failure(let error):
|
|
|
|
os_log(.error, log: self.log, "Restore folder feed error: %@.", error.localizedDescription)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
group.notify(queue: .main) {
|
|
|
|
account.addFolder(folder)
|
|
|
|
completion(.success(()))
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func markArticles(for account: Account, articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool) -> Set<Article>? {
|
2019-09-19 04:56:43 +02:00
|
|
|
|
2019-10-15 09:31:24 +02:00
|
|
|
let syncStatuses = articles.map { article in
|
|
|
|
return SyncStatus(articleID: article.articleID, key: statusKey, flag: flag)
|
|
|
|
}
|
|
|
|
|
|
|
|
database.insertStatuses(syncStatuses)
|
|
|
|
os_log(.debug, log: log, "Marking %@ as %@.", articles.map { $0.title }, syncStatuses)
|
|
|
|
|
|
|
|
if database.selectPendingCount() > 100 {
|
|
|
|
sendArticleStatus(for: account) { }
|
|
|
|
}
|
2019-09-19 04:56:43 +02:00
|
|
|
|
2019-10-15 09:31:24 +02:00
|
|
|
return account.update(articles, statusKey: statusKey, flag: flag)
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
2019-09-23 09:29:53 +02:00
|
|
|
|
2019-09-18 01:18:06 +02:00
|
|
|
func accountDidInitialize(_ account: Account) {
|
|
|
|
credentials = try? account.retrieveCredentials(type: .oauthAccessToken)
|
2019-09-19 04:56:43 +02:00
|
|
|
|
2019-09-23 09:29:53 +02:00
|
|
|
syncStrategy = FeedlySyncStrategy(account: account,
|
|
|
|
caller: caller,
|
2019-10-15 09:31:24 +02:00
|
|
|
database: database,
|
2019-09-23 09:29:53 +02:00
|
|
|
log: log)
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func validateCredentials(transport: Transport, credentials: Credentials, endpoint: URL?, completion: @escaping (Result<Credentials?, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
}
|