summaryrefslogtreecommitdiff
path: root/bridges/LinkedInCompanyBridge.php
blob: e629211d86b365262e1db01c6da3a35ff364c034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
class LinkedInCompanyBridge extends BridgeAbstract {

	const MAINTAINER = 'regisenguehard';
	const NAME = 'LinkedIn Company';
	const URI = 'https://www.linkedin.com/';
	const CACHE_TIMEOUT = 21600; //6
	const DESCRIPTION = 'Returns most recent actus from Company on LinkedIn.
 (https://www.linkedin.com/company/<strong style=\"font-weight:bold;\">apple</strong>)';

	const PARAMETERS = array( array(
		'c' => array(
			'name' => 'Company name',
			'required' => true
		)
	));

	public function collectData(){
		$html = '';
		$link = self::URI . 'company/' . $this->getInput('c');

		$html = getSimpleHTMLDOM($link)
			or returnServerError('Could not request LinkedIn.');

		foreach($html->find('//*[@id="my-feed-post"]/li') as $element) {
			$title = $element->find('span.share-body', 0)->innertext;
			if($title) {
				$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);
				$this->items[] = $item;
				$i++;
			}
		}
	}
}