NCMedia+Menu.swift 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. //
  2. // NCMedia+Menu.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 03/03/2021.
  6. // Copyright © 2021 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 NCMedia {
  27. func tapSelect() {
  28. self.isEditMode = false
  29. self.selectOcId.removeAll()
  30. self.selectIndexPath.removeAll()
  31. self.collectionView?.reloadData()
  32. }
  33. func toggleMenu() {
  34. var actions: [NCMenuAction] = []
  35. defer { presentMenu(with: actions) }
  36. if !isEditMode {
  37. if let metadatas = self.metadatas, !metadatas.isEmpty {
  38. actions.append(
  39. NCMenuAction(
  40. title: NSLocalizedString("_select_", comment: ""),
  41. icon: utility.loadImage(named: "checkmark.circle.fill"),
  42. action: { _ in
  43. self.isEditMode = true
  44. }
  45. )
  46. )
  47. }
  48. actions.append(.seperator(order: 0))
  49. actions.append(
  50. NCMenuAction(
  51. title: NSLocalizedString("_select_media_folder_", comment: ""),
  52. icon: utility.loadImage(named: "folder"),
  53. action: { _ in
  54. if let navigationController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  55. let viewController = navigationController.topViewController as? NCSelect {
  56. viewController.delegate = self
  57. viewController.typeOfCommandView = .select
  58. viewController.type = "mediaFolder"
  59. viewController.selectIndexPath = self.selectIndexPath
  60. self.present(navigationController, animated: true, completion: nil)
  61. }
  62. }
  63. )
  64. )
  65. actions.append(.seperator(order: 0))
  66. actions.append(
  67. NCMenuAction(
  68. title: NSLocalizedString("_media_viewimage_show_", comment: ""),
  69. icon: utility.loadImage(named: "photo"),
  70. selected: showOnlyImages,
  71. on: true,
  72. action: { _ in
  73. self.showOnlyImages = true
  74. self.showOnlyVideos = false
  75. self.reloadDataSource()
  76. }
  77. )
  78. )
  79. actions.append(
  80. NCMenuAction(
  81. title: NSLocalizedString("_media_viewvideo_show_", comment: ""),
  82. icon: utility.loadImage(named: "video"),
  83. selected: showOnlyVideos,
  84. on: true,
  85. action: { _ in
  86. self.showOnlyImages = false
  87. self.showOnlyVideos = true
  88. self.reloadDataSource()
  89. }
  90. )
  91. )
  92. actions.append(
  93. NCMenuAction(
  94. title: NSLocalizedString("_media_show_all_", comment: ""),
  95. icon: utility.loadImage(named: "photo.on.rectangle.angled"),
  96. selected: !showOnlyImages && !showOnlyVideos,
  97. on: true,
  98. action: { _ in
  99. self.showOnlyImages = false
  100. self.showOnlyVideos = false
  101. self.reloadDataSource()
  102. }
  103. )
  104. )
  105. actions.append(.seperator(order: 0))
  106. actions.append(
  107. NCMenuAction(
  108. title: NSLocalizedString("_play_from_files_", comment: ""),
  109. icon: utility.loadImage(named: "play.circle"),
  110. action: { _ in
  111. if let tabBarController = self.appDelegate.window?.rootViewController as? UITabBarController {
  112. self.documentPickerViewController = NCDocumentPickerViewController(tabBarController: tabBarController, isViewerMedia: true, allowsMultipleSelection: false, viewController: self)
  113. }
  114. }
  115. )
  116. )
  117. actions.append(
  118. NCMenuAction(
  119. title: NSLocalizedString("_play_from_url_", comment: ""),
  120. icon: utility.loadImage(named: "network"),
  121. action: { _ in
  122. let alert = UIAlertController(title: NSLocalizedString("_valid_video_url_", comment: ""), message: nil, preferredStyle: .alert)
  123. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: nil))
  124. alert.addTextField(configurationHandler: { textField in
  125. textField.placeholder = "http://myserver.com/movie.mkv"
  126. })
  127. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in
  128. guard let stringUrl = alert.textFields?.first?.text, !stringUrl.isEmpty, let url = URL(string: stringUrl) else { return }
  129. let fileName = url.lastPathComponent
  130. let metadata = NCManageDatabase.shared.createMetadata(account: self.appDelegate.account, user: self.appDelegate.user, userId: self.appDelegate.userId, fileName: fileName, fileNameView: fileName, ocId: NSUUID().uuidString, serverUrl: "", urlBase: self.appDelegate.urlBase, url: stringUrl, contentType: "")
  131. NCManageDatabase.shared.addMetadata(metadata)
  132. NCViewer().view(viewController: self, metadata: metadata, metadatas: [metadata], imageIcon: nil)
  133. }))
  134. self.present(alert, animated: true)
  135. }
  136. )
  137. )
  138. } else {
  139. //
  140. // CANCEL
  141. //
  142. actions.append(
  143. NCMenuAction(
  144. title: NSLocalizedString("_cancel_", comment: ""),
  145. icon: utility.loadImage(named: "xmark"),
  146. action: { _ in self.tapSelect() }
  147. )
  148. )
  149. guard !selectOcId.isEmpty else { return }
  150. let selectedMetadatas = selectOcId.compactMap(NCManageDatabase.shared.getMetadataFromOcId)
  151. //
  152. // OPEN IN
  153. //
  154. actions.append(.openInAction(selectedMetadatas: selectedMetadatas, viewController: self, completion: tapSelect))
  155. //
  156. // SAVE TO PHOTO GALLERY
  157. //
  158. actions.append(.saveMediaAction(selectedMediaMetadatas: selectedMetadatas, completion: tapSelect))
  159. //
  160. // COPY - MOVE
  161. //
  162. actions.append(.moveOrCopyAction(selectedMetadatas: selectedMetadatas, indexPath: selectIndexPath, completion: tapSelect))
  163. //
  164. // COPY
  165. //
  166. actions.append(.copyAction(selectOcId: selectOcId, completion: tapSelect))
  167. //
  168. // DELETE
  169. // can't delete from cache because is needed for NCMedia view, and if locked can't delete from server either.
  170. if !selectedMetadatas.contains(where: { $0.lock && $0.lockOwner != appDelegate.userId }) {
  171. actions.append(.deleteAction(selectedMetadatas: selectedMetadatas, indexPath: selectIndexPath, metadataFolder: nil, viewController: self, completion: tapSelect))
  172. }
  173. }
  174. }
  175. }