aboutsummaryrefslogtreecommitdiff
path: root/management/commands/sendmails.py
blob: 31262435822cc9844d82759818bb59057809533d (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
#    Copyright (C) 2017  Alban Gruin
#
#    celcatsanitizer is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    celcatsanitizer is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License along
#    with celcatsanitizer; if not, write to the Free Software Foundation, Inc.,
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

from django.core.management.base import BaseCommand, CommandError
from django.core.mail import send_mass_mail
from django.utils import timezone, translation
from django.template import Context, loader
from django.conf import settings

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

import datetime


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

    def handle(self, *args, **options):
        translation.activate(settings.LANGUAGE_CODE)

        year, week = get_current_or_next_week()
        start, end = get_week(year, week)

        subscriptions = Subscription.objects.filter(active=True)
        content = {}
        mails = []

        print("Generating messages...")
        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("mail/mail_timetable.txt")
                context = Context({"subscription": subscription, "courses": grouped_courses, "week": week})
                content[subscription.group.id] = template.render(context)

            footer = loader.get_template("mail/mail_footer.txt")
            context = Context({"admins": settings.ADMINS, "token": subscription.token, "domain": settings.DEFAULT_DOMAIN})
            mail_content = content[subscription.group.id] + footer.render(context)

            mails.append(("{0} - {1} - Semaine {2}".format(subscription.group.timetable.name, subscription.group.name, week), mail_content, settings.DEFAULT_FROM_EMAIL, [subscription.email],))

        print("Sending mails...")
        send_mass_mail(mails)
        self.stdout.write(self.style.SUCCESS("Done."))