Add HttpUtility::SendJsonBody() overload for Boost/Beast

This commit is contained in:
Alexander A. Klimov 2019-02-14 13:12:36 +01:00
parent 2d7714802d
commit fc22cbaf09
2 changed files with 12 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include "base/logger.hpp"
#include <map>
#include <vector>
#include <boost/beast/http.hpp>
using namespace icinga;
@ -55,6 +56,15 @@ void HttpUtility::SendJsonBody(HttpResponse& response, const Dictionary::Ptr& pa
response.WriteBody(body.CStr(), body.GetLength());
}
void HttpUtility::SendJsonBody(boost::beast::http::response<boost::beast::http::string_body>& response, const Dictionary::Ptr& params, const Value& val)
{
namespace http = boost::beast::http;
response.set(http::field::content_type, "application/json");
response.body() = JsonEncode(val, params && GetLastParameter(params, "pretty"));
response.set(http::field::content_length, response.body().size());
}
Value HttpUtility::GetLastParameter(const Dictionary::Ptr& params, const String& key)
{
Value varr = params->Get(key);

View File

@ -6,6 +6,7 @@
#include "remote/httprequest.hpp"
#include "remote/httpresponse.hpp"
#include "base/dictionary.hpp"
#include <boost/beast/http.hpp>
namespace icinga
{
@ -21,6 +22,7 @@ class HttpUtility
public:
static Dictionary::Ptr FetchRequestParameters(HttpRequest& request);
static void SendJsonBody(HttpResponse& response, const Dictionary::Ptr& params, const Value& val);
static void SendJsonBody(boost::beast::http::response<boost::beast::http::string_body>& response, const Dictionary::Ptr& params, const Value& val);
static Value GetLastParameter(const Dictionary::Ptr& params, const String& key);
static void SendJsonError(HttpResponse& response, const Dictionary::Ptr& params, const int code,
const String& verbose = String(), const String& diagnosticInformation = String());