3 * StatusNet, the distributed open-source microblogging tool
5 * Class for building an Atom feed in memory
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Zach Copley <zach@status.net>
25 * @copyright 2010 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET'))
35 class Atom10FeedException extends Exception
40 * Class for building an Atom feed in memory. Get the finished doc
41 * as a string with Atom10Feed::getString().
45 * @author Zach Copley <zach@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://status.net/
49 class Atom10Feed extends XMLStringer
53 // @fixme most of these should probably be read-only properties
58 private $contributors;
63 private $selfLinkType;
75 * @param boolean $indent flag to turn indenting on or off
79 function __construct($indent = true) {
80 parent::__construct($indent);
81 $this->namespaces = array();
82 $this->authors = array();
83 $this->links = array();
84 $this->entries = array();
85 $this->addNamespace('', 'http://www.w3.org/2005/Atom');
89 * Add another namespace to the feed
91 * @param string $namespace the namespace
92 * @param string $uri namspace uri
96 function addNamespace($namespace, $uri)
98 $ns = array($namespace => $uri);
99 $this->namespaces = array_merge($this->namespaces, $ns);
102 function addAuthor($name, $uri = null, $email = null)
104 $xs = new XMLStringer(true);
106 $xs->elementStart('author');
109 $xs->element('name', null, $name);
111 throw new Atom10FeedException(
112 // TRANS: Atom feed exception thrown when an author element does not contain a name element.
113 _('Author element must contain a name element.')
118 $xs->element('uri', null, $uri);
122 $xs->element('email', null, $email);
125 $xs->elementEnd('author');
127 array_push($this->authors, $xs->getString());
131 * Add an Author to the feed via raw XML string
133 * @param string $xmlAuthor An XML string representation author
137 function addAuthorRaw($xmlAuthor)
139 array_push($this->authors, $xmlAuthor);
142 function renderAuthors()
144 foreach ($this->authors as $author) {
149 function getNamespaces()
151 return $this->namespaces;
157 $commonAttrs = array('xml:lang' => 'en-US');
158 foreach ($this->namespaces as $prefix => $uri) {
162 $attr = 'xmlns:' . $prefix;
164 $commonAttrs[$attr] = $uri;
166 $this->elementStart('feed', $commonAttrs);
170 'uri' => 'http://status.net',
171 'version' => GNUSOCIAL_VERSION
176 $this->element('id', null, $this->id);
177 $this->element('title', null, $this->title);
178 $this->element('subtitle', null, $this->subtitle);
180 if (!empty($this->logo)) {
181 $this->element('logo', null, $this->logo);
184 $this->element('updated', null, $this->updated);
186 $this->renderAuthors();
188 if ($this->selfLink) {
189 $this->addLink($this->selfLink, array('rel' => 'self',
190 'type' => $this->selfLinkType));
192 $this->renderLinks();
196 * Check that all required elements have been set, etc.
197 * Throws an Atom10FeedException if something's missing.
205 function renderLinks()
207 foreach ($this->links as $attrs)
209 $this->element('link', $attrs, null);
213 function addEntryRaw($xmlEntry)
215 array_push($this->entries, $xmlEntry);
218 function addEntry($entry)
220 array_push($this->entries, $entry->getString());
223 function renderEntries()
225 foreach ($this->entries as $entry) {
232 $this->elementEnd('feed');
233 $this->xw->endDocument();
238 if (Event::handle('StartApiAtom', array($this))) {
243 if (!empty($this->subject)) {
244 $this->raw($this->subject);
247 $this->renderEntries();
250 Event::handle('EndApiAtom', array($this));
253 return $this->xw->outputMemory();
261 function setSelfLink($url, $type='application/atom+xml')
263 $this->selfLink = $url;
264 $this->selfLinkType = $type;
267 function setTitle($title)
269 $this->title = $title;
272 function setSubtitle($subtitle)
274 $this->subtitle = $subtitle;
277 function setLogo($logo)
282 function setUpdated($dt)
284 $this->updated = common_date_iso8601($dt);
287 function setPublished($dt)
289 $this->published = common_date_iso8601($dt);
293 * Adds a link element into the Atom document
295 * Assumes you want rel="alternate" and type="text/html" unless
296 * you send in $otherAttrs.
298 * @param string $uri the uri the href needs to point to
299 * @param array $otherAttrs other attributes to stick in
303 function addLink($uri, $otherAttrs = null) {
304 $attrs = array('href' => $uri);
306 if (is_null($otherAttrs)) {
307 $attrs['rel'] = 'alternate';
308 $attrs['type'] = 'text/html';
310 $attrs = array_merge($attrs, $otherAttrs);
313 array_push($this->links, $attrs);