forked from MugunthKumar/MKStoreKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MKSKSubscriptionProduct.m
155 lines (126 loc) · 5.55 KB
/
MKSKSubscriptionProduct.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
//
// MKSKSubscriptionProduct.m
// MKStoreKit (Version 4.2)
//
// Created by Mugunth on 03/07/11.
// Copyright 2011 Steinlogic. All rights reserved.
//
// Licensing (Zlib)
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
// As a side note on using this code, you might consider giving some credit to me by
// 1) linking my website from your app's website
// 2) or crediting me inside the app's credits page
// 3) or a tweet mentioning @mugunthkumar
// 4) A paypal donation to [email protected]
#import "MKSKSubscriptionProduct.h"
#import "NSData+Base64.h"
#if ! __has_feature(objc_arc)
#error MKStoreKit is ARC only. Either turn on ARC for the project or use -fobjc-arc flag
#endif
@implementation MKSKSubscriptionProduct
@synthesize onSubscriptionVerificationFailed;
@synthesize onSubscriptionVerificationCompleted;
@synthesize receipt;
@synthesize subscriptionDays;
@synthesize theConnection;
@synthesize dataFromConnection;
@synthesize productId;
-(id) initWithProductId:(NSString*) aProductId subscriptionDays:(int) days
{
if((self = [super init]))
{
self.productId = aProductId;
self.subscriptionDays = days;
}
return self;
}
- (void) verifyReceiptOnComplete:(void (^)(NSNumber*)) completionBlock
onError:(void (^)(NSError*)) errorBlock
{
self.onSubscriptionVerificationCompleted = completionBlock;
self.onSubscriptionVerificationFailed = errorBlock;
NSURL *url = [NSURL URLWithString:kReceiptValidationURL];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadIgnoringCacheData
timeoutInterval:60];
[theRequest setHTTPMethod:@"POST"];
[theRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
NSString *receiptString = [NSString stringWithFormat:@"{\"receipt-data\":\"%@\" \"password\":\"%@\"}", [self.receipt base64EncodedString], kSharedSecret];
NSString *length = [NSString stringWithFormat:@"%d", [receiptString length]];
[theRequest setValue:length forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPBody:[receiptString dataUsingEncoding:NSUTF8StringEncoding]];
self.theConnection = [NSURLConnection connectionWithRequest:theRequest delegate:self];
[self.theConnection start];
}
-(BOOL) isSubscriptionActive
{
if(!self.receipt) return NO;
if([[self.verifiedReceiptDictionary objectForKey:@"receipt"] objectForKey:@"expires_date"]){
NSTimeInterval expiresDate = [[[self.verifiedReceiptDictionary objectForKey:@"receipt"] objectForKey:@"expires_date"] doubleValue]/1000.0;
return expiresDate > [[NSDate date] timeIntervalSince1970];
}else{
NSString *purchasedDateString = [[self.verifiedReceiptDictionary objectForKey:@"receipt"] objectForKey:@"purchase_date"];
if(!purchasedDateString) {
NSLog(@"Receipt Dictionary from Apple Server is invalid: %@", self.verifiedReceiptDictionary);
return NO;
}
NSDateFormatter *df = [[NSDateFormatter alloc] init];
//2011-07-03 05:31:55 Etc/GMT
purchasedDateString = [purchasedDateString stringByReplacingOccurrencesOfString:@" Etc/GMT" withString:@""];
NSLocale *POSIXLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"];
[df setLocale:POSIXLocale];
[df setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
[df setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *purchasedDate = [df dateFromString: purchasedDateString];
int numberOfDays = [purchasedDate timeIntervalSinceNow] / (-86400.0);
return (self.subscriptionDays > numberOfDays);
}
}
#pragma mark -
#pragma mark NSURLConnection delegate
- (void)connection:(NSURLConnection *)connection
didReceiveResponse:(NSURLResponse *)response
{
self.dataFromConnection = [NSMutableData data];
}
- (void)connection:(NSURLConnection *)connection
didReceiveData:(NSData *)data
{
[self.dataFromConnection appendData:data];
}
-(NSDictionary*) verifiedReceiptDictionary {
return [self.receipt objectFromJSONData];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
self.receipt = [self.dataFromConnection copy];
if(self.onSubscriptionVerificationCompleted)
{
self.onSubscriptionVerificationCompleted([NSNumber numberWithBool:[self isSubscriptionActive]]);
self.dataFromConnection = nil;
}
self.onSubscriptionVerificationCompleted = nil;
}
- (void)connection:(NSURLConnection *)connection
didFailWithError:(NSError *)error
{
self.dataFromConnection = nil;
if(self.onSubscriptionVerificationFailed)
self.onSubscriptionVerificationFailed(error);
self.onSubscriptionVerificationFailed = nil;
}
@end