GetShareWithUsersAsyncTask.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 android.util.Pair;
  24. import com.owncloud.android.MainApp;
  25. import com.owncloud.android.datamodel.FileDataStorageManager;
  26. import com.owncloud.android.datamodel.OCFile;
  27. import com.owncloud.android.lib.common.OwnCloudAccount;
  28. import com.owncloud.android.lib.common.OwnCloudClient;
  29. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  30. import com.owncloud.android.lib.common.operations.OnRemoteOperationListener;
  31. import com.owncloud.android.lib.common.operations.RemoteOperation;
  32. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  33. import com.owncloud.android.lib.common.utils.Log_OC;
  34. import com.owncloud.android.operations.GetSharesForFileOperation;
  35. import java.lang.ref.WeakReference;
  36. /**
  37. * Async Task to get the users and groups which a file is shared with
  38. */
  39. public class GetShareWithUsersAsyncTask extends AsyncTask<Object, Void, Pair<RemoteOperation, RemoteOperationResult>> {
  40. private final String TAG = GetShareWithUsersAsyncTask.class.getSimpleName();
  41. private final WeakReference<OnRemoteOperationListener> mListener;
  42. public GetShareWithUsersAsyncTask(OnRemoteOperationListener listener) {
  43. mListener = new WeakReference<OnRemoteOperationListener>(listener);
  44. }
  45. @Override
  46. protected Pair<RemoteOperation, RemoteOperationResult> doInBackground(Object... params) {
  47. GetSharesForFileOperation operation = null;
  48. RemoteOperationResult result = null;
  49. if (params != null && params.length == 3) {
  50. OCFile file = (OCFile) params[0];
  51. Account account = (Account) params[1];
  52. FileDataStorageManager fileDataStorageManager = (FileDataStorageManager) params[2];
  53. try {
  54. // Get shares request
  55. operation = new GetSharesForFileOperation(file.getRemotePath(), false, false);
  56. OwnCloudAccount ocAccount = new OwnCloudAccount(
  57. account,
  58. MainApp.getAppContext()
  59. );
  60. OwnCloudClient client = OwnCloudClientManagerFactory.getDefaultSingleton().
  61. getClientFor(ocAccount, MainApp.getAppContext());
  62. result = operation.execute(client, fileDataStorageManager);
  63. } catch (Exception e) {
  64. result = new RemoteOperationResult(e);
  65. Log_OC.e(TAG, "Exception while getting shares", e);
  66. }
  67. } else {
  68. result = new RemoteOperationResult(RemoteOperationResult.ResultCode.UNKNOWN_ERROR);
  69. }
  70. return new Pair(operation, result);
  71. }
  72. @Override
  73. protected void onPostExecute(Pair<RemoteOperation, RemoteOperationResult> result) {
  74. if (result!= null)
  75. {
  76. OnRemoteOperationListener listener = mListener.get();
  77. if (listener!= null)
  78. {
  79. listener.onRemoteOperationFinish(result.first, result.second);
  80. }
  81. }
  82. }
  83. }