/* * Copyright 2012 The Android Open Source Project * * 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 * * 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 com.google.android.gms.auth.sample.helloauth; import com.google.android.gms.auth.GoogleAuthException; import com.google.android.gms.auth.GoogleAuthUtil; import com.google.android.gms.auth.UserRecoverableNotifiedException; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.util.Log; import java.io.IOException; /** * This example shows how to fetch tokens if you are creating a background task. It also shows how * you can create a broadcast receiver and create a callback for it. */ public class GetNameInBackground extends AbstractGetNameTask { public GetNameInBackground(HelloActivity activity, String email, String scope, int requestCode) { super(activity, email, scope, requestCode); } /** * Get a authentication token if one is not available. If the error was recoverable then a * notification will automatically be pushed. The callback provided will be fired once the * notification is addressed by the user successfully. If the error is not recoverable then * it displays the error message on parent activity. */ @Override protected String fetchToken() throws IOException { try { return GoogleAuthUtil.getTokenWithNotification( mActivity, mEmail, mScope, null, makeCallback(mEmail)); } catch (UserRecoverableNotifiedException userRecoverableException) { // Unable to authenticate, but the user can fix this. // Forward the user to the appropriate activity. onError("Could not fetch token.", null); } catch (GoogleAuthException fatalException) { onError("Unrecoverable error " + fatalException.getMessage(), fatalException); } return null; } private Intent makeCallback(String accountName) { Intent intent = new Intent(); intent.setAction("com.google.android.gms.auth.sample.helloauth.Callback"); intent.putExtra(HelloActivity.EXTRA_ACCOUNTNAME, accountName); intent.putExtra(HelloActivity.TYPE_KEY, HelloActivity.Type.BACKGROUND.name()); return intent; } /** * Note: Make sure that the receiver can be called from outside the app. You can do that by adding * android:exported="true" in the manifest file. */ public static class CallbackReceiver extends BroadcastReceiver { public static final String TAG = "CallbackReceiver"; @Override public void onReceive(Context context, Intent callback) { Bundle extras = callback.getExtras(); Intent intent = new Intent(context, HelloActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.putExtras(extras); Log.i(TAG, "Received broadcast. Resurrecting activity"); context.startActivity(intent); } } }