2017-01-21 14:57:29 +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.
|
|
|
|
|
|
|
|
#include "atom/browser/ui/webui/pdf_viewer_ui.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2017-01-23 11:12:39 +00:00
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#include "atom/browser/stream_manager.h"
|
2017-01-21 14:57:29 +00:00
|
|
|
#include "atom/browser/ui/webui/pdf_viewer_handler.h"
|
2017-02-03 09:36:53 +00:00
|
|
|
#include "atom/common/atom_constants.h"
|
2017-01-21 19:52:23 +00:00
|
|
|
#include "components/pdf/common/pdf_messages.h"
|
2017-01-21 14:57:29 +00:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
|
|
|
#include "content/public/browser/url_data_source.h"
|
2017-01-21 19:52:23 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2017-01-21 14:57:29 +00:00
|
|
|
#include "content/public/common/bindings_policy.h"
|
|
|
|
#include "grit/pdf_viewer_resources_map.h"
|
|
|
|
#include "net/base/mime_util.h"
|
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
std::string PathWithoutParams(const std::string& path) {
|
2017-02-03 09:36:53 +00:00
|
|
|
return GURL(kPdfViewerUIOrigin + path).path().substr(1);
|
2017-01-21 14:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class BundledDataSource : public content::URLDataSource {
|
|
|
|
public:
|
|
|
|
BundledDataSource() {
|
|
|
|
for (size_t i = 0; i < kPdfViewerResourcesSize; ++i) {
|
|
|
|
base::FilePath resource_path =
|
|
|
|
base::FilePath().AppendASCII(kPdfViewerResources[i].name);
|
|
|
|
resource_path = resource_path.NormalizePathSeparators();
|
|
|
|
|
|
|
|
DCHECK(path_to_resource_id_.find(resource_path) ==
|
|
|
|
path_to_resource_id_.end());
|
|
|
|
path_to_resource_id_[resource_path] = kPdfViewerResources[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// content::URLDataSource implementation.
|
2017-02-03 09:36:53 +00:00
|
|
|
std::string GetSource() const override { return kPdfViewerUIHost; }
|
2017-01-21 14:57:29 +00:00
|
|
|
|
|
|
|
void StartDataRequest(const std::string& path,
|
|
|
|
int render_process_id,
|
|
|
|
int render_frame_id,
|
|
|
|
const GotDataCallback& callback) override {
|
|
|
|
std::string filename = PathWithoutParams(path);
|
2017-02-01 15:42:17 +00:00
|
|
|
auto entry =
|
2017-01-23 22:49:18 +00:00
|
|
|
path_to_resource_id_.find(base::FilePath::FromUTF8Unsafe(filename));
|
|
|
|
|
2017-01-21 14:57:29 +00:00
|
|
|
if (entry != path_to_resource_id_.end()) {
|
|
|
|
int resource_id = entry->second;
|
|
|
|
const ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
|
|
|
|
callback.Run(rb.LoadDataResourceBytes(resource_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetMimeType(const std::string& path) const override {
|
|
|
|
std::string filename = PathWithoutParams(path);
|
|
|
|
std::string mime_type;
|
2017-01-26 07:15:00 +00:00
|
|
|
net::GetMimeTypeFromFile(
|
|
|
|
base::FilePath::FromUTF8Unsafe(filename), &mime_type);
|
2017-01-21 14:57:29 +00:00
|
|
|
return mime_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ShouldAddContentSecurityPolicy() const override { return false; }
|
|
|
|
|
|
|
|
bool ShouldDenyXFrameOptions() const override { return false; }
|
|
|
|
|
|
|
|
bool ShouldServeMimeTypeAsContentTypeHeader() const override { return true; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
~BundledDataSource() override {}
|
|
|
|
|
|
|
|
// A map from a resource path to the resource ID.
|
|
|
|
std::map<base::FilePath, int> path_to_resource_id_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(BundledDataSource);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
PdfViewerUI::PdfViewerUI(content::BrowserContext* browser_context,
|
|
|
|
content::WebUI* web_ui,
|
2017-01-23 11:12:39 +00:00
|
|
|
const std::string& view_id,
|
|
|
|
const std::string& src)
|
2017-01-23 23:36:30 +00:00
|
|
|
: content::WebUIController(web_ui),
|
|
|
|
content::WebContentsObserver(web_ui->GetWebContents()),
|
|
|
|
src_(src) {
|
2017-01-23 11:12:39 +00:00
|
|
|
auto context = static_cast<AtomBrowserContext*>(browser_context);
|
|
|
|
auto stream_manager = context->stream_manager();
|
|
|
|
stream_ = stream_manager->ReleaseStream(view_id);
|
|
|
|
web_ui->AddMessageHandler(new PdfViewerHandler(stream_.get(), src));
|
2017-01-21 14:57:29 +00:00
|
|
|
content::URLDataSource::Add(browser_context, new BundledDataSource);
|
|
|
|
}
|
|
|
|
|
2017-01-21 19:52:23 +00:00
|
|
|
PdfViewerUI::~PdfViewerUI() {}
|
|
|
|
|
|
|
|
bool PdfViewerUI::OnMessageReceived(
|
|
|
|
const IPC::Message& message,
|
|
|
|
content::RenderFrameHost* render_frame_host) {
|
|
|
|
bool handled = true;
|
|
|
|
IPC_BEGIN_MESSAGE_MAP(PdfViewerUI, message)
|
|
|
|
IPC_MESSAGE_HANDLER(PDFHostMsg_PDFSaveURLAs, OnSaveURLAs)
|
|
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
|
|
IPC_END_MESSAGE_MAP()
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PdfViewerUI::OnSaveURLAs(const GURL& url,
|
|
|
|
const content::Referrer& referrer) {
|
|
|
|
web_contents()->SaveFrame(url, referrer);
|
|
|
|
}
|
|
|
|
|
2017-01-21 14:57:29 +00:00
|
|
|
} // namespace atom
|