1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- * ownCloud Android client application
- *
- * @author David A. Velasco
- * Copyright (C) 2015 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * 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/>.
- */
- package com.owncloud.android.operations;
- 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.MoveFileRemoteOperation;
- import com.owncloud.android.operations.common.SyncOperation;
- /**
- * Operation moving an {@link OCFile} to a different folder.
- */
- public class MoveFileOperation extends SyncOperation {
- private 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 moved into.
- */
- public MoveFileOperation(String srcPath, String targetParentPath) {
- 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 move validity
- if (targetParentPath.startsWith(srcPath)) {
- return new RemoteOperationResult(ResultCode.INVALID_MOVE_INTO_DESCENDANT);
- }
- OCFile file = getStorageManager().getFileByPath(srcPath);
- if (file == null) {
- return new RemoteOperationResult(ResultCode.FILE_NOT_FOUND);
- }
- /// 2. remote move
- String targetPath = targetParentPath + file.getFileName();
- if (file.isFolder()) {
- targetPath += OCFile.PATH_SEPARATOR;
- }
- RemoteOperationResult result = new MoveFileRemoteOperation(srcPath, targetPath, false).execute(client);
- /// 3. local move
- if (result.isSuccess()) {
- getStorageManager().moveLocalFile(file, targetPath, targetParentPath);
- }
- // TODO handle ResultCode.PARTIAL_MOVE_DONE in client Activity, for the moment
- return result;
- }
- }
|