2017-07-02 02:22:19 +02:00
|
|
|
|
//
|
|
|
|
|
// Feed.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 21:08:50 +02:00
|
|
|
|
import RSWeb
|
2018-07-28 21:16:14 +02:00
|
|
|
|
import Articles
|
2018-09-14 07:25:10 +02:00
|
|
|
|
import RSDatabase
|
2017-07-02 02:22:19 +02:00
|
|
|
|
|
2017-09-26 22:26:28 +02:00
|
|
|
|
public final class Feed: DisplayNameProvider, UnreadCountProvider, Hashable {
|
2017-07-02 02:22:19 +02:00
|
|
|
|
|
2017-09-08 05:51:51 +02:00
|
|
|
|
public let accountID: String
|
2017-07-02 02:22:19 +02:00
|
|
|
|
public let url: String
|
|
|
|
|
public let feedID: String
|
2018-09-02 21:14:04 +02:00
|
|
|
|
|
|
|
|
|
private var _homePageURL: String?
|
|
|
|
|
public var homePageURL: String? {
|
|
|
|
|
get {
|
|
|
|
|
return _homePageURL
|
|
|
|
|
}
|
|
|
|
|
set {
|
|
|
|
|
if let url = newValue {
|
|
|
|
|
_homePageURL = url.rs_normalizedURL()
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
_homePageURL = nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-20 07:37:59 +01:00
|
|
|
|
public var iconURL: String?
|
2017-11-20 06:24:19 +01:00
|
|
|
|
public var faviconURL: String?
|
2017-07-02 02:22:19 +02:00
|
|
|
|
public var name: String?
|
2017-12-02 23:20:58 +01:00
|
|
|
|
public var authors: Set<Author>?
|
2018-01-24 06:49:33 +01:00
|
|
|
|
|
|
|
|
|
public var editedName: String? {
|
|
|
|
|
didSet {
|
|
|
|
|
postDisplayNameDidChangeNotification()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 21:08:50 +02:00
|
|
|
|
public var conditionalGetInfo: HTTPConditionalGetInfo?
|
|
|
|
|
public var contentHash: String?
|
2017-09-17 00:25:38 +02:00
|
|
|
|
|
|
|
|
|
// MARK: - DisplayNameProvider
|
|
|
|
|
|
2017-07-02 02:22:19 +02:00
|
|
|
|
public var nameForDisplay: String {
|
2018-02-14 22:14:25 +01:00
|
|
|
|
if let s = editedName, !s.isEmpty {
|
|
|
|
|
return s
|
2017-07-02 02:22:19 +02:00
|
|
|
|
}
|
2018-02-14 22:14:25 +01:00
|
|
|
|
if let s = name, !s.isEmpty {
|
|
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
return NSLocalizedString("Untitled", comment: "Feed name")
|
2017-07-02 02:22:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
|
// MARK: - UnreadCountProvider
|
2017-07-03 19:29:44 +02:00
|
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
|
public var unreadCount = 0 {
|
|
|
|
|
didSet {
|
|
|
|
|
if unreadCount != oldValue {
|
|
|
|
|
postUnreadCountDidChangeNotification()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-14 07:25:10 +02:00
|
|
|
|
private lazy var settingsTable: ODBRawValueTable? = {
|
|
|
|
|
return account?.settingsTableForFeed(feedID: feedID)
|
|
|
|
|
}()
|
|
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
|
// MARK: - Init
|
|
|
|
|
|
2017-09-08 05:51:51 +02:00
|
|
|
|
public init(accountID: String, url: String, feedID: String) {
|
2017-07-02 02:22:19 +02:00
|
|
|
|
|
2017-09-08 05:51:51 +02:00
|
|
|
|
self.accountID = accountID
|
2017-07-02 02:22:19 +02:00
|
|
|
|
self.url = url
|
|
|
|
|
self.feedID = feedID
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-26 22:26:28 +02:00
|
|
|
|
// MARK: - Disk Dictionary
|
|
|
|
|
|
2017-09-28 22:16:47 +02:00
|
|
|
|
private struct Key {
|
2017-09-26 22:26:28 +02:00
|
|
|
|
static let url = "url"
|
|
|
|
|
static let feedID = "feedID"
|
|
|
|
|
static let homePageURL = "homePageURL"
|
2017-11-20 07:37:59 +01:00
|
|
|
|
static let iconURL = "iconURL"
|
2017-11-20 06:24:19 +01:00
|
|
|
|
static let faviconURL = "faviconURL"
|
2017-09-26 22:26:28 +02:00
|
|
|
|
static let name = "name"
|
|
|
|
|
static let editedName = "editedName"
|
2017-12-02 23:20:58 +01:00
|
|
|
|
static let authors = "authors"
|
2017-09-26 22:26:28 +02:00
|
|
|
|
static let conditionalGetInfo = "conditionalGetInfo"
|
|
|
|
|
static let contentHash = "contentHash"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
convenience public init?(accountID: String, dictionary: [String: Any]) {
|
|
|
|
|
|
2017-10-06 06:08:27 +02:00
|
|
|
|
guard let url = dictionary[Key.url] as? String else {
|
2017-09-26 22:26:28 +02:00
|
|
|
|
return nil
|
|
|
|
|
}
|
2017-10-06 06:08:27 +02:00
|
|
|
|
let feedID = dictionary[Key.feedID] as? String ?? url
|
|
|
|
|
|
2017-09-26 22:26:28 +02:00
|
|
|
|
self.init(accountID: accountID, url: url, feedID: feedID)
|
2018-09-02 21:14:04 +02:00
|
|
|
|
self.homePageURL = dictionary[Key.homePageURL] as? String
|
2017-11-20 07:37:59 +01:00
|
|
|
|
self.iconURL = dictionary[Key.iconURL] as? String
|
2017-11-20 06:24:19 +01:00
|
|
|
|
self.faviconURL = dictionary[Key.faviconURL] as? String
|
2017-09-26 22:26:28 +02:00
|
|
|
|
self.name = dictionary[Key.name] as? String
|
|
|
|
|
self.editedName = dictionary[Key.editedName] as? String
|
|
|
|
|
self.contentHash = dictionary[Key.contentHash] as? String
|
|
|
|
|
|
|
|
|
|
if let conditionalGetInfoDictionary = dictionary[Key.conditionalGetInfo] as? [String: String] {
|
|
|
|
|
self.conditionalGetInfo = HTTPConditionalGetInfo(dictionary: conditionalGetInfoDictionary)
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-02 23:20:58 +01:00
|
|
|
|
if let authorsDiskArray = dictionary[Key.authors] as? [[String: Any]] {
|
|
|
|
|
self.authors = Author.authorsWithDiskArray(authorsDiskArray)
|
|
|
|
|
}
|
2017-09-26 22:26:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-28 22:16:47 +02:00
|
|
|
|
public static func isFeedDictionary(_ d: [String: Any]) -> Bool {
|
|
|
|
|
|
|
|
|
|
return d[Key.url] != nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-26 22:26:28 +02:00
|
|
|
|
public var dictionary: [String: Any] {
|
2018-02-14 22:14:25 +01:00
|
|
|
|
var d = [String: Any]()
|
|
|
|
|
|
|
|
|
|
d[Key.url] = url
|
|
|
|
|
|
|
|
|
|
// feedID is not repeated when it’s the same as url
|
|
|
|
|
if (feedID != url) {
|
|
|
|
|
d[Key.feedID] = feedID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let homePageURL = homePageURL {
|
|
|
|
|
d[Key.homePageURL] = homePageURL
|
|
|
|
|
}
|
|
|
|
|
if let iconURL = iconURL {
|
|
|
|
|
d[Key.iconURL] = iconURL
|
|
|
|
|
}
|
|
|
|
|
if let faviconURL = faviconURL {
|
|
|
|
|
d[Key.faviconURL] = faviconURL
|
2017-09-26 22:26:28 +02:00
|
|
|
|
}
|
2018-02-14 22:14:25 +01:00
|
|
|
|
if let name = name {
|
|
|
|
|
d[Key.name] = name
|
|
|
|
|
}
|
|
|
|
|
if let editedName = editedName {
|
|
|
|
|
d[Key.editedName] = editedName
|
|
|
|
|
}
|
|
|
|
|
if let authorsArray = authors?.diskArray() {
|
|
|
|
|
d[Key.authors] = authorsArray
|
|
|
|
|
}
|
|
|
|
|
if let contentHash = contentHash {
|
|
|
|
|
d[Key.contentHash] = contentHash
|
|
|
|
|
}
|
|
|
|
|
if let conditionalGetInfo = conditionalGetInfo {
|
|
|
|
|
d[Key.conditionalGetInfo] = conditionalGetInfo.dictionary
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return d
|
2017-09-26 22:26:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:13:15 +01:00
|
|
|
|
// MARK: - Debug
|
|
|
|
|
|
|
|
|
|
public func debugDropConditionalGetInfo() {
|
|
|
|
|
|
|
|
|
|
conditionalGetInfo = nil
|
|
|
|
|
contentHash = nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-25 20:54:58 +02:00
|
|
|
|
// MARK: - Hashable
|
|
|
|
|
|
|
|
|
|
public func hash(into hasher: inout Hasher) {
|
|
|
|
|
hasher.combine(feedID)
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:13:15 +01:00
|
|
|
|
// MARK: - Equatable
|
|
|
|
|
|
2017-07-02 02:22:19 +02:00
|
|
|
|
public class func ==(lhs: Feed, rhs: Feed) -> Bool {
|
|
|
|
|
|
|
|
|
|
return lhs === rhs
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
|
// MARK: - OPMLRepresentable
|
|
|
|
|
|
|
|
|
|
extension Feed: OPMLRepresentable {
|
|
|
|
|
|
|
|
|
|
public func OPMLString(indentLevel: Int) -> String {
|
|
|
|
|
|
|
|
|
|
let escapedName = nameForDisplay.rs_stringByEscapingSpecialXMLCharacters()
|
|
|
|
|
var escapedHomePageURL = ""
|
|
|
|
|
if let homePageURL = homePageURL {
|
|
|
|
|
escapedHomePageURL = homePageURL.rs_stringByEscapingSpecialXMLCharacters()
|
|
|
|
|
}
|
|
|
|
|
let escapedFeedURL = url.rs_stringByEscapingSpecialXMLCharacters()
|
|
|
|
|
|
|
|
|
|
var s = "<outline text=\"\(escapedName)\" title=\"\(escapedName)\" description=\"\" type=\"rss\" version=\"RSS\" htmlUrl=\"\(escapedHomePageURL)\" xmlUrl=\"\(escapedFeedURL)\"/>\n"
|
|
|
|
|
s = s.rs_string(byPrependingNumberOfTabs: indentLevel)
|
|
|
|
|
|
|
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-28 21:16:14 +02:00
|
|
|
|
extension Set where Element == Feed {
|
|
|
|
|
|
|
|
|
|
func feedIDs() -> Set<String> {
|
|
|
|
|
|
|
|
|
|
return Set<String>(map { $0.feedID })
|
|
|
|
|
}
|
|
|
|
|
}
|