浏览代码

login flow

Marino Faggiana 7 年之前
父节点
当前提交
b3e731fd3f
共有 1 个文件被更改,包括 16 次插入8 次删除
  1. 16 8
      iOSClient/Login/CCLoginWeb.swift

+ 16 - 8
iOSClient/Login/CCLoginWeb.swift

@@ -86,16 +86,25 @@ extension CCLoginWeb: SwiftModalWebVCDelegate {
                 
                     if (loginType == loginModifyPasswordUser && NCBrandOptions.sharedInstance.use_login_web_flow) {
                         
-                        // Change Password
-                        guard let tableAccount = NCManageDatabase.sharedInstance.setAccountPassword(account, password: password) else {
+                        // Verify if change the active account
+                        guard let activeAccount = NCManageDatabase.sharedInstance.getAccountActive() else {
+                            self.viewController?.dismiss(animated: true, completion: nil)
+                            return
+                        }
+                        if (activeAccount.account != account) {
+                            self.viewController?.dismiss(animated: true, completion: nil)
                             return
                         }
                         
-                        if (tableAccount.account == account) {
-                            appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
+                        // Change Password
+                        guard let tableAccount = NCManageDatabase.sharedInstance.setAccountPassword(account, password: password) else {
+                            self.viewController?.dismiss(animated: true, completion: nil)
+                            return
                         }
                         
+                        appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
                         self.delegate?.loginSuccess(NSInteger(loginType.rawValue))
+                        
                         self.viewController?.dismiss(animated: true, completion: nil)
                     }
                     
@@ -106,14 +115,13 @@ extension CCLoginWeb: SwiftModalWebVCDelegate {
                         NCManageDatabase.sharedInstance.addAccount(account, url: serverUrl, user: username, password: password, loginFlow: true)
                         
                         guard let tableAccount = NCManageDatabase.sharedInstance.setAccountActive(account) else {
+                            self.viewController?.dismiss(animated: true, completion: nil)
                             return
                         }
                         
-                        if (tableAccount.account == account) {
-                            appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
-                        }
-                        
+                        appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
                         self.delegate?.loginSuccess(NSInteger(loginType.rawValue))
+                        
                         self.viewController?.dismiss(animated: true, completion: nil)
                     }
                 }