NCViewer+Menu.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. //
  2. // NCViewer.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 07/02/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 FloatingPanel
  25. import NextcloudKit
  26. extension NCViewer {
  27. func toggleMenu(viewController: UIViewController, metadata: tableMetadata, webView: Bool, imageIcon: UIImage?, indexPath: IndexPath = IndexPath()) {
  28. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(metadata.ocId) else { return }
  29. var actions = [NCMenuAction]()
  30. var titleFavorite = NSLocalizedString("_add_favorites_", comment: "")
  31. if metadata.favorite { titleFavorite = NSLocalizedString("_remove_favorites_", comment: "") }
  32. let localFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  33. let isOffline = localFile?.offline == true
  34. //
  35. // DETAIL
  36. //
  37. if !appDelegate.disableSharesView {
  38. actions.append(
  39. NCMenuAction(
  40. title: NSLocalizedString("_details_", comment: ""),
  41. icon: utility.loadImage(named: "info"),
  42. action: { _ in
  43. NCActionCenter.shared.openShare(viewController: viewController, metadata: metadata, page: .activity)
  44. }
  45. )
  46. )
  47. }
  48. //
  49. // VIEW IN FOLDER
  50. //
  51. if !webView {
  52. actions.append(
  53. NCMenuAction(
  54. title: NSLocalizedString("_view_in_folder_", comment: ""),
  55. icon: utility.loadImage(named: "questionmark.folder"),
  56. action: { _ in
  57. NCActionCenter.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileNameBlink: metadata.fileName, fileNameOpen: nil)
  58. }
  59. )
  60. )
  61. }
  62. //
  63. // FAVORITE
  64. // Workaround: PROPPATCH doesn't work
  65. // https://github.com/nextcloud/files_lock/issues/68
  66. if !metadata.lock {
  67. actions.append(
  68. NCMenuAction(
  69. title: titleFavorite,
  70. icon: utility.loadImage(named: "star.fill", color: NCBrandColor.shared.yellowFavorite),
  71. action: { _ in
  72. NCNetworking.shared.favoriteMetadata(metadata) { error in
  73. if error != .success {
  74. NCContentPresenter().showError(error: error)
  75. }
  76. }
  77. }
  78. )
  79. )
  80. }
  81. //
  82. // OFFLINE
  83. //
  84. if !webView, metadata.isSettableOnOffline {
  85. actions.append(.setAvailableOfflineAction(selectedMetadatas: [metadata], isAnyOffline: isOffline, viewController: viewController))
  86. }
  87. //
  88. // OPEN IN
  89. //
  90. if !webView, metadata.canOpenIn {
  91. actions.append(.openInAction(selectedMetadatas: [metadata], viewController: viewController))
  92. }
  93. //
  94. // PRINT
  95. //
  96. if !webView, metadata.isPrintable {
  97. actions.append(
  98. NCMenuAction(
  99. title: NSLocalizedString("_print_", comment: ""),
  100. icon: utility.loadImage(named: "printer"),
  101. action: { _ in
  102. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  103. NotificationCenter.default.post(
  104. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  105. object: nil,
  106. userInfo: ["ocId": metadata.ocId,
  107. "selector": NCGlobal.shared.selectorPrint,
  108. "error": NKError(),
  109. "account": metadata.account])
  110. } else {
  111. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorPrint) else { return }
  112. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  113. }
  114. }
  115. )
  116. )
  117. }
  118. //
  119. // CONVERSION VIDEO TO MPEG4 (MFFF Lib)
  120. //
  121. /*
  122. #if MFFFLIB
  123. if metadata.isVideo {
  124. actions.append(
  125. NCMenuAction(
  126. title: NSLocalizedString("_video_processing_", comment: ""),
  127. icon: utility.loadImage(named: "film"),
  128. action: { menuAction in
  129. if let ncplayer = (viewController as? NCViewerMediaPage)?.currentViewController.ncplayer {
  130. ncplayer.convertVideo(withAlert: false)
  131. }
  132. }
  133. )
  134. )
  135. }
  136. #endif
  137. */
  138. //
  139. // SAVE CAMERA ROLL
  140. //
  141. if !webView, metadata.isSavebleInCameraRoll {
  142. actions.append(.saveMediaAction(selectedMediaMetadatas: [metadata]))
  143. }
  144. //
  145. // SAVE AS SCAN
  146. //
  147. if !webView, metadata.isSavebleAsImage {
  148. actions.append(
  149. NCMenuAction(
  150. title: NSLocalizedString("_save_as_scan_", comment: ""),
  151. icon: utility.loadImage(named: "viewfinder.circle"),
  152. action: { _ in
  153. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  154. NotificationCenter.default.post(
  155. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  156. object: nil,
  157. userInfo: ["ocId": metadata.ocId,
  158. "selector": NCGlobal.shared.selectorSaveAsScan,
  159. "error": NKError(),
  160. "account": metadata.account])
  161. } else {
  162. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorSaveAsScan) else { return }
  163. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  164. }
  165. }
  166. )
  167. )
  168. }
  169. //
  170. // RENAME
  171. //
  172. if !webView, metadata.isRenameable {
  173. actions.append(
  174. NCMenuAction(
  175. title: NSLocalizedString("_rename_", comment: ""),
  176. icon: utility.loadImage(named: "pencil"),
  177. action: { _ in
  178. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  179. vcRename.metadata = metadata
  180. vcRename.disableChangeExt = true
  181. vcRename.imagePreview = imageIcon
  182. vcRename.indexPath = indexPath
  183. let popup = NCPopupViewController(contentController: vcRename, popupWidth: vcRename.width, popupHeight: vcRename.height)
  184. viewController.present(popup, animated: true)
  185. }
  186. }
  187. )
  188. )
  189. }
  190. //
  191. // COPY - MOVE
  192. //
  193. if !webView, metadata.isCopyableMovable {
  194. actions.append(.moveOrCopyAction(selectedMetadatas: [metadata], indexPath: []))
  195. }
  196. //
  197. // COPY IN PASTEBOARD
  198. //
  199. if !webView, metadata.isCopyableInPasteboard {
  200. actions.append(.copyAction(selectOcId: [metadata.ocId]))
  201. }
  202. //
  203. // DOWNLOAD LOCALLY
  204. //
  205. if !webView, metadata.session.isEmpty, !self.utilityFileSystem.fileProviderStorageExists(metadata) {
  206. actions.append(
  207. NCMenuAction(
  208. title: NSLocalizedString("_download_locally_", comment: ""),
  209. icon: utility.loadImage(named: "icloud.and.arrow.down"),
  210. action: { _ in
  211. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: "") else { return }
  212. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  213. }
  214. )
  215. )
  216. }
  217. //
  218. // PDF
  219. //
  220. if metadata.contentType == "com.adobe.pdf" || metadata.contentType == "application/pdf" {
  221. actions.append(
  222. NCMenuAction(
  223. title: NSLocalizedString("_search_", comment: ""),
  224. icon: UIImage(named: "search")!.image(color: UIColor.systemGray, size: 50),
  225. action: { _ in
  226. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuSearchTextPDF)
  227. }
  228. )
  229. )
  230. actions.append(
  231. NCMenuAction(
  232. title: NSLocalizedString("_go_to_page_", comment: ""),
  233. icon: utility.loadImage(named: "repeat"),
  234. action: { _ in
  235. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuGotToPageInPDF)
  236. }
  237. )
  238. )
  239. }
  240. //
  241. // MODIFY WITH QUICK LOOK
  242. //
  243. if !webView, metadata.isModifiableWithQuickLook {
  244. actions.append(
  245. NCMenuAction(
  246. title: NSLocalizedString("_modify_", comment: ""),
  247. icon: utility.loadImage(named: "pencil.tip.crop.circle"),
  248. action: { _ in
  249. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  250. NotificationCenter.default.post(
  251. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  252. object: nil,
  253. userInfo: ["ocId": metadata.ocId,
  254. "selector": NCGlobal.shared.selectorLoadFileQuickLook,
  255. "error": NKError(),
  256. "account": metadata.account])
  257. } else {
  258. guard let metadata = NCManageDatabase.shared.setMetadataSessionInWaitDownload(ocId: metadata.ocId, selector: NCGlobal.shared.selectorLoadFileQuickLook) else { return }
  259. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  260. }
  261. }
  262. )
  263. )
  264. }
  265. //
  266. // DELETE
  267. //
  268. if !webView, metadata.isDeletable {
  269. actions.append(.deleteAction(selectedMetadatas: [metadata], indexPath: [], metadataFolder: nil, viewController: viewController))
  270. }
  271. viewController.presentMenu(with: actions)
  272. }
  273. }