2015-08-12 14:15:01 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2015-08-12 14:15:01 +02:00
|
|
|
* *
|
|
|
|
* 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/modifyobjecthandler.hpp"
|
|
|
|
#include "remote/httputility.hpp"
|
|
|
|
#include "remote/filterutility.hpp"
|
|
|
|
#include "remote/apiaction.hpp"
|
|
|
|
#include "base/exception.hpp"
|
2018-01-04 18:24:45 +01:00
|
|
|
#include <boost/algorithm/string/case_conv.hpp>
|
2015-08-12 14:15:01 +02:00
|
|
|
#include <set>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2015-09-28 08:37:50 +02:00
|
|
|
REGISTER_URLHANDLER("/v1/objects", ModifyObjectHandler);
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2016-05-10 15:16:35 +02:00
|
|
|
bool ModifyObjectHandler::HandleRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params)
|
2015-08-12 14:15:01 +02:00
|
|
|
{
|
2015-09-28 16:08:14 +02:00
|
|
|
if (request.RequestUrl->GetPath().size() < 3 || request.RequestUrl->GetPath().size() > 4)
|
2015-08-12 14:15:01 +02:00
|
|
|
return false;
|
|
|
|
|
2015-09-28 16:08:14 +02:00
|
|
|
if (request.RequestMethod != "POST")
|
2015-08-12 14:15:01 +02:00
|
|
|
return false;
|
|
|
|
|
2015-09-28 19:14:38 +02:00
|
|
|
Type::Ptr type = FilterUtility::TypeFromPluralName(request.RequestUrl->GetPath()[2]);
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2015-09-28 16:08:14 +02:00
|
|
|
if (!type) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 400, "Invalid type specified.");
|
2015-09-28 16:08:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-08-12 14:15:01 +02:00
|
|
|
|
|
|
|
QueryDescription qd;
|
2015-08-26 10:58:59 +02:00
|
|
|
qd.Types.insert(type->GetName());
|
2015-09-28 08:37:50 +02:00
|
|
|
qd.Permission = "objects/modify/" + type->GetName();
|
2015-08-12 14:15:01 +02:00
|
|
|
|
|
|
|
params->Set("type", type->GetName());
|
|
|
|
|
2015-09-28 08:37:50 +02:00
|
|
|
if (request.RequestUrl->GetPath().size() >= 4) {
|
2015-08-12 14:15:01 +02:00
|
|
|
String attr = type->GetName();
|
|
|
|
boost::algorithm::to_lower(attr);
|
2015-09-28 08:37:50 +02:00
|
|
|
params->Set(attr, request.RequestUrl->GetPath()[3]);
|
2015-08-12 14:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-02-04 22:40:01 +01:00
|
|
|
std::vector<Value> objs;
|
|
|
|
|
|
|
|
try {
|
|
|
|
objs = FilterUtility::GetFilterTargets(qd, params, user);
|
|
|
|
} catch (const std::exception& ex) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 404,
|
2017-12-19 15:50:05 +01:00
|
|
|
"No objects found.",
|
2018-04-06 12:52:17 +02:00
|
|
|
DiagnosticInformation(ex));
|
2016-02-04 22:40:01 +01:00
|
|
|
return true;
|
|
|
|
}
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2017-03-01 11:33:43 +01:00
|
|
|
Value attrsVal = params->Get("attrs");
|
|
|
|
|
|
|
|
if (attrsVal.GetReflectionType() != Dictionary::TypeInstance) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 400,
|
2018-04-06 12:52:17 +02:00
|
|
|
"Invalid type for 'attrs' attribute specified. Dictionary type is required.");
|
2017-03-01 11:33:43 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary::Ptr attrs = attrsVal;
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2018-04-06 12:26:49 +02:00
|
|
|
bool verbose = false;
|
|
|
|
|
|
|
|
if (params)
|
|
|
|
verbose = HttpUtility::GetLastParameter(params, "verbose");
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData results;
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const ConfigObject::Ptr& obj : objs) {
|
2015-08-12 15:27:35 +02:00
|
|
|
Dictionary::Ptr result1 = new Dictionary();
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2015-08-13 09:02:52 +02:00
|
|
|
result1->Set("type", type->GetName());
|
2015-08-12 15:27:35 +02:00
|
|
|
result1->Set("name", obj->GetName());
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2015-08-12 15:27:35 +02:00
|
|
|
String key;
|
2015-08-12 14:15:01 +02:00
|
|
|
|
2015-08-12 15:27:35 +02:00
|
|
|
try {
|
|
|
|
if (attrs) {
|
2015-08-12 14:15:01 +02:00
|
|
|
ObjectLock olock(attrs);
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Dictionary::Pair& kv : attrs) {
|
2015-08-12 14:15:01 +02:00
|
|
|
key = kv.first;
|
|
|
|
obj->ModifyAttribute(kv.first, kv.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 15:27:35 +02:00
|
|
|
result1->Set("code", 200);
|
|
|
|
result1->Set("status", "Attributes updated.");
|
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
result1->Set("code", 500);
|
2018-04-06 12:26:49 +02:00
|
|
|
result1->Set("status", "Attribute '" + key + "' could not be set: " + DiagnosticInformation(ex, false));
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
result1->Set("diagnostic_information", DiagnosticInformation(ex));
|
2015-08-12 14:15:01 +02:00
|
|
|
}
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
results.push_back(std::move(result1));
|
2015-08-12 14:15:01 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
Dictionary::Ptr result = new Dictionary({
|
|
|
|
{ "results", new Array(std::move(results)) }
|
|
|
|
});
|
2015-08-12 14:15:01 +02:00
|
|
|
|
|
|
|
response.SetStatus(200, "OK");
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonBody(response, params, result);
|
2015-08-12 14:15:01 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|