|
@@ -30,6 +30,7 @@ import com.owncloud.android.lib.common.OwnCloudCredentials;
|
|
|
import com.owncloud.android.lib.common.network.RedirectionPath;
|
|
|
import com.owncloud.android.lib.common.operations.RemoteOperationResult;
|
|
|
import com.owncloud.android.lib.resources.files.ExistenceCheckRemoteOperation;
|
|
|
+import com.owncloud.android.lib.resources.users.GetRemoteUserNameOperation;
|
|
|
|
|
|
import java.lang.ref.WeakReference;
|
|
|
|
|
@@ -44,11 +45,10 @@ public class AuthenticatorAsyncTask extends AsyncTask<Object, Void, RemoteOpera
|
|
|
|
|
|
private Context mContext;
|
|
|
private final WeakReference<OnAuthenticatorTaskListener> mListener;
|
|
|
- protected Activity mActivity;
|
|
|
|
|
|
public AuthenticatorAsyncTask(Activity activity) {
|
|
|
mContext = activity.getApplicationContext();
|
|
|
- mListener = new WeakReference<OnAuthenticatorTaskListener>((OnAuthenticatorTaskListener)activity);
|
|
|
+ mListener = new WeakReference<>((OnAuthenticatorTaskListener)activity);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -64,7 +64,7 @@ public class AuthenticatorAsyncTask extends AsyncTask<Object, Void, RemoteOpera
|
|
|
OwnCloudClient client = OwnCloudClientFactory.createOwnCloudClient(uri, mContext, true);
|
|
|
client.setCredentials(credentials);
|
|
|
|
|
|
- // Operation
|
|
|
+ // Operation - try credentials
|
|
|
ExistenceCheckRemoteOperation operation = new ExistenceCheckRemoteOperation(
|
|
|
REMOTE_PATH,
|
|
|
mContext,
|
|
@@ -78,6 +78,12 @@ public class AuthenticatorAsyncTask extends AsyncTask<Object, Void, RemoteOpera
|
|
|
result.setLastPermanentLocation(permanentLocation);
|
|
|
}
|
|
|
|
|
|
+ // Operation - get display name
|
|
|
+ if (result.isSuccess()) {
|
|
|
+ GetRemoteUserNameOperation remoteUserNameOperation = new GetRemoteUserNameOperation();
|
|
|
+ result = remoteUserNameOperation.execute(client);
|
|
|
+ }
|
|
|
+
|
|
|
} else {
|
|
|
result = new RemoteOperationResult(RemoteOperationResult.ResultCode.UNKNOWN_ERROR);
|
|
|
}
|