0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-01 01:28:54 +02:00
construct/modules/m_room_message.cc

63 lines
1.3 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
namespace ircd::m
{
static void room_message_notify(const event &, vm::eval &);
extern hookfn<vm::eval &> room_message_notify_hook;
}
ircd::mapi::header
IRCD_MODULE
{
"Matrix m.room.message"
};
decltype(ircd::m::room_message_notify_hook)
ircd::m::room_message_notify_hook
{
room_message_notify,
{
{ "_site", "vm.notify" },
{ "type", "m.room.message" },
}
};
void
ircd::m::room_message_notify(const event &event,
vm::eval &eval)
{
const auto &content
{
json::get<"content"_>(event)
};
const json::string &body
{
content.get("body")
};
const json::string &msgtype
{
content.get("msgtype")
};
log::info
{
m::log, "%s said %s in %s %s :%s%s",
json::get<"sender"_>(event),
string_view{event.event_id},
json::get<"room_id"_>(event),
msgtype,
trunc(body, 128),
size(body) > 128? "..."_sv : string_view{}
};
}