2017-01-17 14:23:13 +00:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/atom_web_ui_controller_factory.h"
|
2017-01-17 14:23:13 +00:00
|
|
|
|
2017-01-18 17:53:54 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-17 17:10:15 +00:00
|
|
|
#include "base/strings/string_split.h"
|
2017-01-18 17:53:54 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2017-07-14 04:09:14 +00:00
|
|
|
#include "net/base/escape.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/ui/webui/pdf_viewer_ui.h"
|
|
|
|
#include "shell/common/atom_constants.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-17 14:23:13 +00:00
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/ui/devtools_ui.h"
|
2018-10-19 13:50:30 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2017-01-17 14:23:13 +00:00
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char kChromeUIDevToolsBundledHost[] = "devtools";
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-01-17 14:23:13 +00:00
|
|
|
// static
|
|
|
|
AtomWebUIControllerFactory* AtomWebUIControllerFactory::GetInstance() {
|
|
|
|
return base::Singleton<AtomWebUIControllerFactory>::get();
|
|
|
|
}
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
AtomWebUIControllerFactory::AtomWebUIControllerFactory() = default;
|
2017-01-17 14:23:13 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
AtomWebUIControllerFactory::~AtomWebUIControllerFactory() = default;
|
2017-01-17 14:23:13 +00:00
|
|
|
|
|
|
|
content::WebUI::TypeID AtomWebUIControllerFactory::GetWebUIType(
|
|
|
|
content::BrowserContext* browser_context,
|
2019-07-03 01:22:09 +00:00
|
|
|
const GURL& url) {
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-02-03 09:36:53 +00:00
|
|
|
if (url.host() == kPdfViewerUIHost) {
|
2017-01-17 14:23:13 +00:00
|
|
|
return const_cast<AtomWebUIControllerFactory*>(this);
|
|
|
|
}
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2018-10-19 13:50:30 +00:00
|
|
|
if (url.host() == kChromeUIDevToolsBundledHost) {
|
|
|
|
return const_cast<AtomWebUIControllerFactory*>(this);
|
|
|
|
}
|
2017-01-17 14:23:13 +00:00
|
|
|
|
|
|
|
return content::WebUI::kNoWebUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AtomWebUIControllerFactory::UseWebUIForURL(
|
|
|
|
content::BrowserContext* browser_context,
|
2019-07-03 01:22:09 +00:00
|
|
|
const GURL& url) {
|
2017-01-17 14:23:13 +00:00
|
|
|
return GetWebUIType(browser_context, url) != content::WebUI::kNoWebUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AtomWebUIControllerFactory::UseWebUIBindingsForURL(
|
|
|
|
content::BrowserContext* browser_context,
|
2019-07-03 01:22:09 +00:00
|
|
|
const GURL& url) {
|
2017-01-17 14:23:13 +00:00
|
|
|
return UseWebUIForURL(browser_context, url);
|
|
|
|
}
|
|
|
|
|
2018-10-02 19:11:56 +00:00
|
|
|
std::unique_ptr<content::WebUIController>
|
2017-01-17 14:23:13 +00:00
|
|
|
AtomWebUIControllerFactory::CreateWebUIControllerForURL(content::WebUI* web_ui,
|
2019-07-03 01:22:09 +00:00
|
|
|
const GURL& url) {
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-02-03 09:36:53 +00:00
|
|
|
if (url.host() == kPdfViewerUIHost) {
|
2017-01-17 17:10:15 +00:00
|
|
|
base::StringPairs toplevel_params;
|
|
|
|
base::SplitStringIntoKeyValuePairs(url.query(), '=', '&', &toplevel_params);
|
2018-02-14 08:21:46 +00:00
|
|
|
std::string src;
|
2017-07-14 04:09:14 +00:00
|
|
|
|
|
|
|
const net::UnescapeRule::Type unescape_rules =
|
2018-04-18 01:55:30 +00:00
|
|
|
net::UnescapeRule::SPACES | net::UnescapeRule::PATH_SEPARATORS |
|
|
|
|
net::UnescapeRule::URL_SPECIAL_CHARS_EXCEPT_PATH_SEPARATORS |
|
|
|
|
net::UnescapeRule::REPLACE_PLUS_WITH_SPACE;
|
2017-07-14 04:09:14 +00:00
|
|
|
|
2017-01-17 17:10:15 +00:00
|
|
|
for (const auto& param : toplevel_params) {
|
2017-02-27 06:10:49 +00:00
|
|
|
if (param.first == kPdfPluginSrc) {
|
2017-07-14 04:09:14 +00:00
|
|
|
src = net::UnescapeURLComponent(param.second, unescape_rules);
|
2017-01-17 17:10:15 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-08 00:12:52 +00:00
|
|
|
if (url.has_ref()) {
|
|
|
|
src = src + '#' + url.ref();
|
|
|
|
}
|
2017-01-17 14:23:13 +00:00
|
|
|
auto browser_context = web_ui->GetWebContents()->GetBrowserContext();
|
2017-02-27 06:10:49 +00:00
|
|
|
return new PdfViewerUI(browser_context, web_ui, src);
|
2017-01-17 14:23:13 +00:00
|
|
|
}
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2018-10-19 13:50:30 +00:00
|
|
|
if (url.host() == kChromeUIDevToolsBundledHost) {
|
|
|
|
auto* browser_context = web_ui->GetWebContents()->GetBrowserContext();
|
|
|
|
return std::make_unique<DevToolsUI>(browser_context, web_ui);
|
|
|
|
}
|
2018-10-02 19:11:56 +00:00
|
|
|
return std::unique_ptr<content::WebUIController>();
|
2017-01-17 14:23:13 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|