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 00:25:38 +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
|
|
|
|
public var homePageURL: String?
|
|
|
|
public var name: String?
|
|
|
|
public var editedName: String?
|
2017-09-10 03:46:58 +02:00
|
|
|
public var accountInfo: AccountInfo? //If account needs to store more data
|
2017-07-03 19:29:44 +02:00
|
|
|
public let hashValue: Int
|
2017-09-17 00:25:38 +02:00
|
|
|
|
|
|
|
// MARK: - DisplayNameProvider
|
|
|
|
|
2017-07-02 02:22:19 +02:00
|
|
|
public var nameForDisplay: String {
|
|
|
|
get {
|
|
|
|
return (editedName ?? name) ?? NSLocalizedString("Untitled", comment: "Feed name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-08 05:51:51 +02:00
|
|
|
self.hashValue = accountID.hashValue ^ url.hashValue ^ feedID.hashValue
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|