NCContextMenu.swift 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. //
  2. // NCContextMenu.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 10/01/23.
  6. // Copyright © 2023 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 Foundation
  24. import Alamofire
  25. import NextcloudKit
  26. import JGProgressHUD
  27. class NCContextMenu: NSObject {
  28. let utilityFileSystem = NCUtilityFileSystem()
  29. let utility = NCUtility()
  30. func viewMenu(ocId: String, indexPath: IndexPath, viewController: UIViewController, image: UIImage?) -> UIMenu {
  31. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) else { return UIMenu() }
  32. var downloadRequest: DownloadRequest?
  33. var titleDeleteConfirmFile = NSLocalizedString("_delete_file_", comment: "")
  34. var titleSave: String = NSLocalizedString("_save_selected_files_", comment: "")
  35. let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata)
  36. if metadata.directory { titleDeleteConfirmFile = NSLocalizedString("_delete_folder_", comment: "") }
  37. if metadataMOV != nil { titleSave = NSLocalizedString("_livephoto_save_", comment: "") }
  38. let hud = JGProgressHUD()
  39. hud.indicatorView = JGProgressHUDRingIndicatorView()
  40. hud.textLabel.text = NSLocalizedString("_downloading_", comment: "")
  41. hud.detailTextLabel.text = NSLocalizedString("_tap_to_cancel_", comment: "")
  42. if let indicatorView = hud.indicatorView as? JGProgressHUDRingIndicatorView { indicatorView.ringWidth = 1.5 }
  43. hud.tapOnHUDViewBlock = { _ in
  44. if let request = downloadRequest {
  45. request.cancel()
  46. }
  47. }
  48. // MENU ITEMS
  49. let detail = UIAction(title: NSLocalizedString("_details_", comment: ""),
  50. image: UIImage(systemName: "info")) { _ in
  51. NCActionCenter.shared.openShare(viewController: viewController, metadata: metadata, page: .activity)
  52. }
  53. let favorite = UIAction(title: metadata.favorite ?
  54. NSLocalizedString("_remove_favorites_", comment: "") :
  55. NSLocalizedString("_add_favorites_", comment: ""),
  56. image: utility.loadImage(named: "star.fill", color: NCBrandColor.shared.yellowFavorite)) { _ in
  57. NCNetworking.shared.favoriteMetadata(metadata) { error in
  58. if error != .success {
  59. NCContentPresenter().showError(error: error)
  60. }
  61. }
  62. }
  63. let openIn = UIAction(title: NSLocalizedString("_open_in_", comment: ""),
  64. image: UIImage(systemName: "square.and.arrow.up") ) { _ in
  65. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  66. NotificationCenter.default.post(
  67. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  68. object: nil,
  69. userInfo: ["ocId": metadata.ocId,
  70. "selector": NCGlobal.shared.selectorOpenIn,
  71. "error": NKError(),
  72. "account": metadata.account])
  73. } else {
  74. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorOpenIn) else { return }
  75. hud.show(in: viewController.view)
  76. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: false) {
  77. } requestHandler: { request in
  78. downloadRequest = request
  79. } progressHandler: { progress in
  80. hud.progress = Float(progress.fractionCompleted)
  81. } completion: { afError, error in
  82. if error == .success || afError?.isExplicitlyCancelledError ?? false {
  83. hud.dismiss()
  84. } else {
  85. hud.indicatorView = JGProgressHUDErrorIndicatorView()
  86. hud.textLabel.text = error.description
  87. hud.dismiss(afterDelay: NCGlobal.shared.dismissAfterSecond)
  88. }
  89. }
  90. }
  91. }
  92. let viewInFolder = UIAction(title: NSLocalizedString("_view_in_folder_", comment: ""),
  93. image: UIImage(systemName: "questionmark.folder")) { _ in
  94. NCActionCenter.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileNameBlink: metadata.fileName, fileNameOpen: nil)
  95. }
  96. let save = UIAction(title: titleSave,
  97. image: UIImage(systemName: "square.and.arrow.down")) { _ in
  98. if let metadataMOV = metadataMOV {
  99. NCNetworking.shared.saveLivePhotoQueue.addOperation(NCOperationSaveLivePhoto(metadata: metadata, metadataMOV: metadataMOV))
  100. } else {
  101. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  102. NCActionCenter.shared.saveAlbum(metadata: metadata)
  103. } else {
  104. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorSaveAlbum) else { return }
  105. hud.show(in: viewController.view)
  106. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: false) {
  107. } requestHandler: { request in
  108. downloadRequest = request
  109. } progressHandler: { progress in
  110. hud.progress = Float(progress.fractionCompleted)
  111. } completion: { afError, error in
  112. if error == .success || afError?.isExplicitlyCancelledError ?? false {
  113. hud.dismiss()
  114. } else {
  115. hud.indicatorView = JGProgressHUDErrorIndicatorView()
  116. hud.textLabel.text = error.description
  117. hud.dismiss(afterDelay: NCGlobal.shared.dismissAfterSecond)
  118. }
  119. }
  120. }
  121. }
  122. }
  123. let modify = UIAction(title: NSLocalizedString("_modify_", comment: ""),
  124. image: UIImage(systemName: "pencil.tip.crop.circle")) { _ in
  125. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  126. NotificationCenter.default.post(
  127. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  128. object: nil,
  129. userInfo: ["ocId": metadata.ocId,
  130. "selector": NCGlobal.shared.selectorLoadFileQuickLook,
  131. "error": NKError(),
  132. "account": metadata.account])
  133. } else {
  134. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorLoadFileQuickLook) else { return }
  135. hud.show(in: viewController.view)
  136. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: false) {
  137. } requestHandler: { request in
  138. downloadRequest = request
  139. } progressHandler: { progress in
  140. hud.progress = Float(progress.fractionCompleted)
  141. } completion: { afError, error in
  142. if error == .success || afError?.isExplicitlyCancelledError ?? false {
  143. hud.dismiss()
  144. } else {
  145. hud.indicatorView = JGProgressHUDErrorIndicatorView()
  146. hud.textLabel.text = error.description
  147. hud.dismiss(afterDelay: NCGlobal.shared.dismissAfterSecond)
  148. }
  149. }
  150. }
  151. }
  152. let deleteConfirmFile = UIAction(title: titleDeleteConfirmFile,
  153. image: UIImage(systemName: "trash"), attributes: .destructive) { _ in
  154. var alertStyle = UIAlertController.Style.actionSheet
  155. if UIDevice.current.userInterfaceIdiom == .pad {
  156. alertStyle = .alert
  157. }
  158. let alertController = UIAlertController(title: nil, message: nil, preferredStyle: alertStyle)
  159. alertController.addAction(UIAlertAction(title: NSLocalizedString("_delete_file_", comment: ""), style: .destructive) { _ in
  160. Task {
  161. var ocId: [String] = []
  162. let error = await NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false)
  163. if error == .success {
  164. ocId.append(metadata.ocId)
  165. } else {
  166. NCContentPresenter().showError(error: error)
  167. }
  168. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDeleteFile, userInfo: ["ocId": ocId, "indexPath": [indexPath], "onlyLocalCache": false, "error": error])
  169. }
  170. })
  171. alertController.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel) { _ in })
  172. viewController.present(alertController, animated: true, completion: nil)
  173. }
  174. let deleteConfirmLocal = UIAction(title: NSLocalizedString("_remove_local_file_", comment: ""),
  175. image: UIImage(systemName: "trash"), attributes: .destructive) { _ in
  176. Task {
  177. var ocId: [String] = []
  178. let error = await NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: true)
  179. if error == .success {
  180. ocId.append(metadata.ocId)
  181. } else {
  182. NCContentPresenter().showError(error: error)
  183. }
  184. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDeleteFile, userInfo: ["ocId": ocId, "indexPath": [indexPath], "onlyLocalCache": true, "error": error])
  185. }
  186. }
  187. let deleteSubMenu = UIMenu(title: NSLocalizedString("_delete_file_", comment: ""),
  188. image: UIImage(systemName: "trash"),
  189. options: .destructive,
  190. children: [deleteConfirmLocal, deleteConfirmFile])
  191. // ------ MENU -----
  192. var menu: [UIMenuElement] = []
  193. if metadata.directory {
  194. if metadata.isDirectoryE2EE || metadata.e2eEncrypted {
  195. menu.append(favorite)
  196. } else {
  197. menu.append(favorite)
  198. menu.append(deleteConfirmFile)
  199. }
  200. return UIMenu(title: "", children: [detail, UIMenu(title: "", options: .displayInline, children: menu)])
  201. } else {
  202. if metadata.lock {
  203. menu.append(favorite)
  204. if metadata.isDocumentViewableOnly {
  205. //
  206. } else {
  207. menu.append(openIn)
  208. // SAVE CAMERA ROLL
  209. menu.append(save)
  210. }
  211. } else {
  212. menu.append(favorite)
  213. if metadata.isDocumentViewableOnly {
  214. if viewController is NCMedia {
  215. menu.append(viewInFolder)
  216. }
  217. } else {
  218. menu.append(openIn)
  219. // SAVE CAMERA ROLL
  220. menu.append(save)
  221. if viewController is NCMedia {
  222. menu.append(viewInFolder)
  223. }
  224. // MODIFY WITH QUICK LOOK
  225. if metadata.isModifiableWithQuickLook {
  226. menu.append(modify)
  227. }
  228. }
  229. if viewController is NCMedia {
  230. menu.append(deleteConfirmFile)
  231. } else {
  232. menu.append(deleteSubMenu)
  233. }
  234. }
  235. return UIMenu(title: "", children: [detail, UIMenu(title: "", options: .displayInline, children: menu)])
  236. }
  237. }
  238. }