models.py 3.96 KB
Newer Older
cahrens committed
1 2 3
"""
Table for storing information about whether or not Studio users have course creation privileges.
"""
4
from django.contrib.auth.models import User
cahrens committed
5
from django.db import models
cahrens committed
6
from django.db.models.signals import post_init, post_save
7
from django.dispatch import Signal, receiver
8
from django.utils import timezone
9
from django.utils.translation import ugettext as _
cahrens committed
10

11
# A signal that will be sent when users should be added or removed from the creator group
12 13 14 15 16 17 18
update_creator_state = Signal(providing_args=["caller", "user", "state"])

# A signal that will be sent when admin should be notified of a pending user request
send_admin_notification = Signal(providing_args=["user"])

# A signal that will be sent when user should be notified of change in course creator privileges
send_user_notification = Signal(providing_args=["user", "state"])
cahrens committed
19

cahrens committed
20

cahrens committed
21
class CourseCreator(models.Model):
cahrens committed
22 23 24
    """
    Creates the database table model.
    """
25 26 27 28 29 30
    UNREQUESTED = 'unrequested'
    PENDING = 'pending'
    GRANTED = 'granted'
    DENIED = 'denied'

    # Second value is the "human-readable" version.
cahrens committed
31
    STATES = (
32 33 34 35
        (UNREQUESTED, _(u'unrequested')),
        (PENDING, _(u'pending')),
        (GRANTED, _(u'granted')),
        (DENIED, _(u'denied')),
cahrens committed
36
    )
cahrens committed
37

38
    user = models.OneToOneField(User, help_text=_("Studio user"))
cahrens committed
39
    state_changed = models.DateTimeField('state last updated', auto_now_add=True,
40 41 42 43 44
                                         help_text=_("The date when state was last updated"))
    state = models.CharField(max_length=24, blank=False, choices=STATES, default=UNREQUESTED,
                             help_text=_("Current course creator state"))
    note = models.CharField(max_length=512, blank=True, help_text=_("Optional notes about this user (for example, "
                                                                    "why course creation access was denied)"))
cahrens committed
45 46

    def __unicode__(self):
47
        return u"{0} | {1} [{2}]".format(self.user, self.state, self.state_changed)
cahrens committed
48

cahrens committed
49 50

@receiver(post_init, sender=CourseCreator)
51
def post_init_callback(sender, **kwargs):
52
    """
53
    Extend to store previous state.
54
    """
cahrens committed
55
    instance = kwargs['instance']
56
    instance.orig_state = instance.state
cahrens committed
57

cahrens committed
58 59

@receiver(post_save, sender=CourseCreator)
60
def post_save_callback(sender, **kwargs):
61
    """
62
    Extend to update state_changed time and fire event to update course creator group, if appropriate.
63
    """
cahrens committed
64 65 66 67
    instance = kwargs['instance']
    # We only wish to modify the state_changed time if the state has been modified. We don't wish to
    # modify it for changes to the notes field.
    if instance.state != instance.orig_state:
68
        granted_state_change = instance.state == CourseCreator.GRANTED or instance.orig_state == CourseCreator.GRANTED
69 70
        # If either old or new state is 'granted', we must manipulate the course creator
        # group maintained by authz. That requires staff permissions (stored admin).
71
        if granted_state_change:
72
            assert hasattr(instance, 'admin'), 'Must have stored staff user to change course creator group'
73 74 75 76
            update_creator_state.send(
                sender=sender,
                caller=instance.admin,
                user=instance.user,
77
                state=instance.state
78
            )
79

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
        # If user has been denied access, granted access, or previously granted access has been
        # revoked, send a notification message to the user.
        if instance.state == CourseCreator.DENIED or granted_state_change:
            send_user_notification.send(
                sender=sender,
                user=instance.user,
                state=instance.state
            )

        # If the user has gone into the 'pending' state, send a notification to interested admin.
        if instance.state == CourseCreator.PENDING:
            send_admin_notification.send(
                sender=sender,
                user=instance.user
            )

96 97 98
        instance.state_changed = timezone.now()
        instance.orig_state = instance.state
        instance.save()