diff --git a/bridges/RemixAudioBridge.php b/bridges/RemixAudioBridge.php new file mode 100644 index 00000000..fb50fbd8 --- /dev/null +++ b/bridges/RemixAudioBridge.php @@ -0,0 +1,97 @@ + [ + 'name' => 'Profile', + 'type' => 'text', + 'exampleValue' => 'Amoraboy', + 'required' => true + ] + ] + ]; + + private $feedTitle = null; + private $feedIcon = null; + + public function collectData() + { + $html = getSimpleHTMLDOM($this->getURI()); + $user = $this->getUser($html); + + $this->feedTitle = $user['name']; + $this->feedIcon = $user['avatar']; + + $elements = $html->find('.song-container'); + foreach ($elements as $element) { + $titleEl = $element->find('.song-title', 0); + $title = is_object($titleEl) ? $titleEl->plaintext : ''; + + $urlEl = $titleEl->find('a', 0); + + $publishedEl = $element->find('.timeago', 0); + + $songEl = $element->find('.song-play-btn', 0); + $song = is_object($songEl) ? '' : ''; + + $item = []; + $item['uri'] = $urlEl->href; + $item['title'] = $title; + $item['timestamp'] = strtotime($publishedEl->title); + $item['content'] = '
' . $user['name'] . ' - ' . $title . '
' . $song; + + $this->items[] = $item; + } + } + + public function getIcon() + { + if ($this->feedIcon) { + return $this->feedIcon; + } + + return parent::getIcon(); + } + + public function getName() + { + if ($this->feedTitle) { + return $this->feedTitle . ' - ' . self::NAME; + } + + return parent::getName(); + } + + public function getURI() + { + $profile = $this->getProfile(); + if ($profile) { + return self::URI . '/profile/' . $profile; + } + + return parent::getURI(); + } + + private function getUser($html) + { + return [ + 'avatar' => $html->find('.cover-avatar img', 0)->src, + 'name' => $html->find('.cover-username a', 0)->plaintext + ]; + } + + private function getProfile() + { + return $this->getInput(self::PROFILE_QUERY_PARAM); + } +}