-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArticle.swift
256 lines (204 loc) · 7.73 KB
/
Article.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
//
// Article.swift
// RSSReader
//
// Created by Mitchell Cooper on 9/29/14.
// Copyright (c) 2014 Mitchell Cooper. All rights reserved.
//
import UIKit
private let veryOldDate = Date(timeIntervalSince1970: 0)
class Article: NSObject, Equatable, CustomStringConvertible {
// MARK: Notifications
struct Notifications {
static let Read = "ArticleReadNotification"
static let Unread = "ArticleUnreadNotification"
static let Saved = "ArticleSavedNotification"
static let Unsaved = "ArticleUnsavedNotification"
static let ThumbChanged = "ArticleThumbnailChangedNotification"
}
// initialize from feed
init(feed: Feed) {
self.feed = feed
}
// initialize from storage
convenience init(feed: Feed, storage: NSDictionary) {
self.init(feed: feed)
if let title = storage["title"] as? String {
self.title = title
}
if let string = storage["urlString"] as? String {
urlString = string
}
if let date = storage["publishDate"] as? Date {
publishDate = date
}
if let sum = storage["rawSummary"] as? String {
rawSummary = sum
}
if let id = storage["identifier"] as? String {
identifier = id
}
thumbImageFileName = storage["thumbImageFileName"] as? String
read = storage["read"] as? Bool ?? false
saved = storage["saved"] as? Bool ?? false
}
// MARK: Properties
// the article must belong to a feed.
// it's unowned because it should not hold a strong reference to it.
unowned let feed: Feed
// Article title, as defined in the feed
var title = "Article"
var attributedTitle: NSAttributedString {
return NSAttributedString(string: title, attributes: attr)
}
// title with only alphanumeric characters, used for sorting
lazy var titleForSorting: String = {
let removeChars = CharacterSet.alphanumerics.inverted
return "".join(self.title.components(separatedBy: removeChars))
}()
// article permalink
var urlString: String!
var url: URL {
return URL(string: urlString)!
}
// date article was published
// if not specified by feed, falls back to the date when first fetched
var publishDate: Date!
// when setting read, publish the notification
fileprivate var _read = false
var read: Bool {
set {
_read = newValue
rss.center.post(name: Notification.Name(rawValue: newValue ? Notifications.Read : Notifications.Unread), object: self)
}
get { return _read }
}
// when setting saved, publish the notification
fileprivate var _saved = false
var saved: Bool {
set {
_saved = newValue
rss.center.post(name: Notification.Name(rawValue: newValue ? Notifications.Saved : Notifications.Unsaved), object: self)
}
get { return _saved }
}
// true if the article is past expiration
// this can be dependent on a feed group, falling back to the default setting
var expired: Bool {
return settings.articleIsExpired(self)
}
// summary. caches without HTML tags.
var rawSummary = ""
// intitially a lazy var, but set later when feed fetched.
lazy var summary: String = {
WSLHTMLEntities.convertHTMLtoString(self.rawSummary.withoutHTMLTagsAndNewlines)?.trimmed ?? ""
}()
var attributedSummary: NSAttributedString {
return NSAttributedString(string: summary, attributes: attr)
}
// true if the summary is non-empty
var hasSummary: Bool { return !summary.isEmpty }
// Thumbnail image
var shouldFetchThumb = false
var thumbImageUrlString: String?
var thumbImageFileName: String?
var thumbImageData: Data?
lazy var thumbImage: UIImage? = {
if let data = self.thumbImageData {
return UIImage(data: data)
}
if var file = self.thumbImageFileName {
file = rss.manager.documents.appendingPathComponent(file)
if let data = try? Data(contentsOf: URL(fileURLWithPath: file)) {
self.thumbImageData = data
return UIImage(data: data)
}
}
return nil
}()
// best way to identify the article
// this is often equivalent to article's permalink
var identifier: String!
// MARK: Methods
// delete an article
var deleted = false
func disposeOf() {
rss.log("Disposing of article \(title)")
// remove from container
if let i = find(feed.articles, self) {
feed.articles.remove(at: i)
}
// add to deleted list
rss.manager.deletedArticleIDs.append(identifier)
deleted = true
}
// update an article with another one
func updateWithArticle(_ otherArticle: Article) {
title = otherArticle.title
urlString = otherArticle.urlString
publishDate = otherArticle.publishDate
rawSummary = otherArticle.rawSummary
}
// fetch the thumbnail image if possible
func fetchThumb() {
if thumbImageUrlString == nil || !shouldFetchThumb { return }
// send the request from the feed queue.
let request = URLRequest(url: URL(string: thumbImageUrlString!)!, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 5)
rss.activityLevel += 1
NSURLConnection.sendAsynchronousRequest(request, queue: rss.feedQueue) {
res, data, error in
rss.activityLevel--
// error.
if error != nil {
rss.log("There was an error loading the image: \(error)")
return
}
// create UIImage
if let image = UIImage(data: data) {
self.thumbImage = image
self.thumbImageData = data
// store in file
let file = self.identifier.fileNameSafe + "-thumb.png"
let path = rss.manager.documents.appendingPathComponent(file)
rss.log("Writing thumbnail to \(path)")
data.writeToFile(path, atomically: true)
self.thumbImageFileName = file
}
// notification
mainQueue {
rss.center.post(name: Notification.Name(rawValue: Notifications.ThumbChanged), object: self)
return
}
}
shouldFetchThumb = false
}
// printable description
override var description: String {
return "Article \(title)"
}
// MARK: Persistence
func forStorage() -> NSDictionary {
var storage: [NSString: AnyObject] = [
"title": title as AnyObject,
"urlString": urlString as AnyObject,
"publishDate": publishDate as AnyObject,
"rawSummary": rawSummary as AnyObject,
"identifier": identifier as AnyObject,
"read": read as AnyObject,
"saved": saved as AnyObject
]
if let file = thumbImageFileName {
storage["thumbImageFileName"] = file as AnyObject
}
return storage as NSDictionary
}
}
// articles are equatable by identifier.
func == (lhs: Article, rhs: Article) -> Bool {
return lhs.identifier == rhs.identifier
}
// common attributes used in summaries and titles
private let attr = [
NSFontAttributeName: UIFont.systemFont(ofSize: 16),
NSForegroundColorAttributeName: UIColor.white
]