AppDelegate.swift 39 KB

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