forked from lessallan/freshbooks-iphone-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FreshbooksAPI.m
247 lines (201 loc) · 8.54 KB
/
FreshbooksAPI.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
/*
Copyright (c) 2008, 2ndSite Inc.
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 the <ORGANIZATION> 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 "FreshbooksAPI.h"
#import "TouchXML.h"
#import "FreshbooksTimerAppDelegate.h"
#import "ProjectDataLoaderOperation.h"
@implementation FreshbooksAPI
static FreshbooksAPI *sharedInstance = nil;
@synthesize projectData;
@synthesize timeEntryQueue;
- (void)setDomain:(NSString *)newDomain andKey:(NSString *)key {
if(domain){
[domain release];
}
domain = [newDomain retain];
if(apiKey){
[apiKey release];
}
apiKey = [key retain];
if(apiURL){
[apiURL release];
}
apiURL = [[NSURL URLWithString:[NSString stringWithFormat:@"https://%@:X@%@.freshbooks.com/api/2.1/xml-in", apiKey, domain]] retain];
NSLog(@"setting url: %@ \n user: %@", apiURL, [apiURL user]);
}
- (void) loadProjectDataWithDelegate: (id) delegate {
if(!operationQueue){
operationQueue = [[NSOperationQueue alloc] init];
}
ProjectDataLoaderOperation *op = [[ProjectDataLoaderOperation alloc] init];
op.delegate = delegate;
[operationQueue addOperation:op];
[op autorelease];
}
- (void) loadProjectData {
NSString *err;
[self loadProjectDataWithError: &err];
}
- (void) _notify {
[[NSNotificationCenter defaultCenter] postNotificationName:@"ProjectDataChanged" object:self];
}
- (BOOL) loadProjectDataWithError: (NSString **)error {
@try{
NSMutableDictionary *project;
NSError *err;
NSData *responseData = [self performCall:@"<?xml version=\"1.0\" encoding=\"utf-8\" ?><request method=\"project.list\"></request>"];
CXMLDocument *xmlDoc = [[CXMLDocument alloc] initWithData:responseData options:0 error:&err];
if([@"ok" caseInsensitiveCompare:[[[xmlDoc rootElement] attributeForName:@"status"] stringValue]] == NSOrderedSame){
self.projectData = [NSMutableArray array];
NSArray *projects = [[[[xmlDoc rootElement] elementsForName:@"projects"] objectAtIndex:0] elementsForName:@"project"];
for (int i = 0; i < [projects count]; ++i) {
project = [NSMutableDictionary dictionary];
[project setValue:[[[[projects objectAtIndex:i] elementsForName:@"project_id"] objectAtIndex:0] stringValue] forKey:@"id"];
[project setValue:[[[[projects objectAtIndex:i] elementsForName:@"name"] objectAtIndex:0] stringValue] forKey:@"name"];
[project setValue:[self getTasksForProject:[project valueForKey:@"id"]] forKey:@"tasks"];
[projectData addObject:project];
}
FreshbooksTimerAppDelegate *appdel = [[UIApplication sharedApplication] delegate];
NSMutableDictionary *configData = [appdel configData];
[configData setValue:projectData forKey:@"projectData"];
[configData setValue:[NSDate date] forKey:@"projectDataDate"];
[self performSelectorOnMainThread:@selector(_notify) withObject:nil waitUntilDone:NO];
return YES;
} else {
*error = [[[[xmlDoc rootElement] elementsForName:@"error"] objectAtIndex:0] stringValue];
NSLog(@"Failure loading project data");
}
} @catch (id localException) {
NSLog(@"barf! %@", [localException name]);
}
return NO;
}
- (NSMutableArray *) getTasksForProject:(NSString *)projectId {
NSError *err;
NSMutableDictionary *task;
NSMutableArray *tasks = [NSMutableArray array];
NSData *taskResponseData = [self performCall: [NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"utf-8\" ?><request method=\"task.list\"><project_id>%@</project_id></request>",
projectId
]];
CXMLDocument *xmlDoc = [[CXMLDocument alloc] initWithData:taskResponseData options:0 error:&err];
NSArray *xmlTasks = [[[[xmlDoc rootElement] elementsForName:@"tasks"] objectAtIndex:0] elementsForName:@"task"];
for (int i = 0; i < [xmlTasks count]; ++i) {
task = [NSMutableDictionary dictionary];
[task setValue:[[[[xmlTasks objectAtIndex:i] elementsForName:@"task_id"] objectAtIndex:0] stringValue] forKey:@"id"];
[task setValue:[[[[xmlTasks objectAtIndex:i] elementsForName:@"name"] objectAtIndex:0] stringValue] forKey:@"name"];
[tasks addObject:task];
}
return tasks;
}
- (NSString *) xmlEscape:(NSString *) inputString {
inputString = [inputString stringByReplacingOccurrencesOfString:@"&" withString:@"&"];
inputString = [inputString stringByReplacingOccurrencesOfString:@"<" withString:@"<"];
inputString = [inputString stringByReplacingOccurrencesOfString:@">" withString:@">"];
return inputString;
}
// Perform syncronous call
- (NSData *) performCall:(NSString *)requestBody {
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:apiURL];
[request setHTTPMethod:@"POST"];
[request setValue:@"Freshbooks iPhone Client 1.0" forHTTPHeaderField:@"X-User-Agent"];
[request setHTTPBody:[requestBody dataUsingEncoding: NSUTF8StringEncoding]];
NSURLResponse *response;
NSError *err;
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];
return responseData;
}
// Perform asyncronous call
- (NSURLConnection *)performCall:(NSString *)requestBody withDelegate:(id) delegate {
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:apiURL];
[request setHTTPMethod:@"POST"];
[request setValue:@"Freshbooks iPhone Client 1.0" forHTTPHeaderField:@"X-User-Agent"];
[request setHTTPBody:[requestBody dataUsingEncoding: NSUTF8StringEncoding]];
NSURLConnection *connection = [NSURLConnection connectionWithRequest:request delegate: delegate];
return connection;
}
/* SINGLETON STUFF */
#pragma mark SINGLETON
+ (FreshbooksAPI*)sharedInstance
{
@synchronized(self) {
if (sharedInstance == nil) {
[[self alloc] init]; // assignment not done here
}
}
return sharedInstance;
}
+ (id)allocWithZone:(NSZone *)zone
{
@synchronized(self) {
if (sharedInstance == nil) {
sharedInstance = [super allocWithZone:zone];
return sharedInstance; // assignment and return on first allocation
}
}
return nil; //on subsequent allocation attempts return nil
}
- (id)init {
if(self = [super init]){
FreshbooksTimerAppDelegate *appdel = [[UIApplication sharedApplication] delegate];
NSMutableDictionary *configData = [appdel configData];
NSString *ldomain = [configData valueForKeyPath:@"authentication.domain"];
NSString *lkey = [configData valueForKeyPath:@"authentication.apikey"];
if(ldomain && lkey){
[self setDomain:ldomain andKey:lkey];
}
self.projectData = [configData valueForKey:@"projectData"];
// NSLog(@"loaded project data: %i projects", self.projectData.count);
// NSLog(@"Project data is %f seconds old: %@", [[configData valueForKey:@"projectDataDate"] timeIntervalSinceNow], [configData valueForKey:@"projectDataDate"]);
self.timeEntryQueue = [[SubmissionQueue alloc] initWithQueue:[configData valueForKey:@"queue"]];
// reload data if it is older than one hour
if([[configData valueForKey:@"projectDataDate"] timeIntervalSinceNow] < -3600.0){
NSLog(@"project date is older than an hour. refreshing");
[self loadProjectDataWithDelegate:nil];
}
}
return self;
}
- (id)copyWithZone:(NSZone *)zone
{
return self;
}
- (id)retain
{
return self;
}
- (unsigned)retainCount
{
return UINT_MAX; //denotes an object that cannot be released
}
- (void)release
{
//do nothing
}
- (id)autorelease
{
return self;
}
@end