mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[PicalaBridge] Fix article without image (#3429)
Co-authored-by: Clement Desmidt <clement@desmidt.fr>
This commit is contained in:
parent
ca351edbfe
commit
e859497d6a
@ -58,17 +58,26 @@ class PicalaBridge extends BridgeAbstract
|
|||||||
{
|
{
|
||||||
$fullhtml = getSimpleHTMLDOM($this->getURI());
|
$fullhtml = getSimpleHTMLDOM($this->getURI());
|
||||||
foreach ($fullhtml->find('.list-container-category a') as $article) {
|
foreach ($fullhtml->find('.list-container-category a') as $article) {
|
||||||
$srcsets = explode(',', $article->find('img', 0)->getAttribute('srcset'));
|
$firstImage = $article->find('img', 0);
|
||||||
$image = explode(' ', trim(array_shift($srcsets)))[0];
|
$image = null;
|
||||||
|
if ($firstImage !== null) {
|
||||||
|
$srcsets = explode(',', $firstImage->getAttribute('srcset'));
|
||||||
|
$image = explode(' ', trim(array_shift($srcsets)))[0];
|
||||||
|
}
|
||||||
|
|
||||||
$item = [];
|
$item = [];
|
||||||
$item['uri'] = self::URI . $article->href;
|
$item['uri'] = self::URI . $article->href;
|
||||||
$item['title'] = $article->find('h2', 0)->plaintext;
|
$item['title'] = $article->find('h2', 0)->plaintext;
|
||||||
$item['content'] = sprintf(
|
if ($image === null) {
|
||||||
'<img src="%s" /><br>%s',
|
$item['content'] = $article->find('.teaser__text', 0)->plaintext;
|
||||||
$image,
|
} else {
|
||||||
$article->find('.teaser__text', 0)->plaintext
|
$item['content'] = sprintf(
|
||||||
);
|
'<img src="%s" /><br>%s',
|
||||||
|
$image,
|
||||||
|
$article->find('.teaser__text', 0)->plaintext
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user