chore: eventing + refactoring

This commit is contained in:
Cory Dransfeldt 2024-03-24 16:56:50 -07:00
parent c1875b9a8a
commit afcf409668
No known key found for this signature in database
2 changed files with 24 additions and 23 deletions

View file

@ -1,40 +1,41 @@
import crypto from 'node:crypto' import crypto from 'node:crypto'
import { getStore } from '@netlify/blobs'; import { getStore } from '@netlify/blobs'
export default async (request, context) => { export default async (request, context) => {
const ns = new URL(request['url']).searchParams.get('ns') const params = new URL(request['url']).searchParams
const page = new URL(request['url']).searchParams.get('page') const ns = params.get('ns')
const num = new URL(request['url']).searchParams.get('num') const page = params.get('page')
const lang = decodeURIComponent(new URL(request['url']).searchParams.get('lang')) const num = params.get('num') || 'unknown'
const nav = decodeURIComponent(new URL(request['url']).searchParams.get('nav')) const lang = decodeURIComponent(params.get('lang'))
const ig = new URL(request['url']).searchParams.get('ig') const nav = decodeURIComponent(params.get('nav'))
const ig = params.get('ig')
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(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}`
const headers = {} const headers = {}
if (lang) headers['Accept-Language'] = lang; if (lang) headers['Accept-Language'] = lang
if (nav) headers['User-Agent'] = nav; if (nav) headers['User-Agent'] = nav
let url; let url
if (ig) return; if (ig) return
if (ns) { if (ns) {
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex'); const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex')
const ids = getStore('ids') const ids = getStore('ids')
const userId = await ids.get(id) const userId = await ids.get(id)
if (!userId) await ids.set(id, id) if (!userId) await ids.set(id, id)
const idVal = await ids.get(id) const idVal = await ids.get(id)
url = setUrl(idVal, `[noscript visit] ID: ${idVal}`) url = setUrl(idVal, `[noscript visit] ID: ${idVal}`)
} else { } else {
url = setUrl(num, `[Blocked visit] ID: ${num || 'unknown'}`) url = setUrl(num, `[Blocked visit] ID: ${num}`)
} }
fetch(url, { headers }) fetch(url, { headers })
.then((data) => { .then((data) => {
console.log(data) console.log(data);
return {} return {}
}) })
.catch(err => { .catch((err) => {
console.log(err); console.log(err)
return {} return {}
}); })
return new Response(JSON.stringify({ return new Response(JSON.stringify({
status: 'success', status: 'success',
@ -45,4 +46,4 @@ export default async (request, context) => {
export const config = { export const config = {
path: "/api/event", path: "/api/event",
}; }

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "8.6.2", "version": "8.7.1",
"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": {