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