-
Notifications
You must be signed in to change notification settings - Fork 12k
/
index-html-webpack-plugin.ts
264 lines (226 loc) · 8.22 KB
/
index-html-webpack-plugin.ts
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
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { createHash } from 'crypto';
import { Compiler, compilation } from 'webpack';
import { RawSource, ReplaceSource } from 'webpack-sources';
const parse5 = require('parse5');
export interface IndexHtmlWebpackPluginOptions {
input: string;
output: string;
baseHref?: string;
entrypoints: string[];
deployUrl?: string;
sri: boolean;
noModuleEntrypoints: string[];
}
function readFile(filename: string, compilation: compilation.Compilation): Promise<string> {
return new Promise<string>((resolve, reject) => {
compilation.inputFileSystem.readFile(filename, (err: Error, data: Buffer) => {
if (err) {
reject(err);
return;
}
let content;
if (data.length >= 3 && data[0] === 0xEF && data[1] === 0xBB && data[2] === 0xBF) {
// Strip UTF-8 BOM
content = data.toString('utf8', 3);
} else if (data.length >= 2 && data[0] === 0xFF && data[1] === 0xFE) {
// Strip UTF-16 LE BOM
content = data.toString('utf16le', 2);
} else {
content = data.toString();
}
resolve(content);
});
});
}
export class IndexHtmlWebpackPlugin {
private _options: IndexHtmlWebpackPluginOptions;
constructor(options?: Partial<IndexHtmlWebpackPluginOptions>) {
this._options = {
input: 'index.html',
output: 'index.html',
entrypoints: ['polyfills', 'main'],
noModuleEntrypoints: [],
sri: false,
...options,
};
}
apply(compiler: Compiler) {
compiler.hooks.emit.tapPromise('index-html-webpack-plugin', async compilation => {
// Get input html file
const inputContent = await readFile(this._options.input, compilation);
(compilation as compilation.Compilation & { fileDependencies: Set<string> })
.fileDependencies.add(this._options.input);
// Get all files for selected entrypoints
const unfilteredSortedFiles: string[] = [];
const noModuleFiles = new Set<string>();
const otherFiles = new Set<string>();
for (const entryName of this._options.entrypoints) {
const entrypoint = compilation.entrypoints.get(entryName);
if (entrypoint && entrypoint.getFiles) {
const files: string[] = entrypoint.getFiles() || [];
unfilteredSortedFiles.push(...files);
if (this._options.noModuleEntrypoints.includes(entryName)) {
files.forEach(file => noModuleFiles.add(file));
} else {
files.forEach(file => otherFiles.add(file));
}
}
}
// Clean out files that are used in all types of entrypoints
otherFiles.forEach(file => noModuleFiles.delete(file));
// Filter files
const existingFiles = new Set<string>();
const stylesheets: string[] = [];
const scripts: string[] = [];
for (const file of unfilteredSortedFiles) {
if (existingFiles.has(file)) {
continue;
}
existingFiles.add(file);
if (file.endsWith('.js')) {
scripts.push(file);
} else if (file.endsWith('.css')) {
stylesheets.push(file);
}
}
// Find the head and body elements
const treeAdapter = parse5.treeAdapters.default;
const document = parse5.parse(inputContent, { treeAdapter, locationInfo: true });
let headElement;
let bodyElement;
for (const docChild of document.childNodes) {
if (docChild.tagName === 'html') {
for (const htmlChild of docChild.childNodes) {
if (htmlChild.tagName === 'head') {
headElement = htmlChild;
}
if (htmlChild.tagName === 'body') {
bodyElement = htmlChild;
}
}
}
}
if (!headElement || !bodyElement) {
throw new Error('Missing head and/or body elements');
}
// Determine script insertion point
let scriptInsertionPoint;
if (bodyElement.__location && bodyElement.__location.endTag) {
scriptInsertionPoint = bodyElement.__location.endTag.startOffset;
} else {
// Less accurate fallback
// parse5 4.x does not provide locations if malformed html is present
scriptInsertionPoint = inputContent.indexOf('</body>');
}
let styleInsertionPoint;
if (headElement.__location && headElement.__location.endTag) {
styleInsertionPoint = headElement.__location.endTag.startOffset;
} else {
// Less accurate fallback
// parse5 4.x does not provide locations if malformed html is present
styleInsertionPoint = inputContent.indexOf('</head>');
}
// Inject into the html
const indexSource = new ReplaceSource(new RawSource(inputContent), this._options.input);
let scriptElements = '';
for (const script of scripts) {
const attrs: { name: string, value: string | null }[] = [
{ name: 'src', value: (this._options.deployUrl || '') + script },
];
if (noModuleFiles.has(script)) {
attrs.push({ name: 'nomodule', value: null });
}
if (this._options.sri) {
const content = compilation.assets[script].source();
attrs.push(...this._generateSriAttributes(content));
}
const attributes = attrs
.map(attr => attr.value === null ? attr.name : `${attr.name}="${attr.value}"`)
.join(' ');
scriptElements += `<script ${attributes}></script>`;
}
indexSource.insert(
scriptInsertionPoint,
scriptElements,
);
// Adjust base href if specified
if (typeof this._options.baseHref == 'string') {
let baseElement;
for (const headChild of headElement.childNodes) {
if (headChild.tagName === 'base') {
baseElement = headChild;
}
}
const baseFragment = treeAdapter.createDocumentFragment();
if (!baseElement) {
baseElement = treeAdapter.createElement(
'base',
undefined,
[
{ name: 'href', value: this._options.baseHref },
],
);
treeAdapter.appendChild(baseFragment, baseElement);
indexSource.insert(
headElement.__location.startTag.endOffset + 1,
parse5.serialize(baseFragment, { treeAdapter }),
);
} else {
let hrefAttribute;
for (const attribute of baseElement.attrs) {
if (attribute.name === 'href') {
hrefAttribute = attribute;
}
}
if (hrefAttribute) {
hrefAttribute.value = this._options.baseHref;
} else {
baseElement.attrs.push({ name: 'href', value: this._options.baseHref });
}
treeAdapter.appendChild(baseFragment, baseElement);
indexSource.replace(
baseElement.__location.startOffset,
baseElement.__location.endOffset,
parse5.serialize(baseFragment, { treeAdapter }),
);
}
}
const styleElements = treeAdapter.createDocumentFragment();
for (const stylesheet of stylesheets) {
const attrs = [
{ name: 'rel', value: 'stylesheet' },
{ name: 'href', value: (this._options.deployUrl || '') + stylesheet },
];
if (this._options.sri) {
const content = compilation.assets[stylesheet].source();
attrs.push(...this._generateSriAttributes(content));
}
const element = treeAdapter.createElement('link', undefined, attrs);
treeAdapter.appendChild(styleElements, element);
}
indexSource.insert(
styleInsertionPoint,
parse5.serialize(styleElements, { treeAdapter }),
);
// Add to compilation assets
compilation.assets[this._options.output] = indexSource;
});
}
private _generateSriAttributes(content: string) {
const algo = 'sha384';
const hash = createHash(algo)
.update(content, 'utf8')
.digest('base64');
return [
{ name: 'integrity', value: `${algo}-${hash}` },
{ name: 'crossorigin', value: 'anonymous' },
];
}
}