2015-08-12 15:27:35 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2015-08-12 15:27:35 +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/createobjecthandler.hpp"
|
2015-08-18 14:21:55 +02:00
|
|
|
#include "remote/configobjectutility.hpp"
|
2015-08-12 15:27:35 +02:00
|
|
|
#include "remote/httputility.hpp"
|
|
|
|
#include "remote/filterutility.hpp"
|
|
|
|
#include "remote/apiaction.hpp"
|
2015-08-20 17:18:48 +02:00
|
|
|
#include "base/configtype.hpp"
|
2015-08-12 15:27:35 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2015-09-28 08:37:50 +02:00
|
|
|
REGISTER_URLHANDLER("/v1/objects", CreateObjectHandler);
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2016-05-10 15:16:35 +02:00
|
|
|
bool CreateObjectHandler::HandleRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params)
|
2015-08-12 15:27:35 +02:00
|
|
|
{
|
2015-09-28 16:08:14 +02:00
|
|
|
if (request.RequestUrl->GetPath().size() != 4)
|
2015-09-27 15:27:08 +02:00
|
|
|
return false;
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2015-09-28 16:08:14 +02:00
|
|
|
if (request.RequestMethod != "PUT")
|
|
|
|
return false;
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2015-09-28 08:37:50 +02:00
|
|
|
Type::Ptr type = FilterUtility::TypeFromPluralName(request.RequestUrl->GetPath()[2]);
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2015-09-22 17:58:12 +02:00
|
|
|
if (!type) {
|
2015-09-28 16:08:14 +02:00
|
|
|
HttpUtility::SendJsonError(response, 400, "Invalid type specified.");
|
2015-09-22 17:58:12 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2015-09-28 08:57:25 +02:00
|
|
|
FilterUtility::CheckPermission(user, "objects/create/" + type->GetName());
|
|
|
|
|
2015-09-28 08:37:50 +02:00
|
|
|
String name = request.RequestUrl->GetPath()[3];
|
2015-08-12 15:27:35 +02:00
|
|
|
Array::Ptr templates = params->Get("templates");
|
|
|
|
Dictionary::Ptr attrs = params->Get("attrs");
|
|
|
|
|
|
|
|
Dictionary::Ptr result1 = new Dictionary();
|
2015-08-13 09:02:52 +02:00
|
|
|
String status;
|
2015-08-18 14:21:55 +02:00
|
|
|
Array::Ptr errors = new Array();
|
2015-09-22 17:58:12 +02:00
|
|
|
|
2015-08-20 17:18:48 +02:00
|
|
|
bool ignoreOnError = false;
|
|
|
|
|
|
|
|
if (params->Contains("ignore_on_error"))
|
|
|
|
ignoreOnError = HttpUtility::GetLastParameter(params, "ignore_on_error");
|
|
|
|
|
2015-11-09 12:30:30 +01:00
|
|
|
Array::Ptr results = new Array();
|
|
|
|
results->Add(result1);
|
|
|
|
|
|
|
|
Dictionary::Ptr result = new Dictionary();
|
|
|
|
result->Set("results", results);
|
|
|
|
|
2016-05-10 13:42:05 +02:00
|
|
|
String config;
|
|
|
|
|
|
|
|
try {
|
|
|
|
config = ConfigObjectUtility::CreateObjectConfig(type, name, ignoreOnError, templates, attrs);
|
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
errors->Add(DiagnosticInformation(ex));
|
|
|
|
|
|
|
|
result1->Set("errors", errors);
|
|
|
|
result1->Set("code", 500);
|
|
|
|
result1->Set("status", "Object could not be created.");
|
|
|
|
|
|
|
|
response.SetStatus(500, "Object could not be created");
|
|
|
|
HttpUtility::SendJsonBody(response, result);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:43:03 +02:00
|
|
|
if (!ConfigObjectUtility::CreateObject(type, name, config, errors)) {
|
2015-08-18 14:21:55 +02:00
|
|
|
result1->Set("errors", errors);
|
2015-11-09 12:30:30 +01:00
|
|
|
result1->Set("code", 500);
|
|
|
|
result1->Set("status", "Object could not be created.");
|
|
|
|
|
|
|
|
response.SetStatus(500, "Object could not be created");
|
|
|
|
HttpUtility::SendJsonBody(response, result);
|
|
|
|
|
2015-09-22 17:58:12 +02:00
|
|
|
return true;
|
2015-08-13 09:02:52 +02:00
|
|
|
}
|
|
|
|
|
2016-08-16 11:02:10 +02:00
|
|
|
ConfigType *ctype = dynamic_cast<ConfigType *>(type.get());
|
|
|
|
ConfigObject::Ptr obj = ctype->GetObject(name);
|
2015-08-20 17:18:48 +02:00
|
|
|
|
2015-09-22 17:58:12 +02:00
|
|
|
result1->Set("code", 200);
|
2015-08-20 17:18:48 +02:00
|
|
|
|
|
|
|
if (obj)
|
|
|
|
result1->Set("status", "Object was created");
|
|
|
|
else if (!obj && ignoreOnError)
|
|
|
|
result1->Set("status", "Object was not created but 'ignore_on_error' was set to true");
|
2015-08-12 15:27:35 +02:00
|
|
|
|
2015-09-22 17:58:12 +02:00
|
|
|
response.SetStatus(200, "OK");
|
2015-08-12 15:27:35 +02:00
|
|
|
HttpUtility::SendJsonBody(response, result);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|