2015-10-22 14:51:39 +02:00
|
|
|
<?php
|
|
|
|
class AnimeUltimeBridge extends BridgeAbstract {
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = 'ORelio';
|
|
|
|
public $name = 'Anime-Ultime';
|
|
|
|
public $uri = 'http://www.anime-ultime.net/';
|
|
|
|
public $description = 'Returns the 10 newest releases posted on Anime-Ultime';
|
|
|
|
public $parameters = array( array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'type'=>array(
|
|
|
|
'name'=>'Type',
|
|
|
|
'type'=>'list',
|
|
|
|
'values'=>array(
|
|
|
|
'Everything'=>'',
|
|
|
|
'Anime'=>'A',
|
|
|
|
'Drama'=>'D',
|
|
|
|
'Tokusatsu'=>'T'
|
|
|
|
)
|
|
|
|
)
|
2016-08-27 21:03:26 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
private $filter = 'Releases';
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2015-10-22 14:51:39 +02:00
|
|
|
|
|
|
|
//Add type filter if provided
|
|
|
|
$typeFilter = '';
|
2016-08-28 01:25:33 +02:00
|
|
|
if (!empty($this->getInput('type'))) {
|
|
|
|
if ($this->getInput('type') == 'A' || $this->getInput('type') == 'D' || $this->getInput('type') == 'T') {
|
|
|
|
$typeFilter = $this->getInput('type');
|
2015-10-22 14:51:39 +02:00
|
|
|
if ($typeFilter == 'A') { $this->filter = 'Anime'; }
|
|
|
|
if ($typeFilter == 'D') { $this->filter = 'Drama'; }
|
|
|
|
if ($typeFilter == 'T') { $this->filter = 'Tokusatsu'; }
|
2016-08-17 14:45:08 +02:00
|
|
|
} else $this->returnClientError('The provided type filter is invalid. Expecting A, D, T, or no filter');
|
2015-10-22 14:51:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Build date and filters for making requests
|
|
|
|
$thismonth = date('mY').$typeFilter;
|
|
|
|
$lastmonth = date('mY', mktime(0, 0, 0, date('n') - 1, 1, date('Y'))).$typeFilter;
|
|
|
|
|
|
|
|
//Process each HTML page until having 10 releases
|
|
|
|
$processedOK = 0;
|
|
|
|
foreach (array($thismonth, $lastmonth) as $requestFilter) {
|
|
|
|
|
|
|
|
//Retrive page contents
|
|
|
|
$website = 'http://www.anime-ultime.net/';
|
|
|
|
$url = $website.'history-0-1/'.$requestFilter;
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($url) or $this->returnServerError('Could not request Anime-Ultime: '.$url);
|
2015-10-22 14:51:39 +02:00
|
|
|
|
|
|
|
//Relases are sorted by day : process each day individually
|
|
|
|
foreach ($html->find('div.history', 0)->find('h3') as $daySection) {
|
|
|
|
|
|
|
|
//Retrieve day and build date information
|
|
|
|
$dateString = $daySection->plaintext;
|
|
|
|
$day = intval(substr($dateString, strpos($dateString, ' ') + 1, 2));
|
|
|
|
$item_date = strtotime(str_pad($day, 2, '0', STR_PAD_LEFT).'-'.substr($requestFilter, 0, 2).'-'.substr($requestFilter, 2, 4));
|
|
|
|
$release = $daySection->next_sibling()->next_sibling()->first_child(); //<h3>day</h3><br /><table><tr> <-- useful data in table rows
|
|
|
|
|
|
|
|
//Process each release of that day, ignoring first table row: contains table headers
|
|
|
|
while (!is_null($release = $release->next_sibling())) {
|
|
|
|
if (count($release->find('td')) > 0) {
|
|
|
|
|
|
|
|
//Retrieve metadata from table columns
|
|
|
|
$item_link_element = $release->find('td', 0)->find('a', 0);
|
|
|
|
$item_uri = $website.$item_link_element->href;
|
|
|
|
$item_name = html_entity_decode($item_link_element->plaintext);
|
|
|
|
$item_episode = html_entity_decode(str_pad($release->find('td', 1)->plaintext, 2, '0', STR_PAD_LEFT));
|
|
|
|
$item_fansub = $release->find('td', 2)->plaintext;
|
|
|
|
$item_type = $release->find('td', 4)->plaintext;
|
|
|
|
|
|
|
|
if (!empty($item_uri)) {
|
|
|
|
|
|
|
|
//Retrieve description from description page and convert relative image src info absolute image src
|
2016-08-22 23:39:40 +02:00
|
|
|
$html_item = $this->getContents($item_uri) or $this->returnServerError('Could not request Anime-Ultime: '.$item_uri);
|
2015-10-22 14:51:39 +02:00
|
|
|
$item_description = substr($html_item, strpos($html_item, 'class="principal_contain" align="center">') + 41);
|
|
|
|
$item_description = substr($item_description, 0, strpos($item_description, '<div id="table">'));
|
|
|
|
$item_description = str_replace('src="images', 'src="'.$website.'images', $item_description);
|
|
|
|
$item_description = str_replace("\r", '', $item_description);
|
|
|
|
$item_description = str_replace("\n", '', $item_description);
|
|
|
|
$item_description = utf8_encode($item_description);
|
|
|
|
|
|
|
|
//Build and add final item
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $item_uri;
|
|
|
|
$item['title'] = $item_name.' '.$item_type.' '.$item_episode;
|
|
|
|
$item['author'] = $item_fansub;
|
|
|
|
$item['timestamp'] = $item_date;
|
|
|
|
$item['content'] = $item_description;
|
2015-10-22 14:51:39 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$processedOK++;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2015-10-22 14:51:39 +02:00
|
|
|
//Stop processing once limit is reached
|
|
|
|
if ($processedOK >= 10)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName() {
|
|
|
|
return 'Latest '.$this->filter.' - Anime-Ultime Bridge';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration() {
|
|
|
|
return 3600*3; // 3 hours
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|