Pepperminty-Wiki/modules/api-status.php

52 lines
1.7 KiB
PHP
Raw Normal View History

2017-06-26 10:36:04 +00:00
<?php
register_module([
"name" => "API status",
"version" => "0.1",
"author" => "Starbeamrainbowlabs",
"description" => "Provides a basic JSON status action that provices a few useful bits of information for API consumption.",
"id" => "api-status",
"code" => function() {
global $settings;
/**
2018-03-27 16:20:58 +00:00
* @api {get} ?action=status[&minified=type] Get the json-formatted status of this wiki
* @apiName Status
* @apiGroup Stats
2017-06-26 10:36:04 +00:00
* @apiPermission Anonymous
2018-03-27 16:20:58 +00:00
*
* @apiParam {boolean} Whether or not the result should be minified JSON. Default: false
2017-06-26 10:36:04 +00:00
*/
add_action("status", function() {
global $version, $env, $settings, $actions;
// Make sure the client can accept JSON
if(!accept_contains_mime($_SERVER["HTTP_ACCEPT"] ?? "application/json", "application/json")) {
http_response_code(406);
header("content-type: text/plain");
exit("Unfortunately, this API is currently only available in application/json at the moment, which you haven't indicated you accept in your http accept header. You said this in your accept header:\n" . $_SERVER["HTTP_ACCEPT"]);
}
2018-03-27 16:20:58 +00:00
$minified = ($_GET["minified"] ?? "false") == "true";
2017-06-26 10:36:04 +00:00
$action_names = array_keys(get_object_vars($actions));
sort($action_names);
$result = new stdClass();
$result->status = "ok";
$result->version = $version;
$result->available_actions = $action_names;
$result->wiki_name = $settings->sitename;
$result->logo_url = $settings->favicon;
header("content-type: application/json");
2018-03-27 16:20:58 +00:00
exit($minified ? json_encode($result) : json_encode($result, JSON_PRETTY_PRINT) . "\n");
2017-06-26 10:36:04 +00:00
});
add_help_section("960-api-status", "Wiki Status API", "<p></p>");
}
]);
?>