2009-10-08 23:45:45 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* A version stamp for the API
|
|
|
|
*
|
|
|
|
* 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
|
2013-10-14 23:19:03 +01:00
|
|
|
* @package GNUsocial
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-10-08 23:45:45 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2009 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2013-10-14 23:19:03 +01:00
|
|
|
* @link http://www.gnu.org/software/social/
|
2009-10-08 23:45:45 +01:00
|
|
|
*/
|
|
|
|
|
2013-10-14 23:19:03 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2009-10-08 23:45:45 +01:00
|
|
|
|
|
|
|
/**
|
2013-10-14 23:19:03 +01:00
|
|
|
* Returns a version number for this version of GNU social, which
|
2009-10-08 23:45:45 +01:00
|
|
|
* should make things a bit easier for upgrades.
|
|
|
|
* URL: http://identi.ca/api/statusnet/version.(xml|json)
|
|
|
|
* Formats: xml, js
|
|
|
|
*
|
|
|
|
* @category API
|
2013-10-14 23:19:03 +01:00
|
|
|
* @package GNUsocial
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-10-08 23:45:45 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2013-10-14 23:19:03 +01:00
|
|
|
* @link http://www.gnu.org/software/social/
|
2009-10-08 23:45:45 +01:00
|
|
|
*/
|
2013-10-14 23:19:03 +01:00
|
|
|
class ApiGNUsocialVersionAction extends ApiPrivateAuthAction
|
2009-10-08 23:45:45 +01:00
|
|
|
{
|
2013-10-14 23:19:03 +01:00
|
|
|
protected function handle()
|
2009-10-08 23:45:45 +01:00
|
|
|
{
|
2013-10-14 23:19:03 +01:00
|
|
|
parent::handle();
|
2009-10-08 23:45:45 +01:00
|
|
|
|
|
|
|
switch ($this->format) {
|
|
|
|
case 'xml':
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->initDocument('xml');
|
2013-11-01 12:51:41 +00:00
|
|
|
$this->element('version', null, GNUSOCIAL_VERSION);
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->endDocument('xml');
|
2009-10-08 23:45:45 +01:00
|
|
|
break;
|
|
|
|
case 'json':
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->initDocument('json');
|
2013-11-01 12:51:41 +00:00
|
|
|
print '"'.GNUSOCIAL_VERSION.'"';
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->endDocument('json');
|
2009-10-08 23:45:45 +01:00
|
|
|
break;
|
|
|
|
default:
|
2013-10-15 01:54:10 +01:00
|
|
|
// TRANS: Client error displayed when coming across a non-supported API method.
|
|
|
|
$this->clientError(_('API method not found.'), 404);
|
2009-10-08 23:45:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 23:45:45 +01:00
|
|
|
}
|