This repository was archived by the owner on Sep 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCommentServiceRemoteREST.m
More file actions
538 lines (475 loc) · 22.2 KB
/
CommentServiceRemoteREST.m
File metadata and controls
538 lines (475 loc) · 22.2 KB
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
#import "CommentServiceRemoteREST.h"
#import "WPKit-Swift.h"
#import "RemoteComment.h"
#import "RemoteUser.h"
@import NSObject_SafeExpectations;
@import WordPressShared;
@implementation CommentServiceRemoteREST
#pragma mark Public methods
#pragma mark - Blog-centric methods
- (void)getCommentsWithMaximumCount:(NSInteger)maximumComments
success:(void (^)(NSArray *comments))success
failure:(void (^)(NSError *error))failure
{
[self getCommentsWithMaximumCount:maximumComments options:nil success:success failure:failure];
}
- (void)getCommentsWithMaximumCount:(NSInteger)maximumComments
options:(NSDictionary *)options
success:(void (^)(NSArray *posts))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments", self.siteID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSMutableDictionary *parameters = [NSMutableDictionary dictionaryWithDictionary:@{
@"force": @"wpcom", // Force fetching data from shadow site on Jetpack sites
@"number": @(maximumComments)
}];
if (options) {
[parameters addEntriesFromDictionary:options];
}
NSNumber *statusFilter = [parameters numberForKey:@"status"];
[parameters removeObjectForKey:@"status"];
parameters[@"status"] = [self parameterForCommentStatus:statusFilter];
[self.wordPressComRESTAPI get:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success([self remoteCommentsFromJSONArray:responseObject[@"comments"]]);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (NSString *)parameterForCommentStatus:(NSNumber *)status
{
switch (status.intValue) {
case CommentStatusFilterUnapproved:
return @"unapproved";
break;
case CommentStatusFilterApproved:
return @"approved";
break;
case CommentStatusFilterTrash:
return @"trash";
break;
case CommentStatusFilterSpam:
return @"spam";
break;
default:
return @"all";
break;
}
}
- (void)getCommentWithID:(NSNumber *)commentID
success:(void (^)(RemoteComment *comment))success
failure:(void (^)(NSError * error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
[self.wordPressComRESTAPI get:requestUrl
parameters:nil
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
RemoteComment *comment = [self remoteCommentFromJSONDictionary:responseObject];
if (success) {
success(comment);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)createComment:(RemoteComment *)comment
success:(void (^)(RemoteComment *comment))success
failure:(void (^)(NSError *))failure
{
NSString *path;
if (comment.parentID) {
path = [NSString stringWithFormat:@"sites/%@/comments/%@/replies/new", self.siteID, comment.parentID];
} else {
path = [NSString stringWithFormat:@"sites/%@/posts/%@/replies/new", self.siteID, comment.postID];
}
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"content": comment.content,
@"context": @"edit",
};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
// TODO: validate response
RemoteComment *comment = [self remoteCommentFromJSONDictionary:responseObject];
if (success) {
success(comment);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)updateComment:(RemoteComment *)comment
success:(void (^)(RemoteComment *comment))success
failure:(void (^)(NSError *))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@", self.siteID, comment.commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"content": comment.content,
@"author": comment.author,
@"author_email": comment.authorEmail,
@"author_url": comment.authorUrl,
@"context": @"edit",
};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
// TODO: validate response
RemoteComment *comment = [self remoteCommentFromJSONDictionary:responseObject];
if (success) {
success(comment);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)moderateComment:(RemoteComment *)comment
success:(void (^)(RemoteComment *))success
failure:(void (^)(NSError *))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@", self.siteID, comment.commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"status": [self remoteStatusWithStatus:comment.status],
@"context": @"edit",
};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
// TODO: validate response
RemoteComment *comment = [self remoteCommentFromJSONDictionary:responseObject];
if (success) {
success(comment);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)trashComment:(RemoteComment *)comment
success:(void (^)(void))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@/delete", self.siteID, comment.commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
[self.wordPressComRESTAPI post:requestUrl
parameters:nil
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success();
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
#pragma mark Post-centric methods
- (void)syncHierarchicalCommentsForPost:(NSNumber *)postID
page:(NSUInteger)page
number:(NSUInteger)number
success:(void (^)(NSArray *comments, NSNumber *found))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/posts/%@/replies?order=ASC&hierarchical=1&page=%lu&number=%lu", self.siteID, postID, (unsigned long)page, (unsigned long)number];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"force": @"wpcom" // Force fetching data from shadow site on Jetpack sites
};
[self.wordPressComRESTAPI get:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
NSDictionary *dict = (NSDictionary *)responseObject;
NSArray *comments = [self remoteCommentsFromJSONArray:[dict arrayForKey:@"comments"]];
NSNumber *found = [responseObject numberForKey:@"found"] ?: @0;
success(comments, found);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
#pragma mark - Public Methods
- (void)updateCommentWithID:(NSNumber *)commentID
content:(NSString *)content
success:(void (^)(void))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"content": content,
@"context": @"edit",
};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success();
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)replyToPostWithID:(NSNumber *)postID
content:(NSString *)content
success:(void (^)(RemoteComment *comment))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/posts/%@/replies/new", self.siteID, postID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{@"content": content};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
NSDictionary *commentDict = (NSDictionary *)responseObject;
RemoteComment *comment = [self remoteCommentFromJSONDictionary:commentDict];
success(comment);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)replyToCommentWithID:(NSNumber *)commentID
content:(NSString *)content
success:(void (^)(RemoteComment *comment))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@/replies/new", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"content": content,
@"context": @"edit",
};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
NSDictionary *commentDict = (NSDictionary *)responseObject;
RemoteComment *comment = [self remoteCommentFromJSONDictionary:commentDict];
success(comment);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)moderateCommentWithID:(NSNumber *)commentID
status:(NSString *)status
success:(void (^)(void))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
NSDictionary *parameters = @{
@"status" : status,
@"context" : @"edit",
};
[self.wordPressComRESTAPI post:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success();
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)trashCommentWithID:(NSNumber *)commentID
success:(void (^)(void))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@/delete", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
[self.wordPressComRESTAPI post:requestUrl
parameters:nil
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success();
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)likeCommentWithID:(NSNumber *)commentID
success:(void (^)(void))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@/likes/new", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
[self.wordPressComRESTAPI post:requestUrl
parameters:nil
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success();
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)unlikeCommentWithID:(NSNumber *)commentID
success:(void (^)(void))success
failure:(void (^)(NSError *error))failure
{
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@/likes/mine/delete", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_1];
[self.wordPressComRESTAPI post:requestUrl
parameters:nil
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
success();
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
- (void)getLikesForCommentID:(NSNumber *)commentID
count:(NSNumber *)count
before:(NSString *)before
excludeUserIDs:(NSArray<NSNumber *> *)excludeUserIDs
success:(void (^)(NSArray<RemoteLikeUser *> * _Nonnull users, NSNumber *found))success
failure:(void (^)(NSError *))failure
{
NSParameterAssert(commentID);
NSString *path = [NSString stringWithFormat:@"sites/%@/comments/%@/likes", self.siteID, commentID];
NSString *requestUrl = [self pathForEndpoint:path
withVersion:WordPressComRESTAPIVersion_1_2];
NSNumber *siteID = self.siteID;
// If no count provided, default to endpoint max.
if (count == 0) {
count = @90;
}
NSMutableDictionary *parameters = [NSMutableDictionary dictionaryWithDictionary:@{ @"number": count }];
if (before) {
parameters[@"before"] = before;
}
if (excludeUserIDs) {
parameters[@"exclude"] = excludeUserIDs;
}
[self.wordPressComRESTAPI get:requestUrl
parameters:parameters
success:^(id responseObject, NSHTTPURLResponse *httpResponse) {
if (success) {
NSArray *jsonUsers = responseObject[@"likes"] ?: @[];
NSArray<RemoteLikeUser *> *users = [self remoteUsersFromJSONArray:jsonUsers commentID:commentID siteID:siteID];
NSNumber *found = [responseObject numberForKey:@"found"] ?: @0;
success(users, found);
}
} failure:^(NSError *error, NSHTTPURLResponse *httpResponse) {
if (failure) {
failure(error);
}
}];
}
#pragma mark - Private methods
- (NSArray *)remoteCommentsFromJSONArray:(NSArray *)jsonComments
{
return [jsonComments wp_map:^id(NSDictionary *jsonComment) {
return [self remoteCommentFromJSONDictionary:jsonComment];
}];
}
- (RemoteComment *)remoteCommentFromJSONDictionary:(NSDictionary *)jsonDictionary
{
RemoteComment *comment = [RemoteComment new];
comment.authorID = [jsonDictionary numberForKeyPath:@"author.ID"];
comment.author = jsonDictionary[@"author"][@"name"];
// Email might be `false`, turn into `nil`
comment.authorEmail = [jsonDictionary[@"author"] stringForKey:@"email"];
comment.authorUrl = jsonDictionary[@"author"][@"URL"];
comment.authorAvatarURL = [jsonDictionary stringForKeyPath:@"author.avatar_URL"];
comment.authorIP = [jsonDictionary stringForKeyPath:@"author.ip_address"];
comment.commentID = jsonDictionary[@"ID"];
comment.date = [NSDate dateWithWordPressComJSONString:jsonDictionary[@"date"]];
comment.link = jsonDictionary[@"URL"];
comment.parentID = [jsonDictionary numberForKeyPath:@"parent.ID"];
comment.postID = [jsonDictionary numberForKeyPath:@"post.ID"];
comment.postTitle = [jsonDictionary stringForKeyPath:@"post.title"];
comment.status = [self statusWithRemoteStatus:jsonDictionary[@"status"]];
comment.type = jsonDictionary[@"type"];
comment.isLiked = [[jsonDictionary numberForKey:@"i_like"] boolValue];
comment.likeCount = [jsonDictionary numberForKey:@"like_count"];
comment.canModerate = [[jsonDictionary numberForKey:@"can_moderate"] boolValue];
comment.content = jsonDictionary[@"content"];
comment.rawContent = jsonDictionary[@"raw_content"];
return comment;
}
- (NSString *)statusWithRemoteStatus:(NSString *)remoteStatus
{
NSString *status = remoteStatus;
if ([status isEqualToString:@"unapproved"]) {
status = @"hold";
} else if ([status isEqualToString:@"approved"]) {
status = @"approve";
}
return status;
}
- (NSString *)remoteStatusWithStatus:(NSString *)status
{
NSString *remoteStatus = status;
if ([remoteStatus isEqualToString:@"hold"]) {
remoteStatus = @"unapproved";
} else if ([remoteStatus isEqualToString:@"approve"]) {
remoteStatus = @"approved";
}
return remoteStatus;
}
/**
Returns an array of RemoteLikeUser based on provided JSON representation of users.
@param jsonUsers An array containing JSON representations of users.
@param commentID ID of the Comment the users liked.
@param siteID ID of the Comment's site.
*/
- (NSArray<RemoteLikeUser *> *)remoteUsersFromJSONArray:(NSArray *)jsonUsers
commentID:(NSNumber *)commentID
siteID:(NSNumber *)siteID
{
return [jsonUsers wp_map:^id(NSDictionary *jsonUser) {
return [[RemoteLikeUser alloc] initWithDictionary:jsonUser commentID:commentID siteID:siteID];
}];
}
@end