NCViewer+Menu.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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: { menuAction 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: { menuAction 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: { menuAction 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: { menuAction 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: { menuAction in
  118. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorPrint)
  119. }
  120. )
  121. )
  122. }
  123. //
  124. // SAVE IMAGE / VIDEO
  125. //
  126. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue {
  127. var title: String = NSLocalizedString("_save_selected_files_", comment: "")
  128. var icon = NCUtility.shared.loadImage(named: "square.and.arrow.down")
  129. let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata)
  130. if metadataMOV != nil {
  131. title = NSLocalizedString("_livephoto_save_", comment: "")
  132. icon = NCUtility.shared.loadImage(named: "livephoto")
  133. }
  134. actions.append(
  135. NCMenuAction(
  136. title: title,
  137. icon: icon,
  138. action: { menuAction in
  139. if metadataMOV != nil {
  140. NCFunctionCenter.shared.saveLivePhoto(metadata: metadata, metadataMOV: metadataMOV!)
  141. } else {
  142. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum)
  143. }
  144. }
  145. )
  146. )
  147. }
  148. //
  149. // SAVE AS SCAN
  150. //
  151. if #available(iOS 13.0, *) {
  152. if (metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && metadata.contentType != "image/svg+xml") {
  153. actions.append(
  154. NCMenuAction(
  155. title: NSLocalizedString("_save_as_scan_", comment: ""),
  156. icon: NCUtility.shared.loadImage(named: "viewfinder.circle"),
  157. action: { menuAction in
  158. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorSaveAsScan)
  159. }
  160. )
  161. )
  162. }
  163. }
  164. //
  165. // RENAME
  166. //
  167. if !webView {
  168. actions.append(
  169. NCMenuAction(
  170. title: NSLocalizedString("_rename_", comment: ""),
  171. icon: NCUtility.shared.loadImage(named: "pencil"),
  172. action: { menuAction in
  173. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  174. vcRename.metadata = metadata
  175. vcRename.disableChangeExt = true
  176. vcRename.imagePreview = imageIcon
  177. let popup = NCPopupViewController(contentController: vcRename, popupWidth: vcRename.width, popupHeight: vcRename.height)
  178. viewController.present(popup, animated: true)
  179. }
  180. }
  181. )
  182. )
  183. }
  184. //
  185. // COPY - MOVE
  186. //
  187. if !webView {
  188. actions.append(
  189. NCMenuAction(
  190. title: NSLocalizedString("_move_or_copy_", comment: ""),
  191. icon: NCUtility.shared.loadImage(named: "arrow.up.right.square"),
  192. action: { menuAction in
  193. let storyboard = UIStoryboard(name: "NCSelect", bundle: nil)
  194. let navigationController = storyboard.instantiateInitialViewController() as! UINavigationController
  195. let viewController = navigationController.topViewController as! NCSelect
  196. viewController.delegate = NCViewer.shared
  197. viewController.typeOfCommandView = .copyMove
  198. viewController.items = [metadata]
  199. self.appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  200. }
  201. )
  202. )
  203. }
  204. //
  205. // COPY
  206. //
  207. actions.append(
  208. NCMenuAction(
  209. title: NSLocalizedString("_copy_file_", comment: ""),
  210. icon: NCUtility.shared.loadImage(named: "doc.on.doc"),
  211. action: { menuAction in
  212. self.appDelegate.pasteboardOcIds = [metadata.ocId];
  213. NCFunctionCenter.shared.copyPasteboard()
  214. }
  215. )
  216. )
  217. //
  218. // VIEW IN FOLDER
  219. //
  220. if !webView {
  221. if appDelegate.activeFileViewInFolder == nil {
  222. actions.append(
  223. NCMenuAction(
  224. title: NSLocalizedString("_view_in_folder_", comment: ""),
  225. icon: NCUtility.shared.loadImage(named: "arrow.forward.square"),
  226. action: { menuAction in
  227. NCFunctionCenter.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  228. }
  229. )
  230. )
  231. }
  232. }
  233. //
  234. // DOWNLOAD IMAGE MAX RESOLUTION
  235. //
  236. if metadata.session == "" {
  237. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && !CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && metadata.session == "" {
  238. actions.append(
  239. NCMenuAction(
  240. title: NSLocalizedString("_download_image_max_", comment: ""),
  241. icon: NCUtility.shared.loadImage(named: "square.and.arrow.down"),
  242. action: { menuAction in
  243. NCNetworking.shared.download(metadata: metadata, selector: "") { (_) in }
  244. }
  245. )
  246. )
  247. }
  248. }
  249. //
  250. // PDF
  251. //
  252. if metadata.contentType == "com.adobe.pdf" || metadata.contentType == "application/pdf" {
  253. actions.append(
  254. NCMenuAction(
  255. title: NSLocalizedString("_search_", comment: ""),
  256. icon: UIImage(named: "search")!.image(color: NCBrandColor.shared.gray, size: 50),
  257. action: { menuAction in
  258. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuSearchTextPDF)
  259. }
  260. )
  261. )
  262. var title = ""
  263. var icon = UIImage()
  264. if CCUtility.getPDFDisplayDirection() == .horizontal {
  265. title = NSLocalizedString("_pdf_vertical_", comment: "")
  266. icon = UIImage(named: "pdf-vertical")!.image(color: NCBrandColor.shared.gray, size: 50)
  267. } else {
  268. title = NSLocalizedString("_pdf_horizontal_", comment: "")
  269. icon = UIImage(named: "pdf-horizontal")!.image(color: NCBrandColor.shared.gray, size: 50)
  270. }
  271. actions.append(
  272. NCMenuAction(
  273. title: title,
  274. icon: icon,
  275. action: { menuAction in
  276. if CCUtility.getPDFDisplayDirection() == .horizontal {
  277. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuPDFDisplayDirection, userInfo: ["direction": PDFDisplayDirection.vertical])
  278. } else {
  279. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuPDFDisplayDirection, userInfo: ["direction": PDFDisplayDirection.horizontal])
  280. }
  281. }
  282. )
  283. )
  284. actions.append(
  285. NCMenuAction(
  286. title: NSLocalizedString("_go_to_page_", comment: ""),
  287. icon: NCUtility.shared.loadImage(named: "repeat"),
  288. action: { menuAction in
  289. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterMenuGotToPageInPDF)
  290. }
  291. )
  292. )
  293. }
  294. //
  295. // MODIFY
  296. //
  297. if #available(iOS 13.0, *) {
  298. if !isFolderEncrypted && metadata.contentType != "image/gif" && (metadata.contentType == "com.adobe.pdf" || metadata.contentType == "application/pdf" || metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue) {
  299. actions.append(
  300. NCMenuAction(
  301. title: NSLocalizedString("_modify_", comment: ""),
  302. icon: NCUtility.shared.loadImage(named: "pencil.tip.crop.circle"),
  303. action: { menuAction in
  304. NCFunctionCenter.shared.openDownload(metadata: metadata, selector: NCGlobal.shared.selectorLoadFileQuickLook)
  305. }
  306. )
  307. )
  308. }
  309. }
  310. //
  311. // DELETE
  312. //
  313. if !webView {
  314. actions.append(
  315. NCMenuAction(
  316. title: titleDelete,
  317. icon: NCUtility.shared.loadImage(named: "trash"),
  318. action: { menuAction in
  319. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  320. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  321. NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false) { (errorCode, errorDescription) in
  322. if errorCode != 0 {
  323. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  324. }
  325. }
  326. })
  327. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action:UIAlertAction) in })
  328. viewController.present(alertController, animated: true, completion:nil)
  329. }
  330. )
  331. )
  332. }
  333. viewController.presentMenu(with: actions)
  334. }
  335. }