forked from blallo/rss-bridge
117031bf0f
This way, any BridgeAbstract method can now have access to these values, no only collectData Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
70 lines
2.4 KiB
PHP
70 lines
2.4 KiB
PHP
<?php
|
|
define('WORLD_OF_TANKS', 'http://worldoftanks.eu/');
|
|
define('NEWS', '/news/');
|
|
class WorldOfTanksBridge extends HttpCachingBridgeAbstract{
|
|
|
|
private $lang = "fr";
|
|
public $uri = WORLD_OF_TANKS;
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "mitsukarenai";
|
|
$this->name = "World of Tanks";
|
|
$this->uri = "http://worldoftanks.eu/";
|
|
$this->description = "News about the tank slaughter game.";
|
|
|
|
$this->parameters[] = array(
|
|
'category'=>array(
|
|
'name'=>'ID de la catégorie',
|
|
'type'=>'number'
|
|
),
|
|
'lang'=>array(
|
|
'name'=>'Langue',
|
|
'type'=>'list',
|
|
'values'=>array(
|
|
'Français'=>'fr',
|
|
'English'=>'en',
|
|
'Español'=>'es',
|
|
'Deutsch'=>'de',
|
|
'Čeština'=>'cs',
|
|
'Polski'=>'pl',
|
|
'Türkçe'=>'tr'
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
public function collectData(){
|
|
$param=$this->parameters[$this->queriedContext];
|
|
if (!empty($param['lang']['value'])) {
|
|
$this->lang = $param['lang']['value'];
|
|
}
|
|
if(empty($param['category']['value'])) {
|
|
$this->uri = WORLD_OF_TANKS.$this->lang.NEWS;
|
|
} else {
|
|
$this->uri = WORLD_OF_TANKS.$this->lang.NEWS.'pc-browser/'.$param['category']['value']."/";
|
|
}
|
|
$html = $this->getSimpleHTMLDOM($this->getURI()) or $this->returnServerError('Could not request '.$this->getURI());
|
|
$this->debugMessage("loaded HTML from ".$this->getURI());
|
|
// customize name
|
|
$this->name = $html->find('title', 0)->innertext;
|
|
foreach($html->find('.b-imgblock_ico') as $infoLink) {
|
|
$this->parseLine($infoLink);
|
|
}
|
|
}
|
|
|
|
private function parseLine($infoLink) {
|
|
$item = array();
|
|
$item['uri'] = WORLD_OF_TANKS.$infoLink->href;
|
|
// now load that uri from cache
|
|
$this->debugMessage("loading page ".$item['uri']);
|
|
$articlePage = str_get_html($this->get_cached($item['uri']));
|
|
$content = $articlePage->find('.l-content', 0);
|
|
HTMLSanitizer::defaultImageSrcTo($content, WORLD_OF_TANKS);
|
|
$item['title'] = $content->find('h1', 0)->innertext;
|
|
$item['content'] = $content->find('.b-content', 0)->innertext;
|
|
$item['timestamp'] = $content->find('.b-statistic_time', 0)->getAttribute("data-timestamp");
|
|
$this->items[] = $item;
|
|
}
|
|
}
|