1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/omnibox/browser/actions/history_clusters_action.h"
#include <algorithm>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "base/memory/scoped_refptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/escape.h"
#include "base/strings/strcat.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "components/history_clusters/core/config.h"
#include "components/history_clusters/core/features.h"
#include "components/history_clusters/core/history_clusters_service.h"
#include "components/history_clusters/core/history_clusters_util.h"
#include "components/history_clusters/core/url_constants.h"
#include "components/omnibox/browser/actions/omnibox_action.h"
#include "components/omnibox/browser/actions/omnibox_action_concepts.h"
#include "components/omnibox/browser/autocomplete_match.h"
#include "components/omnibox/browser/autocomplete_result.h"
#include "components/strings/grit/components_strings.h"
#include "net/base/url_util.h"
#if defined(SUPPORT_PEDALS_VECTOR_ICONS)
#include "components/omnibox/browser/vector_icons.h" // nogncheck
#endif
namespace history_clusters {
namespace {
// A template function for recording enum metrics for shown and used journey
// chips as well as their CTR metrics.
template <class EnumT>
void RecordShownUsedEnumAndCtrMetrics(std::string_view metric_name,
EnumT val,
std::string_view label,
bool executed) {
base::UmaHistogramEnumeration(
base::StrCat({"Omnibox.ResumeJourneyShown.", metric_name}), val);
if (executed) {
base::UmaHistogramEnumeration(
base::StrCat({"Omnibox.SuggestionUsed.ResumeJourney.", metric_name}),
val);
}
// Record the CTR metric.
std::string ctr_metric_name =
base::StrCat({"Omnibox.SuggestionUsed.ResumeJourney.", metric_name, ".",
label, ".CTR"});
base::UmaHistogramBoolean(ctr_metric_name, executed);
}
} // namespace
int TopRelevance(std::vector<AutocompleteMatch>::const_iterator matches_begin,
std::vector<AutocompleteMatch>::const_iterator matches_end,
TopRelevanceFilter filter) {
if (matches_begin == matches_end)
return 0;
std::vector<int> relevances(matches_end - matches_begin);
std::ranges::transform(
matches_begin, matches_end, relevances.begin(), [&](const auto& match) {
return AutocompleteMatch::IsSearchType(match.type) ==
(filter == TopRelevanceFilter::FILTER_FOR_SEARCH_MATCHES)
? match.relevance
: 0;
});
return std::ranges::max(relevances);
}
bool IsNavigationIntent(int top_search_relevance,
int top_navigation_relevance,
int navigation_intent_score_threshold) {
return top_navigation_relevance > top_search_relevance &&
top_navigation_relevance > navigation_intent_score_threshold;
}
GURL GetFullJourneysUrlForQuery(const std::string& query) {
return net::AppendOrReplaceQueryParameter(
GURL(GetChromeUIHistoryClustersURL()), "q", query);
}
HistoryClustersAction::HistoryClustersAction(
const std::string& query,
const history::ClusterKeywordData& matched_keyword_data)
: OmniboxAction(
OmniboxAction::LabelStrings(
IDS_OMNIBOX_ACTION_HISTORY_CLUSTERS_SEARCH_HINT,
IDS_OMNIBOX_ACTION_HISTORY_CLUSTERS_SEARCH_SUGGESTION_CONTENTS,
IDS_ACC_OMNIBOX_ACTION_HISTORY_CLUSTERS_SEARCH_SUFFIX,
IDS_ACC_OMNIBOX_ACTION_HISTORY_CLUSTERS_SEARCH),
GetFullJourneysUrlForQuery(query)),
matched_keyword_data_(matched_keyword_data),
query_(query) {}
void HistoryClustersAction::RecordActionShown(size_t position,
bool executed) const {
base::UmaHistogramExactLinear(
"Omnibox.ResumeJourneyShown", position,
AutocompleteResult::kMaxAutocompletePositionValue);
if (executed) {
base::UmaHistogramExactLinear(
"Omnibox.SuggestionUsed.ResumeJourney", position,
AutocompleteResult::kMaxAutocompletePositionValue);
}
base::UmaHistogramBoolean("Omnibox.SuggestionUsed.ResumeJourneyCTR",
executed);
// Record cluster keyword type UMA metrics.
RecordShownUsedEnumAndCtrMetrics<
history::ClusterKeywordData::ClusterKeywordType>(
"ClusterKeywordType", matched_keyword_data_.type,
matched_keyword_data_.GetKeywordTypeLabel(), executed);
}
void HistoryClustersAction::Execute(ExecutionContext& context) const {
if (context.client_->OpenJourneys(query_)) {
// If the client opens Journeys in the Side Panel, we are done.
return;
}
// Otherwise call the superclass, which will open the WebUI URL.
OmniboxAction::Execute(context);
}
OmniboxActionId HistoryClustersAction::ActionId() const {
return OmniboxActionId::HISTORY_CLUSTERS;
}
#if defined(SUPPORT_PEDALS_VECTOR_ICONS)
const gfx::VectorIcon& HistoryClustersAction::GetVectorIcon() const {
return omnibox::kJourneysIcon;
}
#endif
HistoryClustersAction::~HistoryClustersAction() = default;
// Should be invoked after `AutocompleteResult::AttachPedalsToMatches()`.
void AttachHistoryClustersActions(
history_clusters::HistoryClustersService* service,
AutocompleteResult& result) {
#if BUILDFLAG(IS_IOS)
// Compile out this method for Mobile, which doesn't omnibox actions yet.
// This is to prevent binary size increase for no reason.
return;
#else
if (!service || !service->IsJourneysEnabledAndVisible()) {
return;
}
if (!GetConfig().omnibox_action)
return;
if (result.empty())
return;
// If there's any action in `result`, don't add a history cluster action to
// avoid over-crowding.
if (!GetConfig().omnibox_action_with_pedals &&
std::ranges::any_of(
result, [](const auto& match) { return !match.actions.empty(); })) {
return;
}
// If there's a reasonably clear navigation intent, don't distract the user
// with the actions chip.
if (!GetConfig().omnibox_action_on_navigation_intents &&
IsNavigationIntent(
TopRelevance(result.begin(), result.end(),
TopRelevanceFilter::FILTER_FOR_SEARCH_MATCHES),
TopRelevance(result.begin(), result.end(),
TopRelevanceFilter::FILTER_FOR_NON_SEARCH_MATCHES),
GetConfig().omnibox_action_navigation_intent_score_threshold)) {
return;
}
for (auto& match : result) {
// Skip incompatible matches (like entities) or ones with existing actions.
// TODO(manukh): We don't use `AutocompleteMatch::IsActionCompatible()`
// because we're not sure if we want to show on entities or not. Once we
// decide, either share `IsActionCompatible()` or inline it to its
// remaining callsite.
if (!match.actions.empty()) {
continue;
}
if (match.type == AutocompleteMatchType::SEARCH_SUGGEST_TAIL) {
continue;
}
if (AutocompleteMatch::IsSearchType(match.type)) {
std::string query = base::UTF16ToUTF8(match.contents);
std::optional<history::ClusterKeywordData> matched_keyword_data =
service->DoesQueryMatchAnyCluster(query);
if (matched_keyword_data) {
match.actions.push_back(base::MakeRefCounted<HistoryClustersAction>(
query, std::move(matched_keyword_data.value())));
}
}
// Only ever attach one action (to the highest match), to not overwhelm
// the user with multiple "Resume Journey" action buttons.
if (!match.actions.empty()) {
return;
}
}
#endif
}
} // namespace history_clusters
|