forked from orta/ARAnalytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARAnalytics.m
734 lines (612 loc) · 23.4 KB
/
ARAnalytics.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
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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
#import "ARAnalytics.h"
#import "ARAnalyticalProvider.h"
#import "ARAnalyticsProviders.h"
static ARAnalytics *_sharedAnalytics;
static BOOL _ARLogShouldPrintStdout = YES;
@interface ARAnalytics ()
@property (readwrite, nonatomic, strong) NSMutableDictionary *superProperties;
@property (readwrite, nonatomic, strong) NSMutableDictionary *eventsDictionary;
@property (readwrite, nonatomic, copy) NSSet *providers;
@end
#if TARGET_OS_IPHONE
#import "ARNavigationControllerDelegateProxy.h"
@interface ARAnalytics ()
{
ARNavigationControllerDelegateProxy *_proxyDelegate;
}
@property (strong, readonly) ARNavigationControllerDelegateProxy *proxyDelegate;
@end
#endif
#if !TARGET_OS_IPHONE
@implementation UIViewController @end
@implementation UINavigationController @end
#endif
@implementation ARAnalytics
+ (void)initialize
{
static dispatch_once_t pred;
dispatch_once(&pred, ^{
_sharedAnalytics = [[ARAnalytics alloc] init];
_sharedAnalytics.providers = [NSSet set];
_sharedAnalytics.superProperties = [NSMutableDictionary dictionary];
});
}
+ (void)logShouldPrintStdout:(BOOL)shouldPrint
{
_ARLogShouldPrintStdout = shouldPrint;
}
#pragma mark -
#pragma mark Analytics Setup
// By using the constants at the bottom you can
+ (void)setupWithAnalytics:(NSDictionary *)analyticsDictionary
{
if (analyticsDictionary[ARTestFlightAppToken]) {
[self setupTestFlightWithAppToken:analyticsDictionary[ARTestFlightAppToken]];
}
if (analyticsDictionary[ARFlurryAPIKey]) {
[self setupFlurryWithAPIKey:analyticsDictionary[ARFlurryAPIKey]];
}
if (analyticsDictionary[ARGoogleAnalyticsID]) {
[self setupGoogleAnalyticsWithID:analyticsDictionary[ARGoogleAnalyticsID]];
}
if (analyticsDictionary[ARKISSMetricsAPIKey]) {
[self setupKISSMetricsWithAPIKey:analyticsDictionary[ARKISSMetricsAPIKey]];
}
if (analyticsDictionary[ARLocalyticsAppKey]) {
[self setupLocalyticsWithAppKey:analyticsDictionary[ARLocalyticsAppKey]];
}
if (analyticsDictionary[ARMixpanelToken]) {
// ARMixpanelHost is nil if you want the default provider. So we can make
// the presumption of it here.
[self setupMixpanelWithToken:analyticsDictionary[ARMixpanelToken] andHost:analyticsDictionary[ARMixpanelHost]];
}
if (analyticsDictionary[ARCountlyAppKey] && analyticsDictionary[ARCountlyHost]) {
[self setupCountlyWithAppKey:analyticsDictionary[ARCountlyAppKey] andHost:analyticsDictionary[ARCountlyHost]];
}
if (analyticsDictionary[ARBugsnagAPIKey]) {
[self setupBugsnagWithAPIKey:analyticsDictionary[ARBugsnagAPIKey]];
}
if (analyticsDictionary[ARHelpshiftAppID] && analyticsDictionary[ARHelpshiftDomainName] && analyticsDictionary[ARHelpshiftAPIKey]) {
[self setupHelpshiftWithAppID:analyticsDictionary[ARHelpshiftAppID] domainName:analyticsDictionary[ARHelpshiftDomainName] apiKey:analyticsDictionary[ARHelpshiftAPIKey]];
}
if (analyticsDictionary[ARTapstreamAccountName] && analyticsDictionary[ARTapstreamDeveloperSecret]) {
[self setupTapstreamWithAccountName:analyticsDictionary[ARTapstreamAccountName] developerSecret:analyticsDictionary[ARTapstreamDeveloperSecret] config:analyticsDictionary[ARTapstreamConfig]];
}
if (analyticsDictionary[ARNewRelicAppToken]) {
[self setupNewRelicWithAppToken:analyticsDictionary[ARNewRelicAppToken]];
}
if (analyticsDictionary[ARAmplitudeAPIKey]) {
[self setupAmplitudeWithAPIKey:analyticsDictionary[ARAmplitudeAPIKey]];
}
if (analyticsDictionary[ARHockeyAppBetaID]) {
[self setupHockeyAppWithBetaID:analyticsDictionary[ARHockeyAppBetaID] liveID:analyticsDictionary[ARHockeyAppLiveID]];
}
if (analyticsDictionary[ARParseApplicationID] && analyticsDictionary[ARParseClientKey]) {
[self setupParseAnalyticsWithApplicationID:analyticsDictionary[ARParseApplicationID] clientKey:analyticsDictionary[ARParseClientKey]];
}
if (analyticsDictionary[ARHeapAppID]) {
[self setupHeapAnalyticsWithApplicationID:analyticsDictionary[ARHeapAppID]];
}
if (analyticsDictionary[ARChartbeatID]) {
[self setupChartbeatWithApplicationID:analyticsDictionary[ARChartbeatID]];
}
if (analyticsDictionary[ARUMengAnalyticsID]) {
[self setupUMengAnalyticsIDWithAppkey:analyticsDictionary[ARUMengAnalyticsID]];
}
if (analyticsDictionary[ARLibratoEmail] && analyticsDictionary[ARLibratoToken]) {
[self setupLibratoWithEmail:analyticsDictionary[ARLibratoEmail] token:analyticsDictionary[ARLibratoToken] prefix:analyticsDictionary[ARLibratoPrefix]];
}
if (analyticsDictionary[ARSegmentioWriteKey]) {
[self setupSegmentioWithWriteKey:analyticsDictionary[ARSegmentioWriteKey]];
}
if (analyticsDictionary[ARSwrveAppID] && analyticsDictionary[ARSwrveAPIKey]) {
[self setupSwrveWithAppID:analyticsDictionary[ARSwrveAppID] apiKey:analyticsDictionary[ARSwrveAPIKey]];
}
if (analyticsDictionary[ARAppsFlyerAppID] && analyticsDictionary[ARAppsFlyerDevKey]) {
[self setupAppsFlyerWithAppID:analyticsDictionary[ARAppsFlyerAppID] devKey:analyticsDictionary[ARAppsFlyerDevKey]];
}
if (analyticsDictionary[ARYandexMobileMetricaAPIKey]) {
[self setupYandexMobileMetricaWithAPIKey:analyticsDictionary[ARYandexMobileMetricaAPIKey]];
}
if (analyticsDictionary[ARAdjustAppTokenKey]) {
[self setupAdjustWithAppToken:analyticsDictionary[ARAdjustAppTokenKey]];
}
if (analyticsDictionary[ARSnowplowURL]) {
[self setupSnowplowWithAddress:analyticsDictionary[ARSnowplowURL]];
}
if (analyticsDictionary[ARSentryID]) {
[self setupSentryWithID:analyticsDictionary[ARSentryID]];
}
if (analyticsDictionary[ARIntercomAppID] && analyticsDictionary[ARIntercomAPIKey]) {
[self setupIntercomWithAppID:analyticsDictionary[ARIntercomAppID] apiKey:analyticsDictionary[ARIntercomAPIKey]];
}
// Add future integrations here:
// Crashlytics / Crittercism should stay at the bottom of this method,
// as they both need to register exceptions, and you'd only use one.
if (analyticsDictionary[ARCrashlyticsAPIKey]) {
[self setupCrashlyticsWithAPIKey:analyticsDictionary[ARCrashlyticsAPIKey]];
}
if (analyticsDictionary[ARFabricKits]) {
[self setupFabricWithKits:analyticsDictionary[ARFabricKits]];
}
if (analyticsDictionary[ARCrittercismAppID]) {
[self setupCrittercismWithAppID:analyticsDictionary[ARCrittercismAppID]];
}
}
+ (void)setupProvider:(ARAnalyticalProvider*)provider
{
_sharedAnalytics.providers = [_sharedAnalytics.providers setByAddingObject:provider];
}
+ (void)removeProvider:(ARAnalyticalProvider *)provider
{
NSMutableSet *mutableSet = [NSMutableSet setWithSet:_sharedAnalytics.providers];
[mutableSet removeObject:provider];
_sharedAnalytics.providers = mutableSet;
}
+ (NSSet *)currentProviders
{
return _sharedAnalytics.providers;
}
+ (ARAnalyticalProvider *)providerInstanceOfClass:(Class)ProviderClass
{
// Check whether the ProviderClass is subclass of ARAnalyticalProvider or not
if (![ProviderClass isSubclassOfClass:ARAnalyticalProvider.class]) {
return nil;
}
// Find the instance by enumerating the providers set
ARAnalyticalProvider *__block providerInstance = nil;
[_sharedAnalytics.providers enumerateObjectsUsingBlock:^(id obj, BOOL *stop) {
// Get the proivder and return it
if ((*stop = [obj isKindOfClass:ProviderClass])) {
providerInstance = obj;
}
}];
return providerInstance;
}
+ (void)setupTestFlightWithAppToken:(NSString *)token
{
#ifdef AR_TESTFLIGHT_EXISTS
TestFlightProvider *provider = [[TestFlightProvider alloc] initWithIdentifier:token];
[self setupProvider:provider];
#endif
}
+ (void)setupCrashlyticsWithAPIKey:(NSString *)key
{
#ifdef AR_CRASHLYTICS_EXISTS
CrashlyticsProvider *provider = [[CrashlyticsProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupFabricWithKits:(NSArray *)kits
{
#ifdef AR_FABRIC_EXISTS
FabricProvider *provider = [[FabricProvider alloc] initWithKits:kits];
if (provider){
[self setupProvider:provider];
}
#endif
}
+ (void)setupMixpanelWithToken:(NSString *)token
{
#ifdef AR_MIXPANEL_EXISTS
[self setupMixpanelWithToken:token andHost:nil];
#endif
}
+ (void)setupMixpanelWithToken:(NSString *)token andHost:(NSString *)host
{
#ifdef AR_MIXPANEL_EXISTS
MixpanelProvider *provider = [[MixpanelProvider alloc] initWithIdentifier:token andHost:host];
[self setupProvider:provider];
#endif
}
+ (void)setupFlurryWithAPIKey:(NSString *)key
{
#ifdef AR_FLURRY_EXISTS
FlurryProvider *provider = [[FlurryProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupGoogleAnalyticsWithID:(NSString *)identifier
{
#ifdef AR_GOOGLEANALYTICS_EXISTS
GoogleAnalyticsProvider *provider = [[GoogleAnalyticsProvider alloc] initWithIdentifier:identifier];
[self setupProvider:provider];
#endif
}
+ (void)setupLocalyticsWithAppKey:(NSString *)key
{
#ifdef AR_LOCALYTICS_EXISTS
LocalyticsProvider *provider = [[LocalyticsProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupKISSMetricsWithAPIKey:(NSString *)key
{
#ifdef AR_KISSMETRICS_EXISTS
KISSMetricsProvider *provider = [[KISSMetricsProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupCrittercismWithAppID:(NSString *)appID
{
#ifdef AR_CRITTERCISM_EXISTS
CrittercismProvider *provider = [[CrittercismProvider alloc] initWithIdentifier:appID];
[self setupProvider:provider];
#endif
}
+ (void)setupCountlyWithAppKey:(NSString *)key andHost:(NSString *)host
{
#ifdef AR_COUNTLY_EXISTS
CountlyProvider *provider = [[CountlyProvider alloc] initWithAppKey:key andHost:host];
[self setupProvider:provider];
#endif
}
+ (void)setupBugsnagWithAPIKey:(NSString *)key
{
#ifdef AR_BUGSNAG_EXISTS
BugsnagProvider *provider = [[BugsnagProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupHelpshiftWithAppID:(NSString *)appID domainName:(NSString *)domainName apiKey:(NSString *)apiKey
{
#ifdef AR_HELPSHIFT_EXISTS
HelpshiftProvider *provider = [[HelpshiftProvider alloc] initWithAppID:appID domainName:domainName apiKey:apiKey];
[self setupProvider:provider];
#endif
}
+ (void)setupTapstreamWithAccountName:(NSString *)accountName developerSecret:(NSString *)developerSecret
{
#ifdef AR_TAPSTREAM_EXISTS
TapstreamProvider *provider = [[TapstreamProvider alloc] initWithAccountName:accountName developerSecret:developerSecret];
[self setupProvider:provider];
#endif
}
+ (void)setupTapstreamWithAccountName:(NSString *)accountName developerSecret:(NSString *)developerSecret config:(TSConfig *)config
{
#ifdef AR_TAPSTREAM_EXISTS
TapstreamProvider *provider = [[TapstreamProvider alloc] initWithAccountName:accountName developerSecret:developerSecret config:config];
[self setupProvider:provider];
#endif
}
+ (void)setupNewRelicWithAppToken:(NSString *)token
{
#ifdef AR_NEWRELIC_EXISTS
NewRelicProvider *provider = [[NewRelicProvider alloc] initWithIdentifier:token];
[self setupProvider:provider];
#endif
}
+ (void)setupAmplitudeWithAPIKey:(NSString *)key
{
#ifdef AR_AMPLITUDE_EXISTS
AmplitudeProvider *provider = [[AmplitudeProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupHockeyAppWithBetaID:(NSString *)betaID
{
#ifdef AR_HOCKEYAPP_EXISTS
[self setupHockeyAppWithBetaID:betaID liveID:nil];
#endif
}
+ (void)setupHockeyAppWithBetaID:(NSString *)betaID liveID:(NSString *)liveID
{
#ifdef AR_HOCKEYAPP_EXISTS
HockeyAppProvider *provider = [[HockeyAppProvider alloc] initWithBetaIdentifier:betaID liveIdentifier:liveID];
[self setupProvider:provider];
#endif
}
+ (void)setupParseAnalyticsWithApplicationID:(NSString *)appID clientKey:(NSString *)clientKey
{
#ifdef AR_PARSEANALYTICS_EXISTS
ParseAnalyticsProvider *provider = [[ParseAnalyticsProvider alloc] initWithApplicationID:appID clientKey:clientKey];
[self setupProvider:provider];
#endif
}
+ (void)setupHeapAnalyticsWithApplicationID:(NSString *)appID
{
#ifdef AR_HEAPANALYTICS_EXISTS
HeapAnalyticsProvider *provider = [[HeapAnalyticsProvider alloc] initWithIdentifier:appID];
[self setupProvider:provider];
#endif
}
+ (void)setupChartbeatWithApplicationID:(NSString *)appID
{
#ifdef AR_CHARTBEAT_EXISTS
ChartbeatProvider *provider = [[ChartbeatProvider alloc] initWithIdentifier:appID];
[self setupProvider:provider];
#endif
}
+ (void)setupUMengAnalyticsIDWithAppkey:(NSString *)appID
{
#ifdef AR_UMENGANALYTICS_EXISTS
UMengAnalyticsProvider *provider = [[UMengAnalyticsProvider alloc] initWithIdentifier:appID];
[self setupProvider:provider];
#endif
}
+ (void)setupLibratoWithEmail:(NSString *)email token:(NSString *)token prefix:(NSString *)prefix
{
#ifdef AR_LIBRATO_EXISTS
LibratoProvider *provider = [[LibratoProvider alloc] initWithEmail:email token:token prefix:prefix];
[self setupProvider:provider];
#endif
}
+ (void)setupSegmentioWithWriteKey:(NSString *)key
{
#ifdef AR_SEGMENTIO_EXISTS
SegmentioProvider *provider = [[SegmentioProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupSwrveWithAppID:(NSString *)appID apiKey:(NSString *)apiKey
{
#ifdef AR_SWRVE_EXISTS
SwrveProvider *provider = [[SwrveProvider alloc] initWithAppID:appID apiKey:apiKey];
[self setupProvider:provider];
#endif
}
+ (void)setupYandexMobileMetricaWithAPIKey:(NSString *)key
{
#ifdef AR_YANDEXMOBILEMETRICA_EXISTS
YandexMobileMetricaProvider *provider = [[YandexMobileMetricaProvider alloc] initWithIdentifier:key];
[self setupProvider:provider];
#endif
}
+ (void)setupAdjustWithAppToken:(NSString *)token
{
#ifdef AR_ADJUST_EXISTS
AdjustProvider *provider = [[AdjustProvider alloc] initWithIdentifier:token];
[self setupProvider:provider];
#endif
}
+ (void)setupAppsFlyerWithAppID:(NSString *)appID devKey:(NSString *)devKey
{
#ifdef AR_APPSFLYER_EXISTS
AppsFlyerProvider *provider = [[AppsFlyerProvider alloc] initWithAppID:appID devKey:devKey];
[self setupProvider:provider];
#endif
}
+ (void)setupBranchWithAPIKey:(NSString *)key {
#ifdef AR_BRANCH_EXISTS
BranchProvider *provider = [[BranchProvider alloc] initWithAPIKey:key];
[self setupProvider:provider];
#endif
}
+ (void)setupSnowplowWithAddress:(NSString *)address
{
#ifdef AR_SNOWPLOW_EXISTS
SnowplowProvider *provider = [[SnowplowProvider alloc] initWithAddress:address];
[self setupProvider:provider];
#endif
}
+ (void)setupSentryWithID:(NSString *)identifier
{
#ifdef AR_SENTRY_EXISTS
SentryProvider *provider = [[SentryProvider alloc] initWithIdentifier:identifier];
[self setupProvider:provider];
#endif
}
+ (void)setupIntercomWithAppID:(NSString *)identifier apiKey:(NSString *)apiKey
{
#ifdef AR_INTERCOM_EXISTS
IntercomProvider *provider = [[IntercomProvider alloc] initWithWithAppID:identifier apiKey:apiKey];
[self setupProvider:provider];
#endif
}
#pragma mark -
#pragma mark User Setup
+ (void)identifyUserWithID:(NSString *)userID andEmailAddress:(NSString *)email
{
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider identifyUserWithID:userID andEmailAddress:email];
}];
}
+ (void)setUserProperty:(NSString *)property toValue:(NSString *)value
{
if (value == nil) {
NSLog(@"ARAnalytics: Value cannot be nil ( %@ ) ", property);
return;
}
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider setUserProperty:property toValue:value];
}];
}
+ (void)incrementUserProperty:(NSString *)counterName byInt:(NSInteger)amount
{
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider incrementUserProperty:counterName byInt:@(amount)];
}];
}
#pragma mark -
#pragma mark Events
+ (void)event:(NSString *)event
{
[self event:event withProperties:nil];
}
+ (void)event:(NSString *)event withProperties:(NSDictionary *)properties
{
NSMutableDictionary *fullProperties = [NSMutableDictionary dictionaryWithDictionary:properties];
[fullProperties addEntriesFromDictionary:_sharedAnalytics.superProperties];
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider event:event withProperties:fullProperties];
}];
}
+ (void)addEventSuperProperties:(NSDictionary *)superProperties
{
[_sharedAnalytics.superProperties addEntriesFromDictionary:superProperties];
}
+ (void)removeEventSuperProperty:(NSString *)key;
{
[_sharedAnalytics.superProperties removeObjectForKey:key];
}
+ (void)removeEventSuperProperties:(NSArray *)keys;
{
[_sharedAnalytics.superProperties removeObjectsForKeys:keys];
}
#pragma mark -
#pragma mark Errors
+ (void)error:(NSError *)error
{
[self error:error withMessage:nil];
}
+ (void)error:(NSError *)error withMessage:(NSString *)message
{
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider error:error withMessage:message];
}];
}
#pragma mark -
#pragma mark Screen views
+ (void)pageView:(NSString *)pageTitle
{
[self pageView:pageTitle withProperties:nil];
}
+ (void)pageView:(NSString *)pageTitle withProperties:(NSDictionary *)properties
{
if (!pageTitle) return;
NSMutableDictionary *fullProperties = [properties ?: @{} mutableCopy];
[fullProperties addEntriesFromDictionary:_sharedAnalytics.superProperties];
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider didShowNewPageView:pageTitle withProperties:fullProperties];
}];
}
#pragma mark -
#pragma mark Monitor Navigation Controller
+ (void)monitorNavigationViewController:(UINavigationController *)controller
{
[self monitorNavigationController:controller];
}
+ (void)monitorNavigationController:(UINavigationController *)controller
{
#if TARGET_OS_IPHONE
// Set a new original delegate on the proxy
_sharedAnalytics.proxyDelegate.originalDelegate = controller.delegate;
// Then set the new controllers delegate as the proxy
controller.delegate = _sharedAnalytics.proxyDelegate;
#endif
}
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
#if TARGET_OS_IPHONE
[self.class pageView:viewController.title];
#endif
}
#if TARGET_OS_IPHONE
/// Lazily loaded
- (ARNavigationControllerDelegateProxy *)proxyDelegate
{
if (!_proxyDelegate) {
_proxyDelegate = [[ARNavigationControllerDelegateProxy alloc] initWithAnalyticsDelegate:self];
}
return _proxyDelegate;
}
#endif
#pragma mark -
#pragma mark Timing Events
+ (void)startTimingEvent:(NSString *)event
{
if (!_sharedAnalytics.eventsDictionary) {
_sharedAnalytics.eventsDictionary = [NSMutableDictionary dictionary];
}
_sharedAnalytics.eventsDictionary[event] = [NSDate date];
}
+ (void)finishTimingEvent:(NSString *)event
{
[self finishTimingEvent:event withProperties:nil];
}
+ (void)finishTimingEvent:(NSString *)event withProperties:(NSDictionary *)properties
{
NSDate *startDate = _sharedAnalytics.eventsDictionary[event];
if (!startDate) {
NSLog(@"ARAnalytics: finish timing event called without a corrosponding start timing event");
return;
}
NSTimeInterval eventInterval = [[NSDate date] timeIntervalSinceDate:startDate];
[_sharedAnalytics.eventsDictionary removeObjectForKey:event];
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider logTimingEvent:event withInterval:@(eventInterval) properties:properties];
}];
}
#pragma mark -
#pragma mark Util
- (void)iterateThroughProviders:(void(^)(ARAnalyticalProvider *provider))providerBlock
{
for (ARAnalyticalProvider *provider in self.providers) {
providerBlock(provider);
}
}
@end
void ARLog (NSString *format, ...) {
if (format == nil) {
if (_ARLogShouldPrintStdout) {
printf("nil \n");
}
return;
}
// Get a reference to the arguments that follow the format parameter
va_list argList;
va_start(argList, format);
// Perform format string argument substitution, reinstate %% escapes, then print
@autoreleasepool {
NSString *parsedFormatString = [[NSString alloc] initWithFormat:format arguments:argList];
parsedFormatString = [parsedFormatString stringByReplacingOccurrencesOfString:@"%%" withString:@"%%%%"];
if (_ARLogShouldPrintStdout) {
printf("ARLog : %s\n", parsedFormatString.UTF8String);
}
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider remoteLog:parsedFormatString];
}];
}
va_end(argList);
}
void ARAnalyticsEvent (NSString *event, NSDictionary *properties) {
@try {
[ARAnalytics event:event withProperties:properties];
}
@catch (NSException *exception) {
NSLog(@"ARAnalytics: Exception raised when handling event %@ - %@ - %@", event, exception.name, exception.reason);
}
}
const NSString *ARCountlyAppKey = @"ARCountlyAppKey";
const NSString *ARCountlyHost = @"ARCountlyHost";
const NSString *ARTestFlightAppToken = @"ARTestFlight";
const NSString *ARCrashlyticsAPIKey = @"ARCrashlytics";
const NSString *ARFabricKits = @"ARFabricKits";
const NSString *ARMixpanelToken = @"ARMixpanel";
const NSString *ARMixpanelHost = @"ARMixpanelHost";
const NSString *ARFlurryAPIKey = @"ARFlurry";
const NSString *ARBugsnagAPIKey = @"ARBugsnag";
const NSString *ARLocalyticsAppKey = @"ARLocalytics";
const NSString *ARKISSMetricsAPIKey = @"ARKISSMetrics";
const NSString *ARCrittercismAppID = @"ARCrittercism";
const NSString *ARGoogleAnalyticsID = @"ARGoogleAnalytics";
const NSString *ARHelpshiftAppID = @"ARHelpshiftAppID";
const NSString *ARHelpshiftDomainName = @"ARHelpshiftDomainName";
const NSString *ARHelpshiftAPIKey = @"ARHelpshiftAPIKey";
const NSString *ARTapstreamAccountName = @"ARTapstreamAccountName";
const NSString *ARTapstreamDeveloperSecret = @"ARTapstreamDeveloperSecret";
const NSString *ARTapstreamConfig = @"ARTapstreamConfig";
const NSString *ARNewRelicAppToken = @"ARNewRelicAppToken";
const NSString *ARAmplitudeAPIKey = @"ARAmplitudeAPIKey";
const NSString *ARHockeyAppLiveID = @"ARHockeyAppLiveID";
const NSString *ARHockeyAppBetaID = @"ARHockeyAppBetaID";
const NSString *ARParseApplicationID = @"ARParseApplicationID";
const NSString *ARParseClientKey = @"ARParseClientKey";
const NSString *ARHeapAppID = @"ARHeapAppID";
const NSString *ARChartbeatID = @"ARChartbeatID";
const NSString *ARUMengAnalyticsID = @"ARUMengAnalyticsID";
const NSString *ARLibratoEmail = @"ARLibratoEmail";
const NSString *ARLibratoToken = @"ARLibratoToken";
const NSString *ARLibratoPrefix = @"ARLibratoPrefix";
const NSString *ARSegmentioWriteKey = @"ARSegmentioWriteKey";
const NSString *ARSwrveAppID = @"ARSwrveAppID";
const NSString *ARSwrveAPIKey = @"ARSwrveAPIKey";
const NSString *ARYandexMobileMetricaAPIKey = @"ARYandexMobileMetricaAPIKey";
const NSString *ARAdjustAppTokenKey = @"ARAdjustAppTokenKey";
const NSString *ARAppsFlyerAppID = @"ARAppsFlyerAppID";
const NSString *ARAppsFlyerDevKey = @"ARAppsFlyerDevKey";
const NSString *ARBranchAPIKey = @"ARBranchAPIKey";
const NSString *ARSnowplowURL = @"ARSnowplowURL";
const NSString *ARSentryID = @"ARSentryID";
const NSString *ARIntercomAppID = @"ARIntercomAppID";
const NSString *ARIntercomAPIKey = @"ARIntercomAPIKey";