Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TorrentGalaxyBridge] Add new bridge #1378

Merged
merged 3 commits into from
Dec 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 120 additions & 0 deletions bridges/TorrentGalaxyBridge.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<?php

class TorrentGalaxyBridge extends BridgeAbstract {

const NAME = 'Torrent Galaxy Bridge';
const URI = 'https://torrentgalaxy.to';
const DESCRIPTION = 'Returns latest torrents';
const MAINTAINER = 'GregThib';
const CACHE_TIMEOUT = 14400; // 24h = 86400s

const PARAMETERS = array(
array(
'search' => 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'] = <<<HTML
<h1>{$identity->plaintext}</h1>
<h2>Links</h2>
<p><a href="{$glxlinks->find('a', 1)->href}" title="magnet link">magnet</a></p>
<p><a href="{$glxlinks->find('a', 0)->href}" title="torrent link">torrent</a></p>
<h2>Infos</h2>
<p>Size: {$result->find('div.tgxtablecell', 7)->plaintext}</p>
<p>Added by: <a href="{$authorid->href}" title="author profile">{$authorid->plaintext}</a></p>
<p>Upload time: {$creadate}</p>
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();
}
}