AuthenticatorAsyncTask.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. /**
  34. * Async Task to verify the credentials of a user
  35. */
  36. public class AuthenticatorAsyncTask extends AsyncTask<Object, Void, RemoteOperationResult> {
  37. private static String REMOTE_PATH = "/";
  38. private static boolean SUCCESS_IF_ABSENT = false;
  39. private Context mContext;
  40. private final WeakReference<OnAuthenticatorTaskListener> mListener;
  41. public AuthenticatorAsyncTask(Activity activity) {
  42. mContext = 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) {
  49. String url = (String)params[0];
  50. OwnCloudCredentials credentials = (OwnCloudCredentials)params[1];
  51. // Client
  52. Uri uri = Uri.parse(url);
  53. OwnCloudClient client = OwnCloudClientFactory.createOwnCloudClient(uri, mContext, true);
  54. client.setCredentials(credentials);
  55. // Operation - try credentials
  56. ExistenceCheckRemoteOperation operation = new ExistenceCheckRemoteOperation(
  57. REMOTE_PATH,
  58. mContext,
  59. SUCCESS_IF_ABSENT
  60. );
  61. result = operation.execute(client);
  62. if (operation.wasRedirected()) {
  63. RedirectionPath redirectionPath = operation.getRedirectionPath();
  64. String permanentLocation = redirectionPath.getLastPermanentLocation();
  65. result.setLastPermanentLocation(permanentLocation);
  66. }
  67. // Operation - get display name
  68. if (result.isSuccess()) {
  69. GetRemoteUserInfoOperation remoteUserNameOperation = new GetRemoteUserInfoOperation();
  70. result = remoteUserNameOperation.execute(client);
  71. }
  72. } else {
  73. result = new RemoteOperationResult(RemoteOperationResult.ResultCode.UNKNOWN_ERROR);
  74. }
  75. return result;
  76. }
  77. @Override
  78. protected void onPostExecute(RemoteOperationResult result) {
  79. if (result!= null)
  80. {
  81. OnAuthenticatorTaskListener listener = mListener.get();
  82. if (listener!= null)
  83. {
  84. listener.onAuthenticatorTaskCallback(result);
  85. }
  86. }
  87. }
  88. /*
  89. * Interface to retrieve data from recognition task
  90. */
  91. public interface OnAuthenticatorTaskListener{
  92. void onAuthenticatorTaskCallback(RemoteOperationResult result);
  93. }
  94. }