123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * ownCloud Android client application
- *
- * @author David A. Velasco
- * @author masensio
- * @author Tobias Kaminsky
- * 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 android.accounts.Account;
- import android.content.Context;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.datamodel.ThumbnailsCacheManager;
- import com.owncloud.android.lib.common.OwnCloudClient;
- import com.owncloud.android.lib.common.operations.RemoteOperation;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
- import com.owncloud.android.lib.resources.files.RemoveFileRemoteOperation;
- import com.owncloud.android.operations.common.SyncOperation;
- import com.owncloud.android.utils.MimeTypeUtil;
- /**
- * Remote operation performing the removal of a remote file or folder in the ownCloud server.
- */
- public class RemoveFileOperation extends SyncOperation {
- private OCFile fileToRemove;
- private boolean onlyLocalCopy;
- private Account account;
- private boolean inBackground;
- private Context context;
- /**
- * Constructor
- *
- * @param fileToRemove OCFile instance describing the remote file or folder to remove from the server
- * @param onlyLocalCopy When 'true', and a local copy of the file exists, only this is removed.
- */
- public RemoveFileOperation(OCFile fileToRemove,
- boolean onlyLocalCopy,
- Account account,
- boolean inBackground,
- Context context) {
- this.fileToRemove = fileToRemove;
- this.onlyLocalCopy = onlyLocalCopy;
- this.account = account;
- this.inBackground = inBackground;
- this.context = context;
- }
- /**
- * Getter for the file to remove (or removed, if the operation was successfully performed).
- *
- * @return File to remove or already removed.
- */
- public OCFile getFile() {
- return fileToRemove;
- }
- public boolean isInBackground() {
- return inBackground;
- }
- /**
- * Performs the remove operation
- *
- * @param client Client object to communicate with the remote ownCloud server.
- */
- @Override
- protected RemoteOperationResult run(OwnCloudClient client) {
- RemoteOperationResult result = null;
- RemoteOperation operation;
- if (MimeTypeUtil.isImage(fileToRemove.getMimeType())) {
- // store resized image
- ThumbnailsCacheManager.generateResizedImage(fileToRemove);
- }
- boolean localRemovalFailed = false;
- if (!onlyLocalCopy) {
- if (fileToRemove.isEncrypted() &&
- android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {
- OCFile parent = getStorageManager().getFileByPath(fileToRemove.getParentRemotePath());
- operation = new RemoveRemoteEncryptedFileOperation(fileToRemove.getRemotePath(),
- parent.getLocalId(),
- account,
- context,
- fileToRemove.getEncryptedFileName());
- } else {
- operation = new RemoveFileRemoteOperation(fileToRemove.getRemotePath());
- }
- result = operation.execute(client);
- if (result.isSuccess() || result.getCode() == ResultCode.FILE_NOT_FOUND) {
- localRemovalFailed = !(getStorageManager().removeFile(fileToRemove, true, true));
- }
- } else {
- localRemovalFailed = !(getStorageManager().removeFile(fileToRemove, false, true));
- if (!localRemovalFailed) {
- result = new RemoteOperationResult(ResultCode.OK);
- }
- }
- if (localRemovalFailed) {
- result = new RemoteOperationResult(ResultCode.LOCAL_STORAGE_NOT_REMOVED);
- }
- return result;
- }
- }
|