0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 18:38:52 +02:00

modules/client/createroom: Set the visibility in the public rooms list; minor cleanup.

This commit is contained in:
Jason Volk 2019-03-05 12:48:58 -08:00
parent 70484be697
commit c972683e2c

View file

@ -119,21 +119,6 @@ try
}});
}
if(json::get<"guest_can_join"_>(request)) try
{
send(room, sender_id, "m.room.guest_access", "",
{
{ "guest_access", "can_join" }
});
}
catch(const std::exception &e)
{
errors.append(string_view{fmt::sprintf
{
error_buf, "Failed to set guest_access: %s", e.what()
}});
}
if(json::get<"name"_>(request)) try
{
static const size_t name_max_len
@ -188,6 +173,36 @@ try
}});
}
if(json::get<"guest_can_join"_>(request)) try
{
send(room, sender_id, "m.room.guest_access", "",
{
{ "guest_access", "can_join" }
});
}
catch(const std::exception &e)
{
errors.append(string_view{fmt::sprintf
{
error_buf, "Failed to set guest_access: %s", e.what()
}});
}
if(json::get<"visibility"_>(request) == "public") try
{
// This call sends a message to the !public room to list this room in the
// public rooms list. We set an empty summary for this room because we
// already have its state on this server;
m::rooms::summary_set(room.room_id, json::object{});
}
catch(const std::exception &e)
{
errors.append(string_view{fmt::sprintf
{
error_buf, "Failed to set public visibility: %s", e.what()
}});
}
return {};
}
catch(const db::not_found &e)