From ec7d2a4afb35cd7d6817fe4c64b1bb07fc2dad03 Mon Sep 17 00:00:00 2001 From: dag Date: Tue, 29 Mar 2022 23:33:46 +0200 Subject: [PATCH] [QPlayBridge] chore: remove dead bridge (#2564) --- bridges/QPlayBridge.php | 128 ---------------------------------------- 1 file changed, 128 deletions(-) delete mode 100644 bridges/QPlayBridge.php diff --git a/bridges/QPlayBridge.php b/bridges/QPlayBridge.php deleted file mode 100644 index 64395b32..00000000 --- a/bridges/QPlayBridge.php +++ /dev/null @@ -1,128 +0,0 @@ - array( - 'program' => array( - 'name' => 'Program Name', - 'type' => 'text', - 'exampleValue' => 'bridgebroken', - 'required' => true, - ), - ), - 'Catalog' => array( - 'all_pages' => array( - 'name' => 'All Pages', - 'type' => 'checkbox', - 'defaultValue' => false, - ), - ), - ); - - public function getIcon() { - # This should be the favicon served on `self::URI` - return 'https://s3.amazonaws.com/unode1/assets/4957/r3T9Lm9LTLmpAEX6FlSA_apple-touch-icon.png'; - } - - public function getURI() { - switch ($this->queriedContext) { - case 'Program': - return self::URI . '/programs/' . $this->getInput('program'); - case 'Catalog': - return self::URI . '/catalog'; - } - return parent::getURI(); - } - - public function getName() { - switch ($this->queriedContext) { - case 'Program': - $html = getSimpleHTMLDOMCached($this->getURI()); - - return $html->find('h1.program--title', 0)->innertext; - case 'Catalog': - return self::NAME . ' | Programas'; - } - - return parent::getName(); - } - - /* This uses the uscreen platform, other sites can adapt this. https://www.uscreen.tv/ */ - public function collectData() { - switch ($this->queriedContext) { - case 'Program': - $program = $this->getInput('program'); - $html = getSimpleHTMLDOMCached($this->getURI()); - - foreach($html->find('.cce--thumbnails-video-chapter') as $element) { - $cid = $element->getAttribute('data-id'); - $item['title'] = $element->find('.cce--chapter-title', 0)->innertext; - $item['content'] = $element->find('.cce--thumbnails-image-block', 0) - . $element->find('.cce--chapter-body', 0)->innertext; - $item['uri'] = $this->getURI() . '?cid=' . $cid; - - /* TODO: Suport login credentials? */ - /* # Get direct video URL */ - /* $json_source = getContents(self::URI . '/chapters/' . $cid, array('Cookie: _uscreen2_session=???;')); */ - /* $json = json_decode($json_source); */ - - /* $item['enclosures'] = [$json->fallback]; */ - - $this->items[] = $item; - } - - break; - case 'Catalog': - $json_raw = getContents($this->getCatalogURI(1)); - - $json = json_decode($json_raw); - $total_pages = $json->total_pages; - - foreach($this->parseCatalogPage($json) as $item) { - $this->items[] = $item; - } - - if ($this->getInput('all_pages') === true) { - foreach(range(2, $total_pages) as $page) { - $json_raw = getContents($this->getCatalogURI($page)); - - $json = json_decode($json_raw); - - foreach($this->parseCatalogPage($json) as $item) { - $this->items[] = $item; - } - } - } - - break; - } - } - - private function getCatalogURI($page) { - return self::URI . '/catalog.json?page=' . $page; - } - - private function parseCatalogPage($json) { - $items = array(); - - foreach($json->records as $record) { - $item = array(); - - $item['title'] = $record->title; - $item['content'] = $record->description - . '
Duration: ' . $record->duration . '
'; - $item['timestamp'] = strtotime($record->release_date); - $item['uri'] = self::URI . $record->url; - $item['enclosures'] = array( - $record->main_poster, - ); - - $items[] = $item; - } - - return $items; - } -}