55 lines
2.1 KiB
JavaScript
55 lines
2.1 KiB
JavaScript
|
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
|
||
|
/*
|
||
|
Copyright 2013 Mozilla Foundation
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
/* globals chrome */
|
||
|
|
||
|
'use strict';
|
||
|
(function ExtensionRouterClosure() {
|
||
|
var VIEWER_URL = chrome.extension.getURL('content/web/viewer.html');
|
||
|
var CRX_BASE_URL = chrome.extension.getURL('/');
|
||
|
|
||
|
// TODO(rob): Use declarativeWebRequest once declared URL-encoding is
|
||
|
// supported, see http://crbug.com/273589
|
||
|
// (or rewrite the query string parser in viewer.js to get it to
|
||
|
// recognize the non-URL-encoded PDF URL.)
|
||
|
chrome.webRequest.onBeforeRequest.addListener(function(details) {
|
||
|
// This listener converts chrome-extension://.../http://...pdf to
|
||
|
// chrome-extension://.../content/web/viewer.html?file=http%3A%2F%2F...pdf
|
||
|
var url = details.url.substring(CRX_BASE_URL.length);
|
||
|
var matchingUrl = /^(?:https?|file|ftp|chrome-extension)(:|%3A)/.exec(url);
|
||
|
if (matchingUrl) {
|
||
|
// location.hash is restored when "#" is missing from URL.
|
||
|
url = url.split('#')[0];
|
||
|
if (matchingUrl[1] === ':') {
|
||
|
url = encodeURIComponent(url);
|
||
|
}
|
||
|
url = VIEWER_URL + '?file=' + url;
|
||
|
console.log('Redirecting ' + details.url + ' to ' + url);
|
||
|
return { redirectUrl: url };
|
||
|
}
|
||
|
}, {
|
||
|
types: ['main_frame', 'sub_frame'],
|
||
|
urls: [
|
||
|
CRX_BASE_URL + 'http*', // and https
|
||
|
CRX_BASE_URL + 'file*',
|
||
|
CRX_BASE_URL + 'ftp*',
|
||
|
CRX_BASE_URL + 'chrome-extension*'
|
||
|
]
|
||
|
}, ['blocking']);
|
||
|
console.log('Set up extension URL router.');
|
||
|
})();
|