This repository has been archived by the owner on Aug 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KVService.m
252 lines (210 loc) · 9.78 KB
/
KVService.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
//
// KVService.m
// Koolistov
//
// Created by Johan Kool on 26-10-10.
// Copyright 2010-2011 Koolistov Pte Ltd. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
// * Neither the name of KOOLISTOV PTE. LTD. nor the names of its contributors may be used to
// endorse or promote products derived from this software without specific prior written
// permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#import "KVService.h"
#import "KVServiceRequest.h"
#import "Reachability.h"
NSString *const KVServiceDidReceiveTokenNotification = @"KVServiceDidReceiveTokenNotification";
NSString *const KVServiceFailedToReceiveTokenNotification = @"KVServiceFailedToReceiveTokenNotification";
NSString *const KVServiceErrorDomain = @"KVServiceErrorDomain";
@interface KVService ()
@property (nonatomic, copy, readwrite) NSString *token;
@property (nonatomic, retain) NSMutableArray *activeRequests;
@property (nonatomic, retain) NSMutableArray *pendingRequests;
@property (nonatomic, retain) KVServiceRequest *tokenRequest;
- (void)fireNextPendingRequestIfNeeded:(KVServiceRequest *)request;
@end
@implementation KVService
@synthesize delegate=delegate_;
@synthesize token=token_;
@synthesize cache=cache_;
@synthesize timeoutInterval=timeoutInterval_;
@synthesize allowSelfSignedSSLCertificate=allowSelfSignedSSLCertificate_;
@synthesize preprocessHandler=preprocessHandler_;
@synthesize activeRequests=activeRequests_;
@synthesize pendingRequests=pendingRequests_;
@synthesize tokenRequest=tokenRequest_;
+ (KVService *)defaultService {
static dispatch_once_t pred;
static KVService *defaultService = nil;
dispatch_once(&pred, ^{ defaultService = [[self alloc] init]; });
return defaultService;
}
- (id)init {
self = [super init];
if (self) {
self.activeRequests = [NSMutableArray array];
self.pendingRequests = [NSMutableArray array];
self.timeoutInterval = 30.0;
}
return self;
}
- (void)dealloc {
self.delegate = nil;
self.token = nil;
self.cache = nil;
self.preprocessHandler = nil;
self.activeRequests = nil;
self.pendingRequests = nil;
self.tokenRequest = nil;
[super dealloc];
}
#pragma mark - Main
- (KVServiceRequest *)performRequestWithURL:(NSURL *)URL
HTTPMethod:(NSString *)HTTPMethod
bodyData:(NSData *)bodyData
requiresToken:(BOOL)requiresToken
allowCaching:(BOOL)allowCaching
forceRefresh:(BOOL)forceRefresh
completionHandler:(KVRequestCompletionBlock)completionHandler {
// Check network access
if ([[Reachability reachabilityForInternetConnection] currentReachabilityStatus] == NotReachable) {
NSError *error = [NSError errorWithDomain:KVServiceErrorDomain code:KVServiceErrorNoInternetConnection userInfo:[NSDictionary dictionaryWithObjectsAndKeys:NSLocalizedString(@"The internet connection appears to be offline. Please try again later.", @""), NSLocalizedDescriptionKey, nil]];
completionHandler(nil, nil, error);
return nil;
}
// Create request
KVServiceRequest *request = [[[KVServiceRequest alloc] init] autorelease];
request.service = self;
request.HTTPMethod = HTTPMethod;
request.URL = URL;
request.bodyData = bodyData;
request.allowCaching = allowCaching;
request.forceRefresh = forceRefresh;
request.completionHandler = completionHandler;
// Insert token if needed
if (requiresToken) {
if (!self.token && !self.tokenRequest) {
if ([self.delegate respondsToSelector:@selector(tokenRequestForService:)]) {
KVServiceRequest *tokenRequest = [self.delegate tokenRequestForService:self];
tokenRequest.allowCaching = NO;
self.tokenRequest = tokenRequest;
[self performRequest:tokenRequest];
} else {
NSAssert(NO, @"Token required, but delegate didn't implement relevant method");
}
}
if ([self.delegate respondsToSelector:@selector(service:insertToken:intoRequest:)]) {
[self.delegate service:self insertToken:self.token intoRequest:request];
} else {
NSAssert(NO, @"Token required, but delegate didn't implement relevant method");
}
}
return [self performRequest:request];
}
- (KVServiceRequest *)performRequest:(KVServiceRequest *)request {
request.service = self;
if ([request.HTTPMethod isEqualToString:@"GET"] && request.allowCaching) {
for (KVServiceRequest *activeRequest in self.activeRequests) {
if ([activeRequest.URL isEqual:request.URL] && [activeRequest.HTTPMethod isEqualToString:@"GET"] && activeRequest.allowCaching) {
// Similar request already active, wait for it to finish, so we can use cache for this request
#ifdef DEBUG
NSLog (@"Postponing loading (similar request already active): %@", request.URL.absoluteString);
#endif
[self.pendingRequests addObject:request];
return request;
}
}
}
// Start request
[request send];
// Hold on to request whilst its active
[self.activeRequests addObject:request];
// Tell delegate
if ([self.delegate respondsToSelector:@selector(service:didStartRequest:)]) {
[self.delegate service:self didStartRequest:request];
}
return request;
}
#pragma mark - Service Request Service Protocol
- (void)request:(KVServiceRequest *)request receivedError:(NSError *)error {
// Notify delegate
if ([self.delegate respondsToSelector:@selector(service:didFinishRequest:)]) {
[self.delegate service:self didFinishRequest:request successfully:NO];
}
// If token request, post failure notification
if (request == self.tokenRequest) {
[[NSNotificationCenter defaultCenter] postNotificationName:KVServiceFailedToReceiveTokenNotification object:self];
self.tokenRequest = nil;
}
// Fire next pending request if present
[self fireNextPendingRequestIfNeeded:request];
// Release request when done
[self.activeRequests removeObject:request];
}
- (void)request:(KVServiceRequest *)request receivedResponse:(NSURLResponse *)response data:(NSData *)data {
// Notify delegate
if ([self.delegate respondsToSelector:@selector(service:didFinishRequest:successfully:)]) {
[self.delegate service:self didFinishRequest:request successfully:YES];
}
if (request == self.tokenRequest) {
if ([self.delegate respondsToSelector:@selector(service:extractAndValidateTokenFromResponse:data:)]) {
self.token = [self.delegate service:self extractAndValidateTokenFromResponse:response data:data];
} else {
NSAssert(NO, @"Token required, but delegate didn't implement relevant method");
}
if (!self.token) {
[[NSNotificationCenter defaultCenter] postNotificationName:KVServiceFailedToReceiveTokenNotification object:self];
} else {
[[NSNotificationCenter defaultCenter] postNotificationName:KVServiceDidReceiveTokenNotification object:self];
}
self.tokenRequest = nil;
}
// Fire next pending request if present
[self fireNextPendingRequestIfNeeded:request];
// Release request when done
[self.activeRequests removeObject:request];
}
- (void)fireNextPendingRequestIfNeeded:(KVServiceRequest *)request {
// Fire next pending request if present
if ([request.HTTPMethod isEqualToString:@"GET"] && request.allowCaching) {
KVServiceRequest *nextPendingRequest = nil;
for (KVServiceRequest *pendingRequest in self.pendingRequests) {
if ([pendingRequest.URL isEqual:request.URL]) {
nextPendingRequest = pendingRequest;
break;
}
}
if (nextPendingRequest) {
#ifdef DEBUG
NSLog (@"Delayed loading (expect cached response): %@", request.URL.absoluteString);
#endif
// Start request
[nextPendingRequest send];
// Hold on to request whilst its active
[self.activeRequests addObject:nextPendingRequest];
// Tell delegate
if ([self.delegate respondsToSelector:@selector(service:didStartRequest:)]) {
[self.delegate service:self didStartRequest:nextPendingRequest];
}
[self.pendingRequests removeObject:nextPendingRequest];
}
}
}
@end