Newer
Older
from __future__ import annotations
__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 typing import Any
from django.dispatch import receiver
from accounts.models import User
Course,
Participation,
ParticipationPreapproval,
# {{{ Update enrollment status when a User/Course instance is saved
@receiver(post_save, sender=User)
def update_requested_participation_status(
sender: Any,
created: bool,
instance: Course | User,
**kwargs: Any) -> None:
course = instance
requested_qset = Participation.objects.filter(
course=course, status=participation_status.requested)
else:
assert isinstance(instance, User)
user_updated = True
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, list[ParticipationRole] | 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
# vim: foldmethod=marker