Last active
September 9, 2024 18:51
-
-
Save holtwick/cf952d02be5f2960e2742676461564fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Adjust these for your needs | |
$umamiCollect = 'https://z-umami.holtwick.de/api/collect'; | |
$website = "6893805d-a37d-4d63-a043-5baec4a6b32c"; | |
// Collected info from original call | |
$language = $_SERVER['HTTP_ACCEPT_LANGUAGE']; | |
$ua = $_SERVER['HTTP_USER_AGENT']; | |
$referrer = $_SERVER['HTTP_REFERER']; // 1x"r" vs 2x"r" !!! | |
$ip = $_SERVER['REMOTE_ADDR']; | |
$host = $_SERVER['HTTP_HOST']; | |
$requestUrl = $_SERVER['REQUEST_URI']; | |
// General /collect call | |
function trackUmami($json_array) | |
{ | |
global $website, $umamiCollect, $language, $ua, $referrer, $ip; | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $umamiCollect); | |
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST'); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_HTTPHEADER, [ | |
"Content-Type: application/json; charset=utf-8", | |
"Accept-Language: $language", | |
"User-Agent: $ua", | |
"Referer: $referrer", | |
"cf-connecting-ip: $ip" | |
]); | |
$body = json_encode($json_array); | |
curl_setopt($ch, CURLOPT_POST, 1); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $body); | |
curl_exec($ch); | |
curl_close($ch); | |
} | |
function trackUmamiEvent($type, $value, $url = '') | |
{ | |
global $website, $umamiCollect, $language, $ua, $referrer, $ip, $host, $requestUrl; | |
if (empty($url)) $url = $requestUrl; | |
$json_array = [ | |
'payload' => [ | |
'website' => $website, | |
'hostname' => $host, | |
'url' => $url, | |
'event_type' => $type, | |
'event_value' => $value, | |
'language' => $language, | |
'referrer' => $referrer | |
], | |
'type' => 'event' | |
]; | |
trackUmami($json_array); | |
} | |
function trackUmamiPageView($url = '') | |
{ | |
global $website, $umamiCollect, $language, $ua, $referrer, $ip, $host, $requestUrl; | |
if (empty($url)) $url = $requestUrl; | |
$json_array = [ | |
'payload' => [ | |
'website' => $website, | |
'hostname' => $host, | |
'url' => $url, | |
'language' => $language, | |
'referrer' => $referrer | |
], | |
'type' => 'pageview' | |
]; | |
trackUmami($json_array); | |
} |
I did not use it for years, but should work. url
is the page you'd like to be tracked.
Okay, I want to use it with umami cloud, and those urls are a bit different I think. Thank you @holtwick for your answer. May I ask, what do you use now?
I use selfhosted https://plausible.io now. The tracking code I use for server side events is this one (node.js) https://github.com/holtwick/zerva/tree/master/zerva-plausible
ok! thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this still working? And can I use this on the umami cloud version? If yes, what would the url be ?