OC-2677: Add GetSharesForFile operation
[pub/Android/ownCloud.git] / src / com / owncloud / android / operations / GetSharesOperation.java
1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 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.lib.network.OwnCloudClient;
23 import com.owncloud.android.lib.operations.common.RemoteOperationResult;
24 import com.owncloud.android.lib.operations.common.OCShare;
25 import com.owncloud.android.lib.operations.remote.GetRemoteSharesOperation;
26 import com.owncloud.android.operations.common.SyncOperation;
27 import com.owncloud.android.utils.Log_OC;
28
29 /**
30 * Access to remote operation to get the share files/folders
31 * Save the data in Database
32 *
33 * @author masensio
34 * @author David A. Velasco
35 */
36
37 public class GetSharesOperation extends SyncOperation {
38
39 private static final String TAG = GetSharesOperation.class.getSimpleName();
40
41 @Override
42 protected RemoteOperationResult run(OwnCloudClient client) {
43 GetRemoteSharesOperation operation = new GetRemoteSharesOperation();
44 RemoteOperationResult result = operation.execute(client);
45
46 if (result.isSuccess()) {
47
48 // Update DB with the response
49 Log_OC.d(TAG, "Share list size = " + result.getData().size());
50 ArrayList<OCShare> shares = new ArrayList<OCShare>();
51 for(Object obj: result.getData()) {
52 shares.add((OCShare) obj);
53 }
54
55 getStorageManager().saveSharesDB(shares);
56 }
57
58 return result;
59 }
60
61 }