123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import UIKit
- import NextcloudKit
- class NCNetworkingCheckRemoteUser {
- func checkRemoteUser(account: String, error: NKError) {
- guard let tableAccount = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)),
- let token = CCUtility.getPassword(account), !token.isEmpty,
- let appDelegate = UIApplication.shared.delegate as? AppDelegate else { return }
- NCNetworking.shared.cancelSessions(inBackground: true)
- if NCGlobal.shared.capabilityServerVersionMajor >= NCGlobal.shared.nextcloudVersion17 {
- NextcloudKit.shared.getRemoteWipeStatus(serverUrl: tableAccount.urlBase, token: token) { account, wipe, _, error in
- 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() {
- 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)
- NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Password removed.")
- }
- }
- }
- } else {
- 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)
- }
- }
- }
- }
|