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
|
<?php
namespace Providers;
require_once('XmlFeed.php');
require_once('Item.php');
class Rss extends \Providers\XmlFeed {
protected function _getFeedUrl($feed) {
$config = json_decode(file_get_contents('../config/rss.json'), TRUE);
if (isset($config[$feed])) {
return $config[$feed];
}
return NULL;
}
protected function _getCachePath() {
return '../cache/rss.%s';
}
protected function _parseFeedContent($feed) {
$feedItems = $feed->channel->item ?: $feed->entry;
$items = [];
foreach ($feedItems as $item) {
$items[] = $item->asXML();
}
return $items;
}
protected function _mapItems($content) {
$items = [];
foreach ($content as $contentString) {
$itemString = str_replace(['content:encoded>', '<dc:', '</dc:', '<media:', '</media:', '<wfw:', '</wfw:'], ['content>', '<', '</', '<', '</', '<', '</'], $contentString);
$item = new \SimpleXMLElement($itemString);
$itemObject = new Item();
$itemObject->ID = strval($item->id ?: $item->guid) ?: ltrim(parse_url(strval($item->link))['path'], '/');
$itemObject->Title = strval($item->title);
$itemObject->Time = strval($item->published ?: $item->pubDate ?: $item->updated);
$itemObject->Text = strval($item->summary ?: $item->description ?: $item->content) ?: ($item->description ?: $item->content)->children()->asXML();
$itemObject->Link = strval(isset($item->link['href']) ? $item->link->attributes()['href'] : $item->link);
$itemObject->Author = strval($item->creator ? $item->creator : (is_string($item->author) ? $item->author : $item->author->name));
$items[] = $itemObject;
}
return $items;
}
public function title() {
$cacheFile = sprintf($this->_getCachePath() . '.title', $this->_feed);
if (!file_exists($cacheFile)) {
$this->_fetchItems();
}
if ($this->_feedXml) {
$title = strval($this->_feedXml->title ?: $this->_feedXml->channel->title);
file_put_contents($cacheFile, $title);
return $title;
} else {
return file_get_contents($cacheFile);
}
}
}
?>
|