NetNewsWire/Frameworks/Account/Account.swift

117 lines
2.4 KiB
Swift
Raw Normal View History

//
// Account.swift
// DataModel
//
// Created by Brent Simmons on 7/1/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
import Foundation
import RSCore
import Data
2017-09-17 21:08:50 +02:00
import RSParser
2017-09-18 02:03:58 +02:00
import Database
public enum AccountType: Int {
// Raw values should not change since theyre 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-09-17 21:08:50 +02:00
public let accountID: String
public let type: AccountType
2017-09-17 21:08:50 +02:00
public var nameForDisplay = ""
public let delegate: AccountDelegate
public let hashValue: Int
let settingsFile: String
let dataFolder: String
2017-09-18 02:03:58 +02:00
let database: Database
var topLevelObjects = [AnyObject]()
var feedIDDictionary = [String: Feed]()
var username: String?
var refreshInProgress = false
2017-09-17 21:08:50 +02:00
init?(dataFolder: String, settingsFile: String, type: AccountType, accountID: String) {
2017-09-17 20:32:58 +02:00
switch type {
2017-09-18 02:03:58 +02:00
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-09-18 02:03:58 +02:00
self.accountID = accountID
self.type = type
self.settingsFile = settingsFile
self.dataFolder = dataFolder
self.hashValue = accountID.hashValue
let databaseFilePath = (dataFolder as NSString).appendingPathComponent("DB.sqlite3")
self.database = Database(databaseFilePath: databaseFilePath, accountID: accountID)
}
2017-09-17 20:32:58 +02:00
// MARK: - API
public func refreshAll() {
delegate.refreshAll(for: self)
}
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) {
database.mark(articles, statusKey: statusKey, flag: flag)
2017-09-18 01:30:45 +02:00
}
2017-09-17 22:07:55 +02:00
public func ensureFolder(with name: String) -> Folder? {
return nil //TODO
}
public func importOPML(_ opmlDocument: RSOPMLDocument) {
// TODO
}
2017-09-17 20:32:58 +02:00
// MARK: - Equatable
2017-09-17 20:32:58 +02:00
public class func ==(lhs: Account, rhs: Account) -> Bool {
2017-09-17 20:32:58 +02:00
return lhs === rhs
}
}
extension Account: PlistProvider {
public func plist() -> AnyObject? {
return nil // TODO
}
}
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
}
}