3 * StatusNet, the distributed open-source microblogging tool
5 * Show a group's notices
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 Craig Andrews <candrews@integralblue.com>
25 * @author Evan Prodromou <evan@status.net>
26 * @author Jeffery To <jeffery.to@gmail.com>
27 * @author Zach Copley <zach@status.net>
28 * @copyright 2009-2010 StatusNet, Inc.
29 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
30 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
31 * @link http://status.net/
34 if (!defined('STATUSNET')) {
38 require_once INSTALLDIR . '/lib/apiprivateauth.php';
41 * Returns the most recent notices (default 20) posted to the group specified by ID
45 * @author Craig Andrews <candrews@integralblue.com>
46 * @author Evan Prodromou <evan@status.net>
47 * @author Jeffery To <jeffery.to@gmail.com>
48 * @author Zach Copley <zach@status.net>
49 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
50 * @link http://status.net/
52 class ApiTimelineGroupAction extends ApiPrivateAuthAction
58 * Take arguments for running
60 * @param array $args $_REQUEST args
62 * @return boolean success flag
65 function prepare($args)
67 parent::prepare($args);
69 $this->group = $this->getTargetGroup($this->arg('id'));
77 * Just show the notices
79 * @param array $args $_REQUEST data (unused)
83 function handle($args)
85 parent::handle($args);
87 if (empty($this->group)) {
88 // TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
89 $this->clientError(_('Group not found.'), 404, $this->format);
93 $this->notices = $this->getNotices();
94 $this->showTimeline();
98 * Show the timeline of notices
102 function showTimeline()
104 // We'll pull common formatting out of this for other formats
105 $atom = new AtomGroupNoticeFeed($this->group, $this->auth_user);
107 $self = $this->getSelfUri();
109 $link = common_local_url('showgroup',
110 array('nickname' => $this->group->nickname));
112 switch($this->format) {
114 $this->showXmlTimeline($this->notices);
117 $this->showRssTimeline(
120 $this->group->homeUrl(),
128 header('Content-Type: application/atom+xml; charset=utf-8');
129 $atom->addEntryFromNotices($this->notices);
130 $this->raw($atom->getString());
133 $this->showJsonTimeline($this->notices);
136 header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE);
137 $doc = new ActivityStreamJSONDocument($this->auth_user);
138 $doc->setTitle($atom->title);
139 $doc->addLink($link, 'alternate', 'text/html');
140 $doc->addItemsFromNotices($this->notices);
141 $this->raw($doc->asString());
145 // TRANS: Client error displayed when trying to handle an unknown API method.
146 _('API method not found.'),
157 * @return array notices
159 function getNotices()
163 $notice = $this->group->getNotices(
164 ($this->page-1) * $this->count,
170 while ($notice->fetch()) {
171 $notices[] = clone($notice);
178 * Is this action read only?
180 * @param array $args other arguments
182 * @return boolean true
184 function isReadOnly($args)
190 * When was this feed last modified?
192 * @return string datestamp of the latest notice in the stream
194 function lastModified()
196 if (!empty($this->notices) && (count($this->notices) > 0)) {
197 return strtotime($this->notices[0]->created);
204 * An entity tag for this stream
206 * Returns an Etag based on the action name, language, group ID and
207 * timestamps of the first and last notice in the timeline
209 * @return string etag
213 if (!empty($this->notices) && (count($this->notices) > 0)) {
215 $last = count($this->notices) - 1;
217 return '"' . implode(
219 array($this->arg('action'),
220 common_user_cache_hash($this->auth_user),
223 strtotime($this->notices[0]->created),
224 strtotime($this->notices[$last]->created))