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 {
|
|
|
|
|
|
|
|
// Collections are one-level deep.
|
|
|
|
let isSubfoldersSupported = false
|
|
|
|
|
|
|
|
// Feedly uses collections and streams. But it does have tags?
|
|
|
|
let isTagBasedSystem = false
|
|
|
|
|
|
|
|
// Could be true. See https://developer.feedly.com/v3/opml/
|
|
|
|
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 {
|
|
|
|
caller.credentials = Credentials(type: .oauthAccessToken, username: "", secret: devToken)
|
|
|
|
} else {
|
|
|
|
caller.credentials = credentials
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
|
|
|
|
var accountMetadata: AccountMetadata?
|
|
|
|
|
|
|
|
var refreshProgress = DownloadProgress(numberOfTasks: 0)
|
|
|
|
|
|
|
|
private let database: SyncDatabase
|
|
|
|
private let caller: FeedlyAPICaller
|
2019-09-19 04:56:43 +02:00
|
|
|
private let log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: "Feedly")
|
2019-09-18 01:18:06 +02:00
|
|
|
|
|
|
|
init(dataFolder: String, transport: Transport?, api: FeedlyAPICaller.API = .default) {
|
|
|
|
|
|
|
|
let databaseFilePath = (dataFolder as NSString).appendingPathComponent("Sync.sqlite3")
|
|
|
|
database = SyncDatabase(databaseFilePath: databaseFilePath)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
progress.completeTask()
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func sendArticleStatus(for account: Account, completion: @escaping (() -> Void)) {
|
2019-09-19 04:56:43 +02:00
|
|
|
os_log(.debug, log: log, "*** SKIPPING SEND ARTICLE STATUS ***")
|
|
|
|
completion()
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func refreshArticleStatus(for account: Account, completion: @escaping (() -> Void)) {
|
2019-09-19 04:56:43 +02:00
|
|
|
os_log(.debug, log: log, "*** SKIPPING REFRESH ARTICLE STATUS ***")
|
|
|
|
completion()
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func importOPML(for account: Account, opmlFile: URL, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func addFolder(for account: Account, name: String, completion: @escaping (Result<Folder, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func renameFolder(for account: Account, with folder: Folder, to name: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeFolder(for account: Account, with folder: Folder, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func createFeed(for account: Account, url: String, name: String?, container: Container, completion: @escaping (Result<Feed, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func renameFeed(for account: Account, with feed: Feed, to name: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func addFeed(for account: Account, with: Feed, to container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeFeed(for account: Account, with feed: Feed, from container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func moveFeed(for account: Account, with feed: Feed, from: Container, to: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func restoreFeed(for account: Account, feed: Feed, container: Container, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func restoreFolder(for account: Account, folder: Folder, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
|
|
|
|
func markArticles(for account: Account, articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool) -> Set<Article>? {
|
2019-09-19 04:56:43 +02:00
|
|
|
|
|
|
|
let log = self.log
|
|
|
|
|
|
|
|
switch statusKey {
|
|
|
|
case .read:
|
|
|
|
let ids = articles.map { $0.articleID }
|
|
|
|
caller.markAsRead(articleIds: ids) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
account.update(articles, statusKey: statusKey, flag: flag)
|
|
|
|
case .failure(let error):
|
|
|
|
os_log(.debug, log: log, "*** SKIPPING MARKING ARTICLES READ: %@ %@ ***", error as NSError, ids)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
os_log(.debug, log: log, "*** SKIPPING STATUS UPDATE FOR ARTICLES: %@ ***", articles)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
2019-09-19 04:56:43 +02:00
|
|
|
|
2019-09-18 01:18:06 +02:00
|
|
|
func accountDidInitialize(_ account: Account) {
|
|
|
|
// accountMetadata = account.metadata
|
|
|
|
credentials = try? account.retrieveCredentials(type: .oauthAccessToken)
|
2019-09-19 04:56:43 +02:00
|
|
|
|
|
|
|
syncStrategy = FeedlySyncStrategy(account: account, caller: caller, log: log)
|
|
|
|
|
|
|
|
//TODO: Figure out how other accounts get refreshed automatically.
|
|
|
|
refreshAll(for: account) { result in
|
|
|
|
print("sync after initialise did complete")
|
|
|
|
}
|
2019-09-18 01:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static func validateCredentials(transport: Transport, credentials: Credentials, endpoint: URL?, completion: @escaping (Result<Credentials?, Error>) -> Void) {
|
|
|
|
fatalError()
|
|
|
|
}
|
|
|
|
}
|