allow dash in create form
[redakcja.git] / apps / wiki / forms.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from django import forms
7 from wiki.constants import DOCUMENT_TAGS, DOCUMENT_STAGES
8 from django.utils.translation import ugettext_lazy as _
9
10
11 class DocumentTagForm(forms.Form):
12     """
13         Form for tagging revisions.
14     """
15
16     id = forms.CharField(widget=forms.HiddenInput)
17     tag = forms.ChoiceField(choices=DOCUMENT_TAGS)
18     revision = forms.IntegerField(widget=forms.HiddenInput)
19
20
21 class DocumentCreateForm(forms.Form):
22     """
23         Form used for creating new documents.
24     """
25     title = forms.CharField()
26     id = forms.RegexField(regex=ur"^[-\wąćęłńóśźżĄĆĘŁŃÓŚŹŻ]+$")
27     file = forms.FileField(required=False)
28     text = forms.CharField(required=False, widget=forms.Textarea)
29
30     def clean(self):
31         file = self.cleaned_data['file']
32
33         if file is not None:
34             try:
35                 self.cleaned_data['text'] = file.read().decode('utf-8')
36             except UnicodeDecodeError:
37                 raise forms.ValidationError("Text file must be UTF-8 encoded.")
38
39         if not self.cleaned_data["text"]:
40             raise forms.ValidationError("You must either enter text or upload a file")
41
42         return self.cleaned_data
43
44
45 class DocumentsUploadForm(forms.Form):
46     """
47         Form used for uploading new documents.
48     """
49     file = forms.FileField(required=True, label=_('ZIP file'))
50
51     def clean(self):
52         file = self.cleaned_data['file']
53
54         import zipfile
55         try:
56             z = self.cleaned_data['zip'] = zipfile.ZipFile(file)
57         except zipfile.BadZipfile:
58             raise forms.ValidationError("Should be a ZIP file.")
59         if z.testzip():
60             raise forms.ValidationError("ZIP file corrupt.")
61
62         return self.cleaned_data
63
64
65 class DocumentTextSaveForm(forms.Form):
66     """
67     Form for saving document's text:
68
69         * name - document's storage identifier.
70         * parent_revision - revision which the modified text originated from.
71         * comment - user's verbose comment; will be used in commit.
72         * stage_completed - mark this change as end of given stage.
73
74     """
75
76     id = forms.CharField(widget=forms.HiddenInput)
77     parent_revision = forms.IntegerField(widget=forms.HiddenInput)
78     text = forms.CharField(widget=forms.HiddenInput)
79
80     author_name = forms.CharField(
81         required=False,
82         label=_(u"Author"),
83         help_text=_(u"Your name"),
84     )
85
86     author_email = forms.EmailField(
87         required=False,
88         label=_(u"Author's email"),
89         help_text=_(u"Your email address, so we can show a gravatar :)"),
90     )
91
92     comment = forms.CharField(
93         required=True,
94         widget=forms.Textarea,
95         label=_(u"Your comments"),
96         help_text=_(u"Describe changes you made."),
97     )
98
99     stage_completed = forms.ChoiceField(
100         choices=DOCUMENT_STAGES,
101         required=False,
102         label=_(u"Completed"),
103         help_text=_(u"If you completed a life cycle stage, select it."),
104     )