8ae7a40bf7f47370839e72807593c4d0f4487571
[atutor.git] / mods / atsocial_iphone_app / OAuth / OADataFetcher.m
1 //
2 //  OADataFetcher.m
3 //  OAuthConsumer
4 //
5 //  Created by Jon Crosby on 11/5/07.
6 //  Copyright 2007 Kaboomerang LLC. All rights reserved.
7 //  Modified by Cassie Doll on 02/02/09
8 //
9 //  Permission is hereby granted, free of charge, to any person obtaining a copy
10 //  of this software and associated documentation files (the "Software"), to deal
11 //  in the Software without restriction, including without limitation the rights
12 //  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 //  copies of the Software, and to permit persons to whom the Software is
14 //  furnished to do so, subject to the following conditions:
15 //
16 //  The above copyright notice and this permission notice shall be included in
17 //  all copies or substantial portions of the Software.
18 //
19 //  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 //  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 //  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 //  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 //  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 //  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 //  THE SOFTWARE.
26
27
28 #import "OADataFetcher.h"
29
30
31 @implementation OADataFetcher
32
33 + (void)fetchDataWithRequest:(OAMutableURLRequest *)request 
34                     delegate:(id)delegate 
35            didFinishSelector:(SEL)didFinishSelector {
36   NSURLResponse *response;
37   NSError *error = nil;
38   
39   [request prepare];
40   // TODO: use the asynch fetcher from Google's open source library. 
41   // Never do sync fetches in a client app on the main thread. 
42   NSData *responseData = [NSURLConnection sendSynchronousRequest:request
43                                                returningResponse:&response
44                                                            error:&error];
45   
46   NSString *responseBody = [[[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding] autorelease]; 
47   NSLog(@"Request url: %@", [[request URL] absoluteString]);
48   NSLog(@"Response Body: %@", responseBody);
49   
50   if (response == nil || responseData == nil || error != nil) {
51     OAServiceTicket *ticket = [[[OAServiceTicket alloc] initWithRequest:request response:response didSucceed:NO] autorelease];
52     [delegate performSelector:didFinishSelector withObject:ticket withObject:error];
53     
54   } else {
55     NSLog(@"response had status code %i", [(NSHTTPURLResponse *)response statusCode]);
56     OAServiceTicket *ticket = [[[OAServiceTicket alloc] initWithRequest:request
57                                                                response:response
58                                                              didSucceed:[(NSHTTPURLResponse *)response statusCode] < 400] autorelease];
59     
60     [delegate performSelector:didFinishSelector withObject:ticket withObject:responseBody];
61   }   
62 }
63
64 @end