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
|
// Copyright 2020 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/browser/renderer_context_menu/link_to_text_menu_observer.h"
#include <memory>
#include "base/memory/ptr_util.h"
#include "base/metrics/user_metrics.h"
#include "base/metrics/user_metrics_action.h"
#include "base/no_destructor.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/enterprise/data_protection/data_protection_clipboard_utils.h"
#include "chrome/browser/feature_engagement/tracker_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/toasts/api/toast_id.h"
#include "chrome/browser/ui/toasts/toast_controller.h"
#include "chrome/browser/ui/toasts/toast_features.h"
#include "chrome/grit/generated_resources.h"
#include "components/feature_engagement/public/tracker.h"
#include "components/renderer_context_menu/render_view_context_menu_proxy.h"
#include "components/shared_highlighting/core/common/disabled_sites.h"
#include "components/shared_highlighting/core/common/fragment_directives_constants.h"
#include "components/shared_highlighting/core/common/fragment_directives_utils.h"
#include "components/shared_highlighting/core/common/shared_highlighting_features.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/clipboard_types.h"
#include "content/public/browser/context_menu_params.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/process_manager.h"
#include "third_party/blink/public/mojom/annotation/annotation.mojom.h"
#include "ui/base/clipboard/scoped_clipboard_writer.h"
#include "ui/base/data_transfer_policy/data_transfer_endpoint.h"
#include "ui/base/l10n/l10n_util.h"
using shared_highlighting::LinkGenerationError;
using shared_highlighting::LinkGenerationReadyStatus;
using shared_highlighting::LinkGenerationStatus;
namespace {
// Removes the highlight from the frame.
void RemoveHighlightsInFrame(content::RenderFrameHost* render_frame_host) {
mojo::Remote<blink::mojom::TextFragmentReceiver> remote;
// A TextFragmentReceiver is created lazily for each frame
render_frame_host->GetRemoteInterfaces()->GetInterface(
remote.BindNewPipeAndPassReceiver());
remote->RemoveFragments();
}
base::OnceCallback<void(const std::string& selector)>*
GetGenerationCompleteCallbackForTesting() {
static base::NoDestructor<
base::OnceCallback<void(const std::string& selector)>>
callback;
return callback.get();
}
std::vector<std::string> GetAggregatedSelectors(
std::unordered_map<content::GlobalRenderFrameHostId,
std::vector<std::string>,
content::GlobalRenderFrameHostIdHasher> frames_selectors,
std::vector<content::GlobalRenderFrameHostId> render_frame_host_ids) {
std::vector<std::string> aggregated_selectors;
for (content::GlobalRenderFrameHostId render_frame_host_id :
render_frame_host_ids) {
std::vector<std::string>& frame_selectors =
frames_selectors.at(render_frame_host_id);
aggregated_selectors.insert(aggregated_selectors.end(),
frame_selectors.begin(), frame_selectors.end());
}
return aggregated_selectors;
}
} // namespace
// static
std::unique_ptr<LinkToTextMenuObserver> LinkToTextMenuObserver::Create(
RenderViewContextMenuProxy* proxy,
content::GlobalRenderFrameHostId render_frame_host_id,
ToastController* toast_controller) {
// WebContents can be null in tests.
content::WebContents* web_contents = proxy->GetWebContents();
if (web_contents && extensions::ProcessManager::Get(
proxy->GetWebContents()->GetBrowserContext())
->GetExtensionForWebContents(web_contents)) {
// Do not show menu item for extensions, such as the PDF viewer.
return nullptr;
}
DCHECK(content::RenderFrameHost::FromID(render_frame_host_id));
return base::WrapUnique(new LinkToTextMenuObserver(
proxy, render_frame_host_id, toast_controller));
}
LinkToTextMenuObserver::LinkToTextMenuObserver(
RenderViewContextMenuProxy* proxy,
content::GlobalRenderFrameHostId render_frame_host_id,
ToastController* toast_controller)
: proxy_(proxy),
toast_controller_(toast_controller),
render_frame_host_id_(render_frame_host_id) {}
LinkToTextMenuObserver::~LinkToTextMenuObserver() = default;
void LinkToTextMenuObserver::InitMenu(
const content::ContextMenuParams& params) {
open_from_new_selection_ = !params.selection_text.empty();
raw_url_ = params.page_url;
if (params.page_url.has_ref()) {
url_ = shared_highlighting::RemoveFragmentSelectorDirectives(raw_url_);
} else {
url_ = params.page_url;
}
annotation_type_ = params.annotation_type;
// It is possible that there is a new text selection on top of an annotation,
// in which case, both `open_from_new_selection_` and
// `annotation_type_.has_value()` are true. Consequently, a context menu for
// new text selection is created.
if (open_from_new_selection_) {
proxy_->AddMenuItem(
IDC_CONTENT_CONTEXT_COPYLINKTOTEXT,
l10n_util::GetStringUTF16(IDS_CONTENT_CONTEXT_COPYLINKTOTEXT));
RequestLinkGeneration();
} else if (annotation_type_.has_value()) {
switch (annotation_type_.value()) {
case blink::mojom::AnnotationType::kSharedHighlight:
proxy_->AddMenuItem(
IDC_CONTENT_CONTEXT_RESHARELINKTOTEXT,
l10n_util::GetStringUTF16(IDS_CONTENT_CONTEXT_RESHARELINKTOTEXT));
proxy_->AddMenuItem(
IDC_CONTENT_CONTEXT_REMOVELINKTOTEXT,
l10n_util::GetStringUTF16(IDS_CONTENT_CONTEXT_REMOVELINKTOTEXT));
break;
case blink::mojom::AnnotationType::kGlic:
proxy_->AddMenuItem(
IDC_CONTENT_CONTEXT_REMOVELINKTOTEXT,
l10n_util::GetStringUTF16(IDS_CONTENT_CONTEXT_REMOVELINKTOTEXT));
break;
case blink::mojom::AnnotationType::kTextFinder:
case blink::mojom::AnnotationType::kUserNote:
NOTIMPLEMENTED();
}
}
}
bool LinkToTextMenuObserver::IsCommandIdSupported(int command_id) {
return command_id == IDC_CONTENT_CONTEXT_COPYLINKTOTEXT ||
command_id == IDC_CONTENT_CONTEXT_REMOVELINKTOTEXT ||
command_id == IDC_CONTENT_CONTEXT_RESHARELINKTOTEXT;
}
bool LinkToTextMenuObserver::IsCommandIdEnabled(int command_id) {
// This should only be called for the command for copying link to text.
DCHECK(IsCommandIdSupported(command_id));
// If a link generation was needed, only enable the command if a link was
// successfully generated.
if (open_from_new_selection_) {
return generated_link_.has_value();
}
// For other cases (re-sharing and removing), the options are always enabled.
return true;
}
void LinkToTextMenuObserver::ExecuteCommand(int command_id) {
// This should only be called for the command for copying link to text.
DCHECK(IsCommandIdSupported(command_id));
if (command_id == IDC_CONTENT_CONTEXT_COPYLINKTOTEXT) {
ExecuteCopyLinkToText();
} else if (command_id == IDC_CONTENT_CONTEXT_RESHARELINKTOTEXT) {
ReshareLink();
} else if (command_id == IDC_CONTENT_CONTEXT_REMOVELINKTOTEXT) {
RemoveHighlights();
}
}
void LinkToTextMenuObserver::OnRequestLinkGenerationCompleted(
const std::string& selector,
LinkGenerationError error,
LinkGenerationReadyStatus ready_status) {
is_generation_complete_ = true;
LinkGenerationStatus status = selector.empty()
? LinkGenerationStatus::kFailure
: LinkGenerationStatus::kSuccess;
// If the RenderFrameHost is no longer in the frame tree since the request was
// issued, mark the request as a failure to ensure the RenderFrameHost isn't
// used later for UKM.
auto* rfh = content::RenderFrameHost::FromID(render_frame_host_id_);
if (!rfh && status == LinkGenerationStatus::kSuccess) {
status = LinkGenerationStatus::kFailure;
error = LinkGenerationError::kUnknown;
}
shared_highlighting::LogLinkRequestedBeforeStatus(status, ready_status);
if (status == LinkGenerationStatus::kSuccess) {
CHECK_EQ(error, LinkGenerationError::kNone);
CHECK(rfh);
CHECK(!rfh->IsInLifecycleState(
content::RenderFrameHost::LifecycleState::kPrerendering));
shared_highlighting::LogRequestedSuccessMetrics(rfh->GetPageUkmSourceId());
} else {
CHECK_NE(error, LinkGenerationError::kNone);
CompleteWithError(error);
// If there is no valid selector, leave the menu item disabled.
return;
}
// Enable the menu option.
generated_link_ =
shared_highlighting::AppendSelectors(url_, {selector}).spec();
proxy_->UpdateMenuItem(
IDC_CONTENT_CONTEXT_COPYLINKTOTEXT, true, false,
l10n_util::GetStringUTF16(IDS_CONTENT_CONTEXT_COPYLINKTOTEXT));
// Useful only for testing to be notified when generation is complete.
auto* cb = GetGenerationCompleteCallbackForTesting();
if (!cb->is_null())
std::move(*cb).Run(selector);
}
// static
void LinkToTextMenuObserver::RegisterGenerationCompleteCallbackForTesting(
base::OnceCallback<void(const std::string& selector)> cb) {
*GetGenerationCompleteCallbackForTesting() = std::move(cb);
}
void LinkToTextMenuObserver::RequestLinkGeneration() {
content::RenderFrameHost* main_frame =
proxy_->GetWebContents()->GetPrimaryMainFrame();
if (!main_frame)
return;
// Check whether current url is blocklisted for link to text generation. This
// check should happen before iframe check so that if both conditions are
// present then blocklist error is logged.
if (!shared_highlighting::ShouldOfferLinkToText(url_)) {
CompleteWithError(LinkGenerationError::kBlockList);
return;
}
// Check whether the selected text is in an iframe.
if (main_frame != proxy_->GetWebContents()->GetFocusedFrame()) {
CompleteWithError(LinkGenerationError::kIFrame);
return;
}
StartLinkGenerationRequestWithTimeout();
}
void LinkToTextMenuObserver::StartLinkGenerationRequestWithTimeout() {
base::TimeDelta timeout_length_ms = base::Milliseconds(
shared_highlighting::GetPreemptiveLinkGenTimeoutLengthMs());
// Make a call to the renderer to request generated selector that uniquely
// represents the selected text and any context around the text to distinguish
// it from the rest of the contents. |RequestSelector| will call a
// |OnRequestLinkGenerationCompleted| callback with the generated string if it
// succeeds or an empty string if it fails, along with error code and whether
// the generation was completed at the time of the request.
GetRemote()->RequestSelector(
base::BindOnce(&LinkToTextMenuObserver::OnRequestLinkGenerationCompleted,
weak_ptr_factory_.GetWeakPtr()));
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&LinkToTextMenuObserver::Timeout,
weak_ptr_factory_.GetWeakPtr()),
timeout_length_ms);
}
void LinkToTextMenuObserver::ExecuteCopyLinkToText() {
DCHECK(generated_link_.has_value());
CopyTextToClipboard(generated_link_.value());
LogDesktopLinkGenerationCopiedLinkType(
shared_highlighting::LinkGenerationCopiedLinkType::
kCopiedFromNewGeneration);
if (toast_features::IsEnabled(toast_features::kLinkToHighlightCopiedToast) &&
toast_controller_) {
toast_controller_->MaybeShowToast(
ToastParams(ToastId::kLinkToHighlightCopied));
}
// Log usage for Shared Highlighting promo.
feature_engagement::TrackerFactory::GetForBrowserContext(
proxy_->GetWebContents()->GetBrowserContext())
->NotifyEvent("iph_desktop_shared_highlighting_used");
}
void LinkToTextMenuObserver::Timeout() {
auto* rfh = content::RenderFrameHost::FromID(render_frame_host_id_);
// The renderer may remove the frame. Or it may have crashed leaving the
// remote disconnected with the Timeout task still queued.
if (rfh && rfh->IsRenderFrameLive()) {
CHECK(remote_.is_connected());
if (is_generation_complete_)
return;
remote_->Cancel();
remote_.reset();
}
CompleteWithError(LinkGenerationError::kTimeout);
}
void LinkToTextMenuObserver::CompleteWithError(LinkGenerationError error) {
is_generation_complete_ = true;
auto* rfh = content::RenderFrameHost::FromID(render_frame_host_id_);
if (rfh) {
CHECK(!rfh->IsInLifecycleState(
content::RenderFrameHost::LifecycleState::kPrerendering));
shared_highlighting::LogRequestedFailureMetrics(rfh->GetPageUkmSourceId(),
error);
}
}
void LinkToTextMenuObserver::ReshareLink() {
// Get the list of RenderFrameHosts from the current page.
proxy_->GetWebContents()->GetPrimaryMainFrame()->ForEachRenderFrameHost(
[this](content::RenderFrameHost* rfh) {
render_frame_host_ids_.push_back(rfh->GetGlobalId());
mojo::Remote<blink::mojom::TextFragmentReceiver> remote;
text_fragment_remotes_.push_back(std::move(remote));
});
get_frames_existing_selectors_counter_ = render_frame_host_ids_.size();
for (size_t i = 0; i < render_frame_host_ids_.size(); i++) {
content::GlobalRenderFrameHostId render_frame_host_id(
render_frame_host_ids_.at(i));
content::RenderFrameHost* render_frame_host(
content::RenderFrameHost::FromID(render_frame_host_id));
render_frame_host->GetRemoteInterfaces()->GetInterface(
text_fragment_remotes_.at(i).BindNewPipeAndPassReceiver());
text_fragment_remotes_.at(i)->GetExistingSelectors(base::BindOnce(
[](const base::WeakPtr<LinkToTextMenuObserver>&
link_to_text_menu_observer_ptr,
const content::GlobalRenderFrameHostId global_render_frame_host_id,
const std::vector<std::string>& selectors) {
if (link_to_text_menu_observer_ptr == nullptr)
return;
link_to_text_menu_observer_ptr->frames_selectors_.insert(
{global_render_frame_host_id, selectors});
link_to_text_menu_observer_ptr
->get_frames_existing_selectors_counter_--;
if (link_to_text_menu_observer_ptr
->get_frames_existing_selectors_counter_ == 0) {
std::vector<std::string> aggregated_selectors =
GetAggregatedSelectors(
link_to_text_menu_observer_ptr->frames_selectors_,
link_to_text_menu_observer_ptr->render_frame_host_ids_);
link_to_text_menu_observer_ptr->OnGetExistingSelectorsComplete(
aggregated_selectors);
}
},
weak_ptr_factory_.GetWeakPtr(), render_frame_host_id));
}
}
void LinkToTextMenuObserver::OnGetExistingSelectorsComplete(
const std::vector<std::string>& aggregated_selectors) {
GURL url_to_share =
shared_highlighting::RemoveFragmentSelectorDirectives(url_);
url_to_share =
shared_highlighting::AppendSelectors(url_to_share, aggregated_selectors);
CopyTextToClipboard(url_to_share.spec());
LogDesktopLinkGenerationCopiedLinkType(
shared_highlighting::LinkGenerationCopiedLinkType::
kCopiedFromExistingHighlight);
}
void LinkToTextMenuObserver::RemoveHighlights() {
CHECK(annotation_type_.has_value());
switch (annotation_type_.value()) {
case blink::mojom::AnnotationType::kSharedHighlight:
proxy_->GetWebContents()->GetPrimaryMainFrame()->ForEachRenderFrameHost(
&RemoveHighlightsInFrame);
return;
case blink::mojom::AnnotationType::kGlic: {
mojo::Remote<blink::mojom::AnnotationAgentContainer>
annotation_agent_container;
proxy_->GetWebContents()
->GetPrimaryMainFrame()
->GetRemoteInterfaces()
->GetInterface(
annotation_agent_container.BindNewPipeAndPassReceiver());
annotation_agent_container->RemoveAgentsOfType(
blink::mojom::AnnotationType::kGlic);
base::RecordAction(base::UserMetricsAction("GlicRemoveHighlight"));
return;
}
case blink::mojom::AnnotationType::kTextFinder:
case blink::mojom::AnnotationType::kUserNote:
NOTIMPLEMENTED();
}
}
mojo::Remote<blink::mojom::TextFragmentReceiver>&
LinkToTextMenuObserver::GetRemote() {
if (!remote_.is_bound()) {
auto* rfh = content::RenderFrameHost::FromID(render_frame_host_id_);
CHECK(rfh);
rfh->GetRemoteInterfaces()->GetInterface(
remote_.BindNewPipeAndPassReceiver());
}
return remote_;
}
void LinkToTextMenuObserver::CopyTextToClipboard(const std::string& text) {
auto* rfh = content::RenderFrameHost::FromID(render_frame_host_id_);
CHECK(rfh);
ui::DataTransferEndpoint dte(
rfh->GetMainFrame()->GetLastCommittedURL(),
{.off_the_record = rfh->GetBrowserContext()->IsOffTheRecord()});
content::ClipboardEndpoint clipboard_endpoint(
dte,
base::BindRepeating(
[](content::GlobalRenderFrameHostId rfh_id)
-> content::BrowserContext* {
auto* rfh = content::RenderFrameHost::FromID(rfh_id);
if (!rfh) {
return nullptr;
}
return rfh->GetBrowserContext();
},
rfh->GetGlobalId()),
*rfh);
content::ClipboardPasteData data;
data.text = base::UTF8ToUTF16(text);
size_t size = data.text.size() * sizeof(std::u16string::value_type);
enterprise_data_protection::IsClipboardCopyAllowedByPolicy(
std::move(clipboard_endpoint),
{
.size = size,
.format_type = ui::ClipboardFormatType::PlainTextType(),
},
std::move(data),
base::BindOnce(
[](std::unique_ptr<ui::DataTransferEndpoint> dte,
const ui::ClipboardFormatType& data_type,
const content::ClipboardPasteData& data,
std::optional<std::u16string> replacement_data) {
ui::ScopedClipboardWriter scw(ui::ClipboardBuffer::kCopyPaste,
std::move(dte));
if (replacement_data) {
scw.WriteText(std::move(*replacement_data));
} else {
scw.WriteText(data.text);
}
},
std::make_unique<ui::DataTransferEndpoint>(std::move(dte))));
}
|