AppDelegate.swift 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  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 activeLogin: NCLogin?
  40. var activeLoginWeb: NCLoginWeb?
  41. var activeServerUrl: String = ""
  42. @objc var activeViewController: UIViewController?
  43. var mainTabBar: NCMainTabBar?
  44. var activeMetadata: tableMetadata?
  45. let listFilesVC = ThreadSafeDictionary<String,NCFiles>()
  46. let listFavoriteVC = ThreadSafeDictionary<String,NCFavorite>()
  47. let listOfflineVC = ThreadSafeDictionary<String,NCOffline>()
  48. let listGroupfoldersVC = ThreadSafeDictionary<String,NCGroupfolders>()
  49. var disableSharesView: Bool = false
  50. var documentPickerViewController: NCDocumentPickerViewController?
  51. var timerErrorNetworking: Timer?
  52. private var privacyProtectionWindow: UIWindow?
  53. var isUiTestingEnabled: Bool {
  54. get {
  55. return ProcessInfo.processInfo.arguments.contains("UI_TESTING")
  56. }
  57. }
  58. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  59. if isUiTestingEnabled {
  60. deleteAllAccounts()
  61. }
  62. NCSettingsBundleHelper.checkAndExecuteSettings(delay: 0)
  63. let userAgent = CCUtility.getUserAgent() as String
  64. let versionNextcloudiOS = String(format: NCBrandOptions.shared.textCopyrightNextcloudiOS, NCUtility.shared.getVersionApp())
  65. // Register initialize
  66. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  67. UserDefaults.standard.register(defaults: ["UserAgent": userAgent])
  68. if !CCUtility.getDisableCrashservice() && !NCBrandOptions.shared.disable_crash_service {
  69. FirebaseApp.configure()
  70. }
  71. CCUtility.createDirectoryStandard()
  72. CCUtility.emptyTemporaryDirectory()
  73. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  74. NextcloudKit.shared.setup(userAgent: userAgent)
  75. startTimerErrorNetworking()
  76. // LOG
  77. var levelLog = 0
  78. if let pathDirectoryGroup = CCUtility.getDirectoryGroup()?.path {
  79. NextcloudKit.shared.nkCommonInstance.pathLog = pathDirectoryGroup
  80. }
  81. if NCBrandOptions.shared.disable_log {
  82. NCUtilityFileSystem.shared.deleteFile(filePath: NextcloudKit.shared.nkCommonInstance.filenamePathLog)
  83. NCUtilityFileSystem.shared.deleteFile(filePath: NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/" + NextcloudKit.shared.nkCommonInstance.filenameLog)
  84. } else {
  85. levelLog = CCUtility.getLogLevel()
  86. NextcloudKit.shared.nkCommonInstance.levelLog = levelLog
  87. NextcloudKit.shared.nkCommonInstance.copyLogToDocumentDirectory = true
  88. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Start session with level \(levelLog) " + versionNextcloudiOS + " in state \(UIApplication.shared.applicationState.rawValue) where (0 active, 1 inactive, 2 background).")
  89. }
  90. // LOG Account
  91. if let account = NCManageDatabase.shared.getActiveAccount() {
  92. NextcloudKit.shared.nkCommonInstance.writeLog("Account active \(account.account)")
  93. if CCUtility.getPassword(account.account).isEmpty {
  94. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] PASSWORD NOT FOUND for \(account.account)")
  95. }
  96. }
  97. // Activate user account
  98. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  99. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account), initialize: false)
  100. NCBrandColor.shared.settingThemingColor(account: activeAccount.account)
  101. initialize()
  102. } else {
  103. CCUtility.deleteAllChainStore()
  104. if let bundleID = Bundle.main.bundleIdentifier {
  105. UserDefaults.standard.removePersistentDomain(forName: bundleID)
  106. }
  107. NCBrandColor.shared.createImagesThemingColor()
  108. }
  109. // Create user color
  110. NCBrandColor.shared.createUserColors()
  111. // Push Notification & display notification
  112. application.registerForRemoteNotifications()
  113. UNUserNotificationCenter.current().delegate = self
  114. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { _, _ in }
  115. // Store review
  116. if !NCUtility.shared.isSimulatorOrTestFlight() {
  117. let review = NCStoreReview()
  118. review.incrementAppRuns()
  119. review.showStoreReview()
  120. }
  121. // Background task: register
  122. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.refreshTask, using: nil) { task in
  123. self.handleRefreshTask(task)
  124. }
  125. BGTaskScheduler.shared.register(forTaskWithIdentifier: NCGlobal.shared.processingTask, using: nil) { task in
  126. self.handleProcessingTask(task)
  127. }
  128. // Intro
  129. if NCBrandOptions.shared.disable_intro {
  130. CCUtility.setIntro(true)
  131. if account.isEmpty {
  132. openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  133. }
  134. } else {
  135. if !CCUtility.getIntro() {
  136. if let viewController = UIStoryboard(name: "NCIntro", bundle: nil).instantiateInitialViewController() {
  137. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  138. window?.rootViewController = navigationController
  139. window?.makeKeyAndVisible()
  140. }
  141. }
  142. }
  143. // Passcode
  144. self.presentPasscode {
  145. self.enableTouchFaceID()
  146. }
  147. return true
  148. }
  149. // MARK: - Life Cycle
  150. // L' applicazione entrerà in attivo (sempre)
  151. func applicationDidBecomeActive(_ application: UIApplication) {
  152. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application did become active")
  153. NCSettingsBundleHelper.setVersionAndBuildNumber()
  154. NCSettingsBundleHelper.checkAndExecuteSettings(delay: 0.5)
  155. // START OBSERVE/TIMER UPLOAD PROCESS
  156. NCNetworkingProcessUpload.shared.observeTableMetadata()
  157. NCNetworkingProcessUpload.shared.startTimer()
  158. if !NCAskAuthorization.shared.isRequesting {
  159. hidePrivacyProtectionWindow()
  160. }
  161. if !account.isEmpty {
  162. NCNetworkingProcessUpload.shared.verifyUploadZombie()
  163. }
  164. // Start Auto Upload
  165. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  166. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Initialize Auto upload with \(items) uploads")
  167. }
  168. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidBecomeActive)
  169. }
  170. // L' applicazione entrerà in primo piano (dopo il background)
  171. func applicationWillEnterForeground(_ application: UIApplication) {
  172. guard !account.isEmpty, let activeAccount = NCManageDatabase.shared.getActiveAccount() else { return }
  173. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application will enter in foreground")
  174. if activeAccount.account != account {
  175. settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  176. } else {
  177. // Request Service Server Nextcloud
  178. NCService.shared.startRequestServicesServer()
  179. }
  180. // Required unsubscribing / subscribing
  181. NCPushNotification.shared().pushNotification()
  182. // Request TouchID, FaceID
  183. enableTouchFaceID()
  184. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillEnterForeground)
  185. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterRichdocumentGrabFocus)
  186. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetwork)
  187. }
  188. // L' applicazione si dimetterà dallo stato di attivo
  189. func applicationWillResignActive(_ application: UIApplication) {
  190. // Nextcloud update share accounts
  191. if let error = updateShareAccounts() {
  192. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Create share accounts \(error.localizedDescription)")
  193. }
  194. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application will resign active")
  195. guard !account.isEmpty else { return }
  196. // STOP OBSERVE/TIMER UPLOAD PROCESS
  197. NCNetworkingProcessUpload.shared.invalidateObserveTableMetadata()
  198. NCNetworkingProcessUpload.shared.stopTimer()
  199. if CCUtility.getPrivacyScreenEnabled() {
  200. // Privacy
  201. showPrivacyProtectionWindow()
  202. }
  203. // Reload Widget
  204. WidgetCenter.shared.reloadAllTimelines()
  205. // Clear operation queue
  206. NCOperationQueue.shared.cancelAllQueue()
  207. // Clear download
  208. NCNetworking.shared.cancelAllDownloadTransfer()
  209. // Clear older files
  210. let days = CCUtility.getCleanUpDay()
  211. if let directory = CCUtility.getDirectoryProviderStorage() {
  212. NCUtilityFileSystem.shared.cleanUp(directory: directory, days: TimeInterval(days))
  213. }
  214. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationWillResignActive)
  215. }
  216. // L' applicazione è entrata nello sfondo
  217. func applicationDidEnterBackground(_ application: UIApplication) {
  218. guard !account.isEmpty else { return }
  219. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Application did enter in background")
  220. scheduleAppRefresh()
  221. scheduleAppProcessing()
  222. // Passcode
  223. presentPasscode { }
  224. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterApplicationDidEnterBackground)
  225. }
  226. // L'applicazione terminerà
  227. func applicationWillTerminate(_ application: UIApplication) {
  228. NCNetworking.shared.cancelAllDownloadTransfer()
  229. if UIApplication.shared.backgroundRefreshStatus == .available {
  230. let content = UNMutableNotificationContent()
  231. content.title = NCBrandOptions.shared.brand
  232. content.body = NSLocalizedString("_keep_running_", comment: "")
  233. let req = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: nil)
  234. let notificationCenter = UNUserNotificationCenter.current()
  235. notificationCenter.add(req)
  236. }
  237. NextcloudKit.shared.nkCommonInstance.writeLog("bye bye")
  238. }
  239. // MARK: -
  240. @objc private func initialize() {
  241. guard !account.isEmpty else { return }
  242. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] initialize Main")
  243. // Registeration push notification
  244. NCPushNotification.shared().pushNotification()
  245. // Unlock E2EE
  246. NCNetworkingE2EE.shared.unlockAll(account: account)
  247. // Start services
  248. NCService.shared.startRequestServicesServer()
  249. // close detail
  250. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuDetailClose)
  251. // Reload Widget
  252. WidgetCenter.shared.reloadAllTimelines()
  253. // Registeration domain File Provider
  254. // FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  255. // [fileProviderDomain removeAllDomains];
  256. // [fileProviderDomain registerDomains];
  257. }
  258. // MARK: - Background Task
  259. /*
  260. @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.
  261. < MAX 30 seconds >
  262. */
  263. func scheduleAppRefresh() {
  264. let request = BGAppRefreshTaskRequest(identifier: NCGlobal.shared.refreshTask)
  265. request.earliestBeginDate = Date(timeIntervalSinceNow: 60) // Refresh after 60 seconds.
  266. do {
  267. try BGTaskScheduler.shared.submit(request)
  268. NextcloudKit.shared.nkCommonInstance.writeLog("[SUCCESS] Refresh task success submit request 60 seconds \(request)")
  269. } catch {
  270. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Refresh task failed to submit request: \(error)")
  271. }
  272. }
  273. /*
  274. @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.
  275. < MAX over 1 minute >
  276. */
  277. func scheduleAppProcessing() {
  278. let request = BGProcessingTaskRequest(identifier: NCGlobal.shared.processingTask)
  279. request.earliestBeginDate = Date(timeIntervalSinceNow: 5 * 60) // Refresh after 5 minutes.
  280. request.requiresNetworkConnectivity = false
  281. request.requiresExternalPower = false
  282. do {
  283. try BGTaskScheduler.shared.submit(request)
  284. NextcloudKit.shared.nkCommonInstance.writeLog("[SUCCESS] Background Processing task success submit request 5 minutes \(request)")
  285. } catch {
  286. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Background Processing task failed to submit request: \(error)")
  287. }
  288. }
  289. func handleRefreshTask(_ task: BGTask) {
  290. scheduleAppRefresh()
  291. guard !account.isEmpty else {
  292. task.setTaskCompleted(success: true)
  293. return
  294. }
  295. NextcloudKit.shared.setup(delegate: NCNetworking.shared)
  296. NCAutoUpload.shared.initAutoUpload(viewController: nil) { items in
  297. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Refresh task auto upload with \(items) uploads")
  298. NCNetworkingProcessUpload.shared.start { items in
  299. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Refresh task upload process with \(items) uploads")
  300. task.setTaskCompleted(success: true)
  301. }
  302. }
  303. }
  304. func handleProcessingTask(_ task: BGTask) {
  305. scheduleAppProcessing()
  306. guard !account.isEmpty else {
  307. task.setTaskCompleted(success: true)
  308. return
  309. }
  310. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Processing task")
  311. task.setTaskCompleted(success: true)
  312. }
  313. // MARK: - Background Networking Session
  314. func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
  315. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Start handle Events For Background URLSession: \(identifier)")
  316. // Reload Widget
  317. WidgetCenter.shared.reloadAllTimelines()
  318. backgroundSessionCompletionHandler = completionHandler
  319. }
  320. // MARK: - Push Notifications
  321. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
  322. completionHandler([.list, .banner, .sound])
  323. }
  324. func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
  325. if let pref = UserDefaults.init(suiteName: NCBrandOptions.shared.capabilitiesGroups),
  326. let data = pref.object(forKey: "NOTIFICATION_DATA") as? [String: AnyObject] {
  327. nextcloudPushNotificationAction(data: data)
  328. pref.set(nil, forKey: "NOTIFICATION_DATA")
  329. }
  330. completionHandler()
  331. }
  332. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  333. NCNetworking.shared.checkPushNotificationServerProxyCertificateUntrusted(viewController: self.window?.rootViewController) { error in
  334. if error == .success {
  335. NCPushNotification.shared().registerForRemoteNotifications(withDeviceToken: deviceToken)
  336. }
  337. }
  338. }
  339. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  340. NCPushNotification.shared().applicationdidReceiveRemoteNotification(userInfo) { result in
  341. completionHandler(result)
  342. }
  343. }
  344. func nextcloudPushNotificationAction(data: [String: AnyObject]) {
  345. NCApplicationHandle().nextcloudPushNotificationAction(data: data) { detected in
  346. if !detected {
  347. var findAccount: Bool = false
  348. if let accountPush = data["account"] as? String,
  349. let app = data["app"] as? String,
  350. app == NCGlobal.shared.twofactorNotificatioName {
  351. if accountPush == self.account {
  352. findAccount = true
  353. } else {
  354. let accounts = NCManageDatabase.shared.getAllAccount()
  355. for account in accounts {
  356. if account.account == accountPush {
  357. self.changeAccount(account.account)
  358. findAccount = true
  359. }
  360. }
  361. }
  362. if findAccount, let viewController = UIStoryboard(name: "NCNotification", bundle: nil).instantiateInitialViewController() as? NCNotification {
  363. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  364. let navigationController = UINavigationController(rootViewController: viewController)
  365. navigationController.modalPresentationStyle = .fullScreen
  366. self.window?.rootViewController?.present(navigationController, animated: true)
  367. }
  368. } else if !findAccount {
  369. let message = NSLocalizedString("_the_account_", comment: "") + " " + accountPush + " " + NSLocalizedString("_does_not_exist_", comment: "")
  370. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  371. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  372. self.window?.rootViewController?.present(alertController, animated: true, completion: { })
  373. }
  374. }
  375. }
  376. }
  377. }
  378. // MARK: - Login & checkErrorNetworking
  379. @objc func openLogin(viewController: UIViewController?, selector: Int, openLoginWeb: Bool) {
  380. // [WEBPersonalized] [AppConfig]
  381. if NCBrandOptions.shared.use_login_web_personalized || NCBrandOptions.shared.use_AppConfig {
  382. if activeLoginWeb?.view.window == nil {
  383. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  384. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  385. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  386. }
  387. return
  388. }
  389. // Nextcloud standard login
  390. if selector == NCGlobal.shared.introSignup {
  391. if activeLoginWeb?.view.window == nil {
  392. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  393. if selector == NCGlobal.shared.introSignup {
  394. activeLoginWeb?.urlBase = NCBrandOptions.shared.linkloginPreferredProviders
  395. } else {
  396. activeLoginWeb?.urlBase = self.urlBase
  397. }
  398. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  399. }
  400. } else if NCBrandOptions.shared.disable_intro && NCBrandOptions.shared.disable_request_login_url {
  401. if activeLoginWeb?.view.window == nil {
  402. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  403. activeLoginWeb?.urlBase = NCBrandOptions.shared.loginBaseUrl
  404. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  405. }
  406. } else if openLoginWeb {
  407. // Used also for reinsert the account (change passwd)
  408. if activeLoginWeb?.view.window == nil {
  409. activeLoginWeb = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLoginWeb") as? NCLoginWeb
  410. activeLoginWeb?.urlBase = urlBase
  411. activeLoginWeb?.user = user
  412. showLoginViewController(activeLoginWeb, contextViewController: viewController)
  413. }
  414. } else {
  415. if activeLogin?.view.window == nil {
  416. activeLogin = UIStoryboard(name: "NCLogin", bundle: nil).instantiateViewController(withIdentifier: "NCLogin") as? NCLogin
  417. showLoginViewController(activeLogin, contextViewController: viewController)
  418. }
  419. }
  420. }
  421. func showLoginViewController(_ viewController: UIViewController?, contextViewController: UIViewController?) {
  422. if contextViewController == nil {
  423. if let viewController = viewController {
  424. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  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. window?.rootViewController = navigationController
  430. window?.makeKeyAndVisible()
  431. }
  432. } else if contextViewController is UINavigationController {
  433. if let contextViewController = contextViewController, let viewController = viewController {
  434. (contextViewController as! UINavigationController).pushViewController(viewController, animated: true)
  435. }
  436. } else {
  437. if let viewController = viewController, let contextViewController = contextViewController {
  438. let navigationController = NCLoginNavigationController.init(rootViewController: viewController)
  439. navigationController.modalPresentationStyle = .fullScreen
  440. navigationController.navigationBar.barStyle = .black
  441. navigationController.navigationBar.tintColor = NCBrandColor.shared.customerText
  442. navigationController.navigationBar.barTintColor = NCBrandColor.shared.customer
  443. navigationController.navigationBar.isTranslucent = false
  444. contextViewController.present(navigationController, animated: true) { }
  445. }
  446. }
  447. }
  448. @objc func startTimerErrorNetworking() {
  449. timerErrorNetworking = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(checkErrorNetworking), userInfo: nil, repeats: true)
  450. }
  451. @objc private func checkErrorNetworking() {
  452. if account != "" && CCUtility.getPassword(account)!.count == 0 {
  453. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: true)
  454. }
  455. }
  456. func trustCertificateError(host: String) {
  457. guard let currentHost = URL(string: self.urlBase)?.host,
  458. let pushNotificationServerProxyHost = URL(string: NCBrandOptions.shared.pushNotificationServerProxy)?.host,
  459. host != pushNotificationServerProxyHost,
  460. host == currentHost
  461. else { return }
  462. let certificateHostSavedPath = CCUtility.getDirectoryCerificates()! + "/" + host + ".der"
  463. var title = NSLocalizedString("_ssl_certificate_changed_", comment: "")
  464. if !FileManager.default.fileExists(atPath: certificateHostSavedPath) {
  465. title = NSLocalizedString("_connect_server_anyway_", comment: "")
  466. }
  467. let alertController = UIAlertController(title: title, message: NSLocalizedString("_server_is_trusted_", comment: ""), preferredStyle: .alert)
  468. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default, handler: { action in
  469. NCNetworking.shared.writeCertificate(host: host)
  470. }))
  471. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .default, handler: { action in }))
  472. alertController.addAction(UIAlertAction(title: NSLocalizedString("_certificate_details_", comment: ""), style: .default, handler: { action in
  473. if let navigationController = UIStoryboard(name: "NCViewCertificateDetails", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  474. let viewController = navigationController.topViewController as! NCViewCertificateDetails
  475. viewController.delegate = self
  476. viewController.host = host
  477. self.window?.rootViewController?.present(navigationController, animated: true)
  478. }
  479. }))
  480. window?.rootViewController?.present(alertController, animated: true)
  481. }
  482. func viewCertificateDetailsDismiss(host: String) {
  483. trustCertificateError(host: host)
  484. }
  485. // MARK: - Account
  486. @objc func settingAccount(_ account: String, urlBase: String, user: String, userId: String, password: String, initialize: Bool = true) {
  487. let accountTestBackup = self.account + "/" + self.userId
  488. let accountTest = account + "/" + userId
  489. self.account = account
  490. self.urlBase = urlBase
  491. self.user = user
  492. self.userId = userId
  493. self.password = password
  494. _ = NCActionCenter.shared
  495. NextcloudKit.shared.setup(account: account, user: user, userId: userId, password: password, urlBase: urlBase)
  496. NCManageDatabase.shared.setCapabilities(account: account)
  497. if NCGlobal.shared.capabilityServerVersionMajor > 0 {
  498. NextcloudKit.shared.setup(nextcloudVersion: NCGlobal.shared.capabilityServerVersionMajor)
  499. }
  500. DispatchQueue.main.async {
  501. if initialize, UIApplication.shared.applicationState != .background && accountTestBackup != accountTest {
  502. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize, second: 0.2)
  503. }
  504. }
  505. }
  506. @objc func deleteAccount(_ account: String, wipe: Bool) {
  507. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", account)) {
  508. NCPushNotification.shared().unsubscribingNextcloudServerPushNotification(account.account, urlBase: account.urlBase, user: account.user, withSubscribing: false)
  509. }
  510. let results = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "account == %@", account), sorted: "ocId", ascending: false)
  511. for result in results {
  512. CCUtility.removeFile(atPath: CCUtility.getDirectoryProviderStorageOcId(result.ocId))
  513. }
  514. NCManageDatabase.shared.clearDatabase(account: account, removeAccount: true)
  515. CCUtility.clearAllKeysEnd(toEnd: account)
  516. CCUtility.clearAllKeysPushNotification(account)
  517. CCUtility.setPassword(account, password: nil)
  518. if wipe {
  519. settingAccount("", urlBase: "", user: "", userId: "", password: "")
  520. let accounts = NCManageDatabase.shared.getAccounts()
  521. if accounts?.count ?? 0 > 0 {
  522. if let newAccount = accounts?.first {
  523. self.changeAccount(newAccount)
  524. }
  525. } else {
  526. openLogin(viewController: window?.rootViewController, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  527. }
  528. }
  529. }
  530. @objc func deleteAllAccounts() {
  531. let accounts = NCManageDatabase.shared.getAccounts()
  532. accounts?.forEach({ account in
  533. deleteAccount(account, wipe: true)
  534. })
  535. }
  536. @objc func changeAccount(_ account: String) {
  537. NCManageDatabase.shared.setAccountActive(account)
  538. if let tableAccount = NCManageDatabase.shared.getActiveAccount() {
  539. NCOperationQueue.shared.cancelAllQueue()
  540. NCNetworking.shared.cancelAllTask()
  541. settingAccount(tableAccount.account, urlBase: tableAccount.urlBase, user: tableAccount.user, userId: tableAccount.userId, password: CCUtility.getPassword(tableAccount.account))
  542. }
  543. }
  544. func updateShareAccounts() -> Error? {
  545. guard let dirGroupApps = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroupApps) else { return nil }
  546. let tableAccount = NCManageDatabase.shared.getAllAccount()
  547. var accounts = [NKShareAccounts.DataAccounts]()
  548. for account in tableAccount {
  549. let name = account.alias.isEmpty ? account.displayName : account.alias
  550. let userBaseUrl = account.user + "-" + (URL(string: account.urlBase)?.host ?? "")
  551. let avatarFileName = userBaseUrl + "-\(account.user).png"
  552. let pathAvatarFileName = String(CCUtility.getDirectoryUserData()) + "/" + avatarFileName
  553. let image = UIImage(contentsOfFile: pathAvatarFileName)
  554. accounts.append(NKShareAccounts.DataAccounts(withUrl: account.urlBase, user: account.user, name: name, image: image))
  555. }
  556. return NKShareAccounts().putShareAccounts(at: dirGroupApps, app: NCGlobal.shared.appScheme, dataAccounts: accounts)
  557. }
  558. // MARK: - Account Request
  559. func accountRequestChangeAccount(account: String) {
  560. changeAccount(account)
  561. }
  562. func requestAccount() {
  563. if isPasscodePresented() { return }
  564. if !CCUtility.getAccountRequest() { return }
  565. let accounts = NCManageDatabase.shared.getAllAccount()
  566. if accounts.count > 1 {
  567. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  568. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  569. vcAccountRequest.accounts = accounts
  570. vcAccountRequest.enableTimerProgress = true
  571. vcAccountRequest.enableAddAccount = false
  572. vcAccountRequest.dismissDidEnterBackground = false
  573. vcAccountRequest.delegate = self
  574. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  575. let numberCell = accounts.count
  576. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  577. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height+20)
  578. popup.backgroundAlpha = 0.8
  579. window?.rootViewController?.present(popup, animated: true)
  580. vcAccountRequest.startTimer()
  581. }
  582. }
  583. }
  584. // MARK: - Passcode
  585. func presentPasscode(completion: @escaping () -> ()) {
  586. let laContext = LAContext()
  587. var error: NSError?
  588. defer { self.requestAccount() }
  589. let presentedViewController = window?.rootViewController?.presentedViewController
  590. guard !account.isEmpty, CCUtility.isPasscodeAtStartEnabled(), !(presentedViewController is NCLoginNavigationController) else { return }
  591. // Make sure we have a privacy window (in case it's not enabled)
  592. showPrivacyProtectionWindow()
  593. let passcodeViewController = TOPasscodeViewController(passcodeType: .sixDigits, allowCancel: false)
  594. passcodeViewController.delegate = self
  595. passcodeViewController.keypadButtonShowLettering = false
  596. if CCUtility.getEnableTouchFaceID() && laContext.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  597. if error == nil {
  598. if laContext.biometryType == .faceID {
  599. passcodeViewController.biometryType = .faceID
  600. } else if laContext.biometryType == .touchID {
  601. passcodeViewController.biometryType = .touchID
  602. }
  603. passcodeViewController.allowBiometricValidation = true
  604. passcodeViewController.automaticallyPromptForBiometricValidation = false
  605. }
  606. }
  607. // show passcode on top of privacy window
  608. privacyProtectionWindow?.rootViewController?.present(passcodeViewController, animated: true, completion: {
  609. completion()
  610. })
  611. }
  612. func isPasscodePresented() -> Bool {
  613. return privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController
  614. }
  615. func enableTouchFaceID() {
  616. guard !account.isEmpty,
  617. CCUtility.getEnableTouchFaceID(),
  618. CCUtility.isPasscodeAtStartEnabled(),
  619. let passcodeViewController = privacyProtectionWindow?.rootViewController?.presentedViewController as? TOPasscodeViewController
  620. else { return }
  621. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  622. LAContext().evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: NCBrandOptions.shared.brand) { (success, error) in
  623. if success {
  624. DispatchQueue.main.async {
  625. passcodeViewController.dismiss(animated: true) {
  626. self.hidePrivacyProtectionWindow()
  627. self.requestAccount()
  628. }
  629. }
  630. }
  631. }
  632. }
  633. }
  634. func didInputCorrectPasscode(in passcodeViewController: TOPasscodeViewController) {
  635. DispatchQueue.main.async {
  636. passcodeViewController.dismiss(animated: true) {
  637. self.hidePrivacyProtectionWindow()
  638. self.requestAccount()
  639. }
  640. }
  641. }
  642. func passcodeViewController(_ passcodeViewController: TOPasscodeViewController, isCorrectCode code: String) -> Bool {
  643. return code == CCUtility.getPasscode()
  644. }
  645. func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
  646. enableTouchFaceID()
  647. }
  648. // MARK: - Privacy Protection
  649. private func showPrivacyProtectionWindow() {
  650. guard privacyProtectionWindow == nil else {
  651. privacyProtectionWindow?.isHidden = false
  652. return
  653. }
  654. privacyProtectionWindow = UIWindow(frame: UIScreen.main.bounds)
  655. let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil)
  656. let initialViewController = storyboard.instantiateInitialViewController()
  657. self.privacyProtectionWindow?.rootViewController = initialViewController
  658. privacyProtectionWindow?.windowLevel = .alert + 1
  659. privacyProtectionWindow?.makeKeyAndVisible()
  660. }
  661. func hidePrivacyProtectionWindow() {
  662. guard !(privacyProtectionWindow?.rootViewController?.presentedViewController is TOPasscodeViewController) else { return }
  663. UIWindow.animate(withDuration: 0.25) {
  664. self.privacyProtectionWindow?.alpha = 0
  665. } completion: { _ in
  666. self.privacyProtectionWindow?.isHidden = true
  667. self.privacyProtectionWindow = nil
  668. }
  669. }
  670. // MARK: - Universal Links
  671. func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
  672. let applicationHandle = NCApplicationHandle()
  673. return applicationHandle.applicationOpenUserActivity(userActivity)
  674. }
  675. // MARK: - Scheme URL
  676. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  677. let scheme = url.scheme
  678. let action = url.host
  679. var fileName: String = ""
  680. var serverUrl: String = ""
  681. /*
  682. Example:
  683. nextcloud://open-action?action=create-voice-memo&&user=marinofaggiana&url=https://cloud.nextcloud.com
  684. */
  685. if !account.isEmpty && scheme == NCGlobal.shared.appScheme && action == "open-action" {
  686. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  687. let queryItems = urlComponents.queryItems
  688. guard let actionScheme = CCUtility.value(forKey: "action", fromQueryItems: queryItems), let rootViewController = window?.rootViewController else { return false }
  689. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  690. guard let urlScheme = CCUtility.value(forKey: "url", fromQueryItems: queryItems) else { return false }
  691. if getMatchedAccount(userId: userScheme, url: urlScheme) == nil {
  692. let message = String(format: NSLocalizedString("_account_not_exists_", comment: ""), userScheme, urlScheme)
  693. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  694. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  695. window?.rootViewController?.present(alertController, animated: true, completion: { })
  696. return false
  697. }
  698. switch actionScheme {
  699. case NCGlobal.shared.actionUploadAsset:
  700. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: rootViewController) { hasPermission in
  701. if hasPermission {
  702. NCPhotosPickerViewController.init(viewController: rootViewController, maxSelectedAssets: 0, singleSelectedMode: false)
  703. }
  704. }
  705. case NCGlobal.shared.actionScanDocument:
  706. NCDocumentCamera.shared.openScannerDocument(viewController: rootViewController)
  707. case NCGlobal.shared.actionTextDocument:
  708. 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 }
  709. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  710. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  711. viewController.editorId = NCGlobal.shared.editorText
  712. viewController.creatorId = directEditingCreator.identifier
  713. viewController.typeTemplate = NCGlobal.shared.templateDocument
  714. viewController.serverUrl = activeServerUrl
  715. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  716. rootViewController.present(navigationController, animated: true, completion: nil)
  717. case NCGlobal.shared.actionVoiceMemo:
  718. NCAskAuthorization.shared.askAuthorizationAudioRecord(viewController: rootViewController) { hasPermission in
  719. if hasPermission {
  720. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  721. let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as! NCAudioRecorderViewController
  722. viewController.delegate = self
  723. viewController.createRecorder(fileName: fileName)
  724. viewController.modalTransitionStyle = .crossDissolve
  725. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  726. rootViewController.present(viewController, animated: true, completion: nil)
  727. }
  728. }
  729. default:
  730. print("No action")
  731. }
  732. }
  733. return true
  734. }
  735. /*
  736. Example:
  737. nextcloud://open-file?path=Talk/IMG_0000123.jpg&user=marinofaggiana&link=https://cloud.nextcloud.com/f/123
  738. */
  739. else if !account.isEmpty && scheme == NCGlobal.shared.appScheme && action == "open-file" {
  740. if let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) {
  741. let queryItems = urlComponents.queryItems
  742. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  743. guard let pathScheme = CCUtility.value(forKey: "path", fromQueryItems: queryItems) else { return false }
  744. guard let linkScheme = CCUtility.value(forKey: "link", fromQueryItems: queryItems) else { return false }
  745. guard let matchedAccount = getMatchedAccount(userId: userScheme, url: linkScheme) else {
  746. guard let domain = URL(string: linkScheme)?.host else { return true }
  747. fileName = (pathScheme as NSString).lastPathComponent
  748. let message = String(format: NSLocalizedString("_account_not_available_", comment: ""), userScheme, domain, fileName)
  749. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: message, preferredStyle: .alert)
  750. alertController.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in }))
  751. window?.rootViewController?.present(alertController, animated: true, completion: { })
  752. return false
  753. }
  754. let davFiles = NextcloudKit.shared.nkCommonInstance.dav + "/files/" + self.userId
  755. if pathScheme.contains("/") {
  756. fileName = (pathScheme as NSString).lastPathComponent
  757. serverUrl = matchedAccount.urlBase + "/" + davFiles + "/" + (pathScheme as NSString).deletingLastPathComponent
  758. } else {
  759. fileName = pathScheme
  760. serverUrl = matchedAccount.urlBase + "/" + davFiles
  761. }
  762. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  763. NCActionCenter.shared.openFileViewInFolder(serverUrl: serverUrl, fileNameBlink: nil, fileNameOpen: fileName)
  764. }
  765. }
  766. return true
  767. /*
  768. Example:
  769. nextcloud://open-and-switch-account?user=marinofaggiana&url=https://cloud.nextcloud.com
  770. */
  771. } else if !account.isEmpty && scheme == NCGlobal.shared.appScheme && action == "open-and-switch-account" {
  772. guard let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false) else { return false }
  773. let queryItems = urlComponents.queryItems
  774. guard let userScheme = CCUtility.value(forKey: "user", fromQueryItems: queryItems) else { return false }
  775. guard let urlScheme = CCUtility.value(forKey: "url", fromQueryItems: queryItems) else { return false }
  776. // If the account doesn't exist, return false which will open the app without switching
  777. if getMatchedAccount(userId: userScheme, url: urlScheme) == nil {
  778. return false
  779. }
  780. // Otherwise open the app and switch accounts
  781. return true
  782. } else {
  783. let applicationHandle = NCApplicationHandle()
  784. let isHandled = applicationHandle.applicationOpenURL(url)
  785. if isHandled {
  786. return true
  787. } else {
  788. app.open(url)
  789. return true
  790. }
  791. }
  792. }
  793. func getMatchedAccount(userId: String, url: String) -> tableAccount? {
  794. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  795. let urlBase = URL(string: activeAccount.urlBase)
  796. if url.contains(urlBase?.host ?? "") && userId == activeAccount.userId {
  797. return activeAccount
  798. } else {
  799. let accounts = NCManageDatabase.shared.getAllAccount()
  800. for account in accounts {
  801. let urlBase = URL(string: account.urlBase)
  802. if url.contains(urlBase?.host ?? "") && userId == account.userId {
  803. changeAccount(account.account)
  804. return account
  805. }
  806. }
  807. }
  808. }
  809. return nil
  810. }
  811. }
  812. // MARK: - NCAudioRecorder ViewController Delegate
  813. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  814. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  815. guard
  816. let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  817. let viewController = navigationController.topViewController as? NCCreateFormUploadVoiceNote
  818. else { return }
  819. navigationController.modalPresentationStyle = .formSheet
  820. viewController.setup(serverUrl: activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  821. window?.rootViewController?.present(navigationController, animated: true)
  822. }
  823. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  824. }
  825. }
  826. extension AppDelegate: NCCreateFormUploadConflictDelegate {
  827. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  828. guard let metadatas = metadatas, !metadatas.isEmpty else { return }
  829. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: metadatas) { _ in }
  830. }
  831. }