NCViewer+Menu.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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 NCCommunication
  26. extension NCViewer {
  27. func toggleMenu(viewController: UIViewController, metadata: tableMetadata, webView: Bool, imageIcon: UIImage?) {
  28. var actions = [NCMenuAction]()
  29. var titleFavorite = NSLocalizedString("_add_favorites_", comment: "")
  30. if metadata.favorite { titleFavorite = NSLocalizedString("_remove_favorites_", comment: "") }
  31. let localFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  32. var titleOffline = ""
  33. if localFile == nil || localFile!.offline == false {
  34. titleOffline = NSLocalizedString("_set_available_offline_", comment: "")
  35. } else {
  36. titleOffline = NSLocalizedString("_remove_available_offline_", comment: "")
  37. }
  38. var titleDelete = NSLocalizedString("_delete_", comment: "")
  39. if NCManageDatabase.shared.isMetadataShareOrMounted(metadata: metadata, metadataFolder: nil) {
  40. titleDelete = NSLocalizedString("_leave_share_", comment: "")
  41. } else if metadata.directory {
  42. titleDelete = NSLocalizedString("_delete_folder_", comment: "")
  43. } else {
  44. titleDelete = NSLocalizedString("_delete_file_", comment: "")
  45. }
  46. let isFolderEncrypted = CCUtility.isFolderEncrypted(metadata.serverUrl, e2eEncrypted: metadata.e2eEncrypted, account: metadata.account, urlBase: metadata.urlBase)
  47. //
  48. // FAVORITE
  49. //
  50. actions.append(
  51. NCMenuAction(
  52. title: titleFavorite,
  53. icon: NCUtility.shared.loadImage(named: "star.fill", color: NCBrandColor.shared.yellowFavorite),
  54. action: { _ in
  55. NCNetworking.shared.favoriteMetadata(metadata) { errorCode, errorDescription in
  56. if errorCode != 0 {
  57. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  58. }
  59. }
  60. }
  61. )
  62. )
  63. //
  64. // DETAIL
  65. //
  66. if !appDelegate.disableSharesView {
  67. actions.append(
  68. NCMenuAction(
  69. title: NSLocalizedString("_details_", comment: ""),
  70. icon: NCUtility.shared.loadImage(named: "info"),
  71. action: { _ in
  72. NCFunctionCenter.shared.openShare(viewController: viewController, metadata: metadata, indexPage: .activity)
  73. }
  74. )
  75. )
  76. }
  77. //
  78. // OFFLINE
  79. //
  80. if metadata.session == "" && !webView {
  81. actions.append(
  82. NCMenuAction(
  83. title: titleOffline,
  84. icon: NCUtility.shared.loadImage(named: "tray.and.arrow.down"),
  85. action: { _ in
  86. if (localFile == nil || !CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView)) && metadata.session == "" {
  87. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorLoadOffline) { _ in }
  88. } else {
  89. NCManageDatabase.shared.setLocalFile(ocId: metadata.ocId, offline: !localFile!.offline)
  90. }
  91. }
  92. )
  93. )
  94. }
  95. //
  96. // OPEN IN
  97. //
  98. if metadata.session == "" && !webView {
  99. actions.append(
  100. NCMenuAction(
  101. title: NSLocalizedString("_open_in_", comment: ""),
  102. icon: NCUtility.shared.loadImage(named: "square.and.arrow.up"),
  103. action: { _ in
  104. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorOpenIn)
  105. }
  106. )
  107. )
  108. }
  109. //
  110. // PRINT
  111. //
  112. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.contentType == "application/pdf" || metadata.contentType == "com.adobe.pdf" {
  113. actions.append(
  114. NCMenuAction(
  115. title: NSLocalizedString("_print_", comment: ""),
  116. icon: NCUtility.shared.loadImage(named: "printer"),
  117. action: { _ in
  118. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorPrint)
  119. }
  120. )
  121. )
  122. }
  123. //
  124. // CONVERSION VIDEO TO MPEG4 (MFFF Lib)
  125. //
  126. #if MFFFLIB
  127. if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue {
  128. actions.append(
  129. NCMenuAction(
  130. title: NSLocalizedString("_video_conversion_", comment: ""),
  131. icon: NCUtility.shared.loadImage(named: "film"),
  132. action: { menuAction in
  133. if let ncplayer = (viewController as? NCViewerMediaPage)?.currentViewController.ncplayer {
  134. ncplayer.convertVideo()
  135. }
  136. }
  137. )
  138. )
  139. }
  140. #endif
  141. //
  142. // SAVE IMAGE / VIDEO
  143. //
  144. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue {
  145. var title: String = NSLocalizedString("_save_selected_files_", comment: "")
  146. var icon = NCUtility.shared.loadImage(named: "square.and.arrow.down")
  147. let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata)
  148. if metadataMOV != nil {
  149. title = NSLocalizedString("_livephoto_save_", comment: "")
  150. icon = NCUtility.shared.loadImage(named: "livephoto")
  151. }
  152. actions.append(
  153. NCMenuAction(
  154. title: title,
  155. icon: icon,
  156. action: { _ in
  157. if metadataMOV != nil {
  158. NCFunctionCenter.shared.saveLivePhoto(metadata: metadata, metadataMOV: metadataMOV!)
  159. } else {
  160. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum)
  161. }
  162. }
  163. )
  164. )
  165. }
  166. //
  167. // SAVE AS SCAN
  168. //
  169. if #available(iOS 13.0, *) {
  170. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && metadata.contentType != "image/svg+xml" {
  171. actions.append(
  172. NCMenuAction(
  173. title: NSLocalizedString("_save_as_scan_", comment: ""),
  174. icon: NCUtility.shared.loadImage(named: "viewfinder.circle"),
  175. action: { _ in
  176. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorSaveAsScan)
  177. }
  178. )
  179. )
  180. }
  181. }
  182. //
  183. // RENAME
  184. //
  185. if !webView {
  186. actions.append(
  187. NCMenuAction(
  188. title: NSLocalizedString("_rename_", comment: ""),
  189. icon: NCUtility.shared.loadImage(named: "pencil"),
  190. action: { _ in
  191. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  192. vcRename.metadata = metadata
  193. vcRename.disableChangeExt = true
  194. vcRename.imagePreview = imageIcon
  195. let popup = NCPopupViewController(contentController: vcRename, popupWidth: vcRename.width, popupHeight: vcRename.height)
  196. viewController.present(popup, animated: true)
  197. }
  198. }
  199. )
  200. )
  201. }
  202. //
  203. // COPY - MOVE
  204. //
  205. if !webView {
  206. actions.append(
  207. NCMenuAction(
  208. title: NSLocalizedString("_move_or_copy_", comment: ""),
  209. icon: NCUtility.shared.loadImage(named: "arrow.up.right.square"),
  210. action: { _ in
  211. let storyboard = UIStoryboard(name: "NCSelect", bundle: nil)
  212. let navigationController = storyboard.instantiateInitialViewController() as! UINavigationController
  213. let viewController = navigationController.topViewController as! NCSelect
  214. viewController.delegate = NCViewer.shared
  215. viewController.typeOfCommandView = .copyMove
  216. viewController.items = [metadata]
  217. self.appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  218. }
  219. )
  220. )
  221. }
  222. //
  223. // COPY
  224. //
  225. actions.append(
  226. NCMenuAction(
  227. title: NSLocalizedString("_copy_file_", comment: ""),
  228. icon: NCUtility.shared.loadImage(named: "doc.on.doc"),
  229. action: { _ in
  230. self.appDelegate.pasteboardOcIds = [metadata.ocId]
  231. NCFunctionCenter.shared.copyPasteboard()
  232. }
  233. )
  234. )
  235. //
  236. // VIEW IN FOLDER
  237. //
  238. if !webView {
  239. actions.append(
  240. NCMenuAction(
  241. title: NSLocalizedString("_view_in_folder_", comment: ""),
  242. icon: NCUtility.shared.loadImage(named: "arrow.forward.square"),
  243. action: { menuAction in
  244. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  245. }
  246. )
  247. )
  248. }
  249. //
  250. // DOWNLOAD IMAGE MAX RESOLUTION
  251. //
  252. if metadata.session == "" {
  253. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && !CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && metadata.session == "" {
  254. actions.append(
  255. NCMenuAction(
  256. title: NSLocalizedString("_download_image_max_", comment: ""),
  257. icon: NCUtility.shared.loadImage(named: "square.and.arrow.down"),
  258. action: { _ in
  259. NCNetworking.shared.download(metadata: metadata, selector: "") { _ in }
  260. }
  261. )
  262. )
  263. }
  264. }
  265. //
  266. // PDF
  267. //
  268. if metadata.contentType == "com.adobe.pdf" || metadata.contentType == "application/pdf" {
  269. actions.append(
  270. NCMenuAction(
  271. title: NSLocalizedString("_search_", comment: ""),
  272. icon: UIImage(named: "search")!.image(color: NCBrandColor.shared.gray, size: 50),
  273. action: { _ in
  274. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuSearchTextPDF)
  275. }
  276. )
  277. )
  278. var title = ""
  279. var icon = UIImage()
  280. if CCUtility.getPDFDisplayDirection() == .horizontal {
  281. title = NSLocalizedString("_pdf_vertical_", comment: "")
  282. icon = UIImage(named: "pdf-vertical")!.image(color: NCBrandColor.shared.gray, size: 50)
  283. } else {
  284. title = NSLocalizedString("_pdf_horizontal_", comment: "")
  285. icon = UIImage(named: "pdf-horizontal")!.image(color: NCBrandColor.shared.gray, size: 50)
  286. }
  287. actions.append(
  288. NCMenuAction(
  289. title: title,
  290. icon: icon,
  291. action: { _ in
  292. if CCUtility.getPDFDisplayDirection() == .horizontal {
  293. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuPDFDisplayDirection, userInfo: ["direction": PDFDisplayDirection.vertical])
  294. } else {
  295. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuPDFDisplayDirection, userInfo: ["direction": PDFDisplayDirection.horizontal])
  296. }
  297. }
  298. )
  299. )
  300. actions.append(
  301. NCMenuAction(
  302. title: NSLocalizedString("_go_to_page_", comment: ""),
  303. icon: NCUtility.shared.loadImage(named: "repeat"),
  304. action: { _ in
  305. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuGotToPageInPDF)
  306. }
  307. )
  308. )
  309. }
  310. //
  311. // MODIFY
  312. //
  313. if #available(iOS 13.0, *) {
  314. if !isFolderEncrypted && metadata.contentType != "image/gif" && (metadata.contentType == "com.adobe.pdf" || metadata.contentType == "application/pdf" || metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue) {
  315. actions.append(
  316. NCMenuAction(
  317. title: NSLocalizedString("_modify_", comment: ""),
  318. icon: NCUtility.shared.loadImage(named: "pencil.tip.crop.circle"),
  319. action: { _ in
  320. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorLoadFileQuickLook)
  321. }
  322. )
  323. )
  324. }
  325. }
  326. //
  327. // DELETE
  328. //
  329. if !webView {
  330. actions.append(
  331. NCMenuAction(
  332. title: titleDelete,
  333. icon: NCUtility.shared.loadImage(named: "trash"),
  334. action: { _ in
  335. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  336. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (_: UIAlertAction) in
  337. NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false) { errorCode, errorDescription in
  338. if errorCode != 0 {
  339. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  340. }
  341. }
  342. })
  343. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (_: UIAlertAction) in })
  344. viewController.present(alertController, animated: true, completion: nil)
  345. }
  346. )
  347. )
  348. }
  349. viewController.presentMenu(with: actions)
  350. }
  351. }