xml_encode($_SERVER['REQUEST_URI']); $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); $entries = ''; foreach($this->getItems() as $item){ $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'])) : ''; $entryEnclosures = ""; foreach($item['enclosures'] as $enclosure) $entryEnclosures .= "xml_encode($enclosure)."\"/>"; $entries .= << {$entryAuthor} {$entryTitle} {$entryUri} {$entryTimestamp} {$entryContent} {$entryEnclosures} EOD; } $feedTimestamp = date(DATE_ATOM, time()); $charset = $this->getCharset(); /* Data are prepared, now let's begin the "MAGIE !!!" */ $toReturn = << {$title} http{$https}://{$httpHost}{$httpInfo}/ {$icon} {$icon} {$feedTimestamp} {$entries} EOD; // Remove invalid characters ini_set('mbstring.substitute_character', 'none'); $toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8'); return $toReturn; } public function display(){ $this ->setContentType('application/atom+xml; charset=' . $this->getCharset()) ->callContentType(); return parent::display(); } private function xml_encode($text){ return htmlspecialchars($text, ENT_XML1); } }