diff --git a/bridges/PornhubBridge.php b/bridges/PornhubBridge.php new file mode 100644 index 00000000..c8e93084 --- /dev/null +++ b/bridges/PornhubBridge.php @@ -0,0 +1,99 @@ + array( + 'name' => 'User name', + 'required' => true, + ), + 'type' => array( + 'name' => 'User type', + 'type' => 'list', + 'values' => array( + 'user' => 'users', + 'model' => 'model', + 'pornstar' => 'pornstar', + ), + 'defaultValue' => 'users', + ), + 'sort' => array( + 'name' => 'Sort by', + 'type' => 'list', + 'values' => array( + 'Most recent' => '', + 'Most views' => '?o=mv', + 'Top rated' => '?o=tr', + 'Longest' => '?o=lg', + ), + 'defaultValue' => '', + ), + 'show_images' => array( + 'name' => 'Show thumbnails', + 'type' => 'checkbox', + ), + )); + + public function getName(){ + if(!is_null($this->getInput('type')) && !is_null($this->getInput('q'))) { + return 'PornHub ' . $this->getInput('type') . ':' . $this->getInput('q'); + } + + return parent::getName(); + } + + public function collectData() { + + $uri = 'https://www.pornhub.com/' . $this->getInput('type') . '/'; + switch($this->getInput('type')) { // select proper permalink format per user type... + case 'model': + $uri .= urlencode($this->getInput('q')) . '/videos' . $this->getInput('sort'); break; + case 'users': + $uri .= urlencode($this->getInput('q')) . '/videos/public' . $this->getInput('sort'); break; + case 'pornstar': + $uri .= urlencode($this->getInput('q')) . '/videos/upload' . $this->getInput('sort'); break; + } + + $show_images = $this->getInput('show_images'); + + $html = getSimpleHTMLDOM($uri) + or returnServerError('Could not request PornHub.'); + + foreach($html->find('div.videoUList ul.videos li.videoblock') as $element) { + + $item = array(); + + $item['author'] = $this->getInput('q'); + + // Title + $title = $element->find('a', 0)->getAttribute('title'); + if (is_null($title)) { + continue; + } + $item['title'] = $title; + + // Url + $url = $element->find('a', 0)->href; + $item['uri'] = 'https://www.pornhub.com' . $url; + + // Content + $image = $element->find('img', 0)->getAttribute('data-src'); + if($show_images == TRUE) { + $item['content'] = ''; + } + + // date hack, guess upload YYYYMMDD from thumbnail URL (format: https://ci.phncdn.com/videos/201907/25/--- ) + $uploaded = explode('/', $image); + $uploaded = strtotime($uploaded[4].$uploaded[5]); + $item['timestamp'] = $uploaded; + + $this->items[] = $item; + } + } +}