diff --git a/gulpfile.js b/gulpfile.js index 4092ff5..e64ebfc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -24,7 +24,7 @@ function css() { function js() { return gulp - .src(join(SOURCE_DIR, "main.js")) + .src([join(SOURCE_DIR, "main.js"), join(SOURCE_DIR, "count.js")]) .pipe(sourcemaps.init()) .pipe(terser({ ecma: 5 })) .pipe(sourcemaps.write(".")) @@ -42,6 +42,6 @@ exports.default = gulp.parallel(html, css, js, static); exports.watch = () => { gulp.watch(join(SOURCE_DIR, "index.html"), html); gulp.watch(join(SOURCE_DIR, "scss", "*.scss"), css); - gulp.watch(join(SOURCE_DIR, "main.js"), js); + gulp.watch(join(SOURCE_DIR, "*.js"), js); gulp.watch(join(SOURCE_DIR, "static", "**", "*"), static); }; diff --git a/src/count.js b/src/count.js new file mode 100644 index 0000000..f2cf888 --- /dev/null +++ b/src/count.js @@ -0,0 +1,55 @@ +/*! + * @source: https://codeberg.org/kytta/toot/src/branch/main/src/count.js + * + * @licstart The following is the entire license notice for the + * JavaScript code in this page. + * + * toot - Cross-instance share page for Mastodon + * Copyright (C) 2022 Nikita Karamov + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + * @licend The above is the entire license notice + * for the JavaScript code in this page. + * + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +// This is the analytics code for toot. It just sends a beacon to GoatCounter +// with hardcoded path. This is way more lightweight, performant +// and privacy-friendly than the default GC script. + +// 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; + } + + const screen = encodeURIComponent( + [ + window.screen.width, + window.screen.height, + window.devicePixelRatio || 1, + ].join(",") + ); + + 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((_) => {}); diff --git a/src/index.html b/src/index.html index c25dfc2..6f6261a 100644 --- a/src/index.html +++ b/src/index.html @@ -90,26 +90,8 @@
toot on Codeberg
- - +