AppDelegate.swift 39 KB

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