2017-07-03 19:29:44 +02:00
|
|
|
|
//
|
|
|
|
|
// Account.swift
|
|
|
|
|
// DataModel
|
|
|
|
|
//
|
|
|
|
|
// Created by Brent Simmons on 7/1/17.
|
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
import RSCore
|
2017-09-17 00:25:38 +02:00
|
|
|
|
import Data
|
2017-09-17 21:08:50 +02:00
|
|
|
|
import RSParser
|
2017-07-03 19:29:44 +02:00
|
|
|
|
|
|
|
|
|
public enum AccountType: Int {
|
|
|
|
|
|
|
|
|
|
// Raw values should not change since they’re stored on disk.
|
|
|
|
|
case onMyMac = 1
|
|
|
|
|
case feedly = 16
|
|
|
|
|
case feedbin = 17
|
|
|
|
|
case feedWrangler = 18
|
|
|
|
|
case newsBlur = 19
|
|
|
|
|
// TODO: more
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 20:32:58 +02:00
|
|
|
|
public final class Account: DisplayNameProvider, Hashable {
|
2017-07-03 19:29:44 +02:00
|
|
|
|
|
2017-09-17 21:08:50 +02:00
|
|
|
|
public let accountID: String
|
2017-07-03 19:29:44 +02:00
|
|
|
|
public let type: AccountType
|
2017-09-17 21:08:50 +02:00
|
|
|
|
public var nameForDisplay = ""
|
2017-07-03 19:29:44 +02:00
|
|
|
|
public let delegate: AccountDelegate
|
|
|
|
|
public let hashValue: Int
|
|
|
|
|
let settingsFile: String
|
|
|
|
|
let dataFolder: String
|
|
|
|
|
var topLevelObjects = [AnyObject]()
|
|
|
|
|
var feedIDDictionary = [String: Feed]()
|
|
|
|
|
var username: String?
|
2017-09-17 21:20:32 +02:00
|
|
|
|
var refreshInProgress = false
|
|
|
|
|
|
2017-09-17 21:08:50 +02:00
|
|
|
|
init?(dataFolder: String, settingsFile: String, type: AccountType, accountID: String) {
|
|
|
|
|
|
|
|
|
|
self.accountID = accountID
|
2017-07-03 19:29:44 +02:00
|
|
|
|
self.type = type
|
|
|
|
|
self.settingsFile = settingsFile
|
|
|
|
|
self.dataFolder = dataFolder
|
2017-09-17 21:08:50 +02:00
|
|
|
|
self.hashValue = accountID.hashValue
|
2017-09-17 20:32:58 +02:00
|
|
|
|
|
|
|
|
|
switch type {
|
|
|
|
|
|
2017-09-17 21:08:50 +02:00
|
|
|
|
case .onMyMac:
|
2017-09-17 20:32:58 +02:00
|
|
|
|
self.delegate = LocalAccountDelegate()
|
|
|
|
|
default:
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2017-07-03 19:29:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 20:32:58 +02:00
|
|
|
|
// MARK: - API
|
|
|
|
|
|
|
|
|
|
public func refreshAll() {
|
|
|
|
|
|
|
|
|
|
delegate.refreshAll(for: self)
|
2017-07-03 19:29:44 +02:00
|
|
|
|
}
|
2017-09-17 00:30:26 +02:00
|
|
|
|
|
2017-09-17 21:08:50 +02:00
|
|
|
|
func update(_ feed: Feed, with parsedFeed: ParsedFeed, _ completion: RSVoidCompletionBlock) {
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 21:54:08 +02:00
|
|
|
|
public func markArticles(_ articles: Set<Article>, statusKey: String, flag: Bool) {
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-18 01:30:45 +02:00
|
|
|
|
public func articleStatus(for article: Article) -> ArticleStatus? {
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 22:07:55 +02:00
|
|
|
|
public func ensureFolder(with name: String) -> Folder? {
|
|
|
|
|
|
|
|
|
|
return nil //TODO
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 20:32:58 +02:00
|
|
|
|
// MARK: - Equatable
|
2017-09-17 00:30:26 +02:00
|
|
|
|
|
2017-09-17 20:32:58 +02:00
|
|
|
|
public class func ==(lhs: Account, rhs: Account) -> Bool {
|
2017-09-17 00:30:26 +02:00
|
|
|
|
|
2017-09-17 20:32:58 +02:00
|
|
|
|
return lhs === rhs
|
2017-09-17 00:30:26 +02:00
|
|
|
|
}
|
2017-07-03 19:29:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extension Account: PlistProvider {
|
|
|
|
|
|
|
|
|
|
public func plist() -> AnyObject? {
|
|
|
|
|
return nil // TODO
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
|
extension Account: OPMLRepresentable {
|
|
|
|
|
|
|
|
|
|
public func OPMLString(indentLevel: Int) -> String {
|
|
|
|
|
|
|
|
|
|
var s = ""
|
|
|
|
|
for oneObject in topLevelObjects {
|
|
|
|
|
if let oneOPMLObject = oneObject as? OPMLRepresentable {
|
|
|
|
|
s += oneOPMLObject.OPMLString(indentLevel: indentLevel + 1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
}
|