-
Notifications
You must be signed in to change notification settings - Fork 822
/
runtime-caching-converter.js
150 lines (125 loc) · 4.93 KB
/
runtime-caching-converter.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
/*
Copyright 2017 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const ol = require('common-tags').oneLine;
const errors = require('./errors');
/**
* Given a set of options that configures `sw-toolbox`'s behavior, convert it
* into a string that would configure equivalent `workbox-sw` behavior.
*
* @param {Object} options See
* https://googlechrome.github.io/sw-toolbox/api.html#options
* @return {string} A JSON string representing the equivalent options.
*
* @private
*/
function getOptionsString(options = {}) {
let plugins = [];
if (options.plugins) {
plugins = options.plugins.map((plugin) => JSON.stringify(plugin));
delete options.plugins;
}
// Pull cacheName and networkTimeoutSeconds from the options object, since
// they are not directly used to construct a Plugin instance.
// If set, need to be passed as options to the handler constructor instead.
const {cacheName, networkTimeoutSeconds} = options;
delete options.cacheName;
delete options.networkTimeoutSeconds;
const pluginsMapping = {
backgroundSync: 'workbox.backgroundSync.Plugin',
broadcastUpdate: 'workbox.broadcastUpdate.Plugin',
expiration: 'workbox.expiration.Plugin',
cacheableResponse: 'workbox.cacheableResponse.Plugin',
};
for (const [pluginName, pluginConfig] of Object.entries(options)) {
// Ensure that we have some valid configuration to pass to Plugin().
if (Object.keys(pluginConfig).length === 0) {
continue;
}
const pluginString = pluginsMapping[pluginName];
if (!pluginString) {
throw new Error(`${errors['bad-runtime-caching-config']} ${pluginName}`);
}
let pluginCode;
switch (pluginName) {
// Special case logic for plugins that have a required parameter, and then
// an additional optional config parameter.
case 'backgroundSync': {
const name = pluginConfig.name;
pluginCode = `new ${pluginString}(${JSON.stringify(name)}`;
if ('options' in pluginConfig) {
pluginCode += `, ${JSON.stringify(pluginConfig.options)}`;
}
pluginCode += `)`;
break;
}
case 'broadcastUpdate': {
const channelName = pluginConfig.channelName;
pluginCode = `new ${pluginString}(${JSON.stringify(channelName)}`;
if ('options' in pluginConfig) {
pluginCode += `, ${JSON.stringify(pluginConfig.options)}`;
}
pluginCode += `)`;
break;
}
// For plugins that just pass in an Object to the constructor, like
// expiration and cacheableResponse
default: {
pluginCode = `new ${pluginString}(${JSON.stringify(pluginConfig)})`;
}
}
plugins.push(pluginCode);
}
if (networkTimeoutSeconds || cacheName || plugins.length > 0) {
return ol`{
${networkTimeoutSeconds ? ('networkTimeoutSeconds: ' +
JSON.stringify(networkTimeoutSeconds)) + ',' : ''}
${cacheName ? ('cacheName: ' + JSON.stringify(cacheName)) + ',' : ''}
plugins: [${plugins.join(', ')}]
}`;
} else {
return '';
}
}
module.exports = (runtimeCaching = []) => {
return runtimeCaching.map((entry) => {
const method = entry.method || 'GET';
if (!entry.urlPattern) {
throw new Error(errors['urlPattern-is-required']);
}
if (!entry.handler) {
throw new Error(errors['handler-is-required']);
}
// This validation logic is a bit too gnarly for joi, so it's manually
// implemented here.
if (entry.options && entry.options.networkTimeoutSeconds &&
entry.handler !== 'networkFirst') {
throw new Error(errors['invalid-network-timeout-seconds']);
}
// urlPattern might be either a string or a RegExp object.
// If it's a string, it needs to be quoted. If it's a RegExp, it should
// be used as-is.
const matcher = typeof entry.urlPattern === 'string' ?
JSON.stringify(entry.urlPattern) :
entry.urlPattern;
if (typeof entry.handler === 'string') {
const optionsString = getOptionsString(entry.options || {});
const strategyString =
`workbox.strategies.${entry.handler}(${optionsString})`;
return `workbox.routing.registerRoute(` +
`${matcher}, ${strategyString}, '${method}');\n`;
} else if (typeof entry.handler === 'function') {
return `workbox.routing.registerRoute(` +
`${matcher}, ${entry.handler}, '${method}');\n`;
}
}).filter((entry) => Boolean(entry)); // Remove undefined map() return values.
};