1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/lib/api/requests/universal/status.cpp
Steffen Vogel 02a2aa4f94 Apply clang-format changes
Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
2023-09-08 11:37:42 +02:00

46 lines
1.3 KiB
C++

/* The Universal Data-exchange API.
*
* Author: Steffen Vogel <post@steffenvogel.de>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: Apache-2.0
*/
#include <villas/api/requests/universal.hpp>
#include <villas/api/response.hpp>
#include <villas/node.hpp>
namespace villas {
namespace node {
namespace api {
namespace universal {
class StatusRequest : public UniversalRequest {
public:
using UniversalRequest::UniversalRequest;
virtual Response *execute() {
if (method != Session::Method::GET)
throw InvalidMethod(this);
if (body != nullptr)
throw BadRequest("This endpoint does not accept any body data");
auto *json_response =
json_pack("{ s: s }",
// TODO: Add connectivity check or heuristic here.
"connected", "unknown");
return new JsonResponse(session, HTTP_STATUS_OK, json_response);
}
};
// Register API requests
static char n[] = "universal/status";
static char r[] = "/universal/(" RE_NODE_NAME ")/status";
static char d[] = "get status of universal data-exchange API";
static RequestPlugin<StatusRequest, n, r, d> p;
} // namespace universal
} // namespace api
} // namespace node
} // namespace villas