2018-10-16 20:35:22 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-08-07 10:00:50 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
static void room_message_notify(const event &, vm::eval &);
|
|
|
|
extern hookfn<vm::eval &> room_message_notify_hook;
|
|
|
|
}
|
2018-10-16 20:35:22 +02:00
|
|
|
|
2019-08-07 10:00:50 +02:00
|
|
|
ircd::mapi::header
|
2018-10-16 20:35:22 +02:00
|
|
|
IRCD_MODULE
|
|
|
|
{
|
|
|
|
"Matrix m.room.message"
|
|
|
|
};
|
|
|
|
|
2019-08-07 10:00:50 +02:00
|
|
|
decltype(ircd::m::room_message_notify_hook)
|
|
|
|
ircd::m::room_message_notify_hook
|
2018-10-16 20:35:22 +02:00
|
|
|
{
|
2019-08-07 10:00:50 +02:00
|
|
|
room_message_notify,
|
2018-10-16 20:35:22 +02:00
|
|
|
{
|
2019-08-07 10:00:50 +02:00
|
|
|
{ "_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")
|
2018-10-16 20:35:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
log::info
|
|
|
|
{
|
2018-12-23 02:44:18 +01:00
|
|
|
m::log, "%s said %s in %s %s :%s%s",
|
2018-10-16 20:35:22 +02:00
|
|
|
json::get<"sender"_>(event),
|
2019-07-06 07:01:34 +02:00
|
|
|
string_view{event.event_id},
|
2018-10-16 20:35:22 +02:00
|
|
|
json::get<"room_id"_>(event),
|
2019-08-07 10:00:50 +02:00
|
|
|
msgtype,
|
2018-10-16 20:35:22 +02:00
|
|
|
trunc(body, 128),
|
|
|
|
size(body) > 128? "..."_sv : string_view{}
|
|
|
|
};
|
|
|
|
}
|