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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
|
// Copyright 2023 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_engine_choice/search_engine_choice_dialog_service.h"
#include "base/check_deref.h"
#include "base/check_is_test.h"
#include "base/command_line.h"
#include "base/containers/contains.h"
#include "base/debug/crash_logging.h"
#include "base/debug/dump_without_crashing.h"
#include "base/metrics/histogram_functions.h"
#include "base/not_fatal_until.h"
#include "base/notreached.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/regional_capabilities/regional_capabilities_service_factory.h"
#include "chrome/browser/search_engine_choice/search_engine_choice_dialog_service_factory.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window/public/browser_window_features.h"
#include "chrome/browser/ui/profiles/profile_customization_bubble_sync_controller.h"
#include "chrome/browser/ui/search_engine_choice/search_engine_choice_tab_helper.h"
#include "chrome/browser/ui/signin/signin_view_controller.h"
#include "chrome/browser/ui/web_applications/app_browser_controller.h"
#include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
#include "components/country_codes/country_codes.h"
#include "components/prefs/pref_service.h"
#include "components/regional_capabilities/access/country_access_reason.h"
#include "components/regional_capabilities/regional_capabilities_country_id.h"
#include "components/regional_capabilities/regional_capabilities_service.h"
#include "components/search_engines/search_engine_choice/search_engine_choice_service.h"
#include "components/search_engines/search_engine_choice/search_engine_choice_utils.h"
#include "components/search_engines/search_engines_pref_names.h"
#include "components/search_engines/search_engines_switches.h"
#include "components/search_engines/template_url.h"
#include "components/search_engines/template_url_data.h"
#include "components/search_engines/template_url_prepopulate_data.h"
#include "components/search_engines/template_url_service.h"
#include "components/search_engines/util.h"
#include "third_party/search_engines_data/resources/definitions/prepopulated_engines.h"
namespace {
bool g_dialog_disabled_for_testing = false;
bool IsBrowserTypeSupported(const Browser& browser) {
switch (browser.type()) {
case Browser::TYPE_NORMAL:
case Browser::TYPE_POPUP:
return true;
case Browser::TYPE_APP_POPUP:
case Browser::TYPE_PICTURE_IN_PICTURE:
case Browser::TYPE_APP:
case Browser::TYPE_DEVTOOLS:
#if BUILDFLAG(IS_CHROMEOS)
case Browser::TYPE_CUSTOM_TAB:
#endif
return false;
}
}
} // namespace
// --- SearchEngineChoiceDialogService::BrowserRegistry -----------------------
SearchEngineChoiceDialogService::BrowserRegistry::BrowserRegistry(
SearchEngineChoiceDialogService& service)
: search_engine_choice_dialog_service_(service) {
observation_.Observe(BrowserList::GetInstance());
}
SearchEngineChoiceDialogService::BrowserRegistry::~BrowserRegistry() {
CloseAllDialogs();
}
bool SearchEngineChoiceDialogService::BrowserRegistry::RegisterBrowser(
Browser& browser,
base::OnceClosure close_dialog_callback) {
CHECK(close_dialog_callback);
if (IsRegistered(browser)) {
// TODO(crbug.com/347223092): Investigating whether re-registrations
// are a cause of multi-prompts.
SCOPED_CRASH_KEY_BOOL("ChoiceService", "browser_has_open_dialog",
HasOpenDialog(browser));
NOTREACHED(base::NotFatalUntil::M141);
return false;
}
if (registered_browsers_.empty()) {
// We only need to record that the choice screen was shown once.
search_engines::RecordChoiceScreenEvent(
search_engines::SearchEngineChoiceScreenEvents::
kChoiceScreenWasDisplayed);
}
registered_browsers_.emplace(browser, std::move(close_dialog_callback));
return true;
}
void SearchEngineChoiceDialogService::BrowserRegistry::OnBrowserRemoved(
Browser* browser) {
registered_browsers_.erase(CHECK_DEREF(browser));
}
bool SearchEngineChoiceDialogService::BrowserRegistry::IsRegistered(
Browser& browser) const {
return base::Contains(registered_browsers_, browser);
}
bool SearchEngineChoiceDialogService::BrowserRegistry::HasOpenDialog(
Browser& browser) const {
auto entry_iterator = registered_browsers_.find(browser);
if (entry_iterator == registered_browsers_.end()) {
// The browser is not known, so it never showed a dialog.
return false;
}
// If the OnceCallback is null, then the dialog has already been closed.
return !entry_iterator->second.is_null();
}
void SearchEngineChoiceDialogService::BrowserRegistry::CloseAllDialogs() {
for (auto& browsers_with_open_dialog : registered_browsers_) {
if (browsers_with_open_dialog.second) {
std::move(browsers_with_open_dialog.second).Run();
}
}
// We're not clearing the list to keep track of the browsers that already
// showed a dialog previously.
}
// --- SearchEngineChoiceDialogService ----------------------------------------
SearchEngineChoiceDialogService::~SearchEngineChoiceDialogService() = default;
SearchEngineChoiceDialogService::SearchEngineChoiceDialogService(
Profile& profile,
search_engines::SearchEngineChoiceService& search_engine_choice_service,
TemplateURLService& template_url_service)
: profile_(profile),
search_engine_choice_service_(search_engine_choice_service),
template_url_service_(template_url_service) {}
void SearchEngineChoiceDialogService::NotifyChoiceMade(
int prepopulate_id,
bool save_guest_mode_selection,
EntryPoint entry_point) {
regional_capabilities::CountryIdHolder country_id_holder =
regional_capabilities::RegionalCapabilitiesServiceFactory::GetForProfile(
&profile_.get())
->GetCountryId();
SCOPED_CRASH_KEY_STRING32(
"ChoiceService", "choice_country",
country_id_holder
.GetRestricted(regional_capabilities::CountryAccessKey(
regional_capabilities::CountryAccessReason::
kSearchEngineChoiceNotifyChoiceMadeDebug))
.CountryCode());
SCOPED_CRASH_KEY_NUMBER("ChoiceService", "prepopulate_id", prepopulate_id);
SCOPED_CRASH_KEY_NUMBER("ChoiceService", "entry_point",
static_cast<int>(entry_point));
SCOPED_CRASH_KEY_STRING32("ChoiceService", "profile_type",
profile_->IsGuestSession() ? "guest"
: profile_->IsOffTheRecord() ? "otr"
: "regular");
// Expected to be `kEligible` if we are about to notify that the choice has
// been made. If it's not, something weird is happening. We use the more
// basic `GetDynamicChoiceScreenConditions()` call to get a profile-wide
// assessment instead of browser-specific.
SCOPED_CRASH_KEY_NUMBER(
"ChoiceService", "pre_record_condition",
static_cast<int>(
search_engine_choice_service_->GetDynamicChoiceScreenConditions(
*template_url_service_)));
TemplateURL* selected_engine = nullptr;
int selected_engine_index = -1;
for (size_t i = 0; i < choice_screen_data_->search_engines().size(); ++i) {
if (choice_screen_data_->search_engines()[i]->prepopulate_id() ==
prepopulate_id) {
selected_engine_index = i;
selected_engine = choice_screen_data_->search_engines()[i].get();
break;
}
}
const TemplateURL* default_search_provider_for_debug =
template_url_service_->GetDefaultSearchProvider();
SCOPED_CRASH_KEY_NUMBER(
"ChoiceService", "current_dse_id",
default_search_provider_for_debug
? default_search_provider_for_debug->prepopulate_id()
: -1);
SCOPED_CRASH_KEY_STRING64(
"ChoiceService", "current_dse_keyword",
default_search_provider_for_debug
? base::UTF16ToUTF8(default_search_provider_for_debug->keyword())
: "<null>");
// A custom search engine would have a `prepopulate_id` of 0, We don't expect
// to trigger the choice screen if it was the current default, per
// `SearchEngineChoiceService::GetDynamicChoiceScreenConditions`.
CHECK_GT(prepopulate_id, 0);
// Distribution custom search engines are not part of the prepopulated
// data but still have an ID, assigned starting from 1000. We should also
// not be prompting when that's the default.
// TODO(b:302675777): Revisit how we should handle them.
CHECK_LE(prepopulate_id,
TemplateURLPrepopulateData::kMaxPrepopulatedEngineID);
if (selected_engine == nullptr) {
// The ID associated with the selection was not found in the cached list
// of search engines. That could be maybe caused by something like a race
// with enterprise policies, see https://crbug.com/328041262.
// We have a way to recover for it, by just letting the user proceed without
// attempting to apply the choice, so we don't immediately crash the
// browser.
// TODO(crbug.com/400119363): Investigate whether we can more formally
// handle this.
NOTREACHED(base::NotFatalUntil::M141);
} else {
if (search_engine_choice_service_->IsDsePropagationAllowedForGuest()) {
base::UmaHistogramBoolean("Search.SaveGuestModeSelection",
save_guest_mode_selection);
if (save_guest_mode_selection) {
search_engine_choice_service_->SetSavedSearchEngineBetweenGuestSessions(
prepopulate_id);
}
}
template_url_service_->SetUserSelectedDefaultSearchProvider(
selected_engine, search_engines::ChoiceMadeLocation::kChoiceScreen);
}
browser_registry_.CloseAllDialogs();
// Log the view entry point in which the choice was made.
search_engines::SearchEngineChoiceScreenEvents event;
switch (entry_point) {
case EntryPoint::kDialog:
event = search_engines::SearchEngineChoiceScreenEvents::kDefaultWasSet;
break;
case EntryPoint::kFirstRunExperience:
event = search_engines::SearchEngineChoiceScreenEvents::kFreDefaultWasSet;
choice_made_in_profile_picker_ = true;
break;
case EntryPoint::kProfileCreation:
event = search_engines::SearchEngineChoiceScreenEvents::
kProfileCreationDefaultWasSet;
choice_made_in_profile_picker_ = true;
break;
}
search_engines::ChoiceScreenDisplayState display_state =
choice_screen_data_->display_state();
display_state.selected_engine_index = selected_engine_index;
search_engines::RecordChoiceScreenEvent(event);
search_engine_choice_service_->MaybeRecordChoiceScreenDisplayState(
display_state);
}
bool SearchEngineChoiceDialogService::RegisterDialog(
Browser& browser,
base::OnceClosure close_dialog_callback) {
auto condition = ComputeDialogConditions(browser);
SCOPED_CRASH_KEY_NUMBER("ChoiceService", "dialog_condition",
static_cast<int>(condition));
// We expect the caller to have verified that the dialog can actually be
// shown before attempting to register it.
CHECK_EQ(condition,
search_engines::SearchEngineChoiceScreenConditions::kEligible);
return browser_registry_.RegisterBrowser(browser,
std::move(close_dialog_callback));
}
// static
void SearchEngineChoiceDialogService::SetDialogDisabledForTests(
bool dialog_disabled) {
CHECK_IS_TEST();
g_dialog_disabled_for_testing = dialog_disabled;
}
// static
search_engines::ChoiceData
SearchEngineChoiceDialogService::GetChoiceDataFromProfile(Profile& profile) {
PrefService* pref_service = profile.GetPrefs();
TemplateURLService* template_url_service =
TemplateURLServiceFactory::GetForProfile(&profile);
CHECK(template_url_service);
const TemplateURLData& default_search_engine =
template_url_service->GetDefaultSearchProvider()->data();
return {.timestamp = pref_service->GetInt64(
prefs::kDefaultSearchProviderChoiceScreenCompletionTimestamp),
.chrome_version = pref_service->GetString(
prefs::kDefaultSearchProviderChoiceScreenCompletionVersion),
.default_search_engine = default_search_engine};
}
// static
void SearchEngineChoiceDialogService::UpdateProfileFromChoiceData(
Profile& profile,
const search_engines::ChoiceData& choice_data) {
PrefService* pref_service = profile.GetPrefs();
if (choice_data.timestamp != 0) {
pref_service->SetInt64(
prefs::kDefaultSearchProviderChoiceScreenCompletionTimestamp,
choice_data.timestamp);
}
if (!choice_data.chrome_version.empty()) {
pref_service->SetString(
prefs::kDefaultSearchProviderChoiceScreenCompletionVersion,
choice_data.chrome_version);
}
const TemplateURLData& default_search_engine =
choice_data.default_search_engine;
if (!default_search_engine.keyword().empty() &&
!default_search_engine.url().empty()) {
TemplateURLService* template_url_service =
TemplateURLServiceFactory::GetForProfile(&profile);
CHECK(template_url_service);
TemplateURL template_url(default_search_engine);
template_url_service->SetUserSelectedDefaultSearchProvider(&template_url);
}
}
TemplateURL::TemplateURLVector
SearchEngineChoiceDialogService::GetSearchEngines() {
if (!choice_screen_data_) {
choice_screen_data_ = template_url_service_->GetChoiceScreenData();
}
TemplateURLService::TemplateURLVector result;
for (const auto& turl : choice_screen_data_->search_engines()) {
result.push_back(turl.get());
}
return result;
}
search_engines::SearchEngineChoiceScreenConditions
SearchEngineChoiceDialogService::ComputeDialogConditions(
Browser& browser) const {
if (g_dialog_disabled_for_testing) {
return search_engines::SearchEngineChoiceScreenConditions::
kFeatureSuppressed;
}
if (browser_registry_.HasOpenDialog(browser)) {
return search_engines::SearchEngineChoiceScreenConditions::
kAlreadyBeingShown;
}
if (search_engine_choice_service_->GetSavedSearchEngineBetweenGuestSessions()
.has_value()) {
return search_engines::SearchEngineChoiceScreenConditions::
kUsingPersistedGuestSessionChoice;
}
if (web_app::AppBrowserController::IsWebApp(&browser)) {
// Showing a Chrome-specific search engine dialog on top of a window
// dedicated to a specific web app is a horrible UX, we suppress it for this
// window. When the user proceeds to a non-web app window they will get it.
return search_engines::SearchEngineChoiceScreenConditions::
kUnsupportedBrowserType;
}
// Only show the dialog over normal and popup browsers. This is to avoid
// showing it in picture-in-picture for example.
if (!IsBrowserTypeSupported(browser)) {
return search_engines::SearchEngineChoiceScreenConditions::
kUnsupportedBrowserType;
}
if (!CanWindowHeightFitSearchEngineChoiceDialog(browser)) {
return search_engines::SearchEngineChoiceScreenConditions::
kBrowserWindowTooSmall;
}
// To avoid conflict, the dialog should not be shown if a sign-in dialog is
// currently displayed or is about to be displayed.
bool signin_dialog_displayed_or_pending =
browser.GetFeatures().signin_view_controller()->ShowsModalDialog();
#if !BUILDFLAG(IS_CHROMEOS)
signin_dialog_displayed_or_pending =
signin_dialog_displayed_or_pending ||
IsProfileCustomizationBubbleSyncControllerRunning(&browser);
#endif // BUILDFLAG(IS_CHROMEOS)
if (signin_dialog_displayed_or_pending) {
return search_engines::SearchEngineChoiceScreenConditions::
kSuppressedByOtherDialog;
}
// Respect common conditions with other platforms.
return search_engine_choice_service_->GetDynamicChoiceScreenConditions(
*template_url_service_);
}
bool SearchEngineChoiceDialogService::CanSuppressPrivacySandboxPromo() const {
return !choice_made_in_profile_picker_;
}
bool SearchEngineChoiceDialogService::IsShowingDialog(Browser& browser) const {
return browser_registry_.HasOpenDialog(browser);
}
bool SearchEngineChoiceDialogService::HasPendingDialog(Browser& browser) const {
return browser_registry_.HasOpenDialog(browser) ||
ComputeDialogConditions(browser) ==
search_engines::SearchEngineChoiceScreenConditions::kEligible;
}
bool SearchEngineChoiceDialogService::IsUrlSuitableForDialog(GURL url) {
if (url == chrome::kChromeUINewTabPageURL) {
return true; // NTP URL for regular profiles.
}
if (NewTabUI::IsNewTab(url)) {
// This is the NTP URL for Guest and incognito profiles. This service is not
// instantiated for incognito profiles, so this is only Guest in practice.
return true;
}
if (url == url::kAboutBlankURL) {
return true;
}
if (url.SchemeIs(content::kChromeDevToolsScheme)) {
return false;
}
// Don't show the dialog over remaining urls that start with 'chrome://'.
return !url.SchemeIs(content::kChromeUIScheme);
}
void SearchEngineChoiceDialogService::NotifyLearnMoreLinkClicked(
EntryPoint entry_point) {
search_engines::SearchEngineChoiceScreenEvents event;
switch (entry_point) {
case EntryPoint::kDialog:
event = search_engines::SearchEngineChoiceScreenEvents::
kLearnMoreWasDisplayed;
break;
case EntryPoint::kFirstRunExperience:
event = search_engines::SearchEngineChoiceScreenEvents::
kFreLearnMoreWasDisplayed;
break;
case EntryPoint::kProfileCreation:
event = search_engines::SearchEngineChoiceScreenEvents::
kProfileCreationLearnMoreDisplayed;
break;
}
RecordChoiceScreenEvent(event);
}
void SearchEngineChoiceDialogService::NotifyMoreButtonClicked(
EntryPoint entry_point) {
search_engines::SearchEngineChoiceScreenEvents event;
switch (entry_point) {
case EntryPoint::kDialog:
event =
search_engines::SearchEngineChoiceScreenEvents::kMoreButtonClicked;
break;
case EntryPoint::kFirstRunExperience:
event =
search_engines::SearchEngineChoiceScreenEvents::kFreMoreButtonClicked;
break;
case EntryPoint::kProfileCreation:
event = search_engines::SearchEngineChoiceScreenEvents::
kProfileCreationMoreButtonClicked;
break;
}
RecordChoiceScreenEvent(event);
}
|