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 catalogue.models import User
7 from django.db.models import Count
8 from django import forms
9 from django.utils.translation import ugettext_lazy as _
11 from catalogue.constants import MASTERS
12 from catalogue.models import Book, Chunk, Template
15 class DocumentCreateForm(forms.ModelForm):
17 Form used for creating new documents.
19 template = forms.ModelChoiceField(Template.objects, required=False)
23 exclude = ['parent', 'parent_number', 'project', 'gallery', 'public']
25 def __init__(self, *args, **kwargs):
26 super(DocumentCreateForm, self).__init__(*args, **kwargs)
27 self.fields['slug'].widget.attrs = {'class': 'autoslug'}
28 self.fields['title'].widget.attrs = {'class': 'autoslug-source'}
29 self.fields['template'].queryset = Template.objects.filter(is_main=True)
32 super(DocumentCreateForm, self).clean()
33 template = self.cleaned_data['template']
34 self.cleaned_data['gallery'] = self.cleaned_data['slug']
36 if template is not None:
37 self.cleaned_data['text'] = template.content
39 if not self.cleaned_data.get("text"):
40 self._errors["template"] = self.error_class([_("You must select a template")])
42 return self.cleaned_data
45 class DocumentsUploadForm(forms.Form):
47 Form used for uploading new documents.
49 file = forms.FileField(required=True, label=_('ZIP file'))
50 dirs = forms.BooleanField(
51 label=_('Directories are documents in chunks'),
52 widget=forms.CheckboxInput(attrs={'disabled': 'disabled'}))
55 zip_file = self.cleaned_data['zip_file']
59 z = self.cleaned_data['zip'] = zipfile.ZipFile(zip_file)
60 except zipfile.BadZipfile:
61 raise forms.ValidationError("Should be a ZIP file.")
63 raise forms.ValidationError("ZIP file corrupt.")
65 return self.cleaned_data
68 class ChunkForm(forms.ModelForm):
70 Form used for editing a chunk.
72 user = forms.ModelChoiceField(
73 queryset=User.objects.annotate(count=Count('chunk')).order_by('last_name', 'first_name'),
75 label=_('Assigned to'))
79 fields = ['title', 'slug', 'gallery_start', 'user', 'stage']
82 def __init__(self, *args, **kwargs):
83 super(ChunkForm, self).__init__(*args, **kwargs)
84 self.fields['gallery_start'].widget.attrs = {'class': 'number-input'}
85 self.fields['slug'].widget.attrs = {'class': 'autoslug'}
86 self.fields['title'].widget.attrs = {'class': 'autoslug-source'}
89 slug = self.cleaned_data['slug']
91 chunk = Chunk.objects.get(book=self.instance.book, slug=slug)
92 except Chunk.DoesNotExist:
94 if chunk == self.instance:
96 raise forms.ValidationError(_('Chunk with this slug already exists'))
99 class ChunkAddForm(ChunkForm):
101 Form used for adding a chunk to a document.
104 def clean_slug(self):
105 slug = self.cleaned_data['slug']
107 user = Chunk.objects.get(book=self.instance.book, slug=slug)
108 except Chunk.DoesNotExist:
110 raise forms.ValidationError(_('Chunk with this slug already exists'))
113 class BookAppendForm(forms.Form):
115 Form for appending a book to another book.
116 It means moving all chunks from book A to book B and deleting A.
118 append_to = forms.ModelChoiceField(queryset=Book.objects.all(), label=_("Append to"))
120 def __init__(self, book, *args, **kwargs):
121 super(BookAppendForm, self).__init__(*args, **kwargs)
122 self.fields['append_to'].queryset = Book.objects.exclude(pk=book.pk)
125 class BookForm(forms.ModelForm):
126 """Form used for editing a Book."""
130 exclude = ['project']
132 def __init__(self, *args, **kwargs):
133 super(BookForm, self).__init__(*args, **kwargs)
134 self.fields['slug'].widget.attrs.update({"class": "autoslug"})
135 self.fields['title'].widget.attrs.update({"class": "autoslug-source"})
138 class ReadonlyBookForm(BookForm):
139 """Form used for not editing a Book."""
141 def __init__(self, *args, **kwargs):
142 super(ReadonlyBookForm, self).__init__(*args, **kwargs)
143 for field in self.fields.values():
144 field.widget.attrs.update({"readonly": True})
147 class ChooseMasterForm(forms.Form):
149 Form used for fixing the chunks in a book.
152 master = forms.ChoiceField(choices=((m, m) for m in MASTERS))