This repository has been archived by the owner on Feb 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Facebook.m
843 lines (738 loc) · 31.5 KB
/
Facebook.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
/*
* Copyright 2010 Facebook
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import "Facebook.h"
#import "FBLoginDialog.h"
#import "FBRequest.h"
#import "JSON.h"
static NSString* kDialogBaseURL = @"https://m.facebook.com/dialog/";
static NSString* kGraphBaseURL = @"https://graph.facebook.com/";
static NSString* kRestserverBaseURL = @"https://api.facebook.com/method/";
static NSString* kFBAppAuthURLScheme = @"fbauth";
static NSString* kFBAppAuthURLPath = @"authorize";
static NSString* kRedirectURL = @"fbconnect://success";
static NSString* kLogin = @"oauth";
static NSString* kApprequests = @"apprequests";
static NSString* kSDK = @"ios";
static NSString* kSDKVersion = @"2";
// If the last time we extended the access token was more than 24 hours ago
// we try to refresh the access token again.
static const int kTokenExtendThreshold = 24;
static NSString *requestFinishedKeyPath = @"state";
static void *finishedContext = @"finishedContext";
///////////////////////////////////////////////////////////////////////////////////////////////////
@interface Facebook ()
// private properties
@property(nonatomic, retain) NSArray* permissions;
@property(nonatomic, copy) NSString* appId;
@end
///////////////////////////////////////////////////////////////////////////////////////////////////
@implementation Facebook
@synthesize accessToken = _accessToken,
expirationDate = _expirationDate,
sessionDelegate = _sessionDelegate,
permissions = _permissions,
urlSchemeSuffix = _urlSchemeSuffix,
appId = _appId;
///////////////////////////////////////////////////////////////////////////////////////////////////
// private
- (id)initWithAppId:(NSString *)appId
andDelegate:(id<FBSessionDelegate>)delegate {
self = [self initWithAppId:appId urlSchemeSuffix:nil andDelegate:delegate];
return self;
}
/**
* Initialize the Facebook object with application ID.
*
* @param appId the facebook app id
* @param urlSchemeSuffix
* urlSchemeSuffix is a string of lowercase letters that is
* appended to the base URL scheme used for SSO. For example,
* if your facebook ID is "350685531728" and you set urlSchemeSuffix to
* "abcd", the Facebook app will expect your application to bind to
* the following URL scheme: "fb350685531728abcd".
* This is useful if your have multiple iOS applications that
* share a single Facebook application id (for example, if you
* have a free and a paid version on the same app) and you want
* to use SSO with both apps. Giving both apps different
* urlSchemeSuffix values will allow the Facebook app to disambiguate
* their URL schemes and always redirect the user back to the
* correct app, even if both the free and the app is installed
* on the device.
* urlSchemeSuffix is supported on version 3.4.1 and above of the Facebook
* app. If the user has an older version of the Facebook app
* installed and your app uses urlSchemeSuffix parameter, the SDK will
* proceed as if the Facebook app isn't installed on the device
* and redirect the user to Safari.
* @param delegate the FBSessionDelegate
*/
- (id)initWithAppId:(NSString *)appId
urlSchemeSuffix:(NSString *)urlSchemeSuffix
andDelegate:(id<FBSessionDelegate>)delegate {
self = [super init];
if (self) {
_requests = [[NSMutableSet alloc] init];
_lastAccessTokenUpdate = [[NSDate distantPast] retain];
_frictionlessRequestSettings = [[FBFrictionlessRequestSettings alloc] init];
self.appId = appId;
self.sessionDelegate = delegate;
self.urlSchemeSuffix = urlSchemeSuffix;
}
return self;
}
/**
* Override NSObject : free the space
*/
- (void)dealloc {
for (FBRequest* _request in _requests) {
[_request removeObserver:self forKeyPath:requestFinishedKeyPath];
}
[_lastAccessTokenUpdate release];
[_accessToken release];
[_expirationDate release];
[_requests release];
[_loginDialog release];
[_fbDialog release];
[_appId release];
[_permissions release];
[_urlSchemeSuffix release];
[_frictionlessRequestSettings release];
[super dealloc];
}
- (void)invalidateSession {
self.accessToken = nil;
self.expirationDate = nil;
NSHTTPCookieStorage* cookies = [NSHTTPCookieStorage sharedHTTPCookieStorage];
NSArray* facebookCookies = [cookies cookiesForURL:
[NSURL URLWithString:@"http://login.facebook.com"]];
for (NSHTTPCookie* cookie in facebookCookies) {
[cookies deleteCookie:cookie];
}
// setting to nil also terminates any active request for whitelist
[_frictionlessRequestSettings updateRecipientCacheWithRecipients:nil];
}
/**
* A private helper function for sending HTTP requests.
*
* @param url
* url to send http request
* @param params
* parameters to append to the url
* @param httpMethod
* http method @"GET" or @"POST"
* @param delegate
* Callback interface for notifying the calling application when
* the request has received response
*/
- (FBRequest*)openUrl:(NSString *)url
params:(NSMutableDictionary *)params
httpMethod:(NSString *)httpMethod
delegate:(id<FBRequestDelegate>)delegate {
[params setValue:@"json" forKey:@"format"];
[params setValue:kSDK forKey:@"sdk"];
[params setValue:kSDKVersion forKey:@"sdk_version"];
if ([self isSessionValid]) {
[params setValue:self.accessToken forKey:@"access_token"];
}
[self extendAccessTokenIfNeeded];
FBRequest* _request = [FBRequest getRequestWithParams:params
httpMethod:httpMethod
delegate:delegate
requestURL:url];
[_requests addObject:_request];
[_request addObserver:self forKeyPath:requestFinishedKeyPath options:0 context:finishedContext];
[_request connect];
return _request;
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if (context == finishedContext) {
FBRequest* _request = (FBRequest*)object;
FBRequestState requestState = [_request state];
if (requestState == kFBRequestStateComplete) {
if ([_request sessionDidExpire]) {
[self invalidateSession];
if ([self.sessionDelegate respondsToSelector:@selector(fbSessionInvalidated)]) {
[self.sessionDelegate fbSessionInvalidated];
}
}
[_request removeObserver:self forKeyPath:requestFinishedKeyPath];
[_requests removeObject:_request];
}
}
}
/**
* A private function for getting the app's base url.
*/
- (NSString *)getOwnBaseUrl {
return [NSString stringWithFormat:@"fb%@%@://authorize",
_appId,
_urlSchemeSuffix ? _urlSchemeSuffix : @""];
}
/**
* A private function for opening the authorization dialog.
*/
- (void)authorizeWithFBAppAuth:(BOOL)tryFBAppAuth
safariAuth:(BOOL)trySafariAuth {
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
_appId, @"client_id",
@"user_agent", @"type",
kRedirectURL, @"redirect_uri",
@"touch", @"display",
kSDK, @"sdk",
nil];
NSString *loginDialogURL = [kDialogBaseURL stringByAppendingString:kLogin];
if (_permissions != nil) {
NSString* scope = [_permissions componentsJoinedByString:@","];
[params setValue:scope forKey:@"scope"];
}
if (_urlSchemeSuffix) {
[params setValue:_urlSchemeSuffix forKey:@"local_client_id"];
}
// If the device is running a version of iOS that supports multitasking,
// try to obtain the access token from the Facebook app installed
// on the device.
// If the Facebook app isn't installed or it doesn't support
// the fbauth:// URL scheme, fall back on Safari for obtaining the access token.
// This minimizes the chance that the user will have to enter his or
// her credentials in order to authorize the application.
BOOL didOpenOtherApp = NO;
UIDevice *device = [UIDevice currentDevice];
if ([device respondsToSelector:@selector(isMultitaskingSupported)] && [device isMultitaskingSupported]) {
if (tryFBAppAuth) {
NSString *scheme = kFBAppAuthURLScheme;
if (_urlSchemeSuffix) {
scheme = [scheme stringByAppendingString:@"2"];
}
NSString *urlPrefix = [NSString stringWithFormat:@"%@://%@", scheme, kFBAppAuthURLPath];
NSString *fbAppUrl = [FBRequest serializeURL:urlPrefix params:params];
didOpenOtherApp = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:fbAppUrl]];
}
if (trySafariAuth && !didOpenOtherApp) {
NSString *nextUrl = [self getOwnBaseUrl];
[params setValue:nextUrl forKey:@"redirect_uri"];
NSString *fbAppUrl = [FBRequest serializeURL:loginDialogURL params:params];
didOpenOtherApp = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:fbAppUrl]];
}
}
// If single sign-on failed, open an inline login dialog. This will require the user to
// enter his or her credentials.
if (!didOpenOtherApp) {
[_loginDialog release];
_loginDialog = [[FBLoginDialog alloc] initWithURL:loginDialogURL
loginParams:params
delegate:self];
[_loginDialog show];
}
}
/**
* A function for parsing URL parameters.
*/
- (NSDictionary*)parseURLParams:(NSString *)query {
NSArray *pairs = [query componentsSeparatedByString:@"&"];
NSMutableDictionary *params = [[[NSMutableDictionary alloc] init] autorelease];
for (NSString *pair in pairs) {
NSArray *kv = [pair componentsSeparatedByString:@"="];
NSString *val =
[[kv objectAtIndex:1]
stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[params setObject:val forKey:[kv objectAtIndex:0]];
}
return params;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
//public
/**
* Starts a dialog which prompts the user to log in to Facebook and grant
* the requested permissions to the application.
*
* If the device supports multitasking, we use fast app switching to show
* the dialog in the Facebook app or, if the Facebook app isn't installed,
* in Safari (this enables single sign-on by allowing multiple apps on
* the device to share the same user session).
* When the user grants or denies the permissions, the app that
* showed the dialog (the Facebook app or Safari) redirects back to
* the calling application, passing in the URL the access token
* and/or any other parameters the Facebook backend includes in
* the result (such as an error code if an error occurs).
*
* See http://developers.facebook.com/docs/authentication/ for more details.
*
* Also note that requests may be made to the API without calling
* authorize() first, in which case only public information is returned.
*
* @param permissions
* A list of permission required for this application: e.g.
* "read_stream", "publish_stream", or "offline_access". see
* http://developers.facebook.com/docs/authentication/permissions
* This parameter should not be null -- if you do not require any
* permissions, then pass in an empty String array.
* @param delegate
* Callback interface for notifying the calling application when
* the user has logged in.
*/
- (void)authorize:(NSArray *)permissions {
self.permissions = permissions;
[self authorizeWithFBAppAuth:YES safariAuth:YES];
}
/**
* Attempt to extend the access token.
*
* Access tokens typically expire within 30-60 days. When the user uses the
* app, the app should periodically try to obtain a new access token. Once an
* access token has expired, the app can no longer renew it. The app then has
* to ask the user to re-authorize it to obtain a new access token.
*
* To ensure your app always has a fresh access token for active users, it's
* recommended that you call extendAccessTokenIfNeeded in your application's
* applicationDidBecomeActive: UIApplicationDelegate method.
*/
- (void)extendAccessToken {
if (_isExtendingAccessToken) {
return;
}
_isExtendingAccessToken = YES;
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"auth.extendSSOAccessToken", @"method",
nil];
[self requestWithParams:params andDelegate:self];
}
/**
* Calls extendAccessToken if shouldExtendAccessToken returns YES.
*/
- (void)extendAccessTokenIfNeeded {
if ([self shouldExtendAccessToken]) {
[self extendAccessToken];
}
}
/**
* Returns YES if the last time a new token was obtained was over 24 hours ago.
*/
- (BOOL)shouldExtendAccessToken {
if ([self isSessionValid]){
NSCalendar *calendar = [[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar] autorelease];
NSDateComponents *components = [calendar components:NSHourCalendarUnit
fromDate:_lastAccessTokenUpdate
toDate:[NSDate date]
options:0];
if (components.hour >= kTokenExtendThreshold) {
return YES;
}
}
return NO;
}
/**
* This function processes the URL the Facebook application or Safari used to
* open your application during a single sign-on flow.
*
* You MUST call this function in your UIApplicationDelegate's handleOpenURL
* method (see
* http://developer.apple.com/library/ios/#documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html
* for more info).
*
* This will ensure that the authorization process will proceed smoothly once the
* Facebook application or Safari redirects back to your application.
*
* @param URL the URL that was passed to the application delegate's handleOpenURL method.
*
* @return YES if the URL starts with 'fb[app_id]://authorize and hence was handled
* by SDK, NO otherwise.
*/
- (BOOL)handleOpenURL:(NSURL *)url {
// If the URL's structure doesn't match the structure used for Facebook authorization, abort.
if (![[url absoluteString] hasPrefix:[self getOwnBaseUrl]]) {
return NO;
}
NSString *query = [url fragment];
// Version 3.2.3 of the Facebook app encodes the parameters in the query but
// version 3.3 and above encode the parameters in the fragment. To support
// both versions of the Facebook app, we try to parse the query if
// the fragment is missing.
if (!query) {
query = [url query];
}
NSDictionary *params = [self parseURLParams:query];
NSString *accessToken = [params objectForKey:@"access_token"];
// If the URL doesn't contain the access token, an error has occurred.
if (!accessToken) {
NSString *errorReason = [params objectForKey:@"error"];
// If the error response indicates that we should try again using Safari, open
// the authorization dialog in Safari.
if (errorReason && [errorReason isEqualToString:@"service_disabled_use_browser"]) {
[self authorizeWithFBAppAuth:NO safariAuth:YES];
return YES;
}
// If the error response indicates that we should try the authorization flow
// in an inline dialog, do that.
if (errorReason && [errorReason isEqualToString:@"service_disabled"]) {
[self authorizeWithFBAppAuth:NO safariAuth:NO];
return YES;
}
// The facebook app may return an error_code parameter in case it
// encounters a UIWebViewDelegate error. This should not be treated
// as a cancel.
NSString *errorCode = [params objectForKey:@"error_code"];
BOOL userDidCancel =
!errorCode && (!errorReason || [errorReason isEqualToString:@"access_denied"]);
[self fbDialogNotLogin:userDidCancel];
return YES;
}
// We have an access token, so parse the expiration date.
NSString *expTime = [params objectForKey:@"expires_in"];
NSDate *expirationDate = [NSDate distantFuture];
if (expTime != nil) {
int expVal = [expTime intValue];
if (expVal != 0) {
expirationDate = [NSDate dateWithTimeIntervalSinceNow:expVal];
}
}
[self fbDialogLogin:accessToken expirationDate:expirationDate];
return YES;
}
/**
* Invalidate the current user session by removing the access token in
* memory and clearing the browser cookie.
*
* Note that this method dosen't unauthorize the application --
* it just removes the access token. To unauthorize the application,
* the user must remove the app in the app settings page under the privacy
* settings screen on facebook.com.
*/
- (void)logout {
[self invalidateSession];
if ([self.sessionDelegate respondsToSelector:@selector(fbDidLogout)]) {
[self.sessionDelegate fbDidLogout];
}
}
/**
* Invalidate the current user session by removing the access token in
* memory and clearing the browser cookie.
*
* @deprecated Use of a single session delegate, set at app init, is preferred
*/
- (void)logout:(id<FBSessionDelegate>)delegate {
[self logout];
// preserve deprecated callback behavior, but leave cached delegate intact
// avoid calling twice if the passed and cached delegates are the same
if (delegate != self.sessionDelegate &&
[delegate respondsToSelector:@selector(fbDidLogout)]) {
[delegate fbDidLogout];
}
}
/**
* Make a request to Facebook's REST API with the given
* parameters. One of the parameter keys must be "method" and its value
* should be a valid REST server API method.
*
* See http://developers.facebook.com/docs/reference/rest/
*
* @param parameters
* Key-value pairs of parameters to the request. Refer to the
* documentation: one of the parameters must be "method".
* @param delegate
* Callback interface for notifying the calling application when
* the request has received response
* @return FBRequest*
* Returns a pointer to the FBRequest object.
*/
- (FBRequest*)requestWithParams:(NSMutableDictionary *)params
andDelegate:(id <FBRequestDelegate>)delegate {
if ([params objectForKey:@"method"] == nil) {
NSLog(@"API Method must be specified");
return nil;
}
NSString * methodName = [params objectForKey:@"method"];
[params removeObjectForKey:@"method"];
return [self requestWithMethodName:methodName
andParams:params
andHttpMethod:@"GET"
andDelegate:delegate];
}
/**
* Make a request to Facebook's REST API with the given method name and
* parameters.
*
* See http://developers.facebook.com/docs/reference/rest/
*
*
* @param methodName
* a valid REST server API method.
* @param parameters
* Key-value pairs of parameters to the request. Refer to the
* documentation: one of the parameters must be "method". To upload
* a file, you should specify the httpMethod to be "POST" and the
* “params” you passed in should contain a value of the type
* (UIImage *) or (NSData *) which contains the content that you
* want to upload
* @param delegate
* Callback interface for notifying the calling application when
* the request has received response
* @return FBRequest*
* Returns a pointer to the FBRequest object.
*/
- (FBRequest*)requestWithMethodName:(NSString *)methodName
andParams:(NSMutableDictionary *)params
andHttpMethod:(NSString *)httpMethod
andDelegate:(id <FBRequestDelegate>)delegate {
NSString * fullURL = [kRestserverBaseURL stringByAppendingString:methodName];
return [self openUrl:fullURL
params:params
httpMethod:httpMethod
delegate:delegate];
}
/**
* Make a request to the Facebook Graph API without any parameters.
*
* See http://developers.facebook.com/docs/api
*
* @param graphPath
* Path to resource in the Facebook graph, e.g., to fetch data
* about the currently logged authenticated user, provide "me",
* which will fetch http://graph.facebook.com/me
* @param delegate
* Callback interface for notifying the calling application when
* the request has received response
* @return FBRequest*
* Returns a pointer to the FBRequest object.
*/
- (FBRequest*)requestWithGraphPath:(NSString *)graphPath
andDelegate:(id <FBRequestDelegate>)delegate {
return [self requestWithGraphPath:graphPath
andParams:[NSMutableDictionary dictionary]
andHttpMethod:@"GET"
andDelegate:delegate];
}
/**
* Make a request to the Facebook Graph API with the given string
* parameters using an HTTP GET (default method).
*
* See http://developers.facebook.com/docs/api
*
*
* @param graphPath
* Path to resource in the Facebook graph, e.g., to fetch data
* about the currently logged authenticated user, provide "me",
* which will fetch http://graph.facebook.com/me
* @param parameters
* key-value string parameters, e.g. the path "search" with
* parameters "q" : "facebook" would produce a query for the
* following graph resource:
* https://graph.facebook.com/search?q=facebook
* @param delegate
* Callback interface for notifying the calling application when
* the request has received response
* @return FBRequest*
* Returns a pointer to the FBRequest object.
*/
- (FBRequest*)requestWithGraphPath:(NSString *)graphPath
andParams:(NSMutableDictionary *)params
andDelegate:(id <FBRequestDelegate>)delegate {
return [self requestWithGraphPath:graphPath
andParams:params
andHttpMethod:@"GET"
andDelegate:delegate];
}
/**
* Make a request to the Facebook Graph API with the given
* HTTP method and string parameters. Note that binary data parameters
* (e.g. pictures) are not yet supported by this helper function.
*
* See http://developers.facebook.com/docs/api
*
*
* @param graphPath
* Path to resource in the Facebook graph, e.g., to fetch data
* about the currently logged authenticated user, provide "me",
* which will fetch http://graph.facebook.com/me
* @param parameters
* key-value string parameters, e.g. the path "search" with
* parameters {"q" : "facebook"} would produce a query for the
* following graph resource:
* https://graph.facebook.com/search?q=facebook
* To upload a file, you should specify the httpMethod to be
* "POST" and the “params” you passed in should contain a value
* of the type (UIImage *) or (NSData *) which contains the
* content that you want to upload
* @param httpMethod
* http verb, e.g. "GET", "POST", "DELETE"
* @param delegate
* Callback interface for notifying the calling application when
* the request has received response
* @return FBRequest*
* Returns a pointer to the FBRequest object.
*/
- (FBRequest*)requestWithGraphPath:(NSString *)graphPath
andParams:(NSMutableDictionary *)params
andHttpMethod:(NSString *)httpMethod
andDelegate:(id <FBRequestDelegate>)delegate {
NSString * fullURL = [kGraphBaseURL stringByAppendingString:graphPath];
return [self openUrl:fullURL
params:params
httpMethod:httpMethod
delegate:delegate];
}
/**
* Generate a UI dialog for the request action.
*
* @param action
* String representation of the desired method: e.g. "login",
* "feed", ...
* @param delegate
* Callback interface to notify the calling application when the
* dialog has completed.
*/
- (void)dialog:(NSString *)action
andDelegate:(id<FBDialogDelegate>)delegate {
NSMutableDictionary * params = [NSMutableDictionary dictionary];
[self dialog:action andParams:params andDelegate:delegate];
}
/**
* Generate a UI dialog for the request action with the provided parameters.
*
* @param action
* String representation of the desired method: e.g. "login",
* "feed", ...
* @param parameters
* key-value string parameters
* @param delegate
* Callback interface to notify the calling application when the
* dialog has completed.
*/
- (void)dialog:(NSString *)action
andParams:(NSMutableDictionary *)params
andDelegate:(id <FBDialogDelegate>)delegate {
[_fbDialog release];
NSString *dialogURL = [kDialogBaseURL stringByAppendingString:action];
[params setObject:@"touch" forKey:@"display"];
[params setObject:kSDKVersion forKey:@"sdk"];
[params setObject:kRedirectURL forKey:@"redirect_uri"];
if (action == kLogin) {
[params setObject:@"user_agent" forKey:@"type"];
_fbDialog = [[FBLoginDialog alloc] initWithURL:dialogURL loginParams:params delegate:self];
} else {
[params setObject:_appId forKey:@"app_id"];
if ([self isSessionValid]) {
[params setValue:[self.accessToken stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]
forKey:@"access_token"];
[self extendAccessTokenIfNeeded];
}
// by default we show dialogs, frictionless cases may have a hidden view
BOOL invisible = NO;
// frictionless handling for application requests
if (action == kApprequests) {
// if frictionless requests are enabled
if (self.isFrictionlessRequestsEnabled) {
// 1. show the "Don't show this again for these friends" checkbox
// 2. if the developer is sending a targeted request, then skip the loading screen
[params setValue:@"1" forKey:@"frictionless"];
// 3. request the frictionless recipient list encoded in the success url
[params setValue:@"1" forKey:@"get_frictionless_recipients"];
}
// set invisible if all recipients are enabled for frictionless requests
id fbid = [params objectForKey:@"to"];
if (fbid != nil) {
// if value parses as a json array expression get the list that way
SBJsonParser *parser = [[[SBJsonParser alloc] init] autorelease];
id fbids = [parser objectWithString:fbid];
if (![fbids isKindOfClass:[NSArray class]]) {
// otherwise seperate by commas (handles the singleton case too)
fbids = [fbid componentsSeparatedByString:@","];
}
invisible = [self isFrictionlessEnabledForRecipients:fbids];
}
}
_fbDialog = [[FBDialog alloc] initWithURL:dialogURL
params:params
isViewInvisible:invisible
frictionlessSettings:_frictionlessRequestSettings
delegate:delegate];
}
[_fbDialog show];
}
- (BOOL)isFrictionlessRequestsEnabled {
return _frictionlessRequestSettings.enabled;
}
- (void)enableFrictionlessRequests {
[_frictionlessRequestSettings enableWithFacebook:self];
}
- (void)reloadFrictionlessRecipientCache {
[_frictionlessRequestSettings reloadRecipientCacheWithFacebook:self];
}
- (BOOL)isFrictionlessEnabledForRecipient:(NSString*)fbid {
return [_frictionlessRequestSettings isFrictionlessEnabledForRecipient:fbid];
}
- (BOOL)isFrictionlessEnabledForRecipients:(NSArray*)fbids {
return [_frictionlessRequestSettings isFrictionlessEnabledForRecipients:fbids];
}
/**
* @return boolean - whether this object has an non-expired session token
*/
- (BOOL)isSessionValid {
return (self.accessToken != nil && self.expirationDate != nil
&& NSOrderedDescending == [self.expirationDate compare:[NSDate date]]);
}
///////////////////////////////////////////////////////////////////////////////////////////////////
//FBLoginDialogDelegate
/**
* Set the authToken and expirationDate after login succeed
*/
- (void)fbDialogLogin:(NSString *)token expirationDate:(NSDate *)expirationDate {
self.accessToken = token;
self.expirationDate = expirationDate;
[_lastAccessTokenUpdate release];
_lastAccessTokenUpdate = [[NSDate date] retain];
[self reloadFrictionlessRecipientCache];
if ([self.sessionDelegate respondsToSelector:@selector(fbDidLogin)]) {
[self.sessionDelegate fbDidLogin];
}
}
/**
* Did not login call the not login delegate
*/
- (void)fbDialogNotLogin:(BOOL)cancelled {
if ([self.sessionDelegate respondsToSelector:@selector(fbDidNotLogin:)]) {
[self.sessionDelegate fbDidNotLogin:cancelled];
}
}
#pragma mark - FBRequestDelegate Methods
// These delegate methods are only called for requests that extendAccessToken initiated
- (void)request:(FBRequest *)request didFailWithError:(NSError *)error {
_isExtendingAccessToken = NO;
}
- (void)request:(FBRequest *)request didLoad:(id)result {
_isExtendingAccessToken = NO;
NSString* accessToken = [result objectForKey:@"access_token"];
NSString* expTime = [result objectForKey:@"expires_at"];
if (accessToken == nil || expTime == nil) {
return;
}
self.accessToken = accessToken;
NSTimeInterval timeInterval = [expTime doubleValue];
NSDate *expirationDate = [NSDate distantFuture];
if (timeInterval != 0) {
expirationDate = [NSDate dateWithTimeIntervalSince1970:timeInterval];
}
self.expirationDate = expirationDate;
[_lastAccessTokenUpdate release];
_lastAccessTokenUpdate = [[NSDate date] retain];
if ([self.sessionDelegate respondsToSelector:@selector(fbDidExtendToken:expiresAt:)]) {
[self.sessionDelegate fbDidExtendToken:accessToken expiresAt:expirationDate];
}
}
- (void)request:(FBRequest *)request didLoadRawResponse:(NSData *)data {
}
- (void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response{
}
- (void)requestLoading:(FBRequest *)request{
}
@end