1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
<?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);
}
// prepare/massage the xml to make it more acceptable
$problematicStrings = [
' ',
'»',
'’',
];
$xmlString = str_replace($problematicStrings, '', $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;
}
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();
}
}
|