123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- * Nextcloud - Android Client
- *
- * SPDX-FileCopyrightText: 2021 Tobias Kaminsky <tobias@kaminsky.me>
- * SPDX-FileCopyrightText: 2019 Andy Scherzinger <info@andy-scherzinger.de>
- * SPDX-FileCopyrightText: 2012-2014 ownCloud Inc.
- * SPDX-FileCopyrightText: 2014 Jorge Antonio Diaz-Benito Soriano <jorge.diazbenitosoriano@gmail.com>
- * SPDX-License-Identifier: GPL-2.0-only AND (AGPL-3.0-or-later OR GPL-2.0-only)
- */
- package com.owncloud.android.operations;
- import com.owncloud.android.datamodel.FileDataStorageManager;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.lib.common.OwnCloudClient;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
- import com.owncloud.android.lib.resources.files.CopyFileRemoteOperation;
- import com.owncloud.android.operations.common.SyncOperation;
- /**
- * Operation copying an {@link OCFile} to a different folder.
- *
- * @author David A. Velasco
- */
- public class CopyFileOperation extends SyncOperation {
- private final String srcPath;
- private String targetParentPath;
- /**
- * Constructor
- *
- * @param srcPath Remote path of the {@link OCFile} to move.
- * @param targetParentPath Path to the folder where the file will be copied into.
- */
- public CopyFileOperation(String srcPath, String targetParentPath, FileDataStorageManager storageManager) {
- super(storageManager);
- this.srcPath = srcPath;
- this.targetParentPath = targetParentPath;
- if (!this.targetParentPath.endsWith(OCFile.PATH_SEPARATOR)) {
- this.targetParentPath += OCFile.PATH_SEPARATOR;
- }
- }
- /**
- * Performs the operation.
- *
- * @param client Client object to communicate with the remote ownCloud server.
- */
- @Override
- protected RemoteOperationResult run(OwnCloudClient client) {
- /// 1. check copy validity
- if (targetParentPath.startsWith(srcPath)) {
- return new RemoteOperationResult(ResultCode.INVALID_COPY_INTO_DESCENDANT);
- }
- OCFile file = getStorageManager().getFileByPath(srcPath);
- if (file == null) {
- return new RemoteOperationResult(ResultCode.FILE_NOT_FOUND);
- }
- /// 2. remote copy
- String targetPath = targetParentPath + file.getFileName();
- if (file.isFolder()) {
- targetPath += OCFile.PATH_SEPARATOR;
- }
-
- // auto rename, to allow copy
- if (targetPath.equals(srcPath)) {
- if (file.isFolder()) {
- targetPath = targetParentPath + file.getFileName();
- }
- targetPath = UploadFileOperation.getNewAvailableRemotePath(client, targetPath, null, false);
- if (file.isFolder()) {
- targetPath += OCFile.PATH_SEPARATOR;
- }
- }
-
- RemoteOperationResult result = new CopyFileRemoteOperation(srcPath, targetPath, false).execute(client);
- /// 3. local copy
- if (result.isSuccess()) {
- getStorageManager().copyLocalFile(file, targetPath);
- }
- // TODO handle ResultCode.PARTIAL_COPY_DONE in client Activity, for the moment
- return result;
- }
- }
|