2013-12-16 09:07:48 +01:00
|
|
|
<?php
|
|
|
|
class OpenClassroomsBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "sebsauvage";
|
|
|
|
$this->name = "OpenClassrooms Bridge";
|
|
|
|
$this->uri = "https://openclassrooms.com/";
|
|
|
|
$this->description = "Returns latest tutorials from OpenClassrooms.";
|
|
|
|
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'u'=>array(
|
|
|
|
'name'=>'Catégorie',
|
|
|
|
'type'=>'list',
|
|
|
|
'values'=>array(
|
|
|
|
'Arts & Culture'=>'arts',
|
|
|
|
'Code'=>'code',
|
|
|
|
'Design'=>'design',
|
|
|
|
'Entreprise'=>'business',
|
|
|
|
'Numérique'=>'digital',
|
|
|
|
'Sciences'=>'sciences',
|
|
|
|
'Sciences Humaines'=>'humainities',
|
|
|
|
'Systèmes d\'information'=>'it',
|
|
|
|
'Autres'=>'others'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
|
|
|
$param=$this->parameters[$this->queriedContext];
|
|
|
|
if (empty($param['u']['value']))
|
2014-02-09 15:15:15 +01:00
|
|
|
{
|
2016-08-17 14:45:08 +02:00
|
|
|
$this->returnServerError('Error: You must chose a category.');
|
2014-02-09 15:15:15 +01:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-12-16 09:07:48 +01:00
|
|
|
$html = '';
|
2016-08-25 01:24:53 +02:00
|
|
|
$link = 'https://openclassrooms.com/courses?categories='.$param['u']['value'].'&title=&sort=updatedAt+desc';
|
2013-12-16 09:07:48 +01:00
|
|
|
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request OpenClassrooms.');
|
2013-12-16 09:07:48 +01:00
|
|
|
|
2015-10-30 18:27:49 +01:00
|
|
|
foreach($html->find('.courseListItem') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = 'https://openclassrooms.com'.$element->find('a', 0)->href;
|
|
|
|
$item['title'] = $element->find('h3', 0)->plaintext;
|
|
|
|
$item['content'] = $element->find('slidingItem__descriptionContent', 0)->plaintext;
|
2013-12-16 09:07:48 +01:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|