mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-16 13:34:11 +02:00
Reformat codebase v4 (#2872)
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
@@ -1,40 +1,43 @@
|
||||
<?php
|
||||
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.
|
||||
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.
|
||||
(http://www.viadeo.com/fr/company/<strong style="font-weight:bold;">apple</strong>)';
|
||||
|
||||
const PARAMETERS = array( array(
|
||||
'c' => array(
|
||||
'name' => 'Company name',
|
||||
'exampleValue' => 'apple',
|
||||
'required' => true
|
||||
)
|
||||
));
|
||||
const PARAMETERS = [ [
|
||||
'c' => [
|
||||
'name' => 'Company name',
|
||||
'exampleValue' => 'apple',
|
||||
'required' => true
|
||||
]
|
||||
]];
|
||||
|
||||
public function collectData(){
|
||||
// Redirects to https://emploi.lefigaro.fr/recherche/entreprises
|
||||
$url = sprintf('%sfr/company/%s', self::URI, $this->getInput('c'));
|
||||
public function collectData()
|
||||
{
|
||||
// Redirects to https://emploi.lefigaro.fr/recherche/entreprises
|
||||
$url = sprintf('%sfr/company/%s', self::URI, $this->getInput('c'));
|
||||
|
||||
$html = getSimpleHTMLDOM($url);
|
||||
$html = getSimpleHTMLDOM($url);
|
||||
|
||||
// TODO: Fix broken xpath selector
|
||||
$elements = $html->find('//*[@id="company-newsfeed"]/ul/li');
|
||||
// TODO: Fix broken xpath selector
|
||||
$elements = $html->find('//*[@id="company-newsfeed"]/ul/li');
|
||||
|
||||
foreach($elements as $element) {
|
||||
$title = $element->find('p', 0)->innertext;
|
||||
if(!$title) {
|
||||
continue;
|
||||
}
|
||||
$item = array();
|
||||
$item['uri'] = $url;
|
||||
$item['title'] = mb_substr($element->find('p', 0)->innertext, 0, 100);
|
||||
$item['content'] = $element->find('p', 0)->innertext;;
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user