NCDetailNavigationController+Menu.swift 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. //
  2. // NCDetailNavigationController+Menu.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 FloatingPanel
  24. import NCCommunication
  25. extension NCDetailNavigationController {
  26. private func initMoreMenu(viewController: UIViewController, metadata: tableMetadata) -> [NCMenuAction] {
  27. var actions = [NCMenuAction]()
  28. let fileNameExtension = (metadata.fileNameView as NSString).pathExtension.uppercased()
  29. let directEditingCreators = NCManageDatabase.sharedInstance.getDirectEditingCreators(account: appDelegate.activeAccount)
  30. actions.append(
  31. NCMenuAction(
  32. title: NSLocalizedString("_details_", comment: ""),
  33. icon: CCGraphics.changeThemingColorImage(UIImage(named: "details"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  34. action: { menuAction in
  35. NCMainCommon.sharedInstance.openShare(ViewController: self, metadata: metadata, indexPage: 0)
  36. }
  37. )
  38. )
  39. actions.append(
  40. NCMenuAction(title: NSLocalizedString("_open_in_", comment: ""),
  41. icon: CCGraphics.changeThemingColorImage(UIImage(named: "openFile"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  42. action: { menuAction in
  43. NCMainCommon.sharedInstance.downloadOpen(metadata: metadata, selector: selectorOpenInDetail)
  44. }
  45. )
  46. )
  47. actions.append(
  48. NCMenuAction(title: NSLocalizedString("_share_", comment: ""),
  49. icon: CCGraphics.changeThemingColorImage(UIImage(named: "share"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  50. action: { menuAction in
  51. NCMainCommon.sharedInstance.openShare(ViewController: viewController, metadata: metadata, indexPage: 0)
  52. }
  53. )
  54. )
  55. actions.append(
  56. NCMenuAction(title: NSLocalizedString("_delete_", comment: ""),
  57. icon: CCGraphics.changeThemingColorImage(UIImage(named: "trash"), width: 50, height: 50, color: .red),
  58. action: { menuAction in
  59. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  60. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  61. NCNetworking.sharedInstance.deleteMetadata(metadata, user: self.appDelegate.activeUser, userID: self.appDelegate.activeUserID, password: self.appDelegate.activePassword, url: self.appDelegate.activeUrl) { (errorCode, errorDescription) in }
  62. })
  63. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action:UIAlertAction) in })
  64. self.present(alertController, animated: true, completion:nil)
  65. }
  66. )
  67. )
  68. if (metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video || metadata.typeFile == k_metadataTypeFile_audio) && !CCUtility.fileProviderStorageExists(appDelegate.activeDetail.metadata?.ocId, fileNameView: appDelegate.activeDetail.metadata?.fileNameView) && metadata.session == "" && metadata.typeFile == k_metadataTypeFile_image {
  69. actions.append(
  70. NCMenuAction(title: NSLocalizedString("_download_image_max_", comment: ""),
  71. icon: CCGraphics.changeThemingColorImage(UIImage(named: "downloadImageFullRes"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  72. action: { menuAction in
  73. self.appDelegate.activeDetail.downloadImage()
  74. }
  75. )
  76. )
  77. }
  78. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video || metadata.typeFile == k_metadataTypeFile_audio {
  79. if let metadataMov = NCUtility.sharedInstance.hasMOV(metadata: metadata) {
  80. if CCUtility.fileProviderStorageSize(metadata.ocId, fileNameView: metadata.fileNameView) > 0 && CCUtility.fileProviderStorageSize(metadataMov.ocId, fileNameView: metadataMov.fileNameView) > 0 {
  81. actions.append(
  82. NCMenuAction(title: NSLocalizedString("_livephoto_save_", comment: ""),
  83. icon: CCGraphics.changeThemingColorImage(UIImage(named: "livePhoto"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  84. action: { menuAction in
  85. self.appDelegate.activeDetail.saveLivePhoto(metadata: metadata, metadataMov: metadataMov)
  86. }
  87. )
  88. )
  89. }
  90. }
  91. }
  92. if CCUtility.isDocumentModifiableExtension(fileNameExtension) && (directEditingCreators == nil || !appDelegate.reachability.isReachable()) {
  93. actions.append(
  94. NCMenuAction(title: NSLocalizedString("_internal_modify_", comment: ""),
  95. icon: CCGraphics.changeThemingColorImage(UIImage(named: "edit"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  96. action: { menuAction in
  97. if let navigationController = UIStoryboard(name: "NCText", bundle: nil).instantiateViewController(withIdentifier: "NCText") as? UINavigationController {
  98. navigationController.modalPresentationStyle = .pageSheet
  99. navigationController.modalTransitionStyle = .crossDissolve
  100. if let textViewController = navigationController.topViewController as? NCText {
  101. textViewController.metadata = metadata;
  102. viewController.present(navigationController, animated: true, completion: nil)
  103. }
  104. }
  105. }
  106. )
  107. )
  108. }
  109. actions.append(
  110. NCMenuAction(title: NSLocalizedString("_close_", comment: ""),
  111. icon: CCGraphics.changeThemingColorImage(UIImage(named: "exit"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  112. action: { menuAction in
  113. self.appDelegate.activeDetail.viewUnload()
  114. }
  115. )
  116. )
  117. return actions
  118. }
  119. @objc func toggleMoreMenu(viewController: UIViewController, metadata: tableMetadata) {
  120. if appDelegate.activeDetail.subViewActive() != nil {
  121. let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
  122. mainMenuViewController.actions = self.initMoreMenu(viewController: viewController, metadata: metadata)
  123. let menuPanelController = NCMenuPanelController()
  124. menuPanelController.parentPresenter = viewController
  125. menuPanelController.delegate = mainMenuViewController
  126. menuPanelController.set(contentViewController: mainMenuViewController)
  127. menuPanelController.track(scrollView: mainMenuViewController.tableView)
  128. viewController.present(menuPanelController, animated: true, completion: nil)
  129. }
  130. }
  131. }