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-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
|
|
|
|
|
|
|
|
|
public let identifier: String
|
|
|
|
|
public let type: AccountType
|
|
|
|
|
public var nameForDisplay: String?
|
|
|
|
|
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 20:32:58 +02:00
|
|
|
|
init?(dataFolder: String, settingsFile: String, type: AccountType, identifier: String) {
|
2017-07-03 19:29:44 +02:00
|
|
|
|
|
|
|
|
|
self.identifier = identifier
|
|
|
|
|
self.type = type
|
|
|
|
|
self.settingsFile = settingsFile
|
|
|
|
|
self.dataFolder = dataFolder
|
|
|
|
|
self.hashValue = identifier.hashValue
|
2017-09-17 20:32:58 +02:00
|
|
|
|
|
|
|
|
|
switch type {
|
|
|
|
|
|
|
|
|
|
case onMyMac:
|
|
|
|
|
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 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
|
|
|
|
|
}
|
|
|
|
|
}
|