AppDelegate.swift 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  1. //
  2. // AppDelegate.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14 (19/02/21 swift).
  6. // Copyright (c) 2014 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  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 UIKit
  24. import BackgroundTasks
  25. import NCCommunication
  26. import TOPasscodeViewController
  27. import LocalAuthentication
  28. import Firebase
  29. @UIApplicationMain
  30. class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, TOPasscodeViewControllerDelegate {
  31. var backgroundSessionCompletionHandler: (() -> Void)?
  32. var window: UIWindow?
  33. @objc var account: String = ""
  34. @objc var urlBase: String = ""
  35. @objc var user: String = ""
  36. @objc var userID: String = ""
  37. @objc var password: String = ""
  38. var activeAppConfigView: NCAppConfigView?
  39. var activeFavorite: NCFavorite?
  40. var activeFiles: NCFiles?
  41. var activeFileViewInFolder: NCFileViewInFolder?
  42. var activeLogin: CCLogin?
  43. var activeLoginWeb: NCLoginWeb?
  44. @objc var activeMedia: NCMedia?
  45. var activeMore: NCMore?
  46. var activeOffline: NCOffline?
  47. var activeRecent: NCRecent?
  48. var activeServerUrl: String = ""
  49. var activeShares: NCShares?
  50. var activeTransfers: NCTransfers?
  51. var activeTrash: NCTrash?
  52. var activeViewController: UIViewController?
  53. var activeViewerVideo: NCViewerVideo?
  54. struct progressType {
  55. var progress: Float
  56. var totalBytes: Int64
  57. var totalBytesExpected: Int64
  58. }
  59. var listFilesVC: [String:NCFiles] = [:]
  60. var listFavoriteVC: [String:NCFavorite] = [:]
  61. var listOfflineVC: [String:NCOffline] = [:]
  62. var listProgress: [String:progressType] = [:]
  63. var disableSharesView: Bool = false
  64. var documentPickerViewController: NCDocumentPickerViewController?
  65. var networkingAutoUpload: NCNetworkingAutoUpload?
  66. var passcodeViewController: TOPasscodeViewController?
  67. var pasteboardOcIds: [String] = []
  68. var shares: [tableShare] = []
  69. var ncUserDefaults: UserDefaults?
  70. @objc var timerErrorNetworking: Timer?
  71. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  72. let userAgent = CCUtility.getUserAgent() as String
  73. let isSimulatorOrTestFlight = NCUtility.shared.isSimulatorOrTestFlight()
  74. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  75. UserDefaults.standard.register(defaults: ["UserAgent" : userAgent])
  76. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service == false {
  77. FirebaseApp.configure()
  78. }
  79. CCUtility.createDirectoryStandard()
  80. CCUtility.emptyTemporaryDirectory()
  81. NCCommunicationCommon.shared.setup(delegate: NCNetworking.shared)
  82. NCCommunicationCommon.shared.setup(userAgent: userAgent)
  83. startTimerErrorNetworking()
  84. // LOG
  85. let levelLog = CCUtility.getLogLevel()
  86. NCCommunicationCommon.shared.levelLog = levelLog
  87. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  88. NCCommunicationCommon.shared.pathLog = pathDirectoryGroup
  89. }
  90. NCCommunicationCommon.shared.copyLogToDocumentDirectory = true
  91. if isSimulatorOrTestFlight {
  92. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS + " (Simulator / TestFlight)")
  93. } else {
  94. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS)
  95. }
  96. NotificationCenter.default.addObserver(self, selector: #selector(initializeMain(notification:)), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterInitializeMain), object: nil)
  97. if let tableAccount = NCManageDatabase.shared.getAccountActive() {
  98. // FIX 3.0.5 lost urlbase
  99. if tableAccount.urlBase.count == 0 {
  100. let user = tableAccount.user + " "
  101. let urlBase = tableAccount.account.replacingOccurrences(of: user, with: "")
  102. tableAccount.urlBase = urlBase
  103. NCManageDatabase.shared.updateAccount(tableAccount)
  104. }
  105. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userID: tableAccount.userID, password: CCUtility.getPassword(tableAccount.account))
  106. } else {
  107. CCUtility.deleteAllChainStore()
  108. if let bundleID = Bundle.main.bundleIdentifier {
  109. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  110. }
  111. }
  112. ncUserDefaults = UserDefaults(suiteName: NCBrandOptions.shared.capabilitiesGroups)
  113. // Push Notification
  114. application.registerForRemoteNotifications()
  115. UNUserNotificationCenter.current().delegate = self
  116. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (_, _) in }
  117. // AV
  118. do {
  119. try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
  120. try AVAudioSession.sharedInstance().setActive(true)
  121. } catch {
  122. print(error)
  123. }
  124. application.beginReceivingRemoteControlEvents()
  125. // Store review
  126. if !NCUtility.shared.isSimulatorOrTestFlight() {
  127. let review = NCStoreReview()
  128. review.incrementAppRuns()
  129. review.showStoreReview()
  130. }
  131. // Detect Dark mode
  132. if #available(iOS 13.0, *) {
  133. if CCUtility.getDarkModeDetect() {
  134. if UITraitCollection.current.userInterfaceStyle == .dark {
  135. CCUtility.setDarkMode(true)
  136. } else {
  137. CCUtility.setDarkMode(false)
  138. }
  139. }
  140. }
  141. if NCBrandOptions.shared.disable_intro {
  142. CCUtility.setIntro(true)
  143. if account == "" {
  144. openLogin(viewController: nil, selector: NCBrandGlobal.shared.introLogin, openLoginWeb: false)
  145. }
  146. } else {
  147. if !CCUtility.getIntro() {
  148. if let introViewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  149. let navController = UINavigationController(rootViewController: introViewController)
  150. window?.rootViewController = navController
  151. window?.makeKeyAndVisible()
  152. }
  153. }
  154. }
  155. // init home
  156. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterInitializeMain)
  157. // Passcode
  158. DispatchQueue.global().async {
  159. self.passcodeWithAutomaticallyPromptForBiometricValidation(true)
  160. }
  161. // Auto upload
  162. networkingAutoUpload = NCNetworkingAutoUpload.init()
  163. // Background task: register
  164. if #available(iOS 13.0, *) {
  165. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCBrandGlobal.shared.refreshTask, using: nil) { task in
  166. self.handleRefreshTask(task)
  167. }
  168. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCBrandGlobal.shared.processingTask, using: nil) { task in
  169. self.handleProcessingTask(task)
  170. }
  171. } else {
  172. application.setMinimumBackgroundFetchInterval(UIApplication.backgroundFetchIntervalMinimum)
  173. }
  174. return true
  175. }
  176. // L' applicazione entrerà in primo piano (attivo sempre)
  177. func applicationDidBecomeActive(_ application: UIApplication) {
  178. NCSettingsBundleHelper.setVersionAndBuildNumber()
  179. if account == "" { return}
  180. NCNetworking.shared.verifyUploadZombie()
  181. }
  182. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  183. func applicationWillEnterForeground(_ application: UIApplication) {
  184. if account == "" { return}
  185. NCCommunicationCommon.shared.writeLog("Application will enter in foreground")
  186. // Request Passcode
  187. passcodeWithAutomaticallyPromptForBiometricValidation(true)
  188. // Initialize Auto upload
  189. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  190. // Required unsubscribing / subscribing
  191. NCPushNotification.shared().pushNotification()
  192. // Request Service Server Nextcloud
  193. NCService.shared.startRequestServicesServer()
  194. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterApplicationWillEnterForeground)
  195. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterRichdocumentGrabFocus)
  196. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterReloadDataSourceNetworkForced)
  197. }
  198. func applicationWillResignActive(_ application: UIApplication) {
  199. if account == "" { return}
  200. if activeFileViewInFolder != nil {
  201. activeFileViewInFolder?.dismiss(animated: false, completion: {
  202. self.activeFileViewInFolder = nil
  203. })
  204. }
  205. }
  206. func applicationDidEnterBackground(_ application: UIApplication) {
  207. if account == "" { return}
  208. NCCommunicationCommon.shared.writeLog("Application did enter in background")
  209. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterApplicationDidEnterBackground)
  210. passcodeWithAutomaticallyPromptForBiometricValidation(false)
  211. if #available(iOS 13.0, *) {
  212. scheduleAppRefresh()
  213. scheduleBackgroundProcessing()
  214. }
  215. }
  216. func applicationWillTerminate(_ application: UIApplication) {
  217. NCCommunicationCommon.shared.writeLog("bye bye")
  218. }
  219. // MARK: -
  220. @objc func initializeMain(notification: NSNotification) {
  221. if account == "" { return}
  222. NCCommunicationCommon.shared.writeLog("initialize Main")
  223. // Clear error certificate
  224. CCUtility.setCertificateError(account, error: false)
  225. // Registeration push notification
  226. NCPushNotification.shared().pushNotification()
  227. // Setting Theming
  228. NCBrandColor.shared.settingThemingColor(account: account)
  229. // Start Auto Upload
  230. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  231. // Start services
  232. NCService.shared.startRequestServicesServer()
  233. // close detail
  234. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterMenuDetailClose)
  235. // Registeration domain File Provider
  236. //FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  237. //[fileProviderDomain removeAllDomains];
  238. //[fileProviderDomain registerDomains];
  239. }
  240. // MARK: - Background Task
  241. @available(iOS 13.0, *)
  242. func scheduleAppRefresh() {
  243. let request = BGAppRefreshTaskRequest.init(identifier: NCBrandGlobal.shared.refreshTask)
  244. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  245. do {
  246. try BGTaskScheduler.shared.submit(request)
  247. NCCommunicationCommon.shared.writeLog("Refresh task success submit request \(request)")
  248. } catch {
  249. NCCommunicationCommon.shared.writeLog("Refresh task failed to submit request: \(error)")
  250. }
  251. }
  252. @available(iOS 13.0, *)
  253. func scheduleBackgroundProcessing() {
  254. let request = BGProcessingTaskRequest.init(identifier: NCBrandGlobal.shared.processingTask)
  255. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  256. request.requiresNetworkConnectivity = true
  257. request.requiresExternalPower = false
  258. do {
  259. try BGTaskScheduler.shared.submit(request)
  260. NCCommunicationCommon.shared.writeLog("Background Processing task success submit request \(request)")
  261. } catch {
  262. NCCommunicationCommon.shared.writeLog("Background Processing task failed to submit request: \(error)")
  263. }
  264. }
  265. @available(iOS 13.0, *)
  266. func handleRefreshTask(_ task: BGTask) {
  267. if account == "" {
  268. task.setTaskCompleted(success: true)
  269. return
  270. }
  271. NCCommunicationCommon.shared.writeLog("Start handler refresh task [Auto upload]")
  272. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  273. DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
  274. NCCommunicationCommon.shared.writeLog("Completition handler refresh task with %lu uploads [Auto upload]")
  275. task.setTaskCompleted(success: true)
  276. }
  277. }
  278. }
  279. @available(iOS 13.0, *)
  280. func handleProcessingTask(_ task: BGTask) {
  281. if account == "" {
  282. task.setTaskCompleted(success: true)
  283. return
  284. }
  285. NCCommunicationCommon.shared.writeLog("Start handler processing task [Synchronize Favorite & Offline]")
  286. NCNetworking.shared.listingFavoritescompletion(selector: NCBrandGlobal.shared.selectorReadFile) { (account, metadatas, errorCode, errorDescription) in
  287. NCCommunicationCommon.shared.writeLog("Completition listing favorite with error: \(errorCode)")
  288. }
  289. NCService.shared.synchronizeOffline(account: account)
  290. DispatchQueue.main.asyncAfter(deadline: .now() + 25) {
  291. NCCommunicationCommon.shared.writeLog("Completition handler processing task [Synchronize Favorite & Offline]")
  292. task.setTaskCompleted(success: true)
  293. }
  294. }
  295. // MARK: - Fetch
  296. func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  297. if account == "" {
  298. completionHandler(UIBackgroundFetchResult.noData)
  299. return
  300. }
  301. NCCommunicationCommon.shared.writeLog("Start perform Fetch [Auto upload]")
  302. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  303. NCCommunicationCommon.shared.writeLog("Completition perform Fetch with \(items) uploads [Auto upload]")
  304. if items == 0 {
  305. completionHandler(UIBackgroundFetchResult.noData)
  306. } else {
  307. completionHandler(UIBackgroundFetchResult.newData)
  308. }
  309. }
  310. }
  311. // MARK: - Background Networking Session
  312. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  313. NCCommunicationCommon.shared.writeLog("Start handle Events For Background URLSession: \(identifier)")
  314. backgroundSessionCompletionHandler = completionHandler
  315. }
  316. // MARK: - Push Notifications
  317. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  318. completionHandler(UNNotificationPresentationOptions.alert)
  319. }
  320. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  321. completionHandler()
  322. }
  323. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  324. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  325. }
  326. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  327. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { (result) in
  328. completionHandler(result)
  329. }
  330. }
  331. // MARK: - Login & checkErrorNetworking
  332. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  333. // use appConfig [MDM]
  334. if NCBrandOptions.shared.use_configuration && !(activeAppConfigView?.isViewLoaded ?? false) && activeAppConfigView?.view.window == nil {
  335. activeAppConfigView = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCAppConfigView") as? NCAppConfigView
  336. showLoginViewController(activeAppConfigView, contextViewController: viewController)
  337. return
  338. }
  339. // only for personalized LoginWeb [customer]
  340. if NCBrandOptions.shared.use_login_web_personalized && !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  341. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  342. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  343. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  344. return
  345. }
  346. // Nextcloud standard login
  347. if selector == NCBrandGlobal.shared.introSignup {
  348. if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  349. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  350. if selector == NCBrandGlobal.shared.introSignup {
  351. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  352. } else {
  353. activeLoginWeb?.urlBase = self.urlBase
  354. }
  355. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  356. }
  357. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  358. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  359. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  360. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  361. } else if openLoginWeb && !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  362. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  363. activeLoginWeb?.urlBase = urlBase
  364. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  365. } else if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  366. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  367. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  368. }
  369. }
  370. func showLoginViewController(_ viewController:UIViewController?, contextViewController: UIViewController?) {
  371. /*
  372. -(void)showLoginViewController:(UIViewController *)viewController forContext:(UIViewController *)contextViewController
  373. {
  374. if (contextViewController == NULL) {
  375. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  376. navigationController.navigationBar.barStyle = UIBarStyleBlack;
  377. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText;
  378. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer;
  379. [navigationController.navigationBar setTranslucent:false];
  380. self.window.rootViewController = navigationController;
  381. [self.window makeKeyAndVisible];
  382. } else if ([contextViewController isKindOfClass:[UINavigationController class]]) {
  383. UINavigationController *navigationController = ((UINavigationController *)contextViewController);
  384. [navigationController pushViewController:viewController animated:true];
  385. } else {
  386. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  387. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  388. navigationController.navigationBar.barStyle = UIBarStyleBlack;
  389. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText;
  390. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer;
  391. [navigationController.navigationBar setTranslucent:false];
  392. [contextViewController presentViewController:navigationController animated:true completion:nil];
  393. }
  394. }
  395. */
  396. }
  397. @objc func startTimerErrorNetworking() {
  398. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  399. }
  400. @objc func checkErrorNetworking() {
  401. if account == "" { return }
  402. // check unauthorized server (401)
  403. if CCUtility.getPasscode()?.count == 0 {
  404. openLogin(viewController: window?.rootViewController, selector: NCBrandGlobal.shared.introLogin, openLoginWeb: true)
  405. }
  406. // check certificate untrusted (-1202)
  407. if CCUtility.getCertificateError(account) {
  408. let alertController = UIAlertController(title: NSLocalizedString("_ssl_certificate_untrusted_", comment: ""), message: NSLocalizedString("_connect_server_anyway_", comment: ""), preferredStyle: .alert)
  409. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  410. NCNetworking.shared.writeCertificate(directoryCertificate: CCUtility.getDirectoryCerificates())
  411. self.startTimerErrorNetworking()
  412. }))
  413. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in
  414. self.startTimerErrorNetworking()
  415. }))
  416. window?.rootViewController?.present(alertController, animated: true, completion: {
  417. self.timerErrorNetworking?.invalidate()
  418. })
  419. }
  420. }
  421. // MARK: - Account & Communication
  422. @objc func settingAccount(_ account: String, urlBase: String, user: String, userID: String, password: String) {
  423. self.account = account
  424. self.urlBase = urlBase
  425. self.user = user
  426. self.userID = userID
  427. self.password = password
  428. _ = NCNetworkingNotificationCenter.shared
  429. NCCommunicationCommon.shared.setup(account: account, user: user, userId: userID, password: password, urlBase: urlBase)
  430. NCCommunicationCommon.shared.setup(webDav: NCUtilityFileSystem.shared.getWebDAV(account: account))
  431. NCCommunicationCommon.shared.setup(dav: NCUtilityFileSystem.shared.getDAV())
  432. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  433. if serverVersionMajor > 0 {
  434. NCCommunicationCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  435. }
  436. }
  437. @objc func deleteAccount(_ account: String, wipe: Bool) {
  438. // Push Notification
  439. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  440. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  441. }
  442. settingAccount("", urlBase: "", user: "", userID: "", password: "")
  443. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  444. for result in results {
  445. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  446. }
  447. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  448. CCUtility.clearAllKeysEnd(toEnd: account)
  449. CCUtility.clearAllKeysPushNotification(account)
  450. CCUtility.setCertificateError(account, error: false)
  451. CCUtility.setPassword(account, password: nil)
  452. if wipe {
  453. let accounts = NCManageDatabase.shared.getAccounts()
  454. if accounts?.count ?? 0 > 0 {
  455. if let newAccount = accounts?.first {
  456. if let account = NCManageDatabase.shared.setAccountActive(newAccount) {
  457. settingAccount(account.account, urlBase: account.urlBase, user: account.user, userID: account.userID, password: CCUtility.getPassword(account.account))
  458. NotificationCenter.default.postOnMainThread(name: NCBrandGlobal.shared.notificationCenterInitializeMain)
  459. }
  460. }
  461. } else {
  462. openLogin(viewController: window?.rootViewController, selector: NCBrandGlobal.shared.introLogin, openLoginWeb: false)
  463. }
  464. }
  465. }
  466. // MARK: - TOPasscodeViewController
  467. func passcodeWithAutomaticallyPromptForBiometricValidation(_ automaticallyPromptForBiometricValidation: Bool) {
  468. let laContext = LAContext()
  469. var error: NSError?
  470. if CCUtility.getPasscode()?.count == 0 || account == "" || CCUtility.getNotPasscodeAtStart() { return }
  471. if passcodeViewController == nil {
  472. passcodeViewController = TOPasscodeViewController.init(style: .translucentLight, passcodeType: .sixDigits)
  473. if #available(iOS 13.0, *) {
  474. if UITraitCollection.current.userInterfaceStyle == .dark {
  475. passcodeViewController?.style = .translucentDark
  476. }
  477. }
  478. passcodeViewController?.delegate = self
  479. passcodeViewController?.keypadButtonShowLettering = false
  480. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  481. if error == nil {
  482. if laContext.biometryType == .faceID {
  483. passcodeViewController?.biometryType = .faceID
  484. passcodeViewController?.allowBiometricValidation = true
  485. } else if laContext.biometryType == .touchID {
  486. passcodeViewController?.biometryType = .touchID
  487. passcodeViewController?.allowBiometricValidation = true
  488. }
  489. }
  490. }
  491. if let passcodeViewController = self.passcodeViewController {
  492. window?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  493. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  494. })
  495. }
  496. } else {
  497. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  498. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  499. }
  500. }
  501. }
  502. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  503. passcodeViewController.dismiss(animated: true) {
  504. self.passcodeViewController = nil
  505. }
  506. }
  507. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  508. return code == CCUtility.getPasscode()
  509. }
  510. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  511. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  512. if success {
  513. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  514. passcodeViewController.dismiss(animated: true) {
  515. self.passcodeViewController = nil
  516. }
  517. }
  518. }
  519. }
  520. }
  521. func enableTouchFaceID(_ automaticallyPromptForBiometricValidation: Bool) {
  522. if CCUtility.getEnableTouchFaceID() && automaticallyPromptForBiometricValidation && passcodeViewController?.view.window != nil {
  523. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  524. if success {
  525. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  526. self.passcodeViewController?.dismiss(animated: true) {
  527. self.passcodeViewController = nil
  528. }
  529. }
  530. }
  531. }
  532. }
  533. }
  534. }