summaryrefslogtreecommitdiffstats
path: root/dashboard/src/notifier/manager.py
blob: a705d003bc4f8a8e548eb31a43f9781de728abf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
##############################################################################
# Copyright (c) 2018 Sawyer Bergeron and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

from booking.models import *
from notifier.models import Notifier, MetaBooking, LabMessage
from django.utils import timezone
from datetime import timedelta
from django.template import Template, Context
from account.models import UserProfile

from django.db import models

class NotifyPeriodic(object):
    def task():
        bookings_new = Booking.objects.filter(metabooking__isnull=True)
        bookings_old = Booking.objects.filter(end__lte=timezone.now() + timedelta(hours=24)).filter(metabooking__ended_notified=False)

        for booking in bookings_old:
            metabooking = booking.metabooking
            if booking.end <= timezone.now() + timedelta(hours=24):
                if not metabooking.ending_notified:
                    Notify().notify(Notify.TOCLEAN, booking)
                    metabooking.ending_notified = True
                    metabooking.save()
            if booking.end <= timezone.now():
                metabooking = booking.metabooking
                if not metabooking.ended_notified:
                    Notify().notify(Notify.CLEANED, booking)
                    metabooking.ended_notified = True
                    metabooking.save()

        for booking in bookings_new:
            metabooking = MetaBooking()
            metabooking.booking = booking
            metabooking.created_notified = True
            metabooking.save()

            Notify().notify(Notify.CREATED, booking)


class Notify(object):

    CREATED = "created"
    TOCLEAN = "toclean"
    CLEANED = "cleaned"

    TITLES = {}
    TITLES["created"] = "Your booking has been confirmed"
    TITLES["toclean"] = "Your booking is ending soon"
    TITLES["cleaned"] = "Your booking has ended"

    """
    Lab message is provided with the following context elements:
    * if is for owner or for collaborator (if owner)
    * recipient username (<owner, collaborator>.username)
    * recipient full name (<owner, collaborator>.userprofile.full_name)
    * booking it pertains to (booking)
    * status message should convey (currently "created", "toclean" and "cleaned" as strings)
    It should be a django template that can be rendered with these context elements
    and should generally use all of them in one way or another.
    It should be applicable to email, the web based general view, and should be scalable for
    all device formats across those mediums.
    """
    def notify(self, notifier_type, booking):
        template = Template(LabMessage.objects.filter(lab=booking.lab).first().msg)

        context = {}
        context["owner"] = booking.owner
        context["notify_type"] = notifier_type
        context["booking"] = booking
        message = template.render(Context(context))
        notifier = Notifier()
        notifier.title = self.TITLES[notifier_type]
        notifier.content = message
        notifier.user = booking.owner.userprofile
        notifier.sender = str(booking.lab)
        notifier.save()
        notifier.send()


        context["owner"] = False

        for user in booking.collaborators.all():
            context["collaborator"] = user
            message = template.render(Context(context))
            notifier = Notifier()
            notifier.title = self.TITLES[notifier_type]
            notifier.content = message
            notifier.user = UserProfile.objects.get(user=user)
            notifier.sender = str(booking.lab)
            notifier.save()
            notifier.send()