Check for instance at the very beginning

This commit is contained in:
Nikita Karamov 2022-12-23 03:08:22 +01:00
parent 5f0e28e506
commit 445908b34a
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
1 changed files with 24 additions and 25 deletions

View File

@ -32,32 +32,31 @@
// Check if the default GC URL resolves
// This allows us to not track people with ad blockers
fetch("//gc.zgo.at/", { method: "HEAD" })
.then((result) => {
if (!result.ok) {
return;
}
if (
window.location.host !== "toot.kytta.dev" &&
window.location.host !== "s2f.kytta.dev" &&
window.location.host !== "share2fedi.kytta.dev"
) {
return;
}
if (
window.location.host === "toot.kytta.dev" ||
window.location.host === "s2f.kytta.dev" ||
window.location.host === "share2fedi.kytta.dev"
) {
fetch("//gc.zgo.at/", { method: "HEAD" })
.then((result) => {
if (!result.ok) {
return;
}
const screen = encodeURIComponent(
[
window.screen.width,
window.screen.height,
window.devicePixelRatio || 1,
].join(",")
);
const screen = encodeURIComponent(
[
window.screen.width,
window.screen.height,
window.devicePixelRatio || 1,
].join(",")
);
const random = encodeURIComponent(Math.random().toString(36).slice(2));
const random = encodeURIComponent(Math.random().toString(36).slice(2));
navigator.sendBeacon(
`https://share2fedi.goatcounter.com/count?p=%2F&s=${screen}&b=0&rnd=${random}`
);
})
.catch((_) => {});
navigator.sendBeacon(
`https://share2fedi.goatcounter.com/count?p=%2F&s=${screen}&b=0&rnd=${random}`
);
})
.catch((_) => {});
}