mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-08 00:16:09 +00:00
152 lines
5.0 KiB
Java
152 lines
5.0 KiB
Java
/* ownCloud Android Library is available under MIT license
|
|
* Copyright (C) 2015 ownCloud Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
package com.owncloud.android.lib.common;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import com.owncloud.android.lib.common.accounts.AccountUtils;
|
|
import com.owncloud.android.lib.common.accounts.AccountUtils.AccountNotFoundException;
|
|
|
|
import android.accounts.Account;
|
|
import android.accounts.AccountManager;
|
|
import android.accounts.AuthenticatorException;
|
|
import android.accounts.OperationCanceledException;
|
|
import android.content.Context;
|
|
import android.net.Uri;
|
|
|
|
/**
|
|
* OwnCloud Account
|
|
*
|
|
* @author David A. Velasco
|
|
*/
|
|
public class OwnCloudAccount {
|
|
|
|
private Uri mBaseUri;
|
|
|
|
private OwnCloudCredentials mCredentials;
|
|
|
|
private String mDisplayName;
|
|
|
|
private String mSavedAccountName;
|
|
|
|
private Account mSavedAccount;
|
|
|
|
|
|
/**
|
|
* Constructor for already saved OC accounts.
|
|
*
|
|
* Do not use for anonymous credentials.
|
|
*/
|
|
public OwnCloudAccount(Account savedAccount, Context context) throws AccountNotFoundException {
|
|
if (savedAccount == null) {
|
|
throw new IllegalArgumentException("Parameter 'savedAccount' cannot be null");
|
|
}
|
|
|
|
if (context == null) {
|
|
throw new IllegalArgumentException("Parameter 'context' cannot be null");
|
|
}
|
|
|
|
mSavedAccount = savedAccount;
|
|
mSavedAccountName = savedAccount.name;
|
|
mCredentials = null; // load of credentials is delayed
|
|
|
|
AccountManager ama = AccountManager.get(context.getApplicationContext());
|
|
String baseUrl = ama.getUserData(mSavedAccount, AccountUtils.Constants.KEY_OC_BASE_URL);
|
|
if (baseUrl == null ) {
|
|
throw new AccountNotFoundException(mSavedAccount, "Account not found", null);
|
|
}
|
|
mBaseUri = Uri.parse(AccountUtils.getBaseUrlForAccount(context, mSavedAccount));
|
|
mDisplayName = ama.getUserData(mSavedAccount, AccountUtils.Constants.KEY_DISPLAY_NAME);
|
|
}
|
|
|
|
|
|
/**
|
|
* Constructor for non yet saved OC accounts.
|
|
*
|
|
* @param baseUri URI to the OC server to get access to.
|
|
* @param credentials Credentials to authenticate in the server. NULL is valid for anonymous credentials.
|
|
*/
|
|
public OwnCloudAccount(Uri baseUri, OwnCloudCredentials credentials) {
|
|
if (baseUri == null) {
|
|
throw new IllegalArgumentException("Parameter 'baseUri' cannot be null");
|
|
}
|
|
mSavedAccount = null;
|
|
mSavedAccountName = null;
|
|
mBaseUri = baseUri;
|
|
mCredentials = credentials != null ?
|
|
credentials : OwnCloudCredentialsFactory.getAnonymousCredentials();
|
|
String username = mCredentials.getUsername();
|
|
if (username != null) {
|
|
mSavedAccountName = AccountUtils.buildAccountName(mBaseUri, username);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Method for deferred load of account attributes from AccountManager
|
|
*
|
|
* @param context
|
|
* @throws AccountNotFoundException
|
|
* @throws AuthenticatorException
|
|
* @throws IOException
|
|
* @throws OperationCanceledException
|
|
*/
|
|
public void loadCredentials(Context context)
|
|
throws AccountNotFoundException, AuthenticatorException,
|
|
IOException, OperationCanceledException {
|
|
|
|
if (context == null) {
|
|
throw new IllegalArgumentException("Parameter 'context' cannot be null");
|
|
}
|
|
|
|
if (mSavedAccount != null) {
|
|
mCredentials = AccountUtils.getCredentialsForAccount(context, mSavedAccount);
|
|
}
|
|
}
|
|
|
|
public Uri getBaseUri() {
|
|
return mBaseUri;
|
|
}
|
|
|
|
public OwnCloudCredentials getCredentials() {
|
|
return mCredentials;
|
|
}
|
|
|
|
public String getName() {
|
|
return mSavedAccountName;
|
|
}
|
|
|
|
public String getDisplayName() {
|
|
if (mDisplayName != null && mDisplayName.length() > 0) {
|
|
return mDisplayName;
|
|
} else if (mCredentials != null) {
|
|
return mCredentials.getUsername();
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
} |