blob: a6ca8a97a1e1cbb770db738543c595a1f96aa646 [file] [log] [blame]
[email protected]6ce7f612012-09-05 23:53:071// Copyright (c) 2012 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.
4
blundell2102f7c2015-07-09 10:00:535#include "components/omnibox/browser/zero_suggest_provider.h"
[email protected]6ce7f612012-09-05 23:53:076
avif57136c12015-12-25 23:27:457#include <stddef.h>
8
[email protected]6ce7f612012-09-05 23:53:079#include "base/callback.h"
gcomanici8cabc77f2017-04-27 20:04:5410#include "base/feature_list.h"
[email protected]bb1fb2b2013-05-31 00:21:0111#include "base/i18n/case_conversion.h"
[email protected]6ce7f612012-09-05 23:53:0712#include "base/json/json_string_value_serializer.h"
asvitkine30330812016-08-30 04:01:0813#include "base/metrics/histogram_macros.h"
[email protected]f7f41c0e2014-08-11 04:22:2314#include "base/metrics/user_metrics.h"
[email protected]98570e12013-06-10 19:54:2215#include "base/strings/string16.h"
16#include "base/strings/string_util.h"
[email protected]135cb802013-06-09 16:44:2017#include "base/strings/utf_string_conversions.h"
[email protected]4dcb7972013-06-28 15:15:4118#include "base/time/time.h"
a-v-ydd768d52016-03-25 21:07:4619#include "base/trace_event/trace_event.h"
amohammadkhanf76ae112015-09-14 17:34:4320#include "components/data_use_measurement/core/data_use_user_data.h"
sdefresnebc766ef2014-09-25 09:28:1321#include "components/history/core/browser/history_types.h"
sdefresne0da3bc02015-01-29 18:26:3522#include "components/history/core/browser/top_sites.h"
mpearson3d89cdc2017-03-03 21:15:4523#include "components/metrics/proto/omnibox_event.pb.h"
[email protected]3dc75b12014-06-08 00:02:2224#include "components/metrics/proto/omnibox_input_type.pb.h"
blundell2102f7c2015-07-09 10:00:5325#include "components/omnibox/browser/autocomplete_classifier.h"
26#include "components/omnibox/browser/autocomplete_input.h"
27#include "components/omnibox/browser/autocomplete_match.h"
28#include "components/omnibox/browser/autocomplete_provider_listener.h"
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:1129#include "components/omnibox/browser/contextual_suggestions_service.h"
blundell2102f7c2015-07-09 10:00:5330#include "components/omnibox/browser/history_url_provider.h"
31#include "components/omnibox/browser/omnibox_field_trial.h"
32#include "components/omnibox/browser/omnibox_pref_names.h"
33#include "components/omnibox/browser/search_provider.h"
sdefresne70948d62015-08-11 10:46:3534#include "components/omnibox/browser/verbatim_match.h"
[email protected]f0c8c4992014-05-15 17:37:2635#include "components/pref_registry/pref_registry_syncable.h"
brettwf00b9b42016-02-01 22:11:3836#include "components/prefs/pref_service.h"
[email protected]bf5c532d2014-07-05 00:29:5337#include "components/search_engines/template_url_service.h"
rsleevi24f64dc22015-08-07 21:39:2138#include "components/url_formatter/url_formatter.h"
asvitkine9a279832015-12-18 02:35:5039#include "components/variations/net/variations_http_headers.h"
[email protected]bb1fb2b2013-05-31 00:21:0140#include "net/base/escape.h"
[email protected]6ce7f612012-09-05 23:53:0741#include "net/url_request/url_fetcher.h"
42#include "net/url_request/url_request_status.h"
[email protected]761fa4702013-07-02 15:25:1543#include "url/gurl.h"
[email protected]6ce7f612012-09-05 23:53:0744
45namespace {
[email protected]bb1fb2b2013-05-31 00:21:0146
mpearson3d89cdc2017-03-03 21:15:4547// Represents whether ZeroSuggestProvider is allowed to display contextual
48// suggestions on focus, and if not, why not.
49// These values are written to logs. New enum values can be added, but existing
50// enums must never be renumbered or deleted and reused.
51enum class ZeroSuggestEligibility {
52 ELIGIBLE = 0,
53 // URL_INELIGIBLE would be ELIGIBLE except some property of the current URL
54 // itself prevents ZeroSuggest from triggering.
55 URL_INELIGIBLE = 1,
56 GENERALLY_INELIGIBLE = 2,
57 ELIGIBLE_MAX_VALUE
58};
59
[email protected]bb1fb2b2013-05-31 00:21:0160// TODO(hfung): The histogram code was copied and modified from
61// search_provider.cc. Refactor and consolidate the code.
62// We keep track in a histogram how many suggest requests we send, how
63// many suggest requests we invalidate (e.g., due to a user typing
64// another character), and how many replies we receive.
mpearson3d89cdc2017-03-03 21:15:4565// These values are written to logs. New enum values can be added, but existing
66// enums must never be renumbered or deleted and reused.
[email protected]bb1fb2b2013-05-31 00:21:0167enum ZeroSuggestRequestsHistogramValue {
68 ZERO_SUGGEST_REQUEST_SENT = 1,
mpearson3d89cdc2017-03-03 21:15:4569 ZERO_SUGGEST_REQUEST_INVALIDATED = 2,
70 ZERO_SUGGEST_REPLY_RECEIVED = 3,
[email protected]bb1fb2b2013-05-31 00:21:0171 ZERO_SUGGEST_MAX_REQUEST_HISTOGRAM_VALUE
72};
73
74void LogOmniboxZeroSuggestRequest(
75 ZeroSuggestRequestsHistogramValue request_value) {
76 UMA_HISTOGRAM_ENUMERATION("Omnibox.ZeroSuggestRequests", request_value,
77 ZERO_SUGGEST_MAX_REQUEST_HISTOGRAM_VALUE);
78}
79
[email protected]bb1fb2b2013-05-31 00:21:0180// Relevance value to use if it was not set explicitly by the server.
81const int kDefaultZeroSuggestRelevance = 100;
82
mpearson3d89cdc2017-03-03 21:15:4583// Used for testing whether zero suggest is ever available.
mpearsonc90c24b2017-03-04 00:11:2684constexpr char kArbitraryInsecureUrlString[] = "http://www.google.com/";
mpearson3d89cdc2017-03-03 21:15:4585
[email protected]6ce7f612012-09-05 23:53:0786} // namespace
87
[email protected]a00008d42012-09-15 05:07:5888// static
89ZeroSuggestProvider* ZeroSuggestProvider::Create(
blundell55e35e82015-06-16 08:46:1890 AutocompleteProviderClient* client,
mpearson931028c2016-07-01 18:55:1191 HistoryURLProvider* history_url_provider,
blundelld130d592015-06-21 19:29:1392 AutocompleteProviderListener* listener) {
mpearson931028c2016-07-01 18:55:1193 return new ZeroSuggestProvider(client, history_url_provider, listener);
[email protected]6ce7f612012-09-05 23:53:0794}
95
[email protected]855ebff2014-05-09 07:14:3896// static
97void ZeroSuggestProvider::RegisterProfilePrefs(
98 user_prefs::PrefRegistrySyncable* registry) {
blundelld130d592015-06-21 19:29:1399 registry->RegisterStringPref(omnibox::kZeroSuggestCachedResults,
100 std::string());
[email protected]855ebff2014-05-09 07:14:38101}
102
[email protected]6ce7f612012-09-05 23:53:07103void ZeroSuggestProvider::Start(const AutocompleteInput& input,
jifcf322cd2015-06-17 11:01:18104 bool minimal_changes) {
a-v-ydd768d52016-03-25 21:07:46105 TRACE_EVENT0("omnibox", "ZeroSuggestProvider::Start");
[email protected]f030c4d2014-03-25 01:05:54106 matches_.clear();
mpearson6eaf7fc2017-04-11 04:09:57107 if (!input.from_omnibox_focus() || client()->IsOffTheRecord() ||
mariakhomenko3ef531d72015-01-10 00:03:43108 input.type() == metrics::OmniboxInputType::INVALID)
[email protected]f030c4d2014-03-25 01:05:54109 return;
[email protected]bb1fb2b2013-05-31 00:21:01110
mpearson8a37c382015-03-07 05:58:57111 Stop(true, false);
blundelld130d592015-06-21 19:29:13112 set_field_trial_triggered(false);
113 set_field_trial_triggered_in_session(false);
[email protected]855ebff2014-05-09 07:14:38114 results_from_cache_ = false;
[email protected]f030c4d2014-03-25 01:05:54115 permanent_text_ = input.text();
116 current_query_ = input.current_url().spec();
gcomanici8cabc77f2017-04-27 20:04:54117 current_title_ = input.current_title();
[email protected]f030c4d2014-03-25 01:05:54118 current_page_classification_ = input.current_page_classification();
[email protected]9b9fa672013-11-07 06:04:52119 current_url_match_ = MatchForCurrentURL();
[email protected]9b9fa672013-11-07 06:04:52120
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11121 GURL suggest_url = ContextualSuggestionsService::ContextualSuggestionsUrl(
122 /*current_url=*/"", client()->GetTemplateURLService());
[email protected]162c8d9fa2014-03-18 20:25:41123 if (!suggest_url.is_valid())
[email protected]6ce7f612012-09-05 23:53:07124 return;
[email protected]162c8d9fa2014-03-18 20:25:41125
mariakhomenkobfc3a2a2014-10-24 00:48:22126 // No need to send the current page URL in personalized suggest or
127 // most visited field trials.
mpearson3d89cdc2017-03-03 21:15:45128 const TemplateURLService* template_url_service =
129 client()->GetTemplateURLService();
130 const TemplateURL* default_provider =
131 template_url_service->GetDefaultSearchProvider();
132 const bool can_send_current_url =
133 CanSendURL(input.current_url(), suggest_url, default_provider,
[email protected]e6477f12014-08-05 07:59:54134 current_page_classification_,
mpearson3d89cdc2017-03-03 21:15:45135 template_url_service->search_terms_data(), client());
136 GURL arbitrary_insecure_url(kArbitraryInsecureUrlString);
137 ZeroSuggestEligibility eligibility = ZeroSuggestEligibility::ELIGIBLE;
138 if (!can_send_current_url) {
139 const bool can_send_ordinary_url =
140 CanSendURL(arbitrary_insecure_url, suggest_url, default_provider,
141 current_page_classification_,
142 template_url_service->search_terms_data(), client());
143 eligibility = can_send_ordinary_url
144 ? ZeroSuggestEligibility::URL_INELIGIBLE
145 : ZeroSuggestEligibility::GENERALLY_INELIGIBLE;
146 }
147 UMA_HISTOGRAM_ENUMERATION(
148 "Omnibox.ZeroSuggest.Eligible.OnFocus", static_cast<int>(eligibility),
149 static_cast<int>(ZeroSuggestEligibility::ELIGIBLE_MAX_VALUE));
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11150
151 bool can_attach_current_url =
152 can_send_current_url &&
mariakhomenkobfc3a2a2014-10-24 00:48:22153 !OmniboxFieldTrial::InZeroSuggestPersonalizedFieldTrial() &&
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11154 !OmniboxFieldTrial::InZeroSuggestMostVisitedFieldTrial();
155
156 if (!can_attach_current_url &&
157 !ShouldShowNonContextualZeroSuggest(input.current_url())) {
[email protected]162c8d9fa2014-03-18 20:25:41158 return;
159 }
160
[email protected]6ce7f612012-09-05 23:53:07161 done_ = false;
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11162
[email protected]6ce7f612012-09-05 23:53:07163 // TODO(jered): Consider adding locally-sourced zero-suggestions here too.
164 // These may be useful on the NTP or more relevant to the user than server
165 // suggestions, if based on local browsing history.
[email protected]855ebff2014-05-09 07:14:38166 MaybeUseCachedSuggestions();
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11167
168 if (OmniboxFieldTrial::InZeroSuggestMostVisitedFieldTrial()) {
169 most_visited_urls_.clear();
170 scoped_refptr<history::TopSites> ts = client()->GetTopSites();
171 if (ts) {
172 waiting_for_most_visited_urls_request_ = true;
173 ts->GetMostVisitedURLs(
174 base::Bind(&ZeroSuggestProvider::OnMostVisitedUrlsAvailable,
175 weak_ptr_factory_.GetWeakPtr()),
176 false);
177 }
178 return;
179 }
180
181 // Create a request for suggestions with |this| as the fetcher delegate.
182 client()
Gheorghe Comanici86bbdf62017-08-28 17:20:33183 ->GetContextualSuggestionsService(/*create_if_necessary=*/true)
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11184 ->CreateContextualSuggestionsRequest(
185 can_attach_current_url ? current_query_ : std::string(),
186 client()->GetTemplateURLService(),
187 /*fetcher_delegate=*/this,
188 base::BindOnce(
189 &ZeroSuggestProvider::OnContextualSuggestionsFetcherAvailable,
190 weak_ptr_factory_.GetWeakPtr()));
[email protected]6ce7f612012-09-05 23:53:07191}
192
mpearson8a37c382015-03-07 05:58:57193void ZeroSuggestProvider::Stop(bool clear_cached_results,
194 bool due_to_user_inactivity) {
[email protected]ec3f679b2014-08-18 07:45:13195 if (fetcher_)
196 LogOmniboxZeroSuggestRequest(ZERO_SUGGEST_REQUEST_INVALIDATED);
197 fetcher_.reset();
mariakhomenkobfc3a2a2014-10-24 00:48:22198 waiting_for_most_visited_urls_request_ = false;
Gheorghe Comanici86bbdf62017-08-28 17:20:33199 auto* contextual_suggestions_service =
200 client()->GetContextualSuggestionsService(/*create_if_necessary=*/false);
201 // contextual_suggestions_service can be null if in incognito mode.
202 if (contextual_suggestions_service != nullptr) {
203 contextual_suggestions_service->StopCreatingContextualSuggestionsRequest();
204 }
[email protected]ec3f679b2014-08-18 07:45:13205 done_ = true;
206
207 if (clear_cached_results) {
208 // We do not call Clear() on |results_| to retain |verbatim_relevance|
209 // value in the |results_| object. |verbatim_relevance| is used at the
jifcf322cd2015-06-17 11:01:18210 // beginning of the next call to Start() to determine the current url
211 // match relevance.
[email protected]ec3f679b2014-08-18 07:45:13212 results_.suggest_results.clear();
213 results_.navigation_results.clear();
214 current_query_.clear();
gcomanici8cabc77f2017-04-27 20:04:54215 current_title_.clear();
mariakhomenko1535e6a2015-03-20 07:48:45216 most_visited_urls_.clear();
[email protected]ec3f679b2014-08-18 07:45:13217 }
218}
219
[email protected]855ebff2014-05-09 07:14:38220void ZeroSuggestProvider::DeleteMatch(const AutocompleteMatch& match) {
221 if (OmniboxFieldTrial::InZeroSuggestPersonalizedFieldTrial()) {
222 // Remove the deleted match from the cache, so it is not shown to the user
223 // again. Since we cannot remove just one result, blow away the cache.
blundelld130d592015-06-21 19:29:13224 client()->GetPrefs()->SetString(omnibox::kZeroSuggestCachedResults,
[email protected]855ebff2014-05-09 07:14:38225 std::string());
226 }
227 BaseSearchProvider::DeleteMatch(match);
228}
229
[email protected]ec3f679b2014-08-18 07:45:13230void ZeroSuggestProvider::AddProviderInfo(ProvidersInfo* provider_info) const {
231 BaseSearchProvider::AddProviderInfo(provider_info);
mariakhomenko1535e6a2015-03-20 07:48:45232 if (!results_.suggest_results.empty() ||
233 !results_.navigation_results.empty() ||
234 !most_visited_urls_.empty())
[email protected]ec3f679b2014-08-18 07:45:13235 provider_info->back().set_times_returned_results_in_session(1);
236}
237
[email protected]f030c4d2014-03-25 01:05:54238void ZeroSuggestProvider::ResetSession() {
239 // The user has started editing in the omnibox, so leave
blundelld130d592015-06-21 19:29:13240 // |field_trial_triggered_in_session| unchanged and set
241 // |field_trial_triggered| to false since zero suggest is inactive now.
242 set_field_trial_triggered(false);
[email protected]f030c4d2014-03-25 01:05:54243}
244
mpearson931028c2016-07-01 18:55:11245ZeroSuggestProvider::ZeroSuggestProvider(
246 AutocompleteProviderClient* client,
247 HistoryURLProvider* history_url_provider,
248 AutocompleteProviderListener* listener)
blundelld130d592015-06-21 19:29:13249 : BaseSearchProvider(AutocompleteProvider::TYPE_ZERO_SUGGEST, client),
mpearson931028c2016-07-01 18:55:11250 history_url_provider_(history_url_provider),
[email protected]776ee5902014-08-11 09:15:19251 listener_(listener),
[email protected]855ebff2014-05-09 07:14:38252 results_from_cache_(false),
mariakhomenkobfc3a2a2014-10-24 00:48:22253 waiting_for_most_visited_urls_request_(false),
[email protected]8f064e52013-09-18 01:17:14254 weak_ptr_factory_(this) {
mpearson3d89cdc2017-03-03 21:15:45255 // Record whether contextual zero suggest is possible for this user / profile.
256 const TemplateURLService* template_url_service =
257 client->GetTemplateURLService();
258 // Template URL service can be null in tests.
259 if (template_url_service != nullptr) {
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11260 GURL suggest_url = ContextualSuggestionsService::ContextualSuggestionsUrl(
261 /*current_url=*/"", template_url_service);
mpearson3d89cdc2017-03-03 21:15:45262 // To check whether this is allowed, use an arbitrary insecure (http) URL
263 // as the URL we'd want suggestions for. The value of OTHER as the current
264 // page classification is to correspond with that URL.
265 UMA_HISTOGRAM_BOOLEAN(
266 "Omnibox.ZeroSuggest.Eligible.OnProfileOpen",
267 suggest_url.is_valid() &&
268 CanSendURL(GURL(kArbitraryInsecureUrlString), suggest_url,
269 template_url_service->GetDefaultSearchProvider(),
270 metrics::OmniboxEventProto::OTHER,
271 template_url_service->search_terms_data(), client));
272 }
[email protected]6ce7f612012-09-05 23:53:07273}
274
275ZeroSuggestProvider::~ZeroSuggestProvider() {
276}
277
[email protected]776ee5902014-08-11 09:15:19278const TemplateURL* ZeroSuggestProvider::GetTemplateURL(bool is_keyword) const {
279 // Zero suggest provider should not receive keyword results.
280 DCHECK(!is_keyword);
blundelld130d592015-06-21 19:29:13281 return client()->GetTemplateURLService()->GetDefaultSearchProvider();
[email protected]776ee5902014-08-11 09:15:19282}
283
284const AutocompleteInput ZeroSuggestProvider::GetInput(bool is_keyword) const {
jifcf322cd2015-06-17 11:01:18285 // The callers of this method won't look at the AutocompleteInput's
286 // |from_omnibox_focus| member, so we can set its value to false.
blundelld130d592015-06-21 19:29:13287 return AutocompleteInput(base::string16(), base::string16::npos,
gcomanici8cabc77f2017-04-27 20:04:54288 std::string(), GURL(current_query_), current_title_,
blundelld130d592015-06-21 19:29:13289 current_page_classification_, true, false, false,
290 true, false, client()->GetSchemeClassifier());
[email protected]776ee5902014-08-11 09:15:19291}
292
293bool ZeroSuggestProvider::ShouldAppendExtraParams(
294 const SearchSuggestionParser::SuggestResult& result) const {
295 // We always use the default provider for search, so append the params.
296 return true;
297}
298
[email protected]776ee5902014-08-11 09:15:19299void ZeroSuggestProvider::RecordDeletionResult(bool success) {
300 if (success) {
301 base::RecordAction(
302 base::UserMetricsAction("Omnibox.ZeroSuggestDelete.Success"));
303 } else {
304 base::RecordAction(
305 base::UserMetricsAction("Omnibox.ZeroSuggestDelete.Failure"));
306 }
307}
308
309void ZeroSuggestProvider::OnURLFetchComplete(const net::URLFetcher* source) {
310 DCHECK(!done_);
311 DCHECK_EQ(fetcher_.get(), source);
312
313 LogOmniboxZeroSuggestRequest(ZERO_SUGGEST_REPLY_RECEIVED);
314
315 bool results_updated = false;
316 if (source->GetStatus().is_success() && source->GetResponseCode() == 200) {
317 std::string json_data = SearchSuggestionParser::ExtractJsonData(source);
dcheng259570c2016-04-22 00:45:57318 std::unique_ptr<base::Value> data(
[email protected]776ee5902014-08-11 09:15:19319 SearchSuggestionParser::DeserializeJsonData(json_data));
320 if (data) {
321 if (StoreSuggestionResponse(json_data, *data))
322 return;
323 results_updated = ParseSuggestResults(
324 *data, kDefaultZeroSuggestRelevance, false, &results_);
325 }
326 }
327 fetcher_.reset();
328 done_ = true;
329 ConvertResultsToAutocompleteMatches();
330 listener_->OnProviderUpdate(results_updated);
331}
332
[email protected]855ebff2014-05-09 07:14:38333bool ZeroSuggestProvider::StoreSuggestionResponse(
334 const std::string& json_data,
335 const base::Value& parsed_data) {
336 if (!OmniboxFieldTrial::InZeroSuggestPersonalizedFieldTrial() ||
337 json_data.empty())
338 return false;
blundelld130d592015-06-21 19:29:13339 client()->GetPrefs()->SetString(omnibox::kZeroSuggestCachedResults,
340 json_data);
[email protected]855ebff2014-05-09 07:14:38341
342 // If we received an empty result list, we should update the display, as it
343 // may be showing cached results that should not be shown.
344 const base::ListValue* root_list = NULL;
345 const base::ListValue* results_list = NULL;
346 if (parsed_data.GetAsList(&root_list) &&
347 root_list->GetList(1, &results_list) &&
348 results_list->empty())
349 return false;
350
351 // We are finished with the request and want to bail early.
352 if (results_from_cache_)
353 done_ = true;
354
355 return results_from_cache_;
356}
357
[email protected]bb1fb2b2013-05-31 00:21:01358void ZeroSuggestProvider::AddSuggestResultsToMap(
[email protected]0b9575f2014-07-30 11:58:37359 const SearchSuggestionParser::SuggestResults& results,
[email protected]02346202014-02-05 05:18:30360 MatchMap* map) {
[email protected]d4a94b92014-03-04 01:35:22361 for (size_t i = 0; i < results.size(); ++i)
[email protected]7bc5e162014-08-15 19:41:11362 AddMatchToMap(results[i], std::string(), i, false, false, map);
[email protected]bb1fb2b2013-05-31 00:21:01363}
364
[email protected]bb1fb2b2013-05-31 00:21:01365AutocompleteMatch ZeroSuggestProvider::NavigationToMatch(
[email protected]0b9575f2014-07-30 11:58:37366 const SearchSuggestionParser::NavigationResult& navigation) {
[email protected]bb1fb2b2013-05-31 00:21:01367 AutocompleteMatch match(this, navigation.relevance(), false,
[email protected]78981d8c2014-05-09 15:05:47368 navigation.type());
[email protected]bb1fb2b2013-05-31 00:21:01369 match.destination_url = navigation.url();
370
[email protected]23db6492014-01-16 02:35:30371 // Zero suggest results should always omit protocols and never appear bold.
Tommy C. Lia46e6382017-08-01 23:26:27372 auto format_types = AutocompleteMatch::GetFormatTypes(false, false, false);
tommycli72014f62017-06-29 21:42:16373 match.contents = url_formatter::FormatUrl(navigation.url(), format_types,
374 net::UnescapeRule::SPACES, nullptr,
375 nullptr, nullptr);
[email protected]bb1fb2b2013-05-31 00:21:01376 match.fill_into_edit +=
blundelld130d592015-06-21 19:29:13377 AutocompleteInput::FormattedStringWithEquivalentMeaning(
Tommy C. Li0beb8152017-08-25 18:30:26378 navigation.url(), url_formatter::FormatUrl(navigation.url()),
379 client()->GetSchemeClassifier());
[email protected]bb1fb2b2013-05-31 00:21:01380
[email protected]b959d7d42013-12-13 17:26:37381 AutocompleteMatch::ClassifyLocationInString(base::string16::npos, 0,
[email protected]bb1fb2b2013-05-31 00:21:01382 match.contents.length(), ACMatchClassification::URL,
383 &match.contents_class);
[email protected]9c97f89c2013-06-25 03:12:16384
385 match.description =
386 AutocompleteMatch::SanitizeString(navigation.description());
[email protected]b959d7d42013-12-13 17:26:37387 AutocompleteMatch::ClassifyLocationInString(base::string16::npos, 0,
[email protected]9c97f89c2013-06-25 03:12:16388 match.description.length(), ACMatchClassification::NONE,
389 &match.description_class);
gcomanici67d53ac2017-04-01 17:07:19390 match.subtype_identifier = navigation.subtype_identifier();
[email protected]bb1fb2b2013-05-31 00:21:01391 return match;
392}
393
[email protected]8f064e52013-09-18 01:17:14394void ZeroSuggestProvider::OnMostVisitedUrlsAvailable(
395 const history::MostVisitedURLList& urls) {
mariakhomenkobfc3a2a2014-10-24 00:48:22396 if (!waiting_for_most_visited_urls_request_) return;
[email protected]8f064e52013-09-18 01:17:14397 most_visited_urls_ = urls;
mariakhomenkobfc3a2a2014-10-24 00:48:22398 waiting_for_most_visited_urls_request_ = false;
399 done_ = true;
400 ConvertResultsToAutocompleteMatches();
401 listener_->OnProviderUpdate(true);
[email protected]8f064e52013-09-18 01:17:14402}
403
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:11404void ZeroSuggestProvider::OnContextualSuggestionsFetcherAvailable(
405 std::unique_ptr<net::URLFetcher> fetcher) {
406 fetcher_ = std::move(fetcher);
407 fetcher_->Start();
408 LogOmniboxZeroSuggestRequest(ZERO_SUGGEST_REQUEST_SENT);
409}
410
[email protected]9c97f89c2013-06-25 03:12:16411void ZeroSuggestProvider::ConvertResultsToAutocompleteMatches() {
[email protected]bb1fb2b2013-05-31 00:21:01412 matches_.clear();
413
blundelld130d592015-06-21 19:29:13414 TemplateURLService* template_url_service = client()->GetTemplateURLService();
[email protected]bb1fb2b2013-05-31 00:21:01415 const TemplateURL* default_provider =
blundelld130d592015-06-21 19:29:13416 template_url_service->GetDefaultSearchProvider();
[email protected]6ce7f612012-09-05 23:53:07417 // Fail if we can't set the clickthrough URL for query suggestions.
blundelld130d592015-06-21 19:29:13418 if (default_provider == NULL ||
419 !default_provider->SupportsReplacement(
420 template_url_service->search_terms_data()))
[email protected]6ce7f612012-09-05 23:53:07421 return;
[email protected]6ce7f612012-09-05 23:53:07422
[email protected]00404742014-02-20 13:09:05423 MatchMap map;
424 AddSuggestResultsToMap(results_.suggest_results, &map);
425
426 const int num_query_results = map.size();
427 const int num_nav_results = results_.navigation_results.size();
[email protected]bb1fb2b2013-05-31 00:21:01428 const int num_results = num_query_results + num_nav_results;
[email protected]9c97f89c2013-06-25 03:12:16429 UMA_HISTOGRAM_COUNTS("ZeroSuggest.QueryResults", num_query_results);
[email protected]78981d8c2014-05-09 15:05:47430 UMA_HISTOGRAM_COUNTS("ZeroSuggest.URLResults", num_nav_results);
[email protected]9c97f89c2013-06-25 03:12:16431 UMA_HISTOGRAM_COUNTS("ZeroSuggest.AllResults", num_results);
[email protected]bb1fb2b2013-05-31 00:21:01432
[email protected]8f064e52013-09-18 01:17:14433 // Show Most Visited results after ZeroSuggest response is received.
434 if (OmniboxFieldTrial::InZeroSuggestMostVisitedFieldTrial()) {
[email protected]3feb8b002013-10-14 23:50:13435 if (!current_url_match_.destination_url.is_valid())
436 return;
[email protected]8f064e52013-09-18 01:17:14437 matches_.push_back(current_url_match_);
438 int relevance = 600;
439 if (num_results > 0) {
440 UMA_HISTOGRAM_COUNTS(
441 "Omnibox.ZeroSuggest.MostVisitedResultsCounterfactual",
442 most_visited_urls_.size());
443 }
[email protected]23db6492014-01-16 02:35:30444 const base::string16 current_query_string16(
445 base::ASCIIToUTF16(current_query_));
[email protected]8f064e52013-09-18 01:17:14446 for (size_t i = 0; i < most_visited_urls_.size(); i++) {
447 const history::MostVisitedURL& url = most_visited_urls_[i];
[email protected]0b9575f2014-07-30 11:58:37448 SearchSuggestionParser::NavigationResult nav(
blundelld130d592015-06-21 19:29:13449 client()->GetSchemeClassifier(), url.url,
gcomanici67d53ac2017-04-01 17:07:19450 AutocompleteMatchType::NAVSUGGEST, 0, url.title, std::string(), false,
jshin1fb76462016-04-05 22:13:03451 relevance, true, current_query_string16);
[email protected]8f064e52013-09-18 01:17:14452 matches_.push_back(NavigationToMatch(nav));
453 --relevance;
454 }
455 return;
456 }
457
[email protected]9c97f89c2013-06-25 03:12:16458 if (num_results == 0)
[email protected]bb1fb2b2013-05-31 00:21:01459 return;
460
461 // TODO(jered): Rip this out once the first match is decoupled from the
462 // current typing in the omnibox.
[email protected]bb1fb2b2013-05-31 00:21:01463 matches_.push_back(current_url_match_);
464
[email protected]00404742014-02-20 13:09:05465 for (MatchMap::const_iterator it(map.begin()); it != map.end(); ++it)
[email protected]bb1fb2b2013-05-31 00:21:01466 matches_.push_back(it->second);
[email protected]bb1fb2b2013-05-31 00:21:01467
[email protected]0b9575f2014-07-30 11:58:37468 const SearchSuggestionParser::NavigationResults& nav_results(
469 results_.navigation_results);
470 for (SearchSuggestionParser::NavigationResults::const_iterator it(
gcomanici67d53ac2017-04-01 17:07:19471 nav_results.begin());
472 it != nav_results.end(); ++it) {
[email protected]bb1fb2b2013-05-31 00:21:01473 matches_.push_back(NavigationToMatch(*it));
gcomanici67d53ac2017-04-01 17:07:19474 }
[email protected]6ce7f612012-09-05 23:53:07475}
476
[email protected]bb1fb2b2013-05-31 00:21:01477AutocompleteMatch ZeroSuggestProvider::MatchForCurrentURL() {
[email protected]bb1fb2b2013-05-31 00:21:01478 // The placeholder suggestion for the current URL has high relevance so
479 // that it is in the first suggestion slot and inline autocompleted. It
480 // gets dropped as soon as the user types something.
mpearson931028c2016-07-01 18:55:11481 AutocompleteInput tmp(GetInput(false));
482 tmp.UpdateText(permanent_text_, base::string16::npos, tmp.parts());
gcomanici8cabc77f2017-04-27 20:04:54483 const base::string16 description =
484 (base::FeatureList::IsEnabled(omnibox::kDisplayTitleForCurrentUrl))
485 ? current_title_
486 : base::string16();
487 return VerbatimMatchForURL(client(), tmp, GURL(current_query_), description,
mpearson931028c2016-07-01 18:55:11488 history_url_provider_,
sdefresne70948d62015-08-11 10:46:35489 results_.verbatim_relevance);
[email protected]00404742014-02-20 13:09:05490}
[email protected]162c8d9fa2014-03-18 20:25:41491
mariakhomenkobfc3a2a2014-10-24 00:48:22492bool ZeroSuggestProvider::ShouldShowNonContextualZeroSuggest(
[email protected]162c8d9fa2014-03-18 20:25:41493 const GURL& current_page_url) const {
gcomanicide29a4362017-06-02 15:44:08494 if (!ZeroSuggestEnabled(current_page_classification_, client()))
[email protected]162c8d9fa2014-03-18 20:25:41495 return false;
496
497 // If we cannot send URLs, then only the MostVisited and Personalized
498 // variations can be shown.
499 if (!OmniboxFieldTrial::InZeroSuggestMostVisitedFieldTrial() &&
500 !OmniboxFieldTrial::InZeroSuggestPersonalizedFieldTrial())
501 return false;
502
503 // Only show zero suggest for HTTP[S] pages.
504 // TODO(mariakhomenko): We may be able to expand this set to include pages
505 // with other schemes (e.g. chrome://). That may require improvements to
506 // the formatting of the verbatim result returned by MatchForCurrentURL().
507 if (!current_page_url.is_valid() ||
[email protected]e8ca69c2014-05-07 15:31:19508 ((current_page_url.scheme() != url::kHttpScheme) &&
509 (current_page_url.scheme() != url::kHttpsScheme)))
[email protected]162c8d9fa2014-03-18 20:25:41510 return false;
511
mariakhomenkobfc3a2a2014-10-24 00:48:22512 if (OmniboxFieldTrial::InZeroSuggestMostVisitedWithoutSerpFieldTrial() &&
blundelld130d592015-06-21 19:29:13513 client()
514 ->GetTemplateURLService()
515 ->IsSearchResultsPageFromDefaultSearchProvider(current_page_url))
mariakhomenkobfc3a2a2014-10-24 00:48:22516 return false;
517
[email protected]162c8d9fa2014-03-18 20:25:41518 return true;
519}
[email protected]855ebff2014-05-09 07:14:38520
[email protected]855ebff2014-05-09 07:14:38521void ZeroSuggestProvider::MaybeUseCachedSuggestions() {
522 if (!OmniboxFieldTrial::InZeroSuggestPersonalizedFieldTrial())
523 return;
524
blundelld130d592015-06-21 19:29:13525 std::string json_data =
526 client()->GetPrefs()->GetString(omnibox::kZeroSuggestCachedResults);
[email protected]855ebff2014-05-09 07:14:38527 if (!json_data.empty()) {
dcheng259570c2016-04-22 00:45:57528 std::unique_ptr<base::Value> data(
[email protected]2c802d12014-07-31 12:57:14529 SearchSuggestionParser::DeserializeJsonData(json_data));
[email protected]776ee5902014-08-11 09:15:19530 if (data && ParseSuggestResults(
531 *data, kDefaultZeroSuggestRelevance, false, &results_)) {
[email protected]855ebff2014-05-09 07:14:38532 ConvertResultsToAutocompleteMatches();
533 results_from_cache_ = !matches_.empty();
534 }
535 }
536}