mirror of https://github.com/Icinga/icinga2.git
183 lines
6.8 KiB
C++
183 lines
6.8 KiB
C++
/******************************************************************************
|
|
* Icinga 2 *
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License *
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
* of the License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
******************************************************************************/
|
|
|
|
#include "remote/configstageshandler.hpp"
|
|
#include "remote/configpackageutility.hpp"
|
|
#include "remote/httputility.hpp"
|
|
#include "remote/filterutility.hpp"
|
|
#include "base/application.hpp"
|
|
#include "base/exception.hpp"
|
|
#include <boost/algorithm/string/join.hpp>
|
|
|
|
using namespace icinga;
|
|
|
|
REGISTER_URLHANDLER("/v1/config/stages", ConfigStagesHandler);
|
|
|
|
bool ConfigStagesHandler::HandleRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params)
|
|
{
|
|
if (request.RequestUrl->GetPath().size() > 5)
|
|
return false;
|
|
|
|
if (request.RequestMethod == "GET")
|
|
HandleGet(user, request, response, params);
|
|
else if (request.RequestMethod == "POST")
|
|
HandlePost(user, request, response, params);
|
|
else if (request.RequestMethod == "DELETE")
|
|
HandleDelete(user, request, response, params);
|
|
else
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void ConfigStagesHandler::HandleGet(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params)
|
|
{
|
|
FilterUtility::CheckPermission(user, "config/query");
|
|
|
|
if (request.RequestUrl->GetPath().size() >= 4)
|
|
params->Set("package", request.RequestUrl->GetPath()[3]);
|
|
|
|
if (request.RequestUrl->GetPath().size() >= 5)
|
|
params->Set("stage", request.RequestUrl->GetPath()[4]);
|
|
|
|
String packageName = HttpUtility::GetLastParameter(params, "package");
|
|
String stageName = HttpUtility::GetLastParameter(params, "stage");
|
|
|
|
if (!ConfigPackageUtility::ValidateName(packageName))
|
|
return HttpUtility::SendJsonError(response, params, 400, "Invalid package name.");
|
|
|
|
if (!ConfigPackageUtility::ValidateName(stageName))
|
|
return HttpUtility::SendJsonError(response, params, 400, "Invalid stage name.");
|
|
|
|
ArrayData results;
|
|
|
|
std::vector<std::pair<String, bool> > paths = ConfigPackageUtility::GetFiles(packageName, stageName);
|
|
|
|
String prefixPath = ConfigPackageUtility::GetPackageDir() + "/" + packageName + "/" + stageName + "/";
|
|
|
|
for (const auto& kv : paths) {
|
|
results.push_back(new Dictionary({
|
|
{ "type", kv.second ? "directory" : "file" },
|
|
{ "name", kv.first.SubStr(prefixPath.GetLength()) }
|
|
}));
|
|
}
|
|
|
|
Dictionary::Ptr result = new Dictionary({
|
|
{ "results", new Array(std::move(results)) }
|
|
});
|
|
|
|
response.SetStatus(200, "OK");
|
|
HttpUtility::SendJsonBody(response, params, result);
|
|
}
|
|
|
|
void ConfigStagesHandler::HandlePost(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params)
|
|
{
|
|
FilterUtility::CheckPermission(user, "config/modify");
|
|
|
|
if (request.RequestUrl->GetPath().size() >= 4)
|
|
params->Set("package", request.RequestUrl->GetPath()[3]);
|
|
|
|
String packageName = HttpUtility::GetLastParameter(params, "package");
|
|
|
|
if (!ConfigPackageUtility::ValidateName(packageName))
|
|
return HttpUtility::SendJsonError(response, params, 400, "Invalid package name.");
|
|
|
|
bool reload = true;
|
|
if (params->Contains("reload"))
|
|
reload = HttpUtility::GetLastParameter(params, "reload");
|
|
|
|
Dictionary::Ptr files = params->Get("files");
|
|
|
|
String stageName;
|
|
|
|
try {
|
|
if (!files)
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Parameter 'files' must be specified."));
|
|
|
|
boost::mutex::scoped_lock lock(ConfigPackageUtility::GetStaticMutex());
|
|
stageName = ConfigPackageUtility::CreateStage(packageName, files);
|
|
|
|
/* validate the config. on success, activate stage and reload */
|
|
ConfigPackageUtility::AsyncTryActivateStage(packageName, stageName, reload);
|
|
} catch (const std::exception& ex) {
|
|
return HttpUtility::SendJsonError(response, params, 500,
|
|
"Stage creation failed.",
|
|
HttpUtility::GetLastParameter(params, "verboseErrors") ? DiagnosticInformation(ex) : "");
|
|
}
|
|
|
|
|
|
String responseStatus = "Created stage. ";
|
|
responseStatus += (reload ? " Icinga2 will reload." : " Icinga2 reload skipped.");
|
|
|
|
Dictionary::Ptr result1 = new Dictionary({
|
|
{ "package", packageName },
|
|
{ "stage", stageName },
|
|
{ "code", 200 },
|
|
{ "status", responseStatus }
|
|
});
|
|
|
|
Dictionary::Ptr result = new Dictionary({
|
|
{ "results", new Array({ result1 }) }
|
|
});
|
|
|
|
response.SetStatus(200, "OK");
|
|
HttpUtility::SendJsonBody(response, params, result);
|
|
}
|
|
|
|
void ConfigStagesHandler::HandleDelete(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params)
|
|
{
|
|
FilterUtility::CheckPermission(user, "config/modify");
|
|
|
|
if (request.RequestUrl->GetPath().size() >= 4)
|
|
params->Set("package", request.RequestUrl->GetPath()[3]);
|
|
|
|
if (request.RequestUrl->GetPath().size() >= 5)
|
|
params->Set("stage", request.RequestUrl->GetPath()[4]);
|
|
|
|
String packageName = HttpUtility::GetLastParameter(params, "package");
|
|
String stageName = HttpUtility::GetLastParameter(params, "stage");
|
|
|
|
if (!ConfigPackageUtility::ValidateName(packageName))
|
|
return HttpUtility::SendJsonError(response, params, 400, "Invalid package name.");
|
|
|
|
if (!ConfigPackageUtility::ValidateName(stageName))
|
|
return HttpUtility::SendJsonError(response, params, 400, "Invalid stage name.");
|
|
|
|
try {
|
|
ConfigPackageUtility::DeleteStage(packageName, stageName);
|
|
} catch (const std::exception& ex) {
|
|
return HttpUtility::SendJsonError(response, params, 500,
|
|
"Failed to delete stage.",
|
|
HttpUtility::GetLastParameter(params, "verboseErrors") ? DiagnosticInformation(ex) : "");
|
|
}
|
|
|
|
Dictionary::Ptr result1 = new Dictionary({
|
|
{ "code", 200 },
|
|
{ "status", "Stage deleted." }
|
|
});
|
|
|
|
Dictionary::Ptr result = new Dictionary({
|
|
{ "results", new Array({ result1 }) }
|
|
});
|
|
|
|
response.SetStatus(200, "OK");
|
|
HttpUtility::SendJsonBody(response, params, result);
|
|
}
|
|
|