Rss-Bridge/bridges/ViadeoCompany.php
Pierre Mazière de1b39c8e5 [core + bridges] get rid of loadMetadata
if a bridge needs to modify some of the data that were initialized
there, ::__construct() should be used instead.

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
2016-08-28 13:05:03 +02:00

40 lines
1.3 KiB
PHP

<?php
class ViadeoCompany extends BridgeAbstract{
public $maintainer = "regisenguehard";
public $name = "Viadeo Company";
public $uri = "https://www.viadeo.com/";
public $description = "Returns most recent actus from Company on Viadeo. (http://www.viadeo.com/fr/company/<strong style=\"font-weight:bold;\">apple</strong>)";
public $parameters = array( array(
'c'=>array(
'name'=>'Company name',
'required'=>true
)
));
public function collectData(){
$param=$this->parameters[$this->queriedContext];
$html = '';
$link = 'http://www.viadeo.com/fr/company/'.$param['c']['value'];
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request Viadeo.');
foreach($html->find('//*[@id="company-newsfeed"]/ul/li') as $element) {
$title = $element->find('p', 0)->innertext;
if ($title) {
$item = array();
$item['uri'] = $link;
$item['title'] = mb_substr($element->find('p', 0)->innertext, 0 ,100);
$item['content'] = $element->find('p', 0)->innertext;;
$this->items[] = $item;
$i++;
}
}
}
public function getCacheDuration(){
return 21600; // 6 hours
}
}