2017-07-02 02:22:19 +02:00
|
|
|
//
|
|
|
|
// Article.swift
|
2017-07-29 21:29:05 +02:00
|
|
|
// Data
|
2017-07-02 02:22:19 +02:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/1/17.
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
public struct Article: Hashable {
|
2017-07-02 02:22:19 +02:00
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
public let articleID: String // Unique database ID (possibly sync service ID)
|
|
|
|
public let accountID: String
|
2017-07-12 21:55:48 +02:00
|
|
|
public let feedID: String // Likely a URL, but not necessarily
|
|
|
|
public let uniqueID: String // Unique per feed (RSS guid, for example)
|
2017-09-05 02:10:02 +02:00
|
|
|
public let title: String?
|
|
|
|
public let contentHTML: String?
|
|
|
|
public let contentText: String?
|
|
|
|
public let url: String?
|
|
|
|
public let externalURL: String?
|
|
|
|
public let summary: String?
|
|
|
|
public let imageURL: String?
|
|
|
|
public let bannerImageURL: String?
|
|
|
|
public let datePublished: Date?
|
|
|
|
public let dateModified: Date?
|
|
|
|
public let authors: Set<Author>?
|
|
|
|
public let tags: Set<String>?
|
|
|
|
public let attachments: Set<Attachment>?
|
2017-09-18 21:59:42 +02:00
|
|
|
public let status: ArticleStatus
|
2017-07-03 19:29:44 +02:00
|
|
|
public let hashValue: Int
|
2017-07-02 02:22:19 +02:00
|
|
|
|
2017-09-22 17:06:06 +02:00
|
|
|
public init(accountID: String, articleID: String?, feedID: String, uniqueID: String, title: String?, contentHTML: String?, contentText: String?, url: String?, externalURL: String?, summary: String?, imageURL: String?, bannerImageURL: String?, datePublished: Date?, dateModified: Date?, authors: Set<Author>?, tags: Set<String>?, attachments: Set<Attachment>?, status: ArticleStatus) {
|
2017-07-11 06:47:27 +02:00
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
self.accountID = accountID
|
2017-07-12 21:55:48 +02:00
|
|
|
self.feedID = feedID
|
|
|
|
self.uniqueID = uniqueID
|
2017-07-02 02:22:19 +02:00
|
|
|
self.title = title
|
|
|
|
self.contentHTML = contentHTML
|
|
|
|
self.contentText = contentText
|
|
|
|
self.url = url
|
|
|
|
self.externalURL = externalURL
|
|
|
|
self.summary = summary
|
|
|
|
self.imageURL = imageURL
|
|
|
|
self.bannerImageURL = bannerImageURL
|
|
|
|
self.datePublished = datePublished
|
|
|
|
self.dateModified = dateModified
|
|
|
|
self.authors = authors
|
|
|
|
self.tags = tags
|
|
|
|
self.attachments = attachments
|
2017-09-18 21:59:42 +02:00
|
|
|
self.status = status
|
|
|
|
|
2017-08-21 06:23:17 +02:00
|
|
|
if let articleID = articleID {
|
|
|
|
self.articleID = articleID
|
2017-07-17 04:36:38 +02:00
|
|
|
}
|
|
|
|
else {
|
2017-09-19 07:00:35 +02:00
|
|
|
self.articleID = Article.calculatedArticleID(feedID: feedID, uniqueID: uniqueID)
|
2017-07-17 04:36:38 +02:00
|
|
|
}
|
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
self.hashValue = accountID.hashValue ^ self.articleID.hashValue
|
2017-07-02 02:22:19 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 07:00:35 +02:00
|
|
|
public static func calculatedArticleID(feedID: String, uniqueID: String) -> String {
|
|
|
|
|
|
|
|
return databaseIDWithString("\(feedID) \(uniqueID)")
|
|
|
|
}
|
|
|
|
|
2017-09-08 05:51:51 +02:00
|
|
|
public static func ==(lhs: Article, rhs: Article) -> Bool {
|
2017-07-02 02:22:19 +02:00
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
return lhs.hashValue == rhs.hashValue && lhs.articleID == rhs.articleID && lhs.accountID == rhs.accountID && lhs.feedID == rhs.feedID && lhs.uniqueID == rhs.uniqueID && lhs.title == rhs.title && lhs.contentHTML == rhs.contentHTML && lhs.url == rhs.url && lhs.externalURL == rhs.externalURL && lhs.summary == rhs.summary && lhs.imageURL == rhs.imageURL && lhs.bannerImageURL == rhs.bannerImageURL && lhs.datePublished == rhs.datePublished && lhs.authors == rhs.authors && lhs.tags == rhs.tags && lhs.attachments == rhs.attachments
|
2017-07-02 02:22:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
|