Rss-Bridge/bridges/OpenClassroomsBridge.php

56 lines
1.7 KiB
PHP
Raw Normal View History

2013-12-16 09:07:48 +01:00
<?php
class OpenClassroomsBridge extends BridgeAbstract{
public function loadMetadatas() {
$this->maintainer = "sebsauvage";
$this->name = "OpenClassrooms Bridge";
$this->uri = "https://openclassrooms.com/";
$this->description = "Returns latest tutorials from OpenClassrooms.";
$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'
)
)
);
}
2013-12-16 09:07:48 +01:00
public function collectData(array $param){
2015-10-30 18:27:49 +01:00
if (empty($param['u']))
{
$this->returnServerError('Error: You must chose a category.');
}
2013-12-16 09:07:48 +01:00
$html = '';
2015-10-30 18:27:49 +01:00
$link = 'https://openclassrooms.com/courses?categories='.$param['u'].'&title=&sort=updatedAt+desc';
2013-12-16 09:07:48 +01: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) {
2013-12-16 09:07:48 +01:00
$item = new \Item();
2015-10-30 18:27:49 +01:00
$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
}
}