1

Revert to client-side tracking

This commit is contained in:
Evan Pratten 2023-06-08 11:24:15 -04:00
parent 87db941e37
commit f4e906bf2b
2 changed files with 45 additions and 43 deletions

View File

@ -16,53 +16,53 @@ async function redirect_secondary_domains(context) {
return context.next(); return context.next();
} }
async function goat_counter_analytics(context) { // async function goat_counter_analytics(context) {
// We require some env vars to be set. If they are not, fail the request // // We require some env vars to be set. If they are not, fail the request
if (!context.env.GOAT_COUNTER_API_KEY) { // if (!context.env.GOAT_COUNTER_API_KEY) {
return new Response('$GOAT_COUNTER_API_KEY is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } }); // return new Response('$GOAT_COUNTER_API_KEY is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } });
} // }
if (!context.env.GOAT_COUNTER_SITE_CODE) { // if (!context.env.GOAT_COUNTER_SITE_CODE) {
return new Response('$GOAT_COUNTER_SITE_CODE is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } }); // return new Response('$GOAT_COUNTER_SITE_CODE is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } });
} // }
// Parse the request URL // // Parse the request URL
let url = new URL(context.request.url); // let url = new URL(context.request.url);
// Build the payload to send to GoatCounter // // Build the payload to send to GoatCounter
var payload = { // var payload = {
hits: [ // hits: [
{ // {
path: url.pathname, // path: url.pathname,
query: url.searchParams.toString(), // query: url.searchParams.toString(),
ref: context.request.headers.get('Referer'), // ref: context.request.headers.get('Referer'),
location: context.request.cf.country, // location: context.request.cf.country,
user_agent: context.request.headers.get('User-Agent'), // user_agent: context.request.headers.get('User-Agent'),
session: context.request.cf.botManagement.ja3Hash // session: context.request.cf.botManagement.ja3Hash
} // }
] // ]
}; // };
// Count the goat // // Count the goat
fetch(`https://${context.env.GOAT_COUNTER_SITE_CODE}.goatcounter.com/api/v0/count`, { // fetch(`https://${context.env.GOAT_COUNTER_SITE_CODE}.goatcounter.com/api/v0/count`, {
method: 'POST', // method: 'POST',
headers: { // headers: {
'Content-Type': 'application/json', // 'Content-Type': 'application/json',
'Authorization': 'Bearer ' + context.env.GOAT_COUNTER_API_KEY, // 'Authorization': 'Bearer ' + context.env.GOAT_COUNTER_API_KEY,
}, // },
body: JSON.stringify(payload), // body: JSON.stringify(payload),
}); // });
// Execute the rest of the request chain // // Execute the rest of the request chain
let response = await context.next(); // let response = await context.next();
// For debugging, allow the requester to expose the body through a response header // // For debugging, allow the requester to expose the body through a response header
if (url.searchParams.get('goat-counter-debug') == 'true') { // if (url.searchParams.get('goat-counter-debug') == 'true') {
response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload)); // response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload));
} // }
// Return the response // // Return the response
return response; // return response;
} // }
// Chaining // Chaining
export const onRequest = [redirect_secondary_domains, goat_counter_analytics]; export const onRequest = [redirect_secondary_domains];//, goat_counter_analytics];

View File

@ -1,4 +1,6 @@
<!-- Global site tag (gtag.js) - Google Analytics --> <script data-goatcounter="https://ewpratten.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
<script defer src="https://www.googletagmanager.com/gtag/js?id=G-5912H4H03P"></script> <script defer src="https://www.googletagmanager.com/gtag/js?id=G-5912H4H03P"></script>
<script> <script>
window.dataLayer = window.dataLayer || []; window.dataLayer = window.dataLayer || [];