2023-04-11 16:07:24 +00:00
|
|
|
import { get } from 'idb-keyval';
|
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
|
|
|
import type { PushNotificationDataMap } from '@/types';
|
2022-04-30 12:52:07 +00:00
|
|
|
import { createEmptyNotification, createNotification } from '@/scripts/create-notification';
|
|
|
|
import { swLang } from '@/scripts/lang';
|
|
|
|
import * as swos from '@/scripts/operations';
|
|
|
|
|
2023-04-11 16:07:24 +00:00
|
|
|
globalThis.addEventListener('install', () => {
|
|
|
|
// ev.waitUntil(globalThis.skipWaiting());
|
2022-04-30 12:52:07 +00:00
|
|
|
});
|
|
|
|
|
2023-02-12 15:31:37 +00:00
|
|
|
globalThis.addEventListener('activate', ev => {
|
2022-04-30 12:52:07 +00:00
|
|
|
ev.waitUntil(
|
|
|
|
caches.keys()
|
|
|
|
.then(cacheNames => Promise.all(
|
|
|
|
cacheNames
|
|
|
|
.filter((v) => v !== swLang.cacheName)
|
2023-02-15 04:06:06 +00:00
|
|
|
.map(name => caches.delete(name)),
|
2022-04-30 12:52:07 +00:00
|
|
|
))
|
2023-02-18 05:16:34 +00:00
|
|
|
.then(() => globalThis.clients.claim()),
|
2022-04-30 12:52:07 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-07-11 09:24:10 +00:00
|
|
|
function offlineContentHTML(): string {
|
|
|
|
return `<!doctype html>Offline. Service Worker @${_VERSION_} <button onclick="location.reload()">reload</button>`
|
|
|
|
}
|
|
|
|
|
2023-02-12 15:31:37 +00:00
|
|
|
globalThis.addEventListener('fetch', ev => {
|
2022-09-10 10:25:32 +00:00
|
|
|
let isHTMLRequest = false;
|
|
|
|
if (ev.request.headers.get('sec-fetch-dest') === 'document') {
|
|
|
|
isHTMLRequest = true;
|
|
|
|
} else if (ev.request.headers.get('accept')?.includes('/html')) {
|
|
|
|
isHTMLRequest = true;
|
|
|
|
} else if (ev.request.url.endsWith('/')) {
|
|
|
|
isHTMLRequest = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isHTMLRequest) return;
|
2022-04-30 12:52:07 +00:00
|
|
|
ev.respondWith(
|
|
|
|
fetch(ev.request)
|
2023-07-11 09:24:10 +00:00
|
|
|
.catch(() => {
|
|
|
|
return new Response(offlineContentHTML(), {
|
|
|
|
status: 200,
|
|
|
|
headers: {
|
|
|
|
'content-type': 'text/html',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}),
|
2022-04-30 12:52:07 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-02-12 15:31:37 +00:00
|
|
|
globalThis.addEventListener('push', ev => {
|
2022-04-30 12:52:07 +00:00
|
|
|
// クライアント取得
|
2023-02-18 05:16:34 +00:00
|
|
|
ev.waitUntil(globalThis.clients.matchAll({
|
2022-04-30 12:52:07 +00:00
|
|
|
includeUncontrolled: true,
|
2023-02-15 04:06:06 +00:00
|
|
|
type: 'window',
|
2023-04-11 16:07:24 +00:00
|
|
|
}).then(async () => {
|
2023-04-10 12:10:06 +00:00
|
|
|
const data: PushNotificationDataMap[keyof PushNotificationDataMap] = ev.data?.json();
|
2022-04-30 12:52:07 +00:00
|
|
|
|
|
|
|
switch (data.type) {
|
|
|
|
// case 'driveFileCreated':
|
|
|
|
case 'notification':
|
2022-12-18 10:50:02 +00:00
|
|
|
case 'unreadAntennaNote':
|
2022-07-10 06:15:21 +00:00
|
|
|
// 1日以上経過している場合は無視
|
|
|
|
if ((new Date()).getTime() - data.dateTime > 1000 * 60 * 60 * 24) break;
|
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
return createNotification(data);
|
2023-04-11 05:11:39 +00:00
|
|
|
case 'readAllNotifications':
|
|
|
|
await globalThis.registration.getNotifications()
|
2023-04-18 06:01:18 +00:00
|
|
|
.then(notifications => notifications.forEach(n => n.tag !== 'read_notification' && n.close()));
|
2023-04-11 05:11:39 +00:00
|
|
|
break;
|
2022-04-30 12:52:07 +00:00
|
|
|
}
|
|
|
|
|
2023-02-18 08:48:20 +00:00
|
|
|
await createEmptyNotification();
|
|
|
|
return;
|
2022-04-30 12:52:07 +00:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2023-02-12 15:31:37 +00:00
|
|
|
globalThis.addEventListener('notificationclick', (ev: ServiceWorkerGlobalScopeEventMap['notificationclick']) => {
|
2023-04-11 16:07:24 +00:00
|
|
|
ev.waitUntil((async (): Promise<void> => {
|
2022-04-30 12:52:07 +00:00
|
|
|
if (_DEV_) {
|
|
|
|
console.log('notificationclick', ev.action, ev.notification.data);
|
|
|
|
}
|
2023-02-12 15:31:37 +00:00
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
const { action, notification } = ev;
|
2023-04-11 05:11:39 +00:00
|
|
|
const data: PushNotificationDataMap[keyof PushNotificationDataMap] = notification.data ?? {};
|
2022-12-18 10:50:02 +00:00
|
|
|
const { userId: loginId } = data;
|
2022-04-30 12:52:07 +00:00
|
|
|
let client: WindowClient | null = null;
|
2023-02-12 15:31:37 +00:00
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
switch (data.type) {
|
|
|
|
case 'notification':
|
|
|
|
switch (action) {
|
|
|
|
case 'follow':
|
2022-12-18 10:50:02 +00:00
|
|
|
if ('userId' in data.body) await swos.api('following/create', loginId, { userId: data.body.userId });
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
case 'showUser':
|
2023-04-11 16:07:24 +00:00
|
|
|
if ('user' in data.body) client = await swos.openUser(Acct.toString(data.body.user), loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
case 'reply':
|
2022-12-18 10:50:02 +00:00
|
|
|
if ('note' in data.body) client = await swos.openPost({ reply: data.body.note }, loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
case 'renote':
|
2022-12-18 10:50:02 +00:00
|
|
|
if ('note' in data.body) await swos.api('notes/create', loginId, { renoteId: data.body.note.id });
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
case 'accept':
|
|
|
|
switch (data.body.type) {
|
|
|
|
case 'receiveFollowRequest':
|
2022-12-18 10:50:02 +00:00
|
|
|
await swos.api('following/requests/accept', loginId, { userId: data.body.userId });
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'reject':
|
|
|
|
switch (data.body.type) {
|
|
|
|
case 'receiveFollowRequest':
|
2022-12-18 10:50:02 +00:00
|
|
|
await swos.api('following/requests/reject', loginId, { userId: data.body.userId });
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'showFollowRequests':
|
2022-12-18 10:50:02 +00:00
|
|
|
client = await swos.openClient('push', '/my/follow-requests', loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
switch (data.body.type) {
|
|
|
|
case 'receiveFollowRequest':
|
2022-12-18 10:50:02 +00:00
|
|
|
client = await swos.openClient('push', '/my/follow-requests', loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
case 'reaction':
|
2022-12-18 10:50:02 +00:00
|
|
|
client = await swos.openNote(data.body.note.id, loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if ('note' in data.body) {
|
2022-12-18 10:50:02 +00:00
|
|
|
client = await swos.openNote(data.body.note.id, loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
} else if ('user' in data.body) {
|
2023-04-11 16:07:24 +00:00
|
|
|
client = await swos.openUser(Acct.toString(data.body.user), loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2022-12-18 10:50:02 +00:00
|
|
|
case 'unreadAntennaNote':
|
|
|
|
client = await swos.openAntenna(data.body.antenna.id, loginId);
|
2023-04-11 05:11:39 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
switch (action) {
|
|
|
|
case 'markAllAsRead':
|
|
|
|
await globalThis.registration.getNotifications()
|
2023-04-18 06:01:18 +00:00
|
|
|
.then(notifications => notifications.forEach(n => n.tag !== 'read_notification' && n.close()));
|
2023-04-11 05:11:39 +00:00
|
|
|
await get('accounts').then(accounts => {
|
|
|
|
return Promise.all(accounts.map(async account => {
|
|
|
|
await swos.sendMarkAllAsRead(account.id);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case 'settings':
|
|
|
|
client = await swos.openClient('push', '/settings/notifications', loginId);
|
|
|
|
break;
|
|
|
|
}
|
2022-04-30 12:52:07 +00:00
|
|
|
}
|
2023-02-12 15:31:37 +00:00
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
if (client) {
|
|
|
|
client.focus();
|
|
|
|
}
|
|
|
|
if (data.type === 'notification') {
|
2023-04-11 05:11:39 +00:00
|
|
|
await swos.sendMarkAllAsRead(loginId);
|
2022-04-30 12:52:07 +00:00
|
|
|
}
|
2023-02-12 15:31:37 +00:00
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
notification.close();
|
|
|
|
})());
|
|
|
|
});
|
|
|
|
|
2023-02-12 15:31:37 +00:00
|
|
|
globalThis.addEventListener('notificationclose', (ev: ServiceWorkerGlobalScopeEventMap['notificationclose']) => {
|
2023-04-10 12:10:06 +00:00
|
|
|
const data: PushNotificationDataMap[keyof PushNotificationDataMap] = ev.notification.data;
|
2022-04-30 12:52:07 +00:00
|
|
|
|
2023-04-11 16:07:24 +00:00
|
|
|
ev.waitUntil((async (): Promise<void> => {
|
2023-04-11 05:11:39 +00:00
|
|
|
if (data.type === 'notification') {
|
|
|
|
await swos.sendMarkAllAsRead(data.userId);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
})());
|
2022-04-30 12:52:07 +00:00
|
|
|
});
|
|
|
|
|
2023-02-12 15:31:37 +00:00
|
|
|
globalThis.addEventListener('message', (ev: ServiceWorkerGlobalScopeEventMap['message']) => {
|
2023-04-11 16:07:24 +00:00
|
|
|
ev.waitUntil((async (): Promise<void> => {
|
2022-04-30 12:52:07 +00:00
|
|
|
switch (ev.data) {
|
|
|
|
case 'clear':
|
|
|
|
// Cache Storage全削除
|
|
|
|
await caches.keys()
|
|
|
|
.then(cacheNames => Promise.all(
|
2023-02-15 04:06:06 +00:00
|
|
|
cacheNames.map(name => caches.delete(name)),
|
2022-04-30 12:52:07 +00:00
|
|
|
));
|
|
|
|
return; // TODO
|
|
|
|
}
|
2023-02-12 15:31:37 +00:00
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
if (typeof ev.data === 'object') {
|
|
|
|
// E.g. '[object Array]' → 'array'
|
|
|
|
const otype = Object.prototype.toString.call(ev.data).slice(8, -1).toLowerCase();
|
2023-02-12 15:31:37 +00:00
|
|
|
|
2022-04-30 12:52:07 +00:00
|
|
|
if (otype === 'object') {
|
|
|
|
if (ev.data.msg === 'initialize') {
|
|
|
|
swLang.setLang(ev.data.lang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})());
|
|
|
|
});
|