/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ #include "remote/httputility.hpp" #include "remote/url.hpp" #include "base/json.hpp" #include "base/logger.hpp" #include #include #include #include using namespace icinga; Dictionary::Ptr HttpUtility::FetchRequestParameters(const Url::Ptr& url, const std::string& body) { Dictionary::Ptr result; if (!body.empty()) { Log(LogDebug, "HttpUtility") << "Request body: '" << body << '\''; result = JsonDecode(body); } if (!result) result = new Dictionary(); std::map> query; for (const auto& kv : url->GetQuery()) { query[kv.first].emplace_back(kv.second); } for (auto& kv : query) { result->Set(kv.first, Array::FromVector(kv.second)); } return result; } void HttpUtility::SendJsonBody(HttpResponse& response, const Dictionary::Ptr& params, const Value& val) { response.AddHeader("Content-Type", "application/json"); bool prettyPrint = false; if (params) prettyPrint = GetLastParameter(params, "pretty"); String body = JsonEncode(val, prettyPrint); response.WriteBody(body.CStr(), body.GetLength()); } void HttpUtility::SendJsonBody(boost::beast::http::response& 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); if (!varr.IsObjectType()) return varr; Array::Ptr arr = varr; if (arr->GetLength() == 0) return Empty; else return arr->Get(arr->GetLength() - 1); } void HttpUtility::SendJsonError(HttpResponse& response, const Dictionary::Ptr& params, int code, const String& info, const String& diagnosticInformation) { Dictionary::Ptr result = new Dictionary(); response.SetStatus(code, HttpUtility::GetErrorNameByCode(code)); result->Set("error", code); bool verbose = false; if (params) verbose = HttpUtility::GetLastParameter(params, "verbose"); if (!info.IsEmpty()) result->Set("status", info); if (verbose) { if (!diagnosticInformation.IsEmpty()) result->Set("diagnostic_information", diagnosticInformation); } HttpUtility::SendJsonBody(response, params, result); } void HttpUtility::SendJsonError(boost::beast::http::response& 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); } 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"; } }