fix: analytics worker
This commit is contained in:
parent
7e1be46b2e
commit
e591a00888
3 changed files with 19 additions and 14 deletions
18
package-lock.json
generated
18
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.1.4",
|
"version": "21.1.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.1.4",
|
"version": "21.1.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
@ -582,13 +582,13 @@
|
||||||
"peer": true
|
"peer": true
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "22.0.2",
|
"version": "22.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.1.0.tgz",
|
||||||
"integrity": "sha512-yPL6DyFwY5PiMVEwymNeqUTKsDczQBJ/5T7W/46RwLU/VH+AA8aT5TZkvBviLKLbbm0hlfftEkGrNzfRk/fofQ==",
|
"integrity": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~6.11.1"
|
"undici-types": "~6.13.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/phoenix": {
|
"node_modules/@types/phoenix": {
|
||||||
|
@ -3667,9 +3667,9 @@
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/undici-types": {
|
"node_modules/undici-types": {
|
||||||
"version": "6.11.1",
|
"version": "6.13.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.11.1.tgz",
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz",
|
||||||
"integrity": "sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==",
|
"integrity": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.1.4",
|
"version": "21.1.5",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
const scriptName = '/js/script.js'
|
const scriptName = '/js/script.js'
|
||||||
const endpoint = '/api/event'
|
const endpoint = '/api/event'
|
||||||
|
|
||||||
addEventListener('fetch', event => {
|
addEventListener("fetch", (event) => {
|
||||||
event.passThroughOnException()
|
event.passThroughOnException()
|
||||||
event.respondWith(handleRequest(event))
|
event.respondWith(handleRequest(event))
|
||||||
})
|
})
|
||||||
|
@ -10,8 +10,11 @@ async function handleRequest(event) {
|
||||||
const url = new URL(event.request.url)
|
const url = new URL(event.request.url)
|
||||||
const pathname = url.pathname
|
const pathname = url.pathname
|
||||||
|
|
||||||
if (pathname === scriptName) getScript(event)
|
if (pathname === scriptName) {
|
||||||
if (pathname === endpoint) return postData(event)
|
return getScript(event)
|
||||||
|
} else if (pathname === endpoint) {
|
||||||
|
return postData(event)
|
||||||
|
}
|
||||||
return new Response(null, { status: 404 })
|
return new Response(null, { status: 404 })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,10 +23,12 @@ async function getScript(event) {
|
||||||
let response = await cache.match(event.request)
|
let response = await cache.match(event.request)
|
||||||
|
|
||||||
if (!response) {
|
if (!response) {
|
||||||
const scriptUrl = 'https://plausible.io/js/plausible.outbound-links.tagged-events.js'
|
const scriptUrl =
|
||||||
|
'https://plausible.io/js/plausible.outbound-links.tagged-events.js'
|
||||||
response = await fetch(scriptUrl)
|
response = await fetch(scriptUrl)
|
||||||
if (response.ok) event.waitUntil(cache.put(event.request, response.clone()))
|
if (response.ok) event.waitUntil(cache.put(event.request, response.clone()))
|
||||||
}
|
}
|
||||||
|
|
||||||
return response
|
return response
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue