AppDelegate.swift 39 KB

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