TemplatedPathPlugin.js 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Jason Anderson @diurnalist
  4. */
  5. "use strict";
  6. const { basename, extname } = require("path");
  7. const util = require("util");
  8. const Chunk = require("./Chunk");
  9. const Module = require("./Module");
  10. const { parseResource } = require("./util/identifier");
  11. /** @typedef {import("./Compilation").AssetInfo} AssetInfo */
  12. /** @typedef {import("./Compilation").PathData} PathData */
  13. /** @typedef {import("./Compiler")} Compiler */
  14. const REGEXP = /\[\\*([\w:]+)\\*\]/gi;
  15. const prepareId = id => {
  16. if (typeof id !== "string") return id;
  17. if (/^"\s\+*.*\+\s*"$/.test(id)) {
  18. const match = /^"\s\+*\s*(.*)\s*\+\s*"$/.exec(id);
  19. return `" + (${match[1]} + "").replace(/(^[.-]|[^a-zA-Z0-9_-])+/g, "_") + "`;
  20. }
  21. return id.replace(/(^[.-]|[^a-zA-Z0-9_-])+/g, "_");
  22. };
  23. const hashLength = (replacer, handler, assetInfo, hashName) => {
  24. const fn = (match, arg, input) => {
  25. let result;
  26. const length = arg && parseInt(arg, 10);
  27. if (length && handler) {
  28. result = handler(length);
  29. } else {
  30. const hash = replacer(match, arg, input);
  31. result = length ? hash.slice(0, length) : hash;
  32. }
  33. if (assetInfo) {
  34. assetInfo.immutable = true;
  35. if (Array.isArray(assetInfo[hashName])) {
  36. assetInfo[hashName] = [...assetInfo[hashName], result];
  37. } else if (assetInfo[hashName]) {
  38. assetInfo[hashName] = [assetInfo[hashName], result];
  39. } else {
  40. assetInfo[hashName] = result;
  41. }
  42. }
  43. return result;
  44. };
  45. return fn;
  46. };
  47. const replacer = (value, allowEmpty) => {
  48. const fn = (match, arg, input) => {
  49. if (typeof value === "function") {
  50. value = value();
  51. }
  52. if (value === null || value === undefined) {
  53. if (!allowEmpty) {
  54. throw new Error(
  55. `Path variable ${match} not implemented in this context: ${input}`
  56. );
  57. }
  58. return "";
  59. } else {
  60. return `${value}`;
  61. }
  62. };
  63. return fn;
  64. };
  65. const deprecationCache = new Map();
  66. const deprecatedFunction = (() => () => {})();
  67. const deprecated = (fn, message, code) => {
  68. let d = deprecationCache.get(message);
  69. if (d === undefined) {
  70. d = util.deprecate(deprecatedFunction, message, code);
  71. deprecationCache.set(message, d);
  72. }
  73. return (...args) => {
  74. d();
  75. return fn(...args);
  76. };
  77. };
  78. /**
  79. * @param {string | function(PathData, AssetInfo=): string} path the raw path
  80. * @param {PathData} data context data
  81. * @param {AssetInfo} assetInfo extra info about the asset (will be written to)
  82. * @returns {string} the interpolated path
  83. */
  84. const replacePathVariables = (path, data, assetInfo) => {
  85. const chunkGraph = data.chunkGraph;
  86. /** @type {Map<string, Function>} */
  87. const replacements = new Map();
  88. // Filename context
  89. //
  90. // Placeholders
  91. //
  92. // for /some/path/file.js?query#fragment:
  93. // [file] - /some/path/file.js
  94. // [query] - ?query
  95. // [fragment] - #fragment
  96. // [base] - file.js
  97. // [path] - /some/path/
  98. // [name] - file
  99. // [ext] - .js
  100. if (typeof data.filename === "string") {
  101. const { path: file, query, fragment } = parseResource(data.filename);
  102. const ext = extname(file);
  103. const base = basename(file);
  104. const name = base.slice(0, base.length - ext.length);
  105. const path = file.slice(0, file.length - base.length);
  106. replacements.set("file", replacer(file));
  107. replacements.set("query", replacer(query, true));
  108. replacements.set("fragment", replacer(fragment, true));
  109. replacements.set("path", replacer(path, true));
  110. replacements.set("base", replacer(base));
  111. replacements.set("name", replacer(name));
  112. replacements.set("ext", replacer(ext, true));
  113. // Legacy
  114. replacements.set(
  115. "filebase",
  116. deprecated(
  117. replacer(base),
  118. "[filebase] is now [base]",
  119. "DEP_WEBPACK_TEMPLATE_PATH_PLUGIN_REPLACE_PATH_VARIABLES_FILENAME"
  120. )
  121. );
  122. }
  123. // Compilation context
  124. //
  125. // Placeholders
  126. //
  127. // [fullhash] - data.hash (3a4b5c6e7f)
  128. //
  129. // Legacy Placeholders
  130. //
  131. // [hash] - data.hash (3a4b5c6e7f)
  132. if (data.hash) {
  133. const hashReplacer = hashLength(
  134. replacer(data.hash),
  135. data.hashWithLength,
  136. assetInfo,
  137. "fullhash"
  138. );
  139. replacements.set("fullhash", hashReplacer);
  140. // Legacy
  141. replacements.set(
  142. "hash",
  143. deprecated(
  144. hashReplacer,
  145. "[hash] is now [fullhash] (also consider using [chunkhash] or [contenthash], see documentation for details)",
  146. "DEP_WEBPACK_TEMPLATE_PATH_PLUGIN_REPLACE_PATH_VARIABLES_HASH"
  147. )
  148. );
  149. }
  150. // Chunk Context
  151. //
  152. // Placeholders
  153. //
  154. // [id] - chunk.id (0.js)
  155. // [name] - chunk.name (app.js)
  156. // [chunkhash] - chunk.hash (7823t4t4.js)
  157. // [contenthash] - chunk.contentHash[type] (3256u3zg.js)
  158. if (data.chunk) {
  159. const chunk = data.chunk;
  160. const contentHashType = data.contentHashType;
  161. const idReplacer = replacer(chunk.id);
  162. const nameReplacer = replacer(chunk.name || chunk.id);
  163. const chunkhashReplacer = hashLength(
  164. replacer(chunk instanceof Chunk ? chunk.renderedHash : chunk.hash),
  165. "hashWithLength" in chunk ? chunk.hashWithLength : undefined,
  166. assetInfo,
  167. "chunkhash"
  168. );
  169. const contenthashReplacer = hashLength(
  170. replacer(
  171. data.contentHash ||
  172. (contentHashType &&
  173. chunk.contentHash &&
  174. chunk.contentHash[contentHashType])
  175. ),
  176. data.contentHashWithLength ||
  177. ("contentHashWithLength" in chunk && chunk.contentHashWithLength
  178. ? chunk.contentHashWithLength[contentHashType]
  179. : undefined),
  180. assetInfo,
  181. "contenthash"
  182. );
  183. replacements.set("id", idReplacer);
  184. replacements.set("name", nameReplacer);
  185. replacements.set("chunkhash", chunkhashReplacer);
  186. replacements.set("contenthash", contenthashReplacer);
  187. }
  188. // Module Context
  189. //
  190. // Placeholders
  191. //
  192. // [id] - module.id (2.png)
  193. // [hash] - module.hash (6237543873.png)
  194. //
  195. // Legacy Placeholders
  196. //
  197. // [moduleid] - module.id (2.png)
  198. // [modulehash] - module.hash (6237543873.png)
  199. if (data.module) {
  200. const module = data.module;
  201. const idReplacer = replacer(() =>
  202. prepareId(
  203. module instanceof Module ? chunkGraph.getModuleId(module) : module.id
  204. )
  205. );
  206. const moduleHashReplacer = hashLength(
  207. replacer(() =>
  208. module instanceof Module
  209. ? chunkGraph.getRenderedModuleHash(module, data.runtime)
  210. : module.hash
  211. ),
  212. "hashWithLength" in module ? module.hashWithLength : undefined,
  213. assetInfo,
  214. "modulehash"
  215. );
  216. const contentHashReplacer = hashLength(
  217. replacer(data.contentHash),
  218. undefined,
  219. assetInfo,
  220. "contenthash"
  221. );
  222. replacements.set("id", idReplacer);
  223. replacements.set("modulehash", moduleHashReplacer);
  224. replacements.set("contenthash", contentHashReplacer);
  225. replacements.set(
  226. "hash",
  227. data.contentHash ? contentHashReplacer : moduleHashReplacer
  228. );
  229. // Legacy
  230. replacements.set(
  231. "moduleid",
  232. deprecated(
  233. idReplacer,
  234. "[moduleid] is now [id]",
  235. "DEP_WEBPACK_TEMPLATE_PATH_PLUGIN_REPLACE_PATH_VARIABLES_MODULE_ID"
  236. )
  237. );
  238. }
  239. // Other things
  240. if (data.url) {
  241. replacements.set("url", replacer(data.url));
  242. }
  243. if (typeof data.runtime === "string") {
  244. replacements.set(
  245. "runtime",
  246. replacer(() => prepareId(data.runtime))
  247. );
  248. } else {
  249. replacements.set("runtime", replacer("_"));
  250. }
  251. if (typeof path === "function") {
  252. path = path(data, assetInfo);
  253. }
  254. path = path.replace(REGEXP, (match, content) => {
  255. if (content.length + 2 === match.length) {
  256. const contentMatch = /^(\w+)(?::(\w+))?$/.exec(content);
  257. if (!contentMatch) return match;
  258. const [, kind, arg] = contentMatch;
  259. const replacer = replacements.get(kind);
  260. if (replacer !== undefined) {
  261. return replacer(match, arg, path);
  262. }
  263. } else if (match.startsWith("[\\") && match.endsWith("\\]")) {
  264. return `[${match.slice(2, -2)}]`;
  265. }
  266. return match;
  267. });
  268. return path;
  269. };
  270. const plugin = "TemplatedPathPlugin";
  271. class TemplatedPathPlugin {
  272. /**
  273. * Apply the plugin
  274. * @param {Compiler} compiler the compiler instance
  275. * @returns {void}
  276. */
  277. apply(compiler) {
  278. compiler.hooks.compilation.tap(plugin, compilation => {
  279. compilation.hooks.assetPath.tap(plugin, replacePathVariables);
  280. });
  281. }
  282. }
  283. module.exports = TemplatedPathPlugin;