AppDelegate.swift 38 KB

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