AppDelegate.swift 39 KB

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