Skip to content

Commit 252e089

Browse files
committed
add join reasons
1 parent 9acc3e6 commit 252e089

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

mautrix/appservice/api/intent.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -280,12 +280,16 @@ async def unban_user(
280280
async def join_room_by_id(
281281
self,
282282
room_id: RoomID,
283+
reason: str | None = None,
283284
third_party_signed: JSON = None,
284285
extra_content: dict[str, JSON] | None = None,
285286
) -> RoomID:
286287
extra_content = self._add_source_key(extra_content)
287288
return await super().join_room_by_id(
288-
room_id, third_party_signed=third_party_signed, extra_content=extra_content
289+
room_id,
290+
reason=reason,
291+
third_party_signed=third_party_signed,
292+
extra_content=extra_content,
289293
)
290294

291295
async def leave_room(

mautrix/client/api/rooms.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ async def get_joined_rooms(self) -> list[RoomID]:
247247
async def join_room_by_id(
248248
self,
249249
room_id: RoomID,
250+
reason: str | None = None,
250251
third_party_signed: JSON = None,
251252
extra_content: dict[str, Any] | None = None,
252253
) -> RoomID:
@@ -257,6 +258,8 @@ async def join_room_by_id(
257258
258259
Args:
259260
room_id: The ID of the room to join.
261+
reason: The reason the user joined. This will be supplied as the ``reason`` on
262+
the `m.room.member`_ event.
260263
third_party_signed: A signature of an ``m.third_party_invite`` token to prove that this
261264
user owns a third party identity which has been invited to the room.
262265
extra_content: Additional properties for the join event content.
@@ -266,6 +269,12 @@ async def join_room_by_id(
266269
Returns:
267270
The ID of the room the user joined.
268271
"""
272+
content = (
273+
{"third_party_signed": third_party_signed} if third_party_signed is not None else None
274+
)
275+
if reason and not content:
276+
content = {}
277+
content["reason"] = reason
269278
if extra_content:
270279
await self.send_member_event(
271280
room_id, self.mxid, Membership.JOIN, extra_content=extra_content
@@ -274,7 +283,7 @@ async def join_room_by_id(
274283
content = await self.api.request(
275284
Method.POST,
276285
Path.v3.rooms[room_id].join,
277-
{"third_party_signed": third_party_signed} if third_party_signed is not None else None,
286+
content if third_party_signed is not None else None,
278287
)
279288
try:
280289
return content["room_id"]
@@ -285,6 +294,7 @@ async def join_room(
285294
self,
286295
room_id_or_alias: RoomID | RoomAlias,
287296
servers: list[str] | None = None,
297+
reason: str | None = None,
288298
third_party_signed: JSON = None,
289299
max_retries: int = 4,
290300
) -> RoomID:
@@ -298,6 +308,8 @@ async def join_room(
298308
room_id_or_alias: The ID of the room to join, or an alias pointing to the room.
299309
servers: A list of servers to ask about the room ID to join. Not applicable for aliases,
300310
as aliases already contain the necessary server information.
311+
reason: The reason the user joined. This will be supplied as the ``reason`` on
312+
the `m.room.member`_ event.
301313
third_party_signed: A signature of an ``m.third_party_invite`` token to prove that this
302314
user owns a third party identity which has been invited to the room.
303315
max_retries: The maximum number of retries. Used to circumvent a Synapse bug with
@@ -312,6 +324,9 @@ async def join_room(
312324
content = (
313325
{"third_party_signed": third_party_signed} if third_party_signed is not None else None
314326
)
327+
if reason and not content:
328+
content = {}
329+
content["reason"] = reason
315330
query_params = CIMultiDict()
316331
for server_name in servers or []:
317332
query_params.add("server_name", server_name)

mautrix/client/store_updater.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ def __init__(self, *args, state_store: StateStore | None = None, **kwargs) -> No
4242
async def join_room_by_id(
4343
self,
4444
room_id: RoomID,
45+
reason: str | None = None,
4546
third_party_signed: JSON = None,
4647
extra_content: dict[str, JSON] | None = None,
4748
) -> RoomID:
4849
room_id = await super().join_room_by_id(
49-
room_id, third_party_signed=third_party_signed, extra_content=extra_content
50+
room_id, reason, third_party_signed=third_party_signed, extra_content=extra_content
5051
)
5152
if room_id and not extra_content and self.state_store:
5253
await self.state_store.set_membership(room_id, self.mxid, Membership.JOIN)
@@ -56,11 +57,12 @@ async def join_room(
5657
self,
5758
room_id_or_alias: RoomID | RoomAlias,
5859
servers: list[str] | None = None,
60+
reason: str | None = None,
5961
third_party_signed: JSON = None,
6062
max_retries: int = 4,
6163
) -> RoomID:
6264
room_id = await super().join_room(
63-
room_id_or_alias, servers, third_party_signed, max_retries
65+
room_id_or_alias, servers, reason, third_party_signed, max_retries
6466
)
6567
if room_id and self.state_store:
6668
await self.state_store.set_membership(room_id, self.mxid, Membership.JOIN)

0 commit comments

Comments
 (0)