blob: e22c5dc915cbba238c982013d485707985d0ffcc [file] [log] [blame]
Michael Kolb8233fac2010-10-26 16:08:53 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18package com.android.browser;
19
Michael Kolb8233fac2010-10-26 16:08:53 -070020import android.app.Activity;
21import android.app.SearchManager;
22import android.content.ContentResolver;
23import android.content.Context;
24import android.content.Intent;
25import android.net.Uri;
Jeff Hamiltonfd77aaa2011-06-17 16:19:33 -050026import android.nfc.NfcAdapter;
Michael Kolb8233fac2010-10-26 16:08:53 -070027import android.os.AsyncTask;
28import android.os.Bundle;
29import android.provider.Browser;
30import android.provider.MediaStore;
Michael Kolb8233fac2010-10-26 16:08:53 -070031import android.text.TextUtils;
32import android.util.Patterns;
33
Michael Kolb315d5022011-10-13 12:47:11 -070034import com.android.browser.UI.ComboViews;
Michael Kolbe28b3472011-08-04 16:54:31 -070035import com.android.browser.search.SearchEngine;
36import com.android.common.Search;
Michael Kolbe28b3472011-08-04 16:54:31 -070037
Michael Kolb8233fac2010-10-26 16:08:53 -070038import java.util.HashMap;
39import java.util.Iterator;
40import java.util.Map;
41
42/**
43 * Handle all browser related intents
44 */
45public class IntentHandler {
46
47 // "source" parameter for Google search suggested by the browser
48 final static String GOOGLE_SEARCH_SOURCE_SUGGEST = "browser-suggest";
49 // "source" parameter for Google search from unknown source
50 final static String GOOGLE_SEARCH_SOURCE_UNKNOWN = "unknown";
51
52 /* package */ static final UrlData EMPTY_URL_DATA = new UrlData(null);
53
54 private Activity mActivity;
55 private Controller mController;
56 private TabControl mTabControl;
57 private BrowserSettings mSettings;
58
59 public IntentHandler(Activity browser, Controller controller) {
60 mActivity = browser;
61 mController = controller;
62 mTabControl = mController.getTabControl();
63 mSettings = controller.getSettings();
64 }
65
66 void onNewIntent(Intent intent) {
67 Tab current = mTabControl.getCurrentTab();
68 // When a tab is closed on exit, the current tab index is set to -1.
69 // Reset before proceed as Browser requires the current tab to be set.
70 if (current == null) {
71 // Try to reset the tab in case the index was incorrect.
72 current = mTabControl.getTab(0);
73 if (current == null) {
74 // No tabs at all so just ignore this intent.
75 return;
76 }
77 mController.setActiveTab(current);
Michael Kolb8233fac2010-10-26 16:08:53 -070078 }
79 final String action = intent.getAction();
80 final int flags = intent.getFlags();
81 if (Intent.ACTION_MAIN.equals(action) ||
82 (flags & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) {
83 // just resume the browser
84 return;
85 }
John Reck439c9a52010-12-14 10:04:39 -080086 if (BrowserActivity.ACTION_SHOW_BOOKMARKS.equals(action)) {
Michael Kolb315d5022011-10-13 12:47:11 -070087 mController.bookmarksOrHistoryPicker(ComboViews.Bookmarks);
John Reck439c9a52010-12-14 10:04:39 -080088 return;
89 }
John Reck07af2b82011-01-18 14:24:43 -080090
Michael Kolb8233fac2010-10-26 16:08:53 -070091 // In case the SearchDialog is open.
92 ((SearchManager) mActivity.getSystemService(Context.SEARCH_SERVICE))
93 .stopSearch();
Michael Kolb8233fac2010-10-26 16:08:53 -070094 if (Intent.ACTION_VIEW.equals(action)
Jeff Hamiltonfd77aaa2011-06-17 16:19:33 -050095 || NfcAdapter.ACTION_NDEF_DISCOVERED.equals(action)
Michael Kolb8233fac2010-10-26 16:08:53 -070096 || Intent.ACTION_SEARCH.equals(action)
97 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
Michael Kolb5ff5c8b2012-05-03 11:37:58 -070098 || Intent.ACTION_WEB_SEARCH.equals(action)) {
Michael Kolb8233fac2010-10-26 16:08:53 -070099 // If this was a search request (e.g. search query directly typed into the address bar),
100 // pass it on to the default web search provider.
101 if (handleWebSearchIntent(mActivity, mController, intent)) {
102 return;
103 }
104
105 UrlData urlData = getUrlDataFromIntent(intent);
106 if (urlData.isEmpty()) {
107 urlData = new UrlData(mSettings.getHomePage());
108 }
109
Michael Kolb14612442011-06-24 13:06:29 -0700110 if (intent.getBooleanExtra(Browser.EXTRA_CREATE_NEW_TAB, false)
111 || urlData.isPreloaded()) {
112 Tab t = mController.openTab(urlData);
Leon Scroggins2ed6e312011-02-22 16:37:23 -0500113 return;
114 }
John Reckdb22ec42011-06-29 11:31:24 -0700115 /*
116 * TODO: Don't allow javascript URIs
117 * 0) If this is a javascript: URI, *always* open a new tab
Michael Kolb5ff5c8b2012-05-03 11:37:58 -0700118 * 1) If the URL is already opened, switch to that tab
119 * 2-phone) Reuse tab with same appId
120 * 2-tablet) Open new tab
John Reckdb22ec42011-06-29 11:31:24 -0700121 */
Michael Kolb8233fac2010-10-26 16:08:53 -0700122 final String appId = intent
123 .getStringExtra(Browser.EXTRA_APPLICATION_ID);
John Reck26b18322011-06-21 13:08:58 -0700124 if (!TextUtils.isEmpty(urlData.mUrl) &&
125 urlData.mUrl.startsWith("javascript:")) {
126 // Always open javascript: URIs in new tabs
127 mController.openTab(urlData);
128 return;
129 }
Michael Kolbf1286a42012-04-17 14:10:52 -0700130 if (Intent.ACTION_VIEW.equals(action)
131 && (appId != null)
132 && appId.startsWith(mActivity.getPackageName())) {
133 Tab appTab = mTabControl.getTabFromAppId(appId);
134 if ((appTab != null) && (appTab == mController.getCurrentTab())) {
135 mController.switchToTab(appTab);
136 mController.loadUrlDataIn(appTab, urlData);
137 return;
138 }
139 }
Michael Kolb5ff5c8b2012-05-03 11:37:58 -0700140 if (Intent.ACTION_VIEW.equals(action)
141 && !mActivity.getPackageName().equals(appId)) {
Michael Kolb8d772b02012-01-19 13:56:00 -0800142 if (!BrowserActivity.isTablet(mActivity)
143 && !mSettings.allowAppTabs()) {
Michael Kolbc831b632011-05-11 09:30:34 -0700144 Tab appTab = mTabControl.getTabFromAppId(appId);
Michael Kolbaf0d3342011-03-11 11:30:16 -0800145 if (appTab != null) {
John Reck26b18322011-06-21 13:08:58 -0700146 mController.reuseTab(appTab, urlData);
Michael Kolbaf0d3342011-03-11 11:30:16 -0800147 return;
Michael Kolbaf0d3342011-03-11 11:30:16 -0800148 }
John Reckdb22ec42011-06-29 11:31:24 -0700149 }
150 // No matching application tab, try to find a regular tab
151 // with a matching url.
152 Tab appTab = mTabControl.findTabWithUrl(urlData.mUrl);
153 if (appTab != null) {
154 // Transfer ownership
155 appTab.setAppId(appId);
156 if (current != appTab) {
157 mController.switchToTab(appTab);
158 }
159 // Otherwise, we are already viewing the correct tab.
Michael Kolb8233fac2010-10-26 16:08:53 -0700160 } else {
John Reckdb22ec42011-06-29 11:31:24 -0700161 // if FLAG_ACTIVITY_BROUGHT_TO_FRONT flag is on, the url
162 // will be opened in a new tab unless we have reached
163 // MAX_TABS. Then the url will be opened in the current
164 // tab. If a new tab is created, it will have "true" for
165 // exit on close.
166 Tab tab = mController.openTab(urlData);
167 if (tab != null) {
168 tab.setAppId(appId);
Michael Kolbe28b3472011-08-04 16:54:31 -0700169 if ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) != 0) {
170 tab.setCloseOnBack(true);
171 }
Michael Kolb8233fac2010-10-26 16:08:53 -0700172 }
173 }
174 } else {
175 if (!urlData.isEmpty()
176 && urlData.mUrl.startsWith("about:debug")) {
177 if ("about:debug.dom".equals(urlData.mUrl)) {
Jonathan Dixon4d2fcab2012-02-24 00:13:06 +0000178 current.getWebViewClassic().dumpDomTree(false);
Michael Kolb8233fac2010-10-26 16:08:53 -0700179 } else if ("about:debug.dom.file".equals(urlData.mUrl)) {
Jonathan Dixon4d2fcab2012-02-24 00:13:06 +0000180 current.getWebViewClassic().dumpDomTree(true);
Michael Kolb8233fac2010-10-26 16:08:53 -0700181 } else if ("about:debug.render".equals(urlData.mUrl)) {
Jonathan Dixon4d2fcab2012-02-24 00:13:06 +0000182 current.getWebViewClassic().dumpRenderTree(false);
Michael Kolb8233fac2010-10-26 16:08:53 -0700183 } else if ("about:debug.render.file".equals(urlData.mUrl)) {
Jonathan Dixon4d2fcab2012-02-24 00:13:06 +0000184 current.getWebViewClassic().dumpRenderTree(true);
Michael Kolb8233fac2010-10-26 16:08:53 -0700185 } else if ("about:debug.display".equals(urlData.mUrl)) {
Jonathan Dixon4d2fcab2012-02-24 00:13:06 +0000186 current.getWebViewClassic().dumpDisplayTree();
Cary Clark4f4cb6b2011-01-18 13:03:42 -0500187 } else if ("about:debug.nav".equals(urlData.mUrl)) {
188 current.getWebView().debugDump();
Michael Kolb8233fac2010-10-26 16:08:53 -0700189 } else {
John Reck35e9dd62011-04-25 09:01:54 -0700190 mSettings.toggleDebugSettings();
Michael Kolb8233fac2010-10-26 16:08:53 -0700191 }
192 return;
193 }
194 // Get rid of the subwindow if it exists
195 mController.dismissSubWindow(current);
196 // If the current Tab is being used as an application tab,
197 // remove the association, since the new Intent means that it is
198 // no longer associated with that application.
199 current.setAppId(null);
200 mController.loadUrlDataIn(current, urlData);
201 }
202 }
203 }
204
Michael Kolb14612442011-06-24 13:06:29 -0700205 protected static UrlData getUrlDataFromIntent(Intent intent) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700206 String url = "";
207 Map<String, String> headers = null;
Mathew Inwood29721c22011-06-29 17:55:24 +0100208 PreloadedTabControl preloaded = null;
209 String preloadedSearchBoxQuery = null;
Leon Scrogginse1cab102011-01-04 10:50:13 -0500210 if (intent != null
211 && (intent.getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) == 0) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700212 final String action = intent.getAction();
Jeff Hamiltonfd77aaa2011-06-17 16:19:33 -0500213 if (Intent.ACTION_VIEW.equals(action) ||
214 NfcAdapter.ACTION_NDEF_DISCOVERED.equals(action)) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700215 url = UrlUtils.smartUrlFilter(intent.getData());
Michael Kolb8233fac2010-10-26 16:08:53 -0700216 if (url != null && url.startsWith("http")) {
217 final Bundle pairs = intent
218 .getBundleExtra(Browser.EXTRA_HEADERS);
219 if (pairs != null && !pairs.isEmpty()) {
220 Iterator<String> iter = pairs.keySet().iterator();
221 headers = new HashMap<String, String>();
222 while (iter.hasNext()) {
223 String key = iter.next();
224 headers.put(key, pairs.getString(key));
225 }
226 }
227 }
Michael Kolb14612442011-06-24 13:06:29 -0700228 if (intent.hasExtra(PreloadRequestReceiver.EXTRA_PRELOAD_ID)) {
229 String id = intent.getStringExtra(PreloadRequestReceiver.EXTRA_PRELOAD_ID);
Mathew Inwood29721c22011-06-29 17:55:24 +0100230 preloadedSearchBoxQuery = intent.getStringExtra(
231 PreloadRequestReceiver.EXTRA_SEARCHBOX_SETQUERY);
Michael Kolb14612442011-06-24 13:06:29 -0700232 preloaded = Preloader.getInstance().getPreloadedTab(id);
233 }
Michael Kolb8233fac2010-10-26 16:08:53 -0700234 } else if (Intent.ACTION_SEARCH.equals(action)
235 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
236 || Intent.ACTION_WEB_SEARCH.equals(action)) {
237 url = intent.getStringExtra(SearchManager.QUERY);
238 if (url != null) {
239 // In general, we shouldn't modify URL from Intent.
240 // But currently, we get the user-typed URL from search box as well.
241 url = UrlUtils.fixUrl(url);
242 url = UrlUtils.smartUrlFilter(url);
Michael Kolb8233fac2010-10-26 16:08:53 -0700243 String searchSource = "&source=android-" + GOOGLE_SEARCH_SOURCE_SUGGEST + "&";
244 if (url.contains(searchSource)) {
245 String source = null;
246 final Bundle appData = intent.getBundleExtra(SearchManager.APP_DATA);
247 if (appData != null) {
248 source = appData.getString(Search.SOURCE);
249 }
250 if (TextUtils.isEmpty(source)) {
251 source = GOOGLE_SEARCH_SOURCE_UNKNOWN;
252 }
253 url = url.replace(searchSource, "&source=android-"+source+"&");
254 }
255 }
256 }
257 }
Mathew Inwood9ad1eac2011-09-15 11:29:50 +0100258 return new UrlData(url, headers, intent, preloaded, preloadedSearchBoxQuery);
Michael Kolb8233fac2010-10-26 16:08:53 -0700259 }
260
261 /**
262 * Launches the default web search activity with the query parameters if the given intent's data
263 * are identified as plain search terms and not URLs/shortcuts.
264 * @return true if the intent was handled and web search activity was launched, false if not.
265 */
266 static boolean handleWebSearchIntent(Activity activity,
267 Controller controller, Intent intent) {
268 if (intent == null) return false;
269
270 String url = null;
271 final String action = intent.getAction();
Michael Kolb8233fac2010-10-26 16:08:53 -0700272 if (Intent.ACTION_VIEW.equals(action)) {
273 Uri data = intent.getData();
274 if (data != null) url = data.toString();
275 } else if (Intent.ACTION_SEARCH.equals(action)
276 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
277 || Intent.ACTION_WEB_SEARCH.equals(action)) {
278 url = intent.getStringExtra(SearchManager.QUERY);
279 }
280 return handleWebSearchRequest(activity, controller, url,
281 intent.getBundleExtra(SearchManager.APP_DATA),
282 intent.getStringExtra(SearchManager.EXTRA_DATA_KEY));
283 }
284
285 /**
286 * Launches the default web search activity with the query parameters if the given url string
287 * was identified as plain search terms and not URL/shortcut.
288 * @return true if the request was handled and web search activity was launched, false if not.
289 */
290 private static boolean handleWebSearchRequest(Activity activity,
291 Controller controller, String inUrl, Bundle appData,
292 String extraData) {
John Reck99141272010-12-21 11:34:12 -0800293 if (inUrl == null) return false;
Michael Kolb8233fac2010-10-26 16:08:53 -0700294
295 // In general, we shouldn't modify URL from Intent.
296 // But currently, we get the user-typed URL from search box as well.
297 String url = UrlUtils.fixUrl(inUrl).trim();
John Reck99141272010-12-21 11:34:12 -0800298 if (TextUtils.isEmpty(url)) return false;
Michael Kolb8233fac2010-10-26 16:08:53 -0700299
300 // URLs are handled by the regular flow of control, so
301 // return early.
302 if (Patterns.WEB_URL.matcher(url).matches()
303 || UrlUtils.ACCEPTED_URI_SCHEMA.matcher(url).matches()) {
304 return false;
305 }
306
307 final ContentResolver cr = activity.getContentResolver();
308 final String newUrl = url;
309 if (controller == null || controller.getTabControl() == null
310 || controller.getTabControl().getCurrentWebView() == null
311 || !controller.getTabControl().getCurrentWebView()
312 .isPrivateBrowsingEnabled()) {
313 new AsyncTask<Void, Void, Void>() {
314 @Override
315 protected Void doInBackground(Void... unused) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700316 Browser.addSearchUrl(cr, newUrl);
317 return null;
318 }
319 }.execute();
320 }
321
322 SearchEngine searchEngine = BrowserSettings.getInstance().getSearchEngine();
323 if (searchEngine == null) return false;
324 searchEngine.startSearch(activity, url, appData, extraData);
325
326 return true;
327 }
328
329 /**
330 * A UrlData class to abstract how the content will be set to WebView.
331 * This base class uses loadUrl to show the content.
332 */
333 static class UrlData {
334 final String mUrl;
335 final Map<String, String> mHeaders;
Mathew Inwood29721c22011-06-29 17:55:24 +0100336 final PreloadedTabControl mPreloadedTab;
337 final String mSearchBoxQueryToSubmit;
Michael Kolb8233fac2010-10-26 16:08:53 -0700338
339 UrlData(String url) {
340 this.mUrl = url;
341 this.mHeaders = null;
Michael Kolb14612442011-06-24 13:06:29 -0700342 this.mPreloadedTab = null;
Mathew Inwood29721c22011-06-29 17:55:24 +0100343 this.mSearchBoxQueryToSubmit = null;
Michael Kolb8233fac2010-10-26 16:08:53 -0700344 }
345
346 UrlData(String url, Map<String, String> headers, Intent intent) {
Mathew Inwood9ad1eac2011-09-15 11:29:50 +0100347 this(url, headers, intent, null, null);
Michael Kolb14612442011-06-24 13:06:29 -0700348 }
349
Mathew Inwood29721c22011-06-29 17:55:24 +0100350 UrlData(String url, Map<String, String> headers, Intent intent,
Mathew Inwood9ad1eac2011-09-15 11:29:50 +0100351 PreloadedTabControl preloaded, String searchBoxQueryToSubmit) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700352 this.mUrl = url;
353 this.mHeaders = headers;
Mathew Inwood29721c22011-06-29 17:55:24 +0100354 this.mPreloadedTab = preloaded;
355 this.mSearchBoxQueryToSubmit = searchBoxQueryToSubmit;
Michael Kolb8233fac2010-10-26 16:08:53 -0700356 }
357
358 boolean isEmpty() {
Michael Kolb5ff5c8b2012-05-03 11:37:58 -0700359 return (mUrl == null || mUrl.length() == 0);
Michael Kolb8233fac2010-10-26 16:08:53 -0700360 }
Michael Kolb14612442011-06-24 13:06:29 -0700361
362 boolean isPreloaded() {
363 return mPreloadedTab != null;
364 }
365
Mathew Inwood29721c22011-06-29 17:55:24 +0100366 PreloadedTabControl getPreloadedTab() {
Michael Kolb14612442011-06-24 13:06:29 -0700367 return mPreloadedTab;
368 }
Mathew Inwood29721c22011-06-29 17:55:24 +0100369
370 String getSearchBoxQueryToSubmit() {
371 return mSearchBoxQueryToSubmit;
372 }
Michael Kolb8233fac2010-10-26 16:08:53 -0700373 }
374
375}