2008-07-14 09:09:49 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-06-12 09:31:22 +01:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-14 09:09:49 +01:00
|
|
|
|
2008-07-15 04:18:12 +01:00
|
|
|
require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class TwitapihelpAction extends TwitterapiAction
|
|
|
|
{
|
2008-07-14 09:09:49 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
/* Returns the string "ok" in the requested format with a 200 OK HTTP status code.
|
|
|
|
* URL:http://identi.ca/api/help/test.format
|
|
|
|
* Formats: xml, json
|
|
|
|
*/
|
2008-12-23 19:33:23 +00:00
|
|
|
function test($args, $apidata)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
if ($apidata['content-type'] == 'xml') {
|
|
|
|
$this->init_document('xml');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('ok', null, 'true');
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->end_document('xml');
|
|
|
|
} elseif ($apidata['content-type'] == 'json') {
|
|
|
|
$this->init_document('json');
|
|
|
|
print '"ok"';
|
|
|
|
$this->end_document('json');
|
|
|
|
} else {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('API method not found!'), $code=404);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function downtime_schedule($args, $apidata)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('API method under construction.'), $code=501);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-10-01 03:09:59 +01:00
|
|
|
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|