This repository has been archived by the owner on Aug 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
ORSTwitterEngine+StatusAdditions.m
261 lines (242 loc) · 8.29 KB
/
ORSTwitterEngine+StatusAdditions.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
253
254
255
256
257
258
259
260
261
//
// ORSTwitterEngine+StatusAdditions.m
// Twitter Engine
//
// Created by Nicholas Toumpelis on 12/04/2009.
// Copyright 2009 Ocean Road Software. All rights reserved.
//
// Version 0.7
#import "ORSTwitterEngine+StatusAdditions.h"
@implementation ORSTwitterEngine ( StatusAdditions )
#pragma mark Status methods
// Status methods
// returns the most recent statuses from the current user and the people she
// follows since the given date
- (NSArray *) getFriendsTimelineSince:(NSString *)date {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/friends_timeline.xml?since="];
[path appendString:date];
[path appendString:@"&count=200"];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns x most recent statuses from the current user and the people she
// follows
- (NSArray *) getFriendsTimelineWithNumberOfStatuses:(NSString *)count {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/friends_timeline.xml?count="];
[path appendString:count];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent statuses from the current user and the people she
// follows for the given page
- (NSArray *) getFriendsTimelineAtPage:(NSString *)page {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/friends_timeline.xml?page="];
[path appendString:page];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns x most recent statuses from the current user
- (NSArray *) getUserTimelineWithNumberOfStatuses:(NSString *)count {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline.xml?count="];
[path appendString:count];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent statuses from the current user since the given
// date
- (NSArray *) getUserTimelineSince:(NSString *)date {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline.xml?since="];
[path appendString:date];
[path appendString:@"&count=200"];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent statuses from the current user for the given page
- (NSArray *) getUserTimelineAtPage:(NSString *)page {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline.xml?page="];
[path appendString:page];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns x most recent statuses from the specified user
- (NSArray *) getUserTimelineForUser:(NSString *)userID
withNumberOfStatuses:(NSString *)count {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline/"];
[path appendString:userID];
[path appendString:@".xml?count="];
[path appendString:count];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent statuses from the specified user since the given
// date
- (NSArray *) getUserTimelineForUser:(NSString*)userID
since:(NSString *)date {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline/"];
[path appendString:userID];
[path appendString:@".xml?since="];
[path appendString:date];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent statuses from the current user since the given
// status id
- (NSArray *) getUserTimelineForUser:(NSString *)userID
sinceStatus:(NSString *)statusID {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline/"];
[path appendString:userID];
[path appendString:@".xml?since_id="];
[path appendString:statusID];
[path appendString:@"&count=200"];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent statuses from the current user for the given page
- (NSArray *) getUserTimelineForUser:(NSString *)userID
atPage:(NSString *)page {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/user_timeline/"];
[path appendString:userID];
[path appendString:@".xml?page="];
[path appendString:page];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns a single status specified by the given id
- (NSXMLNode *) getStatus:(NSString *)statusID {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/show/"];
[path appendString:statusID];
[path appendString:@".xml"];
NSXMLNode *node = [self getNodeFromData:[self executeRequestOfType:@"GET"
atPath:path synchronously:synchronously]];
if ([[node name] isEqualToString:@"status"]) {
return node;
} else {
return NULL;
}
}
// returns the 20 most recent replies for the current user at the given page
- (NSArray *) getRepliesAtPage:(NSString *)page {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/replies.xml?page="];
[path appendString:page];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// returns the 20 most recent replies since the given date
- (NSArray *) getRepliesSince:(NSString *)date {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/replies.xml?since="];
[path appendString:date];
[path appendString:@"&count=200"];
NSData *data = [self executeRequestOfType:@"GET"
atPath:path
synchronously:synchronously];
NSXMLNode *node = [self getNodeFromData:data];
if ([[node name] isEqualToString:@"statuses"]) {
return [self getAllStatusesFromData:data];
} else {
return NULL;
}
}
// destroys the specified status
- (NSXMLNode *) destroyStatus:(NSString *)statusID {
NSMutableString *path = [NSMutableString
stringWithString:@"statuses/destroy/"];
[path appendString:statusID];
[path appendString:@".xml"];
NSXMLNode *node = [self getNodeFromData:[self
executeRequestOfType:@"GET" atPath:path synchronously:synchronously]];
if ([[node name] isEqualToString:@"statuses"]) {
return node;
} else {
return NULL;
}
}
@end