-
Notifications
You must be signed in to change notification settings - Fork 1
/
AFSynccitAPIClient.m
503 lines (414 loc) · 17.4 KB
/
AFSynccitAPIClient.m
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
#import "AFSynccitAPIClient.h"
#import "AFJSONRequestOperation.h"
NSString * const kAFRSynccitAPIBaseURLString = @"http://api.synccit.com/";
@interface AFSynccitAPIClient ()
@property NSTimer *updateTimer;
@property NSMutableArray *linkIdsToUpload;
@property AFHTTPRequestOperation* uploadOperation;
@property NSUInteger lastDownloadSyncOffset;
@property NSUInteger downloadFailureCount;
@property AFHTTPRequestOperation *downloadOperation;
@property BOOL isReachable;
@end
@implementation AFSynccitAPIClient
+ (AFSynccitAPIClient *)sharedClient {
static AFSynccitAPIClient *_sharedClient = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_sharedClient = [[[self class] alloc] initWithBaseURL:[NSURL URLWithString:kAFRSynccitAPIBaseURLString]];
});
return _sharedClient;
}
- (id)initWithBaseURL:(NSURL *)url {
self = [super initWithBaseURL:url];
if (!self) {
return nil;
}
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationDidBecomeActiveNotification)
name:UIApplicationDidBecomeActiveNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationWillResignActiveNotification)
name:UIApplicationWillResignActiveNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reachabilityDidChange:)
name:AFNetworkingReachabilityDidChangeNotification
object:nil];
self.linkIdsToUpload = [NSMutableArray array];
[self registerHTTPOperationClass:[AFJSONRequestOperation class]];
[self setDefaultHeader:@"Accept" value:@"application/json"];
return self;
}
-(void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
-(BOOL) isEnabled
{
return self.username != nil && self.authCode != nil;
}
-(void) updateTimerFireMethod:(NSTimer*)timer
{
#if TARGET_IPHONE_SIMULATOR
DLog(@"Ignoring Synccit sync");
#else
DLog(@"Synccit update fired");
#endif
[self uploadLinks];
[self downloadLinks];
}
-(void) setUsername:(NSString*)username authCode:(NSString*)authCode
{
self.username = username;
self.authCode = authCode;
}
#pragma mark - Upload
-(void) uploadLinks
{
if (self.linkIdsToUpload.count == 0 || self.uploadOperation != nil) {
return;
}
NSArray *linkIdsSynccing = [self.linkIdsToUpload copy];
[self.linkIdsToUpload removeAllObjects];
NSDictionary *jsonDictionary = [self requestJSONWithLinks:linkIdsSynccing mode:@"update"];
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonDictionary options:0 error:&error];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSDictionary* parameters = @{@"type": @"json", @"data" : jsonString};
void (^finally)(void) = ^{
self.uploadOperation = nil;
};
void (^success)(AFHTTPRequestOperation *successOperation, NSDictionary*successJsonDictionary) =
^(AFHTTPRequestOperation *successOperation, NSDictionary* successJsonDictionary)
{
if(![successJsonDictionary isKindOfClass:[NSDictionary class]]){
DLog(@"synccit API update returned non json");
return;
}
if (successJsonDictionary[@"error"] != nil) {
DLog(@"synccit API update returned error %@", successJsonDictionary[@"error"]);
return;
}
DLog(@"synccit API update success.");
finally();
};
void (^failure)(AFHTTPRequestOperation *, NSError *) = ^(AFHTTPRequestOperation *failOp, NSError *failError)
{
//retry on HTTP failure
[self.linkIdsToUpload addObjectsFromArray:linkIdsSynccing];
finally();
DLog(@"synccit API update failed %@", error);
};
NSURLRequest *request = [self requestWithMethod:@"POST" path:@"api.php" parameters:parameters];
self.uploadOperation = [self HTTPRequestOperationWithRequest:request success:success failure:failure];
[self enqueueHTTPRequestOperation:self.uploadOperation];
}
-(void) addLinkId:(NSString*)linkId
{
[self addLinkId:linkId commentsCount:nil linkRead:YES commentsRead:NO];
}
-(void) addLinkId:(NSString*)linkId
commentsCount:(NSString*)commentsCount
linkRead:(BOOL)linkRead
commentsRead:(BOOL)commentsRead
{
if (linkId == nil) {
return;
}
if (self.username == nil || self.authCode == nil ) {
return;
}
NSMutableDictionary *payLoad = [NSMutableDictionary dictionary];
payLoad[@"id"] = linkId;
if (commentsCount) {
payLoad[@"comments"] = commentsCount;
}
if (linkRead && commentsRead) {
payLoad[@"both"] = @(YES);
}
[self.linkIdsToUpload addObject:@{@"id": linkId}];
}
#pragma mark - Download
-(void) downloadLinks
{
if (self.downloadOperation == nil) {
_lastDownloadSyncDate = _lastDownloadSyncDate ?: [self last48HoursDate];
_lastDownloadSyncOffset = 0;
_downloadFailureCount = 0;
[self nextDownloadOperation];
}
}
NSString *const AFSynccitAPIClientNotificationNewLinks = @"AFSynccitAPIClientNotificationNewLinks";
NSString *const AFSynccitAPIClientLinksDownloadedUserInfoKey = @"AFSynccitAPIClientLinksDownloadedUserInfoKey";
- (void) notificationForLinks:(NSArray*)links
{
NSDictionary *userInfo;
if (links) {
userInfo = @{AFSynccitAPIClientLinksDownloadedUserInfoKey:links};
}
NSNotification *notification = [NSNotification notificationWithName:AFSynccitAPIClientNotificationNewLinks
object:self
userInfo:userInfo];
NSNotificationCenter *notifier = [NSNotificationCenter defaultCenter];
[notifier postNotification:notification];
}
- (void) completeDownloadOperation
{
_downloadOperation = nil;
//Additional 10 second buffer
_lastDownloadSyncDate = [NSDate dateWithTimeIntervalSinceNow:-10];
}
static NSInteger kMaxSynccitHistorySize = 100;
- (void) nextDownloadOperation
{
void (^getNextLinksBatch)(void) = ^{
dispatch_async(dispatch_get_main_queue(), ^{
[self nextDownloadOperation];
});
};
if (_downloadFailureCount>3) {
DLog(@"Failed too many times, cancelling");
return;
}
_downloadOperation =
[self linksSinceDate:_lastDownloadSyncDate
offset:_lastDownloadSyncOffset
success:^(AFHTTPRequestOperation *operation, NSArray *linkStatuses) {
self.lastDownloadSyncOffset += linkStatuses.count;
if (linkStatuses.count == kMaxSynccitHistorySize) {
getNextLinksBatch();
} else {
DLog(@"completed with %d links updated",self.lastDownloadSyncOffset);
[self completeDownloadOperation];
}
if (linkStatuses.count>0) {
[self notificationForLinks:linkStatuses];
}
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
DLog(@"linksSinceDate: operation failed with error %@",error);
self.downloadFailureCount++;
getNextLinksBatch();
}];
}
-(void) statusForLinkIds:(NSArray*)linkIds
success:(void (^)(AFHTTPRequestOperation *operation, NSArray *linkStatuses))success
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
if (self.username == nil || self.authCode == nil) {
NSAssert(NO, @"Call isEnabled first, not logged in");
if(failure) failure(nil, [self errorWithDescription:@"not logged in"]);
}
NSDictionary *jsonDictionary = [self requestJSONWithLinks:[self linkIdsDictionariesForLinkIds:linkIds] mode:@"read"];
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonDictionary options:0 error:&error];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSDictionary* parameters = @{@"type": @"json", @"data" : jsonString};
void (^successWrapper)(AFHTTPRequestOperation *_operation, id json) =
^(AFHTTPRequestOperation *_operation, id json)
{
if([json isKindOfClass:[NSDictionary class]] && json[@"error"] != nil ){
NSString *error = [NSString stringWithFormat:@"Synccit returned error: %@",json[@"error"]];
if(failure) failure(_operation,[self errorWithDescription:error]);
return;
}
if(![json isKindOfClass:[NSArray class]]){
if(failure) failure(_operation,[self errorWithDescription:@"Malformed response"]);
return;
}
if(success) {
NSArray *linkIds = [self linkIdsArrayDictionary:json];
success(_operation,linkIds);
DLog(@"synccit API update success %@", [linkIds componentsJoinedByString:@","]);
}
};
void (^failureWrapper)(AFHTTPRequestOperation *, NSError *) = ^(AFHTTPRequestOperation *_operation, NSError *_error)
{
if(failure) failure(_operation,_error);
DLog(@"synccit API update failed %@", error);
};
NSURLRequest *request = [self requestWithMethod:@"POST" path:@"api.php" parameters:parameters];
AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithRequest:request success:successWrapper failure:failureWrapper];
[self enqueueHTTPRequestOperation:operation];
}
-(void) statusForRedditAPIResponse:(NSDictionary*)redditAPIResponse
visited:(void (^)(NSArray *visitedLinkData))visited;
{
if (self.username == nil || self.authCode == nil) {
DLog(@"Not logged in, ignoring");
return;
}
NSArray *children = [redditAPIResponse valueForKeyPath:@"data.children"];
NSMutableArray *childrenIds = [NSMutableArray arrayWithCapacity:children.count];
for (NSDictionary* data in children) {
NSString *linkId = [data valueForKeyPath:@"data.id"];
if (linkId) {
[childrenIds addObject:linkId];
}
}
[self statusForLinkIds:childrenIds success:^(AFHTTPRequestOperation *operation, NSArray *linkStatuses) {
if (visited) {
visited(linkStatuses);
}
} failure:nil];
}
-(AFHTTPRequestOperation*) linksSinceDate:(NSDate*)date
offset:(NSInteger)offset
success:(void (^)(AFHTTPRequestOperation *operation, NSArray *linkStatuses))success
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
if (self.username == nil || self.authCode == nil) {
NSAssert(NO, @"Call isEnabled first, not logged in");
if(failure) failure(nil, [self errorWithDescription:@"not logged in"]);
}
NSDictionary *jsonDictionary = [self requestJSONWithHistorySinceDate:date offset:offset];
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonDictionary options:0 error:&error];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSDictionary* parameters = @{@"type": @"json", @"data" : jsonString};
DLog(@"Synccit payload %@",parameters);
void (^successWrapper)(AFHTTPRequestOperation *_operation, id json) =
^(AFHTTPRequestOperation *_operation, id json)
{
if([json isKindOfClass:[NSDictionary class]] && json[@"error"] != nil ){
NSString *error = [NSString stringWithFormat:@"Synccit returned error: %@",json[@"error"]];
if(failure) failure(_operation,[self errorWithDescription:error]);
return;
}
if(![json isKindOfClass:[NSArray class]]){
if(failure) failure(_operation,[self errorWithDescription:@"Malformed response"]);
return;
}
if(success) {
NSArray *linkIds = [self linkIdsArrayDictionary:json];
success(_operation,linkIds);
DLog(@"synccit API update success %@", [linkIds componentsJoinedByString:@","]);
}
};
void (^failureWrapper)(AFHTTPRequestOperation *, NSError *) = ^(AFHTTPRequestOperation *_operation, NSError *_error)
{
if(failure) failure(_operation,_error);
DLog(@"synccit API update failed %@", error);
};
NSURLRequest *request = [self requestWithMethod:@"POST" path:@"api.php" parameters:parameters];
AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithRequest:request success:successWrapper failure:failureWrapper];
[self enqueueHTTPRequestOperation:operation];
return operation;
}
#pragma mark - Helpers
- (NSDate*) last48HoursDate {
NSTimeInterval hours48 = 60.*60.*48.*-1;
return [NSDate dateWithTimeIntervalSinceNow:hours48];
}
-(NSArray*) linkIdsArrayDictionary:(NSArray*)linkIdsDictionaries
{
NSMutableArray *linkIds = [NSMutableArray arrayWithCapacity:linkIdsDictionaries.count];
for (NSDictionary* linkIdDictionary in linkIdsDictionaries) {
NSString *idValue = linkIdDictionary[@"id"];
if (idValue) {
[linkIds addObject:idValue];
}
}
return linkIds;
}
-(NSArray*) linkIdsDictionariesForLinkIds:(NSArray*)linkIds
{
NSMutableArray *linkIdsDictionaries = [NSMutableArray arrayWithCapacity:linkIds.count];
for (NSString* linkId in linkIds) {
[linkIdsDictionaries addObject:@{@"id": linkId}];
}
return linkIdsDictionaries;
}
-(NSDictionary*) requestJSONWithLinks:(NSArray*)links
mode:(NSString*)mode
{
NSDictionary *jsonDictionary = @{
@"username" : self.username,
@"auth" : self.authCode,
@"dev" : @"amrc",
@"mode" : mode,
@"links" : links
};
return jsonDictionary;
}
-(NSDictionary*) requestJSONWithHistorySinceDate:(NSDate*)sinceDate
offset:(NSInteger)offset
{
NSString *utcString;
if (sinceDate) {
utcString = [NSString stringWithFormat:@"%.0f",[sinceDate timeIntervalSince1970]];
} else {
utcString = @"0";
}
NSDictionary *jsonDictionary = @{
@"username" : self.username,
@"auth" : self.authCode,
@"dev" : @"amrc",
@"mode" : @"history",
@"time" : utcString,
@"offset" : [NSString stringWithFormat:@"%d",offset]
};
return jsonDictionary;
}
-(NSError*) errorWithDescription:(NSString*)desc
{
NSParameterAssert([desc isKindOfClass:[NSString class]]);
NSDictionary* userInfo = @{NSLocalizedDescriptionKey:desc};
NSError* er = [NSError errorWithDomain:@"AFSynccitAPIClient" code:-999 userInfo:userInfo];
return er;
}
#pragma mark Update timer
-(void) updateTimerSchedueling
{
[self unscheduleUpdateTimer];
if (_isReachable && [self isEnabled]) {
[self rescheduleUpdateTimer];
}
}
-(void) fireTimer
{
if (self.updateTimer != nil) {
[self updateTimerFireMethod:self.updateTimer];
}
}
static NSTimeInterval kUpdateTimerInterval = 60.;
-(void) rescheduleUpdateTimer
{
[self unscheduleUpdateTimer];
self.updateTimer = [NSTimer timerWithTimeInterval:kUpdateTimerInterval
target:self
selector:@selector(updateTimerFireMethod:)
userInfo:nil
repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:self.updateTimer forMode:NSRunLoopCommonModes];
[self updateTimerFireMethod:self.updateTimer];
}
-(void) unscheduleUpdateTimer
{
if (self.updateTimer == nil) {
return;
}
[self.updateTimer performSelectorOnMainThread:@selector(invalidate) withObject:nil waitUntilDone:NO];
self.updateTimer = nil;
}
#pragma mark NSNotification
- (void) applicationDidBecomeActiveNotification
{
[self updateTimerSchedueling];
}
- (void) applicationWillResignActiveNotification
{
[self fireTimer];
[self unscheduleUpdateTimer];
}
-(void) reachabilityDidChange:(NSNotification*)notification
{
NSNumber *statusNumber = [notification.userInfo objectForKey:AFNetworkingReachabilityNotificationStatusItem];
NSInteger reachabilityStatus = [statusNumber integerValue];
_isReachable =
reachabilityStatus == AFNetworkReachabilityStatusReachableViaWiFi ||
reachabilityStatus == AFNetworkReachabilityStatusReachableViaWWAN;
[self updateTimerSchedueling];
}
@end