1 # -*- coding: utf-8 -*-
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.
6 from django import forms
7 from wiki.models import Book, Chunk
8 from django.utils.translation import ugettext_lazy as _
10 from dvcs.models import Tag
12 class DocumentTagForm(forms.Form):
14 Form for tagging revisions.
17 id = forms.CharField(widget=forms.HiddenInput)
18 tag = forms.ModelChoiceField(queryset=Tag.objects.all())
19 revision = forms.IntegerField(widget=forms.HiddenInput)
22 class DocumentCreateForm(forms.ModelForm):
24 Form used for creating new documents.
26 file = forms.FileField(required=False)
27 text = forms.CharField(required=False, widget=forms.Textarea)
34 super(DocumentCreateForm, self).clean()
35 file = self.cleaned_data['file']
39 self.cleaned_data['text'] = file.read().decode('utf-8')
40 except UnicodeDecodeError:
41 raise forms.ValidationError("Text file must be UTF-8 encoded.")
43 if not self.cleaned_data["text"]:
44 raise forms.ValidationError("You must either enter text or upload a file")
46 return self.cleaned_data
49 class DocumentsUploadForm(forms.Form):
51 Form used for uploading new documents.
53 file = forms.FileField(required=True, label=_('ZIP file'))
56 file = self.cleaned_data['file']
60 z = self.cleaned_data['zip'] = zipfile.ZipFile(file)
61 except zipfile.BadZipfile:
62 raise forms.ValidationError("Should be a ZIP file.")
64 raise forms.ValidationError("ZIP file corrupt.")
66 return self.cleaned_data
69 class DocumentTextSaveForm(forms.Form):
71 Form for saving document's text:
73 * parent_revision - revision which the modified text originated from.
74 * comment - user's verbose comment; will be used in commit.
75 * stage_completed - mark this change as end of given stage.
79 parent_revision = forms.IntegerField(widget=forms.HiddenInput)
80 text = forms.CharField(widget=forms.HiddenInput)
82 author_name = forms.CharField(
85 help_text=_(u"Your name"),
88 author_email = forms.EmailField(
90 label=_(u"Author's email"),
91 help_text=_(u"Your email address, so we can show a gravatar :)"),
94 comment = forms.CharField(
96 widget=forms.Textarea,
97 label=_(u"Your comments"),
98 help_text=_(u"Describe changes you made."),
101 stage_completed = forms.ModelChoiceField(
102 queryset=Tag.objects.all(),
104 label=_(u"Completed"),
105 help_text=_(u"If you completed a life cycle stage, select it."),
109 class DocumentTextRevertForm(forms.Form):
111 Form for reverting document's text:
113 * revision - revision to revert to.
114 * comment - user's verbose comment; will be used in commit.
118 revision = forms.IntegerField(widget=forms.HiddenInput)
120 author_name = forms.CharField(
123 help_text=_(u"Your name"),
126 author_email = forms.EmailField(
128 label=_(u"Author's email"),
129 help_text=_(u"Your email address, so we can show a gravatar :)"),
132 comment = forms.CharField(
134 widget=forms.Textarea,
135 label=_(u"Your comments"),
136 help_text=_(u"Describe the reason for reverting."),
140 class ChunkForm(forms.ModelForm):
142 Form used for editing a chunk.
149 def clean_slug(self):
150 slug = self.cleaned_data['slug']
152 chunk = Chunk.objects.get(book=self.instance.book, slug=slug)
153 except Chunk.DoesNotExist:
157 raise forms.ValidationError(_('Chunk with this slug already exists'))
160 class ChunkAddForm(ChunkForm):
162 Form used for adding a chunk to a document.
165 def clean_slug(self):
166 slug = self.cleaned_data['slug']
168 user = Chunk.objects.get(book=self.instance.book, slug=slug)
169 except Chunk.DoesNotExist:
171 raise forms.ValidationError(_('Chunk with this slug already exists'))
176 class BookAppendForm(forms.Form):
178 Form for appending a book to another book.
179 It means moving all chunks from book A to book B and deleting A.
182 append_to = forms.ModelChoiceField(queryset=Book.objects.all())
185 class BookForm(forms.ModelForm):
187 Form used for editing a Book.