-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTTPRequest.m
237 lines (153 loc) · 6.36 KB
/
HTTPRequest.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
//
// HTTPRequest.m
// HTTPRequestProject
//
// Created By Dekel Maman.
//
#import "HTTPRequest.h"
#define kUrlUploadFiles @"scriptgettingfiles.php"
#define K_BASE_URL @"http://www.yourdomain.com"
@interface HTTPRequest () <NSURLConnectionDataDelegate>
//store the request arguments
@property (nonatomic, strong) NSMutableDictionary *params;
@property (nonatomic, strong) NSMutableArray *keysArray, *filesPathArray;
//get the data on a-sync request
@property (nonatomic, strong) NSMutableData *mutableData;
@property (nonatomic) int uploadedCounter;
//store the block
@end
@implementation HTTPRequest
@synthesize params, requestDelegate, requestResult, mutableData, requestProgress, uploadFilePath;
@synthesize filePathAndKeysDictionary, uploadedCounter, keysArray, filesPathArray;
- (id)init
{
self = [super init];
if (self) {
self.params = [[NSMutableDictionary alloc] init];
self.uploadFilePath = @"";
keysArray = [[NSMutableArray alloc]init];
uploadedCounter = 0;
filesPathArray = [[NSMutableArray alloc]init];
}
return self;
}
//Init Methods
- (id) initWithDelegate:(id <HTTPRequestDelegate>)delegate{
if (self = [self init]){
self.requestDelegate = delegate;
}
return self;
}
+ (id) requestWithType:(id <HTTPRequestDelegate>)delegate{
return [[self alloc]initWithDelegate:delegate];
}
- (void)addFileToUpload:(NSString *)fileName filePath:(NSString *)filePath{
[keysArray addObject:fileName];
[filesPathArray addObject:filePath];
}
#pragma mark - Send Request Methods
// create NSURLRequest
// No gets, Return NSURLRequest Object
- (NSURLRequest *) createRequest{
NSString *baseURL = K_BASE_URL;
//Set the full url by requestType selected
baseURL = [baseURL stringByAppendingPathComponent:kUrlUploadFiles];
NSURL *url = [NSURL URLWithString:baseURL];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60];
NSMutableData *body= [NSMutableData data]; // Hold the Request's Body Data.
[request setHTTPMethod:@"POST"];
uploadFilePath = filesPathArray[uploadedCounter];
if (![uploadFilePath isEqualToString:@""]) {
// create body data for upload File.
NSData *dataToUpload = nil;
NSString *fileType = @"";
dataToUpload = [NSData dataWithContentsOfFile:uploadFilePath];
NSString *appendDataString = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\".%@\"\r\n", fileType];
NSString *boundary = @"---------------------------14737809831466499882746641449";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField:@"Content-Type"];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary]dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[appendDataString dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[appendDataString dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"Content-Type: application/octet-stream\r\n\r\n"dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:dataToUpload]];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:body];
}
return request;
}
- (void)filesarray{
}
-(void)startSync{
[self startSync:NO];
}
- (void) startSync:(BOOL)sync{
if (keysArray.count > 0 && uploadedCounter < keysArray.count) {
NSURLRequest *request = [self createRequest];
if (sync){
NSError *error = nil;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];
[self handleData:data error:error];
} else {
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
[connection start];
}
}
}
- (void) handleData:(NSData *)data error:(NSError *)error{
id resultData = nil;
if (error == nil){
resultData = data;
}
HTTPResult *result = [[HTTPResult alloc] init];
result.data = resultData;
result.error = error;
self.requestResult = result;
uploadedCounter++;
NSLog(@"finish %i files", uploadedCounter);
if (uploadedCounter <= keysArray.count) {
[self startSync];
}
//respond to delegate
else if ([requestDelegate respondsToSelector:@selector(request:finishedWithResult:)]){
self.keysArray = [NSMutableArray array];
self.filesPathArray = [NSMutableArray array];
[requestDelegate request:self finishedWithResult:result];
}
}
- (void)handleProgress:(float)prog{
HTTPProgress *progress = [[HTTPProgress alloc]init];
progress.progress = prog;
self.requestProgress = progress;
[requestDelegate request:self updateWithProgress:progress];
}
#pragma mark - NSURLConnection Data Delegate Methods
- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{
[self handleData:nil error:error];
self.mutableData = nil;
}
- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
if (mutableData == nil){
self.mutableData = [NSMutableData new];
}
[mutableData appendData:data];
}
- (void) connectionDidFinishLoading:(NSURLConnection *)connection{
[self handleData:mutableData error:nil];
self.mutableData = nil;
}
- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite{
float sent = totalBytesWritten;
float fileSize = totalBytesExpectedToWrite;
float total = sent/fileSize *100;
[self handleProgress:total];
}
@end
/*
HTTP Result
Empty implementation, without it, the project won't be compiled
*/
@implementation HTTPResult
@end
@implementation HTTPProgress
@end