AppDelegate.swift 39 KB

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