Advertisement
Guest User

MKStoreKit.m

a guest
Nov 27th, 2013
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import "MKStoreManager.h"
  2.  
  3. @interface MKStoreManager (PrivateMethods)
  4.  
  5. - (void) requestProductData;
  6. - (BOOL) canCurrentDeviceUseFeature: (NSString*) featureID;
  7. - (BOOL) verifyReceipt:(NSData*) receiptData;
  8. - (void) enableContentForThisSession: (NSString*) productIdentifier;
  9.  
  10. @end
  11.  
  12. @implementation MKStoreManager
  13.  
  14. @synthesize catalog = _catalog;
  15. @synthesize purchasableObjects = _purchasableObjects;
  16. @synthesize storeObserver = _storeObserver;
  17.  
  18. static NSString *ownServer = nil;
  19.  
  20. static __weak id<MKStoreKitDelegate> _delegate;
  21. static MKStoreManager* _sharedStoreManager;
  22.  
  23.  
  24. - (void)dealloc {
  25.    
  26.     [_purchasableObjects release];
  27.    
  28.     [_storeObserver release];
  29.  
  30.     [_sharedStoreManager release];
  31.  
  32.     [super dealloc];
  33. }
  34.  
  35. #pragma mark Delegates
  36.  
  37. + (id)delegate {
  38.    
  39.     return _delegate;
  40. }
  41.  
  42. + (void)setDelegate:(id)newDelegate {
  43.    
  44.     _delegate = newDelegate;   
  45. }
  46.  
  47. #pragma mark Singleton Methods
  48.  
  49. + (MKStoreManager*)sharedManager {
  50.     @synchronized(self) {
  51.         if (_sharedStoreManager == nil) {
  52.             NSLog(@"!");
  53.             _sharedStoreManager = [[self alloc] init];
  54.             _sharedStoreManager.purchasableObjects = [[[NSMutableArray alloc] init] autorelease];
  55.             [_sharedStoreManager requestProductData];                      
  56.             _sharedStoreManager.storeObserver = [[[MKStoreObserver alloc] init] autorelease];
  57.             [[SKPaymentQueue defaultQueue] addTransactionObserver:_sharedStoreManager.storeObserver];
  58.         }
  59.     }
  60.     return _sharedStoreManager;
  61. }
  62.  
  63.  
  64. + (id)allocWithZone:(NSZone *)zone
  65. {  
  66.     @synchronized(self) {
  67.        
  68.         if (_sharedStoreManager == nil) {
  69.            
  70.             _sharedStoreManager = [super allocWithZone:zone];
  71.  
  72.             return _sharedStoreManager;  // assignment and return on first allocation
  73.         }
  74.     }
  75.    
  76.     return nil; //on subsequent allocation attempts return nil 
  77. }
  78.  
  79.  
  80. - (id)copyWithZone:(NSZone *)zone
  81. {
  82.     return self;   
  83. }
  84.  
  85. - (id)retain
  86. {  
  87.     return self;   
  88. }
  89.  
  90. - (unsigned)retainCount
  91. {
  92.     return UINT_MAX;  //denotes an object that cannot be released
  93. }
  94.  
  95.  
  96. - (id)autorelease
  97. {
  98.     return self;   
  99. }
  100.  
  101. #pragma mark Internal MKStoreKit functions
  102.  
  103. - (void) restorePreviousTransactions
  104. {
  105.     [[SKPaymentQueue defaultQueue] restoreCompletedTransactions];
  106. }
  107.  
  108.  - (void)connection:(NSURLConnection*)connection didReceiveData:(NSData*)data {
  109.    [_catalog_data appendData:data];
  110.  }
  111.  
  112.  - (void)connectionDidFinishLoading:(NSURLConnection *)connection {
  113.    _catalog = (NSMutableDictionary*)CFPropertyListCreateFromXMLData(kCFAllocatorDefault, (CFDataRef)_catalog_data, kCFPropertyListMutableContainersAndLeaves, nil);
  114.    [_catalog_data release];
  115.    _catalog_data = nil;
  116.    
  117. #if TARGET_IPHONE_SIMULATOR
  118.    if([_delegate respondsToSelector:@selector(productFetchComplete)])
  119.      [_delegate productFetchComplete]
  120. #else
  121.    NSMutableSet* __ids = [NSMutableSet set];
  122.    NSArray* __keys = [_catalog allKeys];
  123.    
  124.    for (int i = 0; i < __keys.count; i++)
  125.      [__ids addObject:[[_catalog objectForKey:[__keys objectAtIndex:i]] objectForKey:@"ID"]];
  126.    
  127.    SKProductsRequest *request= [[SKProductsRequest alloc] initWithProductIdentifiers:__ids];
  128.    request.delegate = self;
  129.    [request start];
  130. #endif
  131.  }
  132.  
  133. -(void) requestProductData {
  134.   if (!_catalog_data) _catalog_data = [[NSMutableData alloc] init];
  135.  
  136.     NSURL *__url = [NSURL URLWithString:catalogURL];
  137.    [NSURLConnection connectionWithRequest:[NSURLRequest requestWithURL:__url] delegate:self];
  138.  
  139.   _catalog = [[NSMutableDictionary alloc] initWithContentsOfURL:[NSURL URLWithString:catalogURL]];
  140.  
  141.   NSMutableSet* __ids = [NSMutableSet set];
  142.   NSArray* __keys = [_catalog allKeys];
  143.  
  144.   for (int i = 0; i < __keys.count; i++) {
  145.     //NSString* _id = [NSString stringWithFormat:@"%@%@", baseProductId, [[_products objectAtIndex:i] objectForKey:@"ID"]];
  146.     //NSLog(@"%@\n", [[_catalog objectForKey:[__keys objectAtIndex:i]] objectForKey:@"ID"]);
  147.     [__ids addObject:[[_catalog objectForKey:[__keys objectAtIndex:i]] objectForKey:@"ID"]];
  148.   }
  149.  
  150.     SKProductsRequest *request= [[SKProductsRequest alloc] initWithProductIdentifiers:__ids];
  151.     request.delegate = self;
  152.     [request start];
  153. }
  154.  
  155. - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
  156. {
  157.     [self.purchasableObjects addObjectsFromArray:response.products];
  158.    
  159. #ifndef NDEBUG
  160.     for(int i=0;i<[self.purchasableObjects count];i++)
  161.     {      
  162.         SKProduct *product = [self.purchasableObjects objectAtIndex:i];
  163.         NSLog(@"Feature: %@, Cost: %f, ID: %@",[product localizedTitle],
  164.               [[product price] doubleValue], [product productIdentifier]);
  165.     }
  166.    
  167.     for(NSString *invalidProduct in response.invalidProductIdentifiers)
  168.         NSLog(@"Problem in iTunes connect configuration for product: %@", invalidProduct);
  169. #endif
  170.    
  171.     [request autorelease];
  172.    
  173.     isProductsAvailable = YES;
  174.    
  175.     if([_delegate respondsToSelector:@selector(productFetchComplete)])
  176.         [_delegate productFetchComplete];  
  177. }
  178.  
  179.  
  180. // call this function to check if the user has already purchased your feature
  181. + (BOOL) isFeaturePurchased:(NSString*) featureId
  182. {
  183.     return [[NSUserDefaults standardUserDefaults] boolForKey:featureId];
  184. }
  185.  
  186. - (SKProduct*) getSKProductByID:(NSString*) featureId {
  187.   for(int i=0; i < [self.purchasableObjects count]; i++) {
  188.         SKProduct *product = [self.purchasableObjects objectAtIndex:i];
  189.     if ([[product productIdentifier] isEqualToString:featureId]) return product;
  190.     }
  191.   return nil;
  192. }
  193.  
  194. // Call this function to populate your UI
  195. // this function automatically formats the currency based on the user's locale
  196.  
  197. - (NSMutableArray*) purchasableObjectsDescription
  198. {
  199.     NSMutableArray *productDescriptions = [[NSMutableArray alloc] initWithCapacity:[self.purchasableObjects count]];
  200.     for(int i=0;i<[self.purchasableObjects count];i++)
  201.     {
  202.         SKProduct *product = [self.purchasableObjects objectAtIndex:i];
  203.        
  204.         NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
  205.         [numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
  206.         [numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
  207.         [numberFormatter setLocale:product.priceLocale];
  208.         NSString *formattedString = [numberFormatter stringFromNumber:product.price];
  209.         [numberFormatter release];
  210.        
  211.         // you might probably need to change this line to suit your UI needs
  212.         NSString *description = [NSString stringWithFormat:@"%@ (%@)",[product localizedTitle], formattedString];
  213.        
  214. #ifndef NDEBUG
  215.         NSLog(@"Product %d - %@", i, description);
  216. #endif
  217.         [productDescriptions addObject: description];
  218.     }
  219.    
  220.     [productDescriptions autorelease];
  221.     return productDescriptions;
  222. }
  223.  
  224. - (void) buyFeature:(NSString*) featureId
  225. {
  226.     if([self canCurrentDeviceUseFeature: featureId])
  227.     {
  228.         UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Review request approved", @"")
  229.                                                         message:NSLocalizedString(@"You can use this feature for reviewing the app.", @"")
  230.                                                        delegate:self
  231.                                               cancelButtonTitle:NSLocalizedString(@"Dismiss", @"")
  232.                                               otherButtonTitles:nil];
  233.         [alert show];
  234.         [alert release];
  235.        
  236.         [self enableContentForThisSession:featureId];
  237.         return;
  238.     }
  239.    
  240.     if ([SKPaymentQueue canMakePayments])
  241.     {
  242.         SKPayment *payment = [SKPayment paymentWithProductIdentifier:featureId];
  243.         [[SKPaymentQueue defaultQueue] addPayment:payment];
  244.     }
  245.     else
  246.     {
  247.         UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"In-App Purchasing disabled", @"")
  248.                                                         message:NSLocalizedString(@"Check your parental control settings and try again later", @"")
  249.                                                        delegate:self
  250.                                               cancelButtonTitle:NSLocalizedString(@"Dismiss", @"")
  251.                                               otherButtonTitles: nil];
  252.         [alert show];
  253.         [alert release];
  254.     }
  255. }
  256.  
  257. - (BOOL) canConsumeProduct:(NSString*) productIdentifier
  258. {
  259.     int count = [[NSUserDefaults standardUserDefaults] integerForKey:productIdentifier];
  260.    
  261.     return (count > 0);
  262.    
  263. }
  264.  
  265. - (BOOL) canConsumeProduct:(NSString*) productIdentifier quantity:(int) quantity
  266. {
  267.     int count = [[NSUserDefaults standardUserDefaults] integerForKey:productIdentifier];
  268.     return (count >= quantity);
  269. }
  270.  
  271. - (BOOL) consumeProduct:(NSString*) productIdentifier quantity:(int) quantity
  272. {
  273.     int count = [[NSUserDefaults standardUserDefaults] integerForKey:productIdentifier];
  274.     if(count < quantity)
  275.     {
  276.         return NO;
  277.     }
  278.     else
  279.     {
  280.         count -= quantity;
  281.         [[NSUserDefaults standardUserDefaults] setInteger:count forKey:productIdentifier];
  282.         return YES;
  283.     }
  284.    
  285. }
  286.  
  287. -(void) enableContentForThisSession: (NSString*) productIdentifier
  288. {
  289.     if([_delegate respondsToSelector:@selector(productPurchased:)])
  290.         [_delegate productPurchased:productIdentifier];
  291. }
  292.  
  293.                              
  294. #pragma mark In-App purchases callbacks
  295. // In most cases you don't have to touch these methods
  296. -(void) provideContent: (NSString*) productIdentifier
  297.            forReceipt:(NSData*) receiptData
  298. {
  299.     if(ownServer != nil && SERVER_PRODUCT_MODEL)
  300.     {
  301.         // ping server and get response before serializing the product
  302.         // this is a blocking call to post receipt data to your server
  303.         // it should normally take a couple of seconds on a good 3G connection
  304.         if(![self verifyReceipt:receiptData]) return;
  305.     }
  306.  
  307.     NSRange range = [productIdentifier rangeOfString:baseProductId];       
  308.     NSString *countText = [productIdentifier substringFromIndex:range.location+[baseProductId length]];
  309.    
  310.     int quantityPurchased = [countText intValue];
  311.     if(quantityPurchased != 0)
  312.     {
  313.        
  314.         int oldCount = [[NSUserDefaults standardUserDefaults] integerForKey:productIdentifier];
  315.         oldCount += quantityPurchased; 
  316.        
  317.         [[NSUserDefaults standardUserDefaults] setInteger:oldCount forKey:productIdentifier];      
  318.     }
  319.     else
  320.     {
  321.         [[NSUserDefaults standardUserDefaults] setBool:YES forKey:productIdentifier];      
  322.     }
  323.  
  324.     [[NSUserDefaults standardUserDefaults] synchronize];
  325.  
  326.     if([_delegate respondsToSelector:@selector(productPurchased:)])
  327.         [_delegate productPurchased:productIdentifier];
  328. }
  329.  
  330. - (void) transactionCanceled: (SKPaymentTransaction *)transaction
  331. {
  332.  
  333. #ifndef NDEBUG
  334.     NSLog(@"User cancelled transaction: %@", [transaction description]);
  335. #endif
  336.    
  337.     if([_delegate respondsToSelector:@selector(transactionCanceled)])
  338.         [_delegate transactionCanceled];
  339. }
  340.  
  341. - (void) failedTransaction: (SKPaymentTransaction *)transaction
  342. {
  343.     UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[transaction.error localizedFailureReason]
  344.                                                     message:[transaction.error localizedRecoverySuggestion]
  345.                                                    delegate:self
  346.                                           cancelButtonTitle:NSLocalizedString(@"Dismiss", @"")
  347.                                           otherButtonTitles: nil];
  348.     [alert show];
  349.     [alert release];
  350. }
  351.  
  352.  
  353.  
  354. #pragma mark In-App purchases promo codes support
  355. // This function is only used if you want to enable in-app purchases for free for reviewers
  356. // Read my blog post http://mk.sg/31
  357. - (BOOL) canCurrentDeviceUseFeature: (NSString*) featureID
  358. {
  359.     NSString *uniqueID = [[[UIDevice currentDevice] identifierForVendor]UUIDString];
  360.     // check udid and featureid with developer's server
  361.    
  362.     if(ownServer == nil) return NO; // sanity check
  363.    
  364.     NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/%@", ownServer, @"featureCheck.php"]];
  365.    
  366.     NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url
  367.                                                               cachePolicy:NSURLRequestReloadIgnoringCacheData
  368.                                                           timeoutInterval:60];
  369.    
  370.     [theRequest setHTTPMethod:@"POST"];    
  371.     [theRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
  372.    
  373.     NSString *postData = [NSString stringWithFormat:@"productid=%@&udid=%@", featureID, uniqueID];
  374.    
  375.     NSString *length = [NSString stringWithFormat:@"%d", [postData length]];   
  376.     [theRequest setValue:length forHTTPHeaderField:@"Content-Length"]
  377.    
  378.     [theRequest setHTTPBody:[postData dataUsingEncoding:NSASCIIStringEncoding]];
  379.    
  380.     NSHTTPURLResponse* urlResponse = nil;
  381.     NSError *error = [[[NSError alloc] init] autorelease];  
  382.    
  383.     NSData *responseData = [NSURLConnection sendSynchronousRequest:theRequest
  384.                                                  returningResponse:&urlResponse
  385.                                                              error:&error];  
  386.    
  387.     NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSASCIIStringEncoding];
  388.    
  389.     BOOL retVal = NO;
  390.     if([responseString isEqualToString:@"YES"])    
  391.     {
  392.         retVal = YES;
  393.     }
  394.    
  395.     [responseString release];
  396.     return retVal;
  397. }
  398.  
  399. // This function is only used if you want to enable in-app purchases for free for reviewers
  400. // Read my blog post http://mk.sg/
  401.  
  402. -(BOOL) verifyReceipt:(NSData*) receiptData
  403. {
  404.     if(ownServer == nil) return NO; // sanity check
  405.    
  406.     NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/%@", ownServer, @"verifyProduct.php"]];
  407.    
  408.     NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url
  409.                                                               cachePolicy:NSURLRequestReloadIgnoringCacheData
  410.                                                           timeoutInterval:60];
  411.    
  412.     [theRequest setHTTPMethod:@"POST"];    
  413.     [theRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
  414.    
  415.     NSString *receiptDataString = [[NSString alloc] initWithData:receiptData encoding:NSASCIIStringEncoding];
  416.     NSString *postData = [NSString stringWithFormat:@"receiptdata=%@", receiptDataString];
  417.     [receiptDataString release];
  418.    
  419.     NSString *length = [NSString stringWithFormat:@"%d", [postData length]];   
  420.     [theRequest setValue:length forHTTPHeaderField:@"Content-Length"]
  421.    
  422.     [theRequest setHTTPBody:[postData dataUsingEncoding:NSASCIIStringEncoding]];
  423.    
  424.     NSHTTPURLResponse* urlResponse = nil;
  425.     NSError *error = [[[NSError alloc] init] autorelease];  
  426.    
  427.     NSData *responseData = [NSURLConnection sendSynchronousRequest:theRequest
  428.                                                  returningResponse:&urlResponse
  429.                                                              error:&error];  
  430.    
  431.     NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSASCIIStringEncoding];
  432.    
  433.     BOOL retVal = NO;
  434.     if([responseString isEqualToString:@"YES"])    
  435.     {
  436.         retVal = YES;
  437.     }
  438.    
  439.     [responseString release];
  440.     return retVal;
  441. }
  442. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement