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
|
// Copyright 2014 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/renderer_context_menu/render_view_context_menu_base.h"
#include <algorithm>
#include <utility>
#include <vector>
#include "base/command_line.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/observer_list.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "ppapi/buildflags/buildflags.h"
#include "third_party/blink/public/mojom/context_menu/context_menu.mojom.h"
#include "ui/base/models/image_model.h"
#include "url/origin.h"
using content::BrowserContext;
using content::GlobalRenderFrameHostId;
using content::OpenURLParams;
using content::RenderFrameHost;
using content::RenderViewHost;
using content::WebContents;
namespace {
// The (inclusive) range of command IDs reserved for content's custom menus.
int content_context_custom_first = -1;
int content_context_custom_last = -1;
bool IsCustomItemEnabledInternal(
const std::vector<blink::mojom::CustomContextMenuItemPtr>& items,
int id) {
DCHECK(RenderViewContextMenuBase::IsContentCustomCommandId(id));
for (const auto& item : items) {
int action_id = RenderViewContextMenuBase::ConvertToContentCustomCommandId(
item->action);
if (action_id == id)
return item->enabled;
if (item->type == blink::mojom::CustomContextMenuItemType::kSubMenu) {
if (IsCustomItemEnabledInternal(item->submenu, id))
return true;
}
}
return false;
}
bool IsCustomItemCheckedInternal(
const std::vector<blink::mojom::CustomContextMenuItemPtr>& items,
int id) {
DCHECK(RenderViewContextMenuBase::IsContentCustomCommandId(id));
for (const auto& item : items) {
int action_id = RenderViewContextMenuBase::ConvertToContentCustomCommandId(
item->action);
if (action_id == id)
return item->checked;
if (item->type == blink::mojom::CustomContextMenuItemType::kSubMenu) {
if (IsCustomItemCheckedInternal(item->submenu, id))
return true;
}
}
return false;
}
const size_t kMaxCustomMenuDepth = 5;
const size_t kMaxCustomMenuTotalItems = 1000;
void AddCustomItemsToMenu(
const std::vector<blink::mojom::CustomContextMenuItemPtr>& items,
size_t depth,
size_t* total_items,
std::vector<std::unique_ptr<ui::SimpleMenuModel>>* submenus,
ui::SimpleMenuModel::Delegate* delegate,
ui::SimpleMenuModel* menu_model) {
if (depth > kMaxCustomMenuDepth) {
LOG(ERROR) << "Custom menu too deeply nested.";
return;
}
for (const auto& item : items) {
int command_id = RenderViewContextMenuBase::ConvertToContentCustomCommandId(
item->action);
if (!RenderViewContextMenuBase::IsContentCustomCommandId(command_id)) {
LOG(ERROR) << "Custom menu action value out of range.";
return;
}
if (*total_items >= kMaxCustomMenuTotalItems) {
LOG(ERROR) << "Custom menu too large (too many items).";
return;
}
(*total_items)++;
switch (item->type) {
case blink::mojom::CustomContextMenuItemType::kOption:
menu_model->AddItem(
RenderViewContextMenuBase::ConvertToContentCustomCommandId(
item->action),
item->label);
break;
case blink::mojom::CustomContextMenuItemType::kCheckableOption:
menu_model->AddCheckItem(
RenderViewContextMenuBase::ConvertToContentCustomCommandId(
item->action),
item->label);
break;
case blink::mojom::CustomContextMenuItemType::kGroup:
// TODO(viettrungluu): I don't know what this is supposed to do.
NOTREACHED();
break;
case blink::mojom::CustomContextMenuItemType::kSeparator:
menu_model->AddSeparator(ui::NORMAL_SEPARATOR);
break;
case blink::mojom::CustomContextMenuItemType::kSubMenu: {
ui::SimpleMenuModel* submenu = new ui::SimpleMenuModel(delegate);
submenus->push_back(base::WrapUnique(submenu));
AddCustomItemsToMenu(item->submenu, depth + 1, total_items, submenus,
delegate, submenu);
menu_model->AddSubMenu(
RenderViewContextMenuBase::ConvertToContentCustomCommandId(
item->action),
item->label, submenu);
break;
}
default:
NOTREACHED();
break;
}
}
}
} // namespace
// static
void RenderViewContextMenuBase::SetContentCustomCommandIdRange(
int first, int last) {
// The range is inclusive.
content_context_custom_first = first;
content_context_custom_last = last;
}
// static
const size_t RenderViewContextMenuBase::kMaxSelectionTextLength = 50;
// static
int RenderViewContextMenuBase::ConvertToContentCustomCommandId(int id) {
return content_context_custom_first + id;
}
// static
bool RenderViewContextMenuBase::IsContentCustomCommandId(int id) {
return id >= content_context_custom_first &&
id <= content_context_custom_last;
}
RenderViewContextMenuBase::RenderViewContextMenuBase(
content::RenderFrameHost& render_frame_host,
const content::ContextMenuParams& params)
: params_(params),
source_web_contents_(
WebContents::FromRenderFrameHost(&render_frame_host)),
browser_context_(source_web_contents_->GetBrowserContext()),
menu_model_(this),
render_frame_id_(render_frame_host.GetRoutingID()),
render_frame_token_(render_frame_host.GetFrameToken()),
render_process_id_(render_frame_host.GetProcess()->GetID()),
site_instance_(render_frame_host.GetSiteInstance()),
command_executed_(false) {}
RenderViewContextMenuBase::~RenderViewContextMenuBase() {
}
// Menu construction functions -------------------------------------------------
void RenderViewContextMenuBase::Init() {
// Command id range must have been already initializerd.
DCHECK_NE(-1, content_context_custom_first);
DCHECK_NE(-1, content_context_custom_last);
InitMenu();
if (toolkit_delegate_)
toolkit_delegate_->Init(&menu_model_);
}
void RenderViewContextMenuBase::Cancel() {
if (toolkit_delegate_)
toolkit_delegate_->Cancel();
}
void RenderViewContextMenuBase::InitMenu() {
if (content_type_->SupportsGroup(ContextMenuContentType::ITEM_GROUP_CUSTOM)) {
AppendCustomItems();
const bool has_selection = !params_.selection_text.empty();
if (has_selection) {
// We will add more items if there's a selection, so add a separator.
// TODO(lazyboy): Clean up separator logic.
menu_model_.AddSeparator(ui::NORMAL_SEPARATOR);
}
}
}
void RenderViewContextMenuBase::AddMenuItem(int command_id,
const std::u16string& title) {
menu_model_.AddItem(command_id, title);
}
void RenderViewContextMenuBase::AddMenuItemWithIcon(
int command_id,
const std::u16string& title,
const ui::ImageModel& icon) {
menu_model_.AddItemWithIcon(command_id, title, icon);
}
void RenderViewContextMenuBase::AddCheckItem(int command_id,
const std::u16string& title) {
menu_model_.AddCheckItem(command_id, title);
}
void RenderViewContextMenuBase::AddSeparator() {
menu_model_.AddSeparator(ui::NORMAL_SEPARATOR);
}
void RenderViewContextMenuBase::AddSubMenu(int command_id,
const std::u16string& label,
ui::MenuModel* model) {
menu_model_.AddSubMenu(command_id, label, model);
}
void RenderViewContextMenuBase::AddSubMenuWithStringIdAndIcon(
int command_id,
int message_id,
ui::MenuModel* model,
const ui::ImageModel& icon) {
menu_model_.AddSubMenuWithStringIdAndIcon(command_id, message_id, model,
icon);
}
void RenderViewContextMenuBase::UpdateMenuItem(int command_id,
bool enabled,
bool hidden,
const std::u16string& label) {
absl::optional<size_t> index = menu_model_.GetIndexOfCommandId(command_id);
if (!index.has_value())
return;
menu_model_.SetLabel(index.value(), label);
menu_model_.SetEnabledAt(index.value(), enabled);
menu_model_.SetVisibleAt(index.value(), !hidden);
if (toolkit_delegate_) {
#if BUILDFLAG(IS_MAC)
toolkit_delegate_->UpdateMenuItem(command_id, enabled, hidden, label);
#else
toolkit_delegate_->RebuildMenu();
#endif
}
}
void RenderViewContextMenuBase::UpdateMenuIcon(int command_id,
const ui::ImageModel& icon) {
absl::optional<size_t> index = menu_model_.GetIndexOfCommandId(command_id);
if (!index.has_value())
return;
menu_model_.SetIcon(index.value(), icon);
#if BUILDFLAG(IS_CHROMEOS_ASH)
if (toolkit_delegate_)
toolkit_delegate_->RebuildMenu();
#endif
}
void RenderViewContextMenuBase::RemoveMenuItem(int command_id) {
absl::optional<size_t> index = menu_model_.GetIndexOfCommandId(command_id);
if (!index.has_value())
return;
menu_model_.RemoveItemAt(index.value());
if (toolkit_delegate_)
toolkit_delegate_->RebuildMenu();
}
// Removes separators so that if there are two separators next to each other,
// only one of them remains.
void RenderViewContextMenuBase::RemoveAdjacentSeparators() {
size_t num_items = menu_model_.GetItemCount();
for (size_t index = num_items; index > 1; --index) {
ui::MenuModel::ItemType curr_type = menu_model_.GetTypeAt(index - 1);
ui::MenuModel::ItemType prev_type = menu_model_.GetTypeAt(index - 2);
if (curr_type == ui::MenuModel::ItemType::TYPE_SEPARATOR &&
prev_type == ui::MenuModel::ItemType::TYPE_SEPARATOR) {
// We found adjacent separators, remove the one at the bottom.
menu_model_.RemoveItemAt(index - 1);
}
}
if (toolkit_delegate_)
toolkit_delegate_->RebuildMenu();
}
void RenderViewContextMenuBase::RemoveSeparatorBeforeMenuItem(int command_id) {
absl::optional<size_t> index = menu_model_.GetIndexOfCommandId(command_id);
// Ignore if command not found or if it's the first menu item.
if (!index.has_value() || index == size_t{0})
return;
ui::MenuModel::ItemType prev_type = menu_model_.GetTypeAt(index.value() - 1);
if (prev_type != ui::MenuModel::ItemType::TYPE_SEPARATOR)
return;
menu_model_.RemoveItemAt(index.value() - 1);
if (toolkit_delegate_)
toolkit_delegate_->RebuildMenu();
}
// TODO(crbug.com/1393234): This method returns the RenderViewHost associated
// with the primary main frame. Using this in the presence of out of process
// iframes is generally incorrect, and the use of RenderViewHost itself is
// deprecated. Callers should use GetRenderFrameHost() instead.
RenderViewHost* RenderViewContextMenuBase::GetRenderViewHost() const {
return source_web_contents_->GetPrimaryMainFrame()->GetRenderViewHost();
}
WebContents* RenderViewContextMenuBase::GetWebContents() const {
return source_web_contents_;
}
BrowserContext* RenderViewContextMenuBase::GetBrowserContext() const {
return browser_context_;
}
bool RenderViewContextMenuBase::AppendCustomItems() {
size_t total_items = 0;
AddCustomItemsToMenu(params_.custom_items, 0, &total_items, &custom_submenus_,
this, &menu_model_);
return total_items > 0;
}
bool RenderViewContextMenuBase::IsCommandIdKnown(
int id,
bool* enabled) const {
// If this command is added by one of our observers, we dispatch
// it to the observer.
for (auto& observer : observers_) {
if (observer.IsCommandIdSupported(id)) {
*enabled = observer.IsCommandIdEnabled(id);
return true;
}
}
// Custom items.
if (IsContentCustomCommandId(id)) {
*enabled = IsCustomItemEnabled(id);
return true;
}
return false;
}
// Menu delegate functions -----------------------------------------------------
bool RenderViewContextMenuBase::IsCommandIdChecked(int id) const {
// If this command is is added by one of our observers, we dispatch it to the
// observer.
for (auto& observer : observers_) {
if (observer.IsCommandIdSupported(id))
return observer.IsCommandIdChecked(id);
}
// Custom items.
if (IsContentCustomCommandId(id))
return IsCustomItemChecked(id);
return false;
}
void RenderViewContextMenuBase::ExecuteCommand(int id, int event_flags) {
command_executed_ = true;
RecordUsedItem(id);
// Notify all observers the command to be executed.
for (auto& observer : observers_)
observer.CommandWillBeExecuted(id);
// If this command is is added by one of our observers, we dispatch
// it to the observer.
for (auto& observer : observers_) {
if (observer.IsCommandIdSupported(id))
return observer.ExecuteCommand(id);
}
// Process custom actions range.
if (IsContentCustomCommandId(id)) {
unsigned action = id - content_context_custom_first;
const GURL& link_followed = params_.link_followed;
#if BUILDFLAG(ENABLE_PLUGINS)
HandleAuthorizeAllPlugins();
#endif
source_web_contents_->ExecuteCustomContextMenuCommand(action,
link_followed);
return;
}
command_executed_ = false;
}
void RenderViewContextMenuBase::OnMenuWillShow(ui::SimpleMenuModel* source) {
for (size_t i = 0; i < source->GetItemCount(); ++i) {
if (source->IsVisibleAt(i) &&
source->GetTypeAt(i) != ui::MenuModel::TYPE_SEPARATOR) {
RecordShownItem(source->GetCommandIdAt(i),
source->GetTypeAt(i) == ui::MenuModel::TYPE_SUBMENU);
}
}
// Ignore notifications from submenus.
if (source != &menu_model_)
return;
source_web_contents_->SetShowingContextMenu(true);
NotifyMenuShown();
}
void RenderViewContextMenuBase::MenuClosed(ui::SimpleMenuModel* source) {
// Ignore notifications from submenus.
if (source != &menu_model_)
return;
source_web_contents_->SetShowingContextMenu(false);
source_web_contents_->NotifyContextMenuClosed(params_.link_followed);
for (auto& observer : observers_) {
observer.OnMenuClosed();
}
}
RenderFrameHost* RenderViewContextMenuBase::GetRenderFrameHost() const {
return RenderFrameHost::FromID(render_process_id_, render_frame_id_);
}
// Controller functions --------------------------------------------------------
void RenderViewContextMenuBase::OpenURL(const GURL& url,
const GURL& referring_url,
const url::Origin& initiator,
WindowOpenDisposition disposition,
ui::PageTransition transition) {
OpenURLWithExtraHeaders(url, referring_url, initiator, disposition,
transition, "" /* extra_headers */,
true /* started_from_context_menu */);
}
void RenderViewContextMenuBase::OpenURLWithExtraHeaders(
const GURL& url,
const GURL& referring_url,
const url::Origin& initiator,
WindowOpenDisposition disposition,
ui::PageTransition transition,
const std::string& extra_headers,
bool started_from_context_menu) {
content::OpenURLParams open_url_params = GetOpenURLParamsWithExtraHeaders(
url, referring_url, initiator, disposition, transition, extra_headers,
started_from_context_menu);
source_web_contents_->OpenURL(open_url_params);
}
content::OpenURLParams
RenderViewContextMenuBase::GetOpenURLParamsWithExtraHeaders(
const GURL& url,
const GURL& referring_url,
const url::Origin& initiator,
WindowOpenDisposition disposition,
ui::PageTransition transition,
const std::string& extra_headers,
bool started_from_context_menu) {
// Do not send the referrer url to OTR windows. We still need the
// |referring_url| to populate the |initiator_origin| below for browser UI.
GURL referrer_url;
if (disposition != WindowOpenDisposition::OFF_THE_RECORD) {
referrer_url = referring_url.GetAsReferrer();
}
content::Referrer referrer = content::Referrer::SanitizeForRequest(
url, content::Referrer(referrer_url, params_.referrer_policy));
if (params_.link_url == url &&
disposition != WindowOpenDisposition::OFF_THE_RECORD) {
params_.link_followed = url;
}
OpenURLParams open_url_params(url, referrer, disposition, transition, false,
started_from_context_menu);
if (!extra_headers.empty())
open_url_params.extra_headers = extra_headers;
open_url_params.source_render_process_id = render_process_id_;
open_url_params.source_render_frame_id = render_frame_id_;
open_url_params.initiator_frame_token = render_frame_token_;
open_url_params.initiator_process_id = render_process_id_;
open_url_params.initiator_origin = initiator;
open_url_params.source_site_instance = site_instance_;
if (disposition != WindowOpenDisposition::OFF_THE_RECORD)
open_url_params.impression = params_.impression;
return open_url_params;
}
bool RenderViewContextMenuBase::IsCustomItemChecked(int id) const {
return IsCustomItemCheckedInternal(params_.custom_items, id);
}
bool RenderViewContextMenuBase::IsCustomItemEnabled(int id) const {
return IsCustomItemEnabledInternal(params_.custom_items, id);
}
|