whatwg-mimetype-umd

Code - github/jsdom/whatwg-mimetype

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/486089/1320060/whatwg-mimetype-umd.js

  1. // ==UserScript==
  2. // @name whatwg-mimetype-umd
  3. // @namespace flomk.userscripts
  4. // @version 4.0.0
  5. // @description Code - github/jsdom/whatwg-mimetype
  6. // @match *
  7. // @license MIT
  8. // ==/UserScript==
  9.  
  10. (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.whatwgMimetype = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
  11. "use strict";
  12. const {
  13. asciiLowercase,
  14. solelyContainsHTTPTokenCodePoints,
  15. soleyContainsHTTPQuotedStringTokenCodePoints
  16. } = require("./utils.js");
  17. module.exports = class MIMETypeParameters {
  18. constructor(map) {
  19. this._map = map;
  20. }
  21. get size() {
  22. return this._map.size;
  23. }
  24. get(name) {
  25. name = asciiLowercase(String(name));
  26. return this._map.get(name);
  27. }
  28. has(name) {
  29. name = asciiLowercase(String(name));
  30. return this._map.has(name);
  31. }
  32. set(name, value) {
  33. name = asciiLowercase(String(name));
  34. value = String(value);
  35. if (!solelyContainsHTTPTokenCodePoints(name)) {
  36. throw new Error(`Invalid MIME type parameter name "${name}": only HTTP token code points are valid.`);
  37. }
  38. if (!soleyContainsHTTPQuotedStringTokenCodePoints(value)) {
  39. throw new Error(`Invalid MIME type parameter value "${value}": only HTTP quoted-string token code points are ` +
  40. `valid.`);
  41. }
  42. return this._map.set(name, value);
  43. }
  44. clear() {
  45. this._map.clear();
  46. }
  47. delete(name) {
  48. name = asciiLowercase(String(name));
  49. return this._map.delete(name);
  50. }
  51. forEach(callbackFn, thisArg) {
  52. this._map.forEach(callbackFn, thisArg);
  53. }
  54. keys() {
  55. return this._map.keys();
  56. }
  57. values() {
  58. return this._map.values();
  59. }
  60. entries() {
  61. return this._map.entries();
  62. }
  63. [Symbol.iterator]() {
  64. return this._map[Symbol.iterator]();
  65. }
  66. };
  67. },{"./utils.js":4}],2:[function(require,module,exports){
  68. "use strict";
  69. const {
  70. removeLeadingAndTrailingHTTPWhitespace,
  71. removeTrailingHTTPWhitespace,
  72. isHTTPWhitespaceChar,
  73. solelyContainsHTTPTokenCodePoints,
  74. soleyContainsHTTPQuotedStringTokenCodePoints,
  75. asciiLowercase,
  76. collectAnHTTPQuotedString
  77. } = require("./utils.js");
  78. module.exports = input => {
  79. input = removeLeadingAndTrailingHTTPWhitespace(input);
  80. let position = 0;
  81. let type = "";
  82. while (position < input.length && input[position] !== "/") {
  83. type += input[position];
  84. ++position;
  85. }
  86. if (type.length === 0 || !solelyContainsHTTPTokenCodePoints(type)) {
  87. return null;
  88. }
  89. if (position >= input.length) {
  90. return null;
  91. }
  92. // Skips past "/"
  93. ++position;
  94. let subtype = "";
  95. while (position < input.length && input[position] !== ";") {
  96. subtype += input[position];
  97. ++position;
  98. }
  99. subtype = removeTrailingHTTPWhitespace(subtype);
  100. if (subtype.length === 0 || !solelyContainsHTTPTokenCodePoints(subtype)) {
  101. return null;
  102. }
  103. const mimeType = {
  104. type: asciiLowercase(type),
  105. subtype: asciiLowercase(subtype),
  106. parameters: new Map()
  107. };
  108. while (position < input.length) {
  109. // Skip past ";"
  110. ++position;
  111. while (isHTTPWhitespaceChar(input[position])) {
  112. ++position;
  113. }
  114. let parameterName = "";
  115. while (position < input.length && input[position] !== ";" && input[position] !== "=") {
  116. parameterName += input[position];
  117. ++position;
  118. }
  119. parameterName = asciiLowercase(parameterName);
  120. if (position < input.length) {
  121. if (input[position] === ";") {
  122. continue;
  123. }
  124. // Skip past "="
  125. ++position;
  126. }
  127. let parameterValue = null;
  128. if (input[position] === "\"") {
  129. [parameterValue, position] = collectAnHTTPQuotedString(input, position);
  130. while (position < input.length && input[position] !== ";") {
  131. ++position;
  132. }
  133. } else {
  134. parameterValue = "";
  135. while (position < input.length && input[position] !== ";") {
  136. parameterValue += input[position];
  137. ++position;
  138. }
  139. parameterValue = removeTrailingHTTPWhitespace(parameterValue);
  140. if (parameterValue === "") {
  141. continue;
  142. }
  143. }
  144. if (parameterName.length > 0 &&
  145. solelyContainsHTTPTokenCodePoints(parameterName) &&
  146. soleyContainsHTTPQuotedStringTokenCodePoints(parameterValue) &&
  147. !mimeType.parameters.has(parameterName)) {
  148. mimeType.parameters.set(parameterName, parameterValue);
  149. }
  150. }
  151. return mimeType;
  152. };
  153. },{"./utils.js":4}],3:[function(require,module,exports){
  154. "use strict";
  155. const { solelyContainsHTTPTokenCodePoints } = require("./utils.js");
  156. module.exports = mimeType => {
  157. let serialization = `${mimeType.type}/${mimeType.subtype}`;
  158. if (mimeType.parameters.size === 0) {
  159. return serialization;
  160. }
  161. for (let [name, value] of mimeType.parameters) {
  162. serialization += ";";
  163. serialization += name;
  164. serialization += "=";
  165. if (!solelyContainsHTTPTokenCodePoints(value) || value.length === 0) {
  166. value = value.replace(/(["\\])/ug, "\\$1");
  167. value = `"${value}"`;
  168. }
  169. serialization += value;
  170. }
  171. return serialization;
  172. };
  173. },{"./utils.js":4}],4:[function(require,module,exports){
  174. "use strict";
  175. exports.removeLeadingAndTrailingHTTPWhitespace = string => {
  176. return string.replace(/^[ \t\n\r]+/u, "").replace(/[ \t\n\r]+$/u, "");
  177. };
  178. exports.removeTrailingHTTPWhitespace = string => {
  179. return string.replace(/[ \t\n\r]+$/u, "");
  180. };
  181. exports.isHTTPWhitespaceChar = char => {
  182. return char === " " || char === "\t" || char === "\n" || char === "\r";
  183. };
  184. exports.solelyContainsHTTPTokenCodePoints = string => {
  185. return /^[-!#$%&'*+.^_`|~A-Za-z0-9]*$/u.test(string);
  186. };
  187. exports.soleyContainsHTTPQuotedStringTokenCodePoints = string => {
  188. return /^[\t\u0020-\u007E\u0080-\u00FF]*$/u.test(string);
  189. };
  190. exports.asciiLowercase = string => {
  191. return string.replace(/[A-Z]/ug, l => l.toLowerCase());
  192. };
  193. // This variant only implements it with the extract-value flag set.
  194. exports.collectAnHTTPQuotedString = (input, position) => {
  195. let value = "";
  196. position++;
  197. while (true) {
  198. while (position < input.length && input[position] !== "\"" && input[position] !== "\\") {
  199. value += input[position];
  200. ++position;
  201. }
  202. if (position >= input.length) {
  203. break;
  204. }
  205. const quoteOrBackslash = input[position];
  206. ++position;
  207. if (quoteOrBackslash === "\\") {
  208. if (position >= input.length) {
  209. value += "\\";
  210. break;
  211. }
  212. value += input[position];
  213. ++position;
  214. } else {
  215. break;
  216. }
  217. }
  218. return [value, position];
  219. };
  220. },{}],"whatwg-mimetype":[function(require,module,exports){
  221. "use strict";
  222. const MIMETypeParameters = require("./mime-type-parameters.js");
  223. const parse = require("./parser.js");
  224. const serialize = require("./serializer.js");
  225. const {
  226. asciiLowercase,
  227. solelyContainsHTTPTokenCodePoints
  228. } = require("./utils.js");
  229. module.exports = class MIMEType {
  230. constructor(string) {
  231. string = String(string);
  232. const result = parse(string);
  233. if (result === null) {
  234. throw new Error(`Could not parse MIME type string "${string}"`);
  235. }
  236. this._type = result.type;
  237. this._subtype = result.subtype;
  238. this._parameters = new MIMETypeParameters(result.parameters);
  239. }
  240. static parse(string) {
  241. try {
  242. return new this(string);
  243. } catch (e) {
  244. return null;
  245. }
  246. }
  247. get essence() {
  248. return `${this.type}/${this.subtype}`;
  249. }
  250. get type() {
  251. return this._type;
  252. }
  253. set type(value) {
  254. value = asciiLowercase(String(value));
  255. if (value.length === 0) {
  256. throw new Error("Invalid type: must be a non-empty string");
  257. }
  258. if (!solelyContainsHTTPTokenCodePoints(value)) {
  259. throw new Error(`Invalid type ${value}: must contain only HTTP token code points`);
  260. }
  261. this._type = value;
  262. }
  263. get subtype() {
  264. return this._subtype;
  265. }
  266. set subtype(value) {
  267. value = asciiLowercase(String(value));
  268. if (value.length === 0) {
  269. throw new Error("Invalid subtype: must be a non-empty string");
  270. }
  271. if (!solelyContainsHTTPTokenCodePoints(value)) {
  272. throw new Error(`Invalid subtype ${value}: must contain only HTTP token code points`);
  273. }
  274. this._subtype = value;
  275. }
  276. get parameters() {
  277. return this._parameters;
  278. }
  279. toString() {
  280. // The serialize function works on both "MIME type records" (i.e. the results of parse) and on this class, since
  281. // this class's interface is identical.
  282. return serialize(this);
  283. }
  284. isJavaScript({ prohibitParameters = false } = {}) {
  285. switch (this._type) {
  286. case "text": {
  287. switch (this._subtype) {
  288. case "ecmascript":
  289. case "javascript":
  290. case "javascript1.0":
  291. case "javascript1.1":
  292. case "javascript1.2":
  293. case "javascript1.3":
  294. case "javascript1.4":
  295. case "javascript1.5":
  296. case "jscript":
  297. case "livescript":
  298. case "x-ecmascript":
  299. case "x-javascript": {
  300. return !prohibitParameters || this._parameters.size === 0;
  301. }
  302. default: {
  303. return false;
  304. }
  305. }
  306. }
  307. case "application": {
  308. switch (this._subtype) {
  309. case "ecmascript":
  310. case "javascript":
  311. case "x-ecmascript":
  312. case "x-javascript": {
  313. return !prohibitParameters || this._parameters.size === 0;
  314. }
  315. default: {
  316. return false;
  317. }
  318. }
  319. }
  320. default: {
  321. return false;
  322. }
  323. }
  324. }
  325. isXML() {
  326. return (this._subtype === "xml" && (this._type === "text" || this._type === "application")) ||
  327. this._subtype.endsWith("+xml");
  328. }
  329. isHTML() {
  330. return this._subtype === "html" && this._type === "text";
  331. }
  332. };
  333. },{"./mime-type-parameters.js":1,"./parser.js":2,"./serializer.js":3,"./utils.js":4}]},{},[])("whatwg-mimetype")
  334. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址