AppDelegate.swift 39 KB

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