Add page visit Telegram notifications
Some checks failed
Tests / Laravel tests (pull_request) Failing after 6m57s

This commit is contained in:
2026-06-03 23:19:06 +02:00
parent fdc10a0acb
commit bbfc64031f
10 changed files with 434 additions and 45 deletions

View File

@@ -0,0 +1,146 @@
<?php
namespace App\Services;
use App\Models\Personalia;
use Illuminate\Support\Facades\Http;
class TelegramNotificationService
{
public function notifyContactMessage(
string $name,
string $message,
string $ip,
string $userAgent,
?string $email = null,
?string $phone = null
): void {
$email ??= '-';
$phone ??= '-';
$text = <<<TEXT
Nieuw contactbericht ontvangen
Naam: {$name}
Email: {$email}
Telefoon: {$phone}
IP: {$ip}
User Agent: {$userAgent}
Bericht:
{$message}
Tijdstip: {now()->format('d-m-Y H:i')}
TEXT;
$this->send($text);
}
public function notifyPersonaliaClick(Personalia $personalia, ?string $ip, ?string $userAgent): void
{
$ip ??= '-';
$userAgent ??= '-';
$message = <<<TEXT
Persoonlijke gegevens bekeken
Naam: {$personalia->value}
IP: {$ip}
User Agent: {$userAgent}
Tijdstip: {now()->format('d-m-Y H:i')}
TEXT;
$this->send($message);
}
/**
* @param array<string, mixed> $visit
*/
public function notifyPageVisit(array $visit, ?string $ip, ?string $userAgent, ?string $acceptLanguage): void
{
$screen = $this->formatDimensions($visit['screen'] ?? null);
$viewport = $this->formatDimensions($visit['viewport'] ?? null);
$message = <<<TEXT
Pagina bezocht
URL: {$this->value($visit['url'] ?? null)}
Pad: {$this->value($visit['path'] ?? null)}
Titel: {$this->value($visit['title'] ?? null)}
Referrer: {$this->value($visit['referrer'] ?? null)}
Visitor ID: {$this->value($visit['visitor_id'] ?? null)}
IP: {$this->value($ip)}
User Agent: {$this->value($userAgent)}
Accept-Language: {$this->value($acceptLanguage)}
Browser taal: {$this->value($visit['language'] ?? null)}
Timezone: {$this->value($visit['timezone'] ?? null)}
Platform: {$this->value($visit['platform'] ?? null)}
Vendor: {$this->value($visit['vendor'] ?? null)}
Scherm: {$screen}
Viewport: {$viewport}
DPR: {$this->value($visit['device_pixel_ratio'] ?? null)}
Color depth: {$this->value($visit['color_depth'] ?? null)}
CPU cores: {$this->value($visit['hardware_concurrency'] ?? null)}
Device memory: {$this->value($visit['device_memory'] ?? null)}
Cookies: {$this->boolean($visit['cookies_enabled'] ?? null)}
Online: {$this->boolean($visit['online'] ?? null)}
Tijdstip: {now()->format('d-m-Y H:i')}
TEXT;
$this->send($message);
}
protected function send(string $text): void
{
$botToken = config('services.telegram.bot_token');
$chatId = config('services.telegram.chat_id');
if (! is_string($botToken) || $botToken === '' || ! is_string($chatId) || $chatId === '') {
return;
}
Http::post("https://api.telegram.org/bot{$botToken}/sendMessage", [
'chat_id' => $chatId,
'text' => $text,
]);
}
protected function value(mixed $value): string
{
if (is_bool($value)) {
return $this->boolean($value);
}
if (is_scalar($value)) {
$value = trim((string) $value);
return $value !== '' ? $value : '-';
}
return '-';
}
protected function boolean(mixed $value): string
{
return match ($value) {
true => 'ja',
false => 'nee',
default => '-',
};
}
protected function formatDimensions(mixed $dimensions): string
{
if (! is_array($dimensions)) {
return '-';
}
$width = $this->value($dimensions['width'] ?? null);
$height = $this->value($dimensions['height'] ?? null);
return "{$width}x{$height}";
}
}