-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathPubNub+State.m
438 lines (352 loc) · 16 KB
/
PubNub+State.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
/**
* @author Serhii Mamontov
* @since 4.0
* @copyright © 2010-2018 PubNub, Inc.
*/
#import "PubNub+State.h"
#import "PNChannelGroupClientStateResult.h"
#import "PNClientStateUpdateStatus.h"
#import "PNAPICallBuilder+Private.h"
#import "PNClientStateGetResult.h"
#import "PNRequestParameters.h"
#import "PubNub+CorePrivate.h"
#import "PNStatus+Private.h"
#import "PNConfiguration.h"
#import "PNLogMacro.h"
#import "PNHelpers.h"
NS_ASSUME_NONNULL_BEGIN
#pragma mark Protected interface declaration
@interface PubNub (StateProtected)
#pragma mark - Client state information manipulation
/**
* @brief Modify state information for \c uuid on specified remote data object.
*
* @param state \a NSDictionary with data which should be bound to \c uuid on channel group.
* @param uuid Unique user identifier for which state should be bound.
* @param channels List of the channels which will store provided state information for \c uuid.
* @param groups List of channel group names which will store provided state information for
* \c uuid.
* @param queryParameters List arbitrary query parameters which should be sent along with original
* API call.
* @param block State modification for user on channel completion block.
*
* @since 4.8.2
*/
- (void)setState:(nullable NSDictionary<NSString *, id> *)state
forUUID:(NSString *)uuid
onChannels:(nullable NSArray<NSString *> *)channels
groups:(nullable NSArray<NSString *> *)groups
withQueryParameters:(nullable NSDictionary *)queryParameters
completion:(nullable PNSetStateCompletionBlock)block;
/**
* @brief Retrieve state information for \c uuid on specified remote data object.
*
* @param uuid Unique user identifier for which state should be retrieved.
* @param channels List of the channels from which state information for \c uuid will be pulled out.
* @param groups List of channel group names from which state information for \c uuid will be
* pulled out.
* @param apiCallBuilder Whether API has been called from API call builder or not.
* @param queryParameters List arbitrary query parameters which should be sent along with original
* API call.
* @param block State audition for user on remote data object completion block.
*
* @since 4.8.2
*/
- (void)stateForUUID:(NSString *)uuid
onChannels:(nullable NSArray<NSString *> *)channels
groups:(nullable NSArray<NSString *> *)groups
fromBuilder:(BOOL)apiCallBuilder
withQueryParameters:(nullable NSDictionary *)queryParameters
completion:(id)block;
#pragma mark - Handlers
/**
* @brief Process client state modification request completion and notify observers about results.
*
* @param status State modification status instance.
* @param uuid Unique user identifier for which state should be updated.
* @param channels List of the channels which will store provided state information for \c uuid.
* @param groups List of channel group names which will store provided state information for
* \c uuid.
* @param block State modification for user on channel completion block.
*
* @since 4.0
*/
- (void)handleSetStateStatus:(PNClientStateUpdateStatus *)status
forUUID:(NSString *)uuid
atChannels:(nullable NSArray<NSString *> *)channels
groups:(nullable NSArray<NSString *> *)groups
withCompletion:(nullable PNSetStateCompletionBlock)block;
/**
* @brief Process client state audition request completion and notify observers about results.
*
* @param result Service response results instance.
* @param status State request status instance.
* @param uuid Unique user identifier for which state should be retrieved.
* @param channels List of the channels which will store provided state information for \c uuid.
* @param groups List of channel group names which will store provided state information for
* \c uuid.
* @param apiCallBuilder Whether processing data which has been received by API call from API call
* builder or not.
* @param block State audition for user on channel completion block.
@since 4.0
*/
- (void)handleStateResult:(nullable id)result
withStatus:(nullable PNStatus *)status
forUUID:(NSString *)uuid
atChannels:(nullable NSArray<NSString *> *)channels
groups:(nullable NSArray<NSString *> *)groups
fromBuilder:(BOOL)apiCallBuilder
withCompletion:(id)block;
#pragma mark -
@end
NS_ASSUME_NONNULL_END
#pragma mark Interface implementation
@implementation PubNub (State)
#pragma mark - API Builder support
- (PNStateAPICallBuilder * (^)(void))state {
PNStateAPICallBuilder *builder = nil;
builder = [PNStateAPICallBuilder builderWithExecutionBlock:^(NSArray<NSString *> *flags,
NSDictionary *parameters) {
NSString *uuid = parameters[NSStringFromSelector(@selector(uuid))];
NSArray<NSString *> *channels = parameters[NSStringFromSelector(@selector(channels))];
NSArray<NSString *> *groups = parameters[NSStringFromSelector(@selector(channelGroups))];
NSDictionary *state = parameters[NSStringFromSelector(@selector(state))];
NSDictionary *queryParam = parameters[@"queryParam"];
id block = parameters[@"block"];
if ([flags containsObject:NSStringFromSelector(@selector(audit))]) {
[self stateForUUID:uuid
onChannels:channels
groups:groups
fromBuilder:YES
withQueryParameters:queryParam
completion:block];
} else {
[self setState:state
forUUID:uuid
onChannels:channels
groups:groups
withQueryParameters:queryParam
completion:block];
}
}];
return ^PNStateAPICallBuilder * {
return builder;
};
}
#pragma mark - Client state information manipulation
- (void)setState:(NSDictionary<NSString *, id> *)state
forUUID:(NSString *)uuid
onChannel:(NSString *)channel
withCompletion:(PNSetStateCompletionBlock)block {
NSArray *channels = channel ? @[channel] : nil;
[self setState:state
forUUID:uuid
onChannels:channels
groups:nil
withQueryParameters:nil
completion:block];
}
- (void)setState:(NSDictionary<NSString *, id> *)state
forUUID:(NSString *)uuid
onChannelGroup:(NSString *)group
withCompletion:(PNSetStateCompletionBlock)block {
NSArray *groups = group ? @[group] : nil;
[self setState:state
forUUID:uuid
onChannels:nil
groups:groups
withQueryParameters:nil
completion:block];
}
- (void)setState:(nullable NSDictionary<NSString *, id> *)state
forUUID:(NSString *)uuid
onChannels:(NSArray<NSString *> *)channels
groups:(NSArray<NSString *> *)groups
withQueryParameters:(NSDictionary *)queryParameters
completion:(PNSetStateCompletionBlock)block {
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
__weak __typeof(self) weakSelf = self;
if (@available(macOS 10.10, iOS 8.0, *)) {
if (self.configuration.applicationExtensionSharedGroupIdentifier) {
queue = dispatch_get_main_queue();
}
}
// State set retry block.
dispatch_block_t retryBlock = ^{
[weakSelf setState:state
forUUID:uuid
onChannels:channels
groups:groups
withQueryParameters:queryParameters
completion:block];
};
if ((!channels.count && !groups.count) || !uuid.length) {
PNErrorStatus *badRequestStatus = [PNErrorStatus statusForOperation:PNSetStateOperation
category:PNBadRequestCategory
withProcessingError:nil];
badRequestStatus.retryBlock = retryBlock;
[self appendClientInformation:badRequestStatus];
[self callBlock:block status:YES withResult:nil andStatus:badRequestStatus];
return;
}
dispatch_async(queue, ^{
__strong __typeof__(weakSelf) strongSelf = weakSelf;
NSString *stateString = [PNJSON JSONStringFrom:state withError:NULL] ?: @"{}";
PNRequestParameters *parameters = [PNRequestParameters new];
[parameters addPathComponent:(channels.count ? [PNChannel namesForRequest:channels] : @",")
forPlaceholder:@"{channel}"];
[parameters addQueryParameter:[PNString percentEscapedString:stateString]
forFieldName:@"state"];
[parameters addQueryParameters:queryParameters];
[parameters addPathComponent:[PNString percentEscapedString:uuid] forPlaceholder:@"{uuid}"];
if (groups.count) {
[parameters addQueryParameter:[PNChannel namesForRequest:groups]
forFieldName:@"channel-group"];
}
PNLogAPICall(strongSelf.logger, @"<PubNub::API> Set %@'s state on%@%@: %@.", uuid,
(channels.count ? [NSString stringWithFormat:@" channels (%@)",
[channels componentsJoinedByString:@","]] : @""),
(groups.count ? [NSString stringWithFormat:@" %@channel groups (%@)",
channels.count ? @"and " : @"",
[groups componentsJoinedByString:@","]] : @""),
parameters.query[@"state"]);
[strongSelf processOperation:PNSetStateOperation
withParameters:parameters
completionBlock:^(PNStatus *status) {
if (status.isError) {
status.retryBlock = retryBlock;
}
[weakSelf handleSetStateStatus:(PNClientStateUpdateStatus *)status
forUUID:uuid
atChannels:channels
groups:groups
withCompletion:block];
}];
});
}
#pragma mark - Client state information audit
- (void)stateForUUID:(NSString *)uuid
onChannel:(NSString *)channel
withCompletion:(PNChannelStateCompletionBlock)block {
NSArray *channels = channel ? @[channel] : nil;
[self stateForUUID:uuid
onChannels:channels
groups:nil
fromBuilder:NO
withQueryParameters:nil
completion:block];
}
- (void)stateForUUID:(NSString *)uuid
onChannelGroup:(NSString *)group
withCompletion:(PNChannelGroupStateCompletionBlock)block {
NSArray *groups = group ? @[group] : nil;
[self stateForUUID:uuid
onChannels:nil
groups:groups
fromBuilder:NO
withQueryParameters:nil
completion:block];
}
- (void)stateForUUID:(NSString *)uuid
onChannels:(NSArray<NSString *> *)channels
groups:(NSArray<NSString *> *)groups
fromBuilder:(BOOL)apiCallBuilder
withQueryParameters:(NSDictionary *)queryParameters
completion:(id)block {
PNRequestParameters *parameters = [PNRequestParameters new];
PNOperationType operation = PNGetStateOperation;
__weak __typeof(self) weakSelf = self;
if (!apiCallBuilder) {
operation = groups.count ? PNStateForChannelGroupOperation : PNStateForChannelOperation;
}
// State fetch retry block.
dispatch_block_t retryBlock = ^{
[weakSelf stateForUUID:uuid
onChannels:channels
groups:groups
fromBuilder:apiCallBuilder
withQueryParameters:queryParameters
completion:block];
};
if ((!channels.count && !groups.count) || !uuid.length) {
PNErrorStatus *badRequestStatus = [PNErrorStatus statusForOperation:operation
category:PNBadRequestCategory
withProcessingError:nil];
badRequestStatus.retryBlock = retryBlock;
[self appendClientInformation:badRequestStatus];
[self callBlock:block status:NO withResult:nil andStatus:badRequestStatus];
return;
}
[parameters addPathComponent:(channels.count ? [PNChannel namesForRequest:channels] : @",")
forPlaceholder:@"{channel}"];
[parameters addQueryParameters:queryParameters];
[parameters addPathComponent:[PNString percentEscapedString:uuid] forPlaceholder:@"{uuid}"];
if (groups.count) {
[parameters addQueryParameter:[PNChannel namesForRequest:groups]
forFieldName:@"channel-group"];
}
PNLogAPICall(self.logger, @"<PubNub::API> State request on %@%@ for %@.",
(channels.count ? [NSString stringWithFormat:@" channels (%@)",
[channels componentsJoinedByString:@","]] : @""),
(groups.count ? [NSString stringWithFormat:@" %@channel groups (%@)",
channels.count ? @"and " : @"",
[groups componentsJoinedByString:@","]] : @""),
uuid);
[self processOperation:operation
withParameters:parameters
completionBlock:^(PNResult *result, PNStatus *status) {
if (status.isError) {
status.retryBlock = retryBlock;
}
[weakSelf handleStateResult:(PNChannelClientStateResult *)result
withStatus:status
forUUID:uuid
atChannels:channels
groups:groups
fromBuilder:apiCallBuilder
withCompletion:block];
}];
}
#pragma mark - Handlers
- (void)handleSetStateStatus:(PNClientStateUpdateStatus *)status
forUUID:(NSString *)uuid
atChannels:(NSArray<NSString *> *)channels
groups:(NSArray<NSString *> *)groups
withCompletion:(PNSetStateCompletionBlock)block {
if (status && !status.isError && [uuid isEqualToString:self.configuration.userId]) {
NSDictionary *state = status.data.state ?: @{};
[self.clientStateManager setState:state forObjects:channels];
[self.clientStateManager setState:state forObjects:groups];
}
[self callBlock:block status:YES withResult:nil andStatus:status];
}
- (void)handleStateResult:(id)result
withStatus:(PNStatus *)status
forUUID:(NSString *)uuid
atChannels:(NSArray<NSString *> *)channels
groups:(NSArray<NSString *> *)groups
fromBuilder:(BOOL)apiCallBuilder
withCompletion:(id)block {
if (result && [uuid isEqualToString:self.configuration.userId]) {
NSDictionary *state = @{};
if (!apiCallBuilder) {
if (channels.count) {
state = @{ channels[0]: ((PNChannelClientStateResult *)result).data.state ?: @{} };
} else if (groups.count) {
state = ((PNChannelGroupClientStateResult *)result).data.channels;
}
} else {
state = ((PNClientStateGetResult *)result).data.channels;
}
NSMutableDictionary *existingState = [(self.clientStateManager.state ?: @{}) mutableCopy];
[existingState addEntriesFromDictionary:state];
NSArray<NSString *> *channelsWithState = self.clientStateManager.state.allKeys;
state = [existingState dictionaryWithValuesForKeys:channelsWithState];
if (state.count) {
[self.clientStateManager setState:state forObjects:channelsWithState];
}
}
[self callBlock:block status:NO withResult:result andStatus:status];
}
#pragma mark -
@end