forked from blallo/rss-bridge
38829e7739
Moved RssExpander as a core logic system to lib/Bridge.php Signed-off-by: teromene <teromene@teromene.fr>
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
define("SEXE", "http://sexes.blogs.liberation.fr");
|
|
define("SEXE_FEED", "http://sexes.blogs.liberation.fr/feeds/");
|
|
|
|
class Les400Culs extends RssExpander{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "unknown";
|
|
$this->name = "Les 400 Culs";
|
|
$this->uri = "http://sexes.blogs.liberation.fr";
|
|
$this->description = "La planète sexe vue par Agnès Girard via rss-bridge";
|
|
$this->update = "20/02/2014";
|
|
|
|
}
|
|
|
|
|
|
public function collectData(array $param){
|
|
parent::collectExpandableDatas($param, SEXE_FEED);
|
|
}
|
|
|
|
protected function parseRSSItem($newsItem) {
|
|
$item = new Item();
|
|
$item->title = trim($newsItem->title);
|
|
// $this->message("browsing item ".var_export($newsItem, true));
|
|
if(empty($newsItem->guid)) {
|
|
$item->uri = $newsItem->link;
|
|
} else {
|
|
$item->uri = $newsItem->guid;
|
|
}
|
|
// now load that uri from cache
|
|
// $this->message("now loading page ".$item->uri);
|
|
// $articlePage = str_get_html($this->get_cached($item->uri));
|
|
|
|
// $content = $articlePage->find('.post-container', 0);
|
|
$item->content = $newsItem->description;
|
|
$item->name = $newsItem->author;
|
|
$item->timestamp = $this->RSS_2_0_time_to_timestamp($newsItem);
|
|
return $item;
|
|
}
|
|
public function getCacheDuration(){
|
|
return 7200; // 2h hours
|
|
}
|
|
}
|