forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchbox.cc
546 lines (464 loc) · 18 KB
/
searchbox.cc
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
// Copyright 2012 The Chromium Authors. All rights reserved.
// 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 <utility>
#include "base/bind.h"
#include "base/logging.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 "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 "content/public/renderer/render_view.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"
#include "third_party/blink/public/web/web_performance.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 ||
new_items[i].source != old_item_id_pairs[i].second.source) {
return false;
}
}
return true;
}
const char* GetIconTypeUrlHost(SearchBox::ImageSourceType type) {
switch (type) {
case SearchBox::FAVICON:
return "favicon";
case SearchBox::THUMB:
return "thumb";
case SearchBox::NONE:
break;
}
NOTREACHED();
return nullptr;
}
// Given |path| from an image URL, returns starting index of the page URL,
// depending on |type| of image URL. Returns -1 if parse fails.
int GetImagePathStartOfPageURL(SearchBox::ImageSourceType type,
const std::string& path) {
switch (type) {
case SearchBox::FAVICON: {
chrome::ParsedFaviconPath parsed;
return chrome::ParseFaviconPath(path, &parsed) ? parsed.path_index : -1;
}
case SearchBox::THUMB: {
return 0;
}
case SearchBox::NONE:
break;
}
NOTREACHED();
return -1;
}
// Helper for SearchBox::GenerateImageURLFromTransientURL().
class SearchBoxIconURLHelper: public SearchBox::IconURLHelper {
public:
explicit SearchBoxIconURLHelper(const SearchBox* search_box);
~SearchBoxIconURLHelper() override;
int GetViewID() const override;
std::string GetURLStringFromRestrictedID(InstantRestrictedID rid) const
override;
private:
const SearchBox* search_box_;
};
SearchBoxIconURLHelper::SearchBoxIconURLHelper(const SearchBox* search_box)
: search_box_(search_box) {
}
SearchBoxIconURLHelper::~SearchBoxIconURLHelper() {
}
int SearchBoxIconURLHelper::GetViewID() const {
return search_box_->render_frame()->GetRenderView()->GetRoutingID();
}
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 "<view_id>/<restricted_id>". If successful, assigns
// |*view_id| := "<view_id>", |*rid| := "<restricted_id>", and returns true.
bool ParseViewIdAndRestrictedId(const std::string& id_part,
int* view_id_out,
InstantRestrictedID* rid_out) {
DCHECK(view_id_out);
DCHECK(rid_out);
// Check that the path is of Most visited item ID form.
std::vector<base::StringPiece> tokens = base::SplitStringPiece(
id_part, "/", base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
if (tokens.size() != 2)
return false;
int view_id;
InstantRestrictedID rid;
if (!base::StringToInt(tokens[0], &view_id) || view_id < 0 ||
!base::StringToInt(tokens[1], &rid) || rid < 0)
return false;
*view_id_out = view_id;
*rid_out = rid;
return true;
}
// Takes icon |url| of given |type|, e.g., FAVICON looking like
//
// chrome-search://favicon/<view_id>/<restricted_id>
// chrome-search://favicon/<parameters>/<view_id>/<restricted_id>
//
// If successful, assigns |*param_part| := "" or "<parameters>/" (note trailing
// slash), |*view_id| := "<view_id>", |*rid| := "rid", and returns true.
bool ParseIconRestrictedUrl(const GURL& url,
SearchBox::ImageSourceType type,
std::string* param_part,
int* view_id,
InstantRestrictedID* rid) {
DCHECK(param_part);
DCHECK(view_id);
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);
int path_index = GetImagePathStartOfPageURL(type, raw_path);
if (path_index < 0)
return false;
std::string id_part = raw_path.substr(path_index);
if (!ParseViewIdAndRestrictedId(id_part, view_id, rid))
return false;
*param_part = raw_path.substr(0, path_index);
return true;
}
bool TranslateIconRestrictedUrl(const GURL& transient_url,
SearchBox::ImageSourceType type,
const SearchBox::IconURLHelper& helper,
GURL* url) {
std::string params;
int view_id = -1;
InstantRestrictedID rid = -1;
if (!internal::ParseIconRestrictedUrl(
transient_url, type, ¶ms, &view_id, &rid) ||
view_id != helper.GetViewID()) {
if (type == SearchBox::FAVICON) {
*url = GURL(base::StringPrintf("chrome-search://%s/",
GetIconTypeUrlHost(SearchBox::FAVICON)));
return true;
}
return false;
}
std::string item_url = helper.GetURLStringFromRestrictedID(rid);
*url = GURL(base::StringPrintf("chrome-search://%s/%s%s",
GetIconTypeUrlHost(type),
params.c_str(),
item_url.c_str()));
return true;
}
std::string FixupAndValidateUrl(const std::string& url) {
GURL gurl = url_formatter::FixupURL(url, /*desired_tld=*/std::string());
if (!gurl.is_valid())
return std::string();
// Unless "http" was specified, replaces FixupURL's default "http" with
// "https".
if (url.find(std::string("http://")) == std::string::npos &&
gurl.SchemeIs(url::kHttpScheme)) {
GURL::Replacements replacements;
replacements.SetSchemeStr(url::kHttpsScheme);
gurl = gurl.ReplaceComponents(replacements);
}
return gurl.spec();
}
} // 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),
binding_(this),
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),
weak_ptr_factory_(this) {
// Connect to the embedded search interface in the browser.
chrome::mojom::EmbeddedSearchConnectorAssociatedPtr connector;
render_frame->GetRemoteAssociatedInterfaces()->GetInterface(&connector);
chrome::mojom::EmbeddedSearchClientAssociatedPtrInfo embedded_search_client;
binding_.Bind(mojo::MakeRequest(&embedded_search_client));
connector->Connect(mojo::MakeRequest(&embedded_search_service_),
std::move(embedded_search_client));
}
SearchBox::~SearchBox() = default;
void SearchBox::LogEvent(NTPLoggingEventType event) {
base::Time navigation_start = base::Time::FromDoubleT(
render_frame()->GetWebFrame()->Performance().NavigationStart());
base::Time now = base::Time::Now();
base::TimeDelta delta = now - navigation_start;
embedded_search_service_->LogEvent(page_seq_no_, event, delta);
}
void SearchBox::LogMostVisitedImpression(
const ntp_tiles::NTPTileImpression& impression) {
embedded_search_service_->LogMostVisitedImpression(page_seq_no_, impression);
}
void SearchBox::LogMostVisitedNavigation(
const ntp_tiles::NTPTileImpression& impression) {
embedded_search_service_->LogMostVisitedNavigation(page_seq_no_, impression);
}
void SearchBox::CheckIsUserSignedInToChromeAs(const base::string16& identity) {
embedded_search_service_->ChromeIdentityCheck(
page_seq_no_, identity,
base::BindOnce(&SearchBox::ChromeIdentityCheckResult,
weak_ptr_factory_.GetWeakPtr(), identity));
}
void SearchBox::CheckIsUserSyncingHistory() {
embedded_search_service_->HistorySyncCheck(
page_seq_no_, base::BindOnce(&SearchBox::HistorySyncCheckResult,
weak_ptr_factory_.GetWeakPtr()));
}
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);
}
bool SearchBox::GenerateImageURLFromTransientURL(const GURL& transient_url,
ImageSourceType type,
GURL* url) const {
SearchBoxIconURLHelper helper(this);
return internal::TranslateIconRestrictedUrl(transient_url, type, 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 ThemeBackgroundInfo& SearchBox::GetThemeBackgroundInfo() const {
return theme_info_;
}
void SearchBox::Paste(const base::string16& text) {
embedded_search_service_->PasteAndOpenDropdown(page_seq_no_, text);
}
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);
}
bool SearchBox::IsCustomLinks() const {
return is_custom_links_;
}
void SearchBox::AddCustomLink(const GURL& url, const std::string& title) {
if (!url.is_valid()) {
AddCustomLinkResult(false);
return;
}
embedded_search_service_->AddCustomLink(
page_seq_no_, url, title,
base::BindOnce(&SearchBox::AddCustomLinkResult,
weak_ptr_factory_.GetWeakPtr()));
}
void SearchBox::UpdateCustomLink(InstantRestrictedID link_id,
const GURL& new_url,
const std::string& new_title) {
GURL url = GetURLForMostVisitedItem(link_id);
if (!url.is_valid()) {
UpdateCustomLinkResult(false);
return;
}
embedded_search_service_->UpdateCustomLink(
page_seq_no_, url, new_url, new_title,
base::BindOnce(&SearchBox::UpdateCustomLinkResult,
weak_ptr_factory_.GetWeakPtr()));
}
void SearchBox::ReorderCustomLink(InstantRestrictedID link_id, int new_pos) {
GURL url = GetURLForMostVisitedItem(link_id);
if (!url.is_valid())
return;
embedded_search_service_->ReorderCustomLink(page_seq_no_, url, new_pos);
}
void SearchBox::DeleteCustomLink(InstantRestrictedID most_visited_item_id) {
GURL url = GetURLForMostVisitedItem(most_visited_item_id);
if (!url.is_valid()) {
DeleteCustomLinkResult(false);
return;
}
embedded_search_service_->DeleteCustomLink(
page_seq_no_, url,
base::BindOnce(&SearchBox::DeleteCustomLinkResult,
weak_ptr_factory_.GetWeakPtr()));
}
void SearchBox::UndoCustomLinkAction() {
embedded_search_service_->UndoCustomLinkAction(page_seq_no_);
}
void SearchBox::ResetCustomLinks() {
embedded_search_service_->ResetCustomLinks(page_seq_no_);
}
std::string SearchBox::FixupAndValidateUrl(const std::string& url) const {
return internal::FixupAndValidateUrl(url);
}
void SearchBox::SetCustomBackgroundURL(const GURL& background_url) {
embedded_search_service_->SetCustomBackgroundURL(background_url);
}
void SearchBox::SetCustomBackgroundURLWithAttributions(
const GURL& background_url,
const std::string& attribution_line_1,
const std::string& attribution_line_2,
const GURL& action_url) {
embedded_search_service_->SetCustomBackgroundURLWithAttributions(
background_url, attribution_line_1, attribution_line_2, action_url);
}
void SearchBox::SelectLocalBackgroundImage() {
embedded_search_service_->SelectLocalBackgroundImage();
}
void SearchBox::SetPageSequenceNumber(int page_seq_no) {
page_seq_no_ = page_seq_no;
}
void SearchBox::ChromeIdentityCheckResult(const base::string16& identity,
bool identity_match) {
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchChromeIdentityCheckResult(
render_frame()->GetWebFrame(), identity, identity_match);
}
}
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::HistorySyncCheckResult(bool sync_history) {
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchHistorySyncCheckResult(
render_frame()->GetWebFrame(), sync_history);
}
}
void SearchBox::AddCustomLinkResult(bool success) {
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchAddCustomLinkResult(
render_frame()->GetWebFrame(), success);
}
}
void SearchBox::UpdateCustomLinkResult(bool success) {
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchUpdateCustomLinkResult(
render_frame()->GetWebFrame(), success);
}
}
void SearchBox::DeleteCustomLinkResult(bool success) {
if (can_run_js_in_renderframe_) {
SearchBoxExtension::DispatchDeleteCustomLinkResult(
render_frame()->GetWebFrame(), success);
}
}
void SearchBox::MostVisitedChanged(
const std::vector<InstantMostVisitedItem>& items,
bool is_custom_links) {
has_received_most_visited_ = true;
is_custom_links_ = is_custom_links;
std::vector<InstantMostVisitedItemIDPair> last_known_items;
GetMostVisitedItems(&last_known_items);
if (AreMostVisitedItemsEqual(last_known_items, items)) {
return; // Do not send duplicate onmostvisitedchange events.
}
most_visited_items_cache_.AddItems(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 ThemeBackgroundInfo& theme_info) {
// Do not send duplicate notifications.
if (theme_info_ == theme_info)
return;
theme_info_ = theme_info;
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(bool is_same_document_navigation,
ui::PageTransition transition) {
can_run_js_in_renderframe_ = true;
}
void SearchBox::OnDestruct() {
delete this;
}