1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import UIKit
- import NextcloudKit
- class NCNetworkingCheckRemoteUser {
- func checkRemoteUser(account: String, error: NKError) {
- let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
- guard let tableAccount = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) else {
- return
- }
-
- NCNetworking.shared.cancelAllTransfer(account: account) { }
- NCOperationQueue.shared.cancelAllQueue()
- NCNetworking.shared.cancelAllTask()
-
- if serverVersionMajor >= NCGlobal.shared.nextcloudVersion17 {
- let token = CCUtility.getPassword(account)!
- if token.isEmpty {
- return
- }
- NextcloudKit.shared.getRemoteWipeStatus(serverUrl: tableAccount.urlBase, token: token) { account, wipe, data, error in
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- if wipe {
- appDelegate.deleteAccount(account, wipe: true)
- let error = NKError(errorCode: NCGlobal.shared.errorInternalError, errorDescription: "_wipe_account_")
- NCContentPresenter.shared.messageNotification(tableAccount.user, error: error, delay: NCGlobal.shared.dismissAfterSecondLong, type: NCContentPresenter.messageType.error, priority: .max)
- NextcloudKit.shared.setRemoteWipeCompletition(serverUrl: tableAccount.urlBase, token: token) { _, _ in print("wipe") }
- } else {
- if UIApplication.shared.applicationState == .active && NextcloudKit.shared.isNetworkReachable() && !CCUtility.getPassword(account).isEmpty && !appDelegate.deletePasswordSession {
- let description = String.localizedStringWithFormat(NSLocalizedString("_error_check_remote_user_", comment: ""), tableAccount.user, tableAccount.urlBase)
- let error = NKError(errorCode: error.errorCode, errorDescription: description)
- NCContentPresenter.shared.showError(error: error, priority: .max)
- CCUtility.setPassword(account, password: nil)
- NKCommon.shared.writeLog("[INFO] Password removed.")
- appDelegate.deletePasswordSession = true
- }
- }
- }
- } else if CCUtility.getPassword(account) != "" {
- if UIApplication.shared.applicationState == .active && NextcloudKit.shared.isNetworkReachable() {
- let description = String.localizedStringWithFormat(NSLocalizedString("_error_check_remote_user_", comment: ""), tableAccount.user, tableAccount.urlBase)
- let error = NKError(errorCode: error.errorCode, errorDescription: description)
- NCContentPresenter.shared.showError(error: error, priority: .max)
- CCUtility.setPassword(account, password: nil)
- }
- }
- }
- }
|