2013-08-11 13:30:41 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Atom
|
2016-09-10 20:41:11 +02:00
|
|
|
* Documentation Source http://en.wikipedia.org/wiki/Atom_%28standard%29 and
|
|
|
|
* http://tools.ietf.org/html/rfc4287
|
2013-08-11 13:30:41 +02:00
|
|
|
*/
|
|
|
|
class AtomFormat extends FormatAbstract{
|
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
public function stringify(){
|
|
|
|
$https = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 's' : '';
|
|
|
|
$httpHost = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
|
|
|
|
$httpInfo = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '';
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
$serverRequestUri = $this->xml_encode($_SERVER['REQUEST_URI']);
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
$extraInfos = $this->getExtraInfos();
|
|
|
|
$title = $this->xml_encode($extraInfos['name']);
|
|
|
|
$uri = !empty($extraInfos['uri']) ? $extraInfos['uri'] : 'https://github.com/sebsauvage/rss-bridge';
|
|
|
|
$icon = $this->xml_encode('http://icons.better-idea.org/icon?url='. $uri .'&size=64');
|
|
|
|
$uri = $this->xml_encode($uri);
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
$entries = '';
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($this->getItems() as $item) {
|
2016-09-10 20:41:11 +02:00
|
|
|
$entryAuthor = isset($item['author']) ? $this->xml_encode($item['author']) : '';
|
|
|
|
$entryTitle = isset($item['title']) ? $this->xml_encode($item['title']) : '';
|
|
|
|
$entryUri = isset($item['uri']) ? $this->xml_encode($item['uri']) : '';
|
|
|
|
$entryTimestamp = isset($item['timestamp']) ? $this->xml_encode(date(DATE_ATOM, $item['timestamp'])) : '';
|
|
|
|
$entryContent = isset($item['content']) ? $this->xml_encode($this->sanitizeHtml($item['content'])) : '';
|
2016-11-09 18:59:17 +01:00
|
|
|
|
2016-11-12 22:04:42 +01:00
|
|
|
$entryEnclosures = '';
|
2017-07-29 19:28:00 +02:00
|
|
|
if(isset($item['enclosures'])) {
|
|
|
|
foreach($item['enclosures'] as $enclosure) {
|
2016-11-12 22:04:42 +01:00
|
|
|
$entryEnclosures .= '<link rel="enclosure" href="'
|
|
|
|
. $this->xml_encode($enclosure)
|
|
|
|
. '"/>'
|
|
|
|
. PHP_EOL;
|
|
|
|
}
|
2016-11-09 18:59:17 +01:00
|
|
|
}
|
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
$entries .= <<<EOD
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
<entry>
|
|
|
|
<author>
|
|
|
|
<name>{$entryAuthor}</name>
|
|
|
|
</author>
|
2016-11-08 22:15:53 +01:00
|
|
|
<title type="html">{$entryTitle}</title>
|
2016-09-10 20:41:11 +02:00
|
|
|
<link rel="alternate" type="text/html" href="{$entryUri}" />
|
|
|
|
<id>{$entryUri}</id>
|
|
|
|
<updated>{$entryTimestamp}</updated>
|
|
|
|
<content type="html">{$entryContent}</content>
|
2016-11-12 22:04:42 +01:00
|
|
|
{$entryEnclosures}
|
2016-09-10 20:41:11 +02:00
|
|
|
</entry>
|
2013-08-11 13:30:41 +02:00
|
|
|
|
|
|
|
EOD;
|
2016-09-10 20:41:11 +02:00
|
|
|
}
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
$feedTimestamp = date(DATE_ATOM, time());
|
2016-11-07 20:49:44 +01:00
|
|
|
$charset = $this->getCharset();
|
2014-05-14 14:27:57 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
/* Data are prepared, now let's begin the "MAGIE !!!" */
|
2016-11-07 20:49:44 +01:00
|
|
|
$toReturn = <<<EOD
|
|
|
|
<?xml version="1.0" encoding="{$charset}"?>
|
2016-11-07 23:29:44 +01:00
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
<title type="text">{$title}</title>
|
|
|
|
<id>http{$https}://{$httpHost}{$httpInfo}/</id>
|
|
|
|
<icon>{$icon}</icon>
|
|
|
|
<logo>{$icon}</logo>
|
|
|
|
<updated>{$feedTimestamp}</updated>
|
|
|
|
<link rel="alternate" type="text/html" href="{$uri}" />
|
|
|
|
<link rel="self" href="http{$https}://{$httpHost}{$serverRequestUri}" />
|
2013-08-11 13:30:41 +02:00
|
|
|
{$entries}
|
|
|
|
</feed>
|
|
|
|
EOD;
|
|
|
|
|
2016-11-07 20:49:44 +01:00
|
|
|
// Remove invalid characters
|
2016-09-10 20:41:11 +02:00
|
|
|
ini_set('mbstring.substitute_character', 'none');
|
2016-11-07 20:49:44 +01:00
|
|
|
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
|
2016-09-10 20:41:11 +02:00
|
|
|
return $toReturn;
|
|
|
|
}
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
public function display(){
|
|
|
|
$this
|
2016-11-07 20:49:44 +01:00
|
|
|
->setContentType('application/atom+xml; charset=' . $this->getCharset())
|
2016-09-10 20:41:11 +02:00
|
|
|
->callContentType();
|
2016-08-09 16:36:31 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
return parent::display();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function xml_encode($text){
|
|
|
|
return htmlspecialchars($text, ENT_XML1);
|
|
|
|
}
|
2014-10-21 20:55:18 +02:00
|
|
|
}
|