diff --git a/lib/icinga/externalcommand.cpp b/lib/icinga/externalcommand.cpp index 6759d73a8..491260b29 100644 --- a/lib/icinga/externalcommand.cpp +++ b/lib/icinga/externalcommand.cpp @@ -41,7 +41,10 @@ void ExternalCommand::Execute(double time, const String& command, const vector service->SetAcknowledgementExpiry(0); } +void ExternalCommand::EnableHostgroupSvcChecks(double time, const vector& arguments) +{ + if (arguments.size() < 1) + throw_exception(invalid_argument("Expected 1 argument.")); + + if (!HostGroup::Exists(arguments[0])) + throw_exception(invalid_argument("The host group '" + arguments[0] + "' does not exist.")); + + HostGroup::Ptr hg = HostGroup::GetByName(arguments[0]); + + BOOST_FOREACH(const Host::Ptr& host, hg->GetMembers()) { + // TODO: finish implementing this (#3566) + } +} + +void ExternalCommand::DisableHostgroupSvcChecks(double time, const vector& arguments) +{ + if (arguments.size() < 1) + throw_exception(invalid_argument("Expected 1 argument.")); + + if (!HostGroup::Exists(arguments[0])) + throw_exception(invalid_argument("The host group '" + arguments[0] + "' does not exist.")); + + HostGroup::Ptr hg = HostGroup::GetByName(arguments[0]); + + BOOST_FOREACH(const Host::Ptr& host, hg->GetMembers()) { + // TODO: finish implementing this (#3566) + } +} + +void ExternalCommand::EnableServicegroupSvcChecks(double time, const vector& arguments) +{ + if (arguments.size() < 1) + throw_exception(invalid_argument("Expected 1 argument.")); + + if (!ServiceGroup::Exists(arguments[0])) + throw_exception(invalid_argument("The service group '" + arguments[0] + "' does not exist.")); + + ServiceGroup::Ptr sg = ServiceGroup::GetByName(arguments[0]); + + BOOST_FOREACH(const Service::Ptr& service, sg->GetMembers()) { + Logger::Write(LogInformation, "icinga", "Enabling checks for service '" + service->GetName() + "'"); + service->SetEnableChecks(true); + } +} + +void ExternalCommand::DisableServicegroupSvcChecks(double time, const vector& arguments) +{ + if (arguments.size() < 1) + throw_exception(invalid_argument("Expected 1 argument.")); + + if (!ServiceGroup::Exists(arguments[0])) + throw_exception(invalid_argument("The service group '" + arguments[0] + "' does not exist.")); + + ServiceGroup::Ptr sg = ServiceGroup::GetByName(arguments[0]); + + BOOST_FOREACH(const Service::Ptr& service, sg->GetMembers()) { + Logger::Write(LogInformation, "icinga", "Disabling checks for service '" + service->GetName() + "'"); + service->SetEnableChecks(false); + } +} + diff --git a/lib/icinga/externalcommand.h b/lib/icinga/externalcommand.h index 346c6041b..964d419f8 100644 --- a/lib/icinga/externalcommand.h +++ b/lib/icinga/externalcommand.h @@ -42,6 +42,10 @@ public: static void AcknowledgeSvcProblem(double time, const vector& arguments); static void AcknowledgeSvcProblemExpire(double time, const vector& arguments); static void RemoveSvcAcknowledgement(double time, const vector& arguments); + static void EnableHostgroupSvcChecks(double time, const vector& arguments); + static void DisableHostgroupSvcChecks(double time, const vector& arguments); + static void EnableServicegroupSvcChecks(double time, const vector& arguments); + static void DisableServicegroupSvcChecks(double time, const vector& arguments); private: typedef function& arguments)> Callback;