From 3050f0ae706dd850af6496448c4f1678b6251f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B2=B3=E4=B8=9C=E8=BE=B0?= <38829129+yue-dongchen@users.noreply.github.com> Date: Tue, 20 Jul 2021 17:58:50 +1000 Subject: [PATCH] [ARDMediathekBridge] New bridge (#2158) --- bridges/ARDMediathekBridge.php | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 bridges/ARDMediathekBridge.php diff --git a/bridges/ARDMediathekBridge.php b/bridges/ARDMediathekBridge.php new file mode 100644 index 00000000..5ac8a41d --- /dev/null +++ b/bridges/ARDMediathekBridge.php @@ -0,0 +1,36 @@ + array( + 'name' => 'Path', + 'required' => true, + 'title' => 'Enter without trailing slash', + 'defaultValue' => '45-min/Y3JpZDovL25kci5kZS8xMzkx' + ) + ) + ); + + public function collectData() { + date_default_timezone_set('Europe/Berlin'); + + $url = 'https://www.ardmediathek.de/sendung/' . $this->getInput('path') . '/'; + $html = getSimpleHTMLDOM($url); + $html = defaultLinkTo($html, $url); + + foreach($html->find('a.Root-sc-1ytw7qu-0') as $video) { + $item = array(); + $item['uri'] = $video->href; + $item['title'] = $video->find('h3', 0)->plaintext; + $item['content'] = ''; + $item['timestamp'] = strtotime(mb_substr($video->find('div.Line-epbftj-1', 0)->plaintext, 0, 10)); + + $this->items[] = $item; + } + } +}