Rss-Bridge/bridges/CpasbienBridge.php

74 lines
2.4 KiB
PHP
Raw Normal View History

2015-05-18 12:01:13 +02:00
<?php
class CpasbienBridge extends HttpCachingBridgeAbstract{
2015-05-18 12:01:13 +02:00
private $request;
2015-12-06 15:55:47 +01:00
public function loadMetadatas() {
$this->maintainer = "lagaisse";
$this->name = "Cpasbien Bridge";
$this->uri = "http://www.cpasbien.io";
$this->description = "Returns latest torrents from a request query";
2015-12-06 15:55:47 +01:00
$this->parameters[] = array(
'q'=>array(
'name'=>'Search',
'required'=>true,
'title'=>'Type your search'
)
);
2015-12-06 15:55:47 +01:00
}
2015-05-18 12:01:13 +02:00
public function collectData(array $param){
$this->loadMetadatas();
2015-05-18 12:01:13 +02:00
$html = '';
if (isset($param['q'])) { /* keyword search mode */
$this->request = str_replace(" ","-",trim($param['q']));
$html = $this->getSimpleHTMLDOM($this->uri.'/recherche/'.urlencode($this->request).'.html') or $this->returnServerError('No results for this query.');
2015-05-18 12:01:13 +02:00
}
else {
$this->returnClientError('You must specify a keyword (?q=...).');
2015-05-18 12:01:13 +02:00
}
foreach ($html->find('#gauche',0)->find('div') as $episode) {
if ($episode->getAttribute('class')=='ligne0' || $episode->getAttribute('class')=='ligne1')
{
$htmlepisode=str_get_html($this->get_cached($episode->find('a', 0)->getAttribute('href')));
2015-05-18 12:01:13 +02:00
$item = array();
$item['author'] = $episode->find('a', 0)->text();
$item['title'] = $episode->find('a', 0)->text();
$item['timestamp'] = $this->get_cached_time($episode->find('a', 0)->getAttribute('href'));
$textefiche=$htmlepisode->find('#textefiche', 0)->find('p',1);
if (isset($textefiche)) {
$item['content'] = $textefiche->text();
2015-05-18 12:01:13 +02:00
}
else {
$p=$htmlepisode->find('#textefiche',0)->find('p');
if(!empty($p)){
$item['content'] = $htmlepisode->find('#textefiche', 0)->find('p',0)->text();
}
2015-05-18 12:01:13 +02:00
}
$item['id'] = $episode->find('a', 0)->getAttribute('href');
$item['uri'] = $this->uri . $htmlepisode->find('#telecharger',0)->getAttribute('href');
2015-05-18 12:01:13 +02:00
$this->items[] = $item;
}
}
}
public function getName(){
return (!empty($this->request) ? $this->request .' - ' : '') . $this->name;
2015-05-18 12:01:13 +02:00
}
public function getCacheDuration(){
return 60*60*24; // 24 hours
}
}