mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[{Atom,Mrss}Format]: Generate using DomDocument (#2771)
* [AtomFormat]: Generate using DomDocument This will escape the HTML content for us as needed. * [MrssFormat]: Generate using DomDocument This will escape the HTML content for us as needed.
This commit is contained in:
parent
fb501652d5
commit
90d22f0d80
@ -9,6 +9,9 @@
|
|||||||
class AtomFormat extends FormatAbstract{
|
class AtomFormat extends FormatAbstract{
|
||||||
const MIME_TYPE = 'application/atom+xml';
|
const MIME_TYPE = 'application/atom+xml';
|
||||||
|
|
||||||
|
protected const ATOM_NS = 'http://www.w3.org/2005/Atom';
|
||||||
|
protected const MRSS_NS = 'http://search.yahoo.com/mrss/';
|
||||||
|
|
||||||
const LIMIT_TITLE = 140;
|
const LIMIT_TITLE = 140;
|
||||||
|
|
||||||
public function stringify(){
|
public function stringify(){
|
||||||
@ -17,26 +20,66 @@ class AtomFormat extends FormatAbstract{
|
|||||||
$urlPath = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : '';
|
$urlPath = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : '';
|
||||||
$urlRequest = (isset($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : '';
|
$urlRequest = (isset($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : '';
|
||||||
|
|
||||||
$feedUrl = $this->xml_encode($urlPrefix . $urlHost . $urlRequest);
|
$feedUrl = $urlPrefix . $urlHost . $urlRequest;
|
||||||
|
|
||||||
$extraInfos = $this->getExtraInfos();
|
$extraInfos = $this->getExtraInfos();
|
||||||
$title = $this->xml_encode($extraInfos['name']);
|
|
||||||
$uri = !empty($extraInfos['uri']) ? $extraInfos['uri'] : REPOSITORY;
|
$uri = !empty($extraInfos['uri']) ? $extraInfos['uri'] : REPOSITORY;
|
||||||
|
|
||||||
|
$document = new DomDocument('1.0', $this->getCharset());
|
||||||
|
$document->formatOutput = true;
|
||||||
|
$feed = $document->createElementNS(self::ATOM_NS, 'feed');
|
||||||
|
$feed->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:media', self::MRSS_NS);
|
||||||
|
$document->appendChild($feed);
|
||||||
|
|
||||||
|
$title = $document->createElement('title');
|
||||||
|
$title->setAttribute('type', 'text');
|
||||||
|
$title->appendChild($document->createTextNode($extraInfos['name']));
|
||||||
|
$feed->appendChild($title);
|
||||||
|
|
||||||
|
$id = $document->createElement('id');
|
||||||
|
$id->appendChild($document->createTextNode($feedUrl));
|
||||||
|
$feed->appendChild($id);
|
||||||
|
|
||||||
|
$uriparts = parse_url($uri);
|
||||||
|
if(!empty($extraInfos['icon'])) {
|
||||||
|
$iconUrl = $extraInfos['icon'];
|
||||||
|
} else {
|
||||||
|
$iconUrl = $uriparts['scheme'] . '://' . $uriparts['host'] . '/favicon.ico';
|
||||||
|
}
|
||||||
|
$icon = $document->createElement('icon');
|
||||||
|
$icon->appendChild($document->createTextNode($iconUrl));
|
||||||
|
$feed->appendChild($icon);
|
||||||
|
|
||||||
|
$logo = $document->createElement('logo');
|
||||||
|
$logo->appendChild($document->createTextNode($iconUrl));
|
||||||
|
$feed->appendChild($logo);
|
||||||
|
|
||||||
|
$feedTimestamp = gmdate(DATE_ATOM, $this->lastModified);
|
||||||
|
$updated = $document->createElement('updated');
|
||||||
|
$updated->appendChild($document->createTextNode($feedTimestamp));
|
||||||
|
$feed->appendChild($updated);
|
||||||
|
|
||||||
// since we can't guarantee that all items have an author,
|
// since we can't guarantee that all items have an author,
|
||||||
// a global feed author is mandatory
|
// a global feed author is mandatory
|
||||||
$feedAuthor = 'RSS-Bridge';
|
$feedAuthor = 'RSS-Bridge';
|
||||||
|
$author = $document->createElement('author');
|
||||||
|
$authorName = $document->createElement('name');
|
||||||
|
$authorName->appendChild($document->createTextNode($feedAuthor));
|
||||||
|
$author->appendChild($authorName);
|
||||||
|
$feed->appendChild($author);
|
||||||
|
|
||||||
$uriparts = parse_url($uri);
|
$linkAlternate = $document->createElement('link');
|
||||||
if(!empty($extraInfos['icon'])) {
|
$linkAlternate->setAttribute('rel', 'alternate');
|
||||||
$icon = $extraInfos['icon'];
|
$linkAlternate->setAttribute('type', 'text/html');
|
||||||
} else {
|
$linkAlternate->setAttribute('href', $uri);
|
||||||
$icon = $this->xml_encode($uriparts['scheme'] . '://' . $uriparts['host'] . '/favicon.ico');
|
$feed->appendChild($linkAlternate);
|
||||||
}
|
|
||||||
|
|
||||||
$uri = $this->xml_encode($uri);
|
$linkSelf = $document->createElement('link');
|
||||||
|
$linkSelf->setAttribute('rel', 'self');
|
||||||
|
$linkSelf->setAttribute('type', 'application/atom+xml');
|
||||||
|
$linkSelf->setAttribute('href', $feedUrl);
|
||||||
|
$feed->appendChild($linkSelf);
|
||||||
|
|
||||||
$entries = '';
|
|
||||||
foreach($this->getItems() as $item) {
|
foreach($this->getItems() as $item) {
|
||||||
$entryTimestamp = $item->getTimestamp();
|
$entryTimestamp = $item->getTimestamp();
|
||||||
$entryTitle = $item->getTitle();
|
$entryTitle = $item->getTitle();
|
||||||
@ -48,7 +91,7 @@ class AtomFormat extends FormatAbstract{
|
|||||||
$entryID = 'urn:sha1:' . $item->getUid();
|
$entryID = 'urn:sha1:' . $item->getUid();
|
||||||
|
|
||||||
if (empty($entryID)) // Fallback to provided URI
|
if (empty($entryID)) // Fallback to provided URI
|
||||||
$entryID = $this->xml_encode($entryUri);
|
$entryID = $entryUri;
|
||||||
|
|
||||||
if (empty($entryID)) // Fallback to title and content
|
if (empty($entryID)) // Fallback to title and content
|
||||||
$entryID = 'urn:sha1:' . hash('sha1', $entryTitle . $entryContent);
|
$entryID = 'urn:sha1:' . hash('sha1', $entryTitle . $entryContent);
|
||||||
@ -67,96 +110,75 @@ class AtomFormat extends FormatAbstract{
|
|||||||
if (empty($entryContent))
|
if (empty($entryContent))
|
||||||
$entryContent = ' ';
|
$entryContent = ' ';
|
||||||
|
|
||||||
$entryAuthor = '';
|
$entry = $document->createElement('entry');
|
||||||
if ($item->getAuthor()) {
|
|
||||||
$entryAuthor = $this->xml_encode($item->getAuthor());
|
|
||||||
}
|
|
||||||
|
|
||||||
$entryTitle = $this->xml_encode($entryTitle);
|
$title = $document->createElement('title');
|
||||||
$entryUri = $this->xml_encode($entryUri);
|
$title->setAttribute('type', 'html');
|
||||||
$entryTimestamp = $this->xml_encode(gmdate(DATE_ATOM, $entryTimestamp));
|
$title->appendChild($document->createTextNode($entryTitle));
|
||||||
$entryContent = $this->xml_encode($this->sanitizeHtml($entryContent));
|
$entry->appendChild($title);
|
||||||
|
|
||||||
$entryEnclosures = '';
|
$entryTimestamp = gmdate(DATE_ATOM, $entryTimestamp);
|
||||||
foreach($item->getEnclosures() as $enclosure) {
|
$published = $document->createElement('published');
|
||||||
$entryEnclosures .= '<link rel="enclosure" href="'
|
$published->appendChild($document->createTextNode($entryTimestamp));
|
||||||
. $this->xml_encode($enclosure)
|
$entry->appendChild($published);
|
||||||
. '" type="' . getMimeType($enclosure) . '" />'
|
|
||||||
. PHP_EOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
$entryCategories = '';
|
$updated = $document->createElement('updated');
|
||||||
foreach($item->getCategories() as $category) {
|
$updated->appendChild($document->createTextNode($entryTimestamp));
|
||||||
$entryCategories .= '<category term="'
|
$entry->appendChild($updated);
|
||||||
. $this->xml_encode($category)
|
|
||||||
. '"/>'
|
|
||||||
. PHP_EOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
$entryThumbnail = $item->thumbnail;
|
$id = $document->createElement('id');
|
||||||
if (!empty($entryThumbnail))
|
$id->appendChild($document->createTextNode($entryID));
|
||||||
$entryThumbnail = '<media:thumbnail url="' . $this->xml_encode($entryThumbnail) . '"/>';
|
$entry->appendChild($id);
|
||||||
|
|
||||||
$entryLinkAlternate = '';
|
|
||||||
if (!empty($entryUri)) {
|
if (!empty($entryUri)) {
|
||||||
$entryLinkAlternate = '<link rel="alternate" type="text/html" href="'
|
$entryLinkAlternate = $document->createElement('link');
|
||||||
. $entryUri
|
$entryLinkAlternate->setAttribute('rel', 'alternate');
|
||||||
. '"/>';
|
$entryLinkAlternate->setAttribute('type', 'text/html');
|
||||||
|
$entryLinkAlternate->setAttribute('href', $entryUri);
|
||||||
|
$entry->appendChild($entryLinkAlternate);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($entryAuthor)) {
|
if (!empty($item->getAuthor())) {
|
||||||
$entryAuthor = '<author><name>'
|
$author = $document->createElement('author');
|
||||||
. $entryAuthor
|
$authorName = $document->createElement('name');
|
||||||
. '</name></author>';
|
$authorName->appendChild($document->createTextNode($item->getAuthor()));
|
||||||
|
$author->appendChild($authorName);
|
||||||
|
$entry->appendChild($author);
|
||||||
}
|
}
|
||||||
|
|
||||||
$entries .= <<<EOD
|
$content = $document->createElement('content');
|
||||||
|
$content->setAttribute('type', 'html');
|
||||||
|
$content->appendChild($document->createTextNode($this->sanitizeHtml($entryContent)));
|
||||||
|
$entry->appendChild($content);
|
||||||
|
|
||||||
<entry>
|
foreach($item->getEnclosures() as $enclosure) {
|
||||||
<title type="html">{$entryTitle}</title>
|
$entryEnclosure = $document->createElement('link');
|
||||||
<published>{$entryTimestamp}</published>
|
$entryEnclosure->setAttribute('rel', 'enclosure');
|
||||||
<updated>{$entryTimestamp}</updated>
|
$entryEnclosure->setAttribute('type', getMimeType($enclosure));
|
||||||
<id>{$entryID}</id>
|
$entryEnclosure->setAttribute('href', $enclosure);
|
||||||
{$entryLinkAlternate}
|
$entry->appendChild($entryEnclosure);
|
||||||
{$entryAuthor}
|
}
|
||||||
<content type="html">{$entryContent}</content>
|
|
||||||
{$entryEnclosures}
|
|
||||||
{$entryCategories}
|
|
||||||
{$entryThumbnail}
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
EOD;
|
foreach($item->getCategories() as $category) {
|
||||||
|
$entryCategory = $document->createElement('category');
|
||||||
|
$entryCategory->setAttribute('term', $category);
|
||||||
|
$entry->appendChild($entryCategory);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($item->thumbnail)) {
|
||||||
|
$thumbnail = $document->createElementNS(self::MRSS_NS, 'media:thumbnail');
|
||||||
|
$thumbnail->setAttribute('url', $item->thumbnail);
|
||||||
|
$entry->appendChild($thumbnail);
|
||||||
|
}
|
||||||
|
|
||||||
|
$feed->appendChild($entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
$feedTimestamp = gmdate(DATE_ATOM, $this->lastModified);
|
$toReturn = $document->saveXML();
|
||||||
$charset = $this->getCharset();
|
|
||||||
|
|
||||||
/* Data are prepared, now let's begin the "MAGIE !!!" */
|
|
||||||
$toReturn = <<<EOD
|
|
||||||
<?xml version="1.0" encoding="{$charset}"?>
|
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
|
|
||||||
|
|
||||||
<title type="text">{$title}</title>
|
|
||||||
<id>{$feedUrl}</id>
|
|
||||||
<icon>{$icon}</icon>
|
|
||||||
<logo>{$icon}</logo>
|
|
||||||
<updated>{$feedTimestamp}</updated>
|
|
||||||
<author>
|
|
||||||
<name>{$feedAuthor}</name>
|
|
||||||
</author>
|
|
||||||
<link rel="alternate" type="text/html" href="{$uri}" />
|
|
||||||
<link rel="self" type="application/atom+xml" href="{$feedUrl}" />
|
|
||||||
{$entries}
|
|
||||||
</feed>
|
|
||||||
EOD;
|
|
||||||
|
|
||||||
// Remove invalid characters
|
// Remove invalid characters
|
||||||
ini_set('mbstring.substitute_character', 'none');
|
ini_set('mbstring.substitute_character', 'none');
|
||||||
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
|
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
|
||||||
return $toReturn;
|
return $toReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function xml_encode($text){
|
|
||||||
return htmlspecialchars($text, ENT_XML1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,9 @@
|
|||||||
class MrssFormat extends FormatAbstract {
|
class MrssFormat extends FormatAbstract {
|
||||||
const MIME_TYPE = 'application/rss+xml';
|
const MIME_TYPE = 'application/rss+xml';
|
||||||
|
|
||||||
|
protected const ATOM_NS = 'http://www.w3.org/2005/Atom';
|
||||||
|
protected const MRSS_NS = 'http://search.yahoo.com/mrss/';
|
||||||
|
|
||||||
const ALLOWED_IMAGE_EXT = array(
|
const ALLOWED_IMAGE_EXT = array(
|
||||||
'.gif', '.jpg', '.png'
|
'.gif', '.jpg', '.png'
|
||||||
);
|
);
|
||||||
@ -37,24 +40,67 @@ class MrssFormat extends FormatAbstract {
|
|||||||
$urlPath = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : '';
|
$urlPath = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : '';
|
||||||
$urlRequest = (isset($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : '';
|
$urlRequest = (isset($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : '';
|
||||||
|
|
||||||
$feedUrl = $this->xml_encode($urlPrefix . $urlHost . $urlRequest);
|
$feedUrl = $urlPrefix . $urlHost . $urlRequest;
|
||||||
|
|
||||||
$extraInfos = $this->getExtraInfos();
|
$extraInfos = $this->getExtraInfos();
|
||||||
$title = $this->xml_encode($extraInfos['name']);
|
$uri = !empty($extraInfos['uri']) ? $extraInfos['uri'] : REPOSITORY;
|
||||||
$icon = $extraInfos['icon'];
|
|
||||||
|
|
||||||
if(!empty($extraInfos['uri'])) {
|
$document = new DomDocument('1.0', $this->getCharset());
|
||||||
$uri = $this->xml_encode($extraInfos['uri']);
|
$document->formatOutput = true;
|
||||||
} else {
|
$feed = $document->createElement('rss');
|
||||||
$uri = REPOSITORY;
|
$feed->setAttribute('version', '2.0');
|
||||||
|
$feed->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:atom', self::ATOM_NS);
|
||||||
|
$feed->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:media', self::MRSS_NS);
|
||||||
|
$document->appendChild($feed);
|
||||||
|
|
||||||
|
$channel = $document->createElement('channel');
|
||||||
|
$feed->appendChild($channel);
|
||||||
|
|
||||||
|
$title = $extraInfos['name'];
|
||||||
|
$channelTitle = $document->createElement('title');
|
||||||
|
$channelTitle->appendChild($document->createTextNode($title));
|
||||||
|
$channel->appendChild($channelTitle);
|
||||||
|
|
||||||
|
$link = $document->createElement('link');
|
||||||
|
$link->appendChild($document->createTextNode($uri));
|
||||||
|
$channel->appendChild($link);
|
||||||
|
|
||||||
|
$description = $document->createElement('description');
|
||||||
|
$description->appendChild($document->createTextNode($extraInfos['name']));
|
||||||
|
$channel->appendChild($description);
|
||||||
|
|
||||||
|
$icon = $extraInfos['icon'];
|
||||||
|
if (!empty($icon) && in_array(substr($icon, -4), self::ALLOWED_IMAGE_EXT)) {
|
||||||
|
$feedImage = $document->createElement('image');
|
||||||
|
$channel->appendChild($feedImage);
|
||||||
|
$iconUrl = $document->createElement('url');
|
||||||
|
$iconUrl->appendChild($document->createTextNode($icon));
|
||||||
|
$feedImage->appendChild($iconUrl);
|
||||||
|
$iconTitle = $document->createElement('title');
|
||||||
|
$iconTitle->appendChild($document->createTextNode($title));
|
||||||
|
$feedImage->appendChild($iconTitle);
|
||||||
|
$iconLink = $document->createElement('link');
|
||||||
|
$iconLink->appendChild($document->createTextNode($uri));
|
||||||
|
$feedImage->appendChild($iconLink);
|
||||||
}
|
}
|
||||||
|
|
||||||
$items = '';
|
$linkAlternate = $document->createElementNS(self::ATOM_NS, 'atom:link');
|
||||||
|
$linkAlternate->setAttribute('rel', 'alternate');
|
||||||
|
$linkAlternate->setAttribute('type', 'text/html');
|
||||||
|
$linkAlternate->setAttribute('href', $uri);
|
||||||
|
$channel->appendChild($linkAlternate);
|
||||||
|
|
||||||
|
$linkSelf = $document->createElementNS(self::ATOM_NS, 'atom:link');
|
||||||
|
$linkSelf->setAttribute('rel', 'self');
|
||||||
|
$linkSelf->setAttribute('type', 'application/atom+xml');
|
||||||
|
$linkSelf->setAttribute('href', $feedUrl);
|
||||||
|
$channel->appendChild($linkSelf);
|
||||||
|
|
||||||
foreach($this->getItems() as $item) {
|
foreach($this->getItems() as $item) {
|
||||||
$itemTimestamp = $item->getTimestamp();
|
$itemTimestamp = $item->getTimestamp();
|
||||||
$itemTitle = $this->xml_encode($item->getTitle());
|
$itemTitle = $item->getTitle();
|
||||||
$itemUri = $this->xml_encode($item->getURI());
|
$itemUri = $item->getURI();
|
||||||
$itemContent = $this->xml_encode($this->sanitizeHtml($item->getContent()));
|
$itemContent = $this->sanitizeHtml($item->getContent());
|
||||||
$entryID = $item->getUid();
|
$entryID = $item->getUid();
|
||||||
$isPermaLink = 'false';
|
$isPermaLink = 'false';
|
||||||
|
|
||||||
@ -66,91 +112,59 @@ class MrssFormat extends FormatAbstract {
|
|||||||
if (empty($entryID)) // Fallback to title and content
|
if (empty($entryID)) // Fallback to title and content
|
||||||
$entryID = hash('sha1', $itemTitle . $itemContent);
|
$entryID = hash('sha1', $itemTitle . $itemContent);
|
||||||
|
|
||||||
$entryTitle = '';
|
$entry = $document->createElement('item');
|
||||||
if (!empty($itemTitle))
|
|
||||||
$entryTitle = '<title>' . $itemTitle . '</title>';
|
|
||||||
|
|
||||||
$entryLink = '';
|
if (!empty($itemTitle)) {
|
||||||
if (!empty($itemUri))
|
$entryTitle = $document->createElement('title');
|
||||||
$entryLink = '<link>' . $itemUri . '</link>';
|
$entryTitle->appendChild($document->createTextNode($itemTitle));
|
||||||
|
$entry->appendChild($entryTitle);
|
||||||
$entryPublished = '';
|
|
||||||
if (!empty($itemTimestamp)) {
|
|
||||||
$entryPublished = '<pubDate>'
|
|
||||||
. $this->xml_encode(gmdate(DATE_RFC2822, $itemTimestamp))
|
|
||||||
. '</pubDate>';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$entryDescription = '';
|
if (!empty($itemUri)) {
|
||||||
if (!empty($itemContent))
|
$entryLink = $document->createElement('link');
|
||||||
$entryDescription = '<description>' . $itemContent . '</description>';
|
$entryLink->appendChild($document->createTextNode($itemUri));
|
||||||
|
$entry->appendChild($entryLink);
|
||||||
|
}
|
||||||
|
|
||||||
|
$entryGuid = $document->createElement('guid');
|
||||||
|
$entryGuid->setAttribute('isPermaLink', $isPermaLink);
|
||||||
|
$entryGuid->appendChild($document->createTextNode($entryID));
|
||||||
|
$entry->appendChild($entryGuid);
|
||||||
|
|
||||||
|
if (!empty($itemTimestamp)) {
|
||||||
|
$entryPublished = $document->createElement('pubDate');
|
||||||
|
$entryPublished->appendChild($document->createTextNode(gmdate(DATE_RFC2822, $itemTimestamp)));
|
||||||
|
$entry->appendChild($entryPublished);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($itemContent)) {
|
||||||
|
$entryDescription = $document->createElement('description');
|
||||||
|
$entryDescription->appendChild($document->createTextNode($itemContent));
|
||||||
|
$entry->appendChild($entryDescription);
|
||||||
|
}
|
||||||
|
|
||||||
$entryEnclosures = '';
|
|
||||||
foreach($item->getEnclosures() as $enclosure) {
|
foreach($item->getEnclosures() as $enclosure) {
|
||||||
$entryEnclosures .= '<media:content url="'
|
$entryEnclosure = $document->createElementNS(self::MRSS_NS, 'media:content');
|
||||||
. $this->xml_encode($enclosure)
|
$entryEnclosure->setAttribute('url', $enclosure);
|
||||||
. '" type="' . getMimeType($enclosure) . '"/>'
|
$entryEnclosure->setAttribute('type', getMimeType($enclosure));
|
||||||
. PHP_EOL;
|
$entry->appendChild($entryEnclosure);
|
||||||
}
|
}
|
||||||
|
|
||||||
$entryCategories = '';
|
$entryCategories = '';
|
||||||
foreach($item->getCategories() as $category) {
|
foreach($item->getCategories() as $category) {
|
||||||
$entryCategories .= '<category>'
|
$entryCategory = $document->createElement('category');
|
||||||
. $category . '</category>'
|
$entryCategory->appendChild($document->createTextNode($category));
|
||||||
. PHP_EOL;
|
$entry->appendChild($entryCategory);
|
||||||
}
|
}
|
||||||
|
|
||||||
$items .= <<<EOD
|
$channel->appendChild($entry);
|
||||||
|
|
||||||
<item>
|
|
||||||
{$entryTitle}
|
|
||||||
{$entryLink}
|
|
||||||
<guid isPermaLink="{$isPermaLink}">{$entryID}</guid>
|
|
||||||
{$entryPublished}
|
|
||||||
{$entryDescription}
|
|
||||||
{$entryEnclosures}
|
|
||||||
{$entryCategories}
|
|
||||||
</item>
|
|
||||||
|
|
||||||
EOD;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$charset = $this->getCharset();
|
$toReturn = $document->saveXML();
|
||||||
|
|
||||||
$feedImage = '';
|
|
||||||
if (!empty($icon) && in_array(substr($icon, -4), self::ALLOWED_IMAGE_EXT)) {
|
|
||||||
$feedImage .= <<<EOD
|
|
||||||
<image>
|
|
||||||
<url>{$icon}</url>
|
|
||||||
<title>{$title}</title>
|
|
||||||
<link>{$uri}</link>
|
|
||||||
</image>
|
|
||||||
EOD;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Data are prepared, now let's begin the "MAGIE !!!" */
|
|
||||||
$toReturn = <<<EOD
|
|
||||||
<?xml version="1.0" encoding="{$charset}"?>
|
|
||||||
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>{$title}</title>
|
|
||||||
<link>{$uri}</link>
|
|
||||||
<description>{$title}</description>
|
|
||||||
{$feedImage}
|
|
||||||
<atom:link rel="alternate" type="text/html" href="{$uri}"/>
|
|
||||||
<atom:link rel="self" href="{$feedUrl}" type="application/atom+xml"/>
|
|
||||||
{$items}
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
EOD;
|
|
||||||
|
|
||||||
// Remove invalid non-UTF8 characters
|
// Remove invalid non-UTF8 characters
|
||||||
ini_set('mbstring.substitute_character', 'none');
|
ini_set('mbstring.substitute_character', 'none');
|
||||||
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
|
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
|
||||||
return $toReturn;
|
return $toReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function xml_encode($text){
|
|
||||||
return htmlspecialchars($text, ENT_XML1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user