From 5b886f2ae58adafa931042ad336ad48943d059f8 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 26 Mar 2024 20:26:30 -0700 Subject: [PATCH] chore: improve caching + reporting --- api/event.js | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/api/event.js b/api/event.js index 0655c3d7..fc82bf64 100644 --- a/api/event.js +++ b/api/event.js @@ -7,9 +7,11 @@ export default async (request, context) => { const site = params.get('site') const page = params.get('page') const ignore = params.get('ignore') - - const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${encodeURIComponent(site)}&p=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}` - + const setUrl = (id, event) => { + let url = `https://cdn.usefathom.com/?h=${encodeURIComponent(site)}&p=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}` + if (event) url = `${url}&name=${encodeURIComponent(event)}` + return url + } const lang = decodeURIComponent(params.get('lang')) const nav = decodeURIComponent(params.get('nav')) const notLang = !lang || lang === 'null' || lang === 'undefined' @@ -20,26 +22,28 @@ export default async (request, context) => { 'Accept-Language': acceptLanguage, 'User-Agent': userAgent } - - let url - - const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex') + const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}${context['geo']['latitude']}${context['geo']['longitude']}`).digest('hex') + let url = setUrl(id) const ids = getStore('ids') - const userId = await ids.get(id) - if (!userId) await ids.set(id, id) - const idVal = await ids.get(id) + let userId = await ids.get(id) if (ignore) return new Response(JSON.stringify({ status: 'accepted', }), { headers: { "Content-Type": "application/json" } } ) - if (ns) { - url = setUrl(idVal, 'noscript visit') - } else { - url = setUrl(idVal, 'Blocked visit') + + if (!userId) { + await ids.set(id, id) + if (ns) { + url = setUrl(id, 'noscript visit') + } else { + url = setUrl(id, 'Blocked visit') + } } + userId = await ids.get(id) + fetch(url, { headers }) .then((data) => { console.log(data);