-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsw.js
197 lines (183 loc) · 5.78 KB
/
sw.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
---
---
{% capture digest_paths %}{% for asset in assets %}{% unless asset[0] contains "/" %}{% unless asset[0] contains "merriweather" %}{% unless asset[0] contains "raleway" %}{{ asset[1].digest_path }},{% endunless %}{% endunless %}{% endunless %}{% endfor %}{% endcapture %}
var version = "v{{ site.sw_cache_version }}-";
var staticCacheName = version + "assets-{{ digest_paths | md5 }}";
var staticAssets = ['/manifest.json', '{{ digest_paths | split: "," | join: "', '" }}'];
var pageCacheName = version + 'pages';
var offlinePages = ['/', '/blog/', '/offline/'];
var currentCaches = [staticCacheName, pageCacheName];
self.addEventListener('install', function(event) {
event.waitUntil(
Promise.all([
cacheAllIn(staticAssets, staticCacheName),
cacheAllIn(offlinePages, pageCacheName)
]).then(function() {
self.skipWaiting();
})
);
});
self.addEventListener('activate', function(event) {
event.waitUntil(
deleteOldCaches(currentCaches).then(function() {
self.clients.claim();
})
);
});
self.addEventListener('fetch', function(event) {
var url = new URL(event.request.url);
if (url.pathname.match(/^\/((assets|images)\/|manifest.json$)/)) {
if (event.request.headers.get('range')) {
event.respondWith(returnRangeRequest(event.request, staticCacheName));
} else {
event.respondWith(returnFromCacheOrFetch(event.request, staticCacheName));
}
}
if (
event.request.mode === 'navigate' ||
event.request.headers.get('Accept').indexOf('text/html') !== -1
) {
// cache then network
event.respondWith(cacheThenNetwork(event.request, pageCacheName));
}
});
function returnRangeRequest(request, cacheName) {
return caches
.open(cacheName)
.then(function(cache) {
return cache.match(request.url);
})
.then(function(res) {
if (!res) {
return fetch(request)
.then(res => {
const clonedRes = res.clone();
return caches
.open(cacheName)
.then(cache => cache.put(request, clonedRes))
.then(() => res);
})
.then(res => {
return res.arrayBuffer();
});
}
return res.arrayBuffer();
})
.then(function(arrayBuffer) {
const bytes = /^bytes\=(\d+)\-(\d+)?$/g.exec(
request.headers.get('range')
);
if (bytes) {
const start = Number(bytes[1]);
const end = Number(bytes[2]) || arrayBuffer.byteLength - 1;
return new Response(arrayBuffer.slice(start, end + 1), {
status: 206,
statusText: 'Partial Content',
headers: [
['Content-Range', `bytes ${start}-${end}/${arrayBuffer.byteLength}`]
]
});
} else {
return new Response(null, {
status: 416,
statusText: 'Range Not Satisfiable',
headers: [['Content-Range', `*/${arrayBuffer.byteLength}`]]
});
}
});
}
function cacheAllIn(paths, cacheName) {
return caches.open(cacheName).then(function(cache) {
return cache.addAll(paths);
});
}
function deleteOldCaches(currentCaches) {
return caches.keys().then(function(names) {
return Promise.all(
names
.filter(function(name) {
return currentCaches.indexOf(name) === -1;
})
.map(function(name) {
return caches.delete(name);
})
);
});
}
function openCacheAndMatchRequest(cacheName, request) {
var cachePromise = caches.open(cacheName);
var matchPromise = cachePromise.then(function(cache) {
return cache.match(request);
});
return [cachePromise, matchPromise];
}
function cacheSuccessfulResponse(cache, request, response) {
if (response.ok) {
return cache.put(request, response.clone()).then(() => {
return response;
});
} else {
return response;
}
}
function returnFromCacheOrFetch(request, cacheName) {
return Promise.all(openCacheAndMatchRequest(cacheName, request)).then(
function(responses) {
var cache = responses[0];
var cacheResponse = responses[1];
// return the cached response if we have it, otherwise the result of the fetch.
return (
cacheResponse ||
fetch(request).then(function(fetchResponse) {
// Cache the updated file and then return the response
cacheSuccessfulResponse(cache, request, fetchResponse);
return fetchResponse;
})
);
}
);
}
function cacheThenNetwork(request, cacheName) {
return Promise.all(openCacheAndMatchRequest(cacheName, request)).then(
function(responses) {
var cache = responses[0];
var cacheResponse = responses[1];
if (cacheResponse) {
// If it's in the cache then start a fetch to update the cache, but
// return the cached response
fetch(request)
.then(function(fetchResponse) {
return cacheSuccessfulResponse(cache, request, fetchResponse);
})
.then(refresh)
.catch(function(err) {
// Offline/network failure, but nothing to worry about
});
return cacheResponse;
} else {
// If it's not in the cache then start a fetch
return fetch(request)
.then(function(fetchResponse) {
cacheSuccessfulResponse(cache, request, fetchResponse);
return fetchResponse;
})
.catch(function() {
// Offline, so return the offline page.
return caches.match('/offline/');
});
}
}
);
}
function refresh(response) {
return self.clients.matchAll().then(function(clients) {
clients.forEach(function(client) {
var message = {
type: 'refresh',
url: response.url,
eTag: response.headers.get('ETag')
};
client.postMessage(JSON.stringify(message));
});
});
}