124 lines
3.8 KiB
PHP
124 lines
3.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
class GronkhTVBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'GronkhTV';
|
|
const URI = 'https://gronkh.tv/';
|
|
const DESCRIPTION = 'Neue Uploads auf GronkhTV';
|
|
const MAINTAINER = 'Akamaru';
|
|
const CACHE_TIMEOUT = 3600; // 1 hour
|
|
|
|
const PARAMETERS = [
|
|
[
|
|
'limit' => [
|
|
'name' => 'Limit',
|
|
'type' => 'number',
|
|
'required' => false,
|
|
'defaultValue' => 20,
|
|
'title' => 'Maximale Anzahl der Videos'
|
|
]
|
|
]
|
|
];
|
|
|
|
public function getIcon()
|
|
{
|
|
return 'https://www.google.com/s2/favicons?domain=gronkh.tv&sz=32';
|
|
}
|
|
|
|
public function collectData()
|
|
{
|
|
$limit = $this->getInput('limit') ?? 20;
|
|
|
|
$apiUrl = 'https://api.gronkh.tv/v1/video/discovery/recent';
|
|
$json = getContents($apiUrl);
|
|
$data = json_decode($json, true);
|
|
|
|
if (!isset($data['discovery']) || !is_array($data['discovery'])) {
|
|
returnServerError('Konnte die GronkhTV-Videos nicht abrufen');
|
|
}
|
|
|
|
$count = 0;
|
|
foreach ($data['discovery'] as $video) {
|
|
if ($count >= $limit) {
|
|
break;
|
|
}
|
|
|
|
$item = [];
|
|
$item['title'] = $video['title'];
|
|
$item['uri'] = 'https://gronkh.tv/streams/' . $video['episode'];
|
|
$item['author'] = 'GronkhTV';
|
|
$item['timestamp'] = strtotime($video['created_at']);
|
|
$item['uid'] = 'gronkhtv-' . $video['episode'];
|
|
|
|
// Content mit Vorschaubild und Infos
|
|
$content = '';
|
|
if (!empty($video['preview_url'])) {
|
|
// Lade Bild mit Referer-Header und konvertiere zu base64
|
|
$imageData = $this->getImageAsBase64($video['preview_url']);
|
|
if ($imageData) {
|
|
$content .= '<img src="' . $imageData . '" /><br>';
|
|
}
|
|
}
|
|
|
|
// Videodauer formatieren
|
|
if (isset($video['video_length'])) {
|
|
$duration = $this->formatDuration($video['video_length']);
|
|
$content .= '<p><strong>Dauer:</strong> ' . $duration . '</p>';
|
|
}
|
|
|
|
// Views
|
|
if (isset($video['views'])) {
|
|
$content .= '<p><strong>Aufrufe:</strong> ' . number_format($video['views'], 0, ',', '.') . '</p>';
|
|
}
|
|
|
|
$item['content'] = $content;
|
|
|
|
$this->items[] = $item;
|
|
$count++;
|
|
}
|
|
}
|
|
|
|
private function formatDuration(int $seconds): string
|
|
{
|
|
$hours = floor($seconds / 3600);
|
|
$minutes = floor(($seconds % 3600) / 60);
|
|
$seconds = $seconds % 60;
|
|
|
|
if ($hours > 0) {
|
|
return sprintf('%d:%02d:%02d', $hours, $minutes, $seconds);
|
|
} else {
|
|
return sprintf('%d:%02d', $minutes, $seconds);
|
|
}
|
|
}
|
|
|
|
private function getImageAsBase64(string $imageUrl): ?string
|
|
{
|
|
try {
|
|
// Lade Bild mit Referer-Header
|
|
$imageData = getContents($imageUrl, [
|
|
'Referer: https://gronkh.tv'
|
|
]);
|
|
|
|
if ($imageData === false || empty($imageData)) {
|
|
return null;
|
|
}
|
|
|
|
// Bestimme MIME-Type aus URL
|
|
$mimeType = 'image/jpeg'; // Standard
|
|
if (preg_match('/\.(png|gif|webp)$/i', $imageUrl, $matches)) {
|
|
$extension = strtolower($matches[1]);
|
|
$mimeType = 'image/' . $extension;
|
|
}
|
|
|
|
// Konvertiere zu base64 data URI
|
|
$base64 = base64_encode($imageData);
|
|
return 'data:' . $mimeType . ';base64,' . $base64;
|
|
} catch (\Exception $e) {
|
|
// Bei Fehler null zurückgeben (Bild wird übersprungen)
|
|
return null;
|
|
}
|
|
}
|
|
}
|