1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/searchbox/searchbox.h"
#include <stddef.h>
#include <stdint.h>
#include <string_view>
#include <utility>
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "base/token.h"
#include "base/types/optional_util.h"
#include "chrome/common/search/search.mojom.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/renderer/searchbox/searchbox_extension.h"
#include "components/favicon_base/favicon_types.h"
#include "components/favicon_base/favicon_url_parser.h"
#include "components/url_formatter/url_fixer.h"
#include "content/public/renderer/render_frame.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h"
#include "third_party/blink/public/web/web_frame.h"
#include "third_party/blink/public/web/web_local_frame.h"
namespace {
// The size of the InstantMostVisitedItem cache.
const size_t kMaxInstantMostVisitedItemCacheSize = 100;
// Returns true if items stored in |old_item_id_pairs| and |new_items| are
// equal.
bool AreMostVisitedItemsEqual(
const std::vector<InstantMostVisitedItemIDPair>& old_item_id_pairs,
const std::vector<InstantMostVisitedItem>& new_items) {
if (old_item_id_pairs.size() != new_items.size())
return false;
for (size_t i = 0; i < new_items.size(); ++i) {
if (new_items[i].url != old_item_id_pairs[i].second.url ||
new_items[i].title != old_item_id_pairs[i].second.title) {
return false;
}
}
return true;
}
// Helper for SearchBox::GenerateImageURLFromTransientURL().
class SearchBoxIconURLHelper: public SearchBox::IconURLHelper {
public:
explicit SearchBoxIconURLHelper(const SearchBox* search_box);
~SearchBoxIconURLHelper() override;
std::string GetMainFrameToken() const override;
std::string GetURLStringFromRestrictedID(InstantRestrictedID rid) const
override;
private:
raw_ptr<const SearchBox> search_box_;
};
SearchBoxIconURLHelper::SearchBoxIconURLHelper(const SearchBox* search_box)
: search_box_(search_box) {
}
SearchBoxIconURLHelper::~SearchBoxIconURLHelper() = default;
std::string SearchBoxIconURLHelper::GetMainFrameToken() const {
return search_box_->render_frame()
->GetWebFrame()
->GetLocalFrameToken()
.ToString();
}
std::string SearchBoxIconURLHelper::GetURLStringFromRestrictedID(
InstantRestrictedID rid) const {
InstantMostVisitedItem item;
if (!search_box_->GetMostVisitedItemWithID(rid, &item))
return std::string();
return item.url.spec();
}
} // namespace
namespace internal { // for testing
// Parses "<frame_token>/<restricted_id>". If successful, assigns
// |*frame_token| := "<frame_token>", |*rid| := "<restricted_id>", and returns
// true.
bool ParseFrameTokenAndRestrictedId(const std::string& id_part,
std::string* frame_token_out,
InstantRestrictedID* rid_out) {
DCHECK(frame_token_out);
DCHECK(rid_out);
// Check that the path is of Most visited item ID form.
std::vector<std::string_view> tokens = base::SplitStringPiece(
id_part, "/", base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
if (tokens.size() != 2)
return false;
InstantRestrictedID rid;
std::optional<base::Token> frame_token = base::Token::FromString(tokens[0]);
if (!frame_token || !base::StringToInt(tokens[1], &rid) || rid < 0) {
return false;
}
*frame_token_out = tokens[0];
*rid_out = rid;
return true;
}
// Takes a favicon |url| that looks like:
//
// chrome-search://favicon/<frame_token>/<restricted_id>
// chrome-search://favicon/<parameters>/<frame_token>/<restricted_id>
//
// If successful, assigns |*param_part| := "" or "<parameters>/" (note trailing
// slash), |*frame_id| := "<frame_id>", |*rid| := "rid", and returns true.
bool ParseIconRestrictedUrl(const GURL& url,
std::string* param_part,
std::string* frame_token,
InstantRestrictedID* rid) {
DCHECK(param_part);
DCHECK(frame_token);
DCHECK(rid);
// Strip leading slash.
std::string raw_path = url.path();
DCHECK_GT(raw_path.length(), (size_t) 0);
DCHECK_EQ(raw_path[0], '/');
raw_path = raw_path.substr(1);
// Get the starting index of the page URL.
chrome::ParsedFaviconPath parsed;
if (!chrome::ParseFaviconPath(
raw_path, chrome::FaviconUrlFormat::kFaviconLegacy, &parsed)) {
return false;
}
int path_index = parsed.path_index;
std::string id_part = raw_path.substr(path_index);
if (!ParseFrameTokenAndRestrictedId(id_part, frame_token, rid)) {
return false;
}
*param_part = raw_path.substr(0, path_index);
return true;
}
void TranslateIconRestrictedUrl(const GURL& transient_url,
const SearchBox::IconURLHelper& helper,
GURL* url) {
std::string params;
std::string frame_token;
InstantRestrictedID rid = -1;
if (!internal::ParseIconRestrictedUrl(transient_url, ¶ms, &frame_token,
&rid) ||
frame_token != helper.GetMainFrameToken()) {
*url = GURL(base::StringPrintf("chrome-search://%s/",
chrome::kChromeUIFaviconHost));
} else {
std::string item_url = helper.GetURLStringFromRestrictedID(rid);
*url = GURL(base::StringPrintf("chrome-search://%s/%s%s",
chrome::kChromeUIFaviconHost, params.c_str(),
item_url.c_str()));
}
}
} // namespace internal
SearchBox::IconURLHelper::IconURLHelper() = default;
SearchBox::IconURLHelper::~IconURLHelper() = default;
SearchBox::SearchBox(content::RenderFrame* render_frame)
: content::RenderFrameObserver(render_frame),
content::RenderFrameObserverTracker<SearchBox>(render_frame),
can_run_js_in_renderframe_(false),
page_seq_no_(0),
is_focused_(false),
is_input_in_progress_(false),
is_key_capture_enabled_(false),
most_visited_items_cache_(kMaxInstantMostVisitedItemCacheSize),
has_received_most_visited_(false) {
// Connect to the embedded search interface in the browser.
mojo::AssociatedRemote<search::mojom::EmbeddedSearchConnector> connector;
render_frame->GetRemoteAssociatedInterfaces()->GetInterface(&connector);
mojo::PendingAssociatedRemote<search::mojom::EmbeddedSearchClient>
embedded_search_client;
receiver_.Bind(embedded_search_client.InitWithNewEndpointAndPassReceiver(),
render_frame->GetTaskRunner(
blink::TaskType::kInternalNavigationAssociated));
connector->Connect(embedded_search_service_.BindNewEndpointAndPassReceiver(
render_frame->GetTaskRunner(
blink::TaskType::kInternalNavigationAssociated)),
std::move(embedded_search_client));
}
SearchBox::~SearchBox() = default;
void SearchBox::DeleteMostVisitedItem(
InstantRestrictedID most_visited_item_id) {
GURL url = GetURLForMostVisitedItem(most_visited_item_id);
if (!url.is_valid())
return;
embedded_search_service_->DeleteMostVisitedItem(page_seq_no_, url);
}
void SearchBox::GenerateImageURLFromTransientURL(const GURL& transient_url,
GURL* url) const {
SearchBoxIconURLHelper helper(this);
internal::TranslateIconRestrictedUrl(transient_url, helper, url);
}
void SearchBox::GetMostVisitedItems(
std::vector<InstantMostVisitedItemIDPair>* items) const {
most_visited_items_cache_.GetCurrentItems(items);
}
bool SearchBox::AreMostVisitedItemsAvailable() const {
return has_received_most_visited_;
}
bool SearchBox::GetMostVisitedItemWithID(
InstantRestrictedID most_visited_item_id,
InstantMostVisitedItem* item) const {
return most_visited_items_cache_.GetItemWithRestrictedID(most_visited_item_id,
item);
}
const NtpTheme* SearchBox::GetNtpTheme() const {
return base::OptionalToPtr(theme_);
}
void SearchBox::StartCapturingKeyStrokes() {
embedded_search_service_->FocusOmnibox(page_seq_no_, OMNIBOX_FOCUS_INVISIBLE);
}
void SearchBox::StopCapturingKeyStrokes() {
embedded_search_service_->FocusOmnibox(page_seq_no_, OMNIBOX_FOCUS_NONE);
}
void SearchBox::UndoAllMostVisitedDeletions() {
embedded_search_service_->UndoAllMostVisitedDeletions(page_seq_no_);
}
void SearchBox::UndoMostVisitedDeletion(
InstantRestrictedID most_visited_item_id) {
GURL url = GetURLForMostVisitedItem(most_visited_item_id);
if (!url.is_valid())
return;
embedded_search_service_->UndoMostVisitedDeletion(page_seq_no_, url);
}
void SearchBox::SetPageSequenceNumber(int page_seq_no) {
page_seq_no_ = page_seq_no;
}
void SearchBox::FocusChanged(OmniboxFocusState new_focus_state,
OmniboxFocusChangeReason reason) {
bool key_capture_enabled = new_focus_state == OMNIBOX_FOCUS_INVISIBLE;
if (key_capture_enabled != is_key_capture_enabled_) {
// Tell the page if the key capture mode changed unless the focus state
// changed because of TYPING. This is because in that case, the browser
// hasn't really stopped capturing key strokes.
//
// (More practically, if we don't do this check, the page would receive
// onkeycapturechange before the corresponding onchange, and the page would
// have no way of telling whether the keycapturechange happened because of
// some actual user action or just because they started typing.)
if (reason != OMNIBOX_FOCUS_CHANGE_TYPING) {
is_key_capture_enabled_ = key_capture_enabled;
DVLOG(1) << render_frame() << " KeyCaptureChange";
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchKeyCaptureChange(
render_frame()->GetWebFrame());
}
}
}
bool is_focused = new_focus_state == OMNIBOX_FOCUS_VISIBLE;
if (is_focused != is_focused_) {
is_focused_ = is_focused;
DVLOG(1) << render_frame() << " FocusChange";
if (can_run_js_in_renderframe_)
SearchBoxExtension::DispatchFocusChange(render_frame()->GetWebFrame());
}
}
void SearchBox::MostVisitedInfoChanged(
const InstantMostVisitedInfo& most_visited_info) {
has_received_most_visited_ = true;
std::vector<InstantMostVisitedItemIDPair> last_known_items;
GetMostVisitedItems(&last_known_items);
if (AreMostVisitedItemsEqual(last_known_items, most_visited_info.items)) {
return; // Do not send duplicate onmostvisitedchange events.
}
most_visited_items_cache_.AddItems(most_visited_info.items);
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchMostVisitedChanged(
render_frame()->GetWebFrame());
}
}
void SearchBox::SetInputInProgress(bool is_input_in_progress) {
if (is_input_in_progress_ == is_input_in_progress)
return;
is_input_in_progress_ = is_input_in_progress;
DVLOG(1) << render_frame() << " SetInputInProgress";
if (can_run_js_in_renderframe_) {
if (is_input_in_progress_)
SearchBoxExtension::DispatchInputStart(render_frame()->GetWebFrame());
else
SearchBoxExtension::DispatchInputCancel(render_frame()->GetWebFrame());
}
}
void SearchBox::ThemeChanged(const NtpTheme& theme) {
// Do not send duplicate notifications.
if (theme_ == theme)
return;
theme_ = theme;
if (can_run_js_in_renderframe_)
SearchBoxExtension::DispatchThemeChange(render_frame()->GetWebFrame());
}
GURL SearchBox::GetURLForMostVisitedItem(InstantRestrictedID item_id) const {
InstantMostVisitedItem item;
return GetMostVisitedItemWithID(item_id, &item) ? item.url : GURL();
}
void SearchBox::DidCommitProvisionalLoad(ui::PageTransition transition) {
can_run_js_in_renderframe_ = true;
}
void SearchBox::OnDestruct() {
delete this;
}
|