2015-12-22 18:03:46 +01:00
< ? php
class LinkedInCompany extends BridgeAbstract {
public function loadMetadatas () {
$this -> maintainer = " regisenguehard " ;
$this -> name = " LinkedIn Company " ;
$this -> uri = " https://www.linkedin.com/ " ;
2015-12-23 16:14:28 +01:00
$this -> description = " Returns most recent actus from Company on LinkedIn. (https://www.linkedin.com/company/<strong style= \" font-weight:bold; \" >apple</strong>) " ;
2015-12-22 18:03:46 +01:00
2016-08-22 01:25:56 +02:00
$this -> parameters [] = array (
'c' => array (
'name' => 'Company name' ,
'required' => true
)
);
2015-12-22 18:03:46 +01:00
}
2016-08-25 01:24:53 +02:00
public function collectData (){
$param = $this -> parameters [ $this -> queriedContext ];
2015-12-22 18:03:46 +01:00
$html = '' ;
2016-08-25 01:24:53 +02:00
$link = 'https://www.linkedin.com/company/' . $param [ 'c' ][ 'value' ];
2015-12-22 18:03:46 +01:00
2016-07-08 19:06:35 +02:00
$html = $this -> getSimpleHTMLDOM ( $link ) or $this -> returnServerError ( 'Could not request LinkedIn.' );
2015-12-22 18:03:46 +01:00
foreach ( $html -> find ( '//*[@id="my-feed-post"]/li' ) as $element ) {
$title = $element -> find ( 'span.share-body' , 0 ) -> innertext ;
if ( $title ) {
2016-08-22 18:55:59 +02:00
$item = array ();
$item [ 'uri' ] = $link ;
$item [ 'title' ] = mb_substr ( strip_tags ( $element -> find ( 'span.share-body' , 0 ) -> innertext ), 0 , 100 );
$item [ 'content' ] = strip_tags ( $element -> find ( 'span.share-body' , 0 ) -> innertext );
2015-12-22 18:03:46 +01:00
$this -> items [] = $item ;
$i ++ ;
}
}
}
public function getCacheDuration (){
2015-12-23 16:14:28 +01:00
return 21600 ; // 6 hours
2015-12-22 18:03:46 +01:00
}
}