0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

modules/m_presence: Basic exception handling for the edu hook.

This commit is contained in:
Jason Volk 2018-04-15 19:57:32 -07:00
parent 4ee21dba48
commit 0504962248

View file

@ -47,6 +47,7 @@ _m_presence_eval
void
handle_edu_m_presence(const m::event &event)
try
{
if(m::my_host(at<"origin"_>(event)))
return;
@ -64,10 +65,24 @@ handle_edu_m_presence(const m::event &event)
for(const json::object &presence : push)
handle_edu_m_presence_(event, presence);
}
catch(const ctx::interrupted &)
{
throw;
}
catch(const std::exception &e)
{
log::error
{
"Presence from %s :%s",
json::get<"origin"_>(event),
e.what(),
};
}
void
handle_edu_m_presence_(const m::event &event,
const m::edu::m_presence &object)
try
{
const m::user::id &user_id
{
@ -107,3 +122,13 @@ handle_edu_m_presence_(const m::event &event,
json::get<"last_active_ago"_>(object) / 1000L
};
}
catch(const m::error &e)
{
log::error
{
"Presence from %s :%s :%s",
json::get<"origin"_>(event),
e.what(),
e.content
};
}