Skip to content
Snippets Groups Projects
messaging.py 3.21 KiB
Newer Older
  • Learn to ignore specific revisions
  • from enum import Enum
    from django.contrib import messages
    
    from .models import Activity
    
    
    class MESSAGES(Enum):
        UPDATE_LEAD = 'update_lead'
    
        NEW_SUBMISSION = 'new_submission'
    
    Todd Dembrey's avatar
    Todd Dembrey committed
        TRANSITION = 'transition'
    
        NEW_DETERMINATION = 'new_determination'
        DETERMINATION_OUTCOME = 'determination_outcome'
    
        INVITED_TO_PROPOSAL = 'invited_to_proposal'
    
        REVIEWERS_UPDATED = 'reviewers_updated'
    
    Todd Dembrey's avatar
    Todd Dembrey committed
        NEW_REVIEW = 'new_review'
    
    Todd Dembrey's avatar
    Todd Dembrey committed
        COMMENT = 'comment'
    
    class AdapterBase:
        messages = {}
    
        def message(self, message_type, **kwargs):
            message = self.messages[message_type]
            try:
                # see if its a method on the adapter
                method = getattr(self, message)
            except AttributeError:
                return message.format(**kwargs)
            else:
                return method(**kwargs)
    
        def process(self, message_type, **kwargs):
            try:
                message = self.message(message_type, **kwargs)
            except KeyError:
                return
            self.send_message(message, **kwargs)
    
        def send_message(self, message, **kwargs):
            raise NotImplementedError()
    
    
    class MessageAdapter(AdapterBase):
        messages = {
            enum: enum.value
            for enum in MESSAGES.__members__.values()
        }
    
        def send_message(self, message, **kwargs):
            messages.add_message(kwargs['request'], messages.INFO, message)
    
    
    class ActivityAdapter(AdapterBase):
    
    Todd Dembrey's avatar
    Todd Dembrey committed
            MESSAGES.TRANSITION: 'Progressed from {old_phase.display_name} to {submission.phase}',
    
            MESSAGES.NEW_SUBMISSION: 'Submitted {submission.title} for {submission.page.title}',
    
            MESSAGES.UPDATE_LEAD: 'Lead changed from {old.lead} to {submission.lead}',
    
            MESSAGES.NEW_DETERMINATION: 'Created a determination for {submission.title}',
            MESSAGES.DETERMINATION_OUTCOME: 'Sent a {submission.determination.get_outcome_display} determination for {submission.title}:\r\n{determination.clean_message}',
    
            MESSAGES.INVITED_TO_PROPOSAL: '{submission.title} has been invited to submit a proposal.',
    
            MESSAGES.REVIEWERS_UPDATED: 'reviewers_updated',
    
    Todd Dembrey's avatar
    Todd Dembrey committed
            MESSAGES.NEW_REVIEW: 'Created a review for {submission.title}'
    
        def reviewers_updated(self, added, removed, **kwargs):
            message = ['Reviewers updated.']
            if added:
                message.append('Added:')
                message.append(', '.join([str(user) for user in added]) + '.')
    
            if removed:
                message.append('Removed:')
                message.append(', '.join([str(user) for user in removed]) + '.')
    
            return ' '.join(message)
    
        def send_message(self, message, user, submission, **kwargs):
    
            Activity.actions.create(
    
                user=user,
                submission=submission,
    
            )
    
    
    class MessengerBackend:
    
    Todd Dembrey's avatar
    Todd Dembrey committed
        def __init__(self, *adpaters):
            self.adapters = adpaters
    
        def __call__(self, message_type, request, user, submission, **kwargs):
            return self.send(message_type, request=request, user=user, submission=submission, **kwargs)
    
    
        def send(self, message_type, **kwargs):
            for adapter in self.adapters:
                adapter.process(message_type, **kwargs)
    
    
    
    Todd Dembrey's avatar
    Todd Dembrey committed
    adapters = [
        ActivityAdapter(),
        MessageAdapter(),
    ]
    
    
    messenger = MessengerBackend(*adapters)