AppDelegate.swift 39 KB

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