2012-04-19 11:29:36 +02:00
|
|
|
#include "i2-icinga.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
IcingaApplication::Ptr SubscriptionComponent::GetIcingaApplication(void) const
|
|
|
|
{
|
|
|
|
return static_pointer_cast<IcingaApplication>(GetApplication());
|
|
|
|
}
|
|
|
|
|
|
|
|
string SubscriptionComponent::GetName(void) const
|
|
|
|
{
|
|
|
|
return "subscriptioncomponent";
|
|
|
|
}
|
|
|
|
|
|
|
|
void SubscriptionComponent::Start(void)
|
|
|
|
{
|
|
|
|
m_SubscriptionEndpoint = make_shared<VirtualEndpoint>();
|
|
|
|
m_SubscriptionEndpoint->RegisterMethodHandler("message::Subscribe", bind_weak(&SubscriptionComponent::SubscribeMessageHandler, shared_from_this()));
|
|
|
|
m_SubscriptionEndpoint->RegisterMethodHandler("message::Provide", bind_weak(&SubscriptionComponent::ProvideMessageHandler, shared_from_this()));
|
2012-04-20 10:38:11 +02:00
|
|
|
m_SubscriptionEndpoint->RegisterMethodHandler("message::SetIdentity", bind_weak(&SubscriptionComponent::IdentityMessageHandler, shared_from_this()));
|
2012-04-19 11:29:36 +02:00
|
|
|
m_SubscriptionEndpoint->RegisterMethodSource("message::Subscribe");
|
|
|
|
m_SubscriptionEndpoint->RegisterMethodSource("message::Provide");
|
2012-04-20 10:38:11 +02:00
|
|
|
m_SubscriptionEndpoint->RegisterMethodSource("message::Welcome");
|
2012-04-19 11:29:36 +02:00
|
|
|
|
|
|
|
EndpointManager::Ptr mgr = GetIcingaApplication()->GetEndpointManager();
|
|
|
|
mgr->OnNewEndpoint += bind_weak(&SubscriptionComponent::NewEndpointHandler, shared_from_this());
|
|
|
|
mgr->ForeachEndpoint(bind(&SubscriptionComponent::NewEndpointHandler, this, _1));
|
|
|
|
mgr->RegisterEndpoint(m_SubscriptionEndpoint);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SubscriptionComponent::Stop(void)
|
|
|
|
{
|
|
|
|
EndpointManager::Ptr mgr = GetIcingaApplication()->GetEndpointManager();
|
|
|
|
mgr->UnregisterEndpoint(m_SubscriptionEndpoint);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SubscriptionComponent::SyncSubscription(Endpoint::Ptr target, string type, const NewMethodEventArgs& nmea)
|
|
|
|
{
|
|
|
|
JsonRpcRequest request;
|
|
|
|
request.SetVersion("2.0");
|
|
|
|
request.SetMethod(type);
|
|
|
|
|
|
|
|
Message params;
|
|
|
|
params.GetDictionary()->SetValueString("method", nmea.Method);
|
|
|
|
request.SetParams(params);
|
|
|
|
|
|
|
|
target->ProcessRequest(m_SubscriptionEndpoint, request);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SubscriptionComponent::SyncSubscriptions(Endpoint::Ptr target, const NewEndpointEventArgs& neea)
|
|
|
|
{
|
|
|
|
Endpoint::Ptr source = neea.Endpoint;
|
|
|
|
|
|
|
|
if (!source->IsLocal())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
source->ForeachMethodSink(bind(&SubscriptionComponent::SyncSubscription, this, target, "message::Subscribe", _1));
|
|
|
|
source->ForeachMethodSource(bind(&SubscriptionComponent::SyncSubscription, this, target, "message::Provide", _1));
|
|
|
|
|
|
|
|
// TODO: bind to endpoint's events
|
|
|
|
//endpoint->OnNewMethodSink...
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SubscriptionComponent::NewEndpointHandler(const NewEndpointEventArgs& neea)
|
|
|
|
{
|
|
|
|
if (neea.Endpoint->IsLocal())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
EndpointManager::Ptr mgr = GetIcingaApplication()->GetEndpointManager();
|
|
|
|
mgr->ForeachEndpoint(bind(&SubscriptionComponent::SyncSubscriptions, this, neea.Endpoint, _1));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SubscriptionComponent::SubscribeMessageHandler(const NewRequestEventArgs& nrea)
|
|
|
|
{
|
|
|
|
Message params;
|
|
|
|
if (!nrea.Request.GetParams(¶ms))
|
|
|
|
return 0;
|
|
|
|
|
2012-04-20 10:38:11 +02:00
|
|
|
SubscriptionMessage subscriptionMessage = params;
|
|
|
|
|
2012-04-19 11:29:36 +02:00
|
|
|
string method;
|
2012-04-20 10:38:11 +02:00
|
|
|
if (!subscriptionMessage.GetMethod(&method))
|
2012-04-19 11:29:36 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
nrea.Sender->RegisterMethodSink(method);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SubscriptionComponent::ProvideMessageHandler(const NewRequestEventArgs& nrea)
|
|
|
|
{
|
|
|
|
Message params;
|
|
|
|
if (!nrea.Request.GetParams(¶ms))
|
|
|
|
return 0;
|
|
|
|
|
2012-04-20 10:38:11 +02:00
|
|
|
SubscriptionMessage subscriptionMessage = params;
|
|
|
|
|
2012-04-19 11:29:36 +02:00
|
|
|
string method;
|
2012-04-20 10:38:11 +02:00
|
|
|
if (!subscriptionMessage.GetMethod(&method))
|
2012-04-19 11:29:36 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
nrea.Sender->RegisterMethodSource(method);
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-20 10:38:11 +02:00
|
|
|
|
|
|
|
int SubscriptionComponent::IdentityMessageHandler(const NewRequestEventArgs& nrea)
|
|
|
|
{
|
|
|
|
Message params;
|
|
|
|
if (!nrea.Request.GetParams(¶ms))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
IdentityMessage identityMessage = params;
|
|
|
|
|
|
|
|
string identity;
|
|
|
|
if (!identityMessage.GetIdentity(&identity))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
nrea.Sender->SetIdentity(identity);
|
|
|
|
|
|
|
|
/* there's no authentication for now, just tell them it's ok to send messages */
|
|
|
|
JsonRpcRequest request;
|
|
|
|
request.SetVersion("2.0");
|
|
|
|
request.SetMethod("message::Welcome");
|
|
|
|
nrea.Sender->ProcessRequest(m_SubscriptionEndpoint, request);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|