AppDelegate.swift 47 KB

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