NCMedia+Command.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. //
  2. // NCMedia+Command.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/02/24.
  6. // Copyright © 2024 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 Foundation
  24. import UIKit
  25. import NextcloudKit
  26. extension NCMedia {
  27. @IBAction func selectOrCancelButtonPressed(_ sender: UIButton) {
  28. isEditMode = !isEditMode
  29. setSelectcancelButton()
  30. }
  31. func setEditMode(_ editMode: Bool) {
  32. isEditMode = editMode
  33. setSelectcancelButton()
  34. }
  35. func setSelectcancelButton() {
  36. selectOcId.removeAll()
  37. tabBarSelect.selectCount = selectOcId.count
  38. if let visibleCells = self.collectionView?.indexPathsForVisibleItems.compactMap({ self.collectionView?.cellForItem(at: $0) }) {
  39. for case let cell as NCGridMediaCell in visibleCells {
  40. cell.selected(false)
  41. }
  42. }
  43. if isEditMode {
  44. activityIndicatorTrailing.constant = 150
  45. selectOrCancelButton.setTitle( NSLocalizedString("_cancel_", comment: ""), for: .normal)
  46. selectOrCancelButtonTrailing.constant = 10
  47. selectOrCancelButton.isHidden = false
  48. menuButton.isHidden = true
  49. tabBarSelect.show()
  50. } else {
  51. activityIndicatorTrailing.constant = 150
  52. selectOrCancelButton.setTitle( NSLocalizedString("_select_", comment: ""), for: .normal)
  53. selectOrCancelButtonTrailing.constant = 50
  54. selectOrCancelButton.isHidden = false
  55. menuButton.isHidden = false
  56. tabBarSelect.hide()
  57. }
  58. }
  59. func setTitleDate(_ offset: CGFloat = 10) {
  60. titleDate?.text = ""
  61. if let metadata = metadatas?.first {
  62. let contentOffsetY = collectionView.contentOffset.y
  63. let top = insetsTop + view.safeAreaInsets.top + offset
  64. if insetsTop + view.safeAreaInsets.top + contentOffsetY < 10 {
  65. titleDate?.text = utility.getTitleFromDate(metadata.date as Date)
  66. return
  67. }
  68. let point = CGPoint(x: offset, y: top + contentOffsetY)
  69. if let indexPath = collectionView.indexPathForItem(at: point) {
  70. let cell = self.collectionView(collectionView, cellForItemAt: indexPath) as? NCGridMediaCell
  71. if let date = cell?.date {
  72. self.titleDate?.text = utility.getTitleFromDate(date)
  73. }
  74. } else {
  75. if offset < 20 {
  76. self.setTitleDate(20)
  77. }
  78. }
  79. }
  80. }
  81. func setColor() {
  82. if isTop {
  83. UIView.animate(withDuration: 0.3) { [self] in
  84. gradientView.alpha = 0
  85. titleDate?.textColor = NCBrandColor.shared.textColor
  86. activityIndicator.color = NCBrandColor.shared.textColor
  87. selectOrCancelButton.setTitleColor(NCBrandColor.shared.textColor, for: .normal)
  88. menuButton.setImage(NCUtility().loadImage(named: "ellipsis", colors: [NCBrandColor.shared.textColor]), for: .normal)
  89. }
  90. } else {
  91. UIView.animate(withDuration: 0.3) { [self] in
  92. gradientView.alpha = 1
  93. titleDate?.textColor = .white
  94. activityIndicator.color = .white
  95. selectOrCancelButton.setTitleColor(.white, for: .normal)
  96. menuButton.setImage(NCUtility().loadImage(named: "ellipsis", colors: [.white]), for: .normal)
  97. }
  98. }
  99. }
  100. func createMenu() {
  101. let layoutForView = NCManageDatabase.shared.getLayoutForView(account: appDelegate.account, key: NCGlobal.shared.layoutViewMedia, serverUrl: "")
  102. let columnPhoto = layoutForView?.columnPhoto ?? 3
  103. let layout = layoutForView?.layout ?? NCGlobal.shared.mediaLayoutRatio
  104. let layoutTitle = (layout == NCGlobal.shared.mediaLayoutRatio) ? NSLocalizedString("_media_square_", comment: "") : NSLocalizedString("_media_ratio_", comment: "")
  105. let layoutImage = (layout == NCGlobal.shared.mediaLayoutRatio) ? utility.loadImage(named: "square.grid.3x3") : utility.loadImage(named: "rectangle.grid.3x2")
  106. if CGFloat(columnPhoto) >= maxImageGrid - 1 {
  107. self.attributesZoomIn = []
  108. self.attributesZoomOut = .disabled
  109. } else if columnPhoto <= 1 {
  110. self.attributesZoomIn = .disabled
  111. self.attributesZoomOut = []
  112. } else {
  113. self.attributesZoomIn = []
  114. self.attributesZoomOut = []
  115. }
  116. let viewFilterMenu = UIMenu(title: "", options: .displayInline, children: [
  117. UIAction(title: NSLocalizedString("_media_viewimage_show_", comment: ""), image: utility.loadImage(named: "photo")) { _ in
  118. self.showOnlyImages = true
  119. self.showOnlyVideos = false
  120. self.reloadDataSource()
  121. },
  122. UIAction(title: NSLocalizedString("_media_viewvideo_show_", comment: ""), image: utility.loadImage(named: "video")) { _ in
  123. self.showOnlyImages = false
  124. self.showOnlyVideos = true
  125. self.reloadDataSource()
  126. },
  127. UIAction(title: NSLocalizedString("_media_show_all_", comment: ""), image: utility.loadImage(named: "photo.on.rectangle")) { _ in
  128. self.showOnlyImages = false
  129. self.showOnlyVideos = false
  130. self.reloadDataSource()
  131. }
  132. ])
  133. let viewLayoutMenu = UIAction(title: layoutTitle, image: layoutImage) { _ in
  134. if layout == NCGlobal.shared.mediaLayoutRatio {
  135. NCManageDatabase.shared.setLayoutForView(account: self.appDelegate.account, key: NCGlobal.shared.layoutViewMedia, serverUrl: "", layout: NCGlobal.shared.mediaLayoutSquare)
  136. self.layoutType = NCGlobal.shared.mediaLayoutSquare
  137. } else {
  138. NCManageDatabase.shared.setLayoutForView(account: self.appDelegate.account, key: NCGlobal.shared.layoutViewMedia, serverUrl: "", layout: NCGlobal.shared.mediaLayoutRatio)
  139. self.layoutType = NCGlobal.shared.mediaLayoutRatio
  140. }
  141. self.createMenu()
  142. self.collectionViewReloadData()
  143. }
  144. let viewOptionsMedia = UIMenu(title: "", options: .displayInline, children: [
  145. UIMenu(title: NSLocalizedString("_media_view_options_", comment: ""), children: [viewFilterMenu, viewLayoutMenu]),
  146. UIAction(title: NSLocalizedString("_select_media_folder_", comment: ""), image: utility.loadImage(named: "folder"), handler: { _ in
  147. guard let navigationController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  148. let viewController = navigationController.topViewController as? NCSelect else { return }
  149. viewController.delegate = self
  150. viewController.typeOfCommandView = .select
  151. viewController.type = "mediaFolder"
  152. self.present(navigationController, animated: true)
  153. })
  154. ])
  155. let zoomOut = UIAction(title: NSLocalizedString("_zoom_out_", comment: ""), image: utility.loadImage(named: "minus.magnifyingglass"), attributes: self.attributesZoomOut) { _ in
  156. UIView.animate(withDuration: 0.0, animations: {
  157. let column = columnPhoto + 1
  158. NCManageDatabase.shared.setLayoutForView(account: self.appDelegate.account, key: NCGlobal.shared.layoutViewMedia, serverUrl: "", columnPhoto: column)
  159. self.createMenu()
  160. self.collectionViewReloadData()
  161. })
  162. }
  163. let zoomIn = UIAction(title: NSLocalizedString("_zoom_in_", comment: ""), image: utility.loadImage(named: "plus.magnifyingglass"), attributes: self.attributesZoomIn) { _ in
  164. UIView.animate(withDuration: 0.0, animations: {
  165. let column = columnPhoto - 1
  166. NCManageDatabase.shared.setLayoutForView(account: self.appDelegate.account, key: NCGlobal.shared.layoutViewMedia, serverUrl: "", columnPhoto: column)
  167. self.createMenu()
  168. self.collectionViewReloadData()
  169. })
  170. }
  171. let playFile = UIAction(title: NSLocalizedString("_play_from_files_", comment: ""), image: utility.loadImage(named: "play.circle")) { _ in
  172. guard let controller = self.tabBarController as? NCMainTabBarController else { return }
  173. self.documentPickerViewController = NCDocumentPickerViewController(controller: controller, isViewerMedia: true, allowsMultipleSelection: false, viewController: self)
  174. }
  175. let playURL = UIAction(title: NSLocalizedString("_play_from_url_", comment: ""), image: utility.loadImage(named: "link")) { _ in
  176. let alert = UIAlertController(title: NSLocalizedString("_valid_video_url_", comment: ""), message: nil, preferredStyle: .alert)
  177. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: nil))
  178. alert.addTextField(configurationHandler: { textField in
  179. textField.placeholder = "http://myserver.com/movie.mkv"
  180. })
  181. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in
  182. guard let stringUrl = alert.textFields?.first?.text, !stringUrl.isEmpty, let url = URL(string: stringUrl) else { return }
  183. let fileName = url.lastPathComponent
  184. let metadata = NCManageDatabase.shared.createMetadata(account: self.activeAccount.account, user: self.activeAccount.user, userId: self.activeAccount.userId, fileName: fileName, fileNameView: fileName, ocId: NSUUID().uuidString, serverUrl: "", urlBase: self.activeAccount.urlBase, url: stringUrl, contentType: "")
  185. NCManageDatabase.shared.addMetadata(metadata)
  186. NCViewer().view(viewController: self, metadata: metadata, metadatas: [metadata], imageIcon: nil)
  187. }))
  188. self.present(alert, animated: true)
  189. }
  190. menuButton.menu = UIMenu(title: "", children: [zoomOut, zoomIn, viewOptionsMedia, playFile, playURL])
  191. }
  192. }
  193. extension NCMedia: NCMediaSelectTabBarDelegate {
  194. func delete() {
  195. let selectOcId = self.selectOcId.map { $0 }
  196. var alertStyle = UIAlertController.Style.actionSheet
  197. if UIDevice.current.userInterfaceIdiom == .pad { alertStyle = .alert }
  198. if !selectOcId.isEmpty {
  199. let alertController = UIAlertController(title: nil, message: nil, preferredStyle: alertStyle)
  200. alertController.addAction(UIAlertAction(title: NSLocalizedString("_delete_selected_photos_", comment: ""), style: .destructive) { (_: UIAlertAction) in
  201. Task {
  202. var error = NKError()
  203. var ocIds: [String] = []
  204. for ocId in selectOcId where error == .success {
  205. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  206. error = await NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false)
  207. if error == .success {
  208. ocIds.append(metadata.ocId)
  209. }
  210. }
  211. }
  212. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDeleteFile, userInfo: ["ocId": ocIds, "onlyLocalCache": false, "error": error])
  213. }
  214. self.isEditMode = false
  215. self.setSelectcancelButton()
  216. })
  217. alertController.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel) { (_: UIAlertAction) in })
  218. present(alertController, animated: true, completion: { })
  219. }
  220. }
  221. }