1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/browser/browser_url_handler_impl.h"
7 #include "base/strings/string_util.h"
8 #include "content/browser/frame_host/debug_urls.h"
9 #include "content/browser/webui/web_ui_impl.h"
10 #include "content/public/browser/content_browser_client.h"
11 #include "content/public/common/url_constants.h"
16 // Handles rewriting view-source URLs for what we'll actually load.
17 static bool HandleViewSource(GURL
* url
, BrowserContext
* browser_context
) {
18 if (url
->SchemeIs(kViewSourceScheme
)) {
19 // Load the inner URL instead.
20 *url
= GURL(url
->GetContent());
22 // Bug 26129: limit view-source to view the content and not any
23 // other kind of 'active' url scheme like 'javascript' or 'data'.
24 static const char* const default_allowed_sub_schemes
[] = {
28 kChromeDevToolsScheme
,
31 url::kFileSystemScheme
34 // Merge all the schemes for which view-source is allowed by default, with
35 // the WebUI schemes defined by the ContentBrowserClient.
36 std::vector
<std::string
> all_allowed_sub_schemes
;
37 for (size_t i
= 0; i
< arraysize(default_allowed_sub_schemes
); ++i
)
38 all_allowed_sub_schemes
.push_back(default_allowed_sub_schemes
[i
]);
39 GetContentClient()->browser()->GetAdditionalWebUISchemes(
40 &all_allowed_sub_schemes
);
42 bool is_sub_scheme_allowed
= false;
43 for (size_t i
= 0; i
< all_allowed_sub_schemes
.size(); ++i
) {
44 if (url
->SchemeIs(all_allowed_sub_schemes
[i
].c_str())) {
45 is_sub_scheme_allowed
= true;
50 if (!is_sub_scheme_allowed
) {
51 *url
= GURL(url::kAboutBlankURL
);
60 // Turns a non view-source URL into the corresponding view-source URL.
61 static bool ReverseViewSource(GURL
* url
, BrowserContext
* browser_context
) {
62 // No action necessary if the URL is already view-source:
63 if (url
->SchemeIs(kViewSourceScheme
))
65 // Recreate the url with the view-source scheme.
66 *url
= GURL(kViewSourceScheme
+ std::string(":") + url
->spec());
70 static bool DebugURLHandler(GURL
* url
, BrowserContext
* browser_context
) {
71 // Circumvent processing URLs that the renderer process will handle.
72 return IsRendererDebugURL(*url
);
76 BrowserURLHandler
* BrowserURLHandler::GetInstance() {
77 return BrowserURLHandlerImpl::GetInstance();
81 BrowserURLHandler::URLHandler
BrowserURLHandler::null_handler() {
82 // Required for VS2010: http://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair
87 BrowserURLHandlerImpl
* BrowserURLHandlerImpl::GetInstance() {
88 return Singleton
<BrowserURLHandlerImpl
>::get();
91 BrowserURLHandlerImpl::BrowserURLHandlerImpl() :
92 fixup_handler_(nullptr) {
93 AddHandlerPair(&DebugURLHandler
, BrowserURLHandlerImpl::null_handler());
95 GetContentClient()->browser()->BrowserURLHandlerCreated(this);
98 AddHandlerPair(&HandleViewSource
, &ReverseViewSource
);
101 BrowserURLHandlerImpl::~BrowserURLHandlerImpl() {
104 void BrowserURLHandlerImpl::SetFixupHandler(URLHandler handler
) {
105 DCHECK(fixup_handler_
== nullptr);
106 fixup_handler_
= handler
;
109 void BrowserURLHandlerImpl::AddHandlerPair(URLHandler handler
,
110 URLHandler reverse_handler
) {
111 url_handlers_
.push_back(HandlerPair(handler
, reverse_handler
));
114 void BrowserURLHandlerImpl::RewriteURLIfNecessary(
116 BrowserContext
* browser_context
,
117 bool* reverse_on_redirect
) {
118 for (size_t i
= 0; i
< url_handlers_
.size(); ++i
) {
119 URLHandler handler
= *url_handlers_
[i
].first
;
120 if (handler
&& handler(url
, browser_context
)) {
121 *reverse_on_redirect
= (url_handlers_
[i
].second
!= NULL
);
127 void BrowserURLHandlerImpl::FixupURLBeforeRewrite(
129 BrowserContext
* browser_context
) {
131 fixup_handler_(url
, browser_context
);
134 bool BrowserURLHandlerImpl::ReverseURLRewrite(
135 GURL
* url
, const GURL
& original
, BrowserContext
* browser_context
) {
136 for (size_t i
= 0; i
< url_handlers_
.size(); ++i
) {
137 URLHandler reverse_rewriter
= *url_handlers_
[i
].second
;
138 if (reverse_rewriter
) {
139 GURL
test_url(original
);
140 URLHandler handler
= *url_handlers_
[i
].first
;
142 if (reverse_rewriter(url
, browser_context
))
144 } else if (handler(&test_url
, browser_context
)) {
145 return reverse_rewriter(url
, browser_context
);
152 } // namespace content