ticketfrei3/kibicara/platforms/email/bot.py

61 lines
2.2 KiB
Python
Raw Normal View History

2020-07-05 21:49:32 +00:00
# Copyright (C) 2020 by Maike <maike@systemli.org>
2020-07-15 21:50:24 +00:00
# Copyright (C) 2020 by Cathy Hu <cathy.hu@fau.de>
# Copyright (C) 2020 by Thomas Lindner <tom@dl6tom.de>
2020-07-05 21:49:32 +00:00
#
# SPDX-License-Identifier: 0BSD
2020-07-16 12:29:57 +00:00
from kibicara import email
from kibicara.config import config
2020-07-15 21:50:24 +00:00
from kibicara.model import Hood
from kibicara.platformapi import Censor, Spawner
2020-09-06 17:11:18 +00:00
from kibicara.platforms.email.model import Email, EmailSubscribers
from kibicara.webapi.admin import to_token
2020-07-07 13:28:51 +00:00
from logging import getLogger
2020-07-15 21:50:24 +00:00
from smtplib import SMTPException
2020-07-07 13:28:51 +00:00
logger = getLogger(__name__)
2020-07-05 21:49:32 +00:00
class EmailBot(Censor):
2020-07-15 21:50:24 +00:00
def __init__(self, hood):
super().__init__(hood)
self.enabled = hood.email_enabled
2020-07-05 21:49:32 +00:00
2020-09-06 17:11:18 +00:00
@classmethod
async def destroy_hood(cls, hood):
"""Removes all its database entries."""
for inbox in await Email.objects.filter(hood=hood).all():
await inbox.delete()
for subscriber in await EmailSubscribers.objects.filter(hood=hood).all():
await subscriber.delete()
2020-07-05 21:49:32 +00:00
async def run(self):
""" Loop which waits for new messages and sends emails to all subscribers. """
2020-07-05 21:49:32 +00:00
while True:
message = await self.receive()
2020-07-15 21:50:24 +00:00
logger.debug(
'Received message from censor (%s): %s' % (self.hood.name, message.text)
)
for subscriber in await EmailSubscribers.objects.filter(
hood=self.hood
).all():
token = to_token(email=subscriber.email, hood=self.hood.id)
2020-07-15 21:50:24 +00:00
body = (
'%s\n\n--\n'
'If you want to stop receiving these mails,'
'follow this link: %s/hoods/%d/email-unsubscribe?token=%s'
) % (message.text, config['frontend_url'], self.hood.id, token)
2020-07-07 13:28:51 +00:00
try:
2020-07-15 21:50:24 +00:00
logger.debug('Trying to send: \n%s' % body)
2020-07-16 12:29:57 +00:00
email.send_email(
subscriber.email,
"Kibicara " + self.hood.name,
body=body,
2020-07-07 13:28:51 +00:00
)
except (ConnectionRefusedError, SMTPException):
2020-07-15 21:50:24 +00:00
logger.exception("Sending email to subscriber failed.")
2020-07-05 21:49:32 +00:00
2020-07-15 21:50:24 +00:00
spawner = Spawner(Hood, EmailBot)