2009-10-08 01:20:08 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Show information about a group
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Jeffery To <jeffery.to@gmail.com>
|
2009-10-08 01:20:08 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2009-10-08 01:20:08 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-11-05 06:03:41 +00:00
|
|
|
require_once INSTALLDIR . '/lib/apiprivateauth.php';
|
2009-10-08 01:20:08 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs detailed information about the group specified by ID
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Jeffery To <jeffery.to@gmail.com>
|
2009-10-08 01:20:08 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2010-01-21 19:37:20 +00:00
|
|
|
* @author Michele <macno@macno.org>
|
2009-10-08 01:20:08 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2009-11-05 06:03:41 +00:00
|
|
|
class ApiGroupShowAction extends ApiPrivateAuthAction
|
2009-10-08 01:20:08 +01:00
|
|
|
{
|
|
|
|
var $group = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Take arguments for running
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST args
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
$this->group = $this->getTargetGroup($this->arg('id'));
|
|
|
|
|
2010-01-21 19:37:20 +00:00
|
|
|
if (empty($this->group)) {
|
|
|
|
$alias = Group_alias::staticGet(
|
|
|
|
'alias',
|
|
|
|
common_canonical_nickname($this->arg('id'))
|
|
|
|
);
|
|
|
|
if (!empty($alias)) {
|
|
|
|
$args = array('id' => $alias->group_id, 'format' => $this->format);
|
|
|
|
common_redirect(common_local_url('ApiGroupShow', $args), 301);
|
|
|
|
} else {
|
|
|
|
$this->clientError(
|
2010-10-25 22:51:00 +01:00
|
|
|
// TRANS: Client error displayed when trying to show a group that could not be found.
|
2010-04-09 23:58:57 +01:00
|
|
|
_('Group not found.'),
|
2010-01-21 19:37:20 +00:00
|
|
|
404,
|
|
|
|
$this->format
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-10-08 01:20:08 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* Check the format and show the user info
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST data (unused)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
switch($this->format) {
|
|
|
|
case 'xml':
|
2009-11-30 22:55:02 +00:00
|
|
|
$this->showSingleXmlGroup($this->group);
|
2009-10-08 01:20:08 +01:00
|
|
|
break;
|
|
|
|
case 'json':
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->showSingleJsonGroup($this->group);
|
2009-10-08 01:20:08 +01:00
|
|
|
break;
|
|
|
|
default:
|
2011-04-03 23:12:52 +01:00
|
|
|
// TRANS: Client error displayed when coming across a non-supported API method.
|
2010-01-10 11:26:24 +00:00
|
|
|
$this->clientError(_('API method not found.'), 404, $this->format);
|
2009-10-08 01:20:08 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When was this group last modified?
|
|
|
|
*
|
|
|
|
* @return string datestamp of the latest notice in the stream
|
|
|
|
*/
|
|
|
|
function lastModified()
|
|
|
|
{
|
|
|
|
if (!empty($this->group)) {
|
|
|
|
return strtotime($this->group->modified);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An entity tag for this group
|
|
|
|
*
|
|
|
|
* Returns an Etag based on the action name, language, and
|
|
|
|
* timestamps of the notice
|
|
|
|
*
|
|
|
|
* @return string etag
|
|
|
|
*/
|
|
|
|
function etag()
|
|
|
|
{
|
|
|
|
if (!empty($this->group)) {
|
|
|
|
|
|
|
|
return '"' . implode(
|
|
|
|
':',
|
|
|
|
array($this->arg('action'),
|
2010-09-20 21:42:58 +01:00
|
|
|
common_user_cache_hash($this->auth_user),
|
2009-10-08 01:20:08 +01:00
|
|
|
common_language(),
|
|
|
|
$this->group->id,
|
|
|
|
strtotime($this->group->modified))
|
|
|
|
)
|
|
|
|
. '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2010-01-28 00:39:40 +00:00
|
|
|
/**
|
|
|
|
* Return true if read only.
|
|
|
|
*
|
|
|
|
* MAY override
|
|
|
|
*
|
|
|
|
* @param array $args other arguments
|
|
|
|
*
|
|
|
|
* @return boolean is read only action?
|
|
|
|
*/
|
|
|
|
function isReadOnly($args)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-08 01:20:08 +01:00
|
|
|
}
|