forked from fair/matrix-puppeteer-line
Implement "bridge.private_chat_portal_meta"
This commit is contained in:
parent
2fd18c7309
commit
a4a3d2862c
|
@ -98,6 +98,10 @@ class Portal(DBPortal, BasePortal):
|
||||||
# Reminder that the bridgebot's intent is used for non-DM rooms
|
# Reminder that the bridgebot's intent is used for non-DM rooms
|
||||||
return not self.is_direct or (self.encrypted and self.matrix.e2ee)
|
return not self.is_direct or (self.encrypted and self.matrix.e2ee)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def needs_portal_meta(self) -> bool:
|
||||||
|
return self.encrypted or not self.is_direct or self.config["bridge.private_chat_portal_meta"]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def main_intent(self) -> IntentAPI:
|
def main_intent(self) -> IntentAPI:
|
||||||
if not self._main_intent:
|
if not self._main_intent:
|
||||||
|
@ -510,17 +514,14 @@ class Portal(DBPortal, BasePortal):
|
||||||
else:
|
else:
|
||||||
self.log.warning(f"Could not find ID of LINE user {participant.name}")
|
self.log.warning(f"Could not find ID of LINE user {participant.name}")
|
||||||
puppet = await p.Puppet.get_by_profile(participant, client)
|
puppet = await p.Puppet.get_by_profile(participant, client)
|
||||||
# TODO Consider setting no room name for non-group chats.
|
|
||||||
# But then the LINE bot itself may appear in the title...
|
if self.needs_portal_meta:
|
||||||
changed = await self._update_name(f"{conv.name} (LINE)")
|
changed = await self._update_name(f"{conv.name} (LINE)")
|
||||||
if client:
|
path_image = conv.icon if not self.is_direct else participant.avatar
|
||||||
if not self.is_direct:
|
changed = await self._update_icon(path_image, client) or changed
|
||||||
changed = await self._update_icon(conv.icon, client) or changed
|
else:
|
||||||
elif puppet and puppet.avatar_mxc != self.icon_mxc:
|
changed = await self._update_name(None)
|
||||||
changed = True
|
changed = await self._update_icon(None, client) or changed
|
||||||
self.icon_mxc = puppet.avatar_mxc
|
|
||||||
if self.mxid:
|
|
||||||
await self.main_intent.set_room_avatar(self.mxid, self.icon_mxc)
|
|
||||||
if changed:
|
if changed:
|
||||||
await self.update_bridge_info()
|
await self.update_bridge_info()
|
||||||
await self.update()
|
await self.update()
|
||||||
|
@ -528,7 +529,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
# when their user actually joined or sent a message.
|
# when their user actually joined or sent a message.
|
||||||
#await self._update_participants(conv.participants)
|
#await self._update_participants(conv.participants)
|
||||||
|
|
||||||
async def _update_name(self, name: str) -> bool:
|
async def _update_name(self, name: Optional[str]) -> bool:
|
||||||
if self.name != name:
|
if self.name != name:
|
||||||
self.name = name
|
self.name = name
|
||||||
if self.mxid:
|
if self.mxid:
|
||||||
|
@ -536,7 +537,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
async def _update_icon(self, icon: Optional[PathImage], client: Client) -> bool:
|
async def _update_icon(self, icon: Optional[PathImage], client: Optional[Client]) -> bool:
|
||||||
if icon:
|
if icon:
|
||||||
if icon.url and not icon.path:
|
if icon.url and not icon.path:
|
||||||
self.log.warn(f"Using URL as path for room icon of {self.name}")
|
self.log.warn(f"Using URL as path for room icon of {self.name}")
|
||||||
|
@ -551,6 +552,9 @@ class Portal(DBPortal, BasePortal):
|
||||||
self.log.info(f"Updating room icon of {self.name}")
|
self.log.info(f"Updating room icon of {self.name}")
|
||||||
self.icon_path = icon_path
|
self.icon_path = icon_path
|
||||||
if icon_url:
|
if icon_url:
|
||||||
|
if not client:
|
||||||
|
self.log.error(f"Cannot update room icon: no connection to LINE")
|
||||||
|
return
|
||||||
resp = await client.read_image(icon.url)
|
resp = await client.read_image(icon.url)
|
||||||
self.icon_mxc = await self.main_intent.upload_media(resp.data, mime_type=resp.mime)
|
self.icon_mxc = await self.main_intent.upload_media(resp.data, mime_type=resp.mime)
|
||||||
else:
|
else:
|
||||||
|
@ -722,9 +726,8 @@ class Portal(DBPortal, BasePortal):
|
||||||
if self.mxid:
|
if self.mxid:
|
||||||
await self._update_matrix_room(source, info)
|
await self._update_matrix_room(source, info)
|
||||||
return self.mxid
|
return self.mxid
|
||||||
await self.update_info(info, source.client)
|
|
||||||
self.log.debug("Creating Matrix room")
|
self.log.debug("Creating Matrix room")
|
||||||
name: Optional[str] = None
|
|
||||||
initial_state = [{
|
initial_state = [{
|
||||||
"type": str(StateBridge),
|
"type": str(StateBridge),
|
||||||
"state_key": self.bridge_info_state_key,
|
"state_key": self.bridge_info_state_key,
|
||||||
|
@ -745,15 +748,13 @@ class Portal(DBPortal, BasePortal):
|
||||||
})
|
})
|
||||||
if self.is_direct:
|
if self.is_direct:
|
||||||
invites.append(self.az.bot_mxid)
|
invites.append(self.az.bot_mxid)
|
||||||
# NOTE Set the room title even for direct chats, because
|
|
||||||
# the LINE bot itself may appear in the title otherwise.
|
|
||||||
#if self.encrypted or not self.is_direct:
|
|
||||||
name = self.name
|
|
||||||
if self.config["appservice.community_id"]:
|
if self.config["appservice.community_id"]:
|
||||||
initial_state.append({
|
initial_state.append({
|
||||||
"type": "m.room.related_groups",
|
"type": "m.room.related_groups",
|
||||||
"content": {"groups": [self.config["appservice.community_id"]]},
|
"content": {"groups": [self.config["appservice.community_id"]]},
|
||||||
})
|
})
|
||||||
|
|
||||||
initial_state.append({
|
initial_state.append({
|
||||||
"type": str(EventType.ROOM_POWER_LEVELS),
|
"type": str(EventType.ROOM_POWER_LEVELS),
|
||||||
"content": {
|
"content": {
|
||||||
|
@ -768,6 +769,8 @@ class Portal(DBPortal, BasePortal):
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
await self.update_info(info, source.client)
|
||||||
if self.icon_mxc:
|
if self.icon_mxc:
|
||||||
initial_state.append({
|
initial_state.append({
|
||||||
"type": str(EventType.ROOM_AVATAR),
|
"type": str(EventType.ROOM_AVATAR),
|
||||||
|
@ -779,7 +782,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
# We lock backfill lock here so any messages that come between the room being created
|
# We lock backfill lock here so any messages that come between the room being created
|
||||||
# and the initial backfill finishing wouldn't be bridged before the backfill messages.
|
# and the initial backfill finishing wouldn't be bridged before the backfill messages.
|
||||||
with self.backfill_lock:
|
with self.backfill_lock:
|
||||||
self.mxid = await self.main_intent.create_room(name=name, is_direct=self.is_direct,
|
self.mxid = await self.main_intent.create_room(name=self.name, is_direct=self.is_direct,
|
||||||
initial_state=initial_state,
|
initial_state=initial_state,
|
||||||
invitees=invites)
|
invitees=invites)
|
||||||
if not self.mxid:
|
if not self.mxid:
|
||||||
|
|
Loading…
Reference in New Issue