1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
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.
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.
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/>.
18 package com
.owncloud
.android
.operations
;
20 import java
.util
.ArrayList
;
22 import com
.owncloud
.android
.datamodel
.FileDataStorageManager
;
23 import com
.owncloud
.android
.datamodel
.OCFile
;
24 import com
.owncloud
.android
.lib
.network
.OwnCloudClient
;
25 import com
.owncloud
.android
.lib
.operations
.common
.RemoteOperation
;
26 import com
.owncloud
.android
.lib
.operations
.common
.RemoteOperationResult
;
27 import com
.owncloud
.android
.lib
.operations
.common
.OCShare
;
28 import com
.owncloud
.android
.lib
.operations
.common
.ShareType
;
29 import com
.owncloud
.android
.lib
.operations
.remote
.GetRemoteSharesOperation
;
30 import com
.owncloud
.android
.lib
.utils
.FileUtils
;
31 import com
.owncloud
.android
.utils
.Log_OC
;
34 * Access to remote operation to get the share files/folders
35 * Save the data in Database
40 public class GetSharesOperation
extends RemoteOperation
{
42 private static final String TAG
= GetSharesOperation
.class.getSimpleName();
44 protected FileDataStorageManager mStorageManager
;
47 public GetSharesOperation(FileDataStorageManager storageManager
) {
48 mStorageManager
= storageManager
;
52 protected RemoteOperationResult
run(OwnCloudClient client
) {
53 GetRemoteSharesOperation operation
= new GetRemoteSharesOperation(client
.getBaseUri().toString());
54 RemoteOperationResult result
= operation
.execute(client
);
56 if (result
.isSuccess()) {
58 // Update DB with the response
59 Log_OC
.d(TAG
, "Share list size = " + result
.getData().size());
60 ArrayList
<OCShare
> shares
= new ArrayList
<OCShare
>();
61 for(Object obj
: result
.getData()) {
62 shares
.add((OCShare
) obj
);
71 private void saveSharesDB(ArrayList
<OCShare
> shares
) {
73 if (shares
.size() > 0) {
75 mStorageManager
.saveShares(shares
);
77 ArrayList
<OCFile
> sharedFiles
= new ArrayList
<OCFile
>();
79 for (OCShare share
: shares
) {
81 String path
= share
.getPath();
82 if (share
.isDirectory()) {
83 path
= path
+ FileUtils
.PATH_SEPARATOR
;
86 // Update OCFile with data from share: ShareByLink ¿and publicLink?
87 OCFile file
= mStorageManager
.getFileByPath(path
);
89 if (share
.getShareType().equals(ShareType
.PUBLIC_LINK
)) {
90 file
.setShareByLink(true
);
91 sharedFiles
.add(file
);
96 if (sharedFiles
.size() > 0) {
97 mStorageManager
.updateSharedFiles(sharedFiles
);