mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[XPathAbstract] Fix relative links in fetched HTML (#3401)
* [core] Make defaultLinkTo compatible with DOMDocument * [XPathAbstract] Fix relative links in fetched HTML
This commit is contained in:
parent
ecd717cf58
commit
096c3bca73
@ -387,6 +387,9 @@ abstract class XPathAbstract extends BridgeAbstract
|
||||
libxml_clear_errors();
|
||||
libxml_use_internal_errors(false);
|
||||
|
||||
// fix relative links
|
||||
defaultLinkTo($webPageHtml, $this->feedUri);
|
||||
|
||||
$xpath = new \DOMXPath($webPageHtml);
|
||||
|
||||
$this->feedName = $this->provideFeedTitle($xpath);
|
||||
|
11
lib/html.php
11
lib/html.php
@ -185,14 +185,17 @@ function defaultLinkTo($dom, $url)
|
||||
$dom = str_get_html($dom);
|
||||
}
|
||||
|
||||
foreach ($dom->find('img') as $image) {
|
||||
$image->src = urljoin($url, $image->src);
|
||||
// Use long method names for compatibility with simple_html_dom and DOMDocument
|
||||
|
||||
foreach ($dom->getElementsByTagName('img') as $image) {
|
||||
$image->setAttribute('src', urljoin($url, $image->getAttribute('src')));
|
||||
}
|
||||
|
||||
foreach ($dom->find('a') as $anchor) {
|
||||
$anchor->href = urljoin($url, $anchor->href);
|
||||
foreach ($dom->getElementsByTagName('a') as $anchor) {
|
||||
$anchor->setAttribute('href', urljoin($url, $anchor->getAttribute('href')));
|
||||
}
|
||||
|
||||
// Will never be true for DOMDocument
|
||||
if ($string_convert) {
|
||||
$dom = $dom->outertext;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user