2018-09-11 21:10:46 +02:00
|
|
|
<?php
|
|
|
|
class ExtremeDownloadBridge extends BridgeAbstract {
|
|
|
|
const NAME = 'Extreme Download';
|
|
|
|
const URI = 'https://ww1.extreme-d0wn.com/';
|
|
|
|
const DESCRIPTION = 'Suivi de série sur Extreme Download';
|
|
|
|
const MAINTAINER = 'sysadminstory';
|
|
|
|
const PARAMETERS = array(
|
|
|
|
'Suivre la publication des épisodes d\'une série en cours de diffusion' => array(
|
|
|
|
'url' => array(
|
|
|
|
'name' => 'URL de la série',
|
|
|
|
'type' => 'text',
|
|
|
|
'required' => true,
|
|
|
|
'title' => 'URL d\'une série sans le https://ww1.extreme-d0wn.com/',
|
|
|
|
'exampleValue' => 'series-hd/hd-series-vostfr/46631-halt-and-catch-fire-saison-04-vostfr-hdtv-720p.html'),
|
|
|
|
'filter' => array(
|
|
|
|
'name' => 'Type de contenu',
|
|
|
|
'type' => 'list',
|
|
|
|
'title' => 'Type de contenu à suivre : Téléchargement, Streaming ou les deux',
|
|
|
|
'values' => array(
|
|
|
|
'Streaming et Téléchargement' => 'both',
|
|
|
|
'Téléchargement' => 'download',
|
|
|
|
'Streaming' => 'streaming'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
$html = getSimpleHTMLDOM(self::URI . $this->getInput('url'))
|
|
|
|
or returnServerError('Could not request Extreme Download.');
|
|
|
|
|
|
|
|
$filter = $this->getInput('filter');
|
|
|
|
|
2018-10-15 18:19:57 +02:00
|
|
|
$typesText = array(
|
|
|
|
'download' => 'Téléchargement',
|
|
|
|
'streaming' => 'Streaming'
|
|
|
|
);
|
|
|
|
|
2018-09-11 21:10:46 +02:00
|
|
|
// Get the TV show title
|
2018-10-15 18:19:57 +02:00
|
|
|
$this->showTitle = trim($html->find('span[id=news-title]', 0)->plaintext);
|
2018-09-11 21:10:46 +02:00
|
|
|
|
|
|
|
$list = $html->find('div[class=prez_7]');
|
|
|
|
foreach($list as $element) {
|
|
|
|
$add = false;
|
2018-10-15 18:19:57 +02:00
|
|
|
// Link type is needed is needed to generate an unique link
|
|
|
|
$type = $this->findLinkType($element);
|
2018-09-11 21:10:46 +02:00
|
|
|
if($filter == 'both') {
|
|
|
|
$add = true;
|
|
|
|
} else {
|
|
|
|
if($type == $filter) {
|
|
|
|
$add = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($add == true) {
|
|
|
|
$item = array();
|
|
|
|
|
|
|
|
// Get the element name
|
|
|
|
$title = $element->plaintext;
|
|
|
|
|
|
|
|
// Get thee element links
|
|
|
|
$links = $element->next_sibling()->innertext;
|
|
|
|
|
|
|
|
$item['content'] = $links;
|
2018-10-15 18:19:57 +02:00
|
|
|
$item['title'] = $this->showTitle . ' ' . $title . ' - ' . $typesText[$type];
|
|
|
|
// As RSS Bridge use the URI as GUID they need to be unique : adding a md5 hash of the title element
|
|
|
|
// should geneerate unique URI to prevent confusion for RSS readers
|
|
|
|
$item['uri'] = self::URI . $this->getInput('url') . '#' . hash('md5', $item['title']);
|
2018-09-11 21:10:46 +02:00
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
switch($this->queriedContext) {
|
|
|
|
case 'Suivre la publication des épisodes d\'une série en cours de diffusion':
|
2018-10-15 18:19:57 +02:00
|
|
|
return $this->showTitle . ' - ' . self::NAME;
|
2018-09-11 21:10:46 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return self::NAME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function findLinkType($element)
|
|
|
|
{
|
|
|
|
$return = '';
|
|
|
|
// Walk through all elements in the reverse order until finding one with class 'presz_2'
|
|
|
|
while($element->class != 'prez_2') {
|
|
|
|
$element = $element->prev_sibling();
|
|
|
|
}
|
|
|
|
$text = html_entity_decode($element->plaintext);
|
|
|
|
|
|
|
|
// Regarding the text of the element, return the according link type
|
|
|
|
if(stristr($text, 'téléchargement') != false) {
|
|
|
|
$return = 'download';
|
|
|
|
} else if(stristr($text, 'streaming') != false) {
|
|
|
|
$return = 'streaming';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
}
|