mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
Two fixes to DeutscheWelle (#3954)
* [DeutscheWelleBridge] Small URL fix. Reset the $item's uri value after removing the tracking query string. * [DeutscheWelleBridge] Fix "hero" images. The main "hero" image for each article has src="" and relies on the srcset attribute for the browser to pick the best image based on the actual displayed size. The call to `defaultLinkTo()` replaces the empty src with the article's link, which, not being an image, breaks the image. This change resets the src's of any such images back to "".
This commit is contained in:
parent
7931f37a83
commit
66a6847fd0
@ -73,12 +73,12 @@ class DeutscheWelleBridge extends FeedExpander
|
||||
|
||||
protected function parseItem(array $item)
|
||||
{
|
||||
$parsedUrl = parse_url($item['uri']);
|
||||
unset($parsedUrl['query']);
|
||||
$url = $this->unparseUrl($parsedUrl);
|
||||
$parsedUri = parse_url($item['uri']);
|
||||
unset($parsedUri['query']);
|
||||
$item['uri'] = $this->unparseUrl($parsedUri);
|
||||
|
||||
$page = getSimpleHTMLDOM($url);
|
||||
$page = defaultLinkTo($page, $url);
|
||||
$page = getSimpleHTMLDOM($item['uri']);
|
||||
$page = defaultLinkTo($page, $item['uri']);
|
||||
|
||||
$article = $page->find('article', 0);
|
||||
|
||||
@ -112,6 +112,13 @@ class DeutscheWelleBridge extends FeedExpander
|
||||
$img->height = null;
|
||||
}
|
||||
|
||||
// remove bad img src's added by defaultLinkTo() above
|
||||
// these images should have src="" and will then use
|
||||
// the srcset attribute to load the best image for the displayed size
|
||||
foreach ($article->find('figure > picture > img') as $img) {
|
||||
$img->src = '';
|
||||
}
|
||||
|
||||
// replace lazy-loaded images
|
||||
foreach ($article->find('figure.placeholder-image') as $figure) {
|
||||
$img = $figure->find('img', 0);
|
||||
|
Loading…
Reference in New Issue
Block a user