mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
95 lines
3.9 KiB
PHP
95 lines
3.9 KiB
PHP
|
<?php
|
||
|
|
||
|
class ABolaBridge extends BridgeAbstract
|
||
|
{
|
||
|
const NAME = 'A Bola';
|
||
|
const URI = 'https://abola.pt/';
|
||
|
const DESCRIPTION = 'Returns news from the Portuguese sports newspaper A BOLA.PT';
|
||
|
const MAINTAINER = 'rmscoelho';
|
||
|
const CACHE_TIMEOUT = 300; // 5 minutes
|
||
|
const PARAMETERS = [
|
||
|
[
|
||
|
'feed' => [
|
||
|
'name' => 'News Feed',
|
||
|
'type' => 'list',
|
||
|
'title' => 'Feeds from the Portuguese sports newspaper A BOLA.PT',
|
||
|
'values' => [
|
||
|
'Últimas' => 'Nnh/Noticias',
|
||
|
'Seleção Nacional' => 'Selecao/Noticias',
|
||
|
'Futebol Nacional' => [
|
||
|
'Notícias' => 'Nacional/Noticias',
|
||
|
'Primeira Liga' => 'Nacional/Liga/Noticias',
|
||
|
'Liga 2' => 'Nacional/Liga2/Noticias',
|
||
|
'Liga 3' => 'Nacional/Liga3/Noticias',
|
||
|
'Liga Revelação' => 'Nacional/Liga-Revelacao/Noticias',
|
||
|
'Campeonato de Portugal' => 'Nacional/Campeonato-Portugal/Noticias',
|
||
|
'Distritais' => 'Nacional/Distritais/Noticias',
|
||
|
'Taça de Portugal' => 'Nacional/TPortugal/Noticias',
|
||
|
'Futebol Feminino' => 'Nacional/FFeminino/Noticias',
|
||
|
'Futsal' => 'Nacional/Futsal/Noticias',
|
||
|
],
|
||
|
'Futebol Internacional' => [
|
||
|
'Notícias' => 'Internacional/Noticias/Noticias',
|
||
|
'Liga dos Campeões' => 'Internacional/Liga-dos-campeoes/Noticias',
|
||
|
'Liga Europa' => 'Internacional/Liga-europa/Noticias',
|
||
|
'Liga Conferência' => 'Internacional/Liga-conferencia/Noticias',
|
||
|
'Liga das Nações' => 'Internacional/Liga-das-nacoes/Noticias',
|
||
|
'UEFA Youth League' => 'Internacional/Uefa-Youth-League/Noticias',
|
||
|
],
|
||
|
'Mercado' => 'Mercado',
|
||
|
'Modalidades' => 'Modalidades/Noticias',
|
||
|
'Motores' => 'Motores/Noticias',
|
||
|
]
|
||
|
]
|
||
|
]
|
||
|
];
|
||
|
|
||
|
public function getIcon()
|
||
|
{
|
||
|
return 'https://abola.pt/img/icons/favicon-96x96.png';
|
||
|
}
|
||
|
|
||
|
public function getURI()
|
||
|
{
|
||
|
switch ($this->queriedContext) {
|
||
|
case 'feed':
|
||
|
$url = self::URI . $this->getInput('feed')[0] . '.html';
|
||
|
break;
|
||
|
default:
|
||
|
$url = self::URI;
|
||
|
}
|
||
|
return $url;
|
||
|
}
|
||
|
|
||
|
public function collectData()
|
||
|
{
|
||
|
$url = sprintf('https://abola.pt/%s', $this->getInput('feed'));
|
||
|
$dom = getSimpleHTMLDOM($url);
|
||
|
$dom = $dom->find('div#body_Todas1_upNoticiasTodas', 0);
|
||
|
if (!$dom) {
|
||
|
throw new \Exception(sprintf('Unable to find css selector on `%s`', $url));
|
||
|
}
|
||
|
$dom = defaultLinkTo($dom, $this->getURI());
|
||
|
foreach ($dom->find('div.media.mt-15') as $article) {
|
||
|
//Get thumbnail
|
||
|
$image = $article->find('.media-img', 0)->style;
|
||
|
$image = preg_replace('/background-image: url\(/i', '', $image);
|
||
|
$image = substr_replace($image, '', -4);
|
||
|
$image = preg_replace('/https:\/\//i', '', $image);
|
||
|
$image = preg_replace('/www\./i', '', $image);
|
||
|
$image = preg_replace('/\/\//', '', $image);
|
||
|
$image = substr($image, 7);
|
||
|
$image = 'https://' . $image;
|
||
|
//Content
|
||
|
$content = '<p>' . $article->find('.media-texto > span', 0)->plaintext . '</p>';
|
||
|
$content = $content . '<br><img src="' . $image . '" alt="' . $article->find('h2', 0)->plaintext . '" />';
|
||
|
$a = $article->find('.media-body > a', 0);
|
||
|
$this->items[] = [
|
||
|
'title' => $a->find('h4 span', 0)->plaintext,
|
||
|
'uri' => $a->href,
|
||
|
'content' => $content
|
||
|
];
|
||
|
}
|
||
|
}
|
||
|
}
|