rss-bridge/lib/FeedExpander.php
ORelio db42f2786c
[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
2025-04-01 00:42:08 +02:00

87 lines
2.4 KiB
PHP

<?php
/**
* Expands an existing feed
*/
abstract class FeedExpander extends BridgeAbstract
{
private array $feed;
public function collectExpandableDatas(string $url, $maxItems = -1, $headers = [])
{
if (!$url) {
throw new \Exception('There is no $url for this RSS expander');
}
$maxItems = (int) $maxItems;
if ($maxItems === -1) {
$maxItems = 999;
}
$accept = [MrssFormat::MIME_TYPE, AtomFormat::MIME_TYPE, '*/*'];
$httpHeaders = array_merge(['Accept: ' . implode(', ', $accept)], $headers);
$xmlString = getContents($url, $httpHeaders);
if ($xmlString === '') {
throw new \Exception(sprintf('Unable to parse xml from `%s` because we got the empty string', $url), 10);
}
$xmlString = $this->prepareXml($xmlString);
$feedParser = new FeedParser();
try {
$this->feed = $feedParser->parseFeed($xmlString);
} catch (\Exception $e) {
// FeedMergeBridge relies on this string
throw new \Exception(sprintf('Failed to parse xml from %s: %s', $url, create_sane_exception_message($e)));
}
$items = array_slice($this->feed['items'], 0, $maxItems);
// todo: extract parse logic out from FeedParser
foreach ($items as $item) {
// Give bridges a chance to modify the item
$item = $this->parseItem($item);
if ($item) {
$this->items[] = $item;
}
}
}
/**
* This method is overridden by bridges
*
* @return array
*/
protected function parseItem(array $item)
{
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 = [
'&nbsp;',
'&raquo;',
'&rsquo;',
];
return str_replace($problematicStrings, '', $xmlString);
}
public function getURI()
{
return $this->feed['uri'] ?? parent::getURI();
}
public function getName()
{
return $this->feed['title'] ?? parent::getName();
}
public function getIcon()
{
return $this->feed['icon'] ?? parent::getIcon();
}
}