142 lines
4.3 KiB
Swift
142 lines
4.3 KiB
Swift
|
//
|
||
|
// 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
|
||
|
}
|
||
|
|
||
|
var credentials: Credentials?
|
||
|
|
||
|
var accountMetadata: AccountMetadata?
|
||
|
|
||
|
var refreshProgress = DownloadProgress(numberOfTasks: 0)
|
||
|
|
||
|
private let database: SyncDatabase
|
||
|
private let caller: FeedlyAPICaller
|
||
|
|
||
|
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
|
||
|
|
||
|
func refreshAll(for account: Account, completion: @escaping (Result<Void, Error>) -> Void) {
|
||
|
fatalError()
|
||
|
}
|
||
|
|
||
|
func sendArticleStatus(for account: Account, completion: @escaping (() -> Void)) {
|
||
|
fatalError()
|
||
|
}
|
||
|
|
||
|
func refreshArticleStatus(for account: Account, completion: @escaping (() -> Void)) {
|
||
|
fatalError()
|
||
|
}
|
||
|
|
||
|
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>? {
|
||
|
fatalError()
|
||
|
}
|
||
|
|
||
|
func accountDidInitialize(_ account: Account) {
|
||
|
// accountMetadata = account.metadata
|
||
|
credentials = try? account.retrieveCredentials(type: .oauthAccessToken)
|
||
|
}
|
||
|
|
||
|
static func validateCredentials(transport: Transport, credentials: Credentials, endpoint: URL?, completion: @escaping (Result<Credentials?, Error>) -> Void) {
|
||
|
fatalError()
|
||
|
}
|
||
|
}
|