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.
|
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
|
|
|
mapi::header
|
|
|
|
IRCD_MODULE
|
|
|
|
{
|
|
|
|
"Matrix m.room.message"
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
_message_notify(const m::event &event,
|
|
|
|
m::vm::eval &eval)
|
|
|
|
{
|
|
|
|
const auto &body
|
|
|
|
{
|
|
|
|
unquote(json::get<"content"_>(event).get("body"))
|
|
|
|
};
|
|
|
|
|
|
|
|
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),
|
|
|
|
json::get<"content"_>(event).get("msgtype"),
|
|
|
|
trunc(body, 128),
|
|
|
|
size(body) > 128? "..."_sv : string_view{}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const m::hookfn<m::vm::eval &>
|
|
|
|
_message_notify_hookfn
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{ "_site", "vm.notify" },
|
|
|
|
{ "type", "m.room.message" },
|
|
|
|
},
|
|
|
|
_message_notify
|
|
|
|
};
|