123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import UIKit
- import NCCommunication
- @objc class NCNetworkingCheckRemoteUser: NSObject {
- @objc public static let shared: NCNetworkingCheckRemoteUser = {
- let instance = NCNetworkingCheckRemoteUser()
- return instance
- }()
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- var checkRemoteUserInProgress = false
- @objc func checkRemoteUser(account: String) {
-
- if self.checkRemoteUserInProgress {
- return;
- } else {
- self.checkRemoteUserInProgress = true;
- }
-
- let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
- guard let tableAccount = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) else { return }
-
- if serverVersionMajor >= NCGlobal.shared.nextcloudVersion17 {
-
- let token = CCUtility.getPassword(account)!
- if token == "" { return }
-
- NCCommunication.shared.getRemoteWipeStatus(serverUrl: tableAccount.urlBase, token: token) { (account, wipe, errorCode, errorDescriptiuon) in
-
- if wipe {
-
- self.appDelegate.deleteAccount(account, wipe: true)
- NCContentPresenter.shared.messageNotification(tableAccount.user, description: "_wipe_account_", delay: NCGlobal.shared.dismissAfterSecondLong, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorInternalError)
- NCCommunication.shared.setRemoteWipeCompletition(serverUrl: tableAccount.urlBase, token: token) { (account, errorCode, errorDescription) in
- print("wipe");
- }
-
- } else {
-
- if UIApplication.shared.applicationState == .active && NCCommunication.shared.isNetworkReachable() {
- let description = String.localizedStringWithFormat(NSLocalizedString("_error_check_remote_user_", comment: ""), tableAccount.user, tableAccount.urlBase)
- NCContentPresenter.shared.messageNotification("_error_", description: description, delay: NCGlobal.shared.dismissAfterSecondLong, type: NCContentPresenter.messageType.error, errorCode: errorCode)
- CCUtility.setPassword(account, password: nil)
- }
- }
-
- self.checkRemoteUserInProgress = false
- }
-
- } else if CCUtility.getPassword(account) != "" {
-
- if UIApplication.shared.applicationState == .active && NCCommunication.shared.isNetworkReachable() {
- let description = String.localizedStringWithFormat(NSLocalizedString("_error_check_remote_user_", comment: ""), tableAccount.user, tableAccount.urlBase)
- NCContentPresenter.shared.messageNotification("_error_", description: description, delay: NCGlobal.shared.dismissAfterSecondLong, type: NCContentPresenter.messageType.error, errorCode: 403)
- CCUtility.setPassword(account, password: nil)
- }
-
- self.checkRemoteUserInProgress = false
- }
- }
- }
|