Rss-Bridge/bridges/Sexactu.php

58 lines
1.6 KiB
PHP
Raw Normal View History

2014-02-04 17:54:18 +01:00
<?php
/**
*
* @name Sexactu
* @description Sexactu via rss-bridge
* @update 04/02/2014
*/
class LesJoiesDuCodeBridge extends BridgeAbstract{
public function collectData(array $param){
$html = file_get_html('http://http://www.gqmagazine.fr/sexactu') or $this->returnError('Could not request http://www.gqmagazine.fr/sexactu.', 404);
foreach($html->find('div.content-holder ul li') as $element) {
$item = new Item();
$titreElement = $element->find('.title-holder .article-title a');
2014-02-04 18:00:11 +01:00
$titre = $titreElement->innertext
$url = $titreElement->href;
2014-02-04 17:54:18 +01:00
$temp = $element->find('div.text-container', 0);
$content = $temp->innertext;
2014-02-04 18:00:11 +01:00
$auteur = $element->find('div.header-holder', 0);
$pos = strpos($auteur->innertext, "par");
2014-02-04 17:54:18 +01:00
if($pos > 0)
{
$auteur = trim(str_replace("*/", "", substr($auteur->innertext, ($pos + 2))));
$item->name = $auteur;
}
$item->content .= trim($content);
$item->uri = $url;
$item->title = trim($titre);
$this->items[] = $item;
}
}
public function getName(){
return 'Sexactu';
}
public function getURI(){
return 'http://http://www.gqmagazine.fr/sexactu/';
}
public function getCacheDuration(){
return 7200; // 2h hours
}
public function getDescription(){
return "Sexactu via rss-bridge";
}
}
?>