aboutsummaryrefslogtreecommitdiff
path: root/management/commands/sendmails.py
blob: 4e3b6635f196939f7b7437a7069a06ca943bfa34 (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
from django.core.management.base import BaseCommand, CommandError
from django.core.mail import send_mail
from django.utils import timezone
from django.template import Context, loader

from edt.models import Group, Subscription, Course
from edt.utils import get_week, group_courses

import datetime


class Command(BaseCommand):
    help = "Sends emails to subscribed users"

    def handle(self, *args, **options):
        year, week, day = timezone.now().isocalendar()
        if day >= 6:
            year, week, _ = (timezone.now() + datetime.timedelta(weeks=1)).isocalendar()

        start, end = get_week(year, week)

        subscriptions = Subscription.objects.filter(active=True)
        content = {}
        for subscription in subscriptions:
            if subscription.group.id not in content:
                courses = Course.objects.get_courses_for_group(subscription.group, begin__gte=start, begin__lt=end)
                grouped_courses = group_courses(courses)

                template = loader.get_template("timetable_email.txt")
                context = Context({"subscription": subscription, "courses": grouped_courses, "week": week})
                content[subscription.group.id] = template.render(context)

            # send content