/****************************************************************************** * 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/typequeryhandler.hpp" #include "remote/httputility.hpp" #include "remote/filterutility.hpp" #include "base/configtype.hpp" #include "base/scriptglobal.hpp" #include "base/logger.hpp" #include #include using namespace icinga; REGISTER_URLHANDLER("/v1/types", TypeQueryHandler); class TypeTargetProvider final : public TargetProvider { public: DECLARE_PTR_TYPEDEFS(TypeTargetProvider); void FindTargets(const String& type, const std::function& addTarget) const override { for (const Type::Ptr& target : Type::GetAllTypes()) { addTarget(target); } } Value GetTargetByName(const String& type, const String& name) const override { Type::Ptr ptype = Type::GetByName(name); if (!ptype) BOOST_THROW_EXCEPTION(std::invalid_argument("Type does not exist.")); return ptype; } bool IsValidType(const String& type) const override { return type == "Type"; } String GetPluralName(const String& type) const override { return "types"; } }; bool TypeQueryHandler::HandleRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params) { if (request.RequestUrl->GetPath().size() > 3) return false; if (request.RequestMethod != "GET") return false; QueryDescription qd; qd.Types.insert("Type"); qd.Permission = "types"; qd.Provider = new TypeTargetProvider(); if (params->Contains("type")) params->Set("name", params->Get("type")); params->Set("type", "Type"); if (request.RequestUrl->GetPath().size() >= 3) params->Set("name", request.RequestUrl->GetPath()[2]); std::vector objs; try { objs = FilterUtility::GetFilterTargets(qd, params, user); } catch (const std::exception& ex) { HttpUtility::SendJsonError(response, params, 404, "No objects found.", HttpUtility::GetLastParameter(params, "verboseErrors") ? DiagnosticInformation(ex) : ""); return true; } ArrayData results; for (const Type::Ptr& obj : objs) { Dictionary::Ptr result1 = new Dictionary(); results.push_back(result1); Dictionary::Ptr resultAttrs = new Dictionary(); result1->Set("name", obj->GetName()); result1->Set("plural_name", obj->GetPluralName()); if (obj->GetBaseType()) result1->Set("base", obj->GetBaseType()->GetName()); result1->Set("abstract", obj->IsAbstract()); result1->Set("fields", resultAttrs); Dictionary::Ptr prototype = dynamic_pointer_cast(obj->GetPrototype()); Array::Ptr prototypeKeys = new Array(); result1->Set("prototype_keys", prototypeKeys); if (prototype) { ObjectLock olock(prototype); for (const Dictionary::Pair& kv : prototype) { prototypeKeys->Add(kv.first); } } int baseFieldCount = 0; if (obj->GetBaseType()) baseFieldCount = obj->GetBaseType()->GetFieldCount(); for (int fid = baseFieldCount; fid < obj->GetFieldCount(); fid++) { Field field = obj->GetFieldInfo(fid); Dictionary::Ptr fieldInfo = new Dictionary(); resultAttrs->Set(field.Name, fieldInfo); fieldInfo->Set("id", fid); fieldInfo->Set("type", field.TypeName); if (field.RefTypeName) fieldInfo->Set("ref_type", field.RefTypeName); if (field.Attributes & FANavigation) fieldInfo->Set("navigation_name", field.NavigationName); fieldInfo->Set("array_rank", field.ArrayRank); fieldInfo->Set("attributes", new Dictionary({ { "config", static_cast(field.Attributes & FAConfig) }, { "state", static_cast(field.Attributes & FAState) }, { "required", static_cast(field.Attributes & FARequired) }, { "navigation", static_cast(field.Attributes & FANavigation) }, { "no_user_modify", static_cast(field.Attributes & FANoUserModify) }, { "no_user_view", static_cast(field.Attributes & FANoUserView) }, { "deprecated", static_cast(field.Attributes & FADeprecated) } })); } } Dictionary::Ptr result = new Dictionary({ { "results", new Array(std::move(results)) } }); response.SetStatus(200, "OK"); HttpUtility::SendJsonBody(response, params, result); return true; }