fix: headers

This commit is contained in:
Cory Dransfeldt 2024-03-25 10:25:21 -07:00
parent 8b3142cca7
commit 9cfc82c077
No known key found for this signature in database
4 changed files with 9 additions and 9 deletions

View file

@ -4,10 +4,11 @@ import { getStore } from '@netlify/blobs'
export default async (request, context) => { export default async (request, context) => {
const params = new URL(request['url']).searchParams const params = new URL(request['url']).searchParams
const ns = params.get('ns') const ns = params.get('ns')
const site = params.get('site')
const page = params.get('page') const page = params.get('page')
const ignore = params.get('ignore') const ignore = params.get('ignore')
const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}` const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${encodeURIComponent(site)}&p=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}`
const lang = decodeURIComponent(params.get('lang')) const lang = decodeURIComponent(params.get('lang'))
const nav = decodeURIComponent(params.get('nav')) const nav = decodeURIComponent(params.get('nav'))

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "8.7.7", "version": "8.7.8",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -90,7 +90,7 @@
{% endif %} {% endif %}
<noscript> <noscript>
<style>.client-side {display:none}</style> <style>.client-side {display:none}</style>
<img style="display:none" src="/api/event?site={{ meta.url | url_encode }}&page={{ page.url | url_encode }}&ns=true" /> <img style="display:none" src="/api/event?ns=true&site={{ meta.url | url_encode }}&page={{ page.url | url_encode }}" />
</noscript> </noscript>
</head> </head>
<body> <body>

View file

@ -1,7 +1,6 @@
let ignore; let ignore = window?.localStorage?.getItem('ignore')
let url = `https://coryd.dev/api/event/?site=${encodeURIComponent(window.location.origin)}&page=${encodeURIComponent(window.location.pathname)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}` let urlBase = 'https://coryd.dev/api/event/'
if (window.localStorage && window.localStorage.getItem('ignore')) { let params = `site=${encodeURIComponent(window.location.origin)}&page=${encodeURIComponent(window.location.pathname)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
ignore = localStorage.getItem('ignore') let url = `${urlBase}?${params}`;
url = `${url}&ignore=${ignore}` if (ignore) url = `${urlBase}?ignore=${ignore}&${params}`
}
if (!window.fathom) fetch(url).then(() => {}).catch(() => {}); if (!window.fathom) fetch(url).then(() => {}).catch(() => {});