12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- //
- // NCMedia+DragDrop.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 21/04/24.
- // Copyright © 2024 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- import UniformTypeIdentifiers
- import NextcloudKit
- // MARK: - Drag
- extension NCMedia: UICollectionViewDragDelegate {
- func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
- if isEditMode {
- return NCDragDrop().performDrag(fileSelect: fileSelect)
- } else if let ocId = dataSource.getMetadata(indexPath: indexPath)?.ocId,
- let metadata = database.getMetadataFromOcId(ocId) {
- return NCDragDrop().performDrag(metadata: metadata)
- }
- return []
- }
- }
- // MARK: - Drop
- extension NCMedia: UICollectionViewDropDelegate {
- func collectionView(_ collectionView: UICollectionView, canHandle session: UIDropSession) -> Bool {
- return session.canLoadObjects(ofClass: UIImage.self) || session.hasItemsConforming(toTypeIdentifiers: [UTType.movie.identifier, global.metadataOcIdDataRepresentation])
- }
- func collectionView(_ collectionView: UICollectionView, performDropWith coordinator: UICollectionViewDropCoordinator) {
- DragDropHover.shared.cleanPushDragDropHover()
- DragDropHover.shared.sourceMetadatas = nil
- guard let tableAccount = database.getTableAccount(predicate: NSPredicate(format: "account == %@", session.account)) else { return }
- let serverUrl = NCUtilityFileSystem().getHomeServer(session: session) + tableAccount.mediaPath
- if let metadatas = NCDragDrop().performDrop(collectionView, performDropWith: coordinator, serverUrl: serverUrl, isImageVideo: true, controller: self.controller) {
- DragDropHover.shared.sourceMetadatas = metadatas
- openMenu(collectionView: collectionView, location: coordinator.session.location(in: collectionView))
- }
- }
- func collectionView(_ collectionView: UICollectionView, dropSessionDidExit session: UIDropSession) {
- DragDropHover.shared.cleanPushDragDropHover()
- }
- func collectionView(_ collectionView: UICollectionView, dropSessionDidEnd session: UIDropSession) {
- DragDropHover.shared.cleanPushDragDropHover()
- }
- // MARK: -
- private func openMenu(collectionView: UICollectionView, location: CGPoint) {
- var listMenuItems: [UIMenuItem] = []
- listMenuItems.append(UIMenuItem(title: NSLocalizedString("_copy_", comment: ""), action: #selector(copyMenuFile)))
- listMenuItems.append(UIMenuItem(title: NSLocalizedString("_move_", comment: ""), action: #selector(moveMenuFile)))
- UIMenuController.shared.menuItems = listMenuItems
- UIMenuController.shared.showMenu(from: collectionView, rect: CGRect(x: location.x, y: location.y, width: 0, height: 0))
- }
- @objc func copyMenuFile() {
- guard let sourceMetadatas = DragDropHover.shared.sourceMetadatas else { return }
- if let tableAccount = database.getTableAccount(predicate: NSPredicate(format: "account == %@", session.account)) {
- let serverUrl = NCUtilityFileSystem().getHomeServer(session: session) + tableAccount.mediaPath
- NCDragDrop().copyFile(metadatas: sourceMetadatas, serverUrl: serverUrl)
- }
- }
- @objc func moveMenuFile() {
- guard let sourceMetadatas = DragDropHover.shared.sourceMetadatas else { return }
- if let tableAccount = database.getTableAccount(predicate: NSPredicate(format: "account == %@", session.account)) {
- let serverUrl = NCUtilityFileSystem().getHomeServer(session: session) + tableAccount.mediaPath
- NCDragDrop().moveFile(metadatas: sourceMetadatas, serverUrl: serverUrl)
- }
- }
- }
|