AppDelegate.swift 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  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 activeViewerAVPlayerViewController: NCViewerAVPlayerViewController?
  47. var mainTabBar: NCMainTabBar?
  48. var activeMetadata: tableMetadata?
  49. var listFilesVC: [String:NCFiles] = [:]
  50. var listFavoriteVC: [String:NCFavorite] = [:]
  51. var listOfflineVC: [String:NCOffline] = [:]
  52. var listProgress: [String:NCGlobal.progressType] = [:]
  53. var disableSharesView: Bool = false
  54. var documentPickerViewController: NCDocumentPickerViewController?
  55. var networkingProcessUpload: NCNetworkingProcessUpload?
  56. var passcodeViewController: TOPasscodeViewController?
  57. var pasteboardOcIds: [String] = []
  58. var shares: [tableShare] = []
  59. var timerErrorNetworking: Timer?
  60. var avatars: [String:UIImage] = [:]
  61. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  62. let userAgent = CCUtility.getUserAgent() as String
  63. let isSimulatorOrTestFlight = NCUtility.shared.isSimulatorOrTestFlight()
  64. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  65. UserDefaults.standard.register(defaults: ["UserAgent" : userAgent])
  66. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  67. FirebaseApp.configure()
  68. }
  69. CCUtility.createDirectoryStandard()
  70. CCUtility.emptyTemporaryDirectory()
  71. NCCommunicationCommon.shared.setup(delegate: NCNetworking.shared)
  72. NCCommunicationCommon.shared.setup(userAgent: userAgent)
  73. startTimerErrorNetworking()
  74. // LOG
  75. var levelLog = 0
  76. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  77. NCCommunicationCommon.shared.pathLog = pathDirectoryGroup
  78. }
  79. if NCBrandOptions.shared.disable_log {
  80. NCUtilityFileSystem.shared.deleteFile(filePath: NCCommunicationCommon.shared.filenamePathLog)
  81. NCUtilityFileSystem.shared.deleteFile(filePath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/" + NCCommunicationCommon.shared.filenameLog)
  82. } else {
  83. levelLog = CCUtility.getLogLevel()
  84. NCCommunicationCommon.shared.levelLog = levelLog
  85. NCCommunicationCommon.shared.copyLogToDocumentDirectory = true
  86. if isSimulatorOrTestFlight {
  87. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS + " (Simulator / TestFlight)")
  88. } else {
  89. NCCommunicationCommon.shared.writeLog("Start session with level \(levelLog) " + versionNextcloudiOS)
  90. }
  91. }
  92. // Activate user account
  93. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  94. // FIX 3.0.5 lost urlbase
  95. if activeAccount.urlBase.count == 0 {
  96. let user = activeAccount.user + " "
  97. let urlBase = activeAccount.account.replacingOccurrences(of: user, with: "")
  98. activeAccount.urlBase = urlBase
  99. NCManageDatabase.shared.updateAccount(activeAccount)
  100. }
  101. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  102. } else {
  103. CCUtility.deleteAllChainStore()
  104. if let bundleID = Bundle.main.bundleIdentifier {
  105. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  106. }
  107. }
  108. // initialize
  109. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  110. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  111. // Process upload
  112. networkingProcessUpload = NCNetworkingProcessUpload.init()
  113. // Push Notification & display notification
  114. application.registerForRemoteNotifications()
  115. UNUserNotificationCenter.current().delegate = self
  116. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (_, _) in }
  117. // Audio Session
  118. setAVAudioSession()
  119. // Store review
  120. if !NCUtility.shared.isSimulatorOrTestFlight() {
  121. let review = NCStoreReview()
  122. review.incrementAppRuns()
  123. review.showStoreReview()
  124. }
  125. // Background task: register
  126. if #available(iOS 13.0, *) {
  127. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  128. self.handleRefreshTask(task)
  129. }
  130. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  131. self.handleProcessingTask(task)
  132. }
  133. } else {
  134. application.setMinimumBackgroundFetchInterval(UIApplication.backgroundFetchIntervalMinimum)
  135. }
  136. // Intro
  137. if NCBrandOptions.shared.disable_intro {
  138. CCUtility.setIntro(true)
  139. if account == "" {
  140. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  141. }
  142. } else {
  143. if !CCUtility.getIntro() {
  144. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  145. let navigationController = UINavigationController(rootViewController: viewController)
  146. window?.rootViewController = navigationController
  147. window?.makeKeyAndVisible()
  148. }
  149. }
  150. }
  151. // Passcode
  152. DispatchQueue.main.async {
  153. self.passcodeWithAutomaticallyPromptForBiometricValidation(true)
  154. }
  155. return true
  156. }
  157. // MARK: - Life Cycle
  158. // L' applicazione entrerà in primo piano (attivo sempre)
  159. func applicationDidBecomeActive(_ application: UIApplication) {
  160. NCSettingsBundleHelper.setVersionAndBuildNumber()
  161. if account == "" { return }
  162. networkingProcessUpload?.verifyUploadZombie()
  163. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  164. }
  165. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  166. func applicationWillEnterForeground(_ application: UIApplication) {
  167. if account == "" { return }
  168. guard let activeAccount = NCManageDatabase.shared.getActiveAccount() else { return }
  169. // Account changed ??
  170. if activeAccount.account != account {
  171. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  172. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  173. }
  174. NCCommunicationCommon.shared.writeLog("Application will enter in foreground")
  175. // START TIMER UPLOAD PROCESS
  176. if NCUtility.shared.isSimulator() {
  177. networkingProcessUpload?.startTimer()
  178. }
  179. // Request Passcode
  180. passcodeWithAutomaticallyPromptForBiometricValidation(true)
  181. // Initialize Auto upload
  182. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  183. // Required unsubscribing / subscribing
  184. NCPushNotification.shared().pushNotification()
  185. // Request Service Server Nextcloud
  186. NCService.shared.startRequestServicesServer()
  187. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  188. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  189. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced)
  190. }
  191. // L' applicazione si dimetterà dallo stato di attivo
  192. func applicationWillResignActive(_ application: UIApplication) {
  193. if account == "" { return }
  194. // Dismiss FileViewInFolder
  195. if activeFileViewInFolder != nil {
  196. activeFileViewInFolder?.dismiss(animated: false, completion: {
  197. self.activeFileViewInFolder = nil
  198. })
  199. }
  200. // Clear operation queue
  201. NCOperationQueue.shared.cancelAllQueue()
  202. // Clear older files
  203. let days = CCUtility.getCleanUpDay()
  204. if let directory = CCUtility.getDirectoryProviderStorage() {
  205. NCUtilityFileSystem.shared.cleanUp(directory: directory, days: TimeInterval(days))
  206. }
  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. NCCommunicationCommon.shared.writeLog("bye bye")
  226. }
  227. // MARK: -
  228. @objc private func initialize() {
  229. if account == "" { return }
  230. NCCommunicationCommon.shared.writeLog("initialize Main")
  231. // Clear error certificate
  232. CCUtility.clearCertificateError(account)
  233. // Registeration push notification
  234. NCPushNotification.shared().pushNotification()
  235. // Setting Theming
  236. NCBrandColor.shared.settingThemingColor(account: account)
  237. // Start Auto Upload
  238. NCAutoUpload.shared.initAutoUpload(viewController: nil) { (_) in }
  239. // Start services
  240. NCService.shared.startRequestServicesServer()
  241. // close detail
  242. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  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 NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  373. if activeLoginWeb?.view.window == nil {
  374. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  375. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  376. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  377. }
  378. } else if openLoginWeb {
  379. if activeLoginWeb?.view.window == nil {
  380. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  381. activeLoginWeb?.urlBase = urlBase
  382. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  383. }
  384. } else {
  385. if activeLogin?.view.window == nil {
  386. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  387. showLoginViewController(activeLogin, contextViewController: viewController)
  388. }
  389. }
  390. }
  391. func showLoginViewController(_ viewController:UIViewController?, contextViewController: UIViewController?) {
  392. if contextViewController == nil {
  393. if let viewController = viewController {
  394. let navigationController = UINavigationController.init(rootViewController: viewController)
  395. navigationController.navigationBar.barStyle = .black
  396. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  397. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  398. navigationController.navigationBar.isTranslucent = false
  399. window?.rootViewController = navigationController
  400. window?.makeKeyAndVisible()
  401. }
  402. } else if contextViewController is UINavigationController {
  403. if let contextViewController = contextViewController, let viewController = viewController {
  404. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  405. }
  406. } else {
  407. if let viewController = viewController, let contextViewController = contextViewController {
  408. let navigationController = UINavigationController.init(rootViewController: viewController)
  409. navigationController.modalPresentationStyle = .fullScreen
  410. navigationController.navigationBar.barStyle = .black
  411. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  412. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  413. navigationController.navigationBar.isTranslucent = false
  414. contextViewController.present(navigationController, animated: true) { }
  415. }
  416. }
  417. }
  418. func viewCertificateDetailsDismiss() {
  419. self.startTimerErrorNetworking()
  420. }
  421. @objc func startTimerErrorNetworking() {
  422. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  423. }
  424. @objc private func checkErrorNetworking() {
  425. if account == "" { return }
  426. // check unauthorized server (401/403)
  427. if CCUtility.getPassword(account)!.count == 0 {
  428. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  429. }
  430. // check certificate untrusted (-1202)
  431. if CCUtility.getCertificateError(account) {
  432. let alertController = UIAlertController(title: NSLocalizedString("_ssl_certificate_untrusted_", comment: ""), message: NSLocalizedString("_connect_server_anyway_", comment: ""), preferredStyle: .alert)
  433. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  434. NCNetworking.shared.writeCertificate(url: self.urlBase)
  435. CCUtility.clearCertificateError(self.account)
  436. self.startTimerErrorNetworking()
  437. }))
  438. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in
  439. self.startTimerErrorNetworking()
  440. }))
  441. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { action in
  442. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  443. let viewController = navigationController.topViewController as! NCViewCertificateDetails
  444. viewController.delegate = self
  445. self.window?.rootViewController?.present(navigationController, animated: true)
  446. }
  447. }))
  448. window?.rootViewController?.present(alertController, animated: true, completion: {
  449. self.timerErrorNetworking?.invalidate()
  450. })
  451. }
  452. }
  453. // MARK: - Account
  454. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  455. self.account = account
  456. self.urlBase = urlBase
  457. self.user = user
  458. self.userId = userId
  459. self.password = password
  460. _ = NCFunctionCenter.shared
  461. NCCommunicationCommon.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  462. NCCommunicationCommon.shared.setup(webDav: NCUtilityFileSystem.shared.getWebDAV(account: account))
  463. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  464. if serverVersionMajor > 0 {
  465. NCCommunicationCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  466. }
  467. }
  468. @objc func deleteAccount(_ account: String, wipe: Bool) {
  469. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  470. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  471. }
  472. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  473. for result in results {
  474. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  475. }
  476. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  477. CCUtility.clearAllKeysEnd(toEnd: account)
  478. CCUtility.clearAllKeysPushNotification(account)
  479. CCUtility.clearCertificateError(account)
  480. CCUtility.setPassword(account, password: nil)
  481. if wipe {
  482. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  483. let accounts = NCManageDatabase.shared.getAccounts()
  484. if accounts?.count ?? 0 > 0 {
  485. if let newAccount = accounts?.first {
  486. self.changeAccount(newAccount)
  487. }
  488. } else {
  489. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  490. }
  491. }
  492. }
  493. @objc func changeAccount(_ account: String) {
  494. NCManageDatabase.shared.setAccountActive(account)
  495. if let tableAccount = NCManageDatabase.shared.getActiveAccount() {
  496. NCOperationQueue.shared.cancelAllQueue()
  497. NCNetworking.shared.cancelAllTask()
  498. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  499. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  500. }
  501. }
  502. // MARK: - Account Request
  503. func accountRequestChangeAccount(account: String) {
  504. changeAccount(account)
  505. }
  506. func requestAccount(startTimer: Bool) {
  507. let accounts = NCManageDatabase.shared.getAllAccount()
  508. if CCUtility.getAccountRequest() && accounts.count > 1 {
  509. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  510. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  511. vcAccountRequest.accounts = accounts
  512. vcAccountRequest.enableTimerProgress = true
  513. vcAccountRequest.enableAddAccount = false
  514. vcAccountRequest.dismissDidEnterBackground = false
  515. vcAccountRequest.delegate = self
  516. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  517. let numberCell = accounts.count
  518. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  519. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height+20)
  520. popup.backgroundAlpha = 0.8
  521. UIApplication.shared.keyWindow?.rootViewController?.present(popup, animated: true)
  522. if startTimer {
  523. vcAccountRequest.startTimer()
  524. }
  525. }
  526. }
  527. }
  528. // MARK: - Passcode
  529. func passcodeWithAutomaticallyPromptForBiometricValidation(_ automaticallyPromptForBiometricValidation: Bool) {
  530. let laContext = LAContext()
  531. var error: NSError?
  532. if account == "" { return }
  533. guard let passcode = CCUtility.getPasscode() else {
  534. requestAccount(startTimer: false)
  535. return
  536. }
  537. if passcode.count == 0 || CCUtility.getNotPasscodeAtStart() {
  538. requestAccount(startTimer: false)
  539. return
  540. }
  541. if passcodeViewController == nil {
  542. passcodeViewController = TOPasscodeViewController.init(passcodeType: .sixDigits, allowCancel: false)
  543. passcodeViewController?.delegate = self
  544. passcodeViewController?.keypadButtonShowLettering = false
  545. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  546. if error == nil {
  547. if laContext.biometryType == .faceID {
  548. passcodeViewController?.biometryType = .faceID
  549. passcodeViewController?.allowBiometricValidation = true
  550. } else if laContext.biometryType == .touchID {
  551. passcodeViewController?.biometryType = .touchID
  552. passcodeViewController?.allowBiometricValidation = true
  553. }
  554. }
  555. }
  556. if let passcodeViewController = self.passcodeViewController {
  557. window?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  558. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  559. })
  560. }
  561. } else {
  562. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  563. self.enableTouchFaceID(automaticallyPromptForBiometricValidation)
  564. }
  565. }
  566. }
  567. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  568. passcodeViewController.dismiss(animated: true) {
  569. self.passcodeViewController = nil
  570. self.requestAccount(startTimer: true)
  571. }
  572. }
  573. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  574. return code == CCUtility.getPasscode()
  575. }
  576. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  577. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  578. if success {
  579. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  580. passcodeViewController.dismiss(animated: true) {
  581. self.passcodeViewController = nil
  582. self.requestAccount(startTimer: true)
  583. }
  584. }
  585. }
  586. }
  587. }
  588. func enableTouchFaceID(_ automaticallyPromptForBiometricValidation: Bool) {
  589. if CCUtility.getEnableTouchFaceID() && automaticallyPromptForBiometricValidation && passcodeViewController?.view.window != nil {
  590. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  591. if success {
  592. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  593. self.passcodeViewController?.dismiss(animated: true) {
  594. self.passcodeViewController = nil
  595. self.requestAccount(startTimer: true)
  596. }
  597. }
  598. }
  599. }
  600. }
  601. }
  602. // MARK: - Open URL
  603. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
  604. if account == "" { return false }
  605. let scheme = url.scheme
  606. let action = url.host
  607. var fileName: String = ""
  608. var serverUrl: String = ""
  609. var matchedAccount: tableAccount?
  610. if scheme == "nextcloud" && action == "open-file" {
  611. if let urlComponents = URLComponents.init(url: url, resolvingAgainstBaseURL: false) {
  612. let queryItems = urlComponents.queryItems
  613. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  614. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  615. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  616. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  617. let urlBase = URL(string: activeAccount.urlBase)
  618. let user = activeAccount.user
  619. if linkScheme.contains(urlBase?.host ?? "") && userScheme == user {
  620. matchedAccount = activeAccount
  621. } else {
  622. let accounts = NCManageDatabase.shared.getAllAccount()
  623. for account in accounts {
  624. guard let accountURL = URL(string: account.urlBase) else { return false }
  625. if linkScheme.contains(accountURL.host ?? "") && userScheme == account.user {
  626. changeAccount(account.account)
  627. matchedAccount = account
  628. break
  629. }
  630. }
  631. }
  632. if matchedAccount != nil {
  633. let webDAV = NCUtilityFileSystem.shared.getWebDAV(account: self.account) + "/files/" + self.userId
  634. if pathScheme.contains("/") {
  635. fileName = (pathScheme as NSString).lastPathComponent
  636. serverUrl = matchedAccount!.urlBase + "/" + webDAV + "/" + (pathScheme as NSString).deletingLastPathComponent
  637. } else {
  638. fileName = pathScheme
  639. serverUrl = matchedAccount!.urlBase + "/" + webDAV
  640. }
  641. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  642. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileName: fileName)
  643. }
  644. } else {
  645. guard let domain = URL(string: linkScheme)?.host else { return true }
  646. fileName = (pathScheme as NSString).lastPathComponent
  647. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  648. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  649. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  650. window?.rootViewController?.present(alertController, animated: true, completion: { })
  651. return false
  652. }
  653. }
  654. }
  655. }
  656. return true
  657. }
  658. }
  659. // MARK: - NCAudioRecorder ViewController Delegate
  660. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  661. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  662. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() else { return }
  663. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  664. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  665. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadVoiceNote
  666. viewController.setup(serverUrl: appDelegate.activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  667. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  668. }
  669. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  670. }
  671. }