bornhack-website/src/teams/signal_handlers.py

31 lines
1.1 KiB
Python

from .email import add_new_membership_email
from ircbot.utils import add_irc_message
from django.conf import settings
import logging
logger = logging.getLogger("bornhack.%s" % __name__)
def teammember_saved(sender, instance, created, **kwargs):
"""
This signal handler is called whenever a TeamMember instance is saved
"""
# if this is a new unapproved teammember send a mail to team responsibles
if created and not instance.approved:
# call the mail sending function
if not add_new_membership_email(instance):
logger.error('Error adding email to outgoing queue')
def teammember_deleted(sender, instance, **kwargs):
"""
This signal handler is called whenever a TeamMember instance is deleted
"""
if instance.team.private_irc_channel_name and instance.team.private_irc_channel_managed:
# TODO: remove user from private channel ACL
pass
if instance.team.public_irc_channel_name and instance.team.public_irc_channel_managed:
# TODO: remove user from public channel ACL
pass