0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00

modules/m_bridge_register: Add module w/ bridge set cmd from yam^h^h^hjson file. (closes #11)

This commit is contained in:
Jason Volk 2023-02-13 18:58:33 -08:00
parent fbd5b3f571
commit bc3aa62d59
4 changed files with 158 additions and 0 deletions

View file

@ -59,6 +59,7 @@ ircd::m::module_names
"m_noop", "m_noop",
"m_breadcrumbs", "m_breadcrumbs",
"m_bridge", "m_bridge",
"m_bridge_register",
"m_command", "m_command",
"m_control", "m_control",
"m_device", "m_device",

View file

@ -81,6 +81,7 @@ m_moduledir = @moduledir@
m_breadcrumbs_la_SOURCES = m_breadcrumbs.cc m_breadcrumbs_la_SOURCES = m_breadcrumbs.cc
m_bridge_la_SOURCES = m_bridge.cc m_bridge_la_SOURCES = m_bridge.cc
m_bridge_register_la_SOURCES = m_bridge_register.cc
m_command_la_SOURCES = m_command.cc m_command_la_SOURCES = m_command.cc
m_control_la_SOURCES = m_control.cc m_control_la_SOURCES = m_control.cc
m_device_la_SOURCES = m_device.cc m_device_la_SOURCES = m_device.cc
@ -114,6 +115,7 @@ m_room_tombstone_la_SOURCES = m_room_tombstone.cc
m_module_LTLIBRARIES = \ m_module_LTLIBRARIES = \
m_breadcrumbs.la \ m_breadcrumbs.la \
m_bridge.la \ m_bridge.la \
m_bridge_register.la \
m_command.la \ m_command.la \
m_control.la \ m_control.la \
m_device.la \ m_device.la \

View file

@ -17634,6 +17634,30 @@ console_cmd__bridge__protocol(opt &out, const string_view &line)
return true; return true;
} }
bool
console_cmd__bridge__set(opt &out, const string_view &line)
{
const params param{line, " ",
{
"file"
}};
static mods::import<m::event::id::buf (const string_view &)> set
{
"m_bridge_register", "ircd::m::bridge::set"
};
const auto event_id
{
set(param.at("file"))
};
out
<< "Bridge set. Configuration event: " << event_id
<< std::endl;
return true;
}
// //
// icu // icu
// //

View file

@ -0,0 +1,131 @@
// The Construct
//
// Copyright (C) The Construct Developers, Authors & Contributors
// Copyright (C) 2016-2023 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::bridge
{
event::id::buf set(const string_view &file);
}
ircd::mapi::header
IRCD_MODULE
{
"Bridges (Application Services) :Registration"
};
ircd::m::event::id::buf
IRCD_MODULE_EXPORT_CODE
ircd::m::bridge::set(const string_view &file)
{
const fs::fd fd
{
file
};
std::string content
{
fs::read(fd)
};
m::bridge::config config
{
json::object(content)
};
const auto update
{
[&content, &config]
{
content = json::strung(config);
config = json::object(content);
}
};
const m::user::id::buf user_id
{
at<"sender_localpart"_>(config), origin(my())
};
const m::room::id::buf room_id
{
at<"sender_localpart"_>(config), origin(my())
};
const bool user_exists
{
m::exists(user_id)
};
const bool room_exists
{
m::exists(room_id)
};
const bool has_as_token
{
!empty(json::get<"as_token"_>(config))
};
const bool has_as_token_prefix
{
startswith(json::get<"as_token"_>(config), "bridge_")
};
if(json::get<"id"_>(config) != user_id.localname())
throw error
{
"sender_localpart '%s' must match id '%s'",
json::get<"sender_localpart"_>(config),
json::get<"id"_>(config),
};
if(!user_exists)
m::create(user_id);
if(!room_exists)
m::create(room_id, user_id);
if(!is_oper(user_id))
m::user(user_id).oper();
const m::user::tokens tokens
{
user_id
};
if(!has_as_token)
{
char buf[2][128];
strlcpy(buf[0], "bridge_");
strlcat(buf[0], m::user::tokens::generate(buf[1]));
const string_view token{buf[0]};
tokens.add(token);
json::get<"as_token"_>(config) = token;
update();
}
else if(!has_as_token_prefix)
{
char buf[128];
strlcpy(buf, "bridge_");
strlcat(buf, json::get<"as_token"_>(config));
const string_view token{buf};
tokens.add(token);
json::get<"as_token"_>(config) = token;
update();
}
else if(!tokens.check(json::get<"as_token"_>(config)))
tokens.add(json::get<"as_token"_>(config));
const auto event_id
{
m::send(room_id, user_id, "ircd.bridge", at<"id"_>(config), content)
};
return event_id;
}