NCMenuAction.swift 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. //
  2. // NCMenuAction.swift
  3. // Nextcloud
  4. //
  5. // Created by Henrik Storch on 17.02.22.
  6. // Copyright © 2022 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Henrik Storch <henrik.storch@nextcloud.com>
  9. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  10. //
  11. // This program is free software: you can redistribute it and/or modify
  12. // it under the terms of the GNU General Public License as published by
  13. // the Free Software Foundation, either version 3 of the License, or
  14. // (at your option) any later version.
  15. //
  16. // This program is distributed in the hope that it will be useful,
  17. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. // GNU General Public License for more details.
  20. //
  21. // You should have received a copy of the GNU General Public License
  22. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. //
  24. import Foundation
  25. import UIKit
  26. import NextcloudKit
  27. import JGProgressHUD
  28. class NCMenuAction {
  29. let title: String
  30. let details: String?
  31. let icon: UIImage
  32. let selectable: Bool
  33. var onTitle: String?
  34. var onIcon: UIImage?
  35. var selected: Bool = false
  36. var isOn: Bool = false
  37. var action: ((_ menuAction: NCMenuAction) -> Void)?
  38. var rowHeight: CGFloat { self.title == NCMenuAction.seperatorIdentifier ? NCMenuAction.seperatorHeight : self.details != nil ? 80 : 60 }
  39. var order: Int = 0
  40. init(title: String, details: String? = nil, icon: UIImage, order: Int = 0, action: ((_ menuAction: NCMenuAction) -> Void)?) {
  41. self.title = title
  42. self.details = details
  43. self.icon = icon
  44. self.action = action
  45. self.selectable = false
  46. self.order = order
  47. }
  48. init(title: String, details: String? = nil, icon: UIImage, onTitle: String? = nil, onIcon: UIImage? = nil, selected: Bool, on: Bool, order: Int = 0, action: ((_ menuAction: NCMenuAction) -> Void)?) {
  49. self.title = title
  50. self.details = details
  51. self.icon = icon
  52. self.onTitle = onTitle ?? title
  53. self.onIcon = onIcon ?? icon
  54. self.action = action
  55. self.selected = selected
  56. self.isOn = on
  57. self.selectable = true
  58. self.order = order
  59. }
  60. }
  61. // MARK: - Actions
  62. extension NCMenuAction {
  63. static let seperatorIdentifier = "NCMenuAction.SEPARATOR"
  64. static let seperatorHeight: CGFloat = 0.5
  65. /// A static seperator, with no actions, text, or icons
  66. static func seperator(order: Int = 0) -> NCMenuAction {
  67. return NCMenuAction(title: seperatorIdentifier, icon: UIImage(), order: order, action: nil)
  68. }
  69. /// Select all items
  70. static func selectAllAction(action: @escaping () -> Void) -> NCMenuAction {
  71. NCMenuAction(
  72. title: NSLocalizedString("_select_all_", comment: ""),
  73. icon: NCUtility().loadImage(named: "checkmark.circle.fill"),
  74. action: { _ in action() }
  75. )
  76. }
  77. /// Cancel
  78. static func cancelAction(action: @escaping () -> Void) -> NCMenuAction {
  79. NCMenuAction(
  80. title: NSLocalizedString("_cancel_", comment: ""),
  81. icon: NCUtility().loadImage(named: "xmark"),
  82. action: { _ in action() }
  83. )
  84. }
  85. /// Copy files to pasteboard
  86. static func copyAction(selectOcId: [String], order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  87. NCMenuAction(
  88. title: NSLocalizedString("_copy_file_", comment: ""),
  89. icon: NCUtility().loadImage(named: "doc.on.doc"),
  90. order: order,
  91. action: { _ in
  92. NCActionCenter.shared.copyPasteboard(pasteboardOcIds: selectOcId)
  93. completion?()
  94. }
  95. )
  96. }
  97. /// Delete files either from cache or from Nextcloud
  98. static func deleteAction(selectedMetadatas: [tableMetadata], indexPath: [IndexPath], metadataFolder: tableMetadata? = nil, viewController: UIViewController, order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  99. var titleDelete = NSLocalizedString("_delete_", comment: "")
  100. if selectedMetadatas.count > 1 {
  101. titleDelete = NSLocalizedString("_delete_selected_files_", comment: "")
  102. } else if let metadata = selectedMetadatas.first {
  103. if NCManageDatabase.shared.isMetadataShareOrMounted(metadata: metadata, metadataFolder: metadataFolder) {
  104. titleDelete = NSLocalizedString("_leave_share_", comment: "")
  105. } else if metadata.directory {
  106. titleDelete = NSLocalizedString("_delete_folder_", comment: "")
  107. } else {
  108. titleDelete = NSLocalizedString("_delete_file_", comment: "")
  109. }
  110. if let metadataFolder = metadataFolder {
  111. let isShare = metadata.permissions.contains(NCGlobal.shared.permissionShared) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionShared)
  112. let isMounted = metadata.permissions.contains(NCGlobal.shared.permissionMounted) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionMounted)
  113. if isShare || isMounted {
  114. titleDelete = NSLocalizedString("_leave_share_", comment: "")
  115. }
  116. }
  117. } // else: no metadata selected
  118. let canDeleteServer = selectedMetadatas.allSatisfy { !$0.lock }
  119. var fileList = ""
  120. for (ix, metadata) in selectedMetadatas.enumerated() {
  121. guard ix < 3 else { fileList += "\n - ..."; break }
  122. fileList += "\n - " + metadata.fileNameView
  123. }
  124. return NCMenuAction(
  125. title: titleDelete,
  126. icon: NCUtility().loadImage(named: "trash"),
  127. order: order,
  128. action: { _ in
  129. let alertController = UIAlertController(
  130. title: titleDelete,
  131. message: NSLocalizedString("_want_delete_", comment: "") + fileList,
  132. preferredStyle: .alert)
  133. if canDeleteServer {
  134. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (_: UIAlertAction) in
  135. Task {
  136. var error = NKError()
  137. var ocId: [String] = []
  138. for metadata in selectedMetadatas where error == .success {
  139. error = await NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false)
  140. if error == .success {
  141. ocId.append(metadata.ocId)
  142. }
  143. }
  144. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDeleteFile, userInfo: ["ocId": ocId, "indexPath": indexPath, "onlyLocalCache": false, "error": error])
  145. }
  146. completion?()
  147. })
  148. }
  149. // NCMedia removes image from collection view if removed from cache
  150. if !(viewController is NCMedia) {
  151. alertController.addAction(UIAlertAction(title: NSLocalizedString("_remove_local_file_", comment: ""), style: .default) { (_: UIAlertAction) in
  152. Task {
  153. var error = NKError()
  154. var ocId: [String] = []
  155. for metadata in selectedMetadatas where error == .success {
  156. error = await NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: true)
  157. if error == .success {
  158. ocId.append(metadata.ocId)
  159. }
  160. }
  161. if error != .success {
  162. NCContentPresenter().showError(error: error)
  163. }
  164. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDeleteFile, userInfo: ["ocId": ocId, "indexPath": indexPath, "onlyLocalCache": true, "error": error])
  165. }
  166. completion?()
  167. })
  168. }
  169. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (_: UIAlertAction) in })
  170. viewController.present(alertController, animated: true, completion: nil)
  171. }
  172. )
  173. }
  174. /// Open "share view" (activity VC) to open files in another app
  175. static func openInAction(selectedMetadatas: [tableMetadata], viewController: UIViewController, order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  176. NCMenuAction(
  177. title: NSLocalizedString("_open_in_", comment: ""),
  178. icon: NCUtility().loadImage(named: "square.and.arrow.up"),
  179. order: order,
  180. action: { _ in
  181. NCActionCenter.shared.openActivityViewController(selectedMetadata: selectedMetadatas)
  182. completion?()
  183. }
  184. )
  185. }
  186. /// Save selected files to user's photo library
  187. static func saveMediaAction(selectedMediaMetadatas: [tableMetadata], order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  188. var title: String = NSLocalizedString("_save_selected_files_", comment: "")
  189. var icon = NCUtility().loadImage(named: "square.and.arrow.down")
  190. if selectedMediaMetadatas.allSatisfy({ NCManageDatabase.shared.getMetadataLivePhoto(metadata: $0) != nil }) {
  191. title = NSLocalizedString("_livephoto_save_", comment: "")
  192. icon = NCUtility().loadImage(named: "livephoto")
  193. }
  194. return NCMenuAction(
  195. title: title,
  196. icon: icon,
  197. order: order,
  198. action: { _ in
  199. for metadata in selectedMediaMetadatas {
  200. if let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) {
  201. NCNetworking.shared.saveLivePhotoQueue.addOperation(NCOperationSaveLivePhoto(metadata: metadata, metadataMOV: metadataMOV))
  202. } else {
  203. if NCUtilityFileSystem().fileProviderStorageExists(metadata) {
  204. NCActionCenter.shared.saveAlbum(metadata: metadata)
  205. } else {
  206. if NCNetworking.shared.downloadQueue.operations.filter({ ($0 as? NCOperationDownload)?.metadata.ocId == metadata.ocId }).isEmpty {
  207. NCNetworking.shared.downloadQueue.addOperation(NCOperationDownload(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum))
  208. }
  209. }
  210. }
  211. }
  212. completion?()
  213. }
  214. )
  215. }
  216. /// Set (or remove) a file as *available offline*. Downloads the file if not downloaded already
  217. static func setAvailableOfflineAction(selectedMetadatas: [tableMetadata], isAnyOffline: Bool, viewController: UIViewController, order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  218. NCMenuAction(
  219. title: isAnyOffline ? NSLocalizedString("_remove_available_offline_", comment: "") : NSLocalizedString("_set_available_offline_", comment: ""),
  220. icon: NCUtility().loadImage(named: "tray.and.arrow.down"),
  221. order: order,
  222. action: { _ in
  223. if !isAnyOffline, selectedMetadatas.count > 3 {
  224. let alert = UIAlertController(
  225. title: NSLocalizedString("_set_available_offline_", comment: ""),
  226. message: NSLocalizedString("_select_offline_warning_", comment: ""),
  227. preferredStyle: .alert)
  228. alert.addAction(UIAlertAction(title: NSLocalizedString("_continue_", comment: ""), style: .default, handler: { _ in
  229. selectedMetadatas.forEach { NCActionCenter.shared.setMetadataAvalableOffline($0, isOffline: isAnyOffline) }
  230. completion?()
  231. }))
  232. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel))
  233. viewController.present(alert, animated: true)
  234. } else {
  235. selectedMetadatas.forEach { NCActionCenter.shared.setMetadataAvalableOffline($0, isOffline: isAnyOffline) }
  236. completion?()
  237. }
  238. }
  239. )
  240. }
  241. /// Open view that lets the user move or copy the files within Nextcloud
  242. static func moveOrCopyAction(selectedMetadatas: [tableMetadata], indexPath: [IndexPath], order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  243. NCMenuAction(
  244. title: NSLocalizedString("_move_or_copy_selected_files_", comment: ""),
  245. icon: NCUtility().loadImage(named: "arrow.up.right.square"),
  246. order: order,
  247. action: { _ in
  248. NCActionCenter.shared.openSelectView(items: selectedMetadatas, indexPath: indexPath)
  249. completion?()
  250. }
  251. )
  252. }
  253. /// Open AirPrint view to print a single file
  254. static func printAction(metadata: tableMetadata, order: Int = 0) -> NCMenuAction {
  255. NCMenuAction(
  256. title: NSLocalizedString("_print_", comment: ""),
  257. icon: NCUtility().loadImage(named: "printer"),
  258. order: order,
  259. action: { _ in
  260. if NCUtilityFileSystem().fileProviderStorageExists(metadata) {
  261. NotificationCenter.default.post(
  262. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  263. object: nil,
  264. userInfo: ["ocId": metadata.ocId,
  265. "selector": NCGlobal.shared.selectorPrint,
  266. "error": NKError(),
  267. "account": metadata.account])
  268. } else {
  269. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorPrint) else { return }
  270. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  271. }
  272. }
  273. )
  274. }
  275. /// Lock or unlock a file using *files_lock*
  276. static func lockUnlockFiles(shouldLock: Bool, metadatas: [tableMetadata], order: Int = 0, completion: (() -> Void)? = nil) -> NCMenuAction {
  277. let titleKey: String
  278. if metadatas.count == 1 {
  279. titleKey = shouldLock ? "_lock_file_" : "_unlock_file_"
  280. } else {
  281. titleKey = shouldLock ? "_lock_selected_files_" : "_unlock_selected_files_"
  282. }
  283. let imageName = !shouldLock ? "lock_open" : "lock"
  284. return NCMenuAction(
  285. title: NSLocalizedString(titleKey, comment: ""),
  286. icon: NCUtility().loadImage(named: imageName),
  287. order: order,
  288. action: { _ in
  289. for metadata in metadatas where metadata.lock != shouldLock {
  290. NCNetworking.shared.lockUnlockFile(metadata, shoulLock: shouldLock)
  291. }
  292. completion?()
  293. }
  294. )
  295. }
  296. }