AppDelegate.swift 47 KB

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