-
Notifications
You must be signed in to change notification settings - Fork 0
/
GifItemProvider.m
211 lines (152 loc) · 8.1 KB
/
GifItemProvider.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
//
// GifActivityItemProvider.mm
// Unity-iPhone
//
// Created by Richard on 6/23/16.
//
//
#import "GifItemProvider.h"
// #import "GiphyViewController.h"
@implementation GifItemProvider
- (id)item
{
if ([self.activityType isEqualToString:UIActivityTypePostToFacebook]) {
// Upload to Giphy
NSMutableDictionary *_params = [[NSMutableDictionary alloc] init];
[_params setObject:@"dc6zaTOxFJmzC" forKey:@"api_key"];
// [_params setObject:[NSString stringWithString:@"ulgymon"] forKey:[NSString stringWithString:@"username"]];
[_params setObject:@"test,dev" forKey:@"tag"];
NSString *boundaryConstant = @"----------V2ymHFg03ehbqgZCaKO6jy";
// string constant for the post parameter 'file'. My server uses this name: `file`. Your's may differ
NSString* fileParamConstant = @"file";
NSURL *requestURL = [NSURL URLWithString:@"https://upload.giphy.com/v1/gifs"];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
[request setHTTPShouldHandleCookies:NO];
[request setTimeoutInterval:30];
[request setHTTPMethod:@"POST"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundaryConstant];
[request setValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *body = [NSMutableData data];
for (NSString *param in _params) {
[body appendData:[[NSString stringWithFormat:@"--%@\r\n", boundaryConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n", param] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"%@\r\n", [_params objectForKey:param]] dataUsingEncoding:NSUTF8StringEncoding]];
}
NSData *imageData = [NSData dataWithContentsOfFile:self.placeholderItem];
if (imageData) {
[body appendData:[[NSString stringWithFormat:@"--%@\r\n", boundaryConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"; filename=\"image.jpg\"\r\n", fileParamConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"Content-Type: image/jpeg\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:imageData];
[body appendData:[[NSString stringWithFormat:@"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
}
[body appendData:[[NSString stringWithFormat:@"--%@--\r\n", boundaryConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:body];
NSString *postLength = [NSString stringWithFormat:@"%lu", (unsigned long)[body length]];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setURL:requestURL];
uploadFileURL = nil;
error = nil;
connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
[connection setDelegateQueue:[[NSOperationQueue alloc] init]];
[connection start];
/*
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Upload Failed" message:@"Check your Connection." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert performSelectorOnMainThread:@selector(show)
withObject:nil
waitUntilDone:NO];
[alert release];
*/
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Uploading..." message:@"Please wait..." delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
[alert performSelectorOnMainThread:@selector(show)
withObject:nil
waitUntilDone:NO];
[alert release];
//progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
// giphyViewController = [[GiphyViewController alloc] init];
// progressView.progress = 0;
// [self performSelectorOnMainThread:@selector(makeMyProgressBarMoving) withObject:nil waitUntilDone:NO];
// [self.view addSubview: progressView]
// [progressView release];
while (uploadFileURL == nil && error == nil) {
NSLog (@"Waiting for upload...");
[NSThread sleepForTimeInterval:1.0f];
NSLog (@"uploadFileURL: %@", uploadFileURL);
}
NSLog (@"Ready to Share");
if (!uploadFileURL)
NSLog (@"uploadFileURL: %@", uploadFileURL);
else
NSLog (@"error: %@", error);
return [NSURL URLWithString:uploadFileURL];
}
if ([self.activityType isEqualToString:UIActivityTypePostToTwitter]) {
// TODO
return [NSData dataWithContentsOfFile:self.placeholderItem];
}
return [NSData dataWithContentsOfFile:self.placeholderItem];
}
- (void)didPresentAlertView:(UIAlertView *)alertView
{
UIActivityIndicatorView *progress = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
progress.frame = CGRectMake(125, 50, 30, 30);
[progress startAnimating];
[alertView addSubview:progress];
/*
UIActivityIndicatorView *progress= [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(125, 50, 30, 30)];
progress.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
[alert addSubview:progress];
[progress startAnimating];
*/
}
- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
{
float myProgress = (float)totalBytesWritten / (float)totalBytesExpectedToWrite;
// progressView.progress = myProgress;
// [giphyViewController updateUI:myProgress];
NSLog(@"Progress: %f", myProgress);
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
BOOL success = NO;
NSDictionary *retDict, *metaDict, *dataDict;
if (data.length > 0) {
retDict = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];
NSLog (@"retDict: %@", retDict);
metaDict = [retDict objectForKey:@"meta"];
if (metaDict) {
NSString *msg = [metaDict objectForKey:@"msg"];
NSNumber *status = [metaDict objectForKey:@"status"];
NSLog (@"msg: %@", msg);
NSLog (@"status: %@", status);
if ([msg isEqualToString:@"OK"] && [status isEqual:@(200)]) {
dataDict = [retDict objectForKey:@"data"];
if (dataDict) {
uploadFileURL = [NSString stringWithFormat:@"http://i.giphy.com/%@.gif", [dataDict objectForKey:@"id"]];
NSLog (@"Retrived uploadFileURL: %@", uploadFileURL);
success = YES;
}
}
}
}
if (success == NO) {
dispatch_async(dispatch_get_main_queue(), ^{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Upload Failed" message:@"Check your Connection." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
});
error = [NSError errorWithDomain:@"giphy" code:100 userInfo:metaDict];
}
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)conError {
error = conError;
NSLog(@"didFailWithError: %@", error);
}
/*
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSLog(@"connectionDidFinishLoading");
// Or just stop
// [self stopActivityIndicator];
connection = nil;
}
*/
@end