1

add warnings

This commit is contained in:
Evan Pratten 2023-05-22 11:59:16 -04:00
parent 8e05f6e215
commit a86ef1ff93
4 changed files with 16 additions and 88 deletions

4
.gitignore vendored
View File

@ -11,4 +11,6 @@ Cargo.lock
/public/ /public/
/node_modules/ /node_modules/
.dev.vars

79
package-lock.json generated
View File

@ -1,79 +0,0 @@
{
"name": "ewpratten.com",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"dependencies": {
"bootstrap": "^5.2.3",
"github-markdown-css": "^5.1.0",
"line-awesome": "^1.3.0"
}
},
"node_modules/@popperjs/core": {
"version": "2.11.6",
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
"integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==",
"peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/popperjs"
}
},
"node_modules/bootstrap": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz",
"integrity": "sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/twbs"
},
{
"type": "opencollective",
"url": "https://opencollective.com/bootstrap"
}
],
"peerDependencies": {
"@popperjs/core": "^2.11.6"
}
},
"node_modules/github-markdown-css": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/github-markdown-css/-/github-markdown-css-5.1.0.tgz",
"integrity": "sha512-QLtORwHHtUHhPMHu7i4GKfP6Vx5CWZn+NKQXe+cBhslY1HEt0CTEkP4d/vSROKV0iIJSpl4UtlQ16AD8C6lMug==",
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/line-awesome": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/line-awesome/-/line-awesome-1.3.0.tgz",
"integrity": "sha512-Y0YHksL37ixDsHz+ihCwOtF5jwJgCDxQ3q+zOVgaSW8VugHGTsZZXMacPYZB1/JULBi6BAuTCTek+4ZY/UIwcw=="
}
},
"dependencies": {
"@popperjs/core": {
"version": "2.11.6",
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
"integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==",
"peer": true
},
"bootstrap": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz",
"integrity": "sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==",
"requires": {}
},
"github-markdown-css": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/github-markdown-css/-/github-markdown-css-5.1.0.tgz",
"integrity": "sha512-QLtORwHHtUHhPMHu7i4GKfP6Vx5CWZn+NKQXe+cBhslY1HEt0CTEkP4d/vSROKV0iIJSpl4UtlQ16AD8C6lMug=="
},
"line-awesome": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/line-awesome/-/line-awesome-1.3.0.tgz",
"integrity": "sha512-Y0YHksL37ixDsHz+ihCwOtF5jwJgCDxQ3q+zOVgaSW8VugHGTsZZXMacPYZB1/JULBi6BAuTCTek+4ZY/UIwcw=="
}
}
}

View File

@ -1,7 +0,0 @@
{
"dependencies": {
"bootstrap": "^5.2.3",
"github-markdown-css": "^5.1.0",
"line-awesome": "^1.3.0"
}
}

View File

@ -1,5 +1,14 @@
async function goat_counter_analytics(context) { async function goat_counter_analytics(context) {
// We require some env vars to be set. If they are not, fail the request
if (!context.env.GOAT_COUNTER_API_KEY) {
return new Response('$GOAT_COUNTER_API_KEY is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } });
}
if (!context.env.GOAT_COUNTER_SITE_CODE) {
return new Response('$GOAT_COUNTER_SITE_CODE is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } });
}
// Parse the request URL // Parse the request URL
let url = new URL(context.request.url); let url = new URL(context.request.url);
@ -17,13 +26,16 @@ async function goat_counter_analytics(context) {
] ]
}; };
// Count the goat
// await fetch()
// Execute the rest of the request chain // Execute the rest of the request chain
let response = await context.next(); let response = await context.next();
// For debugging, allow the requester to expose the body through a response header // For debugging, allow the requester to expose the body through a response header
if (url.searchParams.get('goat-counter-debug') == 'true') { if (url.searchParams.get('goat-counter-debug') == 'true') {
response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload)); response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload));
response.headers.set('X-GoatCounter-Api-Token', context.env.GOAT_COUNTER_API_TOKEN); response.headers.set('X-GoatCounter-Api-Token', context.env.GOAT_COUNTER_API_KEY);
} }
// Return the response // Return the response