AppDelegate.swift 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  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, NCAccountRequestDelegate, NCViewCertificateDetailsDelegate, NCUserBaseUrl {
  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 activeFiles: NCFiles?
  40. var activeFileViewInFolder: NCFileViewInFolder?
  41. var activeLogin: NCLogin?
  42. var activeLoginWeb: NCLoginWeb?
  43. @objc var activeMedia: NCMedia?
  44. var activeServerUrl: String = ""
  45. @objc var activeViewController: UIViewController?
  46. var mainTabBar: NCMainTabBar?
  47. var activeMetadata: tableMetadata?
  48. var listFilesVC: [String: NCFiles] = [:]
  49. var listFavoriteVC: [String: NCFavorite] = [:]
  50. var listOfflineVC: [String: NCOffline] = [:]
  51. var listProgress: [String: NCGlobal.progressType] = [:]
  52. var disableSharesView: Bool = false
  53. var documentPickerViewController: NCDocumentPickerViewController?
  54. var networkingProcessUpload: NCNetworkingProcessUpload?
  55. var shares: [tableShare] = []
  56. var timerErrorNetworking: Timer?
  57. private var privacyProtectionWindow: UIWindow?
  58. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  59. let userAgent = CCUtility.getUserAgent() as String
  60. let isSimulatorOrTestFlight = NCUtility.shared.isSimulatorOrTestFlight()
  61. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  62. UserDefaults.standard.register(defaults: ["UserAgent": userAgent])
  63. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  64. FirebaseApp.configure()
  65. }
  66. CCUtility.createDirectoryStandard()
  67. CCUtility.emptyTemporaryDirectory()
  68. NCCommunicationCommon.shared.setup(delegate: NCNetworking.shared)
  69. NCCommunicationCommon.shared.setup(userAgent: userAgent)
  70. startTimerErrorNetworking()
  71. // LOG
  72. var levelLog = 0
  73. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  74. NCCommunicationCommon.shared.pathLog = pathDirectoryGroup
  75. }
  76. if NCBrandOptions.shared.disable_log {
  77. NCUtilityFileSystem.shared.deleteFile(filePath: NCCommunicationCommon.shared.filenamePathLog)
  78. NCUtilityFileSystem.shared.deleteFile(filePath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/" + NCCommunicationCommon.shared.filenameLog)
  79. } else {
  80. levelLog = CCUtility.getLogLevel()
  81. NCCommunicationCommon.shared.levelLog = levelLog
  82. NCCommunicationCommon.shared.copyLogToDocumentDirectory = true
  83. if isSimulatorOrTestFlight {
  84. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS + " (Simulator / TestFlight)")
  85. } else {
  86. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS)
  87. }
  88. }
  89. // Activate user account
  90. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  91. // FIX 3.0.5 lost urlbase
  92. if activeAccount.urlBase.count == 0 {
  93. let user = activeAccount.user + " "
  94. let urlBase = activeAccount.account.replacingOccurrences(of: user, with: "")
  95. activeAccount.urlBase = urlBase
  96. NCManageDatabase.shared.updateAccount(activeAccount)
  97. }
  98. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  99. } else {
  100. CCUtility.deleteAllChainStore()
  101. if let bundleID = Bundle.main.bundleIdentifier {
  102. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  103. }
  104. }
  105. // initialize
  106. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  107. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  108. // Process upload
  109. networkingProcessUpload = NCNetworkingProcessUpload()
  110. // Push Notification & display notification
  111. application.registerForRemoteNotifications()
  112. UNUserNotificationCenter.current().delegate = self
  113. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { _, _ in }
  114. // Store review
  115. if !NCUtility.shared.isSimulatorOrTestFlight() {
  116. let review = NCStoreReview()
  117. review.incrementAppRuns()
  118. review.showStoreReview()
  119. }
  120. // Background task: register
  121. if #available(iOS 13.0, *) {
  122. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  123. self.handleRefreshTask(task)
  124. }
  125. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  126. self.handleProcessingTask(task)
  127. }
  128. } else {
  129. application.setMinimumBackgroundFetchInterval(UIApplication.backgroundFetchIntervalMinimum)
  130. }
  131. // Intro
  132. if NCBrandOptions.shared.disable_intro {
  133. CCUtility.setIntro(true)
  134. if account == "" {
  135. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  136. }
  137. } else {
  138. if !CCUtility.getIntro() {
  139. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  140. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  141. window?.rootViewController = navigationController
  142. window?.makeKeyAndVisible()
  143. }
  144. }
  145. }
  146. // Passcode
  147. DispatchQueue.main.async {
  148. self.presentPasscode {
  149. self.enableTouchFaceID()
  150. }
  151. }
  152. return true
  153. }
  154. // MARK: - Life Cycle
  155. // L' applicazione entrerà in primo piano (attivo sempre)
  156. func applicationDidBecomeActive(_ application: UIApplication) {
  157. // Privacy
  158. hidePrivacyProtectionWindow()
  159. NCSettingsBundleHelper.setVersionAndBuildNumber()
  160. NCSettingsBundleHelper.setVersionAndBuildNumber()
  161. if account == "" { return }
  162. networkingProcessUpload?.verifyUploadZombie()
  163. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  164. }
  165. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  166. func applicationWillEnterForeground(_ application: UIApplication) {
  167. if account == "" { return }
  168. guard let activeAccount = NCManageDatabase.shared.getActiveAccount() else { return }
  169. // Account changed ??
  170. if activeAccount.account != account {
  171. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  172. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  173. }
  174. NCCommunicationCommon.shared.writeLog("Application will enter in foreground")
  175. // START TIMER UPLOAD PROCESS
  176. if NCUtility.shared.isSimulator() {
  177. networkingProcessUpload?.startTimer()
  178. }
  179. // Initialize Auto upload
  180. NCAutoUpload.shared.initAutoUpload(viewController: nil) { _ in }
  181. // Required unsubscribing / subscribing
  182. NCPushNotification.shared().pushNotification()
  183. // Request Service Server Nextcloud
  184. NCService.shared.startRequestServicesServer()
  185. // Request TouchID, FaceID
  186. enableTouchFaceID()
  187. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  188. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  189. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced)
  190. }
  191. // L' applicazione si dimetterà dallo stato di attivo
  192. func applicationWillResignActive(_ application: UIApplication) {
  193. if account == "" { return }
  194. // Privacy
  195. showPrivacyProtectionWindow()
  196. // Clear operation queue
  197. NCOperationQueue.shared.cancelAllQueue()
  198. // Clear download
  199. NCNetworking.shared.cancelAllDownloadTransfer()
  200. // Clear older files
  201. let days = CCUtility.getCleanUpDay()
  202. if let directory = CCUtility.getDirectoryProviderStorage() {
  203. NCUtilityFileSystem.shared.cleanUp(directory: directory, days: TimeInterval(days))
  204. }
  205. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillResignActive)
  206. }
  207. // L' applicazione è entrata nello sfondo
  208. func applicationDidEnterBackground(_ application: UIApplication) {
  209. if account == "" { return }
  210. // STOP TIMER UPLOAD PROCESS
  211. if NCUtility.shared.isSimulator() {
  212. networkingProcessUpload?.stopTimer()
  213. }
  214. if #available(iOS 13.0, *) {
  215. scheduleAppRefresh()
  216. scheduleBackgroundProcessing()
  217. }
  218. // Passcode
  219. presentPasscode { }
  220. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  221. }
  222. // L'applicazione terminerà
  223. func applicationWillTerminate(_ application: UIApplication) {
  224. NCNetworking.shared.cancelAllDownloadTransfer()
  225. NCCommunicationCommon.shared.writeLog("bye bye")
  226. }
  227. // MARK: -
  228. @objc private func initialize() {
  229. if account == "" { return }
  230. NCCommunicationCommon.shared.writeLog("initialize Main")
  231. // Registeration push notification
  232. NCPushNotification.shared().pushNotification()
  233. // Setting Theming
  234. NCBrandColor.shared.settingThemingColor(account: account)
  235. // Start Auto Upload
  236. NCAutoUpload.shared.initAutoUpload(viewController: nil) { _ in }
  237. // Start services
  238. NCService.shared.startRequestServicesServer()
  239. // close detail
  240. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  241. // Registeration domain File Provider
  242. // FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  243. // [fileProviderDomain removeAllDomains];
  244. // [fileProviderDomain registerDomains];
  245. }
  246. // MARK: - Background Task
  247. @available(iOS 13.0, *)
  248. func scheduleAppRefresh() {
  249. let request = BGAppRefreshTaskRequest(identifier: NCGlobal.shared.refreshTask)
  250. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  251. do {
  252. try BGTaskScheduler.shared.submit(request)
  253. NCCommunicationCommon.shared.writeLog("Refresh task success submit request \(request)")
  254. } catch {
  255. NCCommunicationCommon.shared.writeLog("Refresh task failed to submit request: \(error)")
  256. }
  257. }
  258. @available(iOS 13.0, *)
  259. func scheduleBackgroundProcessing() {
  260. let request = BGProcessingTaskRequest(identifier: NCGlobal.shared.processingTask)
  261. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  262. request.requiresNetworkConnectivity = true
  263. request.requiresExternalPower = false
  264. do {
  265. try BGTaskScheduler.shared.submit(request)
  266. NCCommunicationCommon.shared.writeLog("Background Processing task success submit request \(request)")
  267. } catch {
  268. NCCommunicationCommon.shared.writeLog("Background Processing task failed to submit request: \(error)")
  269. }
  270. }
  271. @available(iOS 13.0, *)
  272. func handleRefreshTask(_ task: BGTask) {
  273. if account == "" {
  274. task.setTaskCompleted(success: true)
  275. return
  276. }
  277. NCCommunicationCommon.shared.writeLog("Start handler refresh task [Auto upload]")
  278. NCAutoUpload.shared.initAutoUpload(viewController: nil) { _ in
  279. DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
  280. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  281. NCCommunicationCommon.shared.writeLog("Completition handler refresh task with %lu uploads [Auto upload]")
  282. task.setTaskCompleted(success: true)
  283. }
  284. }
  285. }
  286. @available(iOS 13.0, *)
  287. func handleProcessingTask(_ task: BGTask) {
  288. if account == "" {
  289. task.setTaskCompleted(success: true)
  290. return
  291. }
  292. NCCommunicationCommon.shared.writeLog("Start handler processing task [Synchronize Favorite & Offline]")
  293. NCNetworking.shared.listingFavoritescompletion(selector: NCGlobal.shared.selectorReadFile) { _, _, errorCode, _ in
  294. NCCommunicationCommon.shared.writeLog("Completition listing favorite with error: \(errorCode)")
  295. }
  296. NCService.shared.synchronizeOffline(account: account)
  297. DispatchQueue.main.asyncAfter(deadline: .now() + 25) {
  298. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  299. NCCommunicationCommon.shared.writeLog("Completition handler processing task [Synchronize Favorite & Offline]")
  300. task.setTaskCompleted(success: true)
  301. }
  302. }
  303. // MARK: - Fetch
  304. func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  305. if account == "" {
  306. completionHandler(UIBackgroundFetchResult.noData)
  307. return
  308. }
  309. NCCommunicationCommon.shared.writeLog("Start perform Fetch [Auto upload]")
  310. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  311. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterUpdateBadgeNumber)
  312. NCCommunicationCommon.shared.writeLog("Completition perform Fetch with \(items) uploads [Auto upload]")
  313. if items == 0 {
  314. completionHandler(UIBackgroundFetchResult.noData)
  315. } else {
  316. completionHandler(UIBackgroundFetchResult.newData)
  317. }
  318. }
  319. }
  320. // MARK: - Background Networking Session
  321. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  322. NCCommunicationCommon.shared.writeLog("Start handle Events For Background URLSession: \(identifier)")
  323. backgroundSessionCompletionHandler = completionHandler
  324. }
  325. // MARK: - Push Notifications
  326. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  327. completionHandler(UNNotificationPresentationOptions.alert)
  328. }
  329. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  330. completionHandler()
  331. }
  332. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  333. NCNetworking.shared.checkPushNotificationServerProxyCertificateUntrusted(viewController: self.window?.rootViewController) { errorCode in
  334. if errorCode == 0 {
  335. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  336. }
  337. }
  338. }
  339. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  340. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { result in
  341. completionHandler(result)
  342. }
  343. }
  344. // MARK: - Login & checkErrorNetworking
  345. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  346. // use appConfig [MDM]
  347. if NCBrandOptions.shared.use_configuration {
  348. if activeAppConfigView?.view.window == nil {
  349. activeAppConfigView = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCAppConfigView") as? NCAppConfigView
  350. showLoginViewController(activeAppConfigView, contextViewController: viewController)
  351. }
  352. return
  353. }
  354. // only for personalized LoginWeb [customer]
  355. if NCBrandOptions.shared.use_login_web_personalized {
  356. if activeLoginWeb?.view.window == nil {
  357. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  358. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  359. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  360. }
  361. return
  362. }
  363. // Nextcloud standard login
  364. if selector == NCGlobal.shared.introSignup {
  365. if activeLoginWeb?.view.window == nil {
  366. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  367. if selector == NCGlobal.shared.introSignup {
  368. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  369. } else {
  370. activeLoginWeb?.urlBase = self.urlBase
  371. }
  372. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  373. }
  374. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  375. if activeLoginWeb?.view.window == nil {
  376. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  377. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  378. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  379. }
  380. } else if openLoginWeb {
  381. if activeLoginWeb?.view.window == nil {
  382. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  383. activeLoginWeb?.urlBase = urlBase
  384. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  385. }
  386. } else {
  387. if activeLogin?.view.window == nil {
  388. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  389. showLoginViewController(activeLogin, contextViewController: viewController)
  390. }
  391. }
  392. }
  393. func showLoginViewController(_ viewController: UIViewController?, contextViewController: UIViewController?) {
  394. if contextViewController == nil {
  395. if let viewController = viewController {
  396. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  397. navigationController.navigationBar.barStyle = .black
  398. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  399. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  400. navigationController.navigationBar.isTranslucent = false
  401. window?.rootViewController = navigationController
  402. window?.makeKeyAndVisible()
  403. }
  404. } else if contextViewController is UINavigationController {
  405. if let contextViewController = contextViewController, let viewController = viewController {
  406. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  407. }
  408. } else {
  409. if let viewController = viewController, let contextViewController = contextViewController {
  410. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  411. navigationController.modalPresentationStyle = .fullScreen
  412. navigationController.navigationBar.barStyle = .black
  413. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  414. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  415. navigationController.navigationBar.isTranslucent = false
  416. contextViewController.present(navigationController, animated: true) { }
  417. }
  418. }
  419. }
  420. @objc func startTimerErrorNetworking() {
  421. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  422. }
  423. @objc private func checkErrorNetworking() {
  424. // check unauthorized server (401/403)
  425. if account != "" && CCUtility.getPassword(account)!.count == 0 {
  426. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  427. }
  428. }
  429. func trustCertificateError(host: String) {
  430. guard let currentHost = URL(string: self.urlBase)?.host,
  431. let pushNotificationServerProxyHost = URL(string: NCBrandOptions.shared.pushNotificationServerProxy)?.host,
  432. host != pushNotificationServerProxyHost,
  433. host == currentHost
  434. else { return }
  435. let certificateHostSavedPath = CCUtility.getDirectoryCerificates()! + "/" + host + ".der"
  436. var title = NSLocalizedString("_ssl_certificate_changed_", comment: "")
  437. if !FileManager.default.fileExists(atPath: certificateHostSavedPath) {
  438. title = NSLocalizedString("_connect_server_anyway_", comment: "")
  439. }
  440. let alertController = UIAlertController(title: title, message: NSLocalizedString("_server_is_trusted_", comment: ""), preferredStyle: .alert)
  441. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  442. NCNetworking.shared.writeCertificate(host: host)
  443. }))
  444. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in }))
  445. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { action in
  446. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  447. let viewController = navigationController.topViewController as! NCViewCertificateDetails
  448. viewController.delegate = self
  449. viewController.host = host
  450. self.window?.rootViewController?.present(navigationController, animated: true)
  451. }
  452. }))
  453. window?.rootViewController?.present(alertController, animated: true)
  454. }
  455. func viewCertificateDetailsDismiss(host: String) {
  456. trustCertificateError(host: host)
  457. }
  458. // MARK: - Account
  459. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  460. self.account = account
  461. self.urlBase = urlBase
  462. self.user = user
  463. self.userId = userId
  464. self.password = password
  465. _ = NCFunctionCenter.shared
  466. NCCommunicationCommon.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  467. NCCommunicationCommon.shared.setup(webDav: NCUtilityFileSystem.shared.getWebDAV(account: account))
  468. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  469. if serverVersionMajor > 0 {
  470. NCCommunicationCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  471. }
  472. }
  473. @objc func deleteAccount(_ account: String, wipe: Bool) {
  474. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  475. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  476. }
  477. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  478. for result in results {
  479. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  480. }
  481. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  482. CCUtility.clearAllKeysEnd(toEnd: account)
  483. CCUtility.clearAllKeysPushNotification(account)
  484. CCUtility.setPassword(account, password: nil)
  485. if wipe {
  486. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  487. let accounts = NCManageDatabase.shared.getAccounts()
  488. if accounts?.count ?? 0 > 0 {
  489. if let newAccount = accounts?.first {
  490. self.changeAccount(newAccount)
  491. }
  492. } else {
  493. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  494. }
  495. }
  496. }
  497. @objc func changeAccount(_ account: String) {
  498. NCManageDatabase.shared.setAccountActive(account)
  499. if let tableAccount = NCManageDatabase.shared.getActiveAccount() {
  500. NCOperationQueue.shared.cancelAllQueue()
  501. NCNetworking.shared.cancelAllTask()
  502. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  503. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  504. }
  505. }
  506. // MARK: - Account Request
  507. func accountRequestChangeAccount(account: String) {
  508. changeAccount(account)
  509. }
  510. func requestAccount() {
  511. if isPasscodePresented() { return }
  512. if !CCUtility.getAccountRequest() { return }
  513. let accounts = NCManageDatabase.shared.getAllAccount()
  514. if accounts.count > 1 {
  515. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  516. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  517. vcAccountRequest.accounts = accounts
  518. vcAccountRequest.enableTimerProgress = true
  519. vcAccountRequest.enableAddAccount = false
  520. vcAccountRequest.dismissDidEnterBackground = false
  521. vcAccountRequest.delegate = self
  522. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  523. let numberCell = accounts.count
  524. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  525. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height+20)
  526. popup.backgroundAlpha = 0.8
  527. UIApplication.shared.keyWindow?.rootViewController?.present(popup, animated: true)
  528. vcAccountRequest.startTimer()
  529. }
  530. }
  531. }
  532. // MARK: - Passcode
  533. func presentPasscode(completion: @escaping ()->()) {
  534. let laContext = LAContext()
  535. var error: NSError?
  536. defer {
  537. self.requestAccount()
  538. }
  539. guard !account.isEmpty, CCUtility.isPasscodeAtStartEnabled() else { return }
  540. // If activated hide the privacy protection
  541. hidePrivacyProtectionWindow()
  542. // Dismiss present window?.rootViewController? [ONLY PASSCODE]
  543. let presentedViewController = window?.rootViewController?.presentedViewController
  544. if presentedViewController is NCLoginNavigationController {
  545. return
  546. } else {
  547. presentedViewController?.dismiss(animated: false)
  548. }
  549. let passcodeViewController = TOPasscodeViewController.init(passcodeType: .sixDigits, allowCancel: false)
  550. passcodeViewController.delegate = self
  551. passcodeViewController.keypadButtonShowLettering = false
  552. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  553. if error == nil {
  554. if laContext.biometryType == .faceID {
  555. passcodeViewController.biometryType = .faceID
  556. } else if laContext.biometryType == .touchID {
  557. passcodeViewController.biometryType = .touchID
  558. }
  559. passcodeViewController.allowBiometricValidation = true
  560. passcodeViewController.automaticallyPromptForBiometricValidation = false
  561. }
  562. }
  563. window?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  564. completion()
  565. })
  566. }
  567. func isPasscodePresented() -> Bool {
  568. return window?.rootViewController?.presentedViewController is TOPasscodeViewController
  569. }
  570. func enableTouchFaceID() {
  571. guard !account.isEmpty,
  572. CCUtility.getEnableTouchFaceID(),
  573. CCUtility.isPasscodeAtStartEnabled(),
  574. let passcodeViewController = window?.rootViewController?.presentedViewController as? TOPasscodeViewController
  575. else { return }
  576. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  577. if success {
  578. DispatchQueue.main.async {
  579. passcodeViewController.dismiss(animated: true) {
  580. self.requestAccount()
  581. }
  582. }
  583. }
  584. }
  585. }
  586. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  587. DispatchQueue.main.async {
  588. passcodeViewController.dismiss(animated: true) {
  589. self.requestAccount()
  590. }
  591. }
  592. }
  593. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  594. return code == CCUtility.getPasscode()
  595. }
  596. // MARK: - Privacy Protection
  597. private func showPrivacyProtectionWindow() {
  598. guard CCUtility.getPrivacyScreenEnabled() else { return }
  599. privacyProtectionWindow = UIWindow(frame: UIScreen.main.bounds)
  600. let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil)
  601. let initialViewController = storyboard.instantiateInitialViewController()
  602. self.privacyProtectionWindow?.rootViewController = initialViewController
  603. privacyProtectionWindow?.windowLevel = .alert + 1
  604. privacyProtectionWindow?.makeKeyAndVisible()
  605. }
  606. private func hidePrivacyProtectionWindow() {
  607. privacyProtectionWindow?.isHidden = true
  608. privacyProtectionWindow = nil
  609. }
  610. // MARK: - Open URL
  611. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  612. if account == "" { return false }
  613. let scheme = url.scheme
  614. let action = url.host
  615. var fileName: String = ""
  616. var serverUrl: String = ""
  617. var matchedAccount: tableAccount?
  618. if scheme == "nextcloud" && action == "open-file" {
  619. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  620. let queryItems = urlComponents.queryItems
  621. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  622. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  623. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  624. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  625. let urlBase = URL(string: activeAccount.urlBase)
  626. let user = activeAccount.user
  627. if linkScheme.contains(urlBase?.host ?? "") && userScheme == user {
  628. matchedAccount = activeAccount
  629. } else {
  630. let accounts = NCManageDatabase.shared.getAllAccount()
  631. for account in accounts {
  632. guard let accountURL = URL(string: account.urlBase) else { return false }
  633. if linkScheme.contains(accountURL.host ?? "") && userScheme == account.user {
  634. changeAccount(account.account)
  635. matchedAccount = account
  636. break
  637. }
  638. }
  639. }
  640. if matchedAccount != nil {
  641. let webDAV = NCUtilityFileSystem.shared.getWebDAV(account: self.account) + "/files/" + self.userId
  642. if pathScheme.contains("/") {
  643. fileName = (pathScheme as NSString).lastPathComponent
  644. serverUrl = matchedAccount!.urlBase + "/" + webDAV + "/" + (pathScheme as NSString).deletingLastPathComponent
  645. } else {
  646. fileName = pathScheme
  647. serverUrl = matchedAccount!.urlBase + "/" + webDAV
  648. }
  649. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  650. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileName: fileName)
  651. }
  652. } else {
  653. guard let domain = URL(string: linkScheme)?.host else { return true }
  654. fileName = (pathScheme as NSString).lastPathComponent
  655. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  656. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  657. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  658. window?.rootViewController?.present(alertController, animated: true, completion: { })
  659. return false
  660. }
  661. }
  662. }
  663. }
  664. return true
  665. }
  666. }
  667. // MARK: - NCAudioRecorder ViewController Delegate
  668. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  669. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  670. guard
  671. let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  672. let viewController = navigationController.topViewController as? NCCreateFormUploadVoiceNote
  673. else { return }
  674. navigationController.modalPresentationStyle = .formSheet
  675. viewController.setup(serverUrl: activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  676. window?.rootViewController?.present(navigationController, animated: true)
  677. }
  678. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  679. }
  680. }
  681. extension AppDelegate: NCCreateFormUploadConflictDelegate {
  682. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  683. guard let metadatas = metadatas, !metadatas.isEmpty else { return }
  684. networkingProcessUpload?.createProcessUploads(metadatas: metadatas)
  685. }
  686. }