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
|
// Copyright (c) 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/browser/ui/webui/uber/uber_ui.h"
#include "base/stl_util.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h"
#include "chrome/browser/ui/webui/extensions/extensions_ui.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/chrome_manifest_url_handlers.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/chromium_strings.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/extension_set.h"
#include "grit/browser_resources.h"
using content::NavigationController;
using content::NavigationEntry;
using content::RenderViewHost;
using content::WebContents;
namespace {
content::WebUIDataSource* CreateUberHTMLSource() {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIUberHost);
source->SetJsonPath("strings.js");
source->AddResourcePath("uber.js", IDR_UBER_JS);
source->AddResourcePath("uber_utils.js", IDR_UBER_UTILS_JS);
source->SetDefaultResource(IDR_UBER_HTML);
source->OverrideContentSecurityPolicyFrameSrc("frame-src chrome:;");
// Hack alert: continue showing "Loading..." until a real title is set.
source->AddLocalizedString("pageTitle", IDS_TAB_LOADING_TITLE);
source->AddString("extensionsFrameURL", chrome::kChromeUIExtensionsFrameURL);
source->AddString("extensionsHost", chrome::kChromeUIExtensionsHost);
source->AddString("helpFrameURL", chrome::kChromeUIHelpFrameURL);
source->AddString("helpHost", chrome::kChromeUIHelpHost);
source->AddString("historyFrameURL", chrome::kChromeUIHistoryFrameURL);
source->AddString("historyHost", chrome::kChromeUIHistoryHost);
source->AddString("settingsFrameURL", chrome::kChromeUISettingsFrameURL);
source->AddString("settingsHost", chrome::kChromeUISettingsHost);
return source;
}
// Determines whether the user has an active extension of the given type.
bool HasExtensionType(Profile* profile, const std::string& extension_type) {
const extensions::ExtensionSet& extension_set =
extensions::ExtensionRegistry::Get(profile)->enabled_extensions();
for (extensions::ExtensionSet::const_iterator iter = extension_set.begin();
iter != extension_set.end(); ++iter) {
const extensions::URLOverrides::URLOverrideMap& map =
extensions::URLOverrides::GetChromeURLOverrides(iter->get());
if (ContainsKey(map, extension_type))
return true;
}
return false;
}
content::WebUIDataSource* CreateUberFrameHTMLSource(Profile* profile) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIUberFrameHost);
source->SetJsonPath("strings.js");
source->AddResourcePath("uber_frame.js", IDR_UBER_FRAME_JS);
source->SetDefaultResource(IDR_UBER_FRAME_HTML);
// TODO(jhawkins): Attempt to get rid of IDS_SHORT_PRODUCT_OS_NAME.
#if defined(OS_CHROMEOS)
source->AddLocalizedString("shortProductName", IDS_SHORT_PRODUCT_OS_NAME);
#else
source->AddLocalizedString("shortProductName", IDS_SHORT_PRODUCT_NAME);
#endif // defined(OS_CHROMEOS)
// Group settings and help separately if settings in a window is enabled.
std::string settings_group("settings_group");
std::string other_group(
::switches::SettingsWindowEnabled() ? "other_group" : "settings_group");
source->AddString("extensionsHost", chrome::kChromeUIExtensionsHost);
source->AddLocalizedString("extensionsDisplayName",
IDS_MANAGE_EXTENSIONS_SETTING_WINDOWS_TITLE);
source->AddString("extensionsGroup", other_group);
source->AddString("helpHost", chrome::kChromeUIHelpHost);
source->AddLocalizedString("helpDisplayName", IDS_ABOUT_TITLE);
source->AddString("helpGroup", settings_group);
source->AddString("historyHost", chrome::kChromeUIHistoryHost);
source->AddLocalizedString("historyDisplayName", IDS_HISTORY_TITLE);
source->AddString("historyGroup", other_group);
source->AddString("settingsHost", chrome::kChromeUISettingsHost);
source->AddLocalizedString("settingsDisplayName", IDS_SETTINGS_TITLE);
source->AddString("settingsGroup", settings_group);
bool overridesHistory =
HasExtensionType(profile, chrome::kChromeUIHistoryHost);
source->AddString("overridesHistory", overridesHistory ? "yes" : "no");
source->DisableDenyXFrameOptions();
source->OverrideContentSecurityPolicyFrameSrc("frame-src chrome:;");
return source;
}
} // namespace
UberUI::UberUI(content::WebUI* web_ui) : WebUIController(web_ui) {
Profile* profile = Profile::FromWebUI(web_ui);
content::WebUIDataSource::Add(profile, CreateUberHTMLSource());
RegisterSubpage(chrome::kChromeUIExtensionsFrameURL,
chrome::kChromeUIExtensionsHost);
RegisterSubpage(chrome::kChromeUIHelpFrameURL,
chrome::kChromeUIHelpHost);
RegisterSubpage(chrome::kChromeUIHistoryFrameURL,
chrome::kChromeUIHistoryHost);
RegisterSubpage(chrome::kChromeUISettingsFrameURL,
chrome::kChromeUISettingsHost);
RegisterSubpage(chrome::kChromeUIUberFrameURL,
chrome::kChromeUIUberHost);
}
UberUI::~UberUI() {
STLDeleteValues(&sub_uis_);
}
void UberUI::RegisterSubpage(const std::string& page_url,
const std::string& page_host) {
GURL page_gurl(page_url);
content::WebUI* webui = web_ui()->GetWebContents()->CreateWebUI(page_gurl);
webui->OverrideJavaScriptFrame(page_host);
sub_uis_[page_url] = webui;
}
content::WebUI* UberUI::GetSubpage(const std::string& page_url) {
if (!ContainsKey(sub_uis_, page_url))
return NULL;
return sub_uis_[page_url];
}
void UberUI::RenderViewCreated(RenderViewHost* render_view_host) {
for (SubpageMap::iterator iter = sub_uis_.begin(); iter != sub_uis_.end();
++iter) {
iter->second->GetController()->RenderViewCreated(render_view_host);
}
}
void UberUI::RenderViewReused(RenderViewHost* render_view_host) {
for (SubpageMap::iterator iter = sub_uis_.begin(); iter != sub_uis_.end();
++iter) {
iter->second->GetController()->RenderViewReused(render_view_host);
}
}
bool UberUI::OverrideHandleWebUIMessage(const GURL& source_url,
const std::string& message,
const base::ListValue& args) {
// Find the appropriate subpage and forward the message.
SubpageMap::iterator subpage = sub_uis_.find(source_url.GetOrigin().spec());
if (subpage == sub_uis_.end()) {
// The message was sent from the uber page itself.
DCHECK_EQ(std::string(chrome::kChromeUIUberHost), source_url.host());
return false;
}
// The message was sent from a subpage.
// TODO(jam) fix this to use interface
// return subpage->second->GetController()->OverrideHandleWebUIMessage(
// source_url, message, args);
subpage->second->ProcessWebUIMessage(source_url, message, args);
return true;
}
// UberFrameUI
UberFrameUI::UberFrameUI(content::WebUI* web_ui) : WebUIController(web_ui) {
Profile* profile = Profile::FromWebUI(web_ui);
content::WebUIDataSource::Add(profile, CreateUberFrameHTMLSource(profile));
// Register as an observer for when extensions are loaded and unloaded.
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
content::Source<Profile>(profile));
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
content::Source<Profile>(profile));
}
UberFrameUI::~UberFrameUI() {
}
void UberFrameUI::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
// We listen for notifications that indicate an extension has been loaded
// (i.e., has been installed and/or enabled) or unloaded (i.e., has been
// uninstalled and/or disabled). If one of these events has occurred, then
// we must update the behavior of the History navigation element so that
// it opens the history extension if one is installed and enabled or
// opens the default history page if one is uninstalled or disabled.
case extensions::NOTIFICATION_EXTENSION_LOADED_DEPRECATED:
case extensions::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED: {
Profile* profile = Profile::FromWebUI(web_ui());
bool overrides_history =
HasExtensionType(profile, chrome::kChromeUIHistoryHost);
web_ui()->CallJavascriptFunction(
"uber_frame.setNavigationOverride",
base::StringValue(chrome::kChromeUIHistoryHost),
base::StringValue(overrides_history ? "yes" : "no"));
break;
}
default:
NOTREACHED();
}
}
|