Upstreaming TransitionPageHelper.
[chromium-blink-merge.git] / components / search_engines / template_url_service.cc
blob46c53fe2fa5a7d7ef6ba701cdb9cda4b18663a21
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/search_engines/template_url_service.h"
7 #include <algorithm>
8 #include <utility>
10 #include "base/auto_reset.h"
11 #include "base/command_line.h"
12 #include "base/compiler_specific.h"
13 #include "base/guid.h"
14 #include "base/i18n/case_conversion.h"
15 #include "base/memory/scoped_vector.h"
16 #include "base/metrics/histogram.h"
17 #include "base/prefs/pref_service.h"
18 #include "base/stl_util.h"
19 #include "base/strings/string_number_conversions.h"
20 #include "base/strings/string_split.h"
21 #include "base/strings/string_util.h"
22 #include "base/strings/utf_string_conversions.h"
23 #include "base/time/default_clock.h"
24 #include "base/time/time.h"
25 #include "components/rappor/rappor_service.h"
26 #include "components/search_engines/search_engines_pref_names.h"
27 #include "components/search_engines/search_host_to_urls_map.h"
28 #include "components/search_engines/search_terms_data.h"
29 #include "components/search_engines/template_url.h"
30 #include "components/search_engines/template_url_prepopulate_data.h"
31 #include "components/search_engines/template_url_service_client.h"
32 #include "components/search_engines/template_url_service_observer.h"
33 #include "components/search_engines/util.h"
34 #include "components/url_fixer/url_fixer.h"
35 #include "net/base/net_util.h"
36 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
37 #include "sync/api/sync_change.h"
38 #include "sync/api/sync_error_factory.h"
39 #include "sync/protocol/search_engine_specifics.pb.h"
40 #include "sync/protocol/sync.pb.h"
41 #include "url/gurl.h"
43 typedef SearchHostToURLsMap::TemplateURLSet TemplateURLSet;
44 typedef TemplateURLService::SyncDataMap SyncDataMap;
46 namespace {
48 bool IdenticalSyncGUIDs(const TemplateURLData* data, const TemplateURL* turl) {
49 if (!data || !turl)
50 return !data && !turl;
52 return data->sync_guid == turl->sync_guid();
55 const char kDeleteSyncedEngineHistogramName[] =
56 "Search.DeleteSyncedSearchEngine";
58 // Values for an enumerated histogram used to track whenever an ACTION_DELETE is
59 // sent to the server for search engines.
60 enum DeleteSyncedSearchEngineEvent {
61 DELETE_ENGINE_USER_ACTION,
62 DELETE_ENGINE_PRE_SYNC,
63 DELETE_ENGINE_EMPTY_FIELD,
64 DELETE_ENGINE_MAX,
67 // Returns true iff the change in |change_list| at index |i| should not be sent
68 // up to the server based on its GUIDs presence in |sync_data| or when compared
69 // to changes after it in |change_list|.
70 // The criteria is:
71 // 1) It is an ACTION_UPDATE or ACTION_DELETE and the sync_guid associated
72 // with it is NOT found in |sync_data|. We can only update and remove
73 // entries that were originally from the Sync server.
74 // 2) It is an ACTION_ADD and the sync_guid associated with it is found in
75 // |sync_data|. We cannot re-add entries that Sync already knew about.
76 // 3) There is an update after an update for the same GUID. We prune earlier
77 // ones just to save bandwidth (Sync would normally coalesce them).
78 bool ShouldRemoveSyncChange(size_t index,
79 syncer::SyncChangeList* change_list,
80 const SyncDataMap* sync_data) {
81 DCHECK(index < change_list->size());
82 const syncer::SyncChange& change_i = (*change_list)[index];
83 const std::string guid = change_i.sync_data().GetSpecifics()
84 .search_engine().sync_guid();
85 syncer::SyncChange::SyncChangeType type = change_i.change_type();
86 if ((type == syncer::SyncChange::ACTION_UPDATE ||
87 type == syncer::SyncChange::ACTION_DELETE) &&
88 sync_data->find(guid) == sync_data->end())
89 return true;
90 if (type == syncer::SyncChange::ACTION_ADD &&
91 sync_data->find(guid) != sync_data->end())
92 return true;
93 if (type == syncer::SyncChange::ACTION_UPDATE) {
94 for (size_t j = index + 1; j < change_list->size(); j++) {
95 const syncer::SyncChange& change_j = (*change_list)[j];
96 if ((syncer::SyncChange::ACTION_UPDATE == change_j.change_type()) &&
97 (change_j.sync_data().GetSpecifics().search_engine().sync_guid() ==
98 guid))
99 return true;
102 return false;
105 // Remove SyncChanges that should not be sent to the server from |change_list|.
106 // This is done to eliminate incorrect SyncChanges added by the merge and
107 // conflict resolution logic when it is unsure of whether or not an entry is new
108 // from Sync or originally from the local model. This also removes changes that
109 // would be otherwise be coalesced by Sync in order to save bandwidth.
110 void PruneSyncChanges(const SyncDataMap* sync_data,
111 syncer::SyncChangeList* change_list) {
112 for (size_t i = 0; i < change_list->size(); ) {
113 if (ShouldRemoveSyncChange(i, change_list, sync_data))
114 change_list->erase(change_list->begin() + i);
115 else
116 ++i;
120 // Returns true if |turl|'s GUID is not found inside |sync_data|. This is to be
121 // used in MergeDataAndStartSyncing to differentiate between TemplateURLs from
122 // Sync and TemplateURLs that were initially local, assuming |sync_data| is the
123 // |initial_sync_data| parameter.
124 bool IsFromSync(const TemplateURL* turl, const SyncDataMap& sync_data) {
125 return !!sync_data.count(turl->sync_guid());
128 // Log the number of instances of a keyword that exist, with zero or more
129 // underscores, which could occur as the result of conflict resolution.
130 void LogDuplicatesHistogram(
131 const TemplateURLService::TemplateURLVector& template_urls) {
132 std::map<std::string, int> duplicates;
133 for (TemplateURLService::TemplateURLVector::const_iterator it =
134 template_urls.begin(); it != template_urls.end(); ++it) {
135 std::string keyword = base::UTF16ToASCII((*it)->keyword());
136 base::TrimString(keyword, "_", &keyword);
137 duplicates[keyword]++;
140 // Count the keywords with duplicates.
141 int num_dupes = 0;
142 for (std::map<std::string, int>::const_iterator it = duplicates.begin();
143 it != duplicates.end(); ++it) {
144 if (it->second > 1)
145 num_dupes++;
148 UMA_HISTOGRAM_COUNTS_100("Search.SearchEngineDuplicateCounts", num_dupes);
151 } // namespace
154 // TemplateURLService::LessWithPrefix -----------------------------------------
156 class TemplateURLService::LessWithPrefix {
157 public:
158 // We want to find the set of keywords that begin with a prefix. The STL
159 // algorithms will return the set of elements that are "equal to" the
160 // prefix, where "equal(x, y)" means "!(cmp(x, y) || cmp(y, x))". When
161 // cmp() is the typical std::less<>, this results in lexicographic equality;
162 // we need to extend this to mark a prefix as "not less than" a keyword it
163 // begins, which will cause the desired elements to be considered "equal to"
164 // the prefix. Note: this is still a strict weak ordering, as required by
165 // equal_range() (though I will not prove that here).
167 // Unfortunately the calling convention is not "prefix and element" but
168 // rather "two elements", so we pass the prefix as a fake "element" which has
169 // a NULL KeywordDataElement pointer.
170 bool operator()(const KeywordToTemplateMap::value_type& elem1,
171 const KeywordToTemplateMap::value_type& elem2) const {
172 return (elem1.second == NULL) ?
173 (elem2.first.compare(0, elem1.first.length(), elem1.first) > 0) :
174 (elem1.first < elem2.first);
179 // TemplateURLService ---------------------------------------------------------
181 TemplateURLService::TemplateURLService(
182 PrefService* prefs,
183 scoped_ptr<SearchTermsData> search_terms_data,
184 const scoped_refptr<KeywordWebDataService>& web_data_service,
185 scoped_ptr<TemplateURLServiceClient> client,
186 GoogleURLTracker* google_url_tracker,
187 rappor::RapporService* rappor_service,
188 const base::Closure& dsp_change_callback)
189 : prefs_(prefs),
190 search_terms_data_(search_terms_data.Pass()),
191 web_data_service_(web_data_service),
192 client_(client.Pass()),
193 google_url_tracker_(google_url_tracker),
194 rappor_service_(rappor_service),
195 dsp_change_callback_(dsp_change_callback),
196 provider_map_(new SearchHostToURLsMap),
197 loaded_(false),
198 load_failed_(false),
199 load_handle_(0),
200 default_search_provider_(NULL),
201 next_id_(kInvalidTemplateURLID + 1),
202 clock_(new base::DefaultClock),
203 models_associated_(false),
204 processing_syncer_changes_(false),
205 dsp_change_origin_(DSP_CHANGE_OTHER),
206 default_search_manager_(
207 prefs_,
208 base::Bind(&TemplateURLService::OnDefaultSearchChange,
209 base::Unretained(this))) {
210 DCHECK(search_terms_data_);
211 Init(NULL, 0);
214 TemplateURLService::TemplateURLService(const Initializer* initializers,
215 const int count)
216 : prefs_(NULL),
217 search_terms_data_(new SearchTermsData),
218 web_data_service_(NULL),
219 google_url_tracker_(NULL),
220 rappor_service_(NULL),
221 provider_map_(new SearchHostToURLsMap),
222 loaded_(false),
223 load_failed_(false),
224 load_handle_(0),
225 default_search_provider_(NULL),
226 next_id_(kInvalidTemplateURLID + 1),
227 clock_(new base::DefaultClock),
228 models_associated_(false),
229 processing_syncer_changes_(false),
230 dsp_change_origin_(DSP_CHANGE_OTHER),
231 default_search_manager_(
232 prefs_,
233 base::Bind(&TemplateURLService::OnDefaultSearchChange,
234 base::Unretained(this))) {
235 Init(initializers, count);
238 TemplateURLService::~TemplateURLService() {
239 // |web_data_service_| should be deleted during Shutdown().
240 DCHECK(!web_data_service_.get());
241 STLDeleteElements(&template_urls_);
244 // static
245 bool TemplateURLService::LoadDefaultSearchProviderFromPrefs(
246 PrefService* prefs,
247 scoped_ptr<TemplateURLData>* default_provider_data,
248 bool* is_managed) {
249 if (!prefs || !prefs->HasPrefPath(prefs::kDefaultSearchProviderSearchURL) ||
250 !prefs->HasPrefPath(prefs::kDefaultSearchProviderKeyword))
251 return false;
253 const PrefService::Preference* pref =
254 prefs->FindPreference(prefs::kDefaultSearchProviderSearchURL);
255 *is_managed = pref && pref->IsManaged();
257 if (!prefs->GetBoolean(prefs::kDefaultSearchProviderEnabled)) {
258 // The user doesn't want a default search provider.
259 default_provider_data->reset(NULL);
260 return true;
263 base::string16 name =
264 base::UTF8ToUTF16(prefs->GetString(prefs::kDefaultSearchProviderName));
265 base::string16 keyword =
266 base::UTF8ToUTF16(prefs->GetString(prefs::kDefaultSearchProviderKeyword));
267 if (keyword.empty())
268 return false;
269 std::string search_url =
270 prefs->GetString(prefs::kDefaultSearchProviderSearchURL);
271 // Force URL to be non-empty. We've never supported this case, but past bugs
272 // might have resulted in it slipping through; eventually this code can be
273 // replaced with a DCHECK(!search_url.empty());.
274 if (search_url.empty())
275 return false;
276 std::string suggest_url =
277 prefs->GetString(prefs::kDefaultSearchProviderSuggestURL);
278 std::string instant_url =
279 prefs->GetString(prefs::kDefaultSearchProviderInstantURL);
280 std::string image_url =
281 prefs->GetString(prefs::kDefaultSearchProviderImageURL);
282 std::string new_tab_url =
283 prefs->GetString(prefs::kDefaultSearchProviderNewTabURL);
284 std::string search_url_post_params =
285 prefs->GetString(prefs::kDefaultSearchProviderSearchURLPostParams);
286 std::string suggest_url_post_params =
287 prefs->GetString(prefs::kDefaultSearchProviderSuggestURLPostParams);
288 std::string instant_url_post_params =
289 prefs->GetString(prefs::kDefaultSearchProviderInstantURLPostParams);
290 std::string image_url_post_params =
291 prefs->GetString(prefs::kDefaultSearchProviderImageURLPostParams);
292 std::string icon_url =
293 prefs->GetString(prefs::kDefaultSearchProviderIconURL);
294 std::string encodings =
295 prefs->GetString(prefs::kDefaultSearchProviderEncodings);
296 std::string id_string = prefs->GetString(prefs::kDefaultSearchProviderID);
297 std::string prepopulate_id =
298 prefs->GetString(prefs::kDefaultSearchProviderPrepopulateID);
299 const base::ListValue* alternate_urls =
300 prefs->GetList(prefs::kDefaultSearchProviderAlternateURLs);
301 std::string search_terms_replacement_key = prefs->GetString(
302 prefs::kDefaultSearchProviderSearchTermsReplacementKey);
304 default_provider_data->reset(new TemplateURLData);
305 (*default_provider_data)->short_name = name;
306 (*default_provider_data)->SetKeyword(keyword);
307 (*default_provider_data)->SetURL(search_url);
308 (*default_provider_data)->suggestions_url = suggest_url;
309 (*default_provider_data)->instant_url = instant_url;
310 (*default_provider_data)->image_url = image_url;
311 (*default_provider_data)->new_tab_url = new_tab_url;
312 (*default_provider_data)->search_url_post_params = search_url_post_params;
313 (*default_provider_data)->suggestions_url_post_params =
314 suggest_url_post_params;
315 (*default_provider_data)->instant_url_post_params = instant_url_post_params;
316 (*default_provider_data)->image_url_post_params = image_url_post_params;
317 (*default_provider_data)->favicon_url = GURL(icon_url);
318 (*default_provider_data)->show_in_default_list = true;
319 (*default_provider_data)->alternate_urls.clear();
320 for (size_t i = 0; i < alternate_urls->GetSize(); ++i) {
321 std::string alternate_url;
322 if (alternate_urls->GetString(i, &alternate_url))
323 (*default_provider_data)->alternate_urls.push_back(alternate_url);
325 (*default_provider_data)->search_terms_replacement_key =
326 search_terms_replacement_key;
327 base::SplitString(encodings, ';', &(*default_provider_data)->input_encodings);
328 if (!id_string.empty() && !*is_managed) {
329 int64 value;
330 base::StringToInt64(id_string, &value);
331 (*default_provider_data)->id = value;
333 if (!prepopulate_id.empty() && !*is_managed) {
334 int value;
335 base::StringToInt(prepopulate_id, &value);
336 (*default_provider_data)->prepopulate_id = value;
338 return true;
341 // static
342 base::string16 TemplateURLService::CleanUserInputKeyword(
343 const base::string16& keyword) {
344 // Remove the scheme.
345 base::string16 result(base::i18n::ToLower(keyword));
346 base::TrimWhitespace(result, base::TRIM_ALL, &result);
347 url::Component scheme_component;
348 if (url::ExtractScheme(base::UTF16ToUTF8(keyword).c_str(),
349 static_cast<int>(keyword.length()),
350 &scheme_component)) {
351 // If the scheme isn't "http" or "https", bail. The user isn't trying to
352 // type a web address, but rather an FTP, file:, or other scheme URL, or a
353 // search query with some sort of initial operator (e.g. "site:").
354 if (result.compare(0, scheme_component.end(),
355 base::ASCIIToUTF16(url::kHttpScheme)) &&
356 result.compare(0, scheme_component.end(),
357 base::ASCIIToUTF16(url::kHttpsScheme)))
358 return base::string16();
360 // Include trailing ':'.
361 result.erase(0, scheme_component.end() + 1);
362 // Many schemes usually have "//" after them, so strip it too.
363 const base::string16 after_scheme(base::ASCIIToUTF16("//"));
364 if (result.compare(0, after_scheme.length(), after_scheme) == 0)
365 result.erase(0, after_scheme.length());
368 // Remove leading "www.".
369 result = net::StripWWW(result);
371 // Remove trailing "/".
372 return (result.length() > 0 && result[result.length() - 1] == '/') ?
373 result.substr(0, result.length() - 1) : result;
376 // static
377 void TemplateURLService::SaveDefaultSearchProviderToPrefs(
378 const TemplateURL* t_url,
379 PrefService* prefs) {
380 if (!prefs)
381 return;
383 bool enabled = false;
384 std::string search_url;
385 std::string suggest_url;
386 std::string instant_url;
387 std::string image_url;
388 std::string new_tab_url;
389 std::string search_url_post_params;
390 std::string suggest_url_post_params;
391 std::string instant_url_post_params;
392 std::string image_url_post_params;
393 std::string icon_url;
394 std::string encodings;
395 std::string short_name;
396 std::string keyword;
397 std::string id_string;
398 std::string prepopulate_id;
399 base::ListValue alternate_urls;
400 std::string search_terms_replacement_key;
401 if (t_url) {
402 DCHECK_EQ(TemplateURL::NORMAL, t_url->GetType());
403 enabled = true;
404 search_url = t_url->url();
405 suggest_url = t_url->suggestions_url();
406 instant_url = t_url->instant_url();
407 image_url = t_url->image_url();
408 new_tab_url = t_url->new_tab_url();
409 search_url_post_params = t_url->search_url_post_params();
410 suggest_url_post_params = t_url->suggestions_url_post_params();
411 instant_url_post_params = t_url->instant_url_post_params();
412 image_url_post_params = t_url->image_url_post_params();
413 GURL icon_gurl = t_url->favicon_url();
414 if (!icon_gurl.is_empty())
415 icon_url = icon_gurl.spec();
416 encodings = JoinString(t_url->input_encodings(), ';');
417 short_name = base::UTF16ToUTF8(t_url->short_name());
418 keyword = base::UTF16ToUTF8(t_url->keyword());
419 id_string = base::Int64ToString(t_url->id());
420 prepopulate_id = base::Int64ToString(t_url->prepopulate_id());
421 for (size_t i = 0; i < t_url->alternate_urls().size(); ++i)
422 alternate_urls.AppendString(t_url->alternate_urls()[i]);
423 search_terms_replacement_key = t_url->search_terms_replacement_key();
425 prefs->SetBoolean(prefs::kDefaultSearchProviderEnabled, enabled);
426 prefs->SetString(prefs::kDefaultSearchProviderSearchURL, search_url);
427 prefs->SetString(prefs::kDefaultSearchProviderSuggestURL, suggest_url);
428 prefs->SetString(prefs::kDefaultSearchProviderInstantURL, instant_url);
429 prefs->SetString(prefs::kDefaultSearchProviderImageURL, image_url);
430 prefs->SetString(prefs::kDefaultSearchProviderNewTabURL, new_tab_url);
431 prefs->SetString(prefs::kDefaultSearchProviderSearchURLPostParams,
432 search_url_post_params);
433 prefs->SetString(prefs::kDefaultSearchProviderSuggestURLPostParams,
434 suggest_url_post_params);
435 prefs->SetString(prefs::kDefaultSearchProviderInstantURLPostParams,
436 instant_url_post_params);
437 prefs->SetString(prefs::kDefaultSearchProviderImageURLPostParams,
438 image_url_post_params);
439 prefs->SetString(prefs::kDefaultSearchProviderIconURL, icon_url);
440 prefs->SetString(prefs::kDefaultSearchProviderEncodings, encodings);
441 prefs->SetString(prefs::kDefaultSearchProviderName, short_name);
442 prefs->SetString(prefs::kDefaultSearchProviderKeyword, keyword);
443 prefs->SetString(prefs::kDefaultSearchProviderID, id_string);
444 prefs->SetString(prefs::kDefaultSearchProviderPrepopulateID, prepopulate_id);
445 prefs->Set(prefs::kDefaultSearchProviderAlternateURLs, alternate_urls);
446 prefs->SetString(prefs::kDefaultSearchProviderSearchTermsReplacementKey,
447 search_terms_replacement_key);
450 bool TemplateURLService::CanReplaceKeyword(
451 const base::string16& keyword,
452 const GURL& url,
453 TemplateURL** template_url_to_replace) {
454 DCHECK(!keyword.empty()); // This should only be called for non-empty
455 // keywords. If we need to support empty kewords
456 // the code needs to change slightly.
457 TemplateURL* existing_url = GetTemplateURLForKeyword(keyword);
458 if (template_url_to_replace)
459 *template_url_to_replace = existing_url;
460 if (existing_url) {
461 // We already have a TemplateURL for this keyword. Only allow it to be
462 // replaced if the TemplateURL can be replaced.
463 return CanReplace(existing_url);
466 // We don't have a TemplateURL with keyword. Only allow a new one if there
467 // isn't a TemplateURL for the specified host, or there is one but it can
468 // be replaced. We do this to ensure that if the user assigns a different
469 // keyword to a generated TemplateURL, we won't regenerate another keyword for
470 // the same host.
471 return !url.is_valid() || url.host().empty() ||
472 CanReplaceKeywordForHost(url.host(), template_url_to_replace);
475 void TemplateURLService::FindMatchingKeywords(
476 const base::string16& prefix,
477 bool support_replacement_only,
478 TemplateURLVector* matches) {
479 // Sanity check args.
480 if (prefix.empty())
481 return;
482 DCHECK(matches != NULL);
483 DCHECK(matches->empty()); // The code for exact matches assumes this.
485 // Required for VS2010: http://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair
486 TemplateURL* const kNullTemplateURL = NULL;
488 // Find matching keyword range. Searches the element map for keywords
489 // beginning with |prefix| and stores the endpoints of the resulting set in
490 // |match_range|.
491 const std::pair<KeywordToTemplateMap::const_iterator,
492 KeywordToTemplateMap::const_iterator> match_range(
493 std::equal_range(
494 keyword_to_template_map_.begin(), keyword_to_template_map_.end(),
495 KeywordToTemplateMap::value_type(prefix, kNullTemplateURL),
496 LessWithPrefix()));
498 // Return vector of matching keywords.
499 for (KeywordToTemplateMap::const_iterator i(match_range.first);
500 i != match_range.second; ++i) {
501 if (!support_replacement_only ||
502 i->second->url_ref().SupportsReplacement(search_terms_data()))
503 matches->push_back(i->second);
507 TemplateURL* TemplateURLService::GetTemplateURLForKeyword(
508 const base::string16& keyword) {
509 KeywordToTemplateMap::const_iterator elem(
510 keyword_to_template_map_.find(keyword));
511 if (elem != keyword_to_template_map_.end())
512 return elem->second;
513 return (!loaded_ &&
514 initial_default_search_provider_.get() &&
515 (initial_default_search_provider_->keyword() == keyword)) ?
516 initial_default_search_provider_.get() : NULL;
519 TemplateURL* TemplateURLService::GetTemplateURLForGUID(
520 const std::string& sync_guid) {
521 GUIDToTemplateMap::const_iterator elem(guid_to_template_map_.find(sync_guid));
522 if (elem != guid_to_template_map_.end())
523 return elem->second;
524 return (!loaded_ &&
525 initial_default_search_provider_.get() &&
526 (initial_default_search_provider_->sync_guid() == sync_guid)) ?
527 initial_default_search_provider_.get() : NULL;
530 TemplateURL* TemplateURLService::GetTemplateURLForHost(
531 const std::string& host) {
532 if (loaded_)
533 return provider_map_->GetTemplateURLForHost(host);
534 TemplateURL* initial_dsp = initial_default_search_provider_.get();
535 if (!initial_dsp)
536 return NULL;
537 return (initial_dsp->GenerateSearchURL(search_terms_data()).host() == host) ?
538 initial_dsp : NULL;
541 bool TemplateURLService::Add(TemplateURL* template_url) {
542 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
543 if (!AddNoNotify(template_url, true))
544 return false;
545 NotifyObservers();
546 return true;
549 void TemplateURLService::AddWithOverrides(TemplateURL* template_url,
550 const base::string16& short_name,
551 const base::string16& keyword,
552 const std::string& url) {
553 DCHECK(!keyword.empty());
554 DCHECK(!url.empty());
555 template_url->data_.short_name = short_name;
556 template_url->data_.SetKeyword(keyword);
557 template_url->SetURL(url);
558 Add(template_url);
561 void TemplateURLService::AddExtensionControlledTURL(
562 TemplateURL* template_url,
563 scoped_ptr<TemplateURL::AssociatedExtensionInfo> info) {
564 DCHECK(loaded_);
565 DCHECK(template_url);
566 DCHECK_EQ(kInvalidTemplateURLID, template_url->id());
567 DCHECK(info);
568 DCHECK_NE(TemplateURL::NORMAL, info->type);
569 DCHECK_EQ(info->wants_to_be_default_engine,
570 template_url->show_in_default_list());
571 DCHECK(!FindTemplateURLForExtension(info->extension_id, info->type));
572 template_url->extension_info_.swap(info);
574 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
575 if (AddNoNotify(template_url, true)) {
576 if (template_url->extension_info_->wants_to_be_default_engine)
577 UpdateExtensionDefaultSearchEngine();
578 NotifyObservers();
582 void TemplateURLService::Remove(TemplateURL* template_url) {
583 RemoveNoNotify(template_url);
584 NotifyObservers();
587 void TemplateURLService::RemoveExtensionControlledTURL(
588 const std::string& extension_id,
589 TemplateURL::Type type) {
590 DCHECK(loaded_);
591 TemplateURL* url = FindTemplateURLForExtension(extension_id, type);
592 if (!url)
593 return;
594 // NULL this out so that we can call RemoveNoNotify.
595 // UpdateExtensionDefaultSearchEngine will cause it to be reset.
596 if (default_search_provider_ == url)
597 default_search_provider_ = NULL;
598 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
599 RemoveNoNotify(url);
600 UpdateExtensionDefaultSearchEngine();
601 NotifyObservers();
604 void TemplateURLService::RemoveAutoGeneratedSince(base::Time created_after) {
605 RemoveAutoGeneratedBetween(created_after, base::Time());
608 void TemplateURLService::RemoveAutoGeneratedBetween(base::Time created_after,
609 base::Time created_before) {
610 RemoveAutoGeneratedForOriginBetween(GURL(), created_after, created_before);
613 void TemplateURLService::RemoveAutoGeneratedForOriginBetween(
614 const GURL& origin,
615 base::Time created_after,
616 base::Time created_before) {
617 GURL o(origin.GetOrigin());
618 bool should_notify = false;
619 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
620 for (size_t i = 0; i < template_urls_.size();) {
621 if (template_urls_[i]->date_created() >= created_after &&
622 (created_before.is_null() ||
623 template_urls_[i]->date_created() < created_before) &&
624 CanReplace(template_urls_[i]) &&
625 (o.is_empty() ||
626 template_urls_[i]->GenerateSearchURL(
627 search_terms_data()).GetOrigin() == o)) {
628 RemoveNoNotify(template_urls_[i]);
629 should_notify = true;
630 } else {
631 ++i;
634 if (should_notify)
635 NotifyObservers();
638 void TemplateURLService::RegisterOmniboxKeyword(
639 const std::string& extension_id,
640 const std::string& extension_name,
641 const std::string& keyword,
642 const std::string& template_url_string) {
643 DCHECK(loaded_);
645 if (FindTemplateURLForExtension(extension_id,
646 TemplateURL::OMNIBOX_API_EXTENSION))
647 return;
649 TemplateURLData data;
650 data.short_name = base::UTF8ToUTF16(extension_name);
651 data.SetKeyword(base::UTF8ToUTF16(keyword));
652 data.SetURL(template_url_string);
653 TemplateURL* url = new TemplateURL(data);
654 scoped_ptr<TemplateURL::AssociatedExtensionInfo> info(
655 new TemplateURL::AssociatedExtensionInfo(
656 TemplateURL::OMNIBOX_API_EXTENSION, extension_id));
657 AddExtensionControlledTURL(url, info.Pass());
660 TemplateURLService::TemplateURLVector TemplateURLService::GetTemplateURLs() {
661 return template_urls_;
664 void TemplateURLService::IncrementUsageCount(TemplateURL* url) {
665 DCHECK(url);
666 // Extension-controlled search engines are not persisted.
667 if (url->GetType() != TemplateURL::NORMAL)
668 return;
669 if (std::find(template_urls_.begin(), template_urls_.end(), url) ==
670 template_urls_.end())
671 return;
672 ++url->data_.usage_count;
674 if (web_data_service_.get())
675 web_data_service_->UpdateKeyword(url->data());
678 void TemplateURLService::ResetTemplateURL(TemplateURL* url,
679 const base::string16& title,
680 const base::string16& keyword,
681 const std::string& search_url) {
682 if (ResetTemplateURLNoNotify(url, title, keyword, search_url))
683 NotifyObservers();
686 bool TemplateURLService::CanMakeDefault(const TemplateURL* url) {
687 return
688 ((default_search_provider_source_ == DefaultSearchManager::FROM_USER) ||
689 (default_search_provider_source_ ==
690 DefaultSearchManager::FROM_FALLBACK)) &&
691 (url != GetDefaultSearchProvider()) &&
692 url->url_ref().SupportsReplacement(search_terms_data()) &&
693 (url->GetType() == TemplateURL::NORMAL);
696 void TemplateURLService::SetUserSelectedDefaultSearchProvider(
697 TemplateURL* url) {
698 // Omnibox keywords cannot be made default. Extension-controlled search
699 // engines can be made default only by the extension itself because they
700 // aren't persisted.
701 DCHECK(!url || (url->GetType() == TemplateURL::NORMAL));
702 if (load_failed_) {
703 // Skip the DefaultSearchManager, which will persist to user preferences.
704 if ((default_search_provider_source_ == DefaultSearchManager::FROM_USER) ||
705 (default_search_provider_source_ ==
706 DefaultSearchManager::FROM_FALLBACK)) {
707 ApplyDefaultSearchChange(url ? &url->data() : NULL,
708 DefaultSearchManager::FROM_USER);
710 } else {
711 // We rely on the DefaultSearchManager to call OnDefaultSearchChange if, in
712 // fact, the effective DSE changes.
713 if (url)
714 default_search_manager_.SetUserSelectedDefaultSearchEngine(url->data());
715 else
716 default_search_manager_.ClearUserSelectedDefaultSearchEngine();
720 TemplateURL* TemplateURLService::GetDefaultSearchProvider() {
721 return loaded_ ?
722 default_search_provider_ : initial_default_search_provider_.get();
725 bool TemplateURLService::IsSearchResultsPageFromDefaultSearchProvider(
726 const GURL& url) {
727 TemplateURL* default_provider = GetDefaultSearchProvider();
728 return default_provider &&
729 default_provider->IsSearchURL(url, search_terms_data());
732 bool TemplateURLService::IsExtensionControlledDefaultSearch() {
733 return default_search_provider_source_ ==
734 DefaultSearchManager::FROM_EXTENSION;
737 void TemplateURLService::RepairPrepopulatedSearchEngines() {
738 // Can't clean DB if it hasn't been loaded.
739 DCHECK(loaded());
741 if ((default_search_provider_source_ == DefaultSearchManager::FROM_USER) ||
742 (default_search_provider_source_ ==
743 DefaultSearchManager::FROM_FALLBACK)) {
744 // Clear |default_search_provider_| in case we want to remove the engine it
745 // points to. This will get reset at the end of the function anyway.
746 default_search_provider_ = NULL;
749 size_t default_search_provider_index = 0;
750 ScopedVector<TemplateURLData> prepopulated_urls =
751 TemplateURLPrepopulateData::GetPrepopulatedEngines(
752 prefs_, &default_search_provider_index);
753 DCHECK(!prepopulated_urls.empty());
754 ActionsFromPrepopulateData actions(CreateActionsFromCurrentPrepopulateData(
755 &prepopulated_urls, template_urls_, default_search_provider_));
757 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
759 // Remove items.
760 for (std::vector<TemplateURL*>::iterator i = actions.removed_engines.begin();
761 i < actions.removed_engines.end(); ++i)
762 RemoveNoNotify(*i);
764 // Edit items.
765 for (EditedEngines::iterator i(actions.edited_engines.begin());
766 i < actions.edited_engines.end(); ++i) {
767 TemplateURL new_values(i->second);
768 UpdateNoNotify(i->first, new_values);
771 // Add items.
772 for (std::vector<TemplateURLData>::const_iterator i =
773 actions.added_engines.begin();
774 i < actions.added_engines.end();
775 ++i) {
776 AddNoNotify(new TemplateURL(*i), true);
779 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
780 &dsp_change_origin_, DSP_CHANGE_PROFILE_RESET);
782 default_search_manager_.ClearUserSelectedDefaultSearchEngine();
784 if (!default_search_provider_) {
785 // If the default search provider came from a user pref we would have been
786 // notified of the new (fallback-provided) value in
787 // ClearUserSelectedDefaultSearchEngine() above. Since we are here, the
788 // value was presumably originally a fallback value (which may have been
789 // repaired).
790 DefaultSearchManager::Source source;
791 const TemplateURLData* new_dse =
792 default_search_manager_.GetDefaultSearchEngine(&source);
793 // ApplyDefaultSearchChange will notify observers once it is done.
794 ApplyDefaultSearchChange(new_dse, source);
795 } else {
796 NotifyObservers();
800 void TemplateURLService::AddObserver(TemplateURLServiceObserver* observer) {
801 model_observers_.AddObserver(observer);
804 void TemplateURLService::RemoveObserver(TemplateURLServiceObserver* observer) {
805 model_observers_.RemoveObserver(observer);
808 void TemplateURLService::Load() {
809 if (loaded_ || load_handle_)
810 return;
812 if (web_data_service_.get())
813 load_handle_ = web_data_service_->GetKeywords(this);
814 else
815 ChangeToLoadedState();
818 scoped_ptr<TemplateURLService::Subscription>
819 TemplateURLService::RegisterOnLoadedCallback(
820 const base::Closure& callback) {
821 return loaded_ ?
822 scoped_ptr<TemplateURLService::Subscription>() :
823 on_loaded_callbacks_.Add(callback);
826 void TemplateURLService::OnWebDataServiceRequestDone(
827 KeywordWebDataService::Handle h,
828 const WDTypedResult* result) {
829 // Reset the load_handle so that we don't try and cancel the load in
830 // the destructor.
831 load_handle_ = 0;
833 if (!result) {
834 // Results are null if the database went away or (most likely) wasn't
835 // loaded.
836 load_failed_ = true;
837 web_data_service_ = NULL;
838 ChangeToLoadedState();
839 return;
842 TemplateURLVector template_urls;
843 int new_resource_keyword_version = 0;
844 GetSearchProvidersUsingKeywordResult(
845 *result, web_data_service_.get(), prefs_, &template_urls,
846 (default_search_provider_source_ == DefaultSearchManager::FROM_USER)
847 ? initial_default_search_provider_.get()
848 : NULL,
849 search_terms_data(), &new_resource_keyword_version, &pre_sync_deletes_);
851 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
853 PatchMissingSyncGUIDs(&template_urls);
854 SetTemplateURLs(&template_urls);
856 // This initializes provider_map_ which should be done before
857 // calling UpdateKeywordSearchTermsForURL.
858 // This also calls NotifyObservers.
859 ChangeToLoadedState();
861 // Index any visits that occurred before we finished loading.
862 for (size_t i = 0; i < visits_to_add_.size(); ++i)
863 UpdateKeywordSearchTermsForURL(visits_to_add_[i]);
864 visits_to_add_.clear();
866 if (new_resource_keyword_version)
867 web_data_service_->SetBuiltinKeywordVersion(new_resource_keyword_version);
869 if (default_search_provider_) {
870 UMA_HISTOGRAM_ENUMERATION(
871 "Search.DefaultSearchProviderType",
872 TemplateURLPrepopulateData::GetEngineType(
873 *default_search_provider_, search_terms_data()),
874 SEARCH_ENGINE_MAX);
876 if (rappor_service_) {
877 rappor_service_->RecordSample(
878 "Search.DefaultSearchProvider",
879 rappor::ETLD_PLUS_ONE_RAPPOR_TYPE,
880 net::registry_controlled_domains::GetDomainAndRegistry(
881 default_search_provider_->url_ref().GetHost(search_terms_data()),
882 net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES));
887 base::string16 TemplateURLService::GetKeywordShortName(
888 const base::string16& keyword,
889 bool* is_omnibox_api_extension_keyword) {
890 const TemplateURL* template_url = GetTemplateURLForKeyword(keyword);
892 // TODO(sky): Once LocationBarView adds a listener to the TemplateURLService
893 // to track changes to the model, this should become a DCHECK.
894 if (template_url) {
895 *is_omnibox_api_extension_keyword =
896 template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION;
897 return template_url->AdjustedShortNameForLocaleDirection();
899 *is_omnibox_api_extension_keyword = false;
900 return base::string16();
903 void TemplateURLService::OnHistoryURLVisited(const URLVisitedDetails& details) {
904 if (!loaded_)
905 visits_to_add_.push_back(details);
906 else
907 UpdateKeywordSearchTermsForURL(details);
910 void TemplateURLService::Shutdown() {
911 if (client_)
912 client_->Shutdown();
913 // This check has to be done at Shutdown() instead of in the dtor to ensure
914 // that no clients of KeywordWebDataService are holding ptrs to it after the
915 // first phase of the KeyedService Shutdown() process.
916 if (load_handle_) {
917 DCHECK(web_data_service_.get());
918 web_data_service_->CancelRequest(load_handle_);
920 web_data_service_ = NULL;
923 syncer::SyncDataList TemplateURLService::GetAllSyncData(
924 syncer::ModelType type) const {
925 DCHECK_EQ(syncer::SEARCH_ENGINES, type);
927 syncer::SyncDataList current_data;
928 for (TemplateURLVector::const_iterator iter = template_urls_.begin();
929 iter != template_urls_.end(); ++iter) {
930 // We don't sync keywords managed by policy.
931 if ((*iter)->created_by_policy())
932 continue;
933 // We don't sync extension-controlled search engines.
934 if ((*iter)->GetType() != TemplateURL::NORMAL)
935 continue;
936 current_data.push_back(CreateSyncDataFromTemplateURL(**iter));
939 return current_data;
942 syncer::SyncError TemplateURLService::ProcessSyncChanges(
943 const tracked_objects::Location& from_here,
944 const syncer::SyncChangeList& change_list) {
945 if (!models_associated_) {
946 syncer::SyncError error(FROM_HERE,
947 syncer::SyncError::DATATYPE_ERROR,
948 "Models not yet associated.",
949 syncer::SEARCH_ENGINES);
950 return error;
952 DCHECK(loaded_);
954 base::AutoReset<bool> processing_changes(&processing_syncer_changes_, true);
956 // We've started syncing, so set our origin member to the base Sync value.
957 // As we move through Sync Code, we may set this to increasingly specific
958 // origins so we can tell what exactly caused a DSP change.
959 base::AutoReset<DefaultSearchChangeOrigin> change_origin(&dsp_change_origin_,
960 DSP_CHANGE_SYNC_UNINTENTIONAL);
962 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
964 syncer::SyncChangeList new_changes;
965 syncer::SyncError error;
966 for (syncer::SyncChangeList::const_iterator iter = change_list.begin();
967 iter != change_list.end(); ++iter) {
968 DCHECK_EQ(syncer::SEARCH_ENGINES, iter->sync_data().GetDataType());
970 std::string guid =
971 iter->sync_data().GetSpecifics().search_engine().sync_guid();
972 TemplateURL* existing_turl = GetTemplateURLForGUID(guid);
973 scoped_ptr<TemplateURL> turl(CreateTemplateURLFromTemplateURLAndSyncData(
974 client_.get(), prefs_, search_terms_data(), existing_turl,
975 iter->sync_data(), &new_changes));
976 if (!turl.get())
977 continue;
979 // Explicitly don't check for conflicts against extension keywords; in this
980 // case the functions which modify the keyword map know how to handle the
981 // conflicts.
982 // TODO(mpcomplete): If we allow editing extension keywords, then those will
983 // need to undergo conflict resolution.
984 TemplateURL* existing_keyword_turl =
985 FindNonExtensionTemplateURLForKeyword(turl->keyword());
986 if (iter->change_type() == syncer::SyncChange::ACTION_DELETE) {
987 if (!existing_turl) {
988 error = sync_error_factory_->CreateAndUploadError(
989 FROM_HERE,
990 "ProcessSyncChanges failed on ChangeType ACTION_DELETE");
991 continue;
993 if (existing_turl == GetDefaultSearchProvider()) {
994 // The only way Sync can attempt to delete the default search provider
995 // is if we had changed the kSyncedDefaultSearchProviderGUID
996 // preference, but perhaps it has not yet been received. To avoid
997 // situations where this has come in erroneously, we will un-delete
998 // the current default search from the Sync data. If the pref really
999 // does arrive later, then default search will change to the correct
1000 // entry, but we'll have this extra entry sitting around. The result is
1001 // not ideal, but it prevents a far more severe bug where the default is
1002 // unexpectedly swapped to something else. The user can safely delete
1003 // the extra entry again later, if they choose. Most users who do not
1004 // look at the search engines UI will not notice this.
1005 // Note that we append a special character to the end of the keyword in
1006 // an attempt to avoid a ping-poinging situation where receiving clients
1007 // may try to continually delete the resurrected entry.
1008 base::string16 updated_keyword = UniquifyKeyword(*existing_turl, true);
1009 TemplateURLData data(existing_turl->data());
1010 data.SetKeyword(updated_keyword);
1011 TemplateURL new_turl(data);
1012 if (UpdateNoNotify(existing_turl, new_turl))
1013 NotifyObservers();
1015 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(new_turl);
1016 new_changes.push_back(syncer::SyncChange(FROM_HERE,
1017 syncer::SyncChange::ACTION_ADD,
1018 sync_data));
1019 // Ignore the delete attempt. This means we never end up resetting the
1020 // default search provider due to an ACTION_DELETE from sync.
1021 continue;
1024 Remove(existing_turl);
1025 } else if (iter->change_type() == syncer::SyncChange::ACTION_ADD) {
1026 if (existing_turl) {
1027 error = sync_error_factory_->CreateAndUploadError(
1028 FROM_HERE,
1029 "ProcessSyncChanges failed on ChangeType ACTION_ADD");
1030 continue;
1032 const std::string guid = turl->sync_guid();
1033 if (existing_keyword_turl) {
1034 // Resolve any conflicts so we can safely add the new entry.
1035 ResolveSyncKeywordConflict(turl.get(), existing_keyword_turl,
1036 &new_changes);
1038 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
1039 &dsp_change_origin_, DSP_CHANGE_SYNC_ADD);
1040 // Force the local ID to kInvalidTemplateURLID so we can add it.
1041 TemplateURLData data(turl->data());
1042 data.id = kInvalidTemplateURLID;
1043 TemplateURL* added = new TemplateURL(data);
1044 if (Add(added))
1045 MaybeUpdateDSEAfterSync(added);
1046 } else if (iter->change_type() == syncer::SyncChange::ACTION_UPDATE) {
1047 if (!existing_turl) {
1048 error = sync_error_factory_->CreateAndUploadError(
1049 FROM_HERE,
1050 "ProcessSyncChanges failed on ChangeType ACTION_UPDATE");
1051 continue;
1053 if (existing_keyword_turl && (existing_keyword_turl != existing_turl)) {
1054 // Resolve any conflicts with other entries so we can safely update the
1055 // keyword.
1056 ResolveSyncKeywordConflict(turl.get(), existing_keyword_turl,
1057 &new_changes);
1059 if (UpdateNoNotify(existing_turl, *turl)) {
1060 NotifyObservers();
1061 MaybeUpdateDSEAfterSync(existing_turl);
1063 } else {
1064 // We've unexpectedly received an ACTION_INVALID.
1065 error = sync_error_factory_->CreateAndUploadError(
1066 FROM_HERE,
1067 "ProcessSyncChanges received an ACTION_INVALID");
1071 // If something went wrong, we want to prematurely exit to avoid pushing
1072 // inconsistent data to Sync. We return the last error we received.
1073 if (error.IsSet())
1074 return error;
1076 error = sync_processor_->ProcessSyncChanges(from_here, new_changes);
1078 return error;
1081 syncer::SyncMergeResult TemplateURLService::MergeDataAndStartSyncing(
1082 syncer::ModelType type,
1083 const syncer::SyncDataList& initial_sync_data,
1084 scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
1085 scoped_ptr<syncer::SyncErrorFactory> sync_error_factory) {
1086 DCHECK(loaded_);
1087 DCHECK_EQ(type, syncer::SEARCH_ENGINES);
1088 DCHECK(!sync_processor_.get());
1089 DCHECK(sync_processor.get());
1090 DCHECK(sync_error_factory.get());
1091 syncer::SyncMergeResult merge_result(type);
1093 // Disable sync if we failed to load.
1094 if (load_failed_) {
1095 merge_result.set_error(syncer::SyncError(
1096 FROM_HERE, syncer::SyncError::DATATYPE_ERROR,
1097 "Local database load failed.", syncer::SEARCH_ENGINES));
1098 return merge_result;
1101 sync_processor_ = sync_processor.Pass();
1102 sync_error_factory_ = sync_error_factory.Pass();
1104 // We do a lot of calls to Add/Remove/ResetTemplateURL here, so ensure we
1105 // don't step on our own toes.
1106 base::AutoReset<bool> processing_changes(&processing_syncer_changes_, true);
1108 // We've started syncing, so set our origin member to the base Sync value.
1109 // As we move through Sync Code, we may set this to increasingly specific
1110 // origins so we can tell what exactly caused a DSP change.
1111 base::AutoReset<DefaultSearchChangeOrigin> change_origin(&dsp_change_origin_,
1112 DSP_CHANGE_SYNC_UNINTENTIONAL);
1114 syncer::SyncChangeList new_changes;
1116 // Build maps of our sync GUIDs to syncer::SyncData.
1117 SyncDataMap local_data_map = CreateGUIDToSyncDataMap(
1118 GetAllSyncData(syncer::SEARCH_ENGINES));
1119 SyncDataMap sync_data_map = CreateGUIDToSyncDataMap(initial_sync_data);
1121 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1123 merge_result.set_num_items_before_association(local_data_map.size());
1124 for (SyncDataMap::const_iterator iter = sync_data_map.begin();
1125 iter != sync_data_map.end(); ++iter) {
1126 TemplateURL* local_turl = GetTemplateURLForGUID(iter->first);
1127 scoped_ptr<TemplateURL> sync_turl(
1128 CreateTemplateURLFromTemplateURLAndSyncData(
1129 client_.get(), prefs_, search_terms_data(), local_turl,
1130 iter->second, &new_changes));
1131 if (!sync_turl.get())
1132 continue;
1134 if (pre_sync_deletes_.find(sync_turl->sync_guid()) !=
1135 pre_sync_deletes_.end()) {
1136 // This entry was deleted before the initial sync began (possibly through
1137 // preprocessing in TemplateURLService's loading code). Ignore it and send
1138 // an ACTION_DELETE up to the server.
1139 new_changes.push_back(
1140 syncer::SyncChange(FROM_HERE,
1141 syncer::SyncChange::ACTION_DELETE,
1142 iter->second));
1143 UMA_HISTOGRAM_ENUMERATION(kDeleteSyncedEngineHistogramName,
1144 DELETE_ENGINE_PRE_SYNC, DELETE_ENGINE_MAX);
1145 continue;
1148 if (local_turl) {
1149 DCHECK(IsFromSync(local_turl, sync_data_map));
1150 // This local search engine is already synced. If the timestamp differs
1151 // from Sync, we need to update locally or to the cloud. Note that if the
1152 // timestamps are equal, we touch neither.
1153 if (sync_turl->last_modified() > local_turl->last_modified()) {
1154 // We've received an update from Sync. We should replace all synced
1155 // fields in the local TemplateURL. Note that this includes the
1156 // TemplateURLID and the TemplateURL may have to be reparsed. This
1157 // also makes the local data's last_modified timestamp equal to Sync's,
1158 // avoiding an Update on the next MergeData call.
1159 if (UpdateNoNotify(local_turl, *sync_turl))
1160 NotifyObservers();
1161 merge_result.set_num_items_modified(
1162 merge_result.num_items_modified() + 1);
1163 } else if (sync_turl->last_modified() < local_turl->last_modified()) {
1164 // Otherwise, we know we have newer data, so update Sync with our
1165 // data fields.
1166 new_changes.push_back(
1167 syncer::SyncChange(FROM_HERE,
1168 syncer::SyncChange::ACTION_UPDATE,
1169 local_data_map[local_turl->sync_guid()]));
1171 local_data_map.erase(iter->first);
1172 } else {
1173 // The search engine from the cloud has not been synced locally. Merge it
1174 // into our local model. This will handle any conflicts with local (and
1175 // already-synced) TemplateURLs. It will prefer to keep entries from Sync
1176 // over not-yet-synced TemplateURLs.
1177 MergeInSyncTemplateURL(sync_turl.get(), sync_data_map, &new_changes,
1178 &local_data_map, &merge_result);
1182 // The remaining SyncData in local_data_map should be everything that needs to
1183 // be pushed as ADDs to sync.
1184 for (SyncDataMap::const_iterator iter = local_data_map.begin();
1185 iter != local_data_map.end(); ++iter) {
1186 new_changes.push_back(
1187 syncer::SyncChange(FROM_HERE,
1188 syncer::SyncChange::ACTION_ADD,
1189 iter->second));
1192 // Do some post-processing on the change list to ensure that we are sending
1193 // valid changes to sync_processor_.
1194 PruneSyncChanges(&sync_data_map, &new_changes);
1196 LogDuplicatesHistogram(GetTemplateURLs());
1197 merge_result.set_num_items_after_association(
1198 GetAllSyncData(syncer::SEARCH_ENGINES).size());
1199 merge_result.set_error(
1200 sync_processor_->ProcessSyncChanges(FROM_HERE, new_changes));
1201 if (merge_result.error().IsSet())
1202 return merge_result;
1204 // The ACTION_DELETEs from this set are processed. Empty it so we don't try to
1205 // reuse them on the next call to MergeDataAndStartSyncing.
1206 pre_sync_deletes_.clear();
1208 models_associated_ = true;
1209 return merge_result;
1212 void TemplateURLService::StopSyncing(syncer::ModelType type) {
1213 DCHECK_EQ(type, syncer::SEARCH_ENGINES);
1214 models_associated_ = false;
1215 sync_processor_.reset();
1216 sync_error_factory_.reset();
1219 void TemplateURLService::ProcessTemplateURLChange(
1220 const tracked_objects::Location& from_here,
1221 const TemplateURL* turl,
1222 syncer::SyncChange::SyncChangeType type) {
1223 DCHECK_NE(type, syncer::SyncChange::ACTION_INVALID);
1224 DCHECK(turl);
1226 if (!models_associated_)
1227 return; // Not syncing.
1229 if (processing_syncer_changes_)
1230 return; // These are changes originating from us. Ignore.
1232 // Avoid syncing keywords managed by policy.
1233 if (turl->created_by_policy())
1234 return;
1236 // Avoid syncing extension-controlled search engines.
1237 if (turl->GetType() == TemplateURL::NORMAL_CONTROLLED_BY_EXTENSION)
1238 return;
1240 syncer::SyncChangeList changes;
1242 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(*turl);
1243 changes.push_back(syncer::SyncChange(from_here,
1244 type,
1245 sync_data));
1247 sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
1250 // static
1251 syncer::SyncData TemplateURLService::CreateSyncDataFromTemplateURL(
1252 const TemplateURL& turl) {
1253 sync_pb::EntitySpecifics specifics;
1254 sync_pb::SearchEngineSpecifics* se_specifics =
1255 specifics.mutable_search_engine();
1256 se_specifics->set_short_name(base::UTF16ToUTF8(turl.short_name()));
1257 se_specifics->set_keyword(base::UTF16ToUTF8(turl.keyword()));
1258 se_specifics->set_favicon_url(turl.favicon_url().spec());
1259 se_specifics->set_url(turl.url());
1260 se_specifics->set_safe_for_autoreplace(turl.safe_for_autoreplace());
1261 se_specifics->set_originating_url(turl.originating_url().spec());
1262 se_specifics->set_date_created(turl.date_created().ToInternalValue());
1263 se_specifics->set_input_encodings(JoinString(turl.input_encodings(), ';'));
1264 se_specifics->set_show_in_default_list(turl.show_in_default_list());
1265 se_specifics->set_suggestions_url(turl.suggestions_url());
1266 se_specifics->set_prepopulate_id(turl.prepopulate_id());
1267 se_specifics->set_instant_url(turl.instant_url());
1268 if (!turl.image_url().empty())
1269 se_specifics->set_image_url(turl.image_url());
1270 se_specifics->set_new_tab_url(turl.new_tab_url());
1271 if (!turl.search_url_post_params().empty())
1272 se_specifics->set_search_url_post_params(turl.search_url_post_params());
1273 if (!turl.suggestions_url_post_params().empty()) {
1274 se_specifics->set_suggestions_url_post_params(
1275 turl.suggestions_url_post_params());
1277 if (!turl.instant_url_post_params().empty())
1278 se_specifics->set_instant_url_post_params(turl.instant_url_post_params());
1279 if (!turl.image_url_post_params().empty())
1280 se_specifics->set_image_url_post_params(turl.image_url_post_params());
1281 se_specifics->set_last_modified(turl.last_modified().ToInternalValue());
1282 se_specifics->set_sync_guid(turl.sync_guid());
1283 for (size_t i = 0; i < turl.alternate_urls().size(); ++i)
1284 se_specifics->add_alternate_urls(turl.alternate_urls()[i]);
1285 se_specifics->set_search_terms_replacement_key(
1286 turl.search_terms_replacement_key());
1288 return syncer::SyncData::CreateLocalData(se_specifics->sync_guid(),
1289 se_specifics->keyword(),
1290 specifics);
1293 // static
1294 scoped_ptr<TemplateURL>
1295 TemplateURLService::CreateTemplateURLFromTemplateURLAndSyncData(
1296 TemplateURLServiceClient* client,
1297 PrefService* prefs,
1298 const SearchTermsData& search_terms_data,
1299 TemplateURL* existing_turl,
1300 const syncer::SyncData& sync_data,
1301 syncer::SyncChangeList* change_list) {
1302 DCHECK(change_list);
1304 sync_pb::SearchEngineSpecifics specifics =
1305 sync_data.GetSpecifics().search_engine();
1307 // Past bugs might have caused either of these fields to be empty. Just
1308 // delete this data off the server.
1309 if (specifics.url().empty() || specifics.sync_guid().empty()) {
1310 change_list->push_back(
1311 syncer::SyncChange(FROM_HERE,
1312 syncer::SyncChange::ACTION_DELETE,
1313 sync_data));
1314 UMA_HISTOGRAM_ENUMERATION(kDeleteSyncedEngineHistogramName,
1315 DELETE_ENGINE_EMPTY_FIELD, DELETE_ENGINE_MAX);
1316 return NULL;
1319 TemplateURLData data(existing_turl ?
1320 existing_turl->data() : TemplateURLData());
1321 data.short_name = base::UTF8ToUTF16(specifics.short_name());
1322 data.originating_url = GURL(specifics.originating_url());
1323 base::string16 keyword(base::UTF8ToUTF16(specifics.keyword()));
1324 // NOTE: Once this code has shipped in a couple of stable releases, we can
1325 // probably remove the migration portion, comment out the
1326 // "autogenerate_keyword" field entirely in the .proto file, and fold the
1327 // empty keyword case into the "delete data" block above.
1328 bool reset_keyword =
1329 specifics.autogenerate_keyword() || specifics.keyword().empty();
1330 if (reset_keyword)
1331 keyword = base::ASCIIToUTF16("dummy"); // Will be replaced below.
1332 DCHECK(!keyword.empty());
1333 data.SetKeyword(keyword);
1334 data.SetURL(specifics.url());
1335 data.suggestions_url = specifics.suggestions_url();
1336 data.instant_url = specifics.instant_url();
1337 data.image_url = specifics.image_url();
1338 data.new_tab_url = specifics.new_tab_url();
1339 data.search_url_post_params = specifics.search_url_post_params();
1340 data.suggestions_url_post_params = specifics.suggestions_url_post_params();
1341 data.instant_url_post_params = specifics.instant_url_post_params();
1342 data.image_url_post_params = specifics.image_url_post_params();
1343 data.favicon_url = GURL(specifics.favicon_url());
1344 data.show_in_default_list = specifics.show_in_default_list();
1345 data.safe_for_autoreplace = specifics.safe_for_autoreplace();
1346 base::SplitString(specifics.input_encodings(), ';', &data.input_encodings);
1347 // If the server data has duplicate encodings, we'll want to push an update
1348 // below to correct it. Note that we also fix this in
1349 // GetSearchProvidersUsingKeywordResult(), since otherwise we'd never correct
1350 // local problems for clients which have disabled search engine sync.
1351 bool deduped = DeDupeEncodings(&data.input_encodings);
1352 data.date_created = base::Time::FromInternalValue(specifics.date_created());
1353 data.last_modified = base::Time::FromInternalValue(specifics.last_modified());
1354 data.prepopulate_id = specifics.prepopulate_id();
1355 data.sync_guid = specifics.sync_guid();
1356 data.alternate_urls.clear();
1357 for (int i = 0; i < specifics.alternate_urls_size(); ++i)
1358 data.alternate_urls.push_back(specifics.alternate_urls(i));
1359 data.search_terms_replacement_key = specifics.search_terms_replacement_key();
1361 scoped_ptr<TemplateURL> turl(new TemplateURL(data));
1362 // If this TemplateURL matches a built-in prepopulated template URL, it's
1363 // possible that sync is trying to modify fields that should not be touched.
1364 // Revert these fields to the built-in values.
1365 UpdateTemplateURLIfPrepopulated(turl.get(), prefs);
1367 // We used to sync keywords associated with omnibox extensions, but no longer
1368 // want to. However, if we delete these keywords from sync, we'll break any
1369 // synced old versions of Chrome which were relying on them. Instead, for now
1370 // we simply ignore these.
1371 // TODO(vasilii): After a few Chrome versions, change this to go ahead and
1372 // delete these from sync.
1373 DCHECK(client);
1374 client->RestoreExtensionInfoIfNecessary(turl.get());
1375 if (turl->GetType() == TemplateURL::OMNIBOX_API_EXTENSION)
1376 return NULL;
1378 DCHECK_EQ(TemplateURL::NORMAL, turl->GetType());
1379 if (reset_keyword || deduped) {
1380 if (reset_keyword)
1381 turl->ResetKeywordIfNecessary(search_terms_data, true);
1382 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(*turl);
1383 change_list->push_back(syncer::SyncChange(FROM_HERE,
1384 syncer::SyncChange::ACTION_UPDATE,
1385 sync_data));
1386 } else if (turl->IsGoogleSearchURLWithReplaceableKeyword(search_terms_data)) {
1387 if (!existing_turl) {
1388 // We're adding a new TemplateURL that uses the Google base URL, so set
1389 // its keyword appropriately for the local environment.
1390 turl->ResetKeywordIfNecessary(search_terms_data, false);
1391 } else if (existing_turl->IsGoogleSearchURLWithReplaceableKeyword(
1392 search_terms_data)) {
1393 // Ignore keyword changes triggered by the Google base URL changing on
1394 // another client. If the base URL changes in this client as well, we'll
1395 // pick that up separately at the appropriate time. Otherwise, changing
1396 // the keyword here could result in having the wrong keyword for the local
1397 // environment.
1398 turl->data_.SetKeyword(existing_turl->keyword());
1402 return turl.Pass();
1405 // static
1406 SyncDataMap TemplateURLService::CreateGUIDToSyncDataMap(
1407 const syncer::SyncDataList& sync_data) {
1408 SyncDataMap data_map;
1409 for (syncer::SyncDataList::const_iterator i(sync_data.begin());
1410 i != sync_data.end();
1411 ++i)
1412 data_map[i->GetSpecifics().search_engine().sync_guid()] = *i;
1413 return data_map;
1416 void TemplateURLService::Init(const Initializer* initializers,
1417 int num_initializers) {
1418 if (client_)
1419 client_->SetOwner(this);
1421 // GoogleURLTracker is not created in tests.
1422 if (google_url_tracker_) {
1423 google_url_updated_subscription_ =
1424 google_url_tracker_->RegisterCallback(base::Bind(
1425 &TemplateURLService::GoogleBaseURLChanged, base::Unretained(this)));
1428 if (prefs_) {
1429 pref_change_registrar_.Init(prefs_);
1430 pref_change_registrar_.Add(
1431 prefs::kSyncedDefaultSearchProviderGUID,
1432 base::Bind(
1433 &TemplateURLService::OnSyncedDefaultSearchProviderGUIDChanged,
1434 base::Unretained(this)));
1437 DefaultSearchManager::Source source = DefaultSearchManager::FROM_USER;
1438 TemplateURLData* dse =
1439 default_search_manager_.GetDefaultSearchEngine(&source);
1440 ApplyDefaultSearchChange(dse, source);
1442 if (num_initializers > 0) {
1443 // This path is only hit by test code and is used to simulate a loaded
1444 // TemplateURLService.
1445 ChangeToLoadedState();
1447 // Add specific initializers, if any.
1448 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1449 for (int i(0); i < num_initializers; ++i) {
1450 DCHECK(initializers[i].keyword);
1451 DCHECK(initializers[i].url);
1452 DCHECK(initializers[i].content);
1454 // TemplateURLService ends up owning the TemplateURL, don't try and free
1455 // it.
1456 TemplateURLData data;
1457 data.short_name = base::UTF8ToUTF16(initializers[i].content);
1458 data.SetKeyword(base::UTF8ToUTF16(initializers[i].keyword));
1459 data.SetURL(initializers[i].url);
1460 TemplateURL* template_url = new TemplateURL(data);
1461 AddNoNotify(template_url, true);
1463 // Set the first provided identifier to be the default.
1464 if (i == 0)
1465 default_search_manager_.SetUserSelectedDefaultSearchEngine(data);
1469 // Request a server check for the correct Google URL if Google is the
1470 // default search engine.
1471 RequestGoogleURLTrackerServerCheckIfNecessary();
1474 void TemplateURLService::RemoveFromMaps(TemplateURL* template_url) {
1475 const base::string16& keyword = template_url->keyword();
1476 DCHECK_NE(0U, keyword_to_template_map_.count(keyword));
1477 if (keyword_to_template_map_[keyword] == template_url) {
1478 // We need to check whether the keyword can now be provided by another
1479 // TemplateURL. See the comments in AddToMaps() for more information on
1480 // extension keywords and how they can coexist with non-extension keywords.
1481 // In the case of more than one extension, we use the most recently
1482 // installed (which will be the most recently added, which will have the
1483 // highest ID).
1484 TemplateURL* best_fallback = NULL;
1485 for (TemplateURLVector::const_iterator i(template_urls_.begin());
1486 i != template_urls_.end(); ++i) {
1487 TemplateURL* turl = *i;
1488 // This next statement relies on the fact that there can only be one
1489 // non-Omnibox API TemplateURL with a given keyword.
1490 if ((turl != template_url) && (turl->keyword() == keyword) &&
1491 (!best_fallback ||
1492 (best_fallback->GetType() != TemplateURL::OMNIBOX_API_EXTENSION) ||
1493 ((turl->GetType() == TemplateURL::OMNIBOX_API_EXTENSION) &&
1494 (turl->id() > best_fallback->id()))))
1495 best_fallback = turl;
1497 if (best_fallback)
1498 keyword_to_template_map_[keyword] = best_fallback;
1499 else
1500 keyword_to_template_map_.erase(keyword);
1503 if (template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION)
1504 return;
1506 if (!template_url->sync_guid().empty())
1507 guid_to_template_map_.erase(template_url->sync_guid());
1508 // |provider_map_| is only initialized after loading has completed.
1509 if (loaded_) {
1510 provider_map_->Remove(template_url);
1514 void TemplateURLService::AddToMaps(TemplateURL* template_url) {
1515 bool template_url_is_omnibox_api =
1516 template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION;
1517 const base::string16& keyword = template_url->keyword();
1518 KeywordToTemplateMap::const_iterator i =
1519 keyword_to_template_map_.find(keyword);
1520 if (i == keyword_to_template_map_.end()) {
1521 keyword_to_template_map_[keyword] = template_url;
1522 } else {
1523 const TemplateURL* existing_url = i->second;
1524 // We should only have overlapping keywords when at least one comes from
1525 // an extension. In that case, the ranking order is:
1526 // Manually-modified keywords > extension keywords > replaceable keywords
1527 // When there are multiple extensions, the last-added wins.
1528 bool existing_url_is_omnibox_api =
1529 existing_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION;
1530 DCHECK(existing_url_is_omnibox_api || template_url_is_omnibox_api);
1531 if (existing_url_is_omnibox_api ?
1532 !CanReplace(template_url) : CanReplace(existing_url))
1533 keyword_to_template_map_[keyword] = template_url;
1536 if (template_url_is_omnibox_api)
1537 return;
1539 if (!template_url->sync_guid().empty())
1540 guid_to_template_map_[template_url->sync_guid()] = template_url;
1541 // |provider_map_| is only initialized after loading has completed.
1542 if (loaded_)
1543 provider_map_->Add(template_url, search_terms_data());
1546 // Helper for partition() call in next function.
1547 bool HasValidID(TemplateURL* t_url) {
1548 return t_url->id() != kInvalidTemplateURLID;
1551 void TemplateURLService::SetTemplateURLs(TemplateURLVector* urls) {
1552 // Partition the URLs first, instead of implementing the loops below by simply
1553 // scanning the input twice. While it's not supposed to happen normally, it's
1554 // possible for corrupt databases to return multiple entries with the same
1555 // keyword. In this case, the first loop may delete the first entry when
1556 // adding the second. If this happens, the second loop must not attempt to
1557 // access the deleted entry. Partitioning ensures this constraint.
1558 TemplateURLVector::iterator first_invalid(
1559 std::partition(urls->begin(), urls->end(), HasValidID));
1561 // First, add the items that already have id's, so that the next_id_ gets
1562 // properly set.
1563 for (TemplateURLVector::const_iterator i = urls->begin(); i != first_invalid;
1564 ++i) {
1565 next_id_ = std::max(next_id_, (*i)->id());
1566 AddNoNotify(*i, false);
1569 // Next add the new items that don't have id's.
1570 for (TemplateURLVector::const_iterator i = first_invalid; i != urls->end();
1571 ++i)
1572 AddNoNotify(*i, true);
1574 // Clear the input vector to reduce the chance callers will try to use a
1575 // (possibly deleted) entry.
1576 urls->clear();
1579 void TemplateURLService::ChangeToLoadedState() {
1580 DCHECK(!loaded_);
1582 provider_map_->Init(template_urls_, search_terms_data());
1583 loaded_ = true;
1585 // This will cause a call to NotifyObservers().
1586 ApplyDefaultSearchChangeNoMetrics(
1587 initial_default_search_provider_ ?
1588 &initial_default_search_provider_->data() : NULL,
1589 default_search_provider_source_);
1590 initial_default_search_provider_.reset();
1591 on_loaded_callbacks_.Notify();
1594 bool TemplateURLService::CanReplaceKeywordForHost(
1595 const std::string& host,
1596 TemplateURL** to_replace) {
1597 DCHECK(!to_replace || !*to_replace);
1598 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host);
1599 if (!urls)
1600 return true;
1601 for (TemplateURLSet::const_iterator i(urls->begin()); i != urls->end(); ++i) {
1602 if (CanReplace(*i)) {
1603 if (to_replace)
1604 *to_replace = *i;
1605 return true;
1608 return false;
1611 bool TemplateURLService::CanReplace(const TemplateURL* t_url) {
1612 return (t_url != default_search_provider_ && !t_url->show_in_default_list() &&
1613 t_url->safe_for_autoreplace());
1616 TemplateURL* TemplateURLService::FindNonExtensionTemplateURLForKeyword(
1617 const base::string16& keyword) {
1618 TemplateURL* keyword_turl = GetTemplateURLForKeyword(keyword);
1619 if (!keyword_turl || (keyword_turl->GetType() == TemplateURL::NORMAL))
1620 return keyword_turl;
1621 // The extension keyword in the model may be hiding a replaceable
1622 // non-extension keyword. Look for it.
1623 for (TemplateURLVector::const_iterator i(template_urls_.begin());
1624 i != template_urls_.end(); ++i) {
1625 if (((*i)->GetType() == TemplateURL::NORMAL) &&
1626 ((*i)->keyword() == keyword))
1627 return *i;
1629 return NULL;
1632 bool TemplateURLService::UpdateNoNotify(TemplateURL* existing_turl,
1633 const TemplateURL& new_values) {
1634 DCHECK(existing_turl);
1635 if (std::find(template_urls_.begin(), template_urls_.end(), existing_turl) ==
1636 template_urls_.end())
1637 return false;
1639 DCHECK_NE(TemplateURL::OMNIBOX_API_EXTENSION, existing_turl->GetType());
1641 base::string16 old_keyword(existing_turl->keyword());
1642 keyword_to_template_map_.erase(old_keyword);
1643 if (!existing_turl->sync_guid().empty())
1644 guid_to_template_map_.erase(existing_turl->sync_guid());
1646 // |provider_map_| is only initialized after loading has completed.
1647 if (loaded_)
1648 provider_map_->Remove(existing_turl);
1650 TemplateURLID previous_id = existing_turl->id();
1651 existing_turl->CopyFrom(new_values);
1652 existing_turl->data_.id = previous_id;
1654 if (loaded_) {
1655 provider_map_->Add(existing_turl, search_terms_data());
1658 const base::string16& keyword = existing_turl->keyword();
1659 KeywordToTemplateMap::const_iterator i =
1660 keyword_to_template_map_.find(keyword);
1661 if (i == keyword_to_template_map_.end()) {
1662 keyword_to_template_map_[keyword] = existing_turl;
1663 } else {
1664 // We can theoretically reach here in two cases:
1665 // * There is an existing extension keyword and sync brings in a rename of
1666 // a non-extension keyword to match. In this case we just need to pick
1667 // which keyword has priority to update the keyword map.
1668 // * Autogeneration of the keyword for a Google default search provider
1669 // at load time causes it to conflict with an existing keyword. In this
1670 // case we delete the existing keyword if it's replaceable, or else undo
1671 // the change in keyword for |existing_turl|.
1672 TemplateURL* existing_keyword_turl = i->second;
1673 if (existing_keyword_turl->GetType() != TemplateURL::NORMAL) {
1674 if (!CanReplace(existing_turl))
1675 keyword_to_template_map_[keyword] = existing_turl;
1676 } else {
1677 if (CanReplace(existing_keyword_turl)) {
1678 RemoveNoNotify(existing_keyword_turl);
1679 } else {
1680 existing_turl->data_.SetKeyword(old_keyword);
1681 keyword_to_template_map_[old_keyword] = existing_turl;
1685 if (!existing_turl->sync_guid().empty())
1686 guid_to_template_map_[existing_turl->sync_guid()] = existing_turl;
1688 if (web_data_service_.get())
1689 web_data_service_->UpdateKeyword(existing_turl->data());
1691 // Inform sync of the update.
1692 ProcessTemplateURLChange(
1693 FROM_HERE, existing_turl, syncer::SyncChange::ACTION_UPDATE);
1695 if (default_search_provider_ == existing_turl &&
1696 default_search_provider_source_ == DefaultSearchManager::FROM_USER) {
1697 default_search_manager_.SetUserSelectedDefaultSearchEngine(
1698 default_search_provider_->data());
1700 return true;
1703 // static
1704 void TemplateURLService::UpdateTemplateURLIfPrepopulated(
1705 TemplateURL* template_url,
1706 PrefService* prefs) {
1707 int prepopulate_id = template_url->prepopulate_id();
1708 if (template_url->prepopulate_id() == 0)
1709 return;
1711 size_t default_search_index;
1712 ScopedVector<TemplateURLData> prepopulated_urls =
1713 TemplateURLPrepopulateData::GetPrepopulatedEngines(
1714 prefs, &default_search_index);
1716 for (size_t i = 0; i < prepopulated_urls.size(); ++i) {
1717 if (prepopulated_urls[i]->prepopulate_id == prepopulate_id) {
1718 MergeIntoPrepopulatedEngineData(template_url, prepopulated_urls[i]);
1719 template_url->CopyFrom(TemplateURL(*prepopulated_urls[i]));
1724 void TemplateURLService::MaybeUpdateDSEAfterSync(TemplateURL* synced_turl) {
1725 if (prefs_ &&
1726 (synced_turl->sync_guid() ==
1727 prefs_->GetString(prefs::kSyncedDefaultSearchProviderGUID))) {
1728 default_search_manager_.SetUserSelectedDefaultSearchEngine(
1729 synced_turl->data());
1733 void TemplateURLService::UpdateKeywordSearchTermsForURL(
1734 const URLVisitedDetails& details) {
1735 if (!details.url.is_valid())
1736 return;
1738 const TemplateURLSet* urls_for_host =
1739 provider_map_->GetURLsForHost(details.url.host());
1740 if (!urls_for_host)
1741 return;
1743 for (TemplateURLSet::const_iterator i = urls_for_host->begin();
1744 i != urls_for_host->end(); ++i) {
1745 base::string16 search_terms;
1746 if ((*i)->ExtractSearchTermsFromURL(details.url, search_terms_data(),
1747 &search_terms) &&
1748 !search_terms.empty()) {
1749 if (details.is_keyword_transition) {
1750 // The visit is the result of the user entering a keyword, generate a
1751 // KEYWORD_GENERATED visit for the KEYWORD so that the keyword typed
1752 // count is boosted.
1753 AddTabToSearchVisit(**i);
1755 if (client_) {
1756 client_->SetKeywordSearchTermsForURL(
1757 details.url, (*i)->id(), search_terms);
1763 void TemplateURLService::AddTabToSearchVisit(const TemplateURL& t_url) {
1764 // Only add visits for entries the user hasn't modified. If the user modified
1765 // the entry the keyword may no longer correspond to the host name. It may be
1766 // possible to do something more sophisticated here, but it's so rare as to
1767 // not be worth it.
1768 if (!t_url.safe_for_autoreplace())
1769 return;
1771 if (!client_)
1772 return;
1774 GURL url(
1775 url_fixer::FixupURL(base::UTF16ToUTF8(t_url.keyword()), std::string()));
1776 if (!url.is_valid())
1777 return;
1779 // Synthesize a visit for the keyword. This ensures the url for the keyword is
1780 // autocompleted even if the user doesn't type the url in directly.
1781 client_->AddKeywordGeneratedVisit(url);
1784 void TemplateURLService::RequestGoogleURLTrackerServerCheckIfNecessary() {
1785 if (default_search_provider_ &&
1786 default_search_provider_->HasGoogleBaseURLs(search_terms_data()) &&
1787 google_url_tracker_)
1788 google_url_tracker_->RequestServerCheck(false);
1791 void TemplateURLService::GoogleBaseURLChanged() {
1792 if (!loaded_)
1793 return;
1795 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1796 bool something_changed = false;
1797 for (TemplateURLVector::iterator i(template_urls_.begin());
1798 i != template_urls_.end(); ++i) {
1799 TemplateURL* t_url = *i;
1800 if (t_url->HasGoogleBaseURLs(search_terms_data())) {
1801 TemplateURL updated_turl(t_url->data());
1802 updated_turl.ResetKeywordIfNecessary(search_terms_data(), false);
1803 KeywordToTemplateMap::const_iterator existing_entry =
1804 keyword_to_template_map_.find(updated_turl.keyword());
1805 if ((existing_entry != keyword_to_template_map_.end()) &&
1806 (existing_entry->second != t_url)) {
1807 // The new autogenerated keyword conflicts with another TemplateURL.
1808 // Overwrite it if it's replaceable; otherwise, leave |t_url| using its
1809 // current keyword. (This will not prevent |t_url| from auto-updating
1810 // the keyword in the future if the conflicting TemplateURL disappears.)
1811 // Note that we must still update |t_url| in this case, or the
1812 // |provider_map_| will not be updated correctly.
1813 if (CanReplace(existing_entry->second))
1814 RemoveNoNotify(existing_entry->second);
1815 else
1816 updated_turl.data_.SetKeyword(t_url->keyword());
1818 something_changed = true;
1819 // This will send the keyword change to sync. Note that other clients
1820 // need to reset the keyword to an appropriate local value when this
1821 // change arrives; see CreateTemplateURLFromTemplateURLAndSyncData().
1822 UpdateNoNotify(t_url, updated_turl);
1825 if (something_changed)
1826 NotifyObservers();
1829 void TemplateURLService::OnDefaultSearchChange(
1830 const TemplateURLData* data,
1831 DefaultSearchManager::Source source) {
1832 if (prefs_ && (source == DefaultSearchManager::FROM_USER) &&
1833 ((source != default_search_provider_source_) ||
1834 !IdenticalSyncGUIDs(data, GetDefaultSearchProvider()))) {
1835 prefs_->SetString(prefs::kSyncedDefaultSearchProviderGUID, data->sync_guid);
1837 ApplyDefaultSearchChange(data, source);
1840 void TemplateURLService::ApplyDefaultSearchChange(
1841 const TemplateURLData* data,
1842 DefaultSearchManager::Source source) {
1843 if (!ApplyDefaultSearchChangeNoMetrics(data, source))
1844 return;
1846 UMA_HISTOGRAM_ENUMERATION(
1847 "Search.DefaultSearchChangeOrigin", dsp_change_origin_, DSP_CHANGE_MAX);
1849 if (GetDefaultSearchProvider() &&
1850 GetDefaultSearchProvider()->HasGoogleBaseURLs(search_terms_data()) &&
1851 !dsp_change_callback_.is_null())
1852 dsp_change_callback_.Run();
1855 bool TemplateURLService::ApplyDefaultSearchChangeNoMetrics(
1856 const TemplateURLData* data,
1857 DefaultSearchManager::Source source) {
1858 if (!loaded_) {
1859 // Set |initial_default_search_provider_| from the preferences. This is
1860 // mainly so we can hold ownership until we get to the point where the list
1861 // of keywords from Web Data is the owner of everything including the
1862 // default.
1863 bool changed = TemplateURL::MatchesData(
1864 initial_default_search_provider_.get(), data, search_terms_data());
1865 initial_default_search_provider_.reset(
1866 data ? new TemplateURL(*data) : NULL);
1867 default_search_provider_source_ = source;
1868 return changed;
1871 // Prevent recursion if we update the value stored in default_search_manager_.
1872 // Note that we exclude the case of data == NULL because that could cause a
1873 // false positive for recursion when the initial_default_search_provider_ is
1874 // NULL due to policy. We'll never actually get recursion with data == NULL.
1875 if (source == default_search_provider_source_ && data != NULL &&
1876 TemplateURL::MatchesData(default_search_provider_, data,
1877 search_terms_data()))
1878 return false;
1880 // This may be deleted later. Use exclusively for pointer comparison to detect
1881 // a change.
1882 TemplateURL* previous_default_search_engine = default_search_provider_;
1884 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1885 if (default_search_provider_source_ == DefaultSearchManager::FROM_POLICY ||
1886 source == DefaultSearchManager::FROM_POLICY) {
1887 // We do this both to remove any no-longer-applicable policy-defined DSE as
1888 // well as to add the new one, if appropriate.
1889 UpdateProvidersCreatedByPolicy(
1890 &template_urls_,
1891 source == DefaultSearchManager::FROM_POLICY ? data : NULL);
1894 if (!data) {
1895 default_search_provider_ = NULL;
1896 } else if (source == DefaultSearchManager::FROM_EXTENSION) {
1897 default_search_provider_ = FindMatchingExtensionTemplateURL(
1898 *data, TemplateURL::NORMAL_CONTROLLED_BY_EXTENSION);
1899 } else if (source == DefaultSearchManager::FROM_FALLBACK) {
1900 default_search_provider_ =
1901 FindPrepopulatedTemplateURL(data->prepopulate_id);
1902 if (default_search_provider_) {
1903 TemplateURLData update_data(*data);
1904 update_data.sync_guid = default_search_provider_->sync_guid();
1905 if (!default_search_provider_->safe_for_autoreplace()) {
1906 update_data.safe_for_autoreplace = false;
1907 update_data.SetKeyword(default_search_provider_->keyword());
1908 update_data.short_name = default_search_provider_->short_name();
1910 UpdateNoNotify(default_search_provider_, TemplateURL(update_data));
1911 } else {
1912 // Normally the prepopulated fallback should be present in
1913 // |template_urls_|, but in a few cases it might not be:
1914 // (1) Tests that initialize the TemplateURLService in peculiar ways.
1915 // (2) If the user deleted the pre-populated default and we subsequently
1916 // lost their user-selected value.
1917 TemplateURL* new_dse = new TemplateURL(*data);
1918 if (AddNoNotify(new_dse, true))
1919 default_search_provider_ = new_dse;
1921 } else if (source == DefaultSearchManager::FROM_USER) {
1922 default_search_provider_ = GetTemplateURLForGUID(data->sync_guid);
1923 if (!default_search_provider_ && data->prepopulate_id) {
1924 default_search_provider_ =
1925 FindPrepopulatedTemplateURL(data->prepopulate_id);
1927 TemplateURLData new_data(*data);
1928 new_data.show_in_default_list = true;
1929 if (default_search_provider_) {
1930 UpdateNoNotify(default_search_provider_, TemplateURL(new_data));
1931 } else {
1932 new_data.id = kInvalidTemplateURLID;
1933 TemplateURL* new_dse = new TemplateURL(new_data);
1934 if (AddNoNotify(new_dse, true))
1935 default_search_provider_ = new_dse;
1937 if (default_search_provider_ && prefs_) {
1938 prefs_->SetString(prefs::kSyncedDefaultSearchProviderGUID,
1939 default_search_provider_->sync_guid());
1944 default_search_provider_source_ = source;
1946 bool changed = default_search_provider_ != previous_default_search_engine;
1947 if (changed)
1948 RequestGoogleURLTrackerServerCheckIfNecessary();
1950 NotifyObservers();
1952 return changed;
1955 bool TemplateURLService::AddNoNotify(TemplateURL* template_url,
1956 bool newly_adding) {
1957 DCHECK(template_url);
1959 if (newly_adding) {
1960 DCHECK_EQ(kInvalidTemplateURLID, template_url->id());
1961 DCHECK(std::find(template_urls_.begin(), template_urls_.end(),
1962 template_url) == template_urls_.end());
1963 template_url->data_.id = ++next_id_;
1966 template_url->ResetKeywordIfNecessary(search_terms_data(), false);
1967 // Check whether |template_url|'s keyword conflicts with any already in the
1968 // model.
1969 TemplateURL* existing_keyword_turl =
1970 GetTemplateURLForKeyword(template_url->keyword());
1972 // Check whether |template_url|'s keyword conflicts with any already in the
1973 // model. Note that we can reach here during the loading phase while
1974 // processing the template URLs from the web data service. In this case,
1975 // GetTemplateURLForKeyword() will look not only at what's already in the
1976 // model, but at the |initial_default_search_provider_|. Since this engine
1977 // will presumably also be present in the web data, we need to double-check
1978 // that any "pre-existing" entries we find are actually coming from
1979 // |template_urls_|, lest we detect a "conflict" between the
1980 // |initial_default_search_provider_| and the web data version of itself.
1981 if (template_url->GetType() != TemplateURL::OMNIBOX_API_EXTENSION &&
1982 existing_keyword_turl &&
1983 existing_keyword_turl->GetType() != TemplateURL::OMNIBOX_API_EXTENSION &&
1984 (std::find(template_urls_.begin(), template_urls_.end(),
1985 existing_keyword_turl) != template_urls_.end())) {
1986 DCHECK_NE(existing_keyword_turl, template_url);
1987 // Only replace one of the TemplateURLs if they are either both extensions,
1988 // or both not extensions.
1989 bool are_same_type = existing_keyword_turl->GetType() ==
1990 template_url->GetType();
1991 if (CanReplace(existing_keyword_turl) && are_same_type) {
1992 RemoveNoNotify(existing_keyword_turl);
1993 } else if (CanReplace(template_url) && are_same_type) {
1994 delete template_url;
1995 return false;
1996 } else {
1997 base::string16 new_keyword =
1998 UniquifyKeyword(*existing_keyword_turl, false);
1999 ResetTemplateURLNoNotify(existing_keyword_turl,
2000 existing_keyword_turl->short_name(), new_keyword,
2001 existing_keyword_turl->url());
2004 template_urls_.push_back(template_url);
2005 AddToMaps(template_url);
2007 if (newly_adding &&
2008 (template_url->GetType() == TemplateURL::NORMAL)) {
2009 if (web_data_service_.get())
2010 web_data_service_->AddKeyword(template_url->data());
2012 // Inform sync of the addition. Note that this will assign a GUID to
2013 // template_url and add it to the guid_to_template_map_.
2014 ProcessTemplateURLChange(FROM_HERE,
2015 template_url,
2016 syncer::SyncChange::ACTION_ADD);
2019 return true;
2022 void TemplateURLService::RemoveNoNotify(TemplateURL* template_url) {
2023 DCHECK(template_url != default_search_provider_);
2025 TemplateURLVector::iterator i =
2026 std::find(template_urls_.begin(), template_urls_.end(), template_url);
2027 if (i == template_urls_.end())
2028 return;
2030 RemoveFromMaps(template_url);
2032 // Remove it from the vector containing all TemplateURLs.
2033 template_urls_.erase(i);
2035 if (template_url->GetType() == TemplateURL::NORMAL) {
2036 if (web_data_service_.get())
2037 web_data_service_->RemoveKeyword(template_url->id());
2039 // Inform sync of the deletion.
2040 ProcessTemplateURLChange(FROM_HERE,
2041 template_url,
2042 syncer::SyncChange::ACTION_DELETE);
2044 UMA_HISTOGRAM_ENUMERATION(kDeleteSyncedEngineHistogramName,
2045 DELETE_ENGINE_USER_ACTION, DELETE_ENGINE_MAX);
2048 if (loaded_ && client_)
2049 client_->DeleteAllSearchTermsForKeyword(template_url->id());
2051 // We own the TemplateURL and need to delete it.
2052 delete template_url;
2055 bool TemplateURLService::ResetTemplateURLNoNotify(
2056 TemplateURL* url,
2057 const base::string16& title,
2058 const base::string16& keyword,
2059 const std::string& search_url) {
2060 DCHECK(!keyword.empty());
2061 DCHECK(!search_url.empty());
2062 TemplateURLData data(url->data());
2063 data.short_name = title;
2064 data.SetKeyword(keyword);
2065 if (search_url != data.url()) {
2066 data.SetURL(search_url);
2067 // The urls have changed, reset the favicon url.
2068 data.favicon_url = GURL();
2070 data.safe_for_autoreplace = false;
2071 data.last_modified = clock_->Now();
2072 return UpdateNoNotify(url, TemplateURL(data));
2075 void TemplateURLService::NotifyObservers() {
2076 if (!loaded_)
2077 return;
2079 FOR_EACH_OBSERVER(TemplateURLServiceObserver, model_observers_,
2080 OnTemplateURLServiceChanged());
2083 // |template_urls| are the TemplateURLs loaded from the database.
2084 // |default_from_prefs| is the default search provider from the preferences, or
2085 // NULL if the DSE is not policy-defined.
2087 // This function removes from the vector and the database all the TemplateURLs
2088 // that were set by policy, unless it is the current default search provider, in
2089 // which case it is updated with the data from prefs.
2090 void TemplateURLService::UpdateProvidersCreatedByPolicy(
2091 TemplateURLVector* template_urls,
2092 const TemplateURLData* default_from_prefs) {
2093 DCHECK(template_urls);
2095 for (TemplateURLVector::iterator i = template_urls->begin();
2096 i != template_urls->end(); ) {
2097 TemplateURL* template_url = *i;
2098 if (template_url->created_by_policy()) {
2099 if (default_from_prefs &&
2100 TemplateURL::MatchesData(template_url, default_from_prefs,
2101 search_terms_data())) {
2102 // If the database specified a default search provider that was set
2103 // by policy, and the default search provider from the preferences
2104 // is also set by policy and they are the same, keep the entry in the
2105 // database and the |default_search_provider|.
2106 default_search_provider_ = template_url;
2107 // Prevent us from saving any other entries, or creating a new one.
2108 default_from_prefs = NULL;
2109 ++i;
2110 continue;
2113 RemoveFromMaps(template_url);
2114 i = template_urls->erase(i);
2115 if (web_data_service_.get())
2116 web_data_service_->RemoveKeyword(template_url->id());
2117 delete template_url;
2118 } else {
2119 ++i;
2123 if (default_from_prefs) {
2124 default_search_provider_ = NULL;
2125 default_search_provider_source_ = DefaultSearchManager::FROM_POLICY;
2126 TemplateURLData new_data(*default_from_prefs);
2127 if (new_data.sync_guid.empty())
2128 new_data.sync_guid = base::GenerateGUID();
2129 new_data.created_by_policy = true;
2130 TemplateURL* new_dse = new TemplateURL(new_data);
2131 if (AddNoNotify(new_dse, true))
2132 default_search_provider_ = new_dse;
2136 void TemplateURLService::ResetTemplateURLGUID(TemplateURL* url,
2137 const std::string& guid) {
2138 DCHECK(loaded_);
2139 DCHECK(!guid.empty());
2141 TemplateURLData data(url->data());
2142 data.sync_guid = guid;
2143 UpdateNoNotify(url, TemplateURL(data));
2146 base::string16 TemplateURLService::UniquifyKeyword(const TemplateURL& turl,
2147 bool force) {
2148 if (!force) {
2149 // Already unique.
2150 if (!GetTemplateURLForKeyword(turl.keyword()))
2151 return turl.keyword();
2153 // First, try to return the generated keyword for the TemplateURL (except
2154 // for extensions, as their keywords are not associated with their URLs).
2155 GURL gurl(turl.url());
2156 if (gurl.is_valid() &&
2157 (turl.GetType() != TemplateURL::OMNIBOX_API_EXTENSION)) {
2158 base::string16 keyword_candidate = TemplateURL::GenerateKeyword(gurl);
2159 if (!GetTemplateURLForKeyword(keyword_candidate))
2160 return keyword_candidate;
2164 // We try to uniquify the keyword by appending a special character to the end.
2165 // This is a best-effort approach where we try to preserve the original
2166 // keyword and let the user do what they will after our attempt.
2167 base::string16 keyword_candidate(turl.keyword());
2168 do {
2169 keyword_candidate.append(base::ASCIIToUTF16("_"));
2170 } while (GetTemplateURLForKeyword(keyword_candidate));
2172 return keyword_candidate;
2175 bool TemplateURLService::IsLocalTemplateURLBetter(
2176 const TemplateURL* local_turl,
2177 const TemplateURL* sync_turl) {
2178 DCHECK(GetTemplateURLForGUID(local_turl->sync_guid()));
2179 return local_turl->last_modified() > sync_turl->last_modified() ||
2180 local_turl->created_by_policy() ||
2181 local_turl== GetDefaultSearchProvider();
2184 void TemplateURLService::ResolveSyncKeywordConflict(
2185 TemplateURL* unapplied_sync_turl,
2186 TemplateURL* applied_sync_turl,
2187 syncer::SyncChangeList* change_list) {
2188 DCHECK(loaded_);
2189 DCHECK(unapplied_sync_turl);
2190 DCHECK(applied_sync_turl);
2191 DCHECK(change_list);
2192 DCHECK_EQ(applied_sync_turl->keyword(), unapplied_sync_turl->keyword());
2193 DCHECK_EQ(TemplateURL::NORMAL, applied_sync_turl->GetType());
2195 // Both |unapplied_sync_turl| and |applied_sync_turl| are known to Sync, so
2196 // don't delete either of them. Instead, determine which is "better" and
2197 // uniquify the other one, sending an update to the server for the updated
2198 // entry.
2199 const bool applied_turl_is_better =
2200 IsLocalTemplateURLBetter(applied_sync_turl, unapplied_sync_turl);
2201 TemplateURL* loser = applied_turl_is_better ?
2202 unapplied_sync_turl : applied_sync_turl;
2203 base::string16 new_keyword = UniquifyKeyword(*loser, false);
2204 DCHECK(!GetTemplateURLForKeyword(new_keyword));
2205 if (applied_turl_is_better) {
2206 // Just set the keyword of |unapplied_sync_turl|. The caller is responsible
2207 // for adding or updating unapplied_sync_turl in the local model.
2208 unapplied_sync_turl->data_.SetKeyword(new_keyword);
2209 } else {
2210 // Update |applied_sync_turl| in the local model with the new keyword.
2211 TemplateURLData data(applied_sync_turl->data());
2212 data.SetKeyword(new_keyword);
2213 if (UpdateNoNotify(applied_sync_turl, TemplateURL(data)))
2214 NotifyObservers();
2216 // The losing TemplateURL should have their keyword updated. Send a change to
2217 // the server to reflect this change.
2218 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(*loser);
2219 change_list->push_back(syncer::SyncChange(FROM_HERE,
2220 syncer::SyncChange::ACTION_UPDATE,
2221 sync_data));
2224 void TemplateURLService::MergeInSyncTemplateURL(
2225 TemplateURL* sync_turl,
2226 const SyncDataMap& sync_data,
2227 syncer::SyncChangeList* change_list,
2228 SyncDataMap* local_data,
2229 syncer::SyncMergeResult* merge_result) {
2230 DCHECK(sync_turl);
2231 DCHECK(!GetTemplateURLForGUID(sync_turl->sync_guid()));
2232 DCHECK(IsFromSync(sync_turl, sync_data));
2234 TemplateURL* conflicting_turl =
2235 FindNonExtensionTemplateURLForKeyword(sync_turl->keyword());
2236 bool should_add_sync_turl = true;
2238 // If there was no TemplateURL in the local model that conflicts with
2239 // |sync_turl|, skip the following preparation steps and just add |sync_turl|
2240 // directly. Otherwise, modify |conflicting_turl| to make room for
2241 // |sync_turl|.
2242 if (conflicting_turl) {
2243 if (IsFromSync(conflicting_turl, sync_data)) {
2244 // |conflicting_turl| is already known to Sync, so we're not allowed to
2245 // remove it. In this case, we want to uniquify the worse one and send an
2246 // update for the changed keyword to sync. We can reuse the logic from
2247 // ResolveSyncKeywordConflict for this.
2248 ResolveSyncKeywordConflict(sync_turl, conflicting_turl, change_list);
2249 merge_result->set_num_items_modified(
2250 merge_result->num_items_modified() + 1);
2251 } else {
2252 // |conflicting_turl| is not yet known to Sync. If it is better, then we
2253 // want to transfer its values up to sync. Otherwise, we remove it and
2254 // allow the entry from Sync to overtake it in the model.
2255 const std::string guid = conflicting_turl->sync_guid();
2256 if (IsLocalTemplateURLBetter(conflicting_turl, sync_turl)) {
2257 ResetTemplateURLGUID(conflicting_turl, sync_turl->sync_guid());
2258 syncer::SyncData sync_data =
2259 CreateSyncDataFromTemplateURL(*conflicting_turl);
2260 change_list->push_back(syncer::SyncChange(
2261 FROM_HERE, syncer::SyncChange::ACTION_UPDATE, sync_data));
2262 // Note that in this case we do not add the Sync TemplateURL to the
2263 // local model, since we've effectively "merged" it in by updating the
2264 // local conflicting entry with its sync_guid.
2265 should_add_sync_turl = false;
2266 merge_result->set_num_items_modified(
2267 merge_result->num_items_modified() + 1);
2268 } else {
2269 // We guarantee that this isn't the local search provider. Otherwise,
2270 // local would have won.
2271 DCHECK(conflicting_turl != GetDefaultSearchProvider());
2272 Remove(conflicting_turl);
2273 merge_result->set_num_items_deleted(
2274 merge_result->num_items_deleted() + 1);
2276 // This TemplateURL was either removed or overwritten in the local model.
2277 // Remove the entry from the local data so it isn't pushed up to Sync.
2278 local_data->erase(guid);
2282 if (should_add_sync_turl) {
2283 // Force the local ID to kInvalidTemplateURLID so we can add it.
2284 TemplateURLData data(sync_turl->data());
2285 data.id = kInvalidTemplateURLID;
2286 TemplateURL* added = new TemplateURL(data);
2287 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
2288 &dsp_change_origin_, DSP_CHANGE_SYNC_ADD);
2289 if (Add(added))
2290 MaybeUpdateDSEAfterSync(added);
2291 merge_result->set_num_items_added(
2292 merge_result->num_items_added() + 1);
2296 void TemplateURLService::PatchMissingSyncGUIDs(
2297 TemplateURLVector* template_urls) {
2298 DCHECK(template_urls);
2299 for (TemplateURLVector::iterator i = template_urls->begin();
2300 i != template_urls->end(); ++i) {
2301 TemplateURL* template_url = *i;
2302 DCHECK(template_url);
2303 if (template_url->sync_guid().empty() &&
2304 (template_url->GetType() == TemplateURL::NORMAL)) {
2305 template_url->data_.sync_guid = base::GenerateGUID();
2306 if (web_data_service_.get())
2307 web_data_service_->UpdateKeyword(template_url->data());
2312 void TemplateURLService::OnSyncedDefaultSearchProviderGUIDChanged() {
2313 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
2314 &dsp_change_origin_, DSP_CHANGE_SYNC_PREF);
2316 std::string new_guid =
2317 prefs_->GetString(prefs::kSyncedDefaultSearchProviderGUID);
2318 if (new_guid.empty()) {
2319 default_search_manager_.ClearUserSelectedDefaultSearchEngine();
2320 return;
2323 TemplateURL* turl = GetTemplateURLForGUID(new_guid);
2324 if (turl)
2325 default_search_manager_.SetUserSelectedDefaultSearchEngine(turl->data());
2328 TemplateURL* TemplateURLService::FindPrepopulatedTemplateURL(
2329 int prepopulated_id) {
2330 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2331 i != template_urls_.end(); ++i) {
2332 if ((*i)->prepopulate_id() == prepopulated_id)
2333 return *i;
2335 return NULL;
2338 TemplateURL* TemplateURLService::FindTemplateURLForExtension(
2339 const std::string& extension_id,
2340 TemplateURL::Type type) {
2341 DCHECK_NE(TemplateURL::NORMAL, type);
2342 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2343 i != template_urls_.end(); ++i) {
2344 if ((*i)->GetType() == type &&
2345 (*i)->GetExtensionId() == extension_id)
2346 return *i;
2348 return NULL;
2351 TemplateURL* TemplateURLService::FindMatchingExtensionTemplateURL(
2352 const TemplateURLData& data,
2353 TemplateURL::Type type) {
2354 DCHECK_NE(TemplateURL::NORMAL, type);
2355 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2356 i != template_urls_.end(); ++i) {
2357 if ((*i)->GetType() == type &&
2358 TemplateURL::MatchesData(*i, &data, search_terms_data()))
2359 return *i;
2361 return NULL;
2364 void TemplateURLService::UpdateExtensionDefaultSearchEngine() {
2365 TemplateURL* most_recently_intalled_default = NULL;
2366 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2367 i != template_urls_.end(); ++i) {
2368 if (((*i)->GetType() == TemplateURL::NORMAL_CONTROLLED_BY_EXTENSION) &&
2369 (*i)->extension_info_->wants_to_be_default_engine &&
2370 (*i)->SupportsReplacement(search_terms_data()) &&
2371 (!most_recently_intalled_default ||
2372 (most_recently_intalled_default->extension_info_->install_time <
2373 (*i)->extension_info_->install_time)))
2374 most_recently_intalled_default = *i;
2377 if (most_recently_intalled_default) {
2378 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
2379 &dsp_change_origin_, DSP_CHANGE_OVERRIDE_SETTINGS_EXTENSION);
2380 default_search_manager_.SetExtensionControlledDefaultSearchEngine(
2381 most_recently_intalled_default->data());
2382 } else {
2383 default_search_manager_.ClearExtensionControlledDefaultSearchEngine();