AppDelegate.swift 39 KB

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