Merge branch 'share_link_show_shared_files' into share_link__unshare_file
[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 com.owncloud.android.datamodel.OCFile;
21 import com.owncloud.android.lib.network.OwnCloudClient;
22 import com.owncloud.android.lib.operations.common.OCShare;
23 import com.owncloud.android.lib.operations.common.RemoteOperationResult;
24 import com.owncloud.android.lib.operations.common.RemoteOperationResult.ResultCode;
25 import com.owncloud.android.lib.operations.remote.RemoveRemoteShareOperation;
26 import com.owncloud.android.operations.common.SyncOperation;
27 import com.owncloud.android.utils.Log_OC;
28
29 /**
30 * Unshare file/folder
31 * Save the data in Database
32 *
33 * @author masensio
34 */
35 public class UnshareLinkOperation extends SyncOperation {
36
37 private static final String TAG = UnshareLinkOperation.class.getSimpleName();
38
39 private OCFile mFile;
40
41 public UnshareLinkOperation(OCFile file) {
42 mFile = file;
43 }
44
45 @Override
46 protected RemoteOperationResult run(OwnCloudClient client) {
47 RemoteOperationResult result = null;
48
49 // Get Share for a file
50 String path = mFile.getRemotePath();
51 if (mFile.isFolder()) {
52 path = path.substring(0, path.length()-1); // Remove last /
53 }
54 OCShare share = getStorageManager().getShareByPath(path);
55
56 if (share != null) {
57 RemoveRemoteShareOperation operation = new RemoveRemoteShareOperation((int) share.getIdRemoteShared());
58 result = operation.execute(client);
59
60 if (result.isSuccess() || result.getCode() == ResultCode.SHARE_NOT_FOUND) {
61 Log_OC.d(TAG, "Share id = " + share.getIdRemoteShared() + " deleted");
62
63 mFile.setShareByLink(false);
64 mFile.setPublicLink("");
65 getStorageManager().saveFile(mFile);
66 getStorageManager().removeShare(share);
67
68 if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
69 result = new RemoteOperationResult(ResultCode.OK);
70 }
71 }
72
73 } else {
74 result = new RemoteOperationResult(ResultCode.SHARE_NOT_FOUND);
75 }
76
77 return result;
78 }
79
80 }