/****************************************************************************** * Icinga 2 * * Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) * * * * 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 : public TargetProvider { public: DECLARE_PTR_TYPEDEFS(TypeTargetProvider); virtual void FindTargets(const String& type, const boost::function& addTarget) const override { std::vector targets; { Dictionary::Ptr globals = ScriptGlobal::GetGlobals(); ObjectLock olock(globals); BOOST_FOREACH(const Dictionary::Pair& kv, globals) { if (kv.second.IsObjectType()) targets.push_back(kv.second); } } BOOST_FOREACH(const Type::Ptr& target, targets) { addTarget(target); } } virtual 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; } virtual bool IsValidType(const String& type) const override { return type == "Type"; } virtual String GetPluralName(const String& type) const override { return "types"; } }; bool TypeQueryHandler::HandleRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response) { if (request.RequestUrl->GetPath().size() > 3) return false; if (request.RequestMethod != "GET") return false; QueryDescription qd; qd.Types.insert("Type"); qd.Provider = new TypeTargetProvider(); Dictionary::Ptr params = HttpUtility::FetchRequestParameters(request); 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 = FilterUtility::GetFilterTargets(qd, params, user); Array::Ptr results = new Array(); BOOST_FOREACH(const Type::Ptr& obj, objs) { Dictionary::Ptr result1 = new Dictionary(); results->Add(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); BOOST_FOREACH(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); Dictionary::Ptr attributeInfo = new Dictionary(); fieldInfo->Set("attributes", attributeInfo); attributeInfo->Set("config", static_cast(field.Attributes & FAConfig)); attributeInfo->Set("state", static_cast(field.Attributes & FAState)); attributeInfo->Set("required", static_cast(field.Attributes & FARequired)); attributeInfo->Set("navigation", static_cast(field.Attributes & FANavigation)); attributeInfo->Set("no_user_modify", static_cast(field.Attributes & FANoUserModify)); attributeInfo->Set("no_user_view", static_cast(field.Attributes & FANoUserView)); } } Dictionary::Ptr result = new Dictionary(); result->Set("results", results); response.SetStatus(200, "OK"); HttpUtility::SendJsonBody(response, result); return true; }