1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00
This commit is contained in:
Raymond Hill 2014-11-21 10:05:59 -02:00
parent 33969e8b2e
commit 281dc7038e

View File

@ -21,6 +21,7 @@
/* jshint bitwise: false */ /* jshint bitwise: false */
/* global µBlock, YaMD5 */ /* global µBlock, YaMD5 */
'use strict'; 'use strict';
/******************************************************************************/ /******************************************************************************/
@ -202,23 +203,43 @@ var toUrlKey = function(url) {
// Ref: http://www.iana.org/assignments/media-types/media-types.xhtml // Ref: http://www.iana.org/assignments/media-types/media-types.xhtml
// https://github.com/gorhill/uBlock/issues/362
//
// Using http://dev.w3.org/2006/webapi/FileAPI/#enctype logic, at least it's
// something... It looks like this is what the browser should be doing with
// `data:` URI, but it's not happening, so i will do it manually for now.
//
// ...
// 5. If the "getting an encoding" steps above return failure, then set
// encoding to null.
// 6. If encoding is null, then set encoding to utf-8.
var extractMimeType = function(ctin) { var extractMimeType = function(ctin) {
var pos = ctin.indexOf(';'); var pos = ctin.indexOf(';');
return pos === -1 ? ctin.trim() : ctin.slice(0, pos).trim(); var type = pos === -1 ? ctin.trim() : ctin.slice(0, pos).trim();
var charset = pos === -1 ? '' : ctin.slice(pos).trim();
if ( charset !== '' ) {
return type + ';' + charset;
}
// http://en.wikipedia.org/wiki/Internet_media_type#List_of_common_media_types
if ( type.slice(0, 4) === 'text' || /^application\/[a-z-]+script$/.test(type) ) {
return type + ';charset=utf-8';
}
return type;
}; };
/******************************************************************************/ /******************************************************************************/
var metadataExists = function(urlKey) { var metadataExists = function(urlKey) {
return typeof urlKey === 'string' && return typeof urlKey === 'string' &&
metadata.urlKeyToHashMap.hasOwnProperty(urlKey); metadata.urlKeyToHashMap.hasOwnProperty(urlKey);
}; };
/******************************************************************************/ /******************************************************************************/
var contentExists = function(hash) { var contentExists = function(hash) {
return typeof hash === 'string' && return typeof hash === 'string' &&
hashToContentMap.hasOwnProperty(hash); hashToContentMap.hasOwnProperty(hash);
}; };
/******************************************************************************/ /******************************************************************************/
@ -362,6 +383,7 @@ var cacheAsset = function(url) {
if ( this.status !== 200 ) { if ( this.status !== 200 ) {
return; return;
} }
//console.log('headers for "%s" = %o', url, this.getAllResponseHeaders());
var mimeType = extractMimeType(this.getResponseHeader('Content-Type')); var mimeType = extractMimeType(this.getResponseHeader('Content-Type'));
var uint8Buffer = new Uint8Array(this.response); var uint8Buffer = new Uint8Array(this.response);
var yamd5 = new YaMD5(); var yamd5 = new YaMD5();