3 * StatusNet, the distributed open-source microblogging tool
5 * Show information about a group
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 StatusNet, Inc.
29 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
30 * @link http://status.net/
33 if (!defined('STATUSNET')) {
37 require_once INSTALLDIR . '/lib/apiprivateauth.php';
40 * Outputs detailed information about the group specified by ID
44 * @author Craig Andrews <candrews@integralblue.com>
45 * @author Evan Prodromou <evan@status.net>
46 * @author Jeffery To <jeffery.to@gmail.com>
47 * @author Zach Copley <zach@status.net>
48 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
49 * @link http://status.net/
52 class ApiGroupShowAction extends ApiPrivateAuthAction
57 * Take arguments for running
59 * @param array $args $_REQUEST args
61 * @return boolean success flag
65 function prepare($args)
67 parent::prepare($args);
69 $this->group = $this->getTargetGroup($this->arg('id'));
77 * Check the format and show the user info
79 * @param array $args $_REQUEST data (unused)
84 function handle($args)
86 parent::handle($args);
88 if (empty($this->group)) {
90 _('Group not found!'),
97 switch($this->format) {
99 $this->showSingleXmlGroup($this->group);
102 $this->showSingleJsonGroup($this->group);
105 $this->clientError(_('API method not found!'), 404, $this->format);
112 * When was this group last modified?
114 * @return string datestamp of the latest notice in the stream
117 function lastModified()
119 if (!empty($this->group)) {
120 return strtotime($this->group->modified);
127 * An entity tag for this group
129 * Returns an Etag based on the action name, language, and
130 * timestamps of the notice
132 * @return string etag
137 if (!empty($this->group)) {
139 return '"' . implode(
141 array($this->arg('action'),
144 strtotime($this->group->modified))