2015-12-22 20:03:46 +03:00
|
|
|
<?php
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
class ViadeoCompanyBridge extends BridgeAbstract
|
|
|
|
{
|
|
|
|
const MAINTAINER = 'regisenguehard';
|
|
|
|
const NAME = 'Viadeo Company';
|
|
|
|
const URI = 'https://www.viadeo.com/';
|
|
|
|
const CACHE_TIMEOUT = 21600; // 6h
|
|
|
|
const DESCRIPTION = 'Returns most recent actus from Company on Viadeo.
|
2017-02-11 18:16:56 +03:00
|
|
|
(http://www.viadeo.com/fr/company/<strong style="font-weight:bold;">apple</strong>)';
|
2015-12-22 20:03:46 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
const PARAMETERS = [ [
|
|
|
|
'c' => [
|
|
|
|
'name' => 'Company name',
|
|
|
|
'exampleValue' => 'apple',
|
|
|
|
'required' => true
|
|
|
|
]
|
|
|
|
]];
|
2015-12-22 20:03:46 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
public function collectData()
|
|
|
|
{
|
|
|
|
// Redirects to https://emploi.lefigaro.fr/recherche/entreprises
|
|
|
|
$url = sprintf('%sfr/company/%s', self::URI, $this->getInput('c'));
|
2015-12-22 20:03:46 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$html = getSimpleHTMLDOM($url);
|
2015-12-22 20:03:46 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
// TODO: Fix broken xpath selector
|
|
|
|
$elements = $html->find('//*[@id="company-newsfeed"]/ul/li');
|
2022-04-13 00:37:30 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
foreach ($elements as $element) {
|
|
|
|
$title = $element->find('p', 0)->innertext;
|
|
|
|
if (!$title) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$item = [];
|
|
|
|
$item['uri'] = $url;
|
|
|
|
$item['title'] = mb_substr($element->find('p', 0)->innertext, 0, 100);
|
|
|
|
$item['content'] = $element->find('p', 0)->innertext;
|
|
|
|
;
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
2015-12-22 20:03:46 +03:00
|
|
|
}
|