2013-12-16 09:07:48 +01:00
|
|
|
<?php
|
|
|
|
class OpenClassroomsBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "sebsauvage";
|
|
|
|
public $name = "OpenClassrooms Bridge";
|
|
|
|
public $uri = "https://openclassrooms.com/";
|
|
|
|
public $description = "Returns latest tutorials from OpenClassrooms.";
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $parameters = array( array(
|
|
|
|
'u'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'Catégorie',
|
|
|
|
'type'=>'list',
|
2016-08-29 20:16:00 +02:00
|
|
|
'required'=>true,
|
2016-08-22 01:25:56 +02:00
|
|
|
'values'=>array(
|
2016-08-27 21:03:26 +02:00
|
|
|
'Arts & Culture'=>'arts',
|
|
|
|
'Code'=>'code',
|
|
|
|
'Design'=>'design',
|
|
|
|
'Entreprise'=>'business',
|
|
|
|
'Numérique'=>'digital',
|
|
|
|
'Sciences'=>'sciences',
|
|
|
|
'Sciences Humaines'=>'humainities',
|
|
|
|
'Systèmes d\'information'=>'it',
|
|
|
|
'Autres'=>'others'
|
2016-08-22 01:25:56 +02:00
|
|
|
)
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-29 20:16:00 +02:00
|
|
|
public function getURI(){
|
|
|
|
return $this->uri.'/courses?categories='.$this->getInput('u').'&'
|
|
|
|
.'title=&sort=updatedAt+desc';
|
|
|
|
}
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-29 20:16:00 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->getURI())
|
|
|
|
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();
|
2016-08-29 20:16:00 +02:00
|
|
|
$item['uri'] = $this->uri.$element->find('a', 0)->href;
|
2016-08-22 18:55:59 +02:00
|
|
|
$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
|
|
|
|
}
|
|
|
|
}
|