-
Notifications
You must be signed in to change notification settings - Fork 12
/
TracksService.m
455 lines (364 loc) · 16.7 KB
/
TracksService.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
#import "TracksService.h"
#import "TracksDeviceInformation.h"
#import <Network/Network.h>
#if SWIFT_PACKAGE
@import AutomatticTracksModel;
@import AutomatticExperiments;
#else
#import <AutomatticTracks/AutomatticTracks-Swift.h>
#endif
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#else
#import <AppKit/AppKit.h>
#endif
@interface TracksService ()
@property (nonatomic, strong) NSTimer *timer;
@property (nonatomic, assign) BOOL timerEnabled;
@property (nonatomic, assign) BOOL isHostReachable;
@property (nonatomic, strong) TracksContextManager *contextManager;
@property (nonatomic, strong) TracksDeviceInformation *deviceInformation;
@property (nonatomic, strong) nw_path_monitor_t networkMonitor;
@property (nonatomic, strong) nw_path_t networkPath;
@property (nonatomic, readonly) NSString *userAgent;
@property (nonatomic, copy) NSString *username;
@property (nonatomic, copy) NSString *userID;
@property (nonatomic, copy) NSString *token;
@property (nonatomic, assign, getter=isAnonymous) BOOL anonymous;
@end
static NSTimeInterval const EVENT_TIMER_DEFAULT = 15; // seconds
NSString *const TrackServiceWillSendQueuedEventsNotification = @"TrackServiceDidSendQueuedEventsNotification";
NSString *const TrackServiceDidSendQueuedEventsNotification = @"TrackServiceDidSendQueuedEventsNotification";
NSString *const RequestTimestampKey = @"_rt";
NSString *const DeviceLanguageKey = @"_lg";
NSString *const DeviceInfoAppNameKey = @"device_info_app_name";
NSString *const DeviceInfoAppVersionKey = @"device_info_app_version";
NSString *const DeviceInfoAppBuildKey = @"device_info_app_version_code";
NSString *const DeviceInfoAppBuildConfigurationKey = @"device_info_app_build_configuration";
NSString *const DeviceInfoOSKey = @"device_info_os";
NSString *const DeviceInfoOSVersionKey = @"device_info_os_version";
NSString *const DeviceInfoBrandKey = @"device_info_brand";
NSString *const DeviceInfoManufacturerKey = @"device_info_manufacturer";
NSString *const DeviceInfoModelKey = @"device_info_model";
NSString *const DeviceInfoHeightKey = @"device_info_display_height";
NSString *const DeviceInfoWidthKey = @"device_info_display_width";
NSString *const DeviceInfoNetworkOperatorKey = @"device_info_current_network_operator";
NSString *const DeviceInfoRadioTypeKey = @"device_info_phone_radio_type";
NSString *const DeviceInfoWiFiConnectedKey = @"device_info_wifi_connected";
NSString *const DeviceInfoIsOnlineKey = @"device_info_is_online";
NSString *const DeviceInfoAppleWatchConnectedKey = @"device_info_apple_watch_connected";
NSString *const DeviceInfoVoiceOverEnabledKey = @"device_info_voiceover_enabled";
NSString *const DeviceInfoStatusBarHeightKey = @"device_info_status_bar_height";
NSString *const DeviceInfoOrientation = @"device_info_orientation";
NSString *const TracksEventNameKey = @"_en";
NSString *const TracksUserAgentKey = @"_via_ua";
NSString *const TracksTimestampKey = @"_ts";
NSString *const TracksUserTypeKey = @"_ut";
NSString *const TracksUserIDKey = @"_ui";
NSString *const TracksUsernameKey = @"_ul";
NSString *const TracksUserTypeAnonymous = @"anon";
NSString *const TracksUserTypeAuthenticated = @"wpcom:user_id";
NSString *const USER_ID_ANON = @"anonId";
@implementation TracksService
- (instancetype)initWithContextManager:(TracksContextManager *)contextManager
{
self = [super init];
if (self) {
_eventNamePrefix = @"wpios";
_anonymousUserTypeKey = TracksUserTypeAnonymous;
_authenticatedUserTypeKey = TracksUserTypeAuthenticated;
_remote = [TracksServiceRemote new];
_remote.tracksUserAgent = self.userAgent;
_queueSendInterval = EVENT_TIMER_DEFAULT;
_contextManager = contextManager;
_tracksEventService = [[TracksEventService alloc] initWithContextManager:contextManager];
_deviceInformation = [TracksDeviceInformation new];
[self startNetworkMonitor];
[self updateDeviceInformationFromReachability];
_isHostReachable = YES;
_timerEnabled = YES;
_userProperties = [NSMutableDictionary new];
[self switchToAnonymousUserWithAnonymousID:[[NSUUID UUID] UUIDString]];
[self resetTimer];
#if TARGET_OS_IPHONE
NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
[defaultCenter addObserver:self selector:@selector(didEnterBackground:) name:UIApplicationDidEnterBackgroundNotification object:nil];
[defaultCenter addObserver:self selector:@selector(didBecomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil];
#endif
}
return self;
}
- (void)dealloc
{
[self.timer invalidate];
if (self.networkMonitor != nil) {
nw_path_monitor_cancel(self.networkMonitor);
}
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)trackEventName:(NSString *)eventName
{
NSParameterAssert(eventName.length > 0);
[self trackEventName:eventName withCustomProperties:nil];
}
- (void)trackEventName:(NSString *)eventName withCustomProperties:(NSDictionary *)customProperties
{
eventName = [NSString stringWithFormat:@"%@_%@", self.eventNamePrefix, eventName];
[self.tracksEventService createTracksEventWithName:eventName
username:self.username
userID:self.userID
userAgent:self.userAgent
userType:self.isAnonymous ? TracksEventUserTypeAnonymous : TracksEventUserTypeAuthenticated
eventDate:[NSDate date]
customProperties:customProperties
deviceProperties:[self mutableDeviceProperties]
userProperties:self.userProperties];
}
- (NSUInteger)queuedEventCount
{
return [self.tracksEventService numberOfTracksEvents];
}
- (void)sendQueuedEvents
{
[self.timer invalidate];
[[NSNotificationCenter defaultCenter] postNotificationName:TrackServiceWillSendQueuedEventsNotification object:nil];
NSArray *events = [self.tracksEventService allTracksEvents];
if (events.count == 0) {
[self resetTimer];
return;
}
NSMutableDictionary *commonProperties = [NSMutableDictionary new];
[commonProperties addEntriesFromDictionary:[self immutableDeviceProperties]];
[commonProperties addEntriesFromDictionary:[self mutableDeviceProperties]];
NSMutableArray *jsonEvents = [NSMutableArray arrayWithCapacity:events.count];
for (TracksEvent *tracksEvent in events) {
NSDictionary *eventJSON = [self dictionaryForTracksEvent:tracksEvent withParentCommonProperties:commonProperties];
[jsonEvents addObject:eventJSON];
}
__weak __typeof(self) weakSelf = self;
[self.remote sendBatchOfEvents:jsonEvents
withSharedProperties:commonProperties
completionHandler:^(NSError *error) {
if (error) {
TracksLogError(@"TracksService Error while remote calling: %@", error);
[weakSelf.tracksEventService incrementRetryCountForEvents:events];
} else {
TracksLogVerbose(@"TracksService sendQueuedEvents completed. Sent %@ events.", @(events.count));
// Delete the events since they sent or errored
[weakSelf.tracksEventService removeTracksEvents:events];
}
// Assume no errors for now
[weakSelf resetTimer];
[[NSNotificationCenter defaultCenter] postNotificationName:TrackServiceDidSendQueuedEventsNotification object:nil];
}
];
}
- (void)clearQueuedEvents
{
[self.tracksEventService clearTracksEvents];
}
- (void)switchToAuthenticatedUserWithUsername:(NSString *)username userID:(NSString *)userID skipAliasEventCreation:(BOOL)skipEvent
{
NSParameterAssert(username.length != 0 || userID.length != 0);
NSString *previousUserID = self.userID;
self.anonymous = NO;
self.username = username;
self.userID = userID;
if (skipEvent == NO && previousUserID.length > 0) {
[self.tracksEventService createTracksEventForAliasingWordPressComUser:username userID:userID withAnonymousUserID:previousUserID];
}
}
- (void)switchToAuthenticatedUserWithUsername:(NSString *)username userID:(NSString *)userID wpComToken:(NSString *)token skipAliasEventCreation:(BOOL)skipEvent
{
[self switchToAuthenticatedUserWithUsername:username userID:userID skipAliasEventCreation:skipEvent];
self.token = token;
#if TARGET_OS_IPHONE
[ExPlat configureWithPlatform:_eventNamePrefix oAuthToken:token userAgent:self.userAgent anonId:nil];
#endif
}
- (void)switchToAnonymousUserWithAnonymousID:(NSString *)anonymousID
{
NSParameterAssert(anonymousID.length > 0);
self.anonymous = YES;
self.username = @"";
self.userID = anonymousID;
self.token = nil;
#if TARGET_OS_IPHONE
[ExPlat configureWithPlatform:_eventNamePrefix oAuthToken:nil userAgent:self.userAgent anonId:anonymousID];
#endif
}
- (void)setRemoteCallsEnabled:(BOOL)remoteCallsEnabled
{
_remoteCallsEnabled = remoteCallsEnabled;
if (remoteCallsEnabled) {
[self resetTimer];
} else {
[self.timer invalidate];
}
}
#pragma mark - Reachability
/**
* Update `self.deviceInformation` properties that rely on `self.reachability`.
*/
- (void)updateDeviceInformationFromReachability
{
if (self.networkPath != nil) {
nw_path_status_t pathStatus = nw_path_get_status(self.networkPath);
self.deviceInformation.isWiFiConnected = nw_path_uses_interface_type(self.networkPath, nw_interface_type_wifi);
self.deviceInformation.isOnline = (pathStatus == nw_path_status_satisfied || pathStatus == nw_path_status_satisfiable);
} else {
self.deviceInformation.isWiFiConnected = NO;
self.deviceInformation.isOnline = NO;
}
}
- (void)networkPathChanged:(nw_path_t)networkPath
{
self.networkPath = networkPath;
[self updateDeviceInformationFromReachability];
if (self.deviceInformation.isOnline && self.isHostReachable == NO) {
TracksLogVerbose(@"Tracks host is available. Enabling timer.");
self.isHostReachable = YES;
self.timerEnabled = YES;
[self resetTimer];
} else if (self.deviceInformation.isOnline == NO && self.isHostReachable == YES){
TracksLogVerbose(@"Tracks host is unavailable. Disabling timer.");
self.isHostReachable = NO;
self.timerEnabled = NO;
[self resetTimer];
}
}
#pragma mark - Private methods
- (void)didEnterBackground:(NSNotification *)notification
{
self.timerEnabled = NO;
[self stopNetworkMonitor];
[self sendQueuedEvents];
}
- (void)didBecomeActive:(NSNotification *)notification
{
self.timerEnabled = YES;
[self startNetworkMonitor];
[self resetTimer];
}
- (void)resetTimer
{
[self.timer invalidate];
if (self.timerEnabled) {
self.timer = [NSTimer scheduledTimerWithTimeInterval:self.queueSendInterval target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:NO];
}
}
- (void)startNetworkMonitor {
if (self.networkMonitor != nil) {
return;
}
__weak typeof(self) weakSelf = self;
self.networkMonitor = nw_path_monitor_create();
nw_path_monitor_set_update_handler(_networkMonitor, ^(nw_path_t _Nonnull path) {
[weakSelf networkPathChanged:path];
});
nw_path_monitor_start(_networkMonitor);
}
- (void)stopNetworkMonitor {
if (self.networkMonitor != nil) {
nw_path_monitor_cancel(self.networkMonitor);
}
}
- (void)timerFireMethod:(NSTimer *)timer
{
[self sendQueuedEvents];
}
- (void)setQueueSendInterval:(NSTimeInterval)queueSendInterval
{
_queueSendInterval = queueSendInterval;
[self resetTimer];
}
- (NSDictionary *)immutableDeviceProperties
{
#if TARGET_OS_IPHONE
CGSize screenSize = [[UIScreen mainScreen] bounds].size;
#else
CGSize screenSize = [[NSScreen mainScreen] frame].size;
#endif
long long since1970millis = [NSDate date].timeIntervalSince1970 * 1000;
return @{ RequestTimestampKey : @(since1970millis),
DeviceInfoAppBuildKey : self.deviceInformation.appBuild ?: @"Unknown",
DeviceInfoAppBuildConfigurationKey: self.deviceInformation.appBuildConfiguration,
DeviceInfoAppNameKey : self.deviceInformation.appName ?: @"Unknown",
DeviceInfoAppVersionKey : self.deviceInformation.appVersion ?: @"Unknown",
DeviceInfoBrandKey : self.deviceInformation.brand,
DeviceInfoManufacturerKey : self.deviceInformation.manufacturer,
DeviceInfoModelKey : self.deviceInformation.model ?: @"Unknown",
DeviceInfoOSKey : self.deviceInformation.os,
DeviceInfoOSVersionKey : self.deviceInformation.version,
DeviceInfoHeightKey : @(screenSize.height),
DeviceInfoWidthKey : @(screenSize.width),
DeviceLanguageKey : self.deviceInformation.deviceLanguage,
TracksUserAgentKey : self.userAgent,
};
}
- (NSDictionary *)mutableDeviceProperties
{
// These properties change often and should be overridden in TracksEvents if they differ
return @{DeviceInfoNetworkOperatorKey : self.deviceInformation.currentNetworkOperator ?: @"Unknown",
DeviceInfoRadioTypeKey : self.deviceInformation.currentNetworkRadioType ?: @"Unknown",
DeviceInfoWiFiConnectedKey : self.deviceInformation.isWiFiConnected ? @"YES" : @"NO",
DeviceInfoIsOnlineKey : self.deviceInformation.isOnline ? @"YES" : @"NO",
DeviceInfoVoiceOverEnabledKey : self.deviceInformation.isVoiceOverEnabled ? @"YES" : @"NO",
DeviceInfoAppleWatchConnectedKey : self.deviceInformation.isAppleWatchConnected ? @"YES" : @"NO",
DeviceInfoVoiceOverEnabledKey : self.deviceInformation.isVoiceOverEnabled ? @"YES" : @"NO",
DeviceInfoAppleWatchConnectedKey : self.deviceInformation.isAppleWatchConnected ? @"YES" : @"NO",
DeviceInfoStatusBarHeightKey : [NSNumber numberWithFloat:self.deviceInformation.statusBarHeight],
DeviceInfoOrientation : self.deviceInformation.orientation ?: @"Unknown",
};
}
- (NSDictionary *)dictionaryForTracksEvent:(TracksEvent *)tracksEvent withParentCommonProperties:(NSDictionary *)parentCommonProperties
{
NSParameterAssert(tracksEvent);
NSTimeInterval since1970 = tracksEvent.date.timeIntervalSince1970;
long long since1970millis = since1970 * 1000;
NSMutableDictionary *dict = [NSMutableDictionary new];
dict[TracksEventNameKey] = tracksEvent.eventName;
dict[TracksTimestampKey] = @(since1970millis);
if (tracksEvent.userType == TracksEventUserTypeAnonymous) {
dict[TracksUserTypeKey] = self.anonymousUserTypeKey;
dict[TracksUserIDKey] = tracksEvent.userID;
} else {
dict[TracksUserTypeKey] = self.authenticatedUserTypeKey;
dict[TracksUserIDKey] = tracksEvent.userID;
dict[TracksUsernameKey] = tracksEvent.username;
}
// Only add objects that don't exist in parent or are different than parent
for (id key in tracksEvent.customProperties.keyEnumerator) {
if (parentCommonProperties[key] != nil && [parentCommonProperties[key] isEqual:tracksEvent.customProperties[key]]) {
continue;
}
dict[key] = tracksEvent.customProperties[key];
}
for (id key in tracksEvent.userProperties.keyEnumerator) {
if (parentCommonProperties[key] != nil && [parentCommonProperties[key] isEqual:tracksEvent.userProperties[key]]) {
continue;
}
dict[key] = tracksEvent.userProperties[key];
}
for (id key in tracksEvent.deviceProperties.keyEnumerator) {
if (parentCommonProperties[key] != nil && [parentCommonProperties[key] isEqual:tracksEvent.deviceProperties[key]]) {
continue;
}
dict[key] = tracksEvent.deviceProperties[key];
}
if (tracksEvent.userAgent.length > 0 && ![parentCommonProperties[TracksUserAgentKey] isEqualToString:tracksEvent.userAgent]) {
dict[TracksUserAgentKey] = tracksEvent.userAgent;
}
return dict;
}
- (NSString *)userAgent
{
#if TARGET_OS_IPHONE
return [NSString stringWithFormat:@"Nosara Client for iOS %@", TracksLibraryVersion];
#endif
#if TARGET_OS_MAC
return [NSString stringWithFormat:@"Nosara Client for macOS %@", TracksLibraryVersion];
#endif
return [NSString stringWithFormat:@"Nosara Client for Objective-C %@", TracksLibraryVersion];
}
@end