NCViewer+Menu.swift 16 KB

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