2023-10-07 09:47:45 +00:00
|
|
|
import logging
|
|
|
|
from threading import Event
|
|
|
|
|
|
|
|
import deltachat
|
|
|
|
from deltachat import account_hookimpl
|
2023-10-07 19:40:21 +00:00
|
|
|
from deltachat.capi import lib as dclib
|
|
|
|
|
2023-10-07 20:00:39 +00:00
|
|
|
from .commands import help_message, set_display_name, set_avatar, get_crew_id
|
2023-10-07 09:47:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
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 19:40:21 +00:00
|
|
|
arguments = message.text.split(" ")
|
|
|
|
if arguments[0] == "/help":
|
|
|
|
self.reply(message.chat, help_message(), quote=message)
|
|
|
|
if arguments[0] == "/set_name":
|
2023-10-08 06:19:53 +00:00
|
|
|
self.reply(
|
|
|
|
message.chat,
|
|
|
|
set_display_name(self.account, arguments[1]),
|
|
|
|
quote=message,
|
|
|
|
)
|
2023-10-07 20:00:39 +00:00
|
|
|
if arguments[0] == "/set_avatar":
|
|
|
|
result = set_avatar(self.account, message)
|
|
|
|
self.reply(message.chat, result, quote=message)
|
2023-10-07 13:02:45 +00:00
|
|
|
else:
|
2023-10-07 19:40:21 +00:00
|
|
|
logging.debug("Ignoring message, just the crew chatting")
|
2023-10-07 13:02:45 +00:00
|
|
|
|
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:
|
2023-10-07 19:40:21 +00:00
|
|
|
logging.debug("Ignoring message, just the crew chatting")
|
2023-10-07 13:02:45 +00:00
|
|
|
else:
|
2023-10-07 19:40:21 +00:00
|
|
|
logging.debug("Ignoring message, just the crew chatting")
|
2023-10-07 13:02:45 +00:00
|
|
|
|
|
|
|
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 19:40:21 +00:00
|
|
|
def reply(self, chat: deltachat.Chat, text: str, quote: deltachat.Message = None):
|
|
|
|
"""Send a reply to a chat, with optional quote."""
|
|
|
|
msg = deltachat.Message.new_empty(self.account, view_type="text")
|
|
|
|
msg.set_text(text)
|
|
|
|
msg.quote = quote
|
|
|
|
sent_id = dclib.dc_send_msg(self.account._dc_context, chat.id, msg._dc_msg)
|
|
|
|
assert sent_id == msg.id
|
|
|
|
|
2023-10-07 18:23:46 +00:00
|
|
|
def forward_to_outside(self, message: deltachat.Message):
|
|
|
|
"""forward an answer to an outsider."""
|
2023-10-08 06:19:53 +00:00
|
|
|
bot_localpart = self.account.get_config("addr").split("@")[0]
|
2023-10-07 18:23:46 +00:00
|
|
|
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:
|
2023-10-08 06:19:53 +00:00
|
|
|
logging.debug(
|
|
|
|
"No corresponding message in chat %s with name: %s",
|
|
|
|
chat.id,
|
|
|
|
chat.get_name(),
|
|
|
|
)
|
2023-10-07 18:23:46 +00:00
|
|
|
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
|