/* * Copyright (C) 2015 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 android.support.customtabs; import android.app.PendingIntent; import android.content.ComponentName; import android.graphics.Bitmap; import android.net.Uri; import android.os.Bundle; import android.os.IBinder; import android.os.RemoteException; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.customtabs.CustomTabsService.Result; import android.view.View; import android.widget.RemoteViews; import java.util.List; /** * A class to be used for Custom Tabs related communication. Clients that want to launch Custom Tabs * can use this class exclusively to handle all related communication. */ public final class CustomTabsSession { private static final String TAG = "CustomTabsSession"; private final Object mLock = new Object(); private final ICustomTabsService mService; private final ICustomTabsCallback mCallback; private final ComponentName mComponentName; /* package */ CustomTabsSession( ICustomTabsService service, ICustomTabsCallback callback, ComponentName componentName) { mService = service; mCallback = callback; mComponentName = componentName; } /** * Tells the browser of a likely future navigation to a URL. * The most likely URL has to be specified first. Optionally, a list of * other likely URLs can be provided. They are treated as less likely than * the first one, and have to be sorted in decreasing priority order. These * additional URLs may be ignored. * All previous calls to this method will be deprioritized. * * @param url Most likely URL. * @param extras Reserved for future use. * @param otherLikelyBundles Other likely destinations, sorted in decreasing * likelihood order. Inside each Bundle, the client should provide a * {@link Uri} using {@link CustomTabsService#KEY_URL} with * {@link Bundle#putParcelable(String, android.os.Parcelable)}. * @return true for success. */ public boolean mayLaunchUrl(Uri url, Bundle extras, List<Bundle> otherLikelyBundles) { try { return mService.mayLaunchUrl(mCallback, url, extras, otherLikelyBundles); } catch (RemoteException e) { return false; } } /** * This sets the action button on the toolbar with ID * {@link CustomTabsIntent#TOOLBAR_ACTION_BUTTON_ID}. * * @param icon The new icon of the action button. * @param description Content description of the action button. * * @see CustomTabsSession#setToolbarItem(int, Bitmap, String) */ public boolean setActionButton(@NonNull Bitmap icon, @NonNull String description) { Bundle bundle = new Bundle(); bundle.putParcelable(CustomTabsIntent.KEY_ICON, icon); bundle.putString(CustomTabsIntent.KEY_DESCRIPTION, description); Bundle metaBundle = new Bundle(); metaBundle.putBundle(CustomTabsIntent.EXTRA_ACTION_BUTTON_BUNDLE, bundle); try { return mService.updateVisuals(mCallback, metaBundle); } catch (RemoteException e) { return false; } } /** * Updates the {@link RemoteViews} of the secondary toolbar in an existing custom tab session. * @param remoteViews The updated {@link RemoteViews} that will be shown in secondary toolbar. * If null, the current secondary toolbar will be dismissed. * @param clickableIDs The ids of clickable views. The onClick event of these views will be * handled by custom tabs. * @param pendingIntent The {@link PendingIntent} that will be sent when the user clicks on one * of the {@link View}s in clickableIDs. */ public boolean setSecondaryToolbarViews(@Nullable RemoteViews remoteViews, @Nullable int[] clickableIDs, @Nullable PendingIntent pendingIntent) { Bundle bundle = new Bundle(); bundle.putParcelable(CustomTabsIntent.EXTRA_REMOTEVIEWS, remoteViews); bundle.putIntArray(CustomTabsIntent.EXTRA_REMOTEVIEWS_VIEW_IDS, clickableIDs); bundle.putParcelable(CustomTabsIntent.EXTRA_REMOTEVIEWS_PENDINGINTENT, pendingIntent); try { return mService.updateVisuals(mCallback, bundle); } catch (RemoteException e) { return false; } } /** * Updates the visuals for toolbar items. Will only succeed if a custom tab created using this * session is in the foreground in browser and the given id is valid. * @param id The id for the item to update. * @param icon The new icon of the toolbar item. * @param description Content description of the toolbar item. * @return Whether the update succeeded. * @deprecated Use * CustomTabsSession#setSecondaryToolbarViews(RemoteViews, int[], PendingIntent) */ @Deprecated public boolean setToolbarItem(int id, @NonNull Bitmap icon, @NonNull String description) { Bundle bundle = new Bundle(); bundle.putInt(CustomTabsIntent.KEY_ID, id); bundle.putParcelable(CustomTabsIntent.KEY_ICON, icon); bundle.putString(CustomTabsIntent.KEY_DESCRIPTION, description); Bundle metaBundle = new Bundle(); metaBundle.putBundle(CustomTabsIntent.EXTRA_ACTION_BUTTON_BUNDLE, bundle); try { return mService.updateVisuals(mCallback, metaBundle); } catch (RemoteException e) { return false; } } /** * Sends a request to create a two way postMessage channel between the client and the browser. * * @param postMessageOrigin A origin that the client is requesting to be identified as * during the postMessage communication. * @return Whether the implementation accepted the request. Note that returning true * here doesn't mean an origin has already been assigned as the validation is * asynchronous. */ public boolean requestPostMessageChannel(Uri postMessageOrigin) { try { return mService.requestPostMessageChannel( mCallback, postMessageOrigin); } catch (RemoteException e) { return false; } } /** * Sends a postMessage request using the origin communicated via * {@link CustomTabsService#requestPostMessageChannel( * CustomTabsSessionToken, Uri)}. Fails when called before * {@link PostMessageServiceConnection#notifyMessageChannelReady(Bundle)} is received on * the client side. * * @param message The message that is being sent. * @param extras Reserved for future use. * @return An integer constant about the postMessage request result. Will return * {@link CustomTabsService#RESULT_SUCCESS} if successful. */ @Result public int postMessage(String message, Bundle extras) { synchronized (mLock) { try { return mService.postMessage(mCallback, message, extras); } catch (RemoteException e) { return CustomTabsService.RESULT_FAILURE_REMOTE_ERROR; } } } /* package */ IBinder getBinder() { return mCallback.asBinder(); } /* package */ ComponentName getComponentName() { return mComponentName; } }