-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice-worker.js
More file actions
117 lines (108 loc) · 2.92 KB
/
Copy pathservice-worker.js
File metadata and controls
117 lines (108 loc) · 2.92 KB
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
const CACHE_VERSION = 'v1';
const CACHE_NAME = `prompt-workflow-${CACHE_VERSION}`;
const STATIC_ASSETS = [
'/',
'/index.html',
'/icon.svg',
'/manifest.json'
];
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
return cache.addAll(STATIC_ASSETS).catch((err) => {
console.warn('Cache addAll partial failure:', err);
return Promise.resolve();
});
})
);
});
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((cacheNames) => {
return Promise.all(
cacheNames.map((cacheName) => {
if (cacheName !== CACHE_NAME) {
return caches.delete(cacheName);
}
})
);
})
);
});
self.addEventListener('fetch', (event) => {
const { request } = event;
const url = new URL(request.url);
if (request.method !== 'GET') {
return;
}
if (url.protocol !== 'http:' && url.protocol !== 'https:') {
return;
}
if (url.hostname === 'api.openai.com' ||
url.pathname.includes('/v1/') ||
url.hostname.includes('openai') ||
url.hostname.includes('cdn.jsdelivr.net')) {
event.respondWith(
fetch(request)
.then((response) => {
if (response.status === 200 && response.type !== 'opaque') {
const responseToCache = response.clone();
caches.open(CACHE_NAME).then((cache) => {
cache.put(request, responseToCache);
});
}
return response;
})
.catch(() => {
return caches.match(request).then((cachedResponse) => {
return cachedResponse || createOfflineResponse();
});
})
);
} else {
event.respondWith(
caches.match(request).then((response) => {
if (response) {
return response;
}
return fetch(request)
.then((response) => {
if (!response || response.status !== 200 || response.type === 'opaque') {
return response;
}
const responseToCache = response.clone();
caches.open(CACHE_NAME).then((cache) => {
cache.put(request, responseToCache);
});
return response;
})
.catch(() => {
if (request.headers.get('accept').includes('text/html')) {
return caches.match('/index.html');
}
return createOfflineResponse();
});
})
);
}
});
function createOfflineResponse() {
return new Response(
JSON.stringify({
offline: true,
message: '离线模式:无法访问此资源'
}),
{
status: 503,
statusText: 'Service Unavailable',
headers: new Headers({
'Content-Type': 'application/json'
})
}
);
}
self.addEventListener('message', (event) => {
if (event.data && event.data.type === 'SKIP_WAITING') {
self.skipWaiting();
}
});