AppDelegate.swift 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941
  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 NextcloudKit
  26. import TOPasscodeViewController
  27. import LocalAuthentication
  28. import Firebase
  29. import WidgetKit
  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 deletePasswordSession: Bool = false
  40. var activeLogin: NCLogin?
  41. var activeLoginWeb: NCLoginWeb?
  42. var activeServerUrl: String = ""
  43. @objc var activeViewController: UIViewController?
  44. var mainTabBar: NCMainTabBar?
  45. var activeMetadata: tableMetadata?
  46. var isSearchingMode: Bool = false
  47. let listFilesVC = ThreadSafeDictionary<String,NCFiles>()
  48. let listFavoriteVC = ThreadSafeDictionary<String,NCFavorite>()
  49. let listOfflineVC = ThreadSafeDictionary<String,NCOffline>()
  50. var disableSharesView: Bool = false
  51. var documentPickerViewController: NCDocumentPickerViewController?
  52. var networkingProcessUpload: NCNetworkingProcessUpload?
  53. var shares: [tableShare] = []
  54. var timerErrorNetworking: Timer?
  55. var timerProcess: Timer?
  56. private var privacyProtectionWindow: UIWindow?
  57. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  58. let userAgent = CCUtility.getUserAgent() as String
  59. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  60. // Register initialize
  61. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  62. UserDefaults.standard.register(defaults: ["UserAgent": userAgent])
  63. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  64. FirebaseApp.configure()
  65. }
  66. CCUtility.createDirectoryStandard()
  67. CCUtility.emptyTemporaryDirectory()
  68. NKCommon.shared.setup(delegate: NCNetworking.shared)
  69. NKCommon.shared.setup(userAgent: userAgent)
  70. startTimerErrorNetworking()
  71. // LOG
  72. var levelLog = 0
  73. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  74. NKCommon.shared.pathLog = pathDirectoryGroup
  75. }
  76. if NCBrandOptions.shared.disable_log {
  77. NCUtilityFileSystem.shared.deleteFile(filePath: NKCommon.shared.filenamePathLog)
  78. NCUtilityFileSystem.shared.deleteFile(filePath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/" + NKCommon.shared.filenameLog)
  79. } else {
  80. levelLog = CCUtility.getLogLevel()
  81. NKCommon.shared.levelLog = levelLog
  82. NKCommon.shared.copyLogToDocumentDirectory = true
  83. NKCommon.shared.writeLog("[INFO] Start session with level \(levelLog) " + versionNextcloudiOS + " in state \(UIApplication.shared.applicationState.rawValue) where (0 active, 1 inactive, 2 background).")
  84. }
  85. // LOG Account
  86. if let account = NCManageDatabase.shared.getActiveAccount() {
  87. NKCommon.shared.writeLog("Account active \(account.account)")
  88. if CCUtility.getPassword(account.account).isEmpty {
  89. NKCommon.shared.writeLog("[ERROR] PASSWORD NOT FOUND for \(account.account)")
  90. }
  91. }
  92. // Activate user account
  93. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  94. // FIX 3.0.5 lost urlbase
  95. if activeAccount.urlBase.count == 0 {
  96. let user = activeAccount.user + " "
  97. let urlBase = activeAccount.account.replacingOccurrences(of: user, with: "")
  98. activeAccount.urlBase = urlBase
  99. NCManageDatabase.shared.updateAccount(activeAccount)
  100. }
  101. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  102. NCBrandColor.shared.settingThemingColor(account: activeAccount.account)
  103. } else {
  104. CCUtility.deleteAllChainStore()
  105. if let bundleID = Bundle.main.bundleIdentifier {
  106. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  107. }
  108. NCBrandColor.shared.createImagesThemingColor()
  109. }
  110. // Create user color
  111. NCBrandColor.shared.createUserColors()
  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. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  124. self.handleRefreshTask(task)
  125. }
  126. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  127. self.handleProcessingTask(task)
  128. }
  129. // Intro
  130. if NCBrandOptions.shared.disable_intro {
  131. CCUtility.setIntro(true)
  132. if account == "" {
  133. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  134. }
  135. } else {
  136. if !CCUtility.getIntro() {
  137. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  138. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  139. window?.rootViewController = navigationController
  140. window?.makeKeyAndVisible()
  141. }
  142. }
  143. }
  144. // Passcode
  145. DispatchQueue.main.async {
  146. self.presentPasscode {
  147. self.enableTouchFaceID()
  148. }
  149. }
  150. return true
  151. }
  152. // MARK: - Life Cycle
  153. // L' applicazione entrerà in attivo (sempre)
  154. func applicationDidBecomeActive(_ application: UIApplication) {
  155. NKCommon.shared.writeLog("[INFO] Application did become active")
  156. self.deletePasswordSession = false
  157. if !NCAskAuthorization.shared.isRequesting {
  158. hidePrivacyProtectionWindow()
  159. }
  160. NCSettingsBundleHelper.setVersionAndBuildNumber()
  161. if !account.isEmpty {
  162. networkingProcessUpload?.verifyUploadZombie()
  163. }
  164. // Start Auto Upload
  165. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  166. NKCommon.shared.writeLog("[INFO] Initialize Auto upload with \(items) uploads")
  167. DispatchQueue.main.async { self.networkingProcessUpload = NCNetworkingProcessUpload() }
  168. }
  169. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  170. }
  171. // L' applicazione entrerà in primo piano (dopo il background)
  172. func applicationWillEnterForeground(_ application: UIApplication) {
  173. guard !account.isEmpty, let activeAccount = NCManageDatabase.shared.getActiveAccount() else { return }
  174. NKCommon.shared.writeLog("[INFO] Application will enter in foreground")
  175. // Account changed ??
  176. if activeAccount.account != account {
  177. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  178. }
  179. // Required unsubscribing / subscribing
  180. NCPushNotification.shared().pushNotification()
  181. // Request Service Server Nextcloud
  182. NCService.shared.startRequestServicesServer()
  183. // Request TouchID, FaceID
  184. enableTouchFaceID()
  185. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  186. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  187. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetwork)
  188. }
  189. // L' applicazione si dimetterà dallo stato di attivo
  190. func applicationWillResignActive(_ application: UIApplication) {
  191. guard !account.isEmpty else { return }
  192. NKCommon.shared.writeLog("[INFO] Application will resign active")
  193. if CCUtility.getPrivacyScreenEnabled() {
  194. // Privacy
  195. showPrivacyProtectionWindow()
  196. }
  197. // Reload Widget
  198. WidgetCenter.shared.reloadAllTimelines()
  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. guard !account.isEmpty else { return }
  213. NKCommon.shared.writeLog("[INFO] Application did enter in background")
  214. // STOP UPLOAD PROCESS
  215. networkingProcessUpload?.stopTimer()
  216. scheduleAppRefresh()
  217. scheduleAppProcessing()
  218. // Passcode
  219. presentPasscode { }
  220. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  221. }
  222. // L'applicazione terminerà
  223. func applicationWillTerminate(_ application: UIApplication) {
  224. NCNetworking.shared.cancelAllDownloadTransfer()
  225. let content = UNMutableNotificationContent()
  226. content.title = NCBrandOptions.shared.brand
  227. content.body = NSLocalizedString("_keep_running_", comment: "")
  228. let req = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: nil)
  229. let notificationCenter = UNUserNotificationCenter.current()
  230. notificationCenter.add(req)
  231. NKCommon.shared.writeLog("bye bye")
  232. }
  233. // MARK: -
  234. @objc private func initialize() {
  235. guard !account.isEmpty else { return }
  236. NKCommon.shared.writeLog("[INFO] initialize Main")
  237. // Registeration push notification
  238. NCPushNotification.shared().pushNotification()
  239. // Start services
  240. NCService.shared.startRequestServicesServer()
  241. // close detail
  242. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  243. // Reload Widget
  244. WidgetCenter.shared.reloadAllTimelines()
  245. // Registeration domain File Provider
  246. // FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  247. // [fileProviderDomain removeAllDomains];
  248. // [fileProviderDomain registerDomains];
  249. }
  250. // MARK: - Background Task
  251. /*
  252. @discussion Schedule a refresh task request to ask that the system launch your app briefly so that you can download data and keep your app's contents up-to-date. The system will fulfill this request intelligently based on system conditions and app usage.
  253. < MAX 30 seconds >
  254. */
  255. func scheduleAppRefresh() {
  256. let request = BGAppRefreshTaskRequest(identifier: NCGlobal.shared.refreshTask)
  257. request.earliestBeginDate = Date(timeIntervalSinceNow: 60) // Refresh after 60 seconds.
  258. do {
  259. try BGTaskScheduler.shared.submit(request)
  260. NKCommon.shared.writeLog("[SUCCESS] Refresh task success submit request 60 seconds \(request)")
  261. } catch {
  262. NKCommon.shared.writeLog("[ERROR] Refresh task failed to submit request: \(error)")
  263. }
  264. }
  265. /*
  266. @discussion Schedule a processing task request to ask that the system launch your app when conditions are favorable for battery life to handle deferrable, longer-running processing, such as syncing, database maintenance, or similar tasks. The system will attempt to fulfill this request to the best of its ability within the next two days as long as the user has used your app within the past week.
  267. < MAX over 1 minute >
  268. */
  269. func scheduleAppProcessing() {
  270. let request = BGProcessingTaskRequest(identifier: NCGlobal.shared.processingTask)
  271. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  272. request.requiresNetworkConnectivity = false
  273. request.requiresExternalPower = false
  274. do {
  275. try BGTaskScheduler.shared.submit(request)
  276. NKCommon.shared.writeLog("[SUCCESS] Background Processing task success submit request 5 minutes \(request)")
  277. } catch {
  278. NKCommon.shared.writeLog("[ERROR] Background Processing task failed to submit request: \(error)")
  279. }
  280. }
  281. func handleRefreshTask(_ task: BGTask) {
  282. scheduleAppRefresh()
  283. guard !account.isEmpty else {
  284. task.setTaskCompleted(success: true)
  285. return
  286. }
  287. NKCommon.shared.setup(delegate: NCNetworking.shared)
  288. NKCommon.shared.writeLog("[INFO] Start handler refresh task [Auto upload]")
  289. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  290. NKCommon.shared.writeLog("[INFO] Completition handler refresh task [Auto upload] with \(items) uploads")
  291. task.setTaskCompleted(success: true)
  292. }
  293. }
  294. func handleProcessingTask(_ task: BGTask) {
  295. scheduleAppProcessing()
  296. guard !account.isEmpty else {
  297. task.setTaskCompleted(success: true)
  298. return
  299. }
  300. NKCommon.shared.setup(delegate: NCNetworking.shared)
  301. NKCommon.shared.writeLog("[INFO] Start handler processing task [Reload widget]")
  302. WidgetCenter.shared.reloadAllTimelines()
  303. task.setTaskCompleted(success: true)
  304. }
  305. // MARK: - Background Networking Session
  306. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  307. NKCommon.shared.writeLog("[INFO] Start handle Events For Background URLSession: \(identifier)")
  308. // Reload Widget
  309. WidgetCenter.shared.reloadAllTimelines()
  310. backgroundSessionCompletionHandler = completionHandler
  311. }
  312. // MARK: - Push Notifications
  313. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  314. completionHandler(UNNotificationPresentationOptions.alert)
  315. }
  316. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  317. completionHandler()
  318. }
  319. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  320. NCNetworking.shared.checkPushNotificationServerProxyCertificateUntrusted(viewController: self.window?.rootViewController) { error in
  321. if error == .success {
  322. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  323. }
  324. }
  325. }
  326. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  327. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { result in
  328. completionHandler(result)
  329. }
  330. }
  331. // MARK: - Login & checkErrorNetworking
  332. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  333. // [WEBPersonalized] [AppConfig]
  334. if NCBrandOptions.shared.use_login_web_personalized || NCBrandOptions.shared.use_AppConfig {
  335. if activeLoginWeb?.view.window == nil {
  336. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  337. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  338. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  339. }
  340. return
  341. }
  342. // Nextcloud standard login
  343. if selector == NCGlobal.shared.introSignup {
  344. if activeLoginWeb?.view.window == nil {
  345. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  346. if selector == NCGlobal.shared.introSignup {
  347. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  348. } else {
  349. activeLoginWeb?.urlBase = self.urlBase
  350. }
  351. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  352. }
  353. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  354. if activeLoginWeb?.view.window == nil {
  355. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  356. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  357. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  358. }
  359. } else if openLoginWeb {
  360. if activeLoginWeb?.view.window == nil {
  361. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  362. activeLoginWeb?.urlBase = urlBase
  363. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  364. }
  365. } else {
  366. if activeLogin?.view.window == nil {
  367. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  368. showLoginViewController(activeLogin, contextViewController: viewController)
  369. }
  370. }
  371. }
  372. func showLoginViewController(_ viewController: UIViewController?, contextViewController: UIViewController?) {
  373. if contextViewController == nil {
  374. if let viewController = viewController {
  375. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  376. navigationController.navigationBar.barStyle = .black
  377. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  378. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  379. navigationController.navigationBar.isTranslucent = false
  380. window?.rootViewController = navigationController
  381. window?.makeKeyAndVisible()
  382. }
  383. } else if contextViewController is UINavigationController {
  384. if let contextViewController = contextViewController, let viewController = viewController {
  385. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  386. }
  387. } else {
  388. if let viewController = viewController, let contextViewController = contextViewController {
  389. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  390. navigationController.modalPresentationStyle = .fullScreen
  391. navigationController.navigationBar.barStyle = .black
  392. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  393. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  394. navigationController.navigationBar.isTranslucent = false
  395. contextViewController.present(navigationController, animated: true) { }
  396. }
  397. }
  398. }
  399. @objc func startTimerErrorNetworking() {
  400. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  401. }
  402. @objc private func checkErrorNetworking() {
  403. // check unauthorized server (401/403)
  404. if account != "" && CCUtility.getPassword(account)!.count == 0 {
  405. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  406. }
  407. }
  408. func trustCertificateError(host: String) {
  409. guard let currentHost = URL(string: self.urlBase)?.host,
  410. let pushNotificationServerProxyHost = URL(string: NCBrandOptions.shared.pushNotificationServerProxy)?.host,
  411. host != pushNotificationServerProxyHost,
  412. host == currentHost
  413. else { return }
  414. let certificateHostSavedPath = CCUtility.getDirectoryCerificates()! + "/" + host + ".der"
  415. var title = NSLocalizedString("_ssl_certificate_changed_", comment: "")
  416. if !FileManager.default.fileExists(atPath: certificateHostSavedPath) {
  417. title = NSLocalizedString("_connect_server_anyway_", comment: "")
  418. }
  419. let alertController = UIAlertController(title: title, message: NSLocalizedString("_server_is_trusted_", comment: ""), preferredStyle: .alert)
  420. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  421. NCNetworking.shared.writeCertificate(host: host)
  422. }))
  423. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in }))
  424. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { action in
  425. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  426. let viewController = navigationController.topViewController as! NCViewCertificateDetails
  427. viewController.delegate = self
  428. viewController.host = host
  429. self.window?.rootViewController?.present(navigationController, animated: true)
  430. }
  431. }))
  432. window?.rootViewController?.present(alertController, animated: true)
  433. }
  434. func viewCertificateDetailsDismiss(host: String) {
  435. trustCertificateError(host: host)
  436. }
  437. // MARK: - Account
  438. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String) {
  439. let accountBackup = self.account
  440. let userIdBackup = self.userId
  441. self.account = account
  442. self.urlBase = urlBase
  443. self.user = user
  444. self.userId = userId
  445. self.password = password
  446. _ = NCFunctionCenter.shared
  447. NKCommon.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  448. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  449. if serverVersionMajor > 0 {
  450. NKCommon.shared.setup(nextcloudVersion: serverVersionMajor)
  451. }
  452. NCKTVHTTPCache.shared.restartProxy(user: user, password: password)
  453. DispatchQueue.main.async {
  454. if UIApplication.shared.applicationState != .background && (accountBackup != account || userIdBackup != userId) {
  455. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize, second: 0.2)
  456. }
  457. }
  458. }
  459. @objc func deleteAccount(_ account: String, wipe: Bool) {
  460. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  461. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  462. }
  463. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  464. for result in results {
  465. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  466. }
  467. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  468. CCUtility.clearAllKeysEnd(toEnd: account)
  469. CCUtility.clearAllKeysPushNotification(account)
  470. CCUtility.setPassword(account, password: nil)
  471. if wipe {
  472. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  473. let accounts = NCManageDatabase.shared.getAccounts()
  474. if accounts?.count ?? 0 > 0 {
  475. if let newAccount = accounts?.first {
  476. self.changeAccount(newAccount)
  477. }
  478. } else {
  479. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  480. }
  481. }
  482. }
  483. @objc func changeAccount(_ account: String) {
  484. NCManageDatabase.shared.setAccountActive(account)
  485. if let tableAccount = NCManageDatabase.shared.getActiveAccount() {
  486. NCOperationQueue.shared.cancelAllQueue()
  487. NCNetworking.shared.cancelAllTask()
  488. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  489. }
  490. }
  491. // MARK: - Account Request
  492. func accountRequestChangeAccount(account: String) {
  493. changeAccount(account)
  494. }
  495. func requestAccount() {
  496. if isPasscodePresented() { return }
  497. if !CCUtility.getAccountRequest() { return }
  498. let accounts = NCManageDatabase.shared.getAllAccount()
  499. if accounts.count > 1 {
  500. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  501. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  502. vcAccountRequest.accounts = accounts
  503. vcAccountRequest.enableTimerProgress = true
  504. vcAccountRequest.enableAddAccount = false
  505. vcAccountRequest.dismissDidEnterBackground = false
  506. vcAccountRequest.delegate = self
  507. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  508. let numberCell = accounts.count
  509. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  510. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height+20)
  511. popup.backgroundAlpha = 0.8
  512. window?.rootViewController?.present(popup, animated: true)
  513. vcAccountRequest.startTimer()
  514. }
  515. }
  516. }
  517. // MARK: - Passcode
  518. func presentPasscode(completion: @escaping () -> ()) {
  519. let laContext = LAContext()
  520. var error: NSError?
  521. defer { self.requestAccount() }
  522. let presentedViewController = window?.rootViewController?.presentedViewController
  523. guard !account.isEmpty, CCUtility.isPasscodeAtStartEnabled(), !(presentedViewController is NCLoginNavigationController) else { return }
  524. // Make sure we have a privacy window (in case it's not enabled)
  525. showPrivacyProtectionWindow()
  526. let passcodeViewController = TOPasscodeViewController(passcodeType: .sixDigits, allowCancel: false)
  527. passcodeViewController.delegate = self
  528. passcodeViewController.keypadButtonShowLettering = false
  529. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  530. if error == nil {
  531. if laContext.biometryType == .faceID {
  532. passcodeViewController.biometryType = .faceID
  533. } else if laContext.biometryType == .touchID {
  534. passcodeViewController.biometryType = .touchID
  535. }
  536. passcodeViewController.allowBiometricValidation = true
  537. passcodeViewController.automaticallyPromptForBiometricValidation = false
  538. }
  539. }
  540. // show passcode on top of privacy window
  541. privacyProtectionWindow?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  542. completion()
  543. })
  544. }
  545. func isPasscodePresented() -> Bool {
  546. return privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController
  547. }
  548. func enableTouchFaceID() {
  549. guard !account.isEmpty,
  550. CCUtility.getEnableTouchFaceID(),
  551. CCUtility.isPasscodeAtStartEnabled(),
  552. let passcodeViewController = privacyProtectionWindow?.rootViewController?.presentedViewController as? TOPasscodeViewController
  553. else { return }
  554. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  555. if success {
  556. DispatchQueue.main.async {
  557. passcodeViewController.dismiss(animated: true) {
  558. self.hidePrivacyProtectionWindow()
  559. self.requestAccount()
  560. }
  561. }
  562. }
  563. }
  564. }
  565. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  566. DispatchQueue.main.async {
  567. passcodeViewController.dismiss(animated: true) {
  568. self.hidePrivacyProtectionWindow()
  569. self.requestAccount()
  570. }
  571. }
  572. }
  573. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  574. return code == CCUtility.getPasscode()
  575. }
  576. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  577. enableTouchFaceID()
  578. }
  579. // MARK: - Privacy Protection
  580. private func showPrivacyProtectionWindow() {
  581. guard privacyProtectionWindow == nil else {
  582. privacyProtectionWindow?.isHidden = false
  583. return
  584. }
  585. privacyProtectionWindow = UIWindow(frame: UIScreen.main.bounds)
  586. let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil)
  587. let initialViewController = storyboard.instantiateInitialViewController()
  588. self.privacyProtectionWindow?.rootViewController = initialViewController
  589. privacyProtectionWindow?.windowLevel = .alert + 1
  590. privacyProtectionWindow?.makeKeyAndVisible()
  591. }
  592. func hidePrivacyProtectionWindow() {
  593. guard !(privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController) else { return }
  594. UIWindow.animate(withDuration: 0.25) {
  595. self.privacyProtectionWindow?.alpha = 0
  596. } completion: { _ in
  597. self.privacyProtectionWindow?.isHidden = true
  598. self.privacyProtectionWindow = nil
  599. }
  600. }
  601. // MARK: - Open URL
  602. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  603. guard !account.isEmpty else { return false }
  604. let scheme = url.scheme
  605. let action = url.host
  606. var fileName: String = ""
  607. var serverUrl: String = ""
  608. var matchedAccount: tableAccount?
  609. /*
  610. Example:
  611. nextcloud://open-action?action=create-voice-memo
  612. */
  613. if scheme == "nextcloud" && action == "open-action" {
  614. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  615. let queryItems = urlComponents.queryItems
  616. guard let actionScheme = CCUtility.value(forKey: "action", fromQueryItems: queryItems), let rootViewController = window?.rootViewController else { return false }
  617. switch actionScheme {
  618. case NCGlobal.shared.actionUploadAsset:
  619. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: rootViewController) { hasPermission in
  620. if hasPermission {
  621. NCPhotosPickerViewController.init(viewController: rootViewController, maxSelectedAssets: 0, singleSelectedMode: false)
  622. }
  623. }
  624. case NCGlobal.shared.actionScanDocument:
  625. NCCreateScanDocument.shared.openScannerDocument(viewController: rootViewController)
  626. case NCGlobal.shared.actionTextDocument:
  627. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController(), let directEditingCreators = NCManageDatabase.shared.getDirectEditingCreators(account: account), let directEditingCreator = directEditingCreators.first(where: { $0.editor == NCGlobal.shared.editorText}) else { return false }
  628. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  629. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  630. viewController.editorId = NCGlobal.shared.editorText
  631. viewController.creatorId = directEditingCreator.identifier
  632. viewController.typeTemplate = NCGlobal.shared.templateDocument
  633. viewController.serverUrl = activeServerUrl
  634. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  635. rootViewController.present(navigationController, animated: true, completion: nil)
  636. case NCGlobal.shared.actionVoiceMemo:
  637. NCAskAuthorization.shared.askAuthorizationAudioRecord(viewController: rootViewController) { hasPermission in
  638. if hasPermission {
  639. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  640. let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as! NCAudioRecorderViewController
  641. viewController.delegate = self
  642. viewController.createRecorder(fileName: fileName)
  643. viewController.modalTransitionStyle = .crossDissolve
  644. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  645. rootViewController.present(viewController, animated: true, completion: nil)
  646. }
  647. }
  648. default:
  649. print("No action")
  650. }
  651. }
  652. }
  653. /*
  654. Example:
  655. nextcloud://open-file?path=Talk/IMG_0000123.jpg&user=marinofaggiana&link=https://cloud.nextcloud.com/f/123
  656. */
  657. else if scheme == "nextcloud" && action == "open-file" {
  658. if !isSearchingMode, let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  659. let queryItems = urlComponents.queryItems
  660. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  661. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  662. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  663. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  664. let urlBase = URL(string: activeAccount.urlBase)
  665. if linkScheme.contains(urlBase?.host ?? "") && userScheme == activeAccount.userId {
  666. matchedAccount = activeAccount
  667. } else {
  668. let accounts = NCManageDatabase.shared.getAllAccount()
  669. for account in accounts {
  670. let urlBase = URL(string: account.urlBase)
  671. if linkScheme.contains(urlBase?.host ?? "") && userScheme == account.userId {
  672. changeAccount(account.account)
  673. matchedAccount = account
  674. break
  675. }
  676. }
  677. }
  678. if matchedAccount != nil {
  679. let webDAV = NCUtilityFileSystem.shared.getWebDAV(account: self.account) + "/files/" + self.userId
  680. if pathScheme.contains("/") {
  681. fileName = (pathScheme as NSString).lastPathComponent
  682. serverUrl = matchedAccount!.urlBase + "/" + webDAV + "/" + (pathScheme as NSString).deletingLastPathComponent
  683. } else {
  684. fileName = pathScheme
  685. serverUrl = matchedAccount!.urlBase + "/" + webDAV
  686. }
  687. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  688. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileNameBlink: nil, fileNameOpen: fileName)
  689. }
  690. } else {
  691. guard let domain = URL(string: linkScheme)?.host else { return true }
  692. fileName = (pathScheme as NSString).lastPathComponent
  693. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  694. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  695. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  696. window?.rootViewController?.present(alertController, animated: true, completion: { })
  697. return false
  698. }
  699. }
  700. }
  701. } else {
  702. app.open(url)
  703. }
  704. return true
  705. }
  706. }
  707. // MARK: - NCAudioRecorder ViewController Delegate
  708. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  709. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  710. guard
  711. let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  712. let viewController = navigationController.topViewController as? NCCreateFormUploadVoiceNote
  713. else { return }
  714. navigationController.modalPresentationStyle = .formSheet
  715. viewController.setup(serverUrl: activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  716. window?.rootViewController?.present(navigationController, animated: true)
  717. }
  718. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  719. }
  720. }
  721. extension AppDelegate: NCCreateFormUploadConflictDelegate {
  722. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  723. guard let metadatas = metadatas, !metadatas.isEmpty else { return }
  724. networkingProcessUpload?.createProcessUploads(metadatas: metadatas, completion: { _ in })
  725. }
  726. }