AppDelegate.swift 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  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. var listFilesVC: [String:NCFiles] = [:]
  55. var listFavoriteVC: [String:NCFavorite] = [:]
  56. var listOfflineVC: [String:NCOffline] = [:]
  57. var listProgress: [String:NCGlobal.progressType] = [:]
  58. var disableSharesView: Bool = false
  59. var documentPickerViewController: NCDocumentPickerViewController?
  60. var networkingAutoUpload: NCNetworkingAutoUpload?
  61. var passcodeViewController: TOPasscodeViewController?
  62. var pasteboardOcIds: [String] = []
  63. var shares: [tableShare] = []
  64. //var ncUserDefaults: UserDefaults?
  65. @objc var timerErrorNetworking: Timer?
  66. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  67. let userAgent = CCUtility.getUserAgent() as String
  68. let isSimulatorOrTestFlight = NCUtility.shared.isSimulatorOrTestFlight()
  69. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  70. UserDefaults.standard.register(defaults: ["UserAgent" : userAgent])
  71. //ncUserDefaults = UserDefaults(suiteName: NCBrandOptions.shared.capabilitiesGroups)
  72. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  73. FirebaseApp.configure()
  74. }
  75. CCUtility.createDirectoryStandard()
  76. CCUtility.emptyTemporaryDirectory()
  77. NCCommunicationCommon.shared.setup(delegate: NCNetworking.shared)
  78. NCCommunicationCommon.shared.setup(userAgent: userAgent)
  79. startTimerErrorNetworking()
  80. // LOG
  81. let levelLog = CCUtility.getLogLevel()
  82. NCCommunicationCommon.shared.levelLog = levelLog
  83. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  84. NCCommunicationCommon.shared.pathLog = pathDirectoryGroup
  85. }
  86. NCCommunicationCommon.shared.copyLogToDocumentDirectory = true
  87. if isSimulatorOrTestFlight {
  88. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS + " (Simulator / TestFlight)")
  89. } else {
  90. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS)
  91. }
  92. if let tableAccount = NCManageDatabase.shared.getAccountActive() {
  93. // FIX 3.0.5 lost urlbase
  94. if tableAccount.urlBase.count == 0 {
  95. let user = tableAccount.user + " "
  96. let urlBase = tableAccount.account.replacingOccurrences(of: user, with: "")
  97. tableAccount.urlBase = urlBase
  98. NCManageDatabase.shared.updateAccount(tableAccount)
  99. }
  100. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  101. } else {
  102. CCUtility.deleteAllChainStore()
  103. if let bundleID = Bundle.main.bundleIdentifier {
  104. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  105. }
  106. }
  107. // Push Notification
  108. application.registerForRemoteNotifications()
  109. UNUserNotificationCenter.current().delegate = self
  110. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (_, _) in }
  111. // AV
  112. do {
  113. try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
  114. try AVAudioSession.sharedInstance().setActive(true)
  115. } catch {
  116. print(error)
  117. }
  118. application.beginReceivingRemoteControlEvents()
  119. // Store review
  120. if !NCUtility.shared.isSimulatorOrTestFlight() {
  121. let review = NCStoreReview()
  122. review.incrementAppRuns()
  123. review.showStoreReview()
  124. }
  125. // Detect Dark mode
  126. if #available(iOS 13.0, *) {
  127. if CCUtility.getDarkModeDetect() {
  128. if UITraitCollection.current.userInterfaceStyle == .dark {
  129. CCUtility.setDarkMode(true)
  130. } else {
  131. CCUtility.setDarkMode(false)
  132. }
  133. }
  134. }
  135. if NCBrandOptions.shared.disable_intro {
  136. CCUtility.setIntro(true)
  137. if account == "" {
  138. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  139. }
  140. } else {
  141. if !CCUtility.getIntro() {
  142. if let introViewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  143. let navController = UINavigationController(rootViewController: introViewController)
  144. window?.rootViewController = navController
  145. window?.makeKeyAndVisible()
  146. }
  147. }
  148. }
  149. // init home
  150. NotificationCenter.default.addObserver(self, selector: #selector(initializeMain(notification:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitializeMain), object: nil)
  151. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
  152. // Passcode
  153. DispatchQueue.global().async {
  154. self.passcodeWithAutomaticallyPromptForBiometricValidation(true)
  155. }
  156. // Auto upload
  157. networkingAutoUpload = NCNetworkingAutoUpload.init()
  158. // Background task: register
  159. if #available(iOS 13.0, *) {
  160. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  161. self.handleRefreshTask(task)
  162. }
  163. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  164. self.handleProcessingTask(task)
  165. }
  166. } else {
  167. application.setMinimumBackgroundFetchInterval(UIApplication.backgroundFetchIntervalMinimum)
  168. }
  169. return true
  170. }
  171. // L' applicazione entrerà in primo piano (attivo sempre)
  172. func applicationDidBecomeActive(_ application: UIApplication) {
  173. NCSettingsBundleHelper.setVersionAndBuildNumber()
  174. if account == "" { return}
  175. NCNetworking.shared.verifyUploadZombie()
  176. }
  177. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  178. func applicationWillEnterForeground(_ application: UIApplication) {
  179. if account == "" { return}
  180. NCCommunicationCommon.shared.writeLog("Application will enter in foreground")
  181. // Request Passcode
  182. passcodeWithAutomaticallyPromptForBiometricValidation(true)
  183. // Initialize Auto upload
  184. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  185. // Required unsubscribing / subscribing
  186. NCPushNotification.shared().pushNotification()
  187. // Request Service Server Nextcloud
  188. NCService.shared.startRequestServicesServer()
  189. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  190. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  191. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced)
  192. }
  193. // L' applicazione si dimetterà dallo stato di attivo
  194. func applicationWillResignActive(_ application: UIApplication) {
  195. if account == "" { return}
  196. // Dismiss FileViewInFolder
  197. if activeFileViewInFolder != nil {
  198. activeFileViewInFolder?.dismiss(animated: false, completion: {
  199. self.activeFileViewInFolder = nil
  200. })
  201. }
  202. }
  203. // L' applicazione è entrata nello sfondo
  204. func applicationDidEnterBackground(_ application: UIApplication) {
  205. if account == "" { return}
  206. NCCommunicationCommon.shared.writeLog("Application did enter in background")
  207. passcodeWithAutomaticallyPromptForBiometricValidation(false)
  208. if #available(iOS 13.0, *) {
  209. scheduleAppRefresh()
  210. scheduleBackgroundProcessing()
  211. }
  212. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  213. }
  214. // L'applicazione terminerà
  215. func applicationWillTerminate(_ application: UIApplication) {
  216. NCCommunicationCommon.shared.writeLog("bye bye")
  217. }
  218. // MARK: -
  219. @objc func initializeMain(notification: NSNotification) {
  220. if account == "" { return}
  221. NCCommunicationCommon.shared.writeLog("initialize Main")
  222. // Clear error certificate
  223. CCUtility.setCertificateError(account, error: false)
  224. // Registeration push notification
  225. NCPushNotification.shared().pushNotification()
  226. // Setting Theming
  227. NCBrandColor.shared.settingThemingColor(account: account)
  228. // Start Auto Upload
  229. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  230. // Start services
  231. NCService.shared.startRequestServicesServer()
  232. // close detail
  233. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  234. // Registeration domain File Provider
  235. //FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  236. //[fileProviderDomain removeAllDomains];
  237. //[fileProviderDomain registerDomains];
  238. }
  239. // MARK: - Background Task
  240. @available(iOS 13.0, *)
  241. func scheduleAppRefresh() {
  242. let request = BGAppRefreshTaskRequest.init(identifier: NCGlobal.shared.refreshTask)
  243. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  244. do {
  245. try BGTaskScheduler.shared.submit(request)
  246. NCCommunicationCommon.shared.writeLog("Refresh task success submit request \(request)")
  247. } catch {
  248. NCCommunicationCommon.shared.writeLog("Refresh task failed to submit request: \(error)")
  249. }
  250. }
  251. @available(iOS 13.0, *)
  252. func scheduleBackgroundProcessing() {
  253. let request = BGProcessingTaskRequest.init(identifier: NCGlobal.shared.processingTask)
  254. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  255. request.requiresNetworkConnectivity = true
  256. request.requiresExternalPower = false
  257. do {
  258. try BGTaskScheduler.shared.submit(request)
  259. NCCommunicationCommon.shared.writeLog("Background Processing task success submit request \(request)")
  260. } catch {
  261. NCCommunicationCommon.shared.writeLog("Background Processing task failed to submit request: \(error)")
  262. }
  263. }
  264. @available(iOS 13.0, *)
  265. func handleRefreshTask(_ task: BGTask) {
  266. if account == "" {
  267. task.setTaskCompleted(success: true)
  268. return
  269. }
  270. NCCommunicationCommon.shared.writeLog("Start handler refresh task [Auto upload]")
  271. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  272. DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
  273. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  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: NCGlobal.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. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  292. NCCommunicationCommon.shared.writeLog("Completition handler processing task [Synchronize Favorite & Offline]")
  293. task.setTaskCompleted(success: true)
  294. }
  295. }
  296. // MARK: - Fetch
  297. func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  298. if account == "" {
  299. completionHandler(UIBackgroundFetchResult.noData)
  300. return
  301. }
  302. NCCommunicationCommon.shared.writeLog("Start perform Fetch [Auto upload]")
  303. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (items) in
  304. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  305. NCCommunicationCommon.shared.writeLog("Completition perform Fetch with \(items) uploads [Auto upload]")
  306. if items == 0 {
  307. completionHandler(UIBackgroundFetchResult.noData)
  308. } else {
  309. completionHandler(UIBackgroundFetchResult.newData)
  310. }
  311. }
  312. }
  313. // MARK: - Background Networking Session
  314. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  315. NCCommunicationCommon.shared.writeLog("Start handle Events For Background URLSession: \(identifier)")
  316. backgroundSessionCompletionHandler = completionHandler
  317. }
  318. // MARK: - Push Notifications
  319. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  320. completionHandler(UNNotificationPresentationOptions.alert)
  321. }
  322. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  323. completionHandler()
  324. }
  325. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  326. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  327. }
  328. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  329. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { (result) in
  330. completionHandler(result)
  331. }
  332. }
  333. // MARK: - Login & checkErrorNetworking
  334. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  335. // use appConfig [MDM]
  336. if NCBrandOptions.shared.use_configuration {
  337. if !(activeAppConfigView?.isViewLoaded ?? false) && activeAppConfigView?.view.window == nil {
  338. activeAppConfigView = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCAppConfigView") as? NCAppConfigView
  339. showLoginViewController(activeAppConfigView, contextViewController: viewController)
  340. }
  341. return
  342. }
  343. // only for personalized LoginWeb [customer]
  344. if NCBrandOptions.shared.use_login_web_personalized {
  345. if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  346. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  347. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  348. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  349. }
  350. return
  351. }
  352. // Nextcloud standard login
  353. if selector == NCGlobal.shared.introSignup {
  354. if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  355. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  356. if selector == NCGlobal.shared.introSignup {
  357. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  358. } else {
  359. activeLoginWeb?.urlBase = self.urlBase
  360. }
  361. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  362. }
  363. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  364. if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  365. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  366. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  367. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  368. }
  369. } else if openLoginWeb {
  370. if !(activeLoginWeb?.isViewLoaded ?? false) && activeLoginWeb?.view.window == nil {
  371. activeLoginWeb = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  372. activeLoginWeb?.urlBase = urlBase
  373. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  374. }
  375. } else {
  376. if !(activeLogin?.isViewLoaded ?? false) && activeLogin?.view.window == nil {
  377. activeLogin = UIStoryboard(name: "CCLogin", bundle: nil).instantiateViewController(withIdentifier: "CCLoginNextcloud") as? CCLogin
  378. showLoginViewController(activeLogin, contextViewController: viewController)
  379. }
  380. }
  381. }
  382. func showLoginViewController(_ viewController:UIViewController?, contextViewController: UIViewController?) {
  383. if contextViewController == nil {
  384. if let viewController = viewController {
  385. let navigationController = UINavigationController.init(rootViewController: viewController)
  386. navigationController.navigationBar.barStyle = .black
  387. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  388. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  389. navigationController.navigationBar.isTranslucent = false
  390. window?.rootViewController = navigationController
  391. window?.makeKeyAndVisible()
  392. }
  393. } else if contextViewController is UINavigationController {
  394. if let contextViewController = contextViewController, let viewController = viewController {
  395. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  396. }
  397. } else {
  398. if let viewController = viewController, let contextViewController = contextViewController {
  399. let navigationController = UINavigationController.init(rootViewController: viewController)
  400. navigationController.modalPresentationStyle = .fullScreen
  401. navigationController.navigationBar.barStyle = .black
  402. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  403. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  404. navigationController.navigationBar.isTranslucent = false
  405. contextViewController.present(navigationController, animated: true) { }
  406. }
  407. }
  408. }
  409. @objc func startTimerErrorNetworking() {
  410. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  411. }
  412. @objc func checkErrorNetworking() {
  413. if account == "" { return }
  414. // check unauthorized server (401)
  415. if CCUtility.getPasscode()?.count == 0 {
  416. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  417. }
  418. // check certificate untrusted (-1202)
  419. if CCUtility.getCertificateError(account) {
  420. let alertController = UIAlertController(title: NSLocalizedString("_ssl_certificate_untrusted_", comment: ""), message: NSLocalizedString("_connect_server_anyway_", comment: ""), preferredStyle: .alert)
  421. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  422. NCNetworking.shared.writeCertificate(directoryCertificate: CCUtility.getDirectoryCerificates())
  423. self.startTimerErrorNetworking()
  424. }))
  425. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in
  426. self.startTimerErrorNetworking()
  427. }))
  428. window?.rootViewController?.present(alertController, animated: true, completion: {
  429. self.timerErrorNetworking?.invalidate()
  430. })
  431. }
  432. }
  433. // MARK: - Account & Communication
  434. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  435. self.account = account
  436. self.urlBase = urlBase
  437. self.user = user
  438. self.userId = userId
  439. self.password = password
  440. _ = NCNetworkingNotificationCenter.shared
  441. NCCommunicationCommon.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  442. NCCommunicationCommon.shared.setup(webDav: NCUtilityFileSystem.shared.getWebDAV(account: account))
  443. NCCommunicationCommon.shared.setup(dav: NCUtilityFileSystem.shared.getDAV())
  444. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  445. if serverVersionMajor > 0 {
  446. NCCommunicationCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  447. }
  448. }
  449. @objc func deleteAccount(_ account: String, wipe: Bool) {
  450. // Push Notification
  451. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  452. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  453. }
  454. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  455. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  456. for result in results {
  457. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  458. }
  459. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  460. CCUtility.clearAllKeysEnd(toEnd: account)
  461. CCUtility.clearAllKeysPushNotification(account)
  462. CCUtility.setCertificateError(account, error: false)
  463. CCUtility.setPassword(account, password: nil)
  464. if wipe {
  465. let accounts = NCManageDatabase.shared.getAccounts()
  466. if accounts?.count ?? 0 > 0 {
  467. if let newAccount = accounts?.first {
  468. if let account = NCManageDatabase.shared.setAccountActive(newAccount) {
  469. settingAccount(account.account, urlBase: account.urlBase, user: account.user, userId: account.userId, password: CCUtility.getPassword(account.account))
  470. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
  471. }
  472. }
  473. } else {
  474. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  475. }
  476. }
  477. }
  478. // MARK: - TOPasscodeViewController
  479. func passcodeWithAutomaticallyPromptForBiometricValidation(_ automaticallyPromptForBiometricValidation: Bool) {
  480. let laContext = LAContext()
  481. var error: NSError?
  482. if CCUtility.getPasscode()?.count == 0 || account == "" || CCUtility.getNotPasscodeAtStart() { return }
  483. if passcodeViewController == nil {
  484. passcodeViewController = TOPasscodeViewController.init(style: .translucentLight, passcodeType: .sixDigits)
  485. if #available(iOS 13.0, *) {
  486. if UITraitCollection.current.userInterfaceStyle == .dark {
  487. passcodeViewController?.style = .translucentDark
  488. }
  489. }
  490. passcodeViewController?.delegate = self
  491. passcodeViewController?.keypadButtonShowLettering = false
  492. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  493. if error == nil {
  494. if laContext.biometryType == .faceID {
  495. passcodeViewController?.biometryType = .faceID
  496. passcodeViewController?.allowBiometricValidation = true
  497. } else if laContext.biometryType == .touchID {
  498. passcodeViewController?.biometryType = .touchID
  499. passcodeViewController?.allowBiometricValidation = true
  500. }
  501. }
  502. }
  503. if let passcodeViewController = self.passcodeViewController {
  504. window?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  505. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  506. })
  507. }
  508. } else {
  509. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  510. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  511. }
  512. }
  513. }
  514. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  515. passcodeViewController.dismiss(animated: true) {
  516. self.passcodeViewController = nil
  517. }
  518. }
  519. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  520. return code == CCUtility.getPasscode()
  521. }
  522. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  523. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  524. if success {
  525. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  526. passcodeViewController.dismiss(animated: true) {
  527. self.passcodeViewController = nil
  528. }
  529. }
  530. }
  531. }
  532. }
  533. func enableTouchFaceID(_ automaticallyPromptForBiometricValidation: Bool) {
  534. if CCUtility.getEnableTouchFaceID() && automaticallyPromptForBiometricValidation && passcodeViewController?.view.window != nil {
  535. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  536. if success {
  537. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  538. self.passcodeViewController?.dismiss(animated: true) {
  539. self.passcodeViewController = nil
  540. }
  541. }
  542. }
  543. }
  544. }
  545. }
  546. // MARK: - OpenURL
  547. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
  548. if account == "" { return false }
  549. let scheme = url.scheme
  550. let action = url.host
  551. var fileName: String = ""
  552. var serverUrl: String = ""
  553. var matchedAccount: tableAccount?
  554. if scheme == "nextcloud" && action == "open-file" {
  555. if let urlComponents = URLComponents.init(url: url, resolvingAgainstBaseURL: false) {
  556. let queryItems = urlComponents.queryItems
  557. let user = CCUtility.value(forKey: "user", fromQueryItems: queryItems)
  558. let path = CCUtility.value(forKey: "path", fromQueryItems: queryItems)
  559. let link = CCUtility.value(forKey: "link", fromQueryItems: queryItems)
  560. if user?.count == 0 || path?.count == 0 || URL(string: link)?.host?.count == 0 {
  561. let alertController = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_error_parameter_schema_", comment: ""), preferredStyle: .alert)
  562. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  563. window?.rootViewController?.present(alertController, animated: true, completion: { })
  564. } else {
  565. if let account = NCManageDatabase.shared.getAccountActive() {
  566. let urlBase = URL(string: account.urlBase)
  567. let user = account.user
  568. if link?.contains(urlBase?.host ?? "") ?? false && self.user == user {
  569. matchedAccount = account
  570. } else {
  571. let accounts = NCManageDatabase.shared.getAllAccount()
  572. for account in accounts {
  573. guard let accountURL = URL(string: account.urlBase) else { return false }
  574. let accountUser = account.user
  575. if link?.contains(accountURL.host ?? "") ?? false && user == accountUser {
  576. matchedAccount = NCManageDatabase.shared.setAccountActive(accountUser)
  577. settingAccount(matchedAccount!.account, urlBase: matchedAccount!.urlBase, user: matchedAccount!.user, userId: matchedAccount!.userId, password: CCUtility.getPassword(matchedAccount!.account))
  578. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)
  579. }
  580. }
  581. }
  582. if matchedAccount != nil {
  583. let webDAV = NCUtilityFileSystem.shared.getWebDAV(account: account.account)
  584. if path!.contains("/") {
  585. fileName = (path! as NSString).lastPathComponent
  586. serverUrl = matchedAccount!.urlBase + "/" + webDAV + "/" + (path! as NSString).deletingLastPathComponent
  587. } else {
  588. fileName = path!
  589. serverUrl = matchedAccount!.urlBase + "/" + webDAV
  590. }
  591. NCCollectionCommon.shared.openFileViewInFolder(serverUrl: serverUrl, fileName: fileName)
  592. } else {
  593. guard let domain = URL(string: link)?.host else { return true }
  594. fileName = (path! as NSString).lastPathComponent
  595. let message = String(format: "_account_not_available_", user, domain, fileName)
  596. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  597. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  598. window?.rootViewController?.present(alertController, animated: true, completion: { })
  599. }
  600. }
  601. }
  602. }
  603. }
  604. return true
  605. }
  606. }