<?php
/**
*
* @name Les 400 Culs 
* @description La planète sexe vue par Agnès Girard via rss-bridge
* @update 20/02/2014
*/
define("SEXE", "http://sexes.blogs.liberation.fr");
class Les400Culs extends HttpCachingBridgeAbstract{

    public function collectData(array $param){
        $html = file_get_html($this->getURI()) or $this->returnError('Could not request '.$this->getURI(), 404);

        foreach($html->find('#alpha-inner') as $articles) {
            foreach($articles->find('div.entry') as $article) {
                $header = $article->find('h3.entry-header a', 0);
                $content = $article->find('div.entry-content', 0);


                $item = new Item();
                $item->title = trim($header->innertext);
                $item->uri = $header->href;
                $item->name = "Agnès Girard";
                // date is stored outside this node !
                $dateHeader = $article->prev_sibling();
                // http://stackoverflow.com/a/6239199/15619 (strtotime is typical amercian bullshit)
                $item->timestamp = DateTime::createFromFormat('d/m/Y', $dateHeader->innertext)->getTimestamp();


                $linkForMore = $content->find('p.entry-more-link a',0);
                if($linkForMore==null) {
                    $item->content = $content->innertext;
                } else {
                    $pageAddress = $linkForMore->href;
                    $articlePage = str_get_html($this->get_cached($linkForMore->href));
                    if($articlePage==null) {
                        $item->content = $content->innertext."\n<p>".$linkForMore->outertext."</p>";
                    } else {
                        // TODO use some caching there !
                        $fullContent = $articlePage->find('div.entry-content', 0);
                        $item->content = $fullContent->innertext;
                    }
                }
                $this->items[] = $item;
            }
       }
    }

    public function getName(){
        return 'Les 400 Culs';
    }

    public function getURI(){
        return SEXE;
    }

    public function getCacheDuration(){
        return 7200; // 2h hours
    }
    public function getDescription(){
        return "La planète sexe, vue et racontée par Agnès Giard. Et par rss-bridge";
    }
}