2015-12-22 18:03:46 +01:00
< ? php
2016-08-29 23:42:26 +02:00
class ViadeoCompanyBridge extends BridgeAbstract {
2015-12-22 18:03:46 +01:00
2016-08-30 11:23:55 +02:00
const MAINTAINER = " regisenguehard " ;
const NAME = " Viadeo Company " ;
const URI = " https://www.viadeo.com/ " ;
const DESCRIPTION = " Returns most recent actus from Company on Viadeo. (http://www.viadeo.com/fr/company/<strong style= \" font-weight:bold; \" >apple</strong>) " ;
2015-12-22 18:03:46 +01:00
2016-08-30 11:23:55 +02:00
const PARAMETERS = array ( array (
2016-08-27 21:03:26 +02:00
'c' => array (
2016-08-22 01:25:56 +02:00
'name' => 'Company name' ,
'required' => true
2016-08-27 21:03:26 +02:00
)
));
2015-12-22 18:03:46 +01:00
2016-08-25 01:24:53 +02:00
public function collectData (){
2015-12-22 18:03:46 +01:00
$html = '' ;
2016-08-30 11:23:55 +02:00
$link = self :: URI . 'fr/company/' . $this -> getInput ( 'c' );
2015-12-22 18:03:46 +01:00
2016-08-29 23:42:26 +02:00
$html = $this -> getSimpleHTMLDOM ( $link )
or $this -> returnServerError ( 'Could not request Viadeo.' );
2015-12-22 18:03:46 +01:00
foreach ( $html -> find ( '//*[@id="company-newsfeed"]/ul/li' ) as $element ) {
$title = $element -> find ( 'p' , 0 ) -> innertext ;
if ( $title ) {
2016-08-22 18:55:59 +02:00
$item = array ();
$item [ 'uri' ] = $link ;
$item [ 'title' ] = mb_substr ( $element -> find ( 'p' , 0 ) -> innertext , 0 , 100 );
$item [ 'content' ] = $element -> find ( 'p' , 0 ) -> innertext ;;
2015-12-22 18:03:46 +01:00
$this -> items [] = $item ;
$i ++ ;
}
}
}
public function getCacheDuration (){
return 21600 ; // 6 hours
}
}