1
ewpratten.com/static/functions/_middleware.js
2023-05-22 11:44:55 -04:00

36 lines
1.0 KiB
JavaScript

async function goat_counter_analytics(context) {
// Parse the request URL
let url = new URL(context.request.url);
// Create a fingerprint for the user
// Build the payload to send to GoatCounter
var payload = {
hits: [
{
path: url.pathname,
query: url.search,
ref: context.request.headers.get('Referer'),
location: context.request.cf.country,
user_agent: context.request.headers.get('User-Agent'),
session: context.request.cf.botManagement.ja3Hash
}
]
};
// Execute the rest of the request chain
let response = await context.next();
// For debugging, allow the requester to expose the body through a response header
if (url.searchParams.get('goat-counter-debug') == 'true') {
response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload));
}
// Return the response
return response;
}
// Chaining
export const onRequest = [goat_counter_analytics];