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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/search_engines/template_url_prepopulate_data.h"
#include <algorithm>
#include <random>
#include <variant>
#include <vector>
#include "base/check_is_test.h"
#include "base/containers/contains.h"
#include "base/containers/span.h"
#include "base/containers/to_vector.h"
#include "base/logging.h"
#include "base/metrics/histogram_functions.h"
#include "base/not_fatal_until.h"
#include "base/rand_util.h"
#include "build/build_config.h"
#include "components/country_codes/country_codes.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
#include "components/regional_capabilities/eea_countries_ids.h"
#include "components/regional_capabilities/regional_capabilities_utils.h"
#include "components/search_engines/search_engines_pref_names.h"
#include "components/search_engines/template_url_data.h"
#include "components/search_engines/template_url_data_util.h"
#include "third_party/search_engines_data/resources/definitions/prepopulated_engines.h"
namespace TemplateURLPrepopulateData {
// Helpers --------------------------------------------------------------------
namespace {
inline std::unique_ptr<TemplateURLData> PrepopulatedEngineToTemplateURLData(
const PrepopulatedEngine* engine) {
return TemplateURLDataFromPrepopulatedEngine(*engine);
}
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class SearchProviderOverrideStatus {
// No preferences are available for `prefs::kSearchProviderOverrides`.
kNoPref = 0,
// The preferences for `prefs::kSearchProviderOverrides` do not contain valid
// template URLs.
kEmptyPref = 1,
// The preferences for `prefs::kSearchProviderOverrides` contain valid
// template URL(s).
kPrefHasValidUrls = 2,
kMaxValue = kPrefHasValidUrls
};
std::vector<std::unique_ptr<TemplateURLData>> GetOverriddenTemplateURLData(
PrefService& prefs) {
std::vector<std::unique_ptr<TemplateURLData>> t_urls;
const base::Value::List& list =
prefs.GetList(prefs::kSearchProviderOverrides);
for (const base::Value& engine : list) {
if (engine.is_dict()) {
auto t_url = TemplateURLDataFromOverrideDictionary(engine.GetDict());
if (t_url) {
t_urls.push_back(std::move(t_url));
}
}
}
base::UmaHistogramEnumeration(
"Search.SearchProviderOverrideStatus",
!t_urls.empty() ? SearchProviderOverrideStatus::kPrefHasValidUrls
: (prefs.HasPrefPath(prefs::kSearchProviderOverrides)
? SearchProviderOverrideStatus::kEmptyPref
: SearchProviderOverrideStatus::kNoPref));
return t_urls;
}
std::unique_ptr<TemplateURLData> FindPrepopulatedEngineInternal(
PrefService& prefs,
std::vector<const TemplateURLPrepopulateData::PrepopulatedEngine*>
regional_prepopulated_engines,
int prepopulated_id,
bool use_first_as_fallback) {
// This could be more efficient. We load all URLs but keep only one.
std::vector<std::unique_ptr<TemplateURLData>> prepopulated_engines =
GetPrepopulatedEngines(prefs, regional_prepopulated_engines);
CHECK(!prepopulated_engines.empty());
for (auto& engine : prepopulated_engines) {
if (engine->prepopulate_id == prepopulated_id) {
return std::move(engine);
}
}
if (use_first_as_fallback) {
return std::move(prepopulated_engines[0]);
}
return nullptr;
}
} // namespace
// Global functions -----------------------------------------------------------
void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
registry->RegisterListPref(prefs::kSearchProviderOverrides);
registry->RegisterIntegerPref(prefs::kSearchProviderOverridesVersion, -1);
}
int GetDataVersion(PrefService* prefs) {
// Allow tests to override the local version.
return (prefs && prefs->HasPrefPath(prefs::kSearchProviderOverridesVersion)) ?
prefs->GetInteger(prefs::kSearchProviderOverridesVersion) :
kCurrentDataVersion;
}
std::vector<std::unique_ptr<TemplateURLData>> GetPrepopulatedEngines(
PrefService& prefs,
std::vector<const TemplateURLPrepopulateData::PrepopulatedEngine*>
regional_prepopulated_engines) {
// If there is a set of search engines in the preferences file, it overrides
// the built-in set.
std::vector<std::unique_ptr<TemplateURLData>> t_urls =
GetOverriddenTemplateURLData(prefs);
if (!t_urls.empty()) {
return t_urls;
}
return base::ToVector(regional_prepopulated_engines,
&PrepopulatedEngineToTemplateURLData);
}
std::unique_ptr<TemplateURLData> GetPrepopulatedEngine(
PrefService& prefs,
std::vector<const TemplateURLPrepopulateData::PrepopulatedEngine*>
regional_prepopulated_engines,
int prepopulated_id) {
return FindPrepopulatedEngineInternal(prefs, regional_prepopulated_engines,
prepopulated_id,
/*use_first_as_fallback=*/false);
}
#if BUILDFLAG(IS_ANDROID)
std::vector<std::unique_ptr<TemplateURLData>> GetLocalPrepopulatedEngines(
const std::string& country_code,
PrefService& prefs) {
country_codes::CountryId country_id(country_code);
if (!country_id.IsValid()) {
LOG(ERROR) << "Unknown country code specified: " << country_code;
return std::vector<std::unique_ptr<TemplateURLData>>();
}
return base::ToVector(
regional_capabilities::GetPrepopulatedEngines(country_id, prefs),
&PrepopulatedEngineToTemplateURLData);
}
#endif
std::unique_ptr<TemplateURLData> GetPrepopulatedEngineFromFullList(
PrefService& prefs,
std::vector<const TemplateURLPrepopulateData::PrepopulatedEngine*>
regional_prepopulated_engines,
int prepopulated_id) {
// TODO(crbug.com/40940777): Refactor to better share code with
// `GetPrepopulatedEngine()`.
// If there is a set of search engines in the preferences file, we look for
// the ID there first.
for (std::unique_ptr<TemplateURLData>& data :
GetOverriddenTemplateURLData(prefs)) {
if (data->prepopulate_id == prepopulated_id) {
return std::move(data);
}
}
auto engine_matcher = [&](const PrepopulatedEngine* engine) {
return engine->id == prepopulated_id;
};
// We look in the profile country's prepopulated set first. This is intended
// to help using the right entry for the case where we have multiple ones in
// the full list that share a same prepopulated id.
if (auto iter =
std::ranges::find_if(regional_prepopulated_engines, engine_matcher);
iter != regional_prepopulated_engines.end()) {
return PrepopulatedEngineToTemplateURLData(*iter);
}
// Fallback: just grab the first matching entry from the complete list.
// In case of IDs shared across multiple entries, we might be returning
// the wrong one for the profile country. We can look into better
// heuristics in future work.
if (auto iter = std::ranges::find_if(kAllEngines, engine_matcher);
iter != kAllEngines.end()) {
return PrepopulatedEngineToTemplateURLData(*iter);
}
return {};
}
void ClearPrepopulatedEnginesInPrefs(PrefService* prefs) {
if (!prefs)
return;
prefs->ClearPref(prefs::kSearchProviderOverrides);
prefs->ClearPref(prefs::kSearchProviderOverridesVersion);
}
std::unique_ptr<TemplateURLData> GetPrepopulatedFallbackSearch(
PrefService& prefs,
std::vector<const TemplateURLPrepopulateData::PrepopulatedEngine*>
regional_prepopulated_engines) {
return FindPrepopulatedEngineInternal(prefs, regional_prepopulated_engines,
google.id,
/*use_first_as_fallback=*/true);
}
const base::span<const PrepopulatedEngine* const> GetAllPrepopulatedEngines() {
return kAllEngines;
}
} // namespace TemplateURLPrepopulateData
|