From: masensio Date: Mon, 3 Feb 2014 11:56:47 +0000 (+0100) Subject: OC-2733: Add UnshareLink Operation X-Git-Tag: oc-android-1.5.5~35^2~34 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/1f6eb722f4e81fd6d9b148215ba2e891dabd0824 OC-2733: Add UnshareLink Operation --- diff --git a/owncloud-android-library b/owncloud-android-library index 09b1c3c1..8c87d88c 160000 --- a/owncloud-android-library +++ b/owncloud-android-library @@ -1 +1 @@ -Subproject commit 09b1c3c15aa2644635796c93ee918f8b0a20ff7c +Subproject commit 8c87d88cff376038248216ea2eb00c0c5ed110e0 diff --git a/src/com/owncloud/android/operations/GetSharesOperation.java b/src/com/owncloud/android/operations/GetSharesOperation.java index 4cbee02a..7129a213 100644 --- a/src/com/owncloud/android/operations/GetSharesOperation.java +++ b/src/com/owncloud/android/operations/GetSharesOperation.java @@ -1,5 +1,5 @@ /* ownCloud Android client application - * Copyright (C) 2012-2013 ownCloud Inc. + * Copyright (C) 2012-2014 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, diff --git a/src/com/owncloud/android/operations/UnshareLinkOperation.java b/src/com/owncloud/android/operations/UnshareLinkOperation.java new file mode 100644 index 00000000..b1ec9ccc --- /dev/null +++ b/src/com/owncloud/android/operations/UnshareLinkOperation.java @@ -0,0 +1,71 @@ +/* ownCloud Android client application + * Copyright (C) 2014 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 . + * + */ + +package com.owncloud.android.operations; + +import java.util.ArrayList; + +import com.owncloud.android.datamodel.OCFile; +import com.owncloud.android.lib.network.OwnCloudClient; +import com.owncloud.android.lib.operations.common.OCShare; +import com.owncloud.android.lib.operations.common.RemoteOperationResult; +import com.owncloud.android.lib.operations.common.RemoteOperationResult.ResultCode; +import com.owncloud.android.lib.operations.remote.GetRemoteSharesOperation; +import com.owncloud.android.operations.common.SyncOperation; +import com.owncloud.android.utils.Log_OC; + +/** + * Unshare file/folder + * Save the data in Database + * + * @author masensio + */ +public class UnshareLinkOperation extends SyncOperation { + + private static final String TAG = UnshareLinkOperation.class.getSimpleName(); + + private OCFile mFile; + + public UnshareLinkOperation(OCFile file) { + mFile = file; + } + + @Override + protected RemoteOperationResult run(OwnCloudClient client) { + RemoteOperationResult result = null; + + // Get Share for a file + OCShare share = getStorageManager().getShareByPath(mFile.getRemotePath()); + + if (share != null) { + GetRemoteSharesOperation operation = new GetRemoteSharesOperation(); + result = operation.execute(client); + + if (result.isSuccess()) { + Log_OC.d(TAG, "Share id = " + share.getIdRemoteShared() + " deleted"); + + // TODO Update DB + + } + } else { + result = new RemoteOperationResult(ResultCode.FILE_NOT_FOUND); + } + + return result; + } + +}