2013-12-16 09:07:48 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RssBridgeOpenClassrooms
|
|
|
|
* Retrieve lastest tutorials from OpenClassrooms.
|
|
|
|
* Returns the most recent tutorials, sorting by date (most recent first).
|
|
|
|
*
|
|
|
|
* @name OpenClassrooms Bridge
|
|
|
|
* @description Returns latest tutorials from OpenClassrooms.
|
2014-05-21 19:15:52 +02:00
|
|
|
* @maintainer -
|
2013-12-16 09:07:48 +01:00
|
|
|
* @use1(u="informatique or sciences")
|
|
|
|
*/
|
|
|
|
class OpenClassroomsBridge extends BridgeAbstract{
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
2014-02-09 15:15:15 +01:00
|
|
|
if ($param['u']!='informatique' && $param['u']!='sciences')
|
|
|
|
{
|
|
|
|
$this->returnError('Error: You must chose "informatique" or "science".', 404);
|
|
|
|
}
|
|
|
|
|
2013-12-16 09:07:48 +01:00
|
|
|
$html = '';
|
2014-02-09 15:15:15 +01:00
|
|
|
$link = 'http://fr.openclassrooms.com/'.$param['u'].'/cours?title=&sort=updatedAt+desc';
|
2013-12-16 09:07:48 +01:00
|
|
|
|
|
|
|
$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
|
|
|
|
}
|
|
|
|
}
|