diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:15:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:15:43 +0000 |
commit | f5f56e1a1c4d9e9496fcb9d81131066a964ccd23 (patch) | |
tree | 49e44c6f87febed37efb953ab5485aa49f6481a7 /src/lib/config/cmd_response_creator.h | |
parent | Initial commit. (diff) | |
download | isc-kea-upstream.tar.xz isc-kea-upstream.zip |
Adding upstream version 2.4.1.upstream/2.4.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib/config/cmd_response_creator.h')
-rw-r--r-- | src/lib/config/cmd_response_creator.h | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/src/lib/config/cmd_response_creator.h b/src/lib/config/cmd_response_creator.h new file mode 100644 index 0000000..2d76749 --- /dev/null +++ b/src/lib/config/cmd_response_creator.h @@ -0,0 +1,132 @@ +// Copyright (C) 2021-2022 Internet Systems Consortium, Inc. ("ISC") +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#ifndef CMD__RESPONSE_CREATOR_H +#define CMD__RESPONSE_CREATOR_H + +#include <http/response_creator.h> +#include <http/basic_auth_config.h> +#include <boost/shared_ptr.hpp> +#include <unordered_set> + +namespace isc { +namespace config { + +/// @brief Concrete implementation of the HTTP response creator used +/// for processing API commands +/// +/// See the documentation of the @ref isc::http::HttpResponseCreator for +/// the basic information how HTTP response creators are utilized by +/// the libkea-http library to generate HTTP responses. +/// +/// This creator expects that received requests are encapsulated in the +/// @ref isc::http::PostHttpRequestJson objects. The generated responses +/// are encapsulated in the HttpResponseJson objects. +/// +/// This class uses @ref CommandMgr singleton to process commands +/// conveyed in the HTTP body. The JSON responses returned by the manager +/// are placed in the body of the generated HTTP responses. +class CmdResponseCreator : public http::HttpResponseCreator { +public: + + /// @brief Constructor + /// + /// @param emulate_agent_response if true, responses for normal + /// command outcomes are guaranteed to be wrapped in an Element::list. + /// This emulates how kea-ctrl-agent forms responses. Defaults to true. + CmdResponseCreator(bool emulate_agent_response = true) + : emulate_agent_response_(emulate_agent_response) {}; + + /// @brief Create a new request. + /// + /// This method creates a bare instance of the @ref + /// isc::http::PostHttpRequestJson. + /// + /// @return Pointer to the new instance of the @ref + /// isc::http::PostHttpRequestJson. + virtual http::HttpRequestPtr createNewHttpRequest() const; + + /// @brief Creates stock HTTP response. + /// + /// @param request Pointer to an object representing HTTP request. + /// @param status_code Status code of the response. + /// @return Pointer to an @ref isc::http::HttpResponseJson object + /// representing stock HTTP response. + virtual http::HttpResponsePtr + createStockHttpResponse(const http::HttpRequestPtr& request, + const http::HttpStatusCode& status_code) const; + + /// @brief Indicates whether or not agent response emulation is enabled. + /// + /// @return true if emulation is enabled. + bool emulateAgentResponse() { + return (emulate_agent_response_); + } + + /// @brief Filter commands. + /// + /// From RBAC code: if the access list is empty or the command + /// cannot be found just return. + /// + /// @param request The HTTP request (for the HTTP version). + /// @param body The request body. + /// @param accept The accept access list. + http::HttpResponseJsonPtr + filterCommand(const http::HttpRequestPtr& request, + const data::ConstElementPtr& body, + const std::unordered_set<std::string>& accept); + + /// @brief The server current authentication configuration. + /// + /// Default to the empty HttpAuthConfigPtr. + /// + /// @note: This is currently not used, except in unit-tests. For the time being, + /// we postponed writing the corresponding code in the HA, so http_auth_config_ + /// is left to its empty default value. + static http::HttpAuthConfigPtr http_auth_config_; + + /// @brief The server command accept list. + /// + /// Default to the empty list which means to accept everything. + static std::unordered_set<std::string> command_accept_list_; + +private: + + /// @brief Creates un-finalized stock HTTP response. + /// + /// The un-finalized response is the response that can't be sent over the + /// wire until @c finalize() is called, which commits the contents of the + /// message body. + /// + /// @param request Pointer to an object representing HTTP request. + /// @param status_code Status code of the response. + /// @return Pointer to an @ref isc::http::HttpResponseJson object + /// representing stock HTTP response. + http::HttpResponsePtr + createStockHttpResponseInternal(const http::HttpRequestPtr& request, + const http::HttpStatusCode& status_code) const; + + /// @brief Creates implementation specific HTTP response. + /// + /// @param request Pointer to an object representing HTTP request. + /// @return Pointer to an object representing HTTP response. + virtual http::HttpResponsePtr + createDynamicHttpResponse(http::HttpRequestPtr request); + + /// @brief Determines whether or not responses are enclosed in an Element::list. + /// Currently kea-ctrl-agent wraps all responses in a list, as it may have + /// response from more than one server. If this is true, we'll ensure + /// responses (other than error responses) are in a list. + bool emulate_agent_response_; +}; + +/// @brief Pointer to the @ref CmdResponseCreator. +typedef boost::shared_ptr<CmdResponseCreator> CmdResponseCreatorPtr; + +} // end of namespace isc::config +} // end of namespace isc + +#endif |