@@ -247,6 +247,7 @@ async def get_joined_rooms(self) -> list[RoomID]:
247
247
async def join_room_by_id (
248
248
self ,
249
249
room_id : RoomID ,
250
+ reason : str | None = None ,
250
251
third_party_signed : JSON = None ,
251
252
extra_content : dict [str , Any ] | None = None ,
252
253
) -> RoomID :
@@ -257,6 +258,8 @@ async def join_room_by_id(
257
258
258
259
Args:
259
260
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.
260
263
third_party_signed: A signature of an ``m.third_party_invite`` token to prove that this
261
264
user owns a third party identity which has been invited to the room.
262
265
extra_content: Additional properties for the join event content.
@@ -266,6 +269,12 @@ async def join_room_by_id(
266
269
Returns:
267
270
The ID of the room the user joined.
268
271
"""
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
269
278
if extra_content :
270
279
await self .send_member_event (
271
280
room_id , self .mxid , Membership .JOIN , extra_content = extra_content
@@ -274,7 +283,7 @@ async def join_room_by_id(
274
283
content = await self .api .request (
275
284
Method .POST ,
276
285
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 ,
278
287
)
279
288
try :
280
289
return content ["room_id" ]
@@ -285,6 +294,7 @@ async def join_room(
285
294
self ,
286
295
room_id_or_alias : RoomID | RoomAlias ,
287
296
servers : list [str ] | None = None ,
297
+ reason : str | None = None ,
288
298
third_party_signed : JSON = None ,
289
299
max_retries : int = 4 ,
290
300
) -> RoomID :
@@ -298,6 +308,8 @@ async def join_room(
298
308
room_id_or_alias: The ID of the room to join, or an alias pointing to the room.
299
309
servers: A list of servers to ask about the room ID to join. Not applicable for aliases,
300
310
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.
301
313
third_party_signed: A signature of an ``m.third_party_invite`` token to prove that this
302
314
user owns a third party identity which has been invited to the room.
303
315
max_retries: The maximum number of retries. Used to circumvent a Synapse bug with
@@ -312,6 +324,9 @@ async def join_room(
312
324
content = (
313
325
{"third_party_signed" : third_party_signed } if third_party_signed is not None else None
314
326
)
327
+ if reason and not content :
328
+ content = {}
329
+ content ["reason" ] = reason
315
330
query_params = CIMultiDict ()
316
331
for server_name in servers or []:
317
332
query_params .add ("server_name" , server_name )
0 commit comments