array( 'name' => 'search', 'required' => true, 'title' => 'Type your query' ), 'lang' => array( 'name' => 'language', 'type' => 'list', 'exampleValue' => 'All languages', 'title' => 'Select your language', 'values' => array( 'All languages' => '0', 'English' => '1', 'French' => '2', 'German' => '3', 'Italian' => '4', 'Japanese' => '5', 'Spanish' => '6', 'Russian' => '7', 'Hindi' => '8', 'Other / Multiple' => '9', 'Korean' => '10', 'Danish' => '11', 'Norwegian' => '12', 'Dutch' => '13', 'Manderin' => '14', 'Portuguese' => '15', 'Bengali' => '16', 'Polish' => '17', 'Turkish' => '18', 'Telugu' => '19', 'Urdu' => '20', 'Arabic' => '21', 'Swedish' => '22', 'Romanian' => '23' ) ) ) ); public function collectData(){ $url = self::URI . '/torrents.php?search=' . urlencode($this->getInput('search')) . '&lang=' . $this->getInput('lang') . '&sort=id&order=desc'; $html = getSimpleHTMLDOM($url) or returnServerError("Error querying the server at $url"); foreach($html->find('div.tgxtablerow') as $result) { $identity = $result->find('div.tgxtablecell', 3)->find('div a', 0); $authorid = $result->find('div.tgxtablecell', 6)->find('a', 0); $creadate = $result->find('div.tgxtablecell', 11)->plaintext; $glxlinks = $result->find('div.tgxtablecell', 4); $item = array(); $item['uri'] = self::URI . $identity->href; $item['title'] = $identity->plaintext; $item['timestamp'] = DateTime::createFromFormat('d/m/y H:i', $creadate)->format('U'); $item['author'] = $authorid->plaintext; $item['content'] = <<{$identity->plaintext}

Links

magnet

torrent

Infos

Size: {$result->find('div.tgxtablecell', 7)->plaintext}

Added by: {$authorid->plaintext}

Upload time: {$creadate}

HTML; $item['enclosures'] = array($glxlinks->find('a', 0)->href); $item['categories'] = array($result->find('div.tgxtablecell', 0)->plaintext); if (preg_match('#/torrent/([^/]+)/#', self::URI . $identity->href, $torrentid)) { $item['uid'] = $torrentid[1]; } $this->items[] = $item; } } public function getName(){ if(!is_null($this->getInput('search'))) { return $this->getInput('search') . ' : ' . self::NAME; } return parent::getName(); } public function getURI(){ if(!is_null($this->getInput('search'))) { return self::URI . '/torrents.php?search=' . urlencode($this->getInput('search')) . '&lang=' . $this->getInput('lang'); } return parent::getURI(); } public function getDescription(){ if(!is_null($this->getInput('search'))) { return 'Latest torrents for "' . $this->getInput('search') . '"'; } return parent::getDescription(); } public function getIcon(){ if(!is_null($this->getInput('search'))) { return self::URI . '/common/favicon/favicon.ico'; } return parent::getIcon(); } }