-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathActivityServiceRemote.swift
242 lines (205 loc) · 10.3 KB
/
ActivityServiceRemote.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
import Foundation
import WordPressShared
open class ActivityServiceRemote: ServiceRemoteWordPressComREST {
public enum ResponseError: Error {
case decodingFailure
}
private lazy var formatter: DateFormatter = {
let formatter = DateFormatter()
formatter.dateFormat = ("yyyy-MM-dd HH:mm:ss")
formatter.timeZone = NSTimeZone(forSecondsFromGMT: 0) as TimeZone
return formatter
}()
/// Retrieves activity events associated to a site.
///
/// - Parameters:
/// - siteID: The target site's ID.
/// - offset: The first N activities to be skipped in the returned array.
/// - count: Number of objects to retrieve.
/// - after: Only activies after the given Date will be returned
/// - before: Only activies before the given Date will be returned
/// - group: Array of strings of activity types, eg. post, attachment, user
/// - success: Closure to be executed on success
/// - failure: Closure to be executed on error.
///
/// - Returns: An array of activities and a boolean indicating if there's more activities to fetch.
///
open func getActivityForSite(_ siteID: Int,
offset: Int = 0,
count: Int,
after: Date? = nil,
before: Date? = nil,
group: [String] = [],
success: @escaping (_ activities: [Activity], _ hasMore: Bool) -> Void,
failure: @escaping (Error) -> Void) {
var path = URLComponents(string: "sites/\(siteID)/activity")
path?.queryItems = group.map { URLQueryItem(name: "group[]", value: $0) }
let pageNumber = (offset / count) + 1
path?.queryItems?.append(URLQueryItem(name: "number", value: "\(count)"))
path?.queryItems?.append(URLQueryItem(name: "page", value: "\(pageNumber)"))
if let after = after, let before = before,
let lastSecondOfBeforeDay = before.endOfDay() {
path?.queryItems?.append(URLQueryItem(name: "after", value: formatter.string(from: after)))
path?.queryItems?.append(URLQueryItem(name: "before", value: formatter.string(from: lastSecondOfBeforeDay)))
} else if let on = after ?? before {
path?.queryItems?.append(URLQueryItem(name: "on", value: formatter.string(from: on)))
}
guard let endpoint = path?.string else {
return
}
let finalPath = self.path(forEndpoint: endpoint, withVersion: ._2_0)
wordPressComRESTAPI.get(finalPath,
parameters: nil,
success: { response, _ in
do {
let (activities, totalItems) = try self.mapActivitiesResponse(response)
let hasMore = totalItems > pageNumber * (count + 1)
success(activities, hasMore)
} catch {
WPKitLogError("Error parsing activity response for site \(siteID)")
WPKitLogError("\(error)")
WPKitLogDebug("Full response: \(response)")
failure(error)
}
}, failure: { error, _ in
failure(error)
})
}
/// Retrieves activity groups associated with a site.
///
/// - Parameters:
/// - siteID: The target site's ID.
/// - after: Only activity groups after the given Date will be returned.
/// - before: Only activity groups before the given Date will be returned.
/// - success: Closure to be executed on success.
/// - failure: Closure to be executed on error.
///
/// - Returns: An array of available activity groups for a site.
///
open func getActivityGroupsForSite(_ siteID: Int,
after: Date? = nil,
before: Date? = nil,
success: @escaping (_ groups: [ActivityGroup]) -> Void,
failure: @escaping (Error) -> Void) {
let endpoint = "sites/\(siteID)/activity/count/group"
let path = self.path(forEndpoint: endpoint, withVersion: ._2_0)
var parameters: [String: AnyObject] = [:]
if let after = after, let before = before,
let lastSecondOfBeforeDay = before.endOfDay() {
parameters["after"] = formatter.string(from: after) as AnyObject
parameters["before"] = formatter.string(from: lastSecondOfBeforeDay) as AnyObject
} else if let on = after ?? before {
parameters["on"] = formatter.string(from: on) as AnyObject
}
wordPressComRESTAPI.get(path,
parameters: parameters,
success: { response, _ in
do {
let groups = try self.mapActivityGroupsResponse(response)
success(groups)
} catch {
WPKitLogError("Error parsing activity groups for site \(siteID)")
WPKitLogError("\(error)")
WPKitLogDebug("Full response: \(response)")
failure(error)
}
}, failure: { error, _ in
failure(error)
})
}
/// Retrieves the site current rewind state.
///
/// - Parameters:
/// - siteID: The target site's ID.
///
/// - Returns: The current rewind status for the site.
///
open func getRewindStatus(_ siteID: Int,
success: @escaping (RewindStatus) -> Void,
failure: @escaping (Error) -> Void) {
let endpoint = "sites/\(siteID)/rewind"
let path = self.path(forEndpoint: endpoint, withVersion: ._2_0)
wordPressComRESTAPI.get(path,
parameters: nil,
success: { response, _ in
guard let rewindStatus = response as? [String: AnyObject] else {
failure(ResponseError.decodingFailure)
return
}
do {
let status = try RewindStatus(dictionary: rewindStatus)
success(status)
} catch {
WPKitLogError("Error parsing rewind response for site \(siteID)")
WPKitLogError("\(error)")
WPKitLogDebug("Full response: \(response)")
failure(ResponseError.decodingFailure)
}
}, failure: { error, _ in
// FIXME: A hack to support free WPCom sites and Rewind.
// Should be obsolete as soon as the backend stops returning 412's for those sites.
guard error.castedToEndpointErrorWitCode(.preconditionFailure) != nil else {
success(RewindStatus(state: .unavailable))
return
}
failure(error)
return
})
}
}
private extension ActivityServiceRemote {
func mapActivitiesResponse(_ response: Any) throws -> ([Activity], Int) {
guard let json = response as? [String: AnyObject],
let totalItems = json["totalItems"] as? Int else {
throw ActivityServiceRemote.ResponseError.decodingFailure
}
guard totalItems > 0 else {
return ([], 0)
}
guard let current = json["current"] as? [String: AnyObject],
let orderedItems = current["orderedItems"] as? [[String: AnyObject]] else {
throw ActivityServiceRemote.ResponseError.decodingFailure
}
do {
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .supportMultipleDateFormats
let data = try JSONSerialization.data(withJSONObject: orderedItems, options: [])
let activities = try decoder.decode([Activity].self, from: data)
return (activities, totalItems)
} catch {
throw ActivityServiceRemote.ResponseError.decodingFailure
}
}
func mapActivityGroupsResponse(_ response: Any) throws -> ([ActivityGroup]) {
guard let json = response as? [String: AnyObject],
let totalItems = json["totalItems"] as? Int, totalItems > 0 else {
return []
}
guard let rawGroups = json["groups"] as? [String: AnyObject] else {
throw ActivityServiceRemote.ResponseError.decodingFailure
}
let groups: [ActivityGroup] = try rawGroups.map { (key, value) -> ActivityGroup in
guard let group = value as? [String: AnyObject] else {
throw ActivityServiceRemote.ResponseError.decodingFailure
}
return try ActivityGroup(key, dictionary: group)
}
return groups
}
}
private extension Error {
func castedToEndpointErrorWitCode(
_ code: WordPressComRestApiErrorCode
) -> WordPressComRestApiEndpointError? {
guard let apiError = self as? WordPressAPIError<WordPressComRestApiEndpointError> else {
return .none
}
guard case .endpointError(let endpointError) = apiError else {
return .none
}
guard endpointError.code == code else {
return .none
}
return endpointError
}
}