2023-10-07 09:47:45 +00:00
|
|
|
import logging
|
|
|
|
from threading import Event
|
|
|
|
|
|
|
|
import deltachat
|
|
|
|
from deltachat import account_hookimpl
|
|
|
|
|
|
|
|
|
|
|
|
class SetupPlugin:
|
2023-10-07 12:22:08 +00:00
|
|
|
def __init__(self, crew_id):
|
2023-10-07 09:47:45 +00:00
|
|
|
self.member_added = Event()
|
2023-10-07 12:22:08 +00:00
|
|
|
self.crew_id = crew_id
|
2023-10-07 09:47:45 +00:00
|
|
|
self.message_sent = Event()
|
|
|
|
self.outgoing_messages = 0
|
|
|
|
|
|
|
|
@account_hookimpl
|
|
|
|
def ac_member_added(self, chat: deltachat.Chat, contact, actor, message):
|
2023-10-07 12:22:08 +00:00
|
|
|
if chat.id == self.crew_id and chat.num_contacts() == 2:
|
2023-10-07 09:47:45 +00:00
|
|
|
self.member_added.set()
|
|
|
|
|
|
|
|
@account_hookimpl
|
|
|
|
def ac_message_delivered(self, message: deltachat.Message):
|
|
|
|
if not message.is_system_message():
|
|
|
|
self.outgoing_messages -= 1
|
|
|
|
if self.outgoing_messages < 1:
|
|
|
|
self.message_sent.set()
|
|
|
|
|
|
|
|
|
2023-10-07 13:02:45 +00:00
|
|
|
class RelayPlugin:
|
|
|
|
def __init__(self, account: deltachat.Account):
|
|
|
|
self.account = account
|
|
|
|
|
|
|
|
@account_hookimpl
|
|
|
|
def ac_incoming_message(self, message: deltachat.Message):
|
|
|
|
"""This method is called on every incoming message and decides what to do with it."""
|
|
|
|
logging.info(
|
|
|
|
"New message from %s in chat %s: %s",
|
|
|
|
message.get_sender_contact().addr,
|
|
|
|
message.chat.get_name(),
|
|
|
|
message.text,
|
|
|
|
)
|
|
|
|
|
|
|
|
if message.is_system_message():
|
|
|
|
logging.debug("This is a system message")
|
|
|
|
""":TODO handle chat name changes"""
|
|
|
|
return
|
|
|
|
|
|
|
|
if message.chat.id == get_crew_id(self.account):
|
|
|
|
if message.text.startswith("/"):
|
2023-10-07 15:20:58 +00:00
|
|
|
logging.debug(
|
|
|
|
"handling command by %s: %s",
|
|
|
|
message.get_sender_contact().addr,
|
|
|
|
message.text,
|
|
|
|
)
|
2023-10-07 13:02:45 +00:00
|
|
|
""":TODO handle command"""
|
|
|
|
else:
|
|
|
|
logging.debug("Ignoring message, just admins chatting")
|
|
|
|
|
2023-10-07 13:39:15 +00:00
|
|
|
elif self.is_relay_group(message.chat):
|
2023-10-07 18:23:46 +00:00
|
|
|
if message.quote:
|
2023-10-07 15:20:58 +00:00
|
|
|
if (
|
|
|
|
message.quote.get_sender_contact()
|
|
|
|
== self.account.get_self_contact()
|
|
|
|
):
|
|
|
|
logging.debug("Forwarding message to outsider")
|
2023-10-07 18:23:46 +00:00
|
|
|
self.forward_to_outside(message)
|
2023-10-07 15:20:58 +00:00
|
|
|
else:
|
|
|
|
logging.debug("Ignoring message, just admins chatting")
|
2023-10-07 13:02:45 +00:00
|
|
|
else:
|
|
|
|
logging.debug("Ignoring message, just admins chatting")
|
|
|
|
|
|
|
|
else:
|
|
|
|
logging.debug("Forwarding message to relay group")
|
2023-10-07 15:20:58 +00:00
|
|
|
self.forward_to_relay_group(message)
|
|
|
|
|
2023-10-07 18:23:46 +00:00
|
|
|
def forward_to_outside(self, message: deltachat.Message):
|
|
|
|
"""forward an answer to an outsider."""
|
|
|
|
bot_localpart = self.account.get_config('addr').split('@')[0]
|
|
|
|
title_prefix = f"[{bot_localpart}] "
|
|
|
|
chat_title = message.chat.get_name().split(title_prefix)[1]
|
|
|
|
logging.debug("stripped %s to %s", message.chat.get_name(), chat_title)
|
|
|
|
for chat in self.account.get_chats():
|
|
|
|
if chat_title == chat.get_name():
|
|
|
|
if message.quote.text in [msg.text for msg in chat.get_messages()]:
|
|
|
|
outside_chat = chat
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
logging.debug("No corresponding message in chat %s with name: %s", chat.id, chat.get_name())
|
|
|
|
else:
|
|
|
|
logging.error("Couldn't find the chat with the title: %s", chat_title)
|
|
|
|
return
|
|
|
|
outside_chat.send_msg(message)
|
|
|
|
|
2023-10-07 15:20:58 +00:00
|
|
|
def forward_to_relay_group(self, message: deltachat.Message):
|
|
|
|
"""forward a request to a relay group; create one if it doesn't exist yet."""
|
|
|
|
outsider = message.get_sender_contact().addr
|
|
|
|
crew_members = self.account.get_chat_by_id(
|
|
|
|
get_crew_id(self.account)
|
|
|
|
).get_contacts()
|
|
|
|
crew_members.remove(self.account.get_self_contact())
|
|
|
|
group_name = "[%s] %s" % (
|
|
|
|
self.account.get_config("addr").split("@")[0],
|
|
|
|
message.chat.get_name(),
|
|
|
|
)
|
|
|
|
for chat in self.account.get_chats():
|
|
|
|
if chat.get_name() == group_name:
|
|
|
|
relay_group = chat
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
logging.info("creating new relay group: '%s'", group_name)
|
|
|
|
relay_group = self.account.create_group_chat(
|
|
|
|
group_name, crew_members, verified=False
|
|
|
|
)
|
|
|
|
# relay_group.set_profile_image("assets/avatar.jpg")
|
|
|
|
relay_group.send_text(
|
|
|
|
"This is the relay group for %s; I'll only forward 'direct replies' to the outside."
|
|
|
|
% (message.chat.get_name())
|
|
|
|
)
|
|
|
|
message.set_override_sender_name(outsider)
|
|
|
|
relay_group.send_msg(message)
|
2023-10-07 13:02:45 +00:00
|
|
|
|
2023-10-07 13:39:15 +00:00
|
|
|
def is_relay_group(self, chat: deltachat.Chat) -> bool:
|
|
|
|
"""Check whether a chat is a relay group."""
|
2023-10-07 15:20:58 +00:00
|
|
|
if not chat.get_name().startswith(
|
|
|
|
"[%s] " % (self.account.get_config("addr").split("@")[0],)
|
|
|
|
):
|
2023-10-07 13:39:15 +00:00
|
|
|
return False # all relay groups' names begin with a [tag] with the localpart of the teamsbot's address
|
2023-10-07 15:20:58 +00:00
|
|
|
if (
|
|
|
|
chat.get_messages()[0].get_sender_contact()
|
|
|
|
!= self.account.get_self_contact()
|
|
|
|
):
|
2023-10-07 13:39:15 +00:00
|
|
|
return False # all relay groups were started by the teamsbot
|
|
|
|
if chat.is_protected():
|
|
|
|
return False # relay groups don't need to be protected, so they are not
|
2023-10-07 15:20:58 +00:00
|
|
|
for crew_member in self.account.get_chat_by_id(
|
|
|
|
get_crew_id(self.account)
|
|
|
|
).get_contacts():
|
2023-10-07 13:39:15 +00:00
|
|
|
if crew_member not in chat.get_contacts():
|
|
|
|
return False # all crew members have to be in any relay group
|
|
|
|
return True
|
|
|
|
|
2023-10-07 13:02:45 +00:00
|
|
|
|
2023-10-07 09:47:45 +00:00
|
|
|
def get_crew_id(ac: deltachat.Account, setupplugin: SetupPlugin = None) -> int:
|
|
|
|
"""Get the group ID of the crew group if it exists; warn old crews if they might still believe they are the crew.
|
|
|
|
|
|
|
|
:param ac: the account object of the bot.
|
|
|
|
:param setupplugin: only if this function is run during `teams-bot init`.
|
|
|
|
:return: the chat ID of the crew group, if there is none, return 0.
|
|
|
|
"""
|
|
|
|
crew_id = 0
|
|
|
|
for chat in reversed(ac.get_chats()):
|
|
|
|
if (
|
|
|
|
chat.is_protected()
|
|
|
|
and chat.num_contacts() > 1
|
|
|
|
and chat.get_name() == f"Team: {ac.get_config('addr')}"
|
|
|
|
):
|
|
|
|
logging.debug(
|
|
|
|
"Chat with ID %s and title %s could be a crew", chat.id, chat.get_name()
|
|
|
|
)
|
|
|
|
if crew_id > 0:
|
|
|
|
old_crew = ac.get_chat_by_id(crew_id)
|
|
|
|
old_crew.set_name(f"Old Team: {ac.get_config('addr')}")
|
|
|
|
new_crew = [contact.addr for contact in chat.get_contacts()]
|
|
|
|
new_crew_emails = " or ".join(new_crew)
|
|
|
|
quit_message = f"There is a new Group for the Team now; you can ask {new_crew_emails} to add you to it."
|
|
|
|
logging.debug(
|
|
|
|
"Sending quit message to old crew with ID %s: %s",
|
|
|
|
old_crew.id,
|
|
|
|
quit_message,
|
|
|
|
)
|
|
|
|
old_crew.send_text(quit_message)
|
|
|
|
if setupplugin:
|
|
|
|
setupplugin.outgoing_messages += 1
|
|
|
|
old_crew.remove_contact(ac.get_self_contact())
|
|
|
|
crew_id = chat.id
|
|
|
|
else:
|
|
|
|
logging.debug(
|
|
|
|
"Chat with ID %s and title %s is not a crew.", chat.id, chat.get_name()
|
|
|
|
)
|
|
|
|
if crew_id:
|
|
|
|
crew_members = [
|
|
|
|
contact.addr for contact in ac.get_chat_by_id(crew_id).get_contacts()
|
|
|
|
]
|
|
|
|
crew_emails = " or ".join(crew_members)
|
|
|
|
logging.debug("The current crew has ID %s and members %s", crew_id, crew_emails)
|
|
|
|
else:
|
|
|
|
logging.debug("Currently there is no crew")
|
|
|
|
return crew_id
|