AppDelegate.swift 39 KB

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