From c06e471ae93f40481bb9fdbe93c9f6c6aba2380b Mon Sep 17 00:00:00 2001 From: Dag Date: Fri, 20 Jan 2023 22:48:06 +0100 Subject: [PATCH] feat: add new bridge for picarto.tv (#3220) --- bridges/PicartoBridge.php | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 bridges/PicartoBridge.php diff --git a/bridges/PicartoBridge.php b/bridges/PicartoBridge.php new file mode 100644 index 00000000..0326e02d --- /dev/null +++ b/bridges/PicartoBridge.php @@ -0,0 +1,41 @@ + [ + 'name' => 'Channel name', + 'type' => 'text', + 'required' => true, + 'title' => 'Channel name', + 'exampleValue' => 'Wysdrem', + ], + ] + ]; + + public function collectData() + { + $channel = $this->getInput('channel'); + $data = json_decode(getContents('https://api.picarto.tv/api/v1/channel/name/' . $channel), true); + if (!$data['online']) { + return; + } + $lastLive = new \DateTime($data['last_live']); + $this->items[] = [ + 'uri' => 'https://picarto.tv/' . $channel, + 'title' => $data['name'] . ' is now online', + 'content' => sprintf('', $data['thumbnails']['tablet']), + 'timestamp' => $lastLive->getTimestamp(), + 'uid' => 'https://picarto.tv/' . $channel . $lastLive->getTimestamp(), + ]; + } + + public function getName() + { + return 'Picarto - ' . $this->getInput('channel'); + } +}