mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
200 lines
7.4 KiB
Java
200 lines
7.4 KiB
Java
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Android Sync Client.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* the Mozilla Foundation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Chenxia Liu <liuche@mozilla.com>
|
|
* Richard Newman <rnewman@mozilla.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
package org.mozilla.gecko.sync.setup;
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
import org.mozilla.gecko.sync.Logger;
|
|
import org.mozilla.gecko.sync.crypto.KeyBundle;
|
|
import org.mozilla.gecko.sync.setup.activities.SetupSyncActivity;
|
|
|
|
import android.accounts.AbstractAccountAuthenticator;
|
|
import android.accounts.Account;
|
|
import android.accounts.AccountAuthenticatorResponse;
|
|
import android.accounts.AccountManager;
|
|
import android.accounts.NetworkErrorException;
|
|
import android.app.Service;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.os.IBinder;
|
|
|
|
public class SyncAuthenticatorService extends Service {
|
|
private static final String LOG_TAG = "SyncAuthService";
|
|
private SyncAccountAuthenticator sAccountAuthenticator = null;
|
|
|
|
@Override
|
|
public void onCreate() {
|
|
Logger.debug(LOG_TAG, "onCreate");
|
|
sAccountAuthenticator = getAuthenticator();
|
|
}
|
|
|
|
@Override
|
|
public IBinder onBind(Intent intent) {
|
|
if (intent.getAction().equals(android.accounts.AccountManager.ACTION_AUTHENTICATOR_INTENT)) {
|
|
return getAuthenticator().getIBinder();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private SyncAccountAuthenticator getAuthenticator() {
|
|
if (sAccountAuthenticator == null) {
|
|
sAccountAuthenticator = new SyncAccountAuthenticator(this);
|
|
}
|
|
return sAccountAuthenticator;
|
|
}
|
|
|
|
private static class SyncAccountAuthenticator extends AbstractAccountAuthenticator {
|
|
private Context mContext;
|
|
public SyncAccountAuthenticator(Context context) {
|
|
super(context);
|
|
mContext = context;
|
|
}
|
|
|
|
@Override
|
|
public Bundle addAccount(AccountAuthenticatorResponse response,
|
|
String accountType, String authTokenType, String[] requiredFeatures,
|
|
Bundle options) throws NetworkErrorException {
|
|
Logger.debug(LOG_TAG, "addAccount()");
|
|
final Intent intent = new Intent(mContext, SetupSyncActivity.class);
|
|
intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE,
|
|
response);
|
|
intent.putExtra("accountType", Constants.ACCOUNTTYPE_SYNC);
|
|
intent.putExtra(Constants.INTENT_EXTRA_IS_SETUP, true);
|
|
|
|
final Bundle result = new Bundle();
|
|
result.putParcelable(AccountManager.KEY_INTENT, intent);
|
|
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public Bundle confirmCredentials(AccountAuthenticatorResponse response,
|
|
Account account,
|
|
Bundle options) throws NetworkErrorException {
|
|
Logger.debug(LOG_TAG, "confirmCredentials()");
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Bundle editProperties(AccountAuthenticatorResponse response,
|
|
String accountType) {
|
|
Logger.debug(LOG_TAG, "editProperties");
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Bundle getAuthToken(AccountAuthenticatorResponse response,
|
|
Account account, String authTokenType, Bundle options)
|
|
throws NetworkErrorException {
|
|
Logger.debug(LOG_TAG, "getAuthToken()");
|
|
if (!authTokenType.equals(Constants.AUTHTOKEN_TYPE_PLAIN)) {
|
|
final Bundle result = new Bundle();
|
|
result.putString(AccountManager.KEY_ERROR_MESSAGE,
|
|
"invalid authTokenType");
|
|
return result;
|
|
}
|
|
|
|
// Extract the username and password from the Account Manager, and ask
|
|
// the server for an appropriate AuthToken.
|
|
Logger.info(LOG_TAG, "AccountManager.get(" + mContext + ")");
|
|
final AccountManager am = AccountManager.get(mContext);
|
|
final String password = am.getPassword(account);
|
|
if (password != null) {
|
|
final Bundle result = new Bundle();
|
|
|
|
// This is a Sync account.
|
|
result.putString(AccountManager.KEY_ACCOUNT_TYPE, Constants.ACCOUNTTYPE_SYNC);
|
|
|
|
// Server.
|
|
String serverURL = am.getUserData(account, Constants.OPTION_SERVER);
|
|
result.putString(Constants.OPTION_SERVER, serverURL);
|
|
|
|
// Full username, before hashing.
|
|
result.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
|
|
|
|
// Username after hashing.
|
|
try {
|
|
String username = KeyBundle.usernameFromAccount(account.name);
|
|
Logger.pii(LOG_TAG, "Account " + account.name + " hashes to " + username);
|
|
Logger.info(LOG_TAG, "Setting username. Null? " + (username == null));
|
|
result.putString(Constants.OPTION_USERNAME, username);
|
|
} catch (NoSuchAlgorithmException e) {
|
|
// Do nothing. Calling code must check for missing value.
|
|
} catch (UnsupportedEncodingException e) {
|
|
// Do nothing. Calling code must check for missing value.
|
|
}
|
|
|
|
// Sync key.
|
|
final String syncKey = am.getUserData(account, Constants.OPTION_SYNCKEY);
|
|
Logger.info(LOG_TAG, "Setting Sync Key. Null? " + (syncKey == null));
|
|
result.putString(Constants.OPTION_SYNCKEY, syncKey);
|
|
|
|
// Password.
|
|
result.putString(AccountManager.KEY_AUTHTOKEN, password);
|
|
return result;
|
|
}
|
|
Logger.warn(LOG_TAG, "Returning null bundle for getAuthToken.");
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getAuthTokenLabel(String authTokenType) {
|
|
Logger.debug(LOG_TAG, "getAuthTokenLabel()");
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Bundle hasFeatures(AccountAuthenticatorResponse response,
|
|
Account account, String[] features) throws NetworkErrorException {
|
|
Logger.debug(LOG_TAG, "hasFeatures()");
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Bundle updateCredentials(AccountAuthenticatorResponse response,
|
|
Account account, String authTokenType, Bundle options)
|
|
throws NetworkErrorException {
|
|
Logger.debug(LOG_TAG, "updateCredentials()");
|
|
return null;
|
|
}
|
|
}
|
|
}
|