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
/
FBDialog.m
683 lines (574 loc) · 25.5 KB
/
FBDialog.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
/*
* 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 "FBDialog.h"
#import "Facebook.h"
#import "FBFrictionlessRequestSettings.h"
#import "JSON.h"
///////////////////////////////////////////////////////////////////////////////////////////////////
// global
static CGFloat kBorderGray[4] = {0.3, 0.3, 0.3, 0.8};
static CGFloat kBorderBlack[4] = {0.3, 0.3, 0.3, 1};
static CGFloat kTransitionDuration = 0.3;
static CGFloat kPadding = 0;
static CGFloat kBorderWidth = 10;
///////////////////////////////////////////////////////////////////////////////////////////////////
static BOOL FBIsDeviceIPad() {
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 30200
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
return YES;
}
#endif
return NO;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
@implementation FBDialog
@synthesize delegate = _delegate,
params = _params;
///////////////////////////////////////////////////////////////////////////////////////////////////
// private
- (void)addRoundedRectToPath:(CGContextRef)context rect:(CGRect)rect radius:(float)radius {
CGContextBeginPath(context);
CGContextSaveGState(context);
if (radius == 0) {
CGContextTranslateCTM(context, CGRectGetMinX(rect), CGRectGetMinY(rect));
CGContextAddRect(context, rect);
} else {
rect = CGRectOffset(CGRectInset(rect, 0.5, 0.5), 0.5, 0.5);
CGContextTranslateCTM(context, CGRectGetMinX(rect)-0.5, CGRectGetMinY(rect)-0.5);
CGContextScaleCTM(context, radius, radius);
float fw = CGRectGetWidth(rect) / radius;
float fh = CGRectGetHeight(rect) / radius;
CGContextMoveToPoint(context, fw, fh/2);
CGContextAddArcToPoint(context, fw, fh, fw/2, fh, 1);
CGContextAddArcToPoint(context, 0, fh, 0, fh/2, 1);
CGContextAddArcToPoint(context, 0, 0, fw/2, 0, 1);
CGContextAddArcToPoint(context, fw, 0, fw, fh/2, 1);
}
CGContextClosePath(context);
CGContextRestoreGState(context);
}
- (void)drawRect:(CGRect)rect fill:(const CGFloat*)fillColors radius:(CGFloat)radius {
CGContextRef context = UIGraphicsGetCurrentContext();
CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB();
if (fillColors) {
CGContextSaveGState(context);
CGContextSetFillColor(context, fillColors);
if (radius) {
[self addRoundedRectToPath:context rect:rect radius:radius];
CGContextFillPath(context);
} else {
CGContextFillRect(context, rect);
}
CGContextRestoreGState(context);
}
CGColorSpaceRelease(space);
}
- (void)strokeLines:(CGRect)rect stroke:(const CGFloat*)strokeColor {
CGContextRef context = UIGraphicsGetCurrentContext();
CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB();
CGContextSaveGState(context);
CGContextSetStrokeColorSpace(context, space);
CGContextSetStrokeColor(context, strokeColor);
CGContextSetLineWidth(context, 1.0);
{
CGPoint points[] = {{rect.origin.x+0.5, rect.origin.y-0.5},
{rect.origin.x+rect.size.width, rect.origin.y-0.5}};
CGContextStrokeLineSegments(context, points, 2);
}
{
CGPoint points[] = {{rect.origin.x+0.5, rect.origin.y+rect.size.height-0.5},
{rect.origin.x+rect.size.width-0.5, rect.origin.y+rect.size.height-0.5}};
CGContextStrokeLineSegments(context, points, 2);
}
{
CGPoint points[] = {{rect.origin.x+rect.size.width-0.5, rect.origin.y},
{rect.origin.x+rect.size.width-0.5, rect.origin.y+rect.size.height}};
CGContextStrokeLineSegments(context, points, 2);
}
{
CGPoint points[] = {{rect.origin.x+0.5, rect.origin.y},
{rect.origin.x+0.5, rect.origin.y+rect.size.height}};
CGContextStrokeLineSegments(context, points, 2);
}
CGContextRestoreGState(context);
CGColorSpaceRelease(space);
}
- (BOOL)shouldRotateToOrientation:(UIInterfaceOrientation)orientation {
if (orientation == _orientation) {
return NO;
} else {
return orientation == UIInterfaceOrientationPortrait
|| orientation == UIInterfaceOrientationPortraitUpsideDown
|| orientation == UIInterfaceOrientationLandscapeLeft
|| orientation == UIInterfaceOrientationLandscapeRight;
}
}
- (CGAffineTransform)transformForOrientation {
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (orientation == UIInterfaceOrientationLandscapeLeft) {
return CGAffineTransformMakeRotation(M_PI*1.5);
} else if (orientation == UIInterfaceOrientationLandscapeRight) {
return CGAffineTransformMakeRotation(M_PI/2);
} else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
return CGAffineTransformMakeRotation(-M_PI);
} else {
return CGAffineTransformIdentity;
}
}
- (void)sizeToFitOrientation:(BOOL)transform {
if (transform) {
self.transform = CGAffineTransformIdentity;
}
CGRect frame = [UIScreen mainScreen].applicationFrame;
CGPoint center = CGPointMake(
frame.origin.x + ceil(frame.size.width/2),
frame.origin.y + ceil(frame.size.height/2));
CGFloat scale_factor = 1.0f;
if (FBIsDeviceIPad()) {
// On the iPad the dialog's dimensions should only be 60% of the screen's
scale_factor = 0.6f;
}
CGFloat width = floor(scale_factor * frame.size.width) - kPadding * 2;
CGFloat height = floor(scale_factor * frame.size.height) - kPadding * 2;
_orientation = [UIApplication sharedApplication].statusBarOrientation;
if (UIInterfaceOrientationIsLandscape(_orientation)) {
self.frame = CGRectMake(kPadding, kPadding, height, width);
} else {
self.frame = CGRectMake(kPadding, kPadding, width, height);
}
self.center = center;
if (transform) {
self.transform = [self transformForOrientation];
}
}
- (void)updateWebOrientation {
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (UIInterfaceOrientationIsLandscape(orientation)) {
[_webView stringByEvaluatingJavaScriptFromString:
@"document.body.setAttribute('orientation', 90);"];
} else {
[_webView stringByEvaluatingJavaScriptFromString:
@"document.body.removeAttribute('orientation');"];
}
}
- (void)bounce1AnimationStopped {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration/2];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(bounce2AnimationStopped)];
self.transform = CGAffineTransformScale([self transformForOrientation], 0.9, 0.9);
[UIView commitAnimations];
}
- (void)bounce2AnimationStopped {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration/2];
self.transform = [self transformForOrientation];
[UIView commitAnimations];
}
- (NSURL*)generateURL:(NSString*)baseURL params:(NSDictionary*)params {
if (params) {
NSMutableArray* pairs = [NSMutableArray array];
for (NSString* key in params.keyEnumerator) {
NSString* value = [params objectForKey:key];
NSString* escaped_value = (__bridge NSString *)CFURLCreateStringByAddingPercentEscapes(
NULL, /* allocator */
(__bridge CFStringRef)value,
NULL, /* charactersToLeaveUnescaped */
(CFStringRef)@"!*'();:@&=+$,/?%#[]",
kCFStringEncodingUTF8);
[pairs addObject:[NSString stringWithFormat:@"%@=%@", key, escaped_value]];
[escaped_value release];
}
NSString* query = [pairs componentsJoinedByString:@"&"];
NSString* url = [NSString stringWithFormat:@"%@?%@", baseURL, query];
return [NSURL URLWithString:url];
} else {
return [NSURL URLWithString:baseURL];
}
}
- (void)addObservers {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(deviceOrientationDidChange:)
name:@"UIDeviceOrientationDidChangeNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow:) name:@"UIKeyboardWillShowNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillHide:) name:@"UIKeyboardWillHideNotification" object:nil];
}
- (void)removeObservers {
[[NSNotificationCenter defaultCenter] removeObserver:self
name:@"UIDeviceOrientationDidChangeNotification" object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:@"UIKeyboardWillShowNotification" object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:@"UIKeyboardWillHideNotification" object:nil];
}
- (void)postDismissCleanup {
[self removeObservers];
[self removeFromSuperview];
[_modalBackgroundView removeFromSuperview];
}
- (void)dismiss:(BOOL)animated {
[self dialogWillDisappear];
// If the dialog has been closed, then we need to cancel the order to open it.
// This happens in the case of a frictionless request, see webViewDidFinishLoad for details
[NSObject cancelPreviousPerformRequestsWithTarget:self
selector:@selector(showWebView)
object:nil];
[_loadingURL release];
_loadingURL = nil;
if (animated) {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(postDismissCleanup)];
self.alpha = 0;
[UIView commitAnimations];
} else {
[self postDismissCleanup];
}
}
- (void)cancel {
[self dialogDidCancel:nil];
}
- (BOOL)testBoolUrlParam:(NSURL *)url param:(NSString *)param {
NSString *paramVal = [self getStringFromUrl: [url absoluteString]
needle: param];
return [paramVal boolValue];
}
- (void)dialogSuccessHandleFrictionlessResponses:(NSURL *)url {
// did we receive a recipient list?
NSString *recipientJson = [self getStringFromUrl:[url absoluteString]
needle:@"frictionless_recipients="];
if (recipientJson) {
// if value parses as an array, treat as set of fbids
SBJsonParser *parser = [[[SBJsonParser alloc]
init]
autorelease];
id recipients = [parser objectWithString:recipientJson];
// if we got something usable, copy the ids out and update the cache
if ([recipients isKindOfClass:[NSArray class]]) {
NSMutableArray *ids = [[[NSMutableArray alloc]
initWithCapacity:[recipients count]]
autorelease];
for (id recipient in recipients) {
NSString *fbid = [NSString stringWithFormat:@"%@", recipient];
[ids addObject:fbid];
}
// we may be tempted to terminate outstanding requests before this
// point, but that would cause problems if the user cancelled a dialog
[_frictionlessSettings updateRecipientCacheWithRecipients:ids];
}
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// NSObject
- (id)init {
if ((self = [super initWithFrame:CGRectZero])) {
_delegate = nil;
_loadingURL = nil;
_showingKeyboard = NO;
self.backgroundColor = [UIColor clearColor];
self.autoresizesSubviews = YES;
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.contentMode = UIViewContentModeRedraw;
_webView = [[UIWebView alloc] initWithFrame:CGRectMake(kPadding, kPadding, 480, 480)];
_webView.delegate = self;
_webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self addSubview:_webView];
UIImage* closeImage = [UIImage imageNamed:@"FBDialog.bundle/images/close.png"];
UIColor* color = [UIColor colorWithRed:167.0/255 green:184.0/255 blue:216.0/255 alpha:1];
_closeButton = [[UIButton buttonWithType:UIButtonTypeCustom] retain];
[_closeButton setImage:closeImage forState:UIControlStateNormal];
[_closeButton setTitleColor:color forState:UIControlStateNormal];
[_closeButton setTitleColor:[UIColor whiteColor] forState:UIControlStateHighlighted];
[_closeButton addTarget:self action:@selector(cancel)
forControlEvents:UIControlEventTouchUpInside];
// To be compatible with OS 2.x
#if __IPHONE_OS_VERSION_MAX_ALLOWED <= __IPHONE_2_2
_closeButton.font = [UIFont boldSystemFontOfSize:12];
#else
_closeButton.titleLabel.font = [UIFont boldSystemFontOfSize:12];
#endif
_closeButton.showsTouchWhenHighlighted = YES;
_closeButton.autoresizingMask = UIViewAutoresizingFlexibleRightMargin
| UIViewAutoresizingFlexibleBottomMargin;
[self addSubview:_closeButton];
_spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleWhiteLarge];
if ([_spinner respondsToSelector:@selector(setColor:)]) {
[_spinner setColor:[UIColor grayColor]];
} else {
[_spinner setActivityIndicatorViewStyle:UIActivityIndicatorViewStyleGray];
}
_spinner.autoresizingMask =
UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin
| UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
[self addSubview:_spinner];
_modalBackgroundView = [[UIView alloc] init];
}
return self;
}
- (void)dealloc {
_webView.delegate = nil;
[_webView release];
[_params release];
[_serverURL release];
[_spinner release];
[_closeButton release];
[_loadingURL release];
[_modalBackgroundView release];
[_frictionlessSettings release];
[super dealloc];
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// UIView
- (void)drawRect:(CGRect)rect {
[self drawRect:rect fill:kBorderGray radius:0];
CGRect webRect = CGRectMake(
ceil(rect.origin.x + kBorderWidth), ceil(rect.origin.y + kBorderWidth)+1,
rect.size.width - kBorderWidth*2, _webView.frame.size.height+1);
[self strokeLines:webRect stroke:kBorderBlack];
}
// Display the dialog's WebView with a slick pop-up animation
- (void)showWebView {
UIWindow* window = [UIApplication sharedApplication].keyWindow;
if (!window) {
window = [[UIApplication sharedApplication].windows objectAtIndex:0];
}
_modalBackgroundView.frame = window.frame;
[_modalBackgroundView addSubview:self];
[window addSubview:_modalBackgroundView];
self.transform = CGAffineTransformScale([self transformForOrientation], 0.001, 0.001);
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:kTransitionDuration/1.5];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(bounce1AnimationStopped)];
self.transform = CGAffineTransformScale([self transformForOrientation], 1.1, 1.1);
[UIView commitAnimations];
[self dialogWillAppear];
[self addObservers];
}
// Show a spinner during the loading time for the dialog. This is designed to show
// on top of the webview but before the contents have loaded.
- (void)showSpinner {
[_spinner sizeToFit];
[_spinner startAnimating];
_spinner.center = _webView.center;
}
- (void)hideSpinner {
[_spinner stopAnimating];
_spinner.hidden = YES;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// UIWebViewDelegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType {
NSURL* url = request.URL;
if ([url.scheme isEqualToString:@"fbconnect"]) {
if ([[url.resourceSpecifier substringToIndex:8] isEqualToString:@"//cancel"]) {
NSString * errorCode = [self getStringFromUrl:[url absoluteString] needle:@"error_code="];
NSString * errorStr = [self getStringFromUrl:[url absoluteString] needle:@"error_msg="];
if (errorCode) {
NSDictionary * errorData = [NSDictionary dictionaryWithObject:errorStr forKey:@"error_msg"];
NSError * error = [NSError errorWithDomain:@"facebookErrDomain"
code:[errorCode intValue]
userInfo:errorData];
[self dismissWithError:error animated:YES];
} else {
[self dialogDidCancel:url];
}
} else {
if (_frictionlessSettings.enabled) {
[self dialogSuccessHandleFrictionlessResponses:url];
}
[self dialogDidSucceed:url];
}
return NO;
} else if ([_loadingURL isEqual:url]) {
return YES;
} else if (navigationType == UIWebViewNavigationTypeLinkClicked) {
if ([_delegate respondsToSelector:@selector(dialog:shouldOpenURLInExternalBrowser:)]) {
if (![_delegate dialog:self shouldOpenURLInExternalBrowser:url]) {
return NO;
}
}
[[UIApplication sharedApplication] openURL:request.URL];
return NO;
} else {
return YES;
}
}
- (void)webViewDidFinishLoad:(UIWebView *)webView {
if (_isViewInvisible) {
// if our cache asks us to hide the view, then we do, but
// in case of a stale cache, we will display the view in a moment
// note that showing the view now would cause a visible white
// flash in the common case where the cache is up to date
[self performSelector:@selector(showWebView) withObject:nil afterDelay:.05];
} else {
[self hideSpinner];
}
[self updateWebOrientation];
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
// 102 == WebKitErrorFrameLoadInterruptedByPolicyChange
if (!([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102)) {
[self dismissWithError:error animated:YES];
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// UIDeviceOrientationDidChangeNotification
- (void)deviceOrientationDidChange:(void*)object {
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (!_showingKeyboard && [self shouldRotateToOrientation:orientation]) {
[self updateWebOrientation];
CGFloat duration = [UIApplication sharedApplication].statusBarOrientationAnimationDuration;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:duration];
[self sizeToFitOrientation:YES];
[UIView commitAnimations];
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// UIKeyboardNotifications
- (void)keyboardWillShow:(NSNotification*)notification {
_showingKeyboard = YES;
if (FBIsDeviceIPad()) {
// On the iPad the screen is large enough that we don't need to
// resize the dialog to accomodate the keyboard popping up
return;
}
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (UIInterfaceOrientationIsLandscape(orientation)) {
_webView.frame = CGRectInset(_webView.frame,
-(kPadding + kBorderWidth),
-(kPadding + kBorderWidth));
}
}
- (void)keyboardWillHide:(NSNotification*)notification {
_showingKeyboard = NO;
if (FBIsDeviceIPad()) {
return;
}
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (UIInterfaceOrientationIsLandscape(orientation)) {
_webView.frame = CGRectInset(_webView.frame,
kPadding + kBorderWidth,
kPadding + kBorderWidth);
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////
// public
/**
* Find a specific parameter from the url
*/
- (NSString *) getStringFromUrl: (NSString*) url needle:(NSString *) needle {
NSString * str = nil;
NSRange start = [url rangeOfString:needle];
if (start.location != NSNotFound) {
// confirm that the parameter is not a partial name match
unichar c = '?';
if (start.location != 0) {
c = [url characterAtIndex:start.location - 1];
}
if (c == '?' || c == '&' || c == '#') {
NSRange end = [[url substringFromIndex:start.location+start.length] rangeOfString:@"&"];
NSUInteger offset = start.location+start.length;
str = end.location == NSNotFound ?
[url substringFromIndex:offset] :
[url substringWithRange:NSMakeRange(offset, end.location)];
str = [str stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
}
}
return str;
}
- (id)initWithURL: (NSString *) serverURL
params: (NSMutableDictionary *) params
isViewInvisible: (BOOL)isViewInvisible
frictionlessSettings: (FBFrictionlessRequestSettings*) frictionlessSettings
delegate: (id <FBDialogDelegate>) delegate {
self = [self init];
_serverURL = [serverURL retain];
_params = [params retain];
_delegate = delegate;
_isViewInvisible = isViewInvisible;
_frictionlessSettings = [frictionlessSettings retain];
return self;
}
- (void)load {
[self loadURL:_serverURL get:_params];
}
- (void)loadURL:(NSString*)url get:(NSDictionary*)getParams {
[_loadingURL release];
_loadingURL = [[self generateURL:url params:getParams] retain];
NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:_loadingURL];
[_webView loadRequest:request];
}
- (void)show {
[self load];
[self sizeToFitOrientation:NO];
CGFloat innerWidth = self.frame.size.width - (kBorderWidth+1)*2;
[_closeButton sizeToFit];
_closeButton.frame = CGRectMake(
2,
2,
29,
29);
_webView.frame = CGRectMake(
kBorderWidth+1,
kBorderWidth+1,
innerWidth,
self.frame.size.height - (1 + kBorderWidth*2));
if (!_isViewInvisible) {
[self showSpinner];
[self showWebView];
}
}
- (void)dismissWithSuccess:(BOOL)success animated:(BOOL)animated {
if (success) {
if ([_delegate respondsToSelector:@selector(dialogDidComplete:)]) {
[_delegate dialogDidComplete:self];
}
} else {
if ([_delegate respondsToSelector:@selector(dialogDidNotComplete:)]) {
[_delegate dialogDidNotComplete:self];
}
}
[self dismiss:animated];
}
- (void)dismissWithError:(NSError*)error animated:(BOOL)animated {
if ([_delegate respondsToSelector:@selector(dialog:didFailWithError:)]) {
[_delegate dialog:self didFailWithError:error];
}
[self dismiss:animated];
}
- (void)dialogWillAppear {
}
- (void)dialogWillDisappear {
}
- (void)dialogDidSucceed:(NSURL *)url {
if ([_delegate respondsToSelector:@selector(dialogCompleteWithUrl:)]) {
[_delegate dialogCompleteWithUrl:url];
}
[self dismissWithSuccess:YES animated:YES];
}
- (void)dialogDidCancel:(NSURL *)url {
if ([_delegate respondsToSelector:@selector(dialogDidNotCompleteWithUrl:)]) {
[_delegate dialogDidNotCompleteWithUrl:url];
}
[self dismissWithSuccess:NO animated:YES];
}
@end