-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathngsw-config.js
executable file
·378 lines (368 loc) · 12.6 KB
/
ngsw-config.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#!/usr/bin/env node
import {createRequire as __cjsCompatRequire} from 'module';
const require = __cjsCompatRequire(import.meta.url);
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/config/src/duration.mjs
var PARSE_TO_PAIRS = /([0-9]+[^0-9]+)/g;
var PAIR_SPLIT = /^([0-9]+)([dhmsu]+)$/;
function parseDurationToMs(duration) {
const matches2 = [];
let array;
while ((array = PARSE_TO_PAIRS.exec(duration)) !== null) {
matches2.push(array[0]);
}
return matches2.map((match) => {
const res = PAIR_SPLIT.exec(match);
if (res === null) {
throw new Error(`Not a valid duration: ${match}`);
}
let factor = 0;
switch (res[2]) {
case "d":
factor = 864e5;
break;
case "h":
factor = 36e5;
break;
case "m":
factor = 6e4;
break;
case "s":
factor = 1e3;
break;
case "u":
factor = 1;
break;
default:
throw new Error(`Not a valid duration unit: ${res[2]}`);
}
return parseInt(res[1]) * factor;
}).reduce((total, value) => total + value, 0);
}
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/config/src/glob.mjs
var QUESTION_MARK = "[^/]";
var WILD_SINGLE = "[^/]*";
var WILD_OPEN = "(?:.+\\/)?";
var TO_ESCAPE_BASE = [
{ replace: /\./g, with: "\\." },
{ replace: /\+/g, with: "\\+" },
{ replace: /\*/g, with: WILD_SINGLE }
];
var TO_ESCAPE_WILDCARD_QM = [...TO_ESCAPE_BASE, { replace: /\?/g, with: QUESTION_MARK }];
var TO_ESCAPE_LITERAL_QM = [...TO_ESCAPE_BASE, { replace: /\?/g, with: "\\?" }];
function globToRegex(glob, literalQuestionMark = false) {
const toEscape = literalQuestionMark ? TO_ESCAPE_LITERAL_QM : TO_ESCAPE_WILDCARD_QM;
const segments = glob.split("/").reverse();
let regex = "";
while (segments.length > 0) {
const segment = segments.pop();
if (segment === "**") {
if (segments.length > 0) {
regex += WILD_OPEN;
} else {
regex += ".*";
}
} else {
const processed = toEscape.reduce((segment2, escape) => segment2.replace(escape.replace, escape.with), segment);
regex += processed;
if (segments.length > 0) {
regex += "\\/";
}
}
}
return regex;
}
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/config/src/generator.mjs
var DEFAULT_NAVIGATION_URLS = [
"/**",
"!/**/*.*",
"!/**/*__*",
"!/**/*__*/**"
];
var Generator = class {
fs;
baseHref;
constructor(fs3, baseHref2) {
this.fs = fs3;
this.baseHref = baseHref2;
}
async process(config2) {
var _a;
const unorderedHashTable = {};
const assetGroups = await this.processAssetGroups(config2, unorderedHashTable);
return {
configVersion: 1,
timestamp: Date.now(),
appData: config2.appData,
index: joinUrls(this.baseHref, config2.index),
assetGroups,
dataGroups: this.processDataGroups(config2),
hashTable: withOrderedKeys(unorderedHashTable),
navigationUrls: processNavigationUrls(this.baseHref, config2.navigationUrls),
navigationRequestStrategy: (_a = config2.navigationRequestStrategy) != null ? _a : "performance",
applicationMaxAge: config2.applicationMaxAge ? parseDurationToMs(config2.applicationMaxAge) : void 0
};
}
async processAssetGroups(config2, hashTable) {
const allFiles = await this.fs.list("/");
const seenMap = /* @__PURE__ */ new Set();
const filesPerGroup = /* @__PURE__ */ new Map();
for (const group of config2.assetGroups || []) {
if (group.resources.versionedFiles) {
throw new Error(`Asset-group '${group.name}' in 'ngsw-config.json' uses the 'versionedFiles' option, which is no longer supported. Use 'files' instead.`);
}
const fileMatcher = globListToMatcher(group.resources.files || []);
const matchedFiles = allFiles.filter(fileMatcher).filter((file) => !seenMap.has(file)).sort();
matchedFiles.forEach((file) => seenMap.add(file));
filesPerGroup.set(group, matchedFiles);
}
const allMatchedFiles = [].concat(...Array.from(filesPerGroup.values())).sort();
const allMatchedHashes = await processInBatches(allMatchedFiles, 500, (file) => this.fs.hash(file));
allMatchedFiles.forEach((file, idx) => {
hashTable[joinUrls(this.baseHref, file)] = allMatchedHashes[idx];
});
return Array.from(filesPerGroup.entries()).map(([group, matchedFiles]) => ({
name: group.name,
installMode: group.installMode || "prefetch",
updateMode: group.updateMode || group.installMode || "prefetch",
cacheQueryOptions: buildCacheQueryOptions(group.cacheQueryOptions),
urls: matchedFiles.map((url) => joinUrls(this.baseHref, url)),
patterns: (group.resources.urls || []).map((url) => urlToRegex(url, this.baseHref, true))
}));
}
processDataGroups(config2) {
return (config2.dataGroups || []).map((group) => {
return {
name: group.name,
patterns: group.urls.map((url) => urlToRegex(url, this.baseHref, true)),
strategy: group.cacheConfig.strategy || "performance",
maxSize: group.cacheConfig.maxSize,
maxAge: parseDurationToMs(group.cacheConfig.maxAge),
timeoutMs: group.cacheConfig.timeout && parseDurationToMs(group.cacheConfig.timeout),
refreshAheadMs: group.cacheConfig.refreshAhead && parseDurationToMs(group.cacheConfig.refreshAhead),
cacheOpaqueResponses: group.cacheConfig.cacheOpaqueResponses,
cacheQueryOptions: buildCacheQueryOptions(group.cacheQueryOptions),
version: group.version !== void 0 ? group.version : 1
};
});
}
};
function processNavigationUrls(baseHref2, urls = DEFAULT_NAVIGATION_URLS) {
return urls.map((url) => {
const positive = !url.startsWith("!");
url = positive ? url : url.slice(1);
return { positive, regex: `^${urlToRegex(url, baseHref2)}$` };
});
}
async function processInBatches(items, batchSize, processFn) {
const batches = [];
for (let i = 0; i < items.length; i += batchSize) {
batches.push(items.slice(i, i + batchSize));
}
return batches.reduce(async (prev, batch) => (await prev).concat(await Promise.all(batch.map((item) => processFn(item)))), Promise.resolve([]));
}
function globListToMatcher(globs) {
const patterns = globs.map((pattern) => {
if (pattern.startsWith("!")) {
return {
positive: false,
regex: new RegExp("^" + globToRegex(pattern.slice(1)) + "$")
};
} else {
return {
positive: true,
regex: new RegExp("^" + globToRegex(pattern) + "$")
};
}
});
return (file) => matches(file, patterns);
}
function matches(file, patterns) {
return patterns.reduce((isMatch, pattern) => {
if (pattern.positive) {
return isMatch || pattern.regex.test(file);
} else {
return isMatch && !pattern.regex.test(file);
}
}, false);
}
function urlToRegex(url, baseHref2, literalQuestionMark) {
if (!url.startsWith("/") && url.indexOf("://") === -1) {
url = joinUrls(baseHref2.replace(/^\.(?=\/)/, ""), url);
}
return globToRegex(url, literalQuestionMark);
}
function joinUrls(a, b) {
if (a.endsWith("/") && b.startsWith("/")) {
return a + b.slice(1);
} else if (!a.endsWith("/") && !b.startsWith("/")) {
return a + "/" + b;
}
return a + b;
}
function withOrderedKeys(unorderedObj) {
const orderedObj = {};
Object.keys(unorderedObj).sort().forEach((key) => orderedObj[key] = unorderedObj[key]);
return orderedObj;
}
function buildCacheQueryOptions(inOptions) {
return {
ignoreVary: true,
...inOptions
};
}
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/cli/main.mjs
import * as fs2 from "fs";
import * as path2 from "path";
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/cli/filesystem.mjs
import * as fs from "fs";
import * as path from "path";
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/cli/sha1.mjs
function sha1Binary(buffer) {
const words32 = arrayBufferToWords32(buffer, Endian.Big);
return _sha1(words32, buffer.byteLength * 8);
}
function _sha1(words32, len) {
const w = [];
let [a, b, c, d, e] = [1732584193, 4023233417, 2562383102, 271733878, 3285377520];
words32[len >> 5] |= 128 << 24 - len % 32;
words32[(len + 64 >> 9 << 4) + 15] = len;
for (let i = 0; i < words32.length; i += 16) {
const [h0, h1, h2, h3, h4] = [a, b, c, d, e];
for (let j = 0; j < 80; j++) {
if (j < 16) {
w[j] = words32[i + j];
} else {
w[j] = rol32(w[j - 3] ^ w[j - 8] ^ w[j - 14] ^ w[j - 16], 1);
}
const [f, k] = fk(j, b, c, d);
const temp = [rol32(a, 5), f, e, k, w[j]].reduce(add32);
[e, d, c, b, a] = [d, c, rol32(b, 30), a, temp];
}
[a, b, c, d, e] = [add32(a, h0), add32(b, h1), add32(c, h2), add32(d, h3), add32(e, h4)];
}
return byteStringToHexString(words32ToByteString([a, b, c, d, e]));
}
function add32(a, b) {
return add32to64(a, b)[1];
}
function add32to64(a, b) {
const low = (a & 65535) + (b & 65535);
const high = (a >>> 16) + (b >>> 16) + (low >>> 16);
return [high >>> 16, high << 16 | low & 65535];
}
function rol32(a, count) {
return a << count | a >>> 32 - count;
}
var Endian;
(function(Endian2) {
Endian2[Endian2["Little"] = 0] = "Little";
Endian2[Endian2["Big"] = 1] = "Big";
})(Endian || (Endian = {}));
function fk(index, b, c, d) {
if (index < 20) {
return [b & c | ~b & d, 1518500249];
}
if (index < 40) {
return [b ^ c ^ d, 1859775393];
}
if (index < 60) {
return [b & c | b & d | c & d, 2400959708];
}
return [b ^ c ^ d, 3395469782];
}
function arrayBufferToWords32(buffer, endian) {
const size = buffer.byteLength + 3 >>> 2;
const words32 = [];
const view = new Uint8Array(buffer);
for (let i = 0; i < size; i++) {
words32[i] = wordAt(view, i * 4, endian);
}
return words32;
}
function byteAt(str, index) {
if (typeof str === "string") {
return index >= str.length ? 0 : str.charCodeAt(index) & 255;
} else {
return index >= str.byteLength ? 0 : str[index] & 255;
}
}
function wordAt(str, index, endian) {
let word = 0;
if (endian === Endian.Big) {
for (let i = 0; i < 4; i++) {
word += byteAt(str, index + i) << 24 - 8 * i;
}
} else {
for (let i = 0; i < 4; i++) {
word += byteAt(str, index + i) << 8 * i;
}
}
return word;
}
function words32ToByteString(words32) {
return words32.reduce((str, word) => str + word32ToByteString(word), "");
}
function word32ToByteString(word) {
let str = "";
for (let i = 0; i < 4; i++) {
str += String.fromCharCode(word >>> 8 * (3 - i) & 255);
}
return str;
}
function byteStringToHexString(str) {
let hex = "";
for (let i = 0; i < str.length; i++) {
const b = byteAt(str, i);
hex += (b >>> 4).toString(16) + (b & 15).toString(16);
}
return hex.toLowerCase();
}
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/cli/filesystem.mjs
var NodeFilesystem = class {
base;
constructor(base) {
this.base = base;
}
async list(_path) {
const dir = this.canonical(_path);
const entries = fs.readdirSync(dir).map((entry) => ({ entry, stats: fs.statSync(path.join(dir, entry)) }));
const files = entries.filter((entry) => !entry.stats.isDirectory()).map((entry) => path.posix.join(_path, entry.entry));
return entries.filter((entry) => entry.stats.isDirectory()).map((entry) => path.posix.join(_path, entry.entry)).reduce(async (list, subdir) => (await list).concat(await this.list(subdir)), Promise.resolve(files));
}
async read(_path) {
const file = this.canonical(_path);
return fs.readFileSync(file).toString();
}
async hash(_path) {
const file = this.canonical(_path);
const contents = fs.readFileSync(file);
return sha1Binary(contents);
}
async write(_path, contents) {
const file = this.canonical(_path);
fs.writeFileSync(file, contents);
}
canonical(_path) {
return path.posix.join(this.base, _path);
}
};
// bazel-out/k8-fastbuild-ST-2e5f3376adb5/bin/packages/service-worker/cli/main.mjs
var cwd = process.cwd();
var distDir = path2.join(cwd, process.argv[2]);
var config = path2.join(cwd, process.argv[3]);
var baseHref = process.argv[4] || "/";
var configParsed = JSON.parse(fs2.readFileSync(config).toString());
var filesystem = new NodeFilesystem(distDir);
var gen = new Generator(filesystem, baseHref);
(async () => {
const control = await gen.process(configParsed);
await filesystem.write("/ngsw.json", JSON.stringify(control, null, 2));
})();
/**
* @license
* Copyright Google LLC 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.dev/license
*/
//# sourceMappingURL=ngsw_config.js.map