diff options
author | hackademix | 2018-08-18 03:16:54 +0200 |
---|---|---|
committer | hackademix | 2018-08-18 03:20:33 +0200 |
commit | 2f9c5299afe0d612deff7f89c948bb44332f2abf (patch) | |
tree | 343fe4435bef995b4029656563ce6194829ea641 /src/lib/ResponseMetaData.js | |
parent | e959accb70ea00f99fa611c9f1af40e1be5bde92 (diff) | |
download | noscript-2f9c5299afe0d612deff7f89c948bb44332f2abf.tar.gz noscript-2f9c5299afe0d612deff7f89c948bb44332f2abf.tar.xz noscript-2f9c5299afe0d612deff7f89c948bb44332f2abf.zip |
Removed all references to RequestUtil.js and dependancies.
Diffstat (limited to 'src/lib/ResponseMetaData.js')
-rw-r--r-- | src/lib/ResponseMetaData.js | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/lib/ResponseMetaData.js b/src/lib/ResponseMetaData.js deleted file mode 100644 index 0d86745..0000000 --- a/src/lib/ResponseMetaData.js +++ /dev/null @@ -1,54 +0,0 @@ -class ResponseMetaData { - constructor(request) { - let {responseHeaders} = request; - this.headers = {}; - this.contentType = this.contentDisposition = null; - for (let h of responseHeaders) { - if (/^\s*Content-(Type|Disposition)\s*$/i.test(h.name)) { - let propertyName = RegExp.$1; - propertyName = `content${propertyName.charAt(0).toUpperCase()}${propertyName.substring(1).toLowerCase()}`; - this[propertyName] = h.value; - this.headers[propertyName] = h; - } - } - this.forcedUTF8 = false; - } - - get charset() { - let charset = ""; - if (this.contentType) { - let m = this.contentType.match(/;\s*charset\s*=\s*(\S+)/); - if (m) { - charset = m[1]; - } - } - Object.defineProperty(this, "charset", { value: charset, writable: false, configurable: true }); - return charset; - } - - get isUTF8() { - return /^utf-?8$/i.test(this.charset); - } - - forceUTF8() { - if (!(this.forcedUTF8 || this.isUTF8)) { - let h = this.headers.contentType; - if (h) { - h.value = h.value.replace(/;\s*charset\s*=.*|$/, "; charset=utf8"); - this.forcedUTF8 = true; - } // if the header doesn't exist the browser should default to UTF-8 anyway - } - return this.forcedUTF8; - } - - createDecoder() { - if (this.charset) { - try { - return new TextDecoder(this.charset); - } catch (e) { - console.error(e); - } - } - return new TextDecoder("utf-8"); - } -}; |