<?php
/**
* RssBridgeOpenClassrooms
* Retrieve lastest tutorials from OpenClassrooms.
* Returns the most recent tutorials, sorting by date (most recent first).
* 2014-05-25
*
* @name OpenClassrooms Bridge
* @homepage http://fr.openclassrooms.com/
* @description Returns latest tutorials from OpenClassrooms.
* @maintainer sebsauvage
* @use1(u="informatique or sciences")
*/
class OpenClassroomsBridge extends BridgeAbstract{

    public function collectData(array $param){
        if ($param['u']!='informatique' && $param['u']!='sciences')
        {
            $this->returnError('Error: You must chose "informatique" or "science".', 404);
        }
    
        $html = '';
        $link = 'http://fr.openclassrooms.com/'.$param['u'].'/cours?title=&sort=updatedAt+desc';

        $html = file_get_html($link) or $this->returnError('Could not request OpenClassrooms.', 404);

        foreach($html->find('li.col6') as $element) {
                $item = new \Item();
                $item->uri = 'http://fr.openclassrooms.com'.$element->find('a', 0)->href;
                $item->title = $element->find('div.courses-content strong', 0)->innertext;
                $item->content = $element->find('span.course-tags', 0)->innertext;
                $this->items[] = $item;
        }
    }

    public function getName(){
        return 'OpenClassrooms';
    }

    public function getURI(){
        return 'http://fr.openclassrooms.com';
    }

    public function getCacheDuration(){
        return 21600; // 6 hours
    }
}