NCFunctionCenter.swift 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  1. //
  2. // NCFunctionCenter.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 19/04/2020.
  6. // Copyright © 2020 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 NCCommunication
  25. import Queuer
  26. import JGProgressHUD
  27. import SVGKit
  28. @objc class NCFunctionCenter: NSObject, UIDocumentInteractionControllerDelegate, NCSelectDelegate {
  29. @objc public static let shared: NCFunctionCenter = {
  30. let instance = NCFunctionCenter()
  31. NotificationCenter.default.addObserver(instance, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  32. NotificationCenter.default.addObserver(instance, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  33. return instance
  34. }()
  35. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  36. var viewerQuickLook: NCViewerQuickLook?
  37. var documentController: UIDocumentInteractionController?
  38. // MARK: - Download
  39. @objc func downloadedFile(_ notification: NSNotification) {
  40. if let userInfo = notification.userInfo as NSDictionary? {
  41. if let ocId = userInfo["ocId"] as? String, let selector = userInfo["selector"] as? String, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  42. if metadata.account != appDelegate.account { return }
  43. if errorCode == 0 {
  44. switch selector {
  45. case NCGlobal.shared.selectorLoadFileQuickLook:
  46. let fileNamePath = NSTemporaryDirectory() + metadata.fileNameView
  47. CCUtility.copyFile(atPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView), toPath: fileNamePath)
  48. var editingMode = false
  49. if #available(iOS 13.0, *) {
  50. editingMode = true
  51. }
  52. let viewerQuickLook = NCViewerQuickLook(with: URL(fileURLWithPath: fileNamePath), editingMode: editingMode, metadata: metadata)
  53. let navigationController = UINavigationController(rootViewController: viewerQuickLook)
  54. navigationController.modalPresentationStyle = .overFullScreen
  55. self.appDelegate.window?.rootViewController?.present(navigationController, animated: true)
  56. case NCGlobal.shared.selectorLoadFileView:
  57. if UIApplication.shared.applicationState == UIApplication.State.active {
  58. if metadata.contentType.contains("opendocument") && !NCUtility.shared.isRichDocument(metadata) {
  59. self.openDocumentController(metadata: metadata)
  60. } else if metadata.classFile == NCCommunicationCommon.typeClassFile.compress.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.unknow.rawValue {
  61. self.openDocumentController(metadata: metadata)
  62. } else {
  63. if let viewController = self.appDelegate.activeViewController {
  64. let imageIcon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  65. NCViewer.shared.view(viewController: viewController, metadata: metadata, metadatas: [metadata], imageIcon: imageIcon)
  66. }
  67. }
  68. }
  69. case NCGlobal.shared.selectorOpenIn:
  70. if UIApplication.shared.applicationState == UIApplication.State.active {
  71. self.openDocumentController(metadata: metadata)
  72. }
  73. case NCGlobal.shared.selectorLoadOffline:
  74. NCManageDatabase.shared.setLocalFile(ocId: metadata.ocId, offline: true)
  75. case NCGlobal.shared.selectorPrint:
  76. printDocument(metadata: metadata)
  77. case NCGlobal.shared.selectorSaveAlbum:
  78. saveAlbum(metadata: metadata)
  79. case NCGlobal.shared.selectorSaveBackground:
  80. saveBackground(metadata: metadata)
  81. case NCGlobal.shared.selectorSaveAlbumLivePhotoIMG, NCGlobal.shared.selectorSaveAlbumLivePhotoMOV:
  82. var metadata = metadata
  83. var metadataMOV = metadata
  84. guard let metadataTMP = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) else { break }
  85. if selector == NCGlobal.shared.selectorSaveAlbumLivePhotoIMG {
  86. metadataMOV = metadataTMP
  87. }
  88. if selector == NCGlobal.shared.selectorSaveAlbumLivePhotoMOV {
  89. metadata = metadataTMP
  90. }
  91. if CCUtility.fileProviderStorageExists(metadata) && CCUtility.fileProviderStorageExists(metadataMOV) {
  92. saveLivePhotoToDisk(metadata: metadata, metadataMov: metadataMOV)
  93. }
  94. case NCGlobal.shared.selectorSaveAsScan:
  95. saveAsScan(metadata: metadata)
  96. case NCGlobal.shared.selectorOpenDetail:
  97. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterOpenMediaDetail, userInfo: ["ocId": metadata.ocId])
  98. default:
  99. break
  100. }
  101. } else {
  102. // File do not exists on server, remove in local
  103. if errorCode == NCGlobal.shared.errorResourceNotFound || errorCode == NCGlobal.shared.errorBadServerResponse {
  104. do {
  105. try FileManager.default.removeItem(atPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId))
  106. } catch { }
  107. NCManageDatabase.shared.deleteMetadata(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  108. NCManageDatabase.shared.deleteLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  109. } else {
  110. NCContentPresenter.shared.messageNotification("_download_file_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode, priority: .max)
  111. }
  112. }
  113. }
  114. }
  115. }
  116. // MARK: - Upload
  117. @objc func uploadedFile(_ notification: NSNotification) {
  118. if let userInfo = notification.userInfo as NSDictionary? {
  119. if let ocId = userInfo["ocId"] as? String, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  120. if metadata.account == appDelegate.account {
  121. if errorCode != 0 {
  122. if errorCode != -999 && errorDescription != "" {
  123. NCContentPresenter.shared.messageNotification("_upload_file_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode, priority: .max)
  124. }
  125. }
  126. }
  127. }
  128. }
  129. }
  130. // MARK: -
  131. func openShare(viewController: UIViewController, metadata: tableMetadata, indexPage: NCGlobal.NCSharePagingIndex) {
  132. let shareNavigationController = UIStoryboard(name: "NCShare", bundle: nil).instantiateInitialViewController() as! UINavigationController
  133. let shareViewController = shareNavigationController.topViewController as! NCSharePaging
  134. shareViewController.metadata = metadata
  135. shareViewController.indexPage = indexPage
  136. shareNavigationController.modalPresentationStyle = .formSheet
  137. viewController.present(shareNavigationController, animated: true, completion: nil)
  138. }
  139. // MARK: -
  140. func openDownload(metadata: tableMetadata, selector: String) {
  141. if CCUtility.fileProviderStorageExists(metadata) {
  142. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDownloadedFile, userInfo: ["ocId": metadata.ocId, "selector": selector, "errorCode": 0, "errorDescription": "" ])
  143. } else {
  144. NCNetworking.shared.download(metadata: metadata, selector: selector) { _ in }
  145. }
  146. }
  147. // MARK: - Open in ...
  148. func openDocumentController(metadata: tableMetadata) {
  149. guard let mainTabBar = self.appDelegate.mainTabBar else { return }
  150. let fileURL = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView))
  151. documentController = UIDocumentInteractionController(url: fileURL)
  152. documentController?.presentOptionsMenu(from: mainTabBar.menuRect, in: mainTabBar, animated: true)
  153. }
  154. func openActivityViewController(selectedMetadata: [tableMetadata]) {
  155. NCUtility.shared.startActivityIndicator(backgroundView: nil, blurEffect: true)
  156. var error: Int = 0
  157. var items: [Any] = []
  158. for metadata in selectedMetadata {
  159. guard !metadata.directory else { continue }
  160. if !CCUtility.fileProviderStorageExists(metadata) {
  161. let semaphore = Semaphore()
  162. NCNetworking.shared.download(metadata: metadata, selector: "") { errorCode in
  163. error = errorCode
  164. semaphore.continue()
  165. }
  166. semaphore.wait()
  167. }
  168. if error != 0 {
  169. break
  170. }
  171. let fileURL = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView))
  172. items.append(fileURL)
  173. }
  174. if error == 0 && items.count > 0 {
  175. guard let mainTabBar = self.appDelegate.mainTabBar else { return }
  176. let activityViewController = UIActivityViewController(activityItems: items, applicationActivities: nil)
  177. activityViewController.popoverPresentationController?.permittedArrowDirections = .any
  178. activityViewController.popoverPresentationController?.sourceView = mainTabBar
  179. activityViewController.popoverPresentationController?.sourceRect = mainTabBar.menuRect
  180. self.appDelegate.window?.rootViewController?.present(activityViewController, animated: true)
  181. }
  182. NCUtility.shared.stopActivityIndicator()
  183. }
  184. // MARK: - Save as scan
  185. func saveAsScan(metadata: tableMetadata) {
  186. let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  187. let fileNameDestination = CCUtility.createFileName("scan.png", fileDate: Date(), fileType: PHAssetMediaType.image, keyFileName: NCGlobal.shared.keyFileNameMask, keyFileNameType: NCGlobal.shared.keyFileNameType, keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal, forcedNewFileName: true)!
  188. let fileNamePathDestination = CCUtility.getDirectoryScan() + "/" + fileNameDestination
  189. NCUtilityFileSystem.shared.copyFile(atPath: fileNamePath, toPath: fileNamePathDestination)
  190. let storyboard = UIStoryboard(name: "NCScan", bundle: nil)
  191. let navigationController = storyboard.instantiateInitialViewController()!
  192. navigationController.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  193. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  194. }
  195. // MARK: - Print
  196. func printDocument(metadata: tableMetadata) {
  197. let fileNameURL = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!)
  198. let printController = UIPrintInteractionController.shared
  199. let printInfo = UIPrintInfo(dictionary: nil)
  200. printInfo.jobName = fileNameURL.lastPathComponent
  201. printInfo.outputType = metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue ? .photo : .general
  202. printController.printInfo = printInfo
  203. printController.showsNumberOfCopies = true
  204. guard !UIPrintInteractionController.canPrint(fileNameURL) else {
  205. printController.printingItem = fileNameURL
  206. printController.present(animated: true)
  207. return
  208. }
  209. // can't print without data
  210. guard let data = try? Data(contentsOf: fileNameURL) else { return }
  211. if let svg = SVGKImage(data: data) {
  212. printController.printingItem = svg.uiImage
  213. printController.present(animated: true)
  214. return
  215. }
  216. guard let text = String(data: data, encoding: .utf8) else { return }
  217. let textWithoutNewlines = text.replacingOccurrences(of: "\n", with: "<br />")
  218. let formatter = UIMarkupTextPrintFormatter(markupText: textWithoutNewlines)
  219. formatter.perPageContentInsets.top = 72
  220. formatter.perPageContentInsets.bottom = 72
  221. formatter.perPageContentInsets.left = 72
  222. formatter.perPageContentInsets.right = 72
  223. printController.printFormatter = formatter
  224. printController.present(animated: true)
  225. }
  226. // MARK: - Save photo
  227. func saveAlbum(metadata: tableMetadata) {
  228. let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  229. let status = PHPhotoLibrary.authorizationStatus()
  230. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && status == PHAuthorizationStatus.authorized {
  231. if let image = UIImage(contentsOfFile: fileNamePath) {
  232. UIImageWriteToSavedPhotosAlbum(image, self, #selector(saveAlbum(_:didFinishSavingWithError:contextInfo:)), nil)
  233. } else {
  234. NCContentPresenter.shared.messageNotification("_save_selected_files_", description: "_file_not_saved_cameraroll_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorFileNotSaved)
  235. }
  236. } else if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue && status == PHAuthorizationStatus.authorized {
  237. if UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath) {
  238. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, #selector(saveAlbum(_:didFinishSavingWithError:contextInfo:)), nil)
  239. } else {
  240. NCContentPresenter.shared.messageNotification("_save_selected_files_", description: "_file_not_saved_cameraroll_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorFileNotSaved)
  241. }
  242. } else if status != PHAuthorizationStatus.authorized {
  243. NCContentPresenter.shared.messageNotification("_access_photo_not_enabled_", description: "_access_photo_not_enabled_msg_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorFileNotSaved)
  244. }
  245. }
  246. @objc private func saveAlbum(_ image: UIImage, didFinishSavingWithError error: Error?, contextInfo: UnsafeRawPointer) {
  247. if error != nil {
  248. NCContentPresenter.shared.messageNotification("_save_selected_files_", description: "_file_not_saved_cameraroll_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorFileNotSaved)
  249. }
  250. }
  251. func saveLivePhoto(metadata: tableMetadata, metadataMOV: tableMetadata) {
  252. if !CCUtility.fileProviderStorageExists(metadata) {
  253. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbumLivePhotoIMG)
  254. }
  255. if !CCUtility.fileProviderStorageExists(metadataMOV) {
  256. NCOperationQueue.shared.download(metadata: metadataMOV, selector: NCGlobal.shared.selectorSaveAlbumLivePhotoMOV)
  257. }
  258. if CCUtility.fileProviderStorageExists(metadata) && CCUtility.fileProviderStorageExists(metadataMOV) {
  259. saveLivePhotoToDisk(metadata: metadata, metadataMov: metadataMOV)
  260. }
  261. }
  262. func saveLivePhotoToDisk(metadata: tableMetadata, metadataMov: tableMetadata) {
  263. let fileNameImage = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!)
  264. let fileNameMov = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadataMov.ocId, fileNameView: metadataMov.fileNameView)!)
  265. let hud = JGProgressHUD()
  266. hud.indicatorView = JGProgressHUDRingIndicatorView()
  267. if let indicatorView = hud.indicatorView as? JGProgressHUDRingIndicatorView {
  268. indicatorView.ringWidth = 1.5
  269. }
  270. hud.show(in: (appDelegate.window?.rootViewController?.view)!)
  271. hud.textLabel.text = NSLocalizedString("_saving_", comment: "")
  272. NCLivePhoto.generate(from: fileNameImage, videoURL: fileNameMov, progress: { progress in
  273. hud.progress = Float(progress)
  274. }, completion: { _, resources in
  275. if resources != nil {
  276. NCLivePhoto.saveToLibrary(resources!) { result in
  277. DispatchQueue.main.async {
  278. if !result {
  279. hud.indicatorView = JGProgressHUDErrorIndicatorView()
  280. hud.textLabel.text = NSLocalizedString("_livephoto_save_error_", comment: "")
  281. } else {
  282. hud.indicatorView = JGProgressHUDSuccessIndicatorView()
  283. hud.textLabel.text = NSLocalizedString("_success_", comment: "")
  284. }
  285. hud.dismiss(afterDelay: 1)
  286. }
  287. }
  288. } else {
  289. hud.indicatorView = JGProgressHUDErrorIndicatorView()
  290. hud.textLabel.text = NSLocalizedString("_livephoto_save_error_", comment: "")
  291. hud.dismiss(afterDelay: 1)
  292. }
  293. })
  294. }
  295. func saveBackground(metadata: tableMetadata) {
  296. let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  297. let destination = CCUtility.getDirectoryGroup().appendingPathComponent(NCGlobal.shared.appBackground).path + "/" + metadata.fileNameView
  298. if NCUtilityFileSystem.shared.copyFile(atPath: fileNamePath, toPath: destination) {
  299. if appDelegate.activeViewController is NCCollectionViewCommon {
  300. let viewController: NCCollectionViewCommon = appDelegate.activeViewController as! NCCollectionViewCommon
  301. let layoutKey = viewController.layoutKey
  302. let serverUrl = viewController.serverUrl
  303. if serverUrl == metadata.serverUrl {
  304. NCUtility.shared.setBackgroundImageForView(key: layoutKey, serverUrl: serverUrl, imageBackgroud: metadata.fileNameView, imageBackgroudContentMode: "")
  305. viewController.changeTheming()
  306. }
  307. }
  308. }
  309. }
  310. // MARK: - Copy & Paste
  311. func copyPasteboard(pasteboardOcIds: [String], hudView: UIView) {
  312. var items = [[String: Any]]()
  313. let hud = JGProgressHUD()
  314. hud.textLabel.text = NSLocalizedString("_wait_", comment: "")
  315. hud.show(in: hudView)
  316. // getting file data can take some time and block the main queue
  317. DispatchQueue.global(qos: .userInitiated).async {
  318. var downloadMetadatas: [tableMetadata] = []
  319. for ocid in pasteboardOcIds {
  320. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocid) else { continue }
  321. if let pasteboardItem = metadata.toPasteBoardItem() { items.append(pasteboardItem) }
  322. else { downloadMetadatas.append(metadata) }
  323. }
  324. DispatchQueue.main.async(execute: hud.dismiss)
  325. // do 5 downloads in parallel to optimize efficiency
  326. let parallelizer = ParallelWorker(n: 5, titleKey: "_downloading_", totalTasks: downloadMetadatas.count, hudView: hudView)
  327. for metadata in downloadMetadatas {
  328. parallelizer.execute { completion in
  329. NCNetworking.shared.download(metadata: metadata, selector: "") { _ in completion() }
  330. }
  331. }
  332. parallelizer.completeWork {
  333. items.append(contentsOf: downloadMetadatas.compactMap({ $0.toPasteBoardItem() }))
  334. UIPasteboard.general.setItems(items, options: [:])
  335. }
  336. }
  337. }
  338. func upload(fileName: String, serverUrlFileName: String, fileNameLocalPath: String, serverUrl: String, completion: @escaping () -> Void) {
  339. NCCommunication.shared.upload(serverUrlFileName: serverUrlFileName, fileNameLocalPath: fileNameLocalPath) { _ in
  340. } progressHandler: { progress in
  341. } completionHandler: { account, ocId, etag, _, _, _, errorCode, errorDescription in
  342. if errorCode == 0 && etag != nil && ocId != nil {
  343. let toPath = CCUtility.getDirectoryProviderStorageOcId(ocId!, fileNameView: fileName)!
  344. NCUtilityFileSystem.shared.moveFile(atPath: fileNameLocalPath, toPath: toPath)
  345. NCManageDatabase.shared.addLocalFile(account: account, etag: etag!, ocId: ocId!, fileName: fileName)
  346. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced, userInfo: ["serverUrl": serverUrl])
  347. } else {
  348. NCContentPresenter.shared.showError(description: errorDescription, errorCode: errorCode)
  349. }
  350. completion()
  351. }
  352. }
  353. func pastePasteboard(serverUrl: String) {
  354. let parallelizer = ParallelWorker(n: 5, titleKey: "_uploading_", totalTasks: nil, hudView: appDelegate.window?.rootViewController?.view)
  355. for (index, items) in UIPasteboard.general.items.enumerated() {
  356. for item in items {
  357. let results = NCCommunicationCommon.shared.getFileProperties(inUTI: item.key as CFString)
  358. guard !results.ext.isEmpty,
  359. let data = UIPasteboard.general.data(forPasteboardType: item.key, inItemSet: IndexSet([index]))?.first
  360. else { continue }
  361. let fileName = results.name + "_" + CCUtility.getIncrementalNumber() + "." + results.ext
  362. let serverUrlFileName = serverUrl + "/" + fileName
  363. let ocIdUpload = UUID().uuidString
  364. let fileNameLocalPath = CCUtility.getDirectoryProviderStorageOcId(ocIdUpload, fileNameView: fileName)!
  365. do { try data.write(to: URL(fileURLWithPath: fileNameLocalPath)) } catch { continue }
  366. parallelizer.execute { completion in
  367. self.upload(fileName: fileName, serverUrlFileName: serverUrlFileName, fileNameLocalPath: fileNameLocalPath, serverUrl: serverUrl, completion: completion)
  368. }
  369. }
  370. }
  371. parallelizer.completeWork()
  372. }
  373. // MARK: -
  374. func openFileViewInFolder(serverUrl: String, fileName: String) {
  375. let viewController = UIStoryboard(name: "NCFileViewInFolder", bundle: nil).instantiateInitialViewController() as! NCFileViewInFolder
  376. let navigationController = UINavigationController(rootViewController: viewController)
  377. let topViewController = viewController
  378. var listViewController = [NCFileViewInFolder]()
  379. var serverUrl = serverUrl
  380. let homeUrl = NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account)
  381. while true {
  382. var viewController: NCFileViewInFolder?
  383. if serverUrl != homeUrl {
  384. viewController = UIStoryboard(name: "NCFileViewInFolder", bundle: nil).instantiateInitialViewController() as? NCFileViewInFolder
  385. if viewController == nil {
  386. return
  387. }
  388. viewController!.titleCurrentFolder = (serverUrl as NSString).lastPathComponent
  389. } else {
  390. viewController = topViewController
  391. }
  392. guard let vc = viewController else { return }
  393. vc.serverUrl = serverUrl
  394. vc.fileName = fileName
  395. vc.navigationItem.backButtonTitle = vc.titleCurrentFolder
  396. listViewController.insert(vc, at: 0)
  397. if serverUrl != homeUrl {
  398. serverUrl = NCUtilityFileSystem.shared.deletingLastPathComponent(account: appDelegate.account, serverUrl: serverUrl)
  399. } else {
  400. break
  401. }
  402. }
  403. navigationController.setViewControllers(listViewController, animated: false)
  404. navigationController.modalPresentationStyle = .formSheet
  405. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  406. }
  407. // MARK: - NCSelect + Delegate
  408. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], overwrite: Bool, copy: Bool, move: Bool) {
  409. if serverUrl != nil && items.count > 0 {
  410. if copy {
  411. for metadata in items as! [tableMetadata] {
  412. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: false)
  413. }
  414. } else if move {
  415. for metadata in items as! [tableMetadata] {
  416. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: true)
  417. }
  418. }
  419. }
  420. }
  421. func openSelectView(items: [Any]) {
  422. let navigationController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
  423. let topViewController = navigationController.topViewController as! NCSelect
  424. var listViewController = [NCSelect]()
  425. var copyItems: [Any] = []
  426. for item in items {
  427. copyItems.append(item)
  428. }
  429. let homeUrl = NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account)
  430. var serverUrl = (copyItems[0] as! Nextcloud.tableMetadata).serverUrl
  431. // Setup view controllers such that the current view is of the same directory the items to be copied are in
  432. while true {
  433. // If not in the topmost directory, create a new view controller and set correct title.
  434. // If in the topmost directory, use the default view controller as the base.
  435. var viewController: NCSelect?
  436. if serverUrl != homeUrl {
  437. viewController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateViewController(withIdentifier: "NCSelect.storyboard") as? NCSelect
  438. if viewController == nil {
  439. return
  440. }
  441. viewController!.titleCurrentFolder = (serverUrl as NSString).lastPathComponent
  442. } else {
  443. viewController = topViewController
  444. }
  445. guard let vc = viewController else { return }
  446. vc.delegate = self
  447. vc.typeOfCommandView = .copyMove
  448. vc.items = copyItems
  449. vc.serverUrl = serverUrl
  450. vc.navigationItem.backButtonTitle = vc.titleCurrentFolder
  451. listViewController.insert(vc, at: 0)
  452. if serverUrl != homeUrl {
  453. serverUrl = NCUtilityFileSystem.shared.deletingLastPathComponent(account: appDelegate.account, serverUrl: serverUrl)
  454. } else {
  455. break
  456. }
  457. }
  458. navigationController.setViewControllers(listViewController, animated: false)
  459. navigationController.modalPresentationStyle = .formSheet
  460. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  461. }
  462. // MARK: - Context Menu Configuration
  463. @available(iOS 13.0, *)
  464. func contextMenuConfiguration(ocId: String, viewController: UIViewController, enableDeleteLocal: Bool, enableViewInFolder: Bool, image: UIImage?) -> UIMenu {
  465. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) else {
  466. return UIMenu()
  467. }
  468. let isFolderEncrypted = CCUtility.isFolderEncrypted(metadata.serverUrl, e2eEncrypted: metadata.e2eEncrypted, account: metadata.account, urlBase: metadata.urlBase)
  469. var titleDeleteConfirmFile = NSLocalizedString("_delete_file_", comment: "")
  470. if metadata.directory { titleDeleteConfirmFile = NSLocalizedString("_delete_folder_", comment: "") }
  471. var titleSave: String = NSLocalizedString("_save_selected_files_", comment: "")
  472. let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata)
  473. if metadataMOV != nil {
  474. titleSave = NSLocalizedString("_livephoto_save_", comment: "")
  475. }
  476. let titleFavorite = metadata.favorite ? NSLocalizedString("_remove_favorites_", comment: "") : NSLocalizedString("_add_favorites_", comment: "")
  477. let serverUrl = metadata.serverUrl + "/" + metadata.fileName
  478. var isOffline = false
  479. if metadata.directory {
  480. if let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl)) {
  481. isOffline = directory.offline
  482. }
  483. } else {
  484. if let localFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId)) {
  485. isOffline = localFile.offline
  486. }
  487. }
  488. let titleOffline = isOffline ? NSLocalizedString("_remove_available_offline_", comment: "") : NSLocalizedString("_set_available_offline_", comment: "")
  489. let copy = UIAction(title: NSLocalizedString("_copy_file_", comment: ""), image: UIImage(systemName: "doc.on.doc")) { _ in
  490. self.copyPasteboard(pasteboardOcIds: [metadata.ocId], hudView: viewController.view)
  491. }
  492. let copyPath = UIAction(title: NSLocalizedString("_copy_path_", comment: ""), image: UIImage(systemName: "doc.on.clipboard")) { _ in
  493. let board = UIPasteboard.general
  494. board.string = NCUtilityFileSystem.shared.getPath(metadata: metadata)
  495. NCContentPresenter.shared.messageNotification("", description: "_copied_path_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.info, errorCode: NCGlobal.shared.errorNoError)
  496. }
  497. let detail = UIAction(title: NSLocalizedString("_details_", comment: ""), image: UIImage(systemName: "info")) { _ in
  498. self.openShare(viewController: viewController, metadata: metadata, indexPage: .activity)
  499. }
  500. let offline = UIAction(title: titleOffline, image: UIImage(systemName: "tray.and.arrow.down")) { _ in
  501. if isOffline {
  502. if metadata.directory {
  503. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, offline: false, account: self.appDelegate.account)
  504. } else {
  505. NCManageDatabase.shared.setLocalFile(ocId: metadata.ocId, offline: false)
  506. }
  507. } else {
  508. if metadata.directory {
  509. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, offline: true, account: self.appDelegate.account)
  510. NCOperationQueue.shared.synchronizationMetadata(metadata, selector: NCGlobal.shared.selectorDownloadAllFile)
  511. } else {
  512. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorLoadOffline) { _ in }
  513. if let metadataLivePhoto = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) {
  514. NCNetworking.shared.download(metadata: metadataLivePhoto, selector: NCGlobal.shared.selectorLoadOffline) { _ in }
  515. }
  516. }
  517. }
  518. if viewController is NCCollectionViewCommon {
  519. (viewController as! NCCollectionViewCommon).reloadDataSource()
  520. }
  521. }
  522. let save = UIAction(title: titleSave, image: UIImage(systemName: "square.and.arrow.down")) { _ in
  523. if metadataMOV != nil {
  524. self.saveLivePhoto(metadata: metadata, metadataMOV: metadataMOV!)
  525. } else {
  526. if CCUtility.fileProviderStorageExists(metadata) {
  527. self.saveAlbum(metadata: metadata)
  528. } else {
  529. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum)
  530. }
  531. }
  532. }
  533. let saveBackground = UIAction(title: NSLocalizedString("_use_as_background_", comment: ""), image: UIImage(systemName: "text.below.photo")) { _ in
  534. if CCUtility.fileProviderStorageExists(metadata) {
  535. self.saveBackground(metadata: metadata)
  536. } else {
  537. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveBackground)
  538. }
  539. }
  540. let viewInFolder = UIAction(title: NSLocalizedString("_view_in_folder_", comment: ""), image: UIImage(systemName: "arrow.forward.square")) { _ in
  541. self.openFileViewInFolder(serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  542. }
  543. let openIn = UIAction(title: NSLocalizedString("_open_in_", comment: ""), image: UIImage(systemName: "square.and.arrow.up") ) { _ in
  544. self.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorOpenIn)
  545. }
  546. let print = UIAction(title: NSLocalizedString("_print_", comment: ""), image: UIImage(systemName: "printer") ) { _ in
  547. self.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorPrint)
  548. }
  549. let modify = UIAction(title: NSLocalizedString("_modify_", comment: ""), image: UIImage(systemName: "pencil.tip.crop.circle")) { _ in
  550. self.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorLoadFileQuickLook)
  551. }
  552. let saveAsScan = UIAction(title: NSLocalizedString("_save_as_scan_", comment: ""), image: UIImage(systemName: "viewfinder.circle")) { _ in
  553. self.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorSaveAsScan)
  554. }
  555. // let open = UIMenu(title: NSLocalizedString("_open_", comment: ""), image: UIImage(systemName: "square.and.arrow.up"), children: [openIn, openQuickLook])
  556. let moveCopy = UIAction(title: NSLocalizedString("_move_or_copy_", comment: ""), image: UIImage(systemName: "arrow.up.right.square")) { _ in
  557. self.openSelectView(items: [metadata])
  558. }
  559. let rename = UIAction(title: NSLocalizedString("_rename_", comment: ""), image: UIImage(systemName: "pencil")) { _ in
  560. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  561. vcRename.metadata = metadata
  562. vcRename.imagePreview = image
  563. let popup = NCPopupViewController(contentController: vcRename, popupWidth: vcRename.width, popupHeight: vcRename.height)
  564. viewController.present(popup, animated: true)
  565. }
  566. }
  567. let favorite = UIAction(title: titleFavorite, image: NCUtility.shared.loadImage(named: "star.fill", color: NCBrandColor.shared.yellowFavorite)) { _ in
  568. NCNetworking.shared.favoriteMetadata(metadata) { errorCode, errorDescription in
  569. if errorCode != 0 {
  570. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  571. }
  572. }
  573. }
  574. let deleteConfirmFile = UIAction(title: titleDeleteConfirmFile, image: UIImage(systemName: "trash"), attributes: .destructive) { _ in
  575. NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false) { errorCode, errorDescription in
  576. if errorCode != 0 {
  577. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  578. }
  579. }
  580. }
  581. let deleteConfirmLocal = UIAction(title: NSLocalizedString("_remove_local_file_", comment: ""), image: UIImage(systemName: "trash"), attributes: .destructive) { _ in
  582. NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: true) { _, _ in
  583. }
  584. }
  585. var delete = UIMenu(title: NSLocalizedString("_delete_file_", comment: ""), image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirmLocal, deleteConfirmFile])
  586. if !enableDeleteLocal {
  587. delete = UIMenu(title: NSLocalizedString("_delete_file_", comment: ""), image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirmFile])
  588. }
  589. if metadata.directory {
  590. delete = UIMenu(title: NSLocalizedString("_delete_folder_", comment: ""), image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirmFile])
  591. }
  592. // ------ MENU -----
  593. // DIR
  594. if metadata.directory {
  595. let submenu = UIMenu(title: "", options: .displayInline, children: [favorite, offline, rename, moveCopy, copyPath, delete])
  596. return UIMenu(title: "", children: [detail, submenu])
  597. }
  598. // FILE
  599. var children: [UIMenuElement] = [favorite, offline, openIn, rename, moveCopy, copy, copyPath, delete]
  600. if (metadata.contentType != "image/svg+xml") && (metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue) {
  601. children.insert(save, at: 2)
  602. }
  603. if (metadata.contentType != "image/svg+xml") && (metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue) {
  604. children.insert(saveAsScan, at: 2)
  605. }
  606. if (metadata.contentType != "image/svg+xml") && (metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.contentType == "application/pdf" || metadata.contentType == "com.adobe.pdf") {
  607. children.insert(print, at: 2)
  608. }
  609. if enableViewInFolder {
  610. children.insert(viewInFolder, at: children.count-1)
  611. }
  612. if (!isFolderEncrypted && metadata.contentType != "image/gif" && metadata.contentType != "image/svg+xml") && (metadata.contentType == "com.adobe.pdf" || metadata.contentType == "application/pdf" || metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue) {
  613. children.insert(modify, at: children.count-1)
  614. }
  615. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && viewController is NCCollectionViewCommon && !NCBrandOptions.shared.disable_background_image {
  616. let viewController: NCCollectionViewCommon = viewController as! NCCollectionViewCommon
  617. let layoutKey = viewController.layoutKey
  618. if layoutKey == NCGlobal.shared.layoutViewFiles {
  619. children.insert(saveBackground, at: children.count-1)
  620. }
  621. }
  622. let submenu = UIMenu(title: "", options: .displayInline, children: children)
  623. return UIMenu(title: "", children: [detail, submenu])
  624. }
  625. }
  626. fileprivate extension tableMetadata {
  627. func toPasteBoardItem() -> [String: Any]? {
  628. // Get Data
  629. let fileUrl = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView))
  630. guard CCUtility.fileProviderStorageExists(self),
  631. let data = try? Data(contentsOf: fileUrl),
  632. let unmanagedFileUTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, fileExtension as CFString, nil)
  633. else { return nil }
  634. // Pasteboard item
  635. let fileUTI = unmanagedFileUTI.takeRetainedValue() as String
  636. return [fileUTI: data]
  637. }
  638. }