AppDelegate.swift 39 KB

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