VancedMicroG/play-services-core/src/main/java/org/microg/gms/auth/AuthManagerServiceImpl.java

129 lines
5.5 KiB
Java
Raw Normal View History

/*
2015-02-01 22:27:46 +00:00
* Copyright 2013-2015 µg Project Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
2015-01-28 14:29:50 +00:00
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.microg.gms.auth;
import android.accounts.Account;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.RemoteException;
2015-03-09 23:06:49 +00:00
import android.util.Base64;
import android.util.Log;
2015-02-03 22:08:55 +00:00
import com.google.android.auth.IAuthManagerService;
2015-02-10 02:33:30 +00:00
import com.google.android.gms.auth.AccountChangeEventsRequest;
import com.google.android.gms.auth.AccountChangeEventsResponse;
2015-03-06 19:08:47 +00:00
import org.microg.gms.common.PackageUtils;
2014-09-18 14:43:24 +00:00
import java.io.IOException;
2015-03-09 23:06:49 +00:00
import static android.accounts.AccountManager.KEY_ACCOUNT_NAME;
import static android.accounts.AccountManager.KEY_ACCOUNT_TYPE;
import static android.accounts.AccountManager.KEY_AUTHTOKEN;
import static org.microg.gms.auth.AskPermissionActivity.EXTRA_CONSENT_DATA;
public class AuthManagerServiceImpl extends IAuthManagerService.Stub {
2015-03-01 13:54:31 +00:00
private static final String TAG = "GmsAuthManagerSvc";
2015-02-10 02:33:30 +00:00
public static final String KEY_AUTHORITY = "authority";
public static final String KEY_CALLBACK_INTENT = "callback_intent";
public static final String KEY_CALLER_UID = "callerUid";
2015-03-24 21:21:35 +00:00
public static final String KEY_ANDROID_PACKAGE_NAME = "androidPackageName";
public static final String KEY_CLIENT_PACKAGE_NAME = "clientPackageName";
public static final String KEY_HANDLE_NOTIFICATION = "handle_notification";
public static final String KEY_REQUEST_ACTIONS = "request_visible_actions";
public static final String KEY_REQUEST_VISIBLE_ACTIVITIES = "request_visible_actions";
public static final String KEY_SUPPRESS_PROGRESS_SCREEN = "suppressProgressScreen";
public static final String KEY_SYNC_EXTRAS = "sync_extras";
public static final String KEY_ERROR = "Error";
public static final String KEY_USER_RECOVERY_INTENT = "userRecoveryIntent";
2015-03-09 23:06:49 +00:00
private final Context context;
public AuthManagerServiceImpl(Context context) {
this.context = context;
}
@Override
public Bundle getToken(String accountName, String scope, Bundle extras) throws RemoteException {
2015-03-23 21:30:41 +00:00
String packageName = extras.getString(KEY_ANDROID_PACKAGE_NAME);
2015-03-24 21:21:35 +00:00
if (packageName == null || packageName.isEmpty())
packageName = extras.getString(KEY_CLIENT_PACKAGE_NAME);
2014-09-18 14:43:24 +00:00
int callerUid = extras.getInt(KEY_CALLER_UID, 0);
2015-03-06 19:08:47 +00:00
PackageUtils.checkPackageUid(context, packageName, callerUid, getCallingUid());
boolean notify = extras.getBoolean(KEY_HANDLE_NOTIFICATION, false);
Log.d(TAG, "getToken: account:" + accountName + " scope:" + scope + " extras:" + extras + ", notify: " + notify);
2015-03-09 23:06:49 +00:00
AuthManager authManager = new AuthManager(context, accountName, packageName, scope);
try {
AuthResponse res = authManager.requestAuth(false);
if (res.auth != null) {
Log.d(TAG, "getToken: " + res.auth);
Bundle result = new Bundle();
2015-03-24 21:21:35 +00:00
result.putString(KEY_AUTHTOKEN, res.auth);
2015-03-09 23:06:49 +00:00
result.putString(KEY_ERROR, "OK");
return result;
} else {
2015-03-09 23:06:49 +00:00
Bundle result = new Bundle();
2015-03-24 21:21:35 +00:00
result.putString(KEY_ERROR, "NeedPermission");
2015-03-09 23:06:49 +00:00
Intent i = new Intent(context, AskPermissionActivity.class);
i.putExtras(extras);
i.putExtra(KEY_ANDROID_PACKAGE_NAME, packageName);
i.putExtra(KEY_ACCOUNT_TYPE, authManager.getAccountType());
2015-03-09 23:06:49 +00:00
i.putExtra(KEY_ACCOUNT_NAME, accountName);
i.putExtra(KEY_AUTHTOKEN, scope);
try {
if (res.consentDataBase64 != null)
i.putExtra(EXTRA_CONSENT_DATA, Base64.decode(res.consentDataBase64, Base64.URL_SAFE));
} catch (Exception e) {
Log.w(TAG, "Can't decode consent data: ", e);
}
2015-03-24 21:21:35 +00:00
result.putParcelable(KEY_USER_RECOVERY_INTENT, i);
2015-03-09 23:06:49 +00:00
return result;
}
} catch (IOException e) {
2015-03-09 23:06:49 +00:00
Log.w(TAG, e);
Bundle result = new Bundle();
result.putString(KEY_ERROR, "NetworkError");
return result;
}
}
2015-02-10 02:33:30 +00:00
@Override
public AccountChangeEventsResponse getChangeEvents(AccountChangeEventsRequest request) {
return new AccountChangeEventsResponse();
}
@Override
public Bundle getTokenWithAccount(Account account, String scope, Bundle extras) throws RemoteException {
return getToken(account.name, scope, extras);
}
@Override
public Bundle clearToken(String token, Bundle extras) throws RemoteException {
2015-03-24 21:21:35 +00:00
String packageName = extras.getString(KEY_ANDROID_PACKAGE_NAME);
if (packageName == null) packageName = extras.getString(KEY_CLIENT_PACKAGE_NAME);
2015-03-23 21:30:41 +00:00
int callerUid = extras.getInt(KEY_CALLER_UID, 0);
PackageUtils.checkPackageUid(context, packageName, callerUid, getCallingUid());
Log.d(TAG, "clearToken: token:" + token + " extras:" + extras);
return null;
}
}