AppDelegate.swift 38 KB

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