From af68eb9c439e84ca72e26684448d686cad36b434 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 22 May 2023 11:38:49 -0400 Subject: [PATCH] testing middleware --- static/functions/_middleware.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 static/functions/_middleware.js diff --git a/static/functions/_middleware.js b/static/functions/_middleware.js new file mode 100644 index 0000000..f9c6a31 --- /dev/null +++ b/static/functions/_middleware.js @@ -0,0 +1,33 @@ +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 + } + ] + }; + + // For debugging, allow the requester to expose the body through a response header + if (url.searchParams.get('goat-counter-debug') == 'true') { + context.response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload)); + } + + // Continue with the request + return await context.next(); +} + +// Chaining +export const onRequest = [goat_counter_analytics]; \ No newline at end of file