forked from organicmaps/organicmaps
194 lines
5.5 KiB
Text
194 lines
5.5 KiB
Text
#import "MWMAuthorizationWebViewLoginViewController.h"
|
|
#import "MWMAlertViewController.h"
|
|
#import "MWMAuthorizationCommon.h"
|
|
#import "MWMCircularProgress.h"
|
|
#import "MWMSettingsViewController.h"
|
|
|
|
#include "base/logging.hpp"
|
|
#include "editor/osm_auth.hpp"
|
|
|
|
#import <WebKit/WKNavigationDelegate.h>
|
|
#import <WebKit/WKWebView.h>
|
|
|
|
using namespace osm;
|
|
|
|
namespace
|
|
{
|
|
NSString * const kVerifierKey = @"oauth_verifier";
|
|
|
|
BOOL checkURLNeedsReload(NSString * urlString)
|
|
{
|
|
return [urlString hasSuffix:@"/"] || [urlString containsString:@"/welcome"];
|
|
}
|
|
|
|
NSString * getVerifier(NSString * urlString)
|
|
{
|
|
NSString * query = [urlString componentsSeparatedByString:@"?"].lastObject;
|
|
NSArray<NSString *> * queryComponents = [query componentsSeparatedByString:@"&"];
|
|
NSString * verifierValue = nil;
|
|
for (NSString * keyValuePair in queryComponents)
|
|
{
|
|
NSArray * pairComponents = [keyValuePair componentsSeparatedByString:@"="];
|
|
NSString * key = [pairComponents.firstObject stringByRemovingPercentEncoding];
|
|
if (![key isEqualToString:kVerifierKey])
|
|
continue;
|
|
verifierValue = [pairComponents.lastObject stringByRemovingPercentEncoding];
|
|
}
|
|
return verifierValue;
|
|
}
|
|
} // namespace
|
|
|
|
@interface MWMAuthorizationWebViewLoginViewController ()<WKNavigationDelegate>
|
|
|
|
@property(weak, nonatomic) IBOutlet WKWebView * webView;
|
|
@property(weak, nonatomic) IBOutlet UIView * spinnerView;
|
|
|
|
@property(nonatomic) MWMCircularProgress * spinner;
|
|
|
|
@end
|
|
|
|
@implementation MWMAuthorizationWebViewLoginViewController
|
|
{
|
|
RequestToken m_requestToken;
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
[self configNavBar];
|
|
[self loadAuthorizationPage];
|
|
}
|
|
|
|
#pragma mark - Configuration
|
|
|
|
- (void)configNavBar
|
|
{
|
|
self.title = L(@"login");
|
|
self.navigationItem.leftBarButtonItem =
|
|
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
|
|
target:self
|
|
action:@selector(onCancel)];
|
|
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
|
|
}
|
|
|
|
- (void)loadAuthorizationPage
|
|
{
|
|
[self startSpinner];
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
|
|
OsmOAuth const auth = OsmOAuth::ServerAuth();
|
|
try
|
|
{
|
|
OsmOAuth::UrlRequestToken urt;
|
|
switch (self.authType)
|
|
{
|
|
case MWMWebViewAuthorizationTypeGoogle: urt = auth.GetGoogleOAuthURL(); break;
|
|
case MWMWebViewAuthorizationTypeFacebook: urt = auth.GetFacebookOAuthURL(); break;
|
|
}
|
|
self->m_requestToken = urt.second;
|
|
NSURL * url = [NSURL URLWithString:@(urt.first.c_str())];
|
|
NSURLRequest * request = [NSURLRequest requestWithURL:url];
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self stopSpinner];
|
|
self.webView.hidden = NO;
|
|
[self.webView loadRequest:request];
|
|
});
|
|
}
|
|
catch (std::exception const & ex)
|
|
{
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self stopSpinner];
|
|
[[MWMAlertViewController activeAlertController] presentInternalErrorAlert];
|
|
});
|
|
LOG(LWARNING, ("Can't loadAuthorizationPage", ex.what()));
|
|
}
|
|
});
|
|
}
|
|
|
|
- (void)startSpinner
|
|
{
|
|
self.spinnerView.hidden = NO;
|
|
self.spinner = [[MWMCircularProgress alloc] initWithParentView:self.spinnerView];
|
|
[self.spinner setInvertColor:YES];
|
|
self.spinner.state = MWMCircularProgressStateSpinner;
|
|
self.webView.userInteractionEnabled = NO;
|
|
}
|
|
|
|
- (void)stopSpinner
|
|
{
|
|
self.spinnerView.hidden = YES;
|
|
self.spinner = nil;
|
|
self.webView.userInteractionEnabled = YES;
|
|
}
|
|
|
|
- (void)checkAuthorization:(NSString *)verifier
|
|
{
|
|
[self startSpinner];
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
|
|
OsmOAuth const auth = OsmOAuth::ServerAuth();
|
|
KeySecret ks;
|
|
try
|
|
{
|
|
ks = auth.FinishAuthorization(self->m_requestToken, verifier.UTF8String);
|
|
}
|
|
catch (std::exception const & ex)
|
|
{
|
|
LOG(LWARNING, ("checkAuthorization error", ex.what()));
|
|
}
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self stopSpinner];
|
|
if (OsmOAuth::IsValid(ks))
|
|
{
|
|
osm_auth_ios::AuthorizationStoreCredentials(ks);
|
|
UIViewController * svc = nil;
|
|
for (UIViewController * vc in self.navigationController.viewControllers)
|
|
{
|
|
if ([vc isKindOfClass:[MWMSettingsViewController class]])
|
|
{
|
|
svc = vc;
|
|
break;
|
|
}
|
|
}
|
|
if (svc)
|
|
[self.navigationController popToViewController:svc animated:YES];
|
|
else
|
|
[self.navigationController popToRootViewControllerAnimated:YES];
|
|
}
|
|
else
|
|
{
|
|
[self loadAuthorizationPage];
|
|
[self.alertController presentInvalidUserNameOrPasswordAlert];
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
#pragma mark - Actions
|
|
|
|
- (void)onCancel { [self.navigationController popViewControllerAnimated:YES]; }
|
|
#pragma mark - WKWebViewNavigation
|
|
|
|
- (void)webViewDidStartLoad:(WKWebView *)webView { [self startSpinner]; }
|
|
- (void)webViewDidFinishLoad:(WKWebView *)webView
|
|
{
|
|
[self stopSpinner];
|
|
NSString * urlString = webView.URL.absoluteString;
|
|
|
|
if (checkURLNeedsReload(urlString))
|
|
{
|
|
[self loadAuthorizationPage];
|
|
}
|
|
else if ([urlString containsString:kVerifierKey])
|
|
{
|
|
webView.hidden = YES;
|
|
NSString * verifier = getVerifier(urlString);
|
|
NSAssert(verifier, @"Verifier value is nil");
|
|
[self checkAuthorization:verifier];
|
|
}
|
|
}
|
|
|
|
- (void)webView:(WKWebView *)webView didFailLoadWithError:(NSError *)error
|
|
{
|
|
[[MWMAlertViewController activeAlertController] presentInternalErrorAlert];
|
|
}
|
|
|
|
@end
|