/* The "shutdown" API request. * * Author: Steffen Vogel * SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include 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[] = "Terminate VILLASnode instance"; static RequestPlugin p; } // namespace api } // namespace node } // namespace villas