2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
#include "remote/httputility.hpp"
|
|
|
|
#include "base/json.hpp"
|
2015-11-09 22:48:03 +01:00
|
|
|
#include "base/logger.hpp"
|
2018-12-21 11:52:37 +01:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2019-02-14 13:12:36 +01:00
|
|
|
#include <boost/beast/http.hpp>
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
Dictionary::Ptr HttpUtility::FetchRequestParameters(HttpRequest& request)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr result;
|
|
|
|
|
|
|
|
String body;
|
|
|
|
char buffer[1024];
|
|
|
|
size_t count;
|
|
|
|
|
|
|
|
while ((count = request.ReadBody(buffer, sizeof(buffer))) > 0)
|
|
|
|
body += String(buffer, buffer + count);
|
|
|
|
|
2015-11-09 22:48:03 +01:00
|
|
|
if (!body.IsEmpty()) {
|
|
|
|
Log(LogDebug, "HttpUtility")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Request body: '" << body << "'";
|
2018-10-09 12:55:53 +02:00
|
|
|
|
2015-07-21 16:10:13 +02:00
|
|
|
result = JsonDecode(body);
|
2015-11-09 22:48:03 +01:00
|
|
|
}
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
if (!result)
|
|
|
|
result = new Dictionary();
|
|
|
|
|
2018-12-21 11:52:37 +01:00
|
|
|
std::map<String, std::vector<String>> query;
|
|
|
|
for (const auto& kv : request.RequestUrl->GetQuery()) {
|
|
|
|
query[kv.first].emplace_back(kv.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& kv : query) {
|
2015-07-29 13:09:42 +02:00
|
|
|
result->Set(kv.first, Array::FromVector(kv.second));
|
2015-07-21 16:10:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-12-20 15:31:05 +01:00
|
|
|
void HttpUtility::SendJsonBody(HttpResponse& response, const Dictionary::Ptr& params, const Value& val)
|
2015-07-21 16:10:13 +02:00
|
|
|
{
|
|
|
|
response.AddHeader("Content-Type", "application/json");
|
|
|
|
|
2017-12-20 15:31:05 +01:00
|
|
|
bool prettyPrint = false;
|
|
|
|
|
|
|
|
if (params)
|
|
|
|
prettyPrint = GetLastParameter(params, "pretty");
|
|
|
|
|
|
|
|
String body = JsonEncode(val, prettyPrint);
|
|
|
|
|
2015-07-21 16:10:13 +02:00
|
|
|
response.WriteBody(body.CStr(), body.GetLength());
|
|
|
|
}
|
|
|
|
|
2019-02-14 13:12:36 +01:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2015-07-30 17:50:17 +02:00
|
|
|
Value HttpUtility::GetLastParameter(const Dictionary::Ptr& params, const String& key)
|
2015-07-29 13:39:58 +02:00
|
|
|
{
|
|
|
|
Value varr = params->Get(key);
|
|
|
|
|
|
|
|
if (!varr.IsObjectType<Array>())
|
|
|
|
return varr;
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2015-07-29 13:39:58 +02:00
|
|
|
Array::Ptr arr = varr;
|
|
|
|
|
|
|
|
if (arr->GetLength() == 0)
|
2015-07-30 17:50:17 +02:00
|
|
|
return Empty;
|
2015-07-29 13:39:58 +02:00
|
|
|
else
|
|
|
|
return arr->Get(arr->GetLength() - 1);
|
|
|
|
}
|
2015-09-22 17:58:12 +02:00
|
|
|
|
2017-12-20 15:31:05 +01:00
|
|
|
void HttpUtility::SendJsonError(HttpResponse& response, const Dictionary::Ptr& params,
|
|
|
|
int code, const String& info, const String& diagnosticInformation)
|
2015-09-22 17:58:12 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr result = new Dictionary();
|
|
|
|
response.SetStatus(code, HttpUtility::GetErrorNameByCode(code));
|
|
|
|
result->Set("error", code);
|
2017-12-20 15:31:05 +01:00
|
|
|
|
2018-04-05 17:17:06 +02:00
|
|
|
bool verbose = false;
|
|
|
|
|
|
|
|
if (params)
|
|
|
|
verbose = HttpUtility::GetLastParameter(params, "verbose");
|
|
|
|
|
2015-09-22 17:58:12 +02:00
|
|
|
if (!info.IsEmpty())
|
|
|
|
result->Set("status", info);
|
2017-12-20 15:31:05 +01:00
|
|
|
|
2018-04-05 17:17:06 +02:00
|
|
|
if (verbose) {
|
|
|
|
if (!diagnosticInformation.IsEmpty())
|
|
|
|
result->Set("diagnostic_information", diagnosticInformation);
|
|
|
|
}
|
2017-12-20 15:31:05 +01:00
|
|
|
|
|
|
|
HttpUtility::SendJsonBody(response, params, result);
|
2015-09-22 17:58:12 +02:00
|
|
|
}
|
|
|
|
|
2019-02-14 16:07:06 +01:00
|
|
|
void HttpUtility::SendJsonError(boost::beast::http::response<boost::beast::http::string_body>& response,
|
|
|
|
const Dictionary::Ptr& params, int code, const String& info, const String& diagnosticInformation)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr result = new Dictionary({ { "error", code } });
|
|
|
|
|
|
|
|
if (!info.IsEmpty()) {
|
|
|
|
result->Set("status", info);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params && HttpUtility::GetLastParameter(params, "verbose") && !diagnosticInformation.IsEmpty()) {
|
|
|
|
result->Set("diagnostic_information", diagnosticInformation);
|
|
|
|
}
|
|
|
|
|
|
|
|
response.result(code);
|
|
|
|
|
|
|
|
HttpUtility::SendJsonBody(response, params, result);
|
|
|
|
}
|
|
|
|
|
2015-09-22 17:58:12 +02:00
|
|
|
String HttpUtility::GetErrorNameByCode(const int code)
|
|
|
|
{
|
|
|
|
switch(code) {
|
|
|
|
case 200:
|
|
|
|
return "OK";
|
|
|
|
case 201:
|
|
|
|
return "Created";
|
|
|
|
case 204:
|
|
|
|
return "No Content";
|
|
|
|
case 304:
|
|
|
|
return "Not Modified";
|
|
|
|
case 400:
|
|
|
|
return "Bad Request";
|
|
|
|
case 401:
|
|
|
|
return "Unauthorized";
|
|
|
|
case 403:
|
|
|
|
return "Forbidden";
|
|
|
|
case 404:
|
|
|
|
return "Not Found";
|
|
|
|
case 409:
|
|
|
|
return "Conflict";
|
|
|
|
case 500:
|
|
|
|
return "Internal Server Error";
|
|
|
|
default:
|
|
|
|
return "Unknown Error Code";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|