forked from blallo/rss-bridge
Adding possibility to have several list separated by ';', + code to parse date correctly.
This commit is contained in:
parent
d77eea7f09
commit
ab3582e2b4
1 changed files with 60 additions and 21 deletions
|
@ -1,42 +1,81 @@
|
|||
<?php
|
||||
/**
|
||||
* RssBridgeThePirateBay
|
||||
* Returns the newest interesting images from http://www.flickr.com/explore
|
||||
* Returns results for the keywords. You can put several list of keywords by separating them with a semicolon (e.g. "one show;another show")
|
||||
* 2014-05-25
|
||||
*
|
||||
* @name The Pirate Bay
|
||||
* @homepage https://thepiratebay.se/
|
||||
* @description Returns results for the keywords
|
||||
* @description Returns results for the keywords. You can put several list of keywords by separating them with a semicolon (e.g. "one show;another show")
|
||||
* @maintainer mitsukarenai
|
||||
* @update 2014-05-26
|
||||
* @use1(q="keywords")
|
||||
*/
|
||||
* @use1(q="first list;second list;...")
|
||||
*/
|
||||
|
||||
class ThePirateBayBridge extends BridgeAbstract{
|
||||
|
||||
public function collectData(array $param){
|
||||
|
||||
function parseDateTimestamp($element){
|
||||
$guessedDate = $element->find('font',0)->plaintext;
|
||||
$guessedDate = explode("Uploaded ",$guessedDate)[1];
|
||||
$guessedDate = explode(",",$guessedDate)[0];
|
||||
if (count(explode(":",$guessedDate)) == 1)
|
||||
{
|
||||
$guessedDate = strptime($guessedDate, '%m-%d %Y');
|
||||
$timestamp = mktime(0, 0, 0,
|
||||
$guessedDate['tm_mon'] + 1, $guessedDate['tm_mday'], 1900+$guessedDate['tm_year']);
|
||||
}
|
||||
else if (explode(" ",$guessedDate)[0] == 'Today')
|
||||
{
|
||||
$guessedDate = strptime(explode(" ",$guessedDate)[1], '%H:%M');
|
||||
$timestamp = mktime($guessedDate['tm_hour'], $guessedDate['tm_min'], 0,
|
||||
date('m'), date('d'), date('Y'));
|
||||
|
||||
}
|
||||
else if (explode(" ",$guessedDate)[0] == 'Y-day')
|
||||
{
|
||||
$guessedDate = strptime(explode(" ",$guessedDate)[1], '%H:%M');
|
||||
$timestamp = mktime($guessedDate['tm_hour'], $guessedDate['tm_min'], 0,
|
||||
date('m',time()-24*60*60), date('d',time()-24*60*60), date('Y',time()-24*60*60));
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
$guessedDate = strptime($guessedDate, '%m-%d %H:%M');
|
||||
$timestamp = mktime($guessedDate['tm_hour'], $guessedDate['tm_min'], 0,
|
||||
$guessedDate['tm_mon'] + 1, $guessedDate['tm_mday'], date('Y'));
|
||||
}
|
||||
return $timestamp;
|
||||
}
|
||||
|
||||
|
||||
if (!isset($param['q']))
|
||||
$this->returnError('You must specify a keyword (?q=...)', 400);
|
||||
$this->returnError('You must specify keywords (?q=...)', 400);
|
||||
|
||||
$html = file_get_html('https://thepiratebay.se/search/'.rawurlencode($param['q']).'/0/99/0') or $this->returnError('Could not request TPB.', 404);
|
||||
$keywordsList = explode(";",$param['q']);
|
||||
foreach($keywordsList as $keywords){
|
||||
$html = file_get_html('https://thepiratebay.se/search/'.rawurlencode($keywords).'/0/3/0') or $this->returnError('Could not request TPB.', 404);
|
||||
|
||||
if($html->find('table#searchResult', 0) == FALSE)
|
||||
$this->returnError('No result for this query', 404);
|
||||
if ($html->find('table#searchResult', 0) == FALSE)
|
||||
$this->returnError('No result for query '.$keywords, 404);
|
||||
|
||||
foreach($html->find('tr') as $element) {
|
||||
$item = new \Item();
|
||||
$item->uri = 'https://thepiratebay.se/'.$element->find('a.detLink',0)->href;
|
||||
$item->id = $item->uri;
|
||||
$item->timestamp = time();
|
||||
$item->title = $element->find('a.detLink',0)->plaintext;
|
||||
$item->seeders = (int)$element->find('td',2)->plaintext;
|
||||
$item->leechers = (int)$element->find('td',3)->plaintext;
|
||||
$item->content = $element->find('font',0)->plaintext.'<br>seeders: '.$item->seeders.' | leechers: '.$item->leechers.'<br><a href="'.$element->find('a',3)->href.'">download</a>';
|
||||
if(!empty($item->title))
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
||||
foreach($html->find('tr') as $element) {
|
||||
$item = new \Item();
|
||||
$item->uri = 'https://thepiratebay.se/'.$element->find('a.detLink',0)->href;
|
||||
$item->id = $item->uri;
|
||||
$item->timestamp = parseDateTimestamp($element);
|
||||
$item->title = $element->find('a.detLink',0)->plaintext;
|
||||
$item->seeders = (int)$element->find('td',2)->plaintext;
|
||||
$item->leechers = (int)$element->find('td',3)->plaintext;
|
||||
$item->content = $element->find('font',0)->plaintext.'<br>seeders: '.$item->seeders.' | leechers: '.$item->leechers.'<br><a href="'.$element->find('a',3)->href.'">download</a>';
|
||||
if(!empty($item->title))
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function getName(){
|
||||
return 'The Pirate Bay';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue