b1ec9ccc249fdb467b0be3ebdd99fc05321adb6d
[pub/Android/ownCloud.git] / src / com / owncloud / android / operations / UnshareLinkOperation.java
1 /* ownCloud Android client application
2 * Copyright (C) 2014 ownCloud Inc.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 */
17
18 package com.owncloud.android.operations;
19
20 import java.util.ArrayList;
21
22 import com.owncloud.android.datamodel.OCFile;
23 import com.owncloud.android.lib.network.OwnCloudClient;
24 import com.owncloud.android.lib.operations.common.OCShare;
25 import com.owncloud.android.lib.operations.common.RemoteOperationResult;
26 import com.owncloud.android.lib.operations.common.RemoteOperationResult.ResultCode;
27 import com.owncloud.android.lib.operations.remote.GetRemoteSharesOperation;
28 import com.owncloud.android.operations.common.SyncOperation;
29 import com.owncloud.android.utils.Log_OC;
30
31 /**
32 * Unshare file/folder
33 * Save the data in Database
34 *
35 * @author masensio
36 */
37 public class UnshareLinkOperation extends SyncOperation {
38
39 private static final String TAG = UnshareLinkOperation.class.getSimpleName();
40
41 private OCFile mFile;
42
43 public UnshareLinkOperation(OCFile file) {
44 mFile = file;
45 }
46
47 @Override
48 protected RemoteOperationResult run(OwnCloudClient client) {
49 RemoteOperationResult result = null;
50
51 // Get Share for a file
52 OCShare share = getStorageManager().getShareByPath(mFile.getRemotePath());
53
54 if (share != null) {
55 GetRemoteSharesOperation operation = new GetRemoteSharesOperation();
56 result = operation.execute(client);
57
58 if (result.isSuccess()) {
59 Log_OC.d(TAG, "Share id = " + share.getIdRemoteShared() + " deleted");
60
61 // TODO Update DB
62
63 }
64 } else {
65 result = new RemoteOperationResult(ResultCode.FILE_NOT_FOUND);
66 }
67
68 return result;
69 }
70
71 }