-
Notifications
You must be signed in to change notification settings - Fork 19
/
WBEngine.m
291 lines (241 loc) · 8.51 KB
/
WBEngine.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
//
// WBEngine.m
// SinaWeiBoSDK
// Based on OAuth 2.0
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
//
// Copyright 2011 Sina. All rights reserved.
//
#import "WBEngine.h"
#import "SFHFKeychainUtils.h"
#import "WBSDKGlobal.h"
#import "WBUtil.h"
#import "WBHTTPClient.h"
#define kWBURLSchemePrefix @"WB_"
#define kWBKeychainServiceNameSuffix @"_WeiBoServiceName"
#define kWBKeychainUserID @"WeiBoUserID"
#define kWBKeychainAccessToken @"WeiBoAccessToken"
#define kWBKeychainExpireTime @"WeiBoExpireTime"
@interface WBEngine (Private)
- (NSString *)urlSchemeString;
- (void)saveAuthorizeDataToKeychain;
- (void)readAuthorizeDataFromKeychain;
- (void)deleteAuthorizeDataInKeychain;
@end
@implementation WBEngine
@synthesize appKey;
@synthesize appSecret;
@synthesize userID;
@synthesize accessToken;
@synthesize expireTime;
@synthesize redirectURI;
@synthesize isUserExclusive;
@synthesize authorize;
@synthesize delegate;
@synthesize rootViewController;
#pragma mark - WBEngine Life Circle
- (id)initWithAppKey:(NSString *)theAppKey appSecret:(NSString *)theAppSecret
{
if (self = [super init])
{
self.appKey = theAppKey;
self.appSecret = theAppSecret;
isUserExclusive = NO;
[self readAuthorizeDataFromKeychain];
}
return self;
}
- (void)dealloc
{
[appKey release], appKey = nil;
[appSecret release], appSecret = nil;
[userID release], userID = nil;
[accessToken release], accessToken = nil;
[redirectURI release], redirectURI = nil;
[authorize setDelegate:nil];
[authorize release], authorize = nil;
delegate = nil;
rootViewController = nil;
[super dealloc];
}
#pragma mark - WBEngine Private Methods
- (NSString *)urlSchemeString
{
return [NSString stringWithFormat:@"%@%@", kWBURLSchemePrefix, appKey];
}
- (void)saveAuthorizeDataToKeychain
{
NSString *serviceName = [[self urlSchemeString] stringByAppendingString:kWBKeychainServiceNameSuffix];
[SFHFKeychainUtils storeUsername:kWBKeychainUserID andPassword:userID forServiceName:serviceName updateExisting:YES error:nil];
[SFHFKeychainUtils storeUsername:kWBKeychainAccessToken andPassword:accessToken forServiceName:serviceName updateExisting:YES error:nil];
[SFHFKeychainUtils storeUsername:kWBKeychainExpireTime andPassword:[NSString stringWithFormat:@"%lf", expireTime] forServiceName:serviceName updateExisting:YES error:nil];
}
- (void)readAuthorizeDataFromKeychain
{
NSString *serviceName = [[self urlSchemeString] stringByAppendingString:kWBKeychainServiceNameSuffix];
self.userID = [SFHFKeychainUtils getPasswordForUsername:kWBKeychainUserID andServiceName:serviceName error:nil];
self.accessToken = [SFHFKeychainUtils getPasswordForUsername:kWBKeychainAccessToken andServiceName:serviceName error:nil];
self.expireTime = [[SFHFKeychainUtils getPasswordForUsername:kWBKeychainExpireTime andServiceName:serviceName error:nil] doubleValue];
}
- (void)deleteAuthorizeDataInKeychain
{
self.userID = nil;
self.accessToken = nil;
self.expireTime = 0;
NSString *serviceName = [[self urlSchemeString] stringByAppendingString:kWBKeychainServiceNameSuffix];
[SFHFKeychainUtils deleteItemForUsername:kWBKeychainUserID andServiceName:serviceName error:nil];
[SFHFKeychainUtils deleteItemForUsername:kWBKeychainAccessToken andServiceName:serviceName error:nil];
[SFHFKeychainUtils deleteItemForUsername:kWBKeychainExpireTime andServiceName:serviceName error:nil];
}
#pragma mark - WBEngine Public Methods
#pragma mark Authorization
- (void)logIn
{
if ([self isLoggedIn])
{
if ([delegate respondsToSelector:@selector(engineAlreadyLoggedIn:)])
{
[delegate engineAlreadyLoggedIn:self];
}
if (isUserExclusive)
{
return;
}
}
WBAuthorize *auth = [[WBAuthorize alloc] initWithAppKey:appKey appSecret:appSecret];
[auth setRootViewController:rootViewController];
[auth setDelegate:self];
self.authorize = auth;
[auth release];
if ([redirectURI length] > 0)
{
[authorize setRedirectURI:redirectURI];
}
else
{
[authorize setRedirectURI:@"http://"];
}
[authorize startAuthorize];
}
- (void)logOut
{
[self deleteAuthorizeDataInKeychain];
if ([delegate respondsToSelector:@selector(engineDidLogOut:)])
{
[delegate engineDidLogOut:self];
}
}
- (BOOL)isLoggedIn
{
// return userID && accessToken && refreshToken;
return userID && accessToken && (expireTime > 0);
}
- (BOOL)isAuthorizeExpired
{
NSTimeInterval i = [[NSDate date] timeIntervalSince1970];
if ([[NSDate date] timeIntervalSince1970] > expireTime)
{
// force to log out
[self deleteAuthorizeDataInKeychain];
return YES;
}
return NO;
}
#pragma mark Request
- (void)loadRequestWithMethodName:(NSString *)methodName
httpMethod:(NSString *)httpMethod
params:(NSDictionary *)params
httpHeaderFields:(NSDictionary *)httpHeaderFields
{
// Step 1.
// Check if the user has been logged in.
if (![self isLoggedIn])
{
if ([delegate respondsToSelector:@selector(engineNotAuthorized:)])
{
[delegate engineNotAuthorized:self];
}
return;
}
// Step 2.
// Check if the access token is expired.
if ([self isAuthorizeExpired])
{
if ([delegate respondsToSelector:@selector(engineAuthorizeExpired:)])
{
[delegate engineAuthorizeExpired:self];
}
return;
}
// add the access token field
NSMutableDictionary *mutableParams = [NSMutableDictionary dictionaryWithDictionary:params];
[mutableParams setObject:accessToken forKey:@"access_token"];
[[WBHTTPClient sharedClient] get:[NSString stringWithFormat:@"%@%@", kWBSDKAPIDomain, methodName] parameters:mutableParams success:^(AFHTTPRequestOperation *operation, NSDictionary* result) {
NSLog(@"OK");
if ([result isKindOfClass:[NSDictionary class]])
{
if ([delegate respondsToSelector:@selector(engine:requestDidSucceedWithResult:)])
{
[delegate engine:self requestDidSucceedWithResult:result];
}
}
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
}
];
}
//
//- (void)sendWeiBoWithText:(NSString *)text image:(UIImage *)image
//{
// NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:2];
//
// //NSString *sendText = [text URLEncodedString];
//
// [params setObject:(text ? text : @"") forKey:@"status"];
//
// if (image)
// {
// [params setObject:image forKey:@"pic"];
//
// [self loadRequestWithMethodName:@"statuses/upload.json"
// httpMethod:@"POST"
// params:params
// postDataType:kWBRequestPostDataTypeMultipart
// httpHeaderFields:nil];
// }
// else
// {
// [self loadRequestWithMethodName:@"statuses/update.json"
// httpMethod:@"POST"
// params:params
// postDataType:kWBRequestPostDataTypeNormal
// httpHeaderFields:nil];
// }
//}
#pragma mark - WBAuthorizeDelegate Methods
- (void)authorize:(WBAuthorize *)authorize didSucceedWithAccessToken:(NSString *)theAccessToken userID:(NSString *)theUserID expiresIn:(NSInteger)seconds
{
self.accessToken = theAccessToken;
self.userID = theUserID;
self.expireTime = [[NSDate date] timeIntervalSince1970] + seconds;
[self saveAuthorizeDataToKeychain];
if ([delegate respondsToSelector:@selector(engineDidLogIn:)])
{
[delegate engineDidLogIn:self];
}
}
- (void)authorize:(WBAuthorize *)authorize didFailWithError:(NSError *)error
{
if ([delegate respondsToSelector:@selector(engine:didFailToLogInWithError:)])
{
[delegate engine:self didFailToLogInWithError:error];
}
}
@end