forked from orta/ARAnalytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARAnalytics.m
516 lines (420 loc) · 17.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
//
// ARAnalytics.m
// Art.sy
//
// Created by orta therox on 18/12/2012.
// Copyright (c) 2012 Art.sy. All rights reserved.
//
#import "ARAnalytics.h"
#import "ARAnalyticalProvider.h"
#import "ARAnalyticsProviders.h"
static ARAnalytics *_sharedAnalytics;
@interface ARAnalytics ()
@property (strong) NSMutableDictionary *eventsDictionary;
@property (strong) 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];
});
}
#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]];
}
// Crashlytics / Crittercism should stay at the bottom of this,
// as they both need to register exceptions, and you'd only use one.
if (analyticsDictionary[ARCrashlyticsAPIKey]) {
[self setupCrashlyticsWithAPIKey:analyticsDictionary[ARCrashlyticsAPIKey]];
}
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.copy;
}
+ (NSSet *)currentProviders
{
return _sharedAnalytics.providers;
}
+ (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)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
}
#pragma mark -
#pragma mark User Setup
// deprecated; use the one without the typo
+ (void)identifyUserwithID:(NSString *)userID andEmailAddress:(NSString *)email {
[self identifyUserWithID:userID andEmailAddress:email];
}
+ (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 {
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider event:event withProperties:properties];
}];
}
#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 Monitor Navigation Controller
+ (void)pageView:(NSString *)pageTitle {
if (!pageTitle) return;
[_sharedAnalytics iterateThroughProviders:^(ARAnalyticalProvider *provider) {
[provider didShowNewPageView:pageTitle];
}];
}
+ (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 _providers) {
providerBlock(provider);
}
}
@end
void ARLog (NSString *format, ...) {
if (format == nil) {
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:@"%%%%"];
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 *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";