. * * @category API * @package StatusNet * @author Evan Prodromou * @author Zach Copley * @copyright 2009 StatusNet, Inc. * @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('GNUSOCIAL')) { exit(1); } /** * Returns the string "ok" in the requested format with a 200 OK HTTP status code. * * @category API * @package StatusNet * @author Evan Prodromou * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ class ApiHelpTestAction extends ApiPrivateAuthAction { protected function handle() { parent::handle(); if ($this->format == 'xml') { $this->initDocument('xml'); $this->element('ok', null, 'true'); $this->endDocument('xml'); } elseif ($this->format == 'json') { $this->initDocument('json'); print '"ok"'; $this->endDocument('json'); } else { // TRANS: Client error displayed when coming across a non-supported API method. throw new ClientException(_('API method not found.'), 404); } } /** * Return true if read only. * * MAY override * * @param array $args other arguments * * @return boolean is read only action? */ function isReadOnly($args) { return true; } }