2013-08-11 13:30:41 +02:00
|
|
|
<?php
|
2015-04-24 17:14:17 +02:00
|
|
|
|
|
|
|
function xml_encode($text) {
|
|
|
|
return htmlspecialchars($text, ENT_XML1);
|
|
|
|
}
|
|
|
|
|
2013-08-11 13:30:41 +02:00
|
|
|
/**
|
|
|
|
* Atom
|
|
|
|
* Documentation Source http://en.wikipedia.org/wiki/Atom_%28standard%29 and http://tools.ietf.org/html/rfc4287
|
|
|
|
*
|
|
|
|
* @name Atom
|
|
|
|
*/
|
|
|
|
class AtomFormat extends FormatAbstract{
|
|
|
|
|
|
|
|
public function stringify(){
|
|
|
|
/* Datas preparation */
|
|
|
|
$https = ( isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 's' : '' );
|
|
|
|
$httpHost = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
|
|
|
|
$httpInfo = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '';
|
|
|
|
|
2015-04-24 17:14:17 +02:00
|
|
|
$serverRequestUri = xml_encode($_SERVER['REQUEST_URI']);
|
2013-08-11 13:30:41 +02:00
|
|
|
|
|
|
|
$extraInfos = $this->getExtraInfos();
|
2015-04-24 17:14:17 +02:00
|
|
|
$title = xml_encode($extraInfos['name']);
|
|
|
|
$uri = $extraInfos['uri'];
|
2016-02-28 11:25:56 +01:00
|
|
|
$icon = xml_encode('http://icons.better-idea.org/icon?url='. $uri .'&size=64');
|
2015-04-24 17:14:17 +02:00
|
|
|
$uri = xml_encode($uri);
|
2013-08-11 13:30:41 +02:00
|
|
|
|
|
|
|
$entries = '';
|
|
|
|
foreach($this->getDatas() as $data){
|
2015-04-24 17:14:17 +02:00
|
|
|
$entryName = is_null($data->name) ? $title : xml_encode($data->name);
|
|
|
|
$entryAuthor = is_null($data->author) ? $uri : xml_encode($data->author);
|
|
|
|
$entryTitle = is_null($data->title) ? '' : xml_encode($data->title);
|
|
|
|
$entryUri = is_null($data->uri) ? '' : xml_encode($data->uri);
|
|
|
|
$entryTimestamp = is_null($data->timestamp) ? '' : xml_encode(date(DATE_ATOM, $data->timestamp));
|
2013-08-12 22:37:19 +02:00
|
|
|
// We prevent content from closing the CDATA too early.
|
|
|
|
$entryContent = is_null($data->content) ? '' : '<![CDATA[' . $this->sanitizeHtml(str_replace(']]>','',$data->content)) . ']]>';
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2016-01-19 13:34:38 +01:00
|
|
|
// We generate a list of the enclosure links
|
2016-01-21 14:05:14 +01:00
|
|
|
$entryEnclosures = "";
|
2016-01-19 13:34:38 +01:00
|
|
|
|
|
|
|
foreach($data->enclosures as $enclosure) {
|
|
|
|
|
|
|
|
$entryEnclosures .= "<link rel=\"enclosure\" href=\"".$enclosure."\"></link>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-11 13:30:41 +02:00
|
|
|
$entries .= <<<EOD
|
|
|
|
|
|
|
|
<entry>
|
|
|
|
<author>
|
|
|
|
<name>{$entryName}</name>
|
|
|
|
<uri>{$entryAuthor}</uri>
|
|
|
|
</author>
|
|
|
|
<title type="html"><![CDATA[{$entryTitle}]]></title>
|
|
|
|
<link rel="alternate" type="text/html" href="{$entryUri}" />
|
|
|
|
<id>{$entryUri}</id>
|
|
|
|
<updated>{$entryTimestamp}</updated>
|
|
|
|
<content type="html">{$entryContent}</content>
|
2016-01-19 13:34:38 +01:00
|
|
|
{$entryEnclosures}
|
2013-08-11 13:30:41 +02:00
|
|
|
</entry>
|
|
|
|
|
|
|
|
EOD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
TODO :
|
|
|
|
- Security: Disable Javascript ?
|
|
|
|
- <updated> : Define new extra info ?
|
|
|
|
- <content type="html"> : RFC look with xhtml, keep this in spite of ?
|
|
|
|
*/
|
|
|
|
|
2014-05-14 14:27:57 +02:00
|
|
|
// #### TEMPORARY FIX ###
|
|
|
|
$feedTimestamp = date(DATE_ATOM, time());
|
|
|
|
// ################
|
|
|
|
|
2013-08-11 13:30:41 +02:00
|
|
|
/* Data are prepared, now let's begin the "MAGIE !!!" */
|
|
|
|
$toReturn = '<?xml version="1.0" encoding="UTF-8"?>';
|
|
|
|
$toReturn .= <<<EOD
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xml:lang="en-US">
|
|
|
|
|
|
|
|
<title type="text">{$title}</title>
|
|
|
|
<id>http{$https}://{$httpHost}{$httpInfo}/</id>
|
2014-07-24 13:51:42 +02:00
|
|
|
<icon>{$icon}</icon>
|
|
|
|
<logo>{$icon}</logo>
|
2014-05-14 14:27:57 +02:00
|
|
|
<updated>{$feedTimestamp}</updated>
|
2013-08-11 13:30:41 +02:00
|
|
|
<link rel="alternate" type="text/html" href="{$uri}" />
|
|
|
|
<link rel="self" href="http{$https}://{$httpHost}{$serverRequestUri}" />
|
|
|
|
{$entries}
|
|
|
|
</feed>
|
|
|
|
EOD;
|
2013-08-12 22:37:19 +02:00
|
|
|
|
|
|
|
// Remove invalid non-UTF8 characters
|
2013-08-11 13:30:41 +02:00
|
|
|
|
2013-08-12 22:37:19 +02:00
|
|
|
// We cannot use iconv because of a bug in some versions of iconv.
|
|
|
|
// See http://www.php.net/manual/fr/function.iconv.php#108643
|
|
|
|
//$toReturn = iconv("UTF-8", "UTF-8//IGNORE", $toReturn);
|
|
|
|
// So we use mb_convert_encoding instead:
|
|
|
|
ini_set('mbstring.substitute_character', 'none');
|
|
|
|
$toReturn= mb_convert_encoding($toReturn, 'UTF-8', 'UTF-8');
|
2013-08-11 13:30:41 +02:00
|
|
|
return $toReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function display(){
|
2013-08-12 22:37:19 +02:00
|
|
|
$this
|
2015-04-24 17:14:17 +02:00
|
|
|
->setContentType('application/atom+xml; charset=UTF-8') // We force UTF-8 in ATOM output.
|
2013-08-12 22:37:19 +02:00
|
|
|
->callContentType();
|
2013-08-11 13:30:41 +02:00
|
|
|
|
|
|
|
return parent::display();
|
|
|
|
}
|
2014-10-21 20:55:18 +02:00
|
|
|
}
|