GetShareWithUserAsyncTask.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * Copyright (C) 2015 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package com.owncloud.android.utils;
  21. import android.accounts.Account;
  22. import android.os.AsyncTask;
  23. import com.owncloud.android.MainApp;
  24. import com.owncloud.android.datamodel.FileDataStorageManager;
  25. import com.owncloud.android.datamodel.OCFile;
  26. import com.owncloud.android.lib.common.OwnCloudAccount;
  27. import com.owncloud.android.lib.common.OwnCloudClient;
  28. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  29. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  30. import com.owncloud.android.lib.common.utils.Log_OC;
  31. import com.owncloud.android.lib.resources.shares.OCShare;
  32. import com.owncloud.android.operations.GetSharesForFileOperation;
  33. import java.lang.ref.WeakReference;
  34. import java.util.ArrayList;
  35. /**
  36. * Async Task to get the users and groups which a file is shared with
  37. */
  38. public class GetShareWithUserAsyncTask extends AsyncTask<Object, Void, RemoteOperationResult> {
  39. private final String TAG = GetShareWithUserAsyncTask.class.getSimpleName();
  40. private final WeakReference<OnGetSharesWithUserTaskListener> mListener;
  41. private ArrayList<OCShare> mShares;
  42. public ArrayList<OCShare> getShares(){
  43. return mShares;
  44. }
  45. public GetShareWithUserAsyncTask(OnGetSharesWithUserTaskListener listener) {
  46. mListener = new WeakReference<OnGetSharesWithUserTaskListener>(listener);
  47. }
  48. @Override
  49. protected RemoteOperationResult doInBackground(Object... params) {
  50. RemoteOperationResult result = null;
  51. if (params != null && params.length == 3) {
  52. OCFile file = (OCFile) params[0];
  53. Account account = (Account) params[1];
  54. FileDataStorageManager fileDataStorageManager = (FileDataStorageManager) params[2];
  55. try {
  56. // Get shares request
  57. GetSharesForFileOperation operation =
  58. new GetSharesForFileOperation(file.getRemotePath(), false, false);
  59. OwnCloudAccount ocAccount = new OwnCloudAccount(account,
  60. MainApp.getAppContext());
  61. OwnCloudClient client = OwnCloudClientManagerFactory.getDefaultSingleton().
  62. getClientFor(ocAccount, MainApp.getAppContext());
  63. result = operation.execute(client, fileDataStorageManager);
  64. } catch (Exception e) {
  65. result = new RemoteOperationResult(e);
  66. Log_OC.e(TAG, "Exception while getting shares", e);
  67. }
  68. } else {
  69. result = new RemoteOperationResult(RemoteOperationResult.ResultCode.UNKNOWN_ERROR);
  70. }
  71. return result;
  72. }
  73. @Override
  74. protected void onPostExecute(RemoteOperationResult result) {
  75. if (result!= null)
  76. {
  77. OnGetSharesWithUserTaskListener listener = mListener.get();
  78. if (listener!= null)
  79. {
  80. listener.onGetDataShareWithFinish(result);
  81. }
  82. }
  83. }
  84. /*
  85. * Interface to retrieve data from get shares task
  86. */
  87. public interface OnGetSharesWithUserTaskListener{
  88. void onGetDataShareWithFinish(RemoteOperationResult result);
  89. }
  90. }