__copyright__ = "Copyright (C) 2016 Dong Zhuang, Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from django.db.models.signals import post_save from django.db import transaction from django.dispatch import receiver from accounts.models import User from course.models import ( Course, Participation, participation_status, ParticipationPreapproval, ) from typing import List, Union, Text, Optional, Tuple, Any # noqa # {{{ Update enrollment status when a User/Course instance is saved @receiver(post_save, sender=User) @receiver(post_save, sender=Course) @transaction.atomic def update_requested_participation_status( sender: Any, created: bool, instance: Union[Course, User], **kwargs: Any) -> None: if created: return user_updated = False course_updated = False if isinstance(instance, Course): course_updated = True course = instance requested_qset = Participation.objects.filter( course=course, status=participation_status.requested) else: assert isinstance(instance, User) user_updated = True user = instance requested_qset = Participation.objects.filter( user=user, status=participation_status.requested) for requested in requested_qset: if course_updated: user = requested.user else: assert user_updated course = requested.course may_preapprove, roles = may_preapprove_role(course, user) if may_preapprove: from course.enrollment import handle_enrollment_request handle_enrollment_request( course, user, participation_status.active, roles) def may_preapprove_role( course: Course, user: User) -> Tuple[bool, Optional[List[str]]]: if not user.is_active: return False, None preapproval = None if user.email: try: preapproval = ParticipationPreapproval.objects.get( course=course, email__iexact=user.email) except ParticipationPreapproval.DoesNotExist: pass if preapproval is None: if user.institutional_id: if not (course.preapproval_require_verified_inst_id and not user.institutional_id_verified): try: preapproval = ParticipationPreapproval.objects.get( course=course, institutional_id__iexact=user.institutional_id) except ParticipationPreapproval.DoesNotExist: pass if preapproval: return True, list(preapproval.roles.all()) else: return False, None # }}} # vim: foldmethod=marker