This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathNotificationModelController.swift
284 lines (255 loc) · 9.96 KB
/
NotificationModelController.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
//
// NotificationClient2.swift
// Freetime
//
// Created by Ryan Nystrom on 6/9/18.
// Copyright © 2018 Ryan Nystrom. All rights reserved.
//
import Foundation
import GitHubAPI
import StyledTextKit
// used to request states via graphQL
extension NotificationViewModel {
var stateAlias: (number: Int, key: String)? {
switch number {
case .hash, .release:
// commits and releases don't have states, always "merged"
return nil
case .number(let number):
// graphQL alias must be an alpha-numeric string and start w/ alpha
return (number, "k\(id)")
}
}
}
final class NotificationModelController {
let githubClient: GithubClient
init(githubClient: GithubClient) {
self.githubClient = githubClient
}
// Public API
static private let openOnReadKey = "com.freetime.NotificationClient.read-on-open"
static var readOnOpen: Bool {
return UserDefaults.standard.bool(forKey: openOnReadKey)
}
static func setReadOnOpen(open: Bool) {
UserDefaults.standard.set(open, forKey: openOnReadKey)
}
private func handle(
notifications: [V3Notification],
next: Int?,
width: CGFloat,
contentSizeCategory: UIContentSizeCategory,
completion: @escaping (Result<([NotificationViewModel], Int?)>) -> Void
) {
githubClient.badge.updateLocalNotificationCache(
notifications: notifications,
showAlert: false
)
CreateNotificationViewModels(
width: width,
contentSizeCategory: contentSizeCategory,
v3notifications: notifications
) { [weak self] in
self?.fetchStates(for: $0, page: next, completion: completion)
}
}
// https://developer.github.com/v3/activity/notifications/#list-your-notifications
func fetchNotifications(
repo: Repository? = nil,
all: Bool = false,
page: Int = 1,
width: CGFloat,
completion: @escaping (Result<([NotificationViewModel], Int?)>) -> Void
) {
let contentSizeCategory = UIContentSizeCategory.preferred
if let repo = repo {
githubClient.client.send(V3RepositoryNotificationRequest(
all: all,
owner: repo.owner,
repo: repo.name)
) { [weak self] result in
switch result {
case .success(let response):
self?.handle(
notifications: response.data,
next: response.next,
width: width,
contentSizeCategory: contentSizeCategory,
completion: completion
)
case .failure(let error):
completion(.error(error))
}
}
} else {
githubClient.client.send(V3NotificationRequest(all: all, page: page)) { [weak self] result in
switch result {
case .success(let response):
self?.handle(
notifications: response.data,
next: response.next,
width: width,
contentSizeCategory: contentSizeCategory,
completion: completion
)
case .failure(let error):
completion(.error(error))
}
}
}
}
private func fetchStates(
for notifications: [NotificationViewModel],
page: Int?,
completion: @escaping (Result<([NotificationViewModel], Int?)>) -> Void
) {
guard notifications.count > 0 else {
completion(.success((notifications, page)))
return
}
let content = "state comments{totalCount} viewerSubscription"
let notificationQueries: String = notifications.compactMap {
guard let alias = $0.stateAlias else { return nil }
return """
\(alias.key): repository(owner: "\($0.owner)", name: "\($0.repo)") { issueOrPullRequest(number: \(alias.number)) { ...on Issue {\(content)} ...on PullRequest {\(content)} } }
"""
}.joined(separator: " ")
let query = "query{\(notificationQueries)}"
let cache = githubClient.cache
githubClient.client.send(ManualGraphQLRequest(query: query)) { result in
let processedNotifications: [NotificationViewModel]
switch result {
case .success(let json):
var updatedNotifications = [NotificationViewModel]()
for notification in notifications {
if let alias = notification.stateAlias,
let result = json.data[alias.key] as? [String: Any],
let issueOrPullRequest = result["issueOrPullRequest"] as? [String: Any],
let stateString = issueOrPullRequest["state"] as? String,
let state = NotificationViewModel.State(rawValue: stateString),
let commentsJSON = issueOrPullRequest["comments"] as? [String: Any],
let commentCount = commentsJSON["totalCount"] as? Int,
let subscription = issueOrPullRequest["viewerSubscription"] as? String {
var newNotification = notification
newNotification.state = state
newNotification.comments = commentCount
newNotification.watching = subscription != "IGNORED"
updatedNotifications.append(newNotification)
} else {
updatedNotifications.append(notification)
}
}
processedNotifications = updatedNotifications
case .failure:
processedNotifications = notifications
}
cache.set(values: processedNotifications)
completion(.success((processedNotifications, page)))
}
}
func markAllNotifications(completion: @escaping (Bool) -> Void) {
githubClient.client.send(V3MarkNotificationsRequest()) { result in
switch result {
case .success: completion(true)
case .failure: completion(false)
}
}
}
func markRepoNotifications(
owner: String,
name: String,
completion: @escaping (Bool) -> Void
) {
githubClient.client.send(V3MarkRepositoryNotificationsRequest(owner: owner, repo: name)) { result in
switch result {
case .success: completion(true)
case .failure: completion(false)
}
}
}
func markNotificationRead(id: String) {
let cache = githubClient.cache
guard var model = cache.get(id: id) as NotificationViewModel?,
!model.read
else { return }
model.read = true
cache.set(value: model)
githubClient.client.send(V3MarkThreadsRequest(id: id)) { result in
switch result {
case .success: break
case .failure:
model.read = false
cache.set(value: model)
}
}
}
func toggleWatch(notification: NotificationViewModel) {
let cache = githubClient.cache
var model = notification
model.watching = !notification.watching
cache.set(value: model)
githubClient.client.send(V3SubscribeThreadRequest(id: model.v3id, ignore: !model.watching)) { result in
switch result {
case .success:
Haptic.triggerSelection()
case .failure:
Haptic.triggerNotification(.error)
cache.set(value: notification)
}
}
}
enum DashboardType {
case assigned
case created
case mentioned
}
func fetch(
for type: DashboardType,
page: Int,
width: CGFloat,
completion: @escaping (Result<([InboxDashboardModel], Int?)>) -> Void
) {
let contentSizeCategory = UIApplication.shared.preferredContentSizeCategory
let cache = githubClient.cache
let mapped: V3IssuesRequest.FilterType
switch type {
case .assigned: mapped = .assigned
case .mentioned: mapped = .mentioned
case .created: mapped = .created
}
// Seems important
githubClient.client.send(V3IssuesRequest(filter: mapped, page: page), completion: { result in
// iterate result data, convert to InboxDashboardModel
switch result {
case .failure(let error):
completion(.error(error))
case .success(let data):
let parsed: [InboxDashboardModel] = data.data.compactMap {
guard let state = NotificationViewModel.State(rawValue: $0.state.uppercased()) else {
return nil
}
let string = StyledTextBuilder(styledText: StyledText(
text: $0.title,
style: Styles.Text.body))
.build()
let text = StyledTextRenderer(
string: string,
contentSizeCategory: contentSizeCategory,
inset: InboxDashboardCell.inset
).warm(width: width)
return InboxDashboardModel(
owner: $0.repository.owner.login,
name: $0.repository.name,
number: $0.number,
date: $0.updatedAt,
text: text,
isPullRequest: $0.pullRequest != nil,
state: state
)
}
cache.set(values: parsed)
completion(.success((parsed, data.next)))
}
})
}
}