AuthenticatorAsyncTask.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author masensio on 09/02/2015.
  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.authentication;
  21. import android.app.Activity;
  22. import android.content.Context;
  23. import android.net.Uri;
  24. import android.os.AsyncTask;
  25. import com.owncloud.android.lib.common.OwnCloudClient;
  26. import com.owncloud.android.lib.common.OwnCloudClientFactory;
  27. import com.owncloud.android.lib.common.OwnCloudCredentials;
  28. import com.owncloud.android.lib.common.network.RedirectionPath;
  29. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  30. import com.owncloud.android.lib.resources.files.ExistenceCheckRemoteOperation;
  31. import com.owncloud.android.lib.resources.users.GetRemoteUserInfoOperation;
  32. import java.lang.ref.WeakReference;
  33. import static com.owncloud.android.datamodel.OCFile.ROOT_PATH;
  34. /**
  35. * Async Task to verify the credentials of a user
  36. */
  37. public class AuthenticatorAsyncTask extends AsyncTask<Object, Void, RemoteOperationResult> {
  38. private static final boolean SUCCESS_IF_ABSENT = false;
  39. private WeakReference<Context> mWeakContext;
  40. private final WeakReference<OnAuthenticatorTaskListener> mListener;
  41. public AuthenticatorAsyncTask(Activity activity) {
  42. mWeakContext = new WeakReference<>(activity.getApplicationContext());
  43. mListener = new WeakReference<>((OnAuthenticatorTaskListener)activity);
  44. }
  45. @Override
  46. protected RemoteOperationResult doInBackground(Object... params) {
  47. RemoteOperationResult result;
  48. if (params != null && params.length == 2 && mWeakContext.get() != null) {
  49. String url = (String)params[0];
  50. Context context = mWeakContext.get();
  51. OwnCloudCredentials credentials = (OwnCloudCredentials)params[1];
  52. // Client
  53. Uri uri = Uri.parse(url);
  54. OwnCloudClient client = OwnCloudClientFactory.createOwnCloudClient(uri, context, true);
  55. client.setCredentials(credentials);
  56. // Operation - try credentials
  57. ExistenceCheckRemoteOperation operation = new ExistenceCheckRemoteOperation(ROOT_PATH, SUCCESS_IF_ABSENT);
  58. result = operation.execute(client);
  59. if (operation.wasRedirected()) {
  60. RedirectionPath redirectionPath = operation.getRedirectionPath();
  61. String permanentLocation = redirectionPath.getLastPermanentLocation();
  62. result.setLastPermanentLocation(permanentLocation);
  63. }
  64. // Operation - get display name
  65. if (result.isSuccess()) {
  66. GetRemoteUserInfoOperation remoteUserNameOperation = new GetRemoteUserInfoOperation();
  67. result = remoteUserNameOperation.execute(client);
  68. }
  69. } else {
  70. result = new RemoteOperationResult(RemoteOperationResult.ResultCode.UNKNOWN_ERROR);
  71. }
  72. return result;
  73. }
  74. @Override
  75. protected void onPostExecute(RemoteOperationResult result) {
  76. if (result!= null)
  77. {
  78. OnAuthenticatorTaskListener listener = mListener.get();
  79. if (listener!= null)
  80. {
  81. listener.onAuthenticatorTaskCallback(result);
  82. }
  83. }
  84. }
  85. /*
  86. * Interface to retrieve data from recognition task
  87. */
  88. public interface OnAuthenticatorTaskListener{
  89. void onAuthenticatorTaskCallback(RemoteOperationResult result);
  90. }
  91. }