1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.core.exceptions import ValidationError
5 from django.core.validators import validate_email
6 from django.forms import Form, BooleanField
7 from django.forms.fields import EmailField
8 from django.utils.safestring import mark_safe
9 from django.utils.translation import ugettext_lazy as _
10 from newsletter.subscribe import subscribe
11 from .models import Newsletter
14 class NewsletterForm(Form):
16 agree_newsletter = BooleanField(
17 required=False, initial=False, label=_('I want to receive Wolne Lektury\'s newsletter.'))
19 mailing_field = 'agree_newsletter'
22 data_processing_part1 = '''\
23 Administratorem danych osobowych jest Fundacja Nowoczesna Polska (ul. Marszałkowska 84/92 lok. 125, 00-514 Warszawa).
24 Podanie danych osobowych jest dobrowolne.'''
25 data_processing_part2 = '''Dane są przetwarzane w zakresie niezbędnym do wysyłania newslettera odbiorcom.'''
26 data_processing_part3 = '''\
27 Osobom, których dane są zbierane, przysługuje prawo dostępu do treści swoich danych oraz ich poprawiania.
28 Więcej informacji w <a href="">polityce prywatności.</a>'''
31 def data_processing(self):
32 return mark_safe('%s %s %s' % (self.data_processing_part1, self.data_processing_part2, self.data_processing_part3))
34 def save(self, *args, **kwargs):
35 newsletter = self.newsletter or Newsletter.objects.filter(slug='').first()
39 if not (self.mailing or self.cleaned_data.get(self.mailing_field)):
41 email = self.cleaned_data[self.email_field]
44 except ValidationError:
47 subscribe(email, newsletter=newsletter)
50 class SubscribeForm(NewsletterForm):
52 agree_newsletter = None
54 email = EmailField(label=_('email address'))
56 def __init__(self, newsletter, *args, **kwargs):
57 self.newsletter = newsletter
58 super(SubscribeForm, self).__init__(*args, **kwargs)