[FeedExpander] Add prepareXml() overridable function (#4485)

* FeedExpander: Remove tailing content in XML

- Move preprocessing code into overridable preprocessXml()
- Auto-remove trailing data after root xml node

* FeedExpander: Add PR reference with use case

* FeedExpander: Code linting

* [FeedExpander] Keep content at end of document for now

Will add back later if more sites have the same issue

* [FeedExpander] prepareXml: Add type hints
This commit is contained in:
ORelio 2025-04-01 00:42:08 +02:00 committed by GitHub
parent 26a4c255d3
commit db42f2786c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,14 +22,7 @@ abstract class FeedExpander extends BridgeAbstract
if ($xmlString === '') {
throw new \Exception(sprintf('Unable to parse xml from `%s` because we got the empty string', $url), 10);
}
// prepare/massage the xml to make it more acceptable
$problematicStrings = [
' ',
'»',
'’',
];
$xmlString = str_replace($problematicStrings, '', $xmlString);
$xmlString = $this->prepareXml($xmlString);
$feedParser = new FeedParser();
try {
$this->feed = $feedParser->parseFeed($xmlString);
@ -59,6 +52,23 @@ abstract class FeedExpander extends BridgeAbstract
return $item;
}
/**
* Prepare XML document to make it more acceptable by the parser
* This method can be overriden by bridges to change this behavior
*
* @return string
*/
protected function prepareXml(string $xmlString): string
{
// Remove problematic escape sequences
$problematicStrings = [
' ',
'»',
'’',
];
return str_replace($problematicStrings, '', $xmlString);
}
public function getURI()
{
return $this->feed['uri'] ?? parent::getURI();