17
17
#import " UIDevice+AIAdditions.h"
18
18
#import " NSString+AIAdditions.h"
19
19
#import " AIAdjustFactory.h"
20
+ #if !ADJUST_NO_IDA
21
+ #import < iAd/iAd.h>
22
+ #endif
20
23
21
24
static NSString * const kActivityStateFilename = @" AdjustIoActivityState" ;
25
+ static NSString * const kAdjustPrefix = @" adjust_" ;
22
26
static const char * const kInternalQueueName = " io.adjust.ActivityQueue" ;
23
27
24
- static const uint64_t kTimerInterval = 60 * NSEC_PER_SEC; // 1 minute
25
- static const uint64_t kTimerLeeway = 1 * NSEC_PER_SEC; // 1 second
28
+ static const uint64_t kTimerInterval = 60 * NSEC_PER_SEC; // 1 minute
29
+ static const uint64_t kTimerLeeway = 1 * NSEC_PER_SEC; // 1 second
26
30
27
31
28
32
#pragma mark -
@@ -43,6 +47,8 @@ @interface AIActivityHandler()
43
47
@property (nonatomic , copy ) NSString *clientSdk;
44
48
@property (nonatomic , assign ) BOOL trackingEnabled;
45
49
@property (nonatomic , assign ) BOOL internalEnabled;
50
+ @property (nonatomic , assign ) BOOL isIad;
51
+ @property (nonatomic , copy ) NSString *vendorId;
46
52
47
53
@end
48
54
@@ -141,6 +147,12 @@ - (BOOL)isEnabled {
141
147
}
142
148
}
143
149
150
+ - (void )readOpenUrl : (NSURL *)url {
151
+ dispatch_async (self.internalQueue , ^{
152
+ [self readOpenUrlInternal: url];
153
+ });
154
+ }
155
+
144
156
#pragma mark - internal
145
157
- (void )initInternal : (NSString *)yourAppToken {
146
158
if (![self checkAppTokenNotNil: yourAppToken]) return ;
@@ -156,6 +168,15 @@ - (void)initInternal:(NSString *)yourAppToken {
156
168
self.idForAdvertisers = UIDevice.currentDevice .aiIdForAdvertisers ;
157
169
self.fbAttributionId = UIDevice.currentDevice .aiFbAttributionId ;
158
170
self.userAgent = AIUtil.userAgent ;
171
+ self.vendorId = UIDevice.currentDevice .aiVendorId ;
172
+
173
+ #if !ADJUST_NO_IDA
174
+ if (NSClassFromString (@" ADClient" )) {
175
+ [ADClient.sharedClient determineAppInstallationAttributionWithCompletionHandler: ^(BOOL appInstallationWasAttributedToiAd) {
176
+ self.isIad = appInstallationWasAttributedToiAd;
177
+ }];
178
+ }
179
+ #endif
159
180
160
181
self.packageHandler = [AIAdjustFactory packageHandlerForActivityHandler: self ];
161
182
[self readActivityState ];
@@ -309,6 +330,40 @@ - (void)revenueInternal:(double)amount
309
330
[self .logger debug: @" Event %d (revenue)" , self .activityState.eventCount];
310
331
}
311
332
333
+ - (void ) readOpenUrlInternal : (NSURL *)url {
334
+ NSArray * queryArray = [url.query componentsSeparatedByString: @" &" ];
335
+ NSMutableDictionary * adjustDeepLinks = [NSMutableDictionary dictionary ];
336
+
337
+ for (NSString * fieldValuePair in queryArray) {
338
+ NSArray * pairComponents = [fieldValuePair componentsSeparatedByString: @" =" ];
339
+ if (pairComponents.count != 2 ) continue ;
340
+
341
+ NSString * key = [pairComponents objectAtIndex: 0 ];
342
+ if (![key hasPrefix: kAdjustPrefix ]) continue ;
343
+
344
+ NSString * value = [pairComponents objectAtIndex: 1 ];
345
+ if (value.length == 0 ) continue ;
346
+
347
+ NSString * keyWOutPrefix = [key substringFromIndex: kAdjustPrefix .length];
348
+ if (keyWOutPrefix.length == 0 ) continue ;
349
+
350
+ [adjustDeepLinks setObject: value forKey: keyWOutPrefix];
351
+ }
352
+
353
+ if (adjustDeepLinks.count == 0 ) {
354
+ return ;
355
+ }
356
+
357
+ AIPackageBuilder *reattributionBuilder = [[AIPackageBuilder alloc ] init ];
358
+ reattributionBuilder.deeplinkParameters = adjustDeepLinks;
359
+ [self injectGeneralAttributes: reattributionBuilder];
360
+ AIActivityPackage *reattributionPackage = [reattributionBuilder buildReattributionPackage ];
361
+ [self .packageHandler addPackage: reattributionPackage];
362
+ [self .packageHandler sendFirstPackage ];
363
+
364
+ [self .logger debug: @" Reattribution %@ " , adjustDeepLinks];
365
+ }
366
+
312
367
#pragma mark - private
313
368
314
369
// returns whether or not the activity state should be written
@@ -358,7 +413,7 @@ - (void)writeActivityState {
358
413
BOOL result = [NSKeyedArchiver archiveRootObject: self .activityState toFile: filename];
359
414
if (result == YES ) {
360
415
[AIUtil excludeFromBackup: filename];
361
- [self .logger verbose :@" Wrote activity state: %@ " , self .activityState];
416
+ [self .logger debug :@" Wrote activity state: %@ " , self .activityState];
362
417
} else {
363
418
[self .logger error: @" Failed to write activity state" ];
364
419
}
@@ -389,6 +444,8 @@ - (void)injectGeneralAttributes:(AIPackageBuilder *)builder {
389
444
builder.idForAdvertisers = self.idForAdvertisers ;
390
445
builder.fbAttributionId = self.fbAttributionId ;
391
446
builder.environment = self.environment ;
447
+ builder.isIad = self.isIad ;
448
+ builder.vendorId = self.vendorId ;
392
449
393
450
if (self.trackMacMd5 ) {
394
451
builder.macShortMd5 = self.macShortMd5 ;
0 commit comments