1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/search/search.h"
#include <stddef.h>
#include <string>
#include "base/check_deref.h"
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_macros.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/search_engines/ui_thread_search_terms_data.h"
#include "chrome/browser/supervised_user/supervised_user_service_factory.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/url_constants.h"
#include "components/google/core/common/google_util.h"
#include "components/search/ntp_features.h"
#include "components/search/search.h"
#include "components/search_engines/search_engine_type.h"
#include "components/search_engines/template_url_service.h"
#include "components/supervised_user/core/browser/supervised_user_preferences.h"
#include "components/supervised_user/core/browser/supervised_user_service.h"
#include "components/supervised_user/core/browser/supervised_user_url_filter.h" // nogncheck
#include "components/supervised_user/core/browser/supervised_user_utils.h"
#include "components/supervised_user/core/common/buildflags.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "url/gurl.h"
#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/search/instant_service.h"
#include "chrome/browser/search/instant_service_factory.h"
#include "chrome/browser/ui/webui/new_tab_page/new_tab_page_ui.h"
#include "chrome/browser/ui/webui/new_tab_page_third_party/new_tab_page_third_party_ui.h"
#endif
namespace search {
namespace {
const char kServiceWorkerFileName[] = "newtab-serviceworker.js";
bool MatchesOrigin(const GURL& my_url, const GURL& other_url) {
return my_url.scheme_piece() == other_url.scheme_piece() &&
my_url.host_piece() == other_url.host_piece() &&
my_url.port() == other_url.port();
}
} // namespace
// Returns true if |my_url| matches |other_url| in terms of origin (i.e. host,
// port, and scheme) and path.
// Defined outside of the anonymous namespace so that it's accessible to unit
// tests.
bool MatchesOriginAndPath(const GURL& my_url, const GURL& other_url) {
return MatchesOrigin(my_url, other_url) &&
my_url.path_piece() == other_url.path_piece();
}
namespace {
// Status of the New Tab URL for the default Search provider. NOTE: Used in a
// UMA histogram so values should only be added at the end and not reordered.
enum NewTabURLState {
// Valid URL that should be used.
NEW_TAB_URL_VALID = 0,
// Corrupt state (e.g. no profile or template url).
NEW_TAB_URL_BAD = 1,
// URL should not be used because in incognito window.
NEW_TAB_URL_INCOGNITO = 2,
// No New Tab URL set for provider.
NEW_TAB_URL_NOT_SET = 3,
// URL is not secure.
NEW_TAB_URL_INSECURE = 4,
// URL should not be used because Suggest is disabled.
// Not used anymore, see crbug.com/340424.
// NEW_TAB_URL_SUGGEST_OFF = 5,
// URL should not be used because it is blocked for a supervised user.
NEW_TAB_URL_BLOCKED = 6,
NEW_TAB_URL_MAX
};
const TemplateURL* GetDefaultSearchProviderTemplateURL(Profile* profile) {
if (profile) {
TemplateURLService* template_url_service =
TemplateURLServiceFactory::GetForProfile(profile);
if (template_url_service) {
return template_url_service->GetDefaultSearchProvider();
}
}
return nullptr;
}
bool IsMatchingServiceWorker(const GURL& my_url, const GURL& document_url) {
// The origin should match.
if (!MatchesOrigin(my_url, document_url)) {
return false;
}
// The url filename should be the new tab page ServiceWorker.
std::string my_filename = my_url.ExtractFileName();
if (my_filename != kServiceWorkerFileName) {
return false;
}
// The paths up to the filenames should be the same.
std::string my_path_without_filename = my_url.path();
my_path_without_filename = my_path_without_filename.substr(
0, my_path_without_filename.length() - my_filename.length());
std::string document_filename = document_url.ExtractFileName();
std::string document_path_without_filename = document_url.path();
document_path_without_filename = document_path_without_filename.substr(
0, document_path_without_filename.length() - document_filename.length());
return my_path_without_filename == document_path_without_filename;
}
// Returns true if |url| matches the NTP URL or the URL of the NTP's associated
// service worker.
bool IsNTPOrRelatedURLHelper(const GURL& url, Profile* profile) {
if (!url.is_valid()) {
return false;
}
const GURL new_tab_url(GetNewTabPageURL(profile));
return new_tab_url.is_valid() && (MatchesOriginAndPath(url, new_tab_url) ||
IsMatchingServiceWorker(url, new_tab_url));
}
bool IsURLAllowedForSupervisedUser(const GURL& url, Profile& profile) {
if (!profile.IsChild()) {
return true;
}
supervised_user::SupervisedUserService* supervised_user_service =
SupervisedUserServiceFactory::GetForProfile(&profile);
supervised_user::SupervisedUserURLFilter* url_filter =
supervised_user_service->GetURLFilter();
if (url_filter->GetFilteringBehavior(url).IsBlocked()) {
return false;
}
return true;
}
// Used to look up the URL to use for the New Tab page. Also tracks how we
// arrived at that URL so it can be logged with UMA.
struct NewTabURLDetails {
NewTabURLDetails(const GURL& url, NewTabURLState state)
: url(url), state(state) {}
static NewTabURLDetails ForProfile(Profile* profile) {
// Incognito and Guest profiles have their own New Tab.
// This function may also be called by other off-the-record profiles that
// can exceptionally open a browser window.
// See OTRProfileID::AllowsBrowserWindows() for more context.
if (profile->IsOffTheRecord()) {
return NewTabURLDetails(GURL(), NEW_TAB_URL_INCOGNITO);
}
#if BUILDFLAG(IS_ANDROID)
const GURL local_url;
#else
const bool default_is_google = DefaultSearchProviderIsGoogle(profile);
const GURL local_url(default_is_google
? chrome::kChromeUINewTabPageURL
: chrome::kChromeUINewTabPageThirdPartyURL);
if (default_is_google) {
return NewTabURLDetails(local_url, NEW_TAB_URL_VALID);
}
#endif
const TemplateURL* template_url =
GetDefaultSearchProviderTemplateURL(profile);
if (!profile || !template_url) {
return NewTabURLDetails(local_url, NEW_TAB_URL_BAD);
}
GURL search_provider_url(template_url->new_tab_url_ref().ReplaceSearchTerms(
TemplateURLRef::SearchTermsArgs(std::u16string()),
UIThreadSearchTermsData()));
if (!search_provider_url.is_valid()) {
return NewTabURLDetails(local_url, NEW_TAB_URL_NOT_SET);
}
if (!search_provider_url.SchemeIsCryptographic()) {
return NewTabURLDetails(local_url, NEW_TAB_URL_INSECURE);
}
if (!IsURLAllowedForSupervisedUser(search_provider_url,
CHECK_DEREF(profile))) {
return NewTabURLDetails(local_url, NEW_TAB_URL_BLOCKED);
}
return NewTabURLDetails(search_provider_url, NEW_TAB_URL_VALID);
}
const GURL url;
const NewTabURLState state;
};
bool IsRenderedInInstantProcess(content::WebContents* contents,
Profile* profile) {
#if BUILDFLAG(IS_ANDROID)
return false;
#else
content::RenderProcessHost* process_host =
contents->GetPrimaryMainFrame()->GetProcess();
if (!process_host) {
return false;
}
const InstantService* instant_service =
InstantServiceFactory::GetForProfile(profile);
if (!instant_service) {
return false;
}
return instant_service->IsInstantProcess(process_host->GetDeprecatedID());
#endif
}
} // namespace
bool DefaultSearchProviderIsGoogle(Profile* profile) {
return DefaultSearchProviderIsGoogle(
TemplateURLServiceFactory::GetForProfile(profile));
}
bool IsNTPOrRelatedURL(const GURL& url, Profile* profile) {
if (!url.is_valid()) {
return false;
}
if (!IsInstantExtendedAPIEnabled()) {
return url == chrome::kChromeUINewTabURL;
}
return profile && IsNTPOrRelatedURLHelper(url, profile);
}
bool IsNTPURL(const GURL& url) {
if (url.SchemeIs(chrome::kChromeSearchScheme) &&
url.host_piece() == chrome::kChromeSearchRemoteNtpHost) {
return true;
}
#if BUILDFLAG(IS_ANDROID)
return false;
#else
return NewTabPageUI::IsNewTabPageOrigin(url) ||
NewTabPageThirdPartyUI::IsNewTabPageOrigin(url);
#endif
}
bool IsInstantNTP(content::WebContents* contents) {
if (!contents) {
return false;
}
content::NavigationEntry* entry =
contents->GetController().GetLastCommittedEntry();
if (!entry) {
entry = contents->GetController().GetVisibleEntry();
}
return NavEntryIsInstantNTP(contents, entry);
}
bool NavEntryIsInstantNTP(content::WebContents* contents,
content::NavigationEntry* entry) {
if (!contents || !entry || !IsInstantExtendedAPIEnabled()) {
return false;
}
Profile* profile = Profile::FromBrowserContext(contents->GetBrowserContext());
if (!IsRenderedInInstantProcess(contents, profile)) {
return false;
}
return IsInstantNTPURL(entry->GetURL(), profile);
}
bool IsInstantNTPURL(const GURL& url, Profile* profile) {
if (MatchesOrigin(url, GURL(chrome::kChromeUINewTabPageURL))) {
return true;
}
if (!IsInstantExtendedAPIEnabled()) {
return false;
}
GURL new_tab_url(GetNewTabPageURL(profile));
return new_tab_url.is_valid() && MatchesOriginAndPath(url, new_tab_url);
}
bool IsSplitViewNewTabPage(const GURL& url) {
return url.spec() == chrome::kChromeUISplitViewNewTabPageURL;
}
GURL GetNewTabPageURL(Profile* profile) {
return NewTabURLDetails::ForProfile(profile).url;
}
#if !BUILDFLAG(IS_ANDROID)
bool ShouldAssignURLToInstantRenderer(const GURL& url, Profile* profile) {
if (!url.is_valid() || !profile || !IsInstantExtendedAPIEnabled() ||
url.SchemeIs(content::kChromeUIScheme)) {
return false;
}
return IsNTPOrRelatedURLHelper(url, profile) ||
url.SchemeIs(chrome::kChromeSearchScheme);
}
bool ShouldUseProcessPerSiteForInstantSiteURL(const GURL& site_url,
Profile* profile) {
return ShouldAssignURLToInstantRenderer(site_url, profile) &&
site_url.host_piece() == chrome::kChromeSearchRemoteNtpHost;
}
GURL GetEffectiveURLForInstant(const GURL& url, Profile* profile) {
CHECK(ShouldAssignURLToInstantRenderer(url, profile))
<< "Error granting Instant access.";
if (url.SchemeIs(chrome::kChromeSearchScheme)) {
return url;
}
// Replace the scheme with "chrome-search:", and clear the port, since
// chrome-search is a scheme without port.
GURL::Replacements replacements;
replacements.SetSchemeStr(chrome::kChromeSearchScheme);
replacements.ClearPort();
// If this is the URL for a server-provided NTP, replace the host with
// "remote-ntp".
std::string remote_ntp_host(chrome::kChromeSearchRemoteNtpHost);
NewTabURLDetails details = NewTabURLDetails::ForProfile(profile);
if (details.state == NEW_TAB_URL_VALID &&
(MatchesOriginAndPath(url, details.url) ||
IsMatchingServiceWorker(url, details.url))) {
replacements.SetHostStr(remote_ntp_host);
}
return url.ReplaceComponents(replacements);
}
bool HandleNewTabURLRewrite(GURL* url,
content::BrowserContext* browser_context) {
if (!IsInstantExtendedAPIEnabled()) {
return false;
}
if (!(url->SchemeIs(content::kChromeUIScheme) &&
url->host() == chrome::kChromeUINewTabHost)) {
return false;
}
Profile* profile = Profile::FromBrowserContext(browser_context);
NewTabURLDetails details(NewTabURLDetails::ForProfile(profile));
UMA_HISTOGRAM_ENUMERATION("NewTabPage.URLState", details.state,
NEW_TAB_URL_MAX);
if (details.url.is_valid()) {
*url = details.url;
return true;
}
return false;
}
bool HandleNewTabURLReverseRewrite(GURL* url,
content::BrowserContext* browser_context) {
if (!IsInstantExtendedAPIEnabled()) {
return false;
}
// Do nothing in incognito.
Profile* profile = Profile::FromBrowserContext(browser_context);
DCHECK(profile);
if (profile->IsOffTheRecord()) {
return false;
}
if (IsInstantNTPURL(*url, profile)) {
*url = GURL(chrome::kChromeUINewTabURL);
return true;
}
return false;
}
#endif // !BUILDFLAG(IS_ANDROID)
} // namespace search
|