CCLogin.m 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. //
  2. // CCLogin.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 09/04/15.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCLogin.h"
  24. #import "AppDelegate.h"
  25. #import "CCUtility.h"
  26. #import "NCBridgeSwift.h"
  27. #import "NCNetworkingSync.h"
  28. @interface CCLogin ()
  29. {
  30. AppDelegate *appDelegate;
  31. UIView *rootView;
  32. }
  33. @end
  34. @implementation CCLogin
  35. - (void)viewDidLoad
  36. {
  37. [super viewDidLoad];
  38. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  39. self.imageBrand.image = [UIImage imageNamed:@"loginLogo"];
  40. self.login.backgroundColor = [NCBrandColor sharedInstance].customer;
  41. // Bottom label
  42. self.bottomLabel.text = NSLocalizedString([NCBrandOptions sharedInstance].textLoginProvider, nil);
  43. self.bottomLabel.userInteractionEnabled = YES;
  44. if ([NCBrandOptions sharedInstance].disable_linkLoginProvider) {
  45. self.bottomLabel.hidden = YES;
  46. }
  47. if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
  48. // Portrait
  49. if ([NCBrandOptions sharedInstance].disable_linkLoginProvider == NO)
  50. self.bottomLabel.hidden = NO;
  51. self.loginTypeView.hidden = NO;
  52. } else {
  53. // Landscape
  54. self.bottomLabel.hidden = YES;
  55. self.loginTypeView.hidden = YES;
  56. }
  57. UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tabBottomLabel)];
  58. [self.bottomLabel addGestureRecognizer:tapGesture];
  59. self.annulla.tintColor = [NCBrandColor sharedInstance].customer;
  60. [self.baseUrl setDelegate:self];
  61. [self.password setDelegate:self];
  62. [self.user setDelegate:self];
  63. [self.baseUrl setFont:[UIFont systemFontOfSize:13]];
  64. [self.user setFont:[UIFont systemFontOfSize:13]];
  65. [self.password setFont:[UIFont systemFontOfSize:13]];
  66. self.imageBaseUrl.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"loginURL"] color:[NCBrandColor sharedInstance].customer];
  67. self.imageUser.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"loginUser"] color:[NCBrandColor sharedInstance].customer];
  68. self.imagePassword.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"loginPassword"] color:[NCBrandColor sharedInstance].customer];
  69. self.loadingBaseUrl.image = [UIImage animatedImageWithAnimatedGIFURL:[[NSBundle mainBundle] URLForResource: @"loading@2x" withExtension:@"gif"]];
  70. self.loadingBaseUrl.hidden = YES;
  71. // Brand
  72. if ([NCBrandOptions sharedInstance].disable_request_login_url) {
  73. _baseUrl.text = [NCBrandOptions sharedInstance].loginBaseUrl;
  74. _imageBaseUrl.hidden = YES;
  75. _baseUrl.hidden = YES;
  76. }
  77. if (_loginType == loginAdd) {
  78. // Login Flow ?
  79. _imageUser.hidden = YES;
  80. _user.hidden = YES;
  81. _imagePassword.hidden = YES;
  82. _password.hidden = YES;
  83. }
  84. if (_loginType == loginAddForced) {
  85. _annulla.hidden = YES;
  86. // Login Flow ?
  87. _imageUser.hidden = YES;
  88. _user.hidden = YES;
  89. _imagePassword.hidden = YES;
  90. _password.hidden = YES;
  91. }
  92. if (_loginType == loginModifyPasswordUser) {
  93. _baseUrl.text = appDelegate.activeUrl;
  94. _baseUrl.userInteractionEnabled = NO;
  95. _baseUrl.textColor = [UIColor lightGrayColor];
  96. _user.text = appDelegate.activeUser;
  97. _user.userInteractionEnabled = NO;
  98. _user.textColor = [UIColor lightGrayColor];
  99. }
  100. self.baseUrl.placeholder = NSLocalizedString(@"_login_url_", nil);
  101. self.user.placeholder = NSLocalizedString(@"_username_", nil);
  102. self.password.placeholder = NSLocalizedString(@"_password_", nil);
  103. [self.annulla setTitle:NSLocalizedString(@"_cancel_", nil) forState:UIControlStateNormal];
  104. [self.login setTitle:NSLocalizedString(@"_login_", nil) forState:UIControlStateNormal];
  105. [self.loginTypeView setTitle:NSLocalizedString(@"_traditional_login_", nil) forState:UIControlStateNormal];
  106. [self.loginTypeView setTitleColor:[NCBrandColor sharedInstance].customer forState:UIControlStateNormal];
  107. }
  108. - (void)viewWillAppear:(BOOL)animated
  109. {
  110. [super viewWillAppear:animated];
  111. // verify URL
  112. if (_loginType == loginModifyPasswordUser && [self.baseUrl.text length] > 0)
  113. [self testUrl];
  114. }
  115. // E' apparsa
  116. - (void)viewDidAppear:(BOOL)animated
  117. {
  118. [super viewDidAppear:animated];
  119. }
  120. //
  121. - (void)viewDidDisappear:(BOOL)animated
  122. {
  123. [super viewDidDisappear:animated];
  124. if ([self.delegate respondsToSelector:@selector(loginDisappear)])
  125. [self.delegate loginDisappear];
  126. }
  127. - (BOOL)textFieldShouldReturn:(UITextField *)textField
  128. {
  129. [textField resignFirstResponder];
  130. return YES;
  131. }
  132. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  133. {
  134. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  135. if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
  136. // Portrait
  137. if ([NCBrandOptions sharedInstance].disable_linkLoginProvider == NO)
  138. self.bottomLabel.hidden = NO;
  139. self.loginTypeView.hidden = NO;
  140. } else {
  141. // Landscape
  142. self.bottomLabel.hidden = YES;
  143. self.loginTypeView.hidden = YES;
  144. }
  145. }];
  146. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  147. }
  148. #pragma --------------------------------------------------------------------------------------------
  149. #pragma mark == Chech Server URL ==
  150. #pragma --------------------------------------------------------------------------------------------
  151. - (void)testUrl
  152. {
  153. self.login.enabled = NO;
  154. self.loadingBaseUrl.hidden = NO;
  155. // Check whether baseUrl contain protocol. If not add https:// by default.
  156. if(![self.baseUrl.text hasPrefix:@"https"] && ![self.baseUrl.text hasPrefix:@"http"]) {
  157. self.baseUrl.text = [NSString stringWithFormat:@"https://%@",self.baseUrl.text];
  158. }
  159. // Remove stored cookies
  160. NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
  161. for (NSHTTPCookie *cookie in [storage cookies])
  162. {
  163. [storage deleteCookie:cookie];
  164. }
  165. // Test Login Flow
  166. if ([self.baseUrl.text length] > 0 && _user.hidden && _password.hidden) {
  167. NSString *urlBase = self.baseUrl.text;
  168. // Remove trailing slash
  169. if ([self.baseUrl.text hasSuffix:@"/"])
  170. urlBase = [self.baseUrl.text substringToIndex:[self.baseUrl.text length] - 1];
  171. NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlBase] cachePolicy:0 timeoutInterval:20.0];
  172. [request addValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  173. [request addValue:@"true" forHTTPHeaderField:@"OCS-APIRequest"];
  174. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  175. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  176. NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler: ^(NSData *data, NSURLResponse *response, NSError *error) {
  177. dispatch_async(dispatch_get_main_queue(), ^{
  178. self.login.enabled = YES;
  179. self.loadingBaseUrl.hidden = YES;
  180. if (error) {
  181. if ([error code] == NSURLErrorServerCertificateUntrusted) {
  182. [[CCCertificate sharedManager] presentViewControllerCertificateWithTitle:[error localizedDescription] viewController:self delegate:self];
  183. } else {
  184. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_connection_error_", nil) message:[error localizedDescription] preferredStyle:UIAlertControllerStyleAlert];
  185. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  186. [alertController addAction:okAction];
  187. [self presentViewController:alertController animated:YES completion:nil];
  188. }
  189. } else {
  190. [self dismissViewControllerAnimated:YES completion: ^{
  191. appDelegate.activeLoginWeb = [CCLoginWeb new];
  192. appDelegate.activeLoginWeb.loginType = _loginType;
  193. appDelegate.activeLoginWeb.delegate = (id<CCLoginDelegateWeb>)self.delegate;
  194. appDelegate.activeLoginWeb.urlBase = urlBase;
  195. [appDelegate.activeLoginWeb presentModalWithDefaultTheme:(UIViewController *)self.delegate];
  196. }];
  197. }
  198. });
  199. }];
  200. [task resume];
  201. } else {
  202. NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:self.baseUrl.text] cachePolicy:0 timeoutInterval:20.0];
  203. [request addValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  204. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  205. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  206. NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler: ^(NSData *data, NSURLResponse *response, NSError *error) {
  207. dispatch_async(dispatch_get_main_queue(), ^{
  208. self.login.enabled = YES;
  209. self.loadingBaseUrl.hidden = YES;
  210. if (error != nil) {
  211. // self signed certificate
  212. if ([error code] == NSURLErrorServerCertificateUntrusted) {
  213. [[CCCertificate sharedManager] presentViewControllerCertificateWithTitle:[error localizedDescription] viewController:self delegate:self];
  214. } else {
  215. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_connection_error_", nil) message:[error localizedDescription] preferredStyle:UIAlertControllerStyleAlert];
  216. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  217. [alertController addAction:okAction];
  218. [self presentViewController:alertController animated:YES completion:nil];
  219. }
  220. }
  221. });
  222. }];
  223. [task resume];
  224. }
  225. }
  226. - (void)trustedCerticateAccepted
  227. {
  228. NSLog(@"[LOG] Certificate trusted");
  229. }
  230. - (void)trustedCerticateDenied
  231. {
  232. if (_loginType == loginModifyPasswordUser)
  233. [self handleAnnulla:self];
  234. }
  235. -(void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler
  236. {
  237. // The pinnning check
  238. if ([[CCCertificate sharedManager] checkTrustedChallenge:challenge]) {
  239. completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
  240. } else {
  241. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  242. }
  243. }
  244. #pragma --------------------------------------------------------------------------------------------
  245. #pragma mark == Login ==
  246. #pragma --------------------------------------------------------------------------------------------
  247. - (void)loginCloudUrl:(NSString *)url user:(NSString *)user password:(NSString *)password
  248. {
  249. NSError *error = [[NCNetworkingSync sharedManager] checkServer:[NSString stringWithFormat:@"%@%@", url, webDAV] user:user userID:user password:password];
  250. dispatch_async(dispatch_get_main_queue(), ^{
  251. self.login.enabled = NO;
  252. self.loadingBaseUrl.hidden = NO;
  253. if (!error) {
  254. // account
  255. NSString *account = [NSString stringWithFormat:@"%@ %@", user, url];
  256. if (_loginType == loginModifyPasswordUser) {
  257. // Change Password
  258. tableAccount *tbAccount = [[NCManageDatabase sharedInstance] setAccountPassword:account password:password];
  259. // Setting appDelegate active account
  260. [appDelegate settingActiveAccount:tbAccount.account activeUrl:tbAccount.url activeUser:tbAccount.user activeUserID:tbAccount.userID activePassword:tbAccount.password];
  261. // Dismiss
  262. if ([self.delegate respondsToSelector:@selector(loginSuccess:)])
  263. [self.delegate loginSuccess:_loginType];
  264. [self dismissViewControllerAnimated:YES completion:nil];
  265. } else {
  266. [[NCManageDatabase sharedInstance] deleteAccount:account];
  267. [[NCManageDatabase sharedInstance] addAccount:account url:url user:user password:password loginFlow:false];
  268. // Read User Profile
  269. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:account];
  270. metadataNet.action = actionGetUserProfile;
  271. [appDelegate.netQueue addOperation:[[OCnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:user withUserID:user withPassword:password withUrl:url]];
  272. }
  273. } else {
  274. if ([error code] != NSURLErrorServerCertificateUntrusted) {
  275. NSString *description = [error.userInfo objectForKey:@"NSLocalizedDescription"];
  276. NSString *message = [NSString stringWithFormat:@"%@.\n%@", NSLocalizedStringFromTable(@"_not_possible_connect_to_server_", @"Error", nil), description];
  277. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  278. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  279. [alertController addAction:okAction];
  280. [self presentViewController:alertController animated:YES completion:nil];
  281. }
  282. }
  283. self.login.enabled = YES;
  284. self.loadingBaseUrl.hidden = YES;
  285. });
  286. }
  287. #pragma --------------------------------------------------------------------------------------------
  288. #pragma mark ==== User Profile ====
  289. #pragma --------------------------------------------------------------------------------------------
  290. - (void)getUserProfileFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  291. {
  292. [[NCManageDatabase sharedInstance] deleteAccount:metadataNet.account];
  293. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  294. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  295. [alertController addAction:okAction];
  296. [self presentViewController:alertController animated:YES completion:nil];
  297. }
  298. - (void)getUserProfileSuccess:(CCMetadataNet *)metadataNet userProfile:(OCUserProfile *)userProfile
  299. {
  300. // Verify if the account already exists
  301. if (userProfile.id.length > 0 && self.baseUrl.text.length > 0 && self.user.text.length > 0) {
  302. tableAccount *accountAlreadyExists = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"url = %@ AND user = %@ AND userID != %@", self.baseUrl.text, userProfile.id, self.user.text]];
  303. if (accountAlreadyExists) {
  304. [[NCManageDatabase sharedInstance] deleteAccount:metadataNet.account];
  305. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:[NSString stringWithFormat:NSLocalizedString(@"_account_already_exists_", nil), userProfile.id] preferredStyle:UIAlertControllerStyleAlert];
  306. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  307. [alertController addAction:okAction];
  308. [self presentViewController:alertController animated:YES completion:nil];
  309. return;
  310. }
  311. }
  312. // Verify if account is a valid account
  313. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account = %@", metadataNet.account]];
  314. if (account) {
  315. // Update User (+ userProfile.id)
  316. [[NCManageDatabase sharedInstance] setAccountsUserProfile:userProfile];
  317. // Set this account as default
  318. tableAccount *account = [[NCManageDatabase sharedInstance] setAccountActive:metadataNet.account];
  319. if (account) {
  320. // Setting appDelegate active account
  321. [appDelegate settingActiveAccount:account.account activeUrl:account.url activeUser:account.user activeUserID:account.userID activePassword:account.password];
  322. // Ok ! Dismiss
  323. if ([self.delegate respondsToSelector:@selector(loginSuccess:)])
  324. [self.delegate loginSuccess:_loginType];
  325. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  326. [self dismissViewControllerAnimated:YES completion:nil];
  327. });
  328. }
  329. }
  330. }
  331. #pragma --------------------------------------------------------------------------------------------
  332. #pragma mark == TextField ==
  333. #pragma --------------------------------------------------------------------------------------------
  334. -(void)textFieldDidBeginEditing:(UITextField *)textField
  335. {
  336. if (textField == self.password) {
  337. self.toggleVisiblePassword.hidden = NO;
  338. self.password.defaultTextAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], NSForegroundColorAttributeName: [UIColor darkGrayColor]};
  339. }
  340. }
  341. -(void)textFieldDidEndEditing:(UITextField *)textField
  342. {
  343. if (textField == self.password) {
  344. self.toggleVisiblePassword.hidden = YES;
  345. self.password.defaultTextAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], NSForegroundColorAttributeName: [UIColor darkGrayColor]};
  346. }
  347. }
  348. #pragma --------------------------------------------------------------------------------------------
  349. #pragma mark == Action ==
  350. #pragma --------------------------------------------------------------------------------------------
  351. - (void)tabBottomLabel
  352. {
  353. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NCBrandOptions sharedInstance].linkLoginProvider]];
  354. }
  355. - (IBAction)handlebaseUrlchange:(id)sender
  356. {
  357. if ([self.baseUrl.text length] > 0 && !_user.hidden && !_password.hidden)
  358. [self performSelector:@selector(testUrl) withObject:nil];
  359. }
  360. - (IBAction)handleButtonLogin:(id)sender
  361. {
  362. if ([self.baseUrl.text length] > 0 && _user.hidden && _password.hidden) {
  363. [self testUrl];
  364. return;
  365. }
  366. if ([self.baseUrl.text length] > 0 && [self.user.text length] && [self.password.text length]) {
  367. // remove last char if /
  368. if ([[self.baseUrl.text substringFromIndex:[self.baseUrl.text length] - 1] isEqualToString:@"/"])
  369. self.baseUrl.text = [self.baseUrl.text substringToIndex:[self.baseUrl.text length] - 1];
  370. NSString *url = self.baseUrl.text;
  371. NSString *user = self.user.text;
  372. NSString *password = self.password.text;
  373. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  374. [self loginCloudUrl:url user:user password:password];
  375. });
  376. }
  377. }
  378. - (IBAction)handleAnnulla:(id)sender
  379. {
  380. [self dismissViewControllerAnimated:YES completion:nil];
  381. }
  382. - (IBAction)handleToggleVisiblePassword:(id)sender
  383. {
  384. NSString *currentPassword = self.password.text;
  385. self.password.secureTextEntry = ! self.password.secureTextEntry;
  386. self.password.text = @"";
  387. self.password.text = currentPassword;
  388. self.password.defaultTextAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], NSForegroundColorAttributeName: [UIColor darkGrayColor]};
  389. }
  390. - (IBAction)handleLoginTypeView:(id)sender
  391. {
  392. if (_user.hidden && _password.hidden) {
  393. _imageUser.hidden = NO;
  394. _user.hidden = NO;
  395. _imagePassword.hidden = NO;
  396. _password.hidden = NO;
  397. [self.loginTypeView setTitle:NSLocalizedString(@"_web_login_", nil) forState:UIControlStateNormal];
  398. } else {
  399. _imageUser.hidden = YES;
  400. _user.hidden = YES;
  401. _imagePassword.hidden = YES;
  402. _password.hidden = YES;
  403. [self.loginTypeView setTitle:NSLocalizedString(@"_traditional_login_", nil) forState:UIControlStateNormal];
  404. }
  405. }
  406. @end