-
Notifications
You must be signed in to change notification settings - Fork 41
/
module.js
302 lines (264 loc) · 9.11 KB
/
module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const createSri = require('sri-create');
const empty = '';
const slash = '/';
const packageJson = 'package.json';
const paramsRegex = /:([a-z]+)/gi;
const assetEmptyPrefix = /^\.\//;
const backSlashes = /\\/g;
const nodeModulesRegex = /[\\/]node_modules[\\/].+?[\\/](.*)/;
const DEFAULT_MODULE_KEY = 'defaultCdnModuleKey____';
class WebpackCdnPlugin {
constructor({
modules,
prod,
prodUrl = 'https://unpkg.com/:name@:version/:path',
devUrl = ':name/:path',
publicPath,
optimize = false,
crossOrigin = false,
sri = false,
pathToNodeModules = process.cwd(),
}) {
this.modules = Array.isArray(modules) ? { [DEFAULT_MODULE_KEY]: modules } : modules;
this.prod = prod !== false;
this.prefix = publicPath;
this.url = this.prod ? prodUrl : devUrl;
this.optimize = optimize;
this.crossOrigin = crossOrigin;
this.sri = sri;
this.pathToNodeModules = pathToNodeModules;
}
apply(compiler) {
const { output } = compiler.options;
if (this.prefix === empty) {
output.publicPath = './';
} else {
output.publicPath = output.publicPath || '/';
if (output.publicPath.slice(-1) !== slash) {
output.publicPath += slash;
}
this.prefix = this.prod ? empty : this.prefix || output.publicPath;
if (!this.prod && this.prefix.slice(-1) !== slash) {
this.prefix += slash;
}
}
const getArgs = [this.url, this.prefix, this.prod, output.publicPath];
compiler.hooks.compilation.tap('WebpackCdnPlugin', (compilation) => {
WebpackCdnPlugin._getHtmlHook(compilation, 'beforeAssetTagGeneration', 'htmlWebpackPluginBeforeHtmlGeneration').tapAsync(
'WebpackCdnPlugin',
(data, callback) => {
const moduleId = data.plugin.options.cdnModule;
if (moduleId !== false) {
let modules = this.modules[moduleId || Reflect.ownKeys(this.modules)[0]];
if (modules) {
if (this.optimize) {
const usedModules = WebpackCdnPlugin._getUsedModules(compilation);
modules = modules.filter((p) => usedModules[p.name]);
}
WebpackCdnPlugin._cleanModules(modules, this.pathToNodeModules);
modules = modules.filter((module) => module.version);
data.assets.js = WebpackCdnPlugin._getJs(modules, ...getArgs).concat(data.assets.js);
data.assets.css = WebpackCdnPlugin._getCss(modules, ...getArgs).concat(
data.assets.css,
);
if (this.prefix === empty) {
WebpackCdnPlugin._assetNormalize(data.assets.js);
WebpackCdnPlugin._assetNormalize(data.assets.css);
}
}
}
callback(null, data);
},
);
});
const externals = compiler.options.externals || {};
Reflect.ownKeys(this.modules).forEach((key) => {
const mods = this.modules[key];
mods
.filter((m) => !m.cssOnly)
.forEach((p) => {
externals[p.name] = p.var || p.name;
});
});
compiler.options.externals = externals;
if (this.prod && (this.crossOrigin || this.sri)) {
compiler.hooks.afterPlugins.tap('WebpackCdnPlugin', () => {
compiler.hooks.thisCompilation.tap('WebpackCdnPlugin', () => {
compiler.hooks.compilation.tap('HtmlWebpackPluginHooks', (compilation) => {
WebpackCdnPlugin._getHtmlHook(compilation, 'alterAssetTags', 'htmlWebpackPluginAlterAssetTags').tapPromise(
'WebpackCdnPlugin',
this.alterAssetTags.bind(this),
);
});
});
});
}
}
async alterAssetTags(pluginArgs) {
const getProdUrlPrefixes = () => {
const urls = this.modules[Reflect.ownKeys(this.modules)[0]]
.filter((m) => m.prodUrl).map((m) => m.prodUrl);
urls.push(this.url);
return [...new Set(urls)].map((url) => url.split('/:')[0]);
};
const prefixes = getProdUrlPrefixes();
const filterTag = (tag) => {
const url = (tag.tagName === 'script' && tag.attributes.src)
|| (tag.tagName === 'link' && tag.attributes.href);
return url && prefixes.filter((prefix) => url.indexOf(prefix) === 0).length !== 0;
};
const processTag = async (tag) => {
if (this.crossOrigin) {
tag.attributes.crossorigin = this.crossOrigin;
}
if (this.sri) {
let url;
if (tag.tagName === 'link') {
url = tag.attributes.href;
}
if (tag.tagName === 'script') {
url = tag.attributes.src;
}
try {
tag.attributes.integrity = await createSri(url);
} catch (e) {
throw new Error(`Failed to generate hash for resource ${url}.\n${e}`);
}
}
};
/* istanbul ignore next */
if (pluginArgs.assetTags) {
await Promise.all(pluginArgs.assetTags.scripts.filter(filterTag).map(processTag));
await Promise.all(pluginArgs.assetTags.styles.filter(filterTag).map(processTag));
} else {
await Promise.all(pluginArgs.head.filter(filterTag).map(processTag));
await Promise.all(pluginArgs.body.filter(filterTag).map(processTag));
}
}
/**
* Returns the version of a package in the root of the `node_modules` folder.
*
* If `pathToNodeModules` param is not provided, the current working directory is used instead.
* Note that the path should not end with `node_modules`.
*
* @param {string} name name of the package whose version to get.
* @param {string} [pathToNodeModules=process.cwd()]
*/
static getVersionInNodeModules(name, pathToNodeModules = process.cwd()) {
try {
return require(path.join(pathToNodeModules, 'node_modules', name, packageJson)).version;
} catch (e) {
/* istanbul ignore next */
return null;
}
}
/**
* Returns the list of all modules in the bundle
*/
static _getUsedModules(compilation) {
const usedModules = {};
compilation
.getStats()
.toJson()
.chunks.forEach((c) => {
c.modules.forEach((m) => {
m.reasons.forEach((r) => {
usedModules[r.userRequest] = true;
});
});
});
return usedModules;
}
/**
* - populate the "version" property of each module
* - construct the "paths" and "styles" arrays
* - add a default path if none provided
*
* If `pathToNodeModules` param is not provided, the current working directory is used instead.
* Note that the path should not end with `node_modules`.
*
* @param {Array<Object>} modules the modules to clean
* @param {string} [pathToNodeModules]
* @private
*/
static _cleanModules(modules, pathToNodeModules) {
modules.forEach((p) => {
p.version = WebpackCdnPlugin.getVersionInNodeModules(p.name, pathToNodeModules);
if (!p.paths) {
p.paths = [];
}
if (p.path) {
p.paths.unshift(p.path);
p.path = undefined;
}
if (p.paths.length === 0 && !p.cssOnly) {
p.paths.push(
require
.resolve(p.name)
.match(nodeModulesRegex)[1]
.replace(backSlashes, slash),
);
}
if (!p.styles) {
p.styles = [];
}
if (p.style) {
p.styles.unshift(p.style);
p.style = undefined;
}
});
}
/**
* Returns the list of CSS files for all modules
* It is the concatenation of "localStyle" and all "styles"
*/
static _getCss(modules, url, prefix, prod, publicPath) {
return WebpackCdnPlugin._get(modules, url, prefix, prod, publicPath, 'styles', 'localStyle');
}
/**
* Returns the list of JS files for all modules
* It is the concatenation of "localScript" and all "paths"
*/
static _getJs(modules, url, prefix, prod, publicPath) {
return WebpackCdnPlugin._get(modules, url, prefix, prod, publicPath, 'paths', 'localScript');
}
/**
* Generic method to construct the list of files
*/
static _get(modules, url, prefix, prod, publicPath, pathsKey, localKey) {
prefix = prefix || empty;
prod = prod !== false;
const files = [];
modules.filter((p) => p[localKey]).forEach((p) => files.push(publicPath + p[localKey]));
modules.filter((p) => p[pathsKey].length > 0)
.forEach((p) => {
const moduleSpecificUrl = (prod ? p.prodUrl : p.devUrl);
p[pathsKey].forEach((s) => files.push(
prefix + (moduleSpecificUrl || url).replace(paramsRegex, (m, p1) => {
if (prod && p.cdn && p1 === 'name') {
return p.cdn;
}
return p1 === 'path' ? s : p[p1];
}),
));
});
return files;
}
static _assetNormalize(assets) {
assets.forEach((item, i) => {
assets[i] = assets[i].replace(assetEmptyPrefix, empty);
});
}
static _getHtmlHook(compilation, v4Name, v3Name) {
try {
/* istanbul ignore next */
return HtmlWebpackPlugin.getHooks(compilation)[v4Name] || compilation.hooks[v3Name];
} catch (e) {
/* istanbul ignore next */
return compilation.hooks[v3Name];
}
}
}
module.exports = WebpackCdnPlugin;