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
|
// 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 "extensions/browser/guest_view/extension_options/extension_options_guest.h"
#include <memory>
#include <string>
#include <utility>
#include "base/memory/ptr_util.h"
#include "base/values.h"
#include "components/crx_file/id_util.h"
#include "components/guest_view/browser/guest_view_event.h"
#include "components/guest_view/browser/guest_view_manager.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/site_instance.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_features.h"
#include "extensions/browser/api/extensions_api_client.h"
#include "extensions/browser/bad_message.h"
#include "extensions/browser/extension_function_dispatcher.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/guest_view/extension_options/extension_options_constants.h"
#include "extensions/browser/guest_view/extension_options/extension_options_guest_delegate.h"
#include "extensions/common/api/extension_options_internal.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_handlers/options_page_info.h"
#include "extensions/strings/grit/extensions_strings.h"
using content::WebContents;
using guest_view::GuestViewBase;
using guest_view::GuestViewEvent;
namespace extensions {
// static
const char ExtensionOptionsGuest::Type[] = "extensionoptions";
const guest_view::GuestViewHistogramValue
ExtensionOptionsGuest::HistogramValue =
guest_view::GuestViewHistogramValue::kExtensionOptions;
ExtensionOptionsGuest::ExtensionOptionsGuest(
content::RenderFrameHost* owner_rfh)
: GuestView<ExtensionOptionsGuest>(owner_rfh),
extension_options_guest_delegate_(
extensions::ExtensionsAPIClient::Get()
->CreateExtensionOptionsGuestDelegate(this)) {}
ExtensionOptionsGuest::~ExtensionOptionsGuest() = default;
// static
std::unique_ptr<GuestViewBase> ExtensionOptionsGuest::Create(
content::RenderFrameHost* owner_rfh) {
return base::WrapUnique(new ExtensionOptionsGuest(owner_rfh));
}
void ExtensionOptionsGuest::CreateInnerPage(
std::unique_ptr<GuestViewBase> owned_this,
scoped_refptr<content::SiteInstance> site_instance,
const base::Value::Dict& create_params,
GuestPageCreatedCallback callback) {
// Get the extension's base URL.
const std::string* extension_id =
create_params.FindString(extensionoptions::kExtensionId);
if (!extension_id || !crx_file::id_util::IdIsValid(*extension_id)) {
RejectGuestCreation(std::move(owned_this), std::move(callback));
return;
}
GURL extension_url =
extensions::Extension::GetBaseURLFromExtensionId(*extension_id);
if (!extension_url.is_valid()) {
RejectGuestCreation(std::move(owned_this), std::move(callback));
return;
}
// Get the options page URL for later use.
extensions::ExtensionRegistry* registry =
extensions::ExtensionRegistry::Get(browser_context());
const extensions::Extension* extension =
registry->enabled_extensions().GetByID(*extension_id);
if (!extension) {
// The ID was valid but the extension didn't exist. Typically this will
// happen when an extension is disabled.
RejectGuestCreation(std::move(owned_this), std::move(callback));
return;
}
options_page_ = extensions::OptionsPageInfo::GetOptionsPage(extension);
if (!options_page_.is_valid()) {
RejectGuestCreation(std::move(owned_this), std::move(callback));
return;
}
if (base::FeatureList::IsEnabled(features::kGuestViewMPArch)) {
std::move(callback).Run(
std::move(owned_this),
content::GuestPageHolder::Create(owner_web_contents(),
content::SiteInstance::CreateForURL(
browser_context(), extension_url),
GetGuestPageHolderDelegateWeakPtr()));
} else {
// Create a WebContents using the extension URL. The options page's
// WebContents should live in the same process as its parent extension's
// WebContents, so we can use |extension_url| for creating the SiteInstance.
WebContents::CreateParams params(
browser_context(),
content::SiteInstance::CreateForURL(browser_context(), extension_url));
params.guest_delegate = this;
std::move(callback).Run(std::move(owned_this), WebContents::Create(params));
}
}
void ExtensionOptionsGuest::DidInitialize(
const base::Value::Dict& create_params) {
if (base::FeatureList::IsEnabled(features::kGuestViewMPArch)) {
return;
}
ExtensionsAPIClient::Get()->AttachWebContentsHelpers(web_contents());
GetController().LoadURL(options_page_, content::Referrer(),
ui::PAGE_TRANSITION_LINK, std::string());
}
void ExtensionOptionsGuest::DidAttachToEmbedder() {
if (base::FeatureList::IsEnabled(features::kGuestViewMPArch)) {
GetController().LoadURL(options_page_, content::Referrer(),
ui::PAGE_TRANSITION_LINK, std::string());
}
}
void ExtensionOptionsGuest::MaybeRecreateGuestContents(
content::RenderFrameHost* outer_contents_frame) {
// This situation is not possible for ExtensionOptions.
NOTREACHED();
}
void ExtensionOptionsGuest::GuestViewDidStopLoading() {
DispatchEventToView(std::make_unique<GuestViewEvent>(
api::extension_options_internal::OnLoad::kEventName,
base::Value::Dict()));
}
const char* ExtensionOptionsGuest::GetAPINamespace() const {
return extensionoptions::kAPINamespace;
}
int ExtensionOptionsGuest::GetTaskPrefix() const {
return IDS_EXTENSION_TASK_MANAGER_EXTENSIONOPTIONS_TAG_PREFIX;
}
bool ExtensionOptionsGuest::IsPreferredSizeModeEnabled() const {
return true;
}
void ExtensionOptionsGuest::OnPreferredSizeChanged(const gfx::Size& pref_size) {
api::extension_options_internal::PreferredSizeChangedOptions options;
// Convert the size from physical pixels to logical pixels.
options.width = PhysicalPixelsToLogicalPixels(pref_size.width());
options.height = PhysicalPixelsToLogicalPixels(pref_size.height());
DispatchEventToView(std::make_unique<GuestViewEvent>(
api::extension_options_internal::OnPreferredSizeChanged::kEventName,
options.ToValue()));
}
WebContents* ExtensionOptionsGuest::AddNewContents(
WebContents* source,
std::unique_ptr<WebContents> new_contents,
const GURL& target_url,
WindowOpenDisposition disposition,
const blink::mojom::WindowFeatures& window_features,
bool user_gesture,
bool* was_blocked) {
CHECK(!base::FeatureList::IsEnabled(features::kGuestViewMPArch));
// |new_contents| is potentially used as a non-embedded WebContents, so we
// check that it isn't a guest. The only place that this method should be
// called is WebContentsImpl::ViewSource - which generates a non-guest
// WebContents.
DCHECK(!ExtensionOptionsGuest::FromWebContents(new_contents.get()));
if (!attached() || !embedder_web_contents()->GetDelegate()) {
return nullptr;
}
embedder_web_contents()->GetDelegate()->AddNewContents(
source, std::move(new_contents), target_url, disposition, window_features,
user_gesture, was_blocked);
return nullptr;
}
WebContents* ExtensionOptionsGuest::OpenURLFromTab(
WebContents* source,
const content::OpenURLParams& params,
base::OnceCallback<void(content::NavigationHandle&)>
navigation_handle_callback) {
CHECK(!base::FeatureList::IsEnabled(features::kGuestViewMPArch));
if (!extension_options_guest_delegate_) {
return nullptr;
}
// Don't allow external URLs with the CURRENT_TAB disposition be opened in
// this guest view, change the disposition to NEW_FOREGROUND_TAB.
if ((!params.url.SchemeIs(extensions::kExtensionScheme) ||
params.url.host() != options_page_.host()) &&
params.disposition == WindowOpenDisposition::CURRENT_TAB) {
return extension_options_guest_delegate_->OpenURLInNewTab(
content::OpenURLParams(params.url, params.referrer,
params.frame_tree_node_id,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
params.transition, params.is_renderer_initiated),
std::move(navigation_handle_callback));
}
return extension_options_guest_delegate_->OpenURLInNewTab(
params, std::move(navigation_handle_callback));
}
void ExtensionOptionsGuest::CloseContents(WebContents* source) {
CHECK(!base::FeatureList::IsEnabled(features::kGuestViewMPArch));
GuestClose();
}
bool ExtensionOptionsGuest::GuestHandleContextMenu(
content::RenderFrameHost& render_frame_host,
const content::ContextMenuParams& params) {
CHECK(base::FeatureList::IsEnabled(features::kGuestViewMPArch));
return extension_options_guest_delegate_ &&
extension_options_guest_delegate_->HandleContextMenu(render_frame_host,
params);
}
void ExtensionOptionsGuest::GuestClose() {
DispatchEventToView(std::make_unique<GuestViewEvent>(
api::extension_options_internal::OnClose::kEventName,
base::Value::Dict()));
}
bool ExtensionOptionsGuest::HandleContextMenu(
content::RenderFrameHost& render_frame_host,
const content::ContextMenuParams& params) {
CHECK(!base::FeatureList::IsEnabled(features::kGuestViewMPArch));
if (!extension_options_guest_delegate_) {
return false;
}
return extension_options_guest_delegate_->HandleContextMenu(render_frame_host,
params);
}
bool ExtensionOptionsGuest::ShouldResumeRequestsForCreatedWindow() {
// Not reached due to the use of `CreateCustomWebContents`.
NOTREACHED();
}
bool ExtensionOptionsGuest::IsWebContentsCreationOverridden(
content::RenderFrameHost* opener,
content::SiteInstance* source_site_instance,
content::mojom::WindowContainerType window_container_type,
const GURL& opener_url,
const std::string& frame_name,
const GURL& target_url) {
CHECK(!base::FeatureList::IsEnabled(features::kGuestViewMPArch));
// This method handles opening links from within the guest. Since this guest
// view is used for displaying embedded extension options, we want any
// external links to be opened in a new tab, not in a new guest view so we
// override creation.
return true;
}
WebContents* ExtensionOptionsGuest::CreateCustomWebContents(
content::RenderFrameHost* opener,
content::SiteInstance* source_site_instance,
bool is_renderer_initiated,
const GURL& opener_url,
const std::string& frame_name,
const GURL& target_url,
const content::StoragePartitionConfig& partition_config,
content::SessionStorageNamespace* session_storage_namespace) {
CHECK(!base::FeatureList::IsEnabled(features::kGuestViewMPArch));
// To get links out of the guest view, we just open the URL in a new tab.
// TODO(ericzeng): Open the tab in the background if the click was a
// ctrl-click or middle mouse button click
if (extension_options_guest_delegate_) {
extension_options_guest_delegate_->OpenURLInNewTab(
content::OpenURLParams(target_url, content::Referrer(),
WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_LINK, false),
/*navigation_handle_callback=*/{});
}
// Returning nullptr here ensures that the guest-view can never get a
// reference to the new WebContents. It effectively forces a new browsing
// instance for all popups from an extensions guest.
return nullptr;
}
void ExtensionOptionsGuest::DidFinishNavigation(
content::NavigationHandle* navigation_handle) {
if (!IsObservedNavigationWithinGuestMainFrame(navigation_handle) ||
!navigation_handle->HasCommitted() || !attached()) {
return;
}
GetZoomController()->SetZoomMode(zoom::ZoomController::ZOOM_MODE_ISOLATED);
SetGuestZoomLevelToMatchEmbedder();
if (!url::IsSameOriginWith(navigation_handle->GetURL(), options_page_)) {
bad_message::ReceivedBadMessage(GetGuestMainFrame()->GetProcess(),
bad_message::EOG_BAD_ORIGIN);
}
}
} // namespace extensions
|