mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
44 lines
1,015 B
C++
44 lines
1,015 B
C++
/* The "shutdown" API request.
|
|
*
|
|
* 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 <signal.h>
|
|
|
|
#include <villas/api/request.hpp>
|
|
#include <villas/api/response.hpp>
|
|
#include <villas/utils.hpp>
|
|
|
|
namespace villas {
|
|
namespace node {
|
|
namespace api {
|
|
|
|
class ShutdownRequest : public Request {
|
|
|
|
public:
|
|
using Request::Request;
|
|
|
|
virtual Response *execute() {
|
|
if (method != Session::Method::POST)
|
|
throw InvalidMethod(this);
|
|
|
|
if (body != nullptr)
|
|
throw BadRequest("Shutdown endpoint does not accept any body data");
|
|
|
|
utils::killme(SIGTERM);
|
|
|
|
return new Response(session, HTTP_STATUS_OK);
|
|
}
|
|
};
|
|
|
|
// Register API request
|
|
static char n[] = "shutdown";
|
|
static char r[] = "/shutdown";
|
|
static char d[] = "quit VILLASnode";
|
|
static RequestPlugin<ShutdownRequest, n, r, d> p;
|
|
|
|
} // namespace api
|
|
} // namespace node
|
|
} // namespace villas
|