maybe have change password and email on same page
[mediagoblin.git] / mediagoblin / edit / forms.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 import wtforms
18
19 from mediagoblin.tools.text import tag_length_validator
20 from mediagoblin.tools.translate import lazy_pass_to_ugettext as _
21 from mediagoblin.tools.licenses import licenses_as_choices
22 from mediagoblin.auth.forms import normalize_user_or_email_field
23
24
25 class EditForm(wtforms.Form):
26 title = wtforms.TextField(
27 _('Title'),
28 [wtforms.validators.Length(min=0, max=500)])
29 description = wtforms.TextAreaField(
30 _('Description of this work'),
31 description=_("""You can use
32 <a href="http://daringfireball.net/projects/markdown/basics">
33 Markdown</a> for formatting."""))
34 tags = wtforms.TextField(
35 _('Tags'),
36 [tag_length_validator],
37 description=_(
38 "Separate tags by commas."))
39 slug = wtforms.TextField(
40 _('Slug'),
41 [wtforms.validators.Required(message=_("The slug can't be empty"))],
42 description=_(
43 "The title part of this media's address. "
44 "You usually don't need to change this."))
45 license = wtforms.SelectField(
46 _('License'),
47 [wtforms.validators.Optional(),],
48 choices=licenses_as_choices())
49
50 class EditProfileForm(wtforms.Form):
51 bio = wtforms.TextAreaField(
52 _('Bio'),
53 [wtforms.validators.Length(min=0, max=500)],
54 description=_("""You can use
55 <a href="http://daringfireball.net/projects/markdown/basics">
56 Markdown</a> for formatting."""))
57 url = wtforms.TextField(
58 _('Website'),
59 [wtforms.validators.Optional(),
60 wtforms.validators.URL(message=_("This address contains errors"))])
61
62
63 class EditAccountForm(wtforms.Form):
64 wants_comment_notification = wtforms.BooleanField(
65 description=_("Email me when others comment on my media"))
66 license_preference = wtforms.SelectField(
67 _('License preference'),
68 [
69 wtforms.validators.Optional(),
70 wtforms.validators.AnyOf([lic[0] for lic in licenses_as_choices()]),
71 ],
72 choices=licenses_as_choices(),
73 description=_('This will be your default license on upload forms.'))
74
75
76 class EditAttachmentsForm(wtforms.Form):
77 attachment_name = wtforms.TextField(
78 'Title')
79 attachment_file = wtforms.FileField(
80 'File')
81
82 class EditCollectionForm(wtforms.Form):
83 title = wtforms.TextField(
84 _('Title'),
85 [wtforms.validators.Length(min=0, max=500), wtforms.validators.Required(message=_("The title can't be empty"))])
86 description = wtforms.TextAreaField(
87 _('Description of this collection'),
88 description=_("""You can use
89 <a href="http://daringfireball.net/projects/markdown/basics">
90 Markdown</a> for formatting."""))
91 slug = wtforms.TextField(
92 _('Slug'),
93 [wtforms.validators.Required(message=_("The slug can't be empty"))],
94 description=_(
95 "The title part of this collection's address. "
96 "You usually don't need to change this."))
97
98
99 class ChangePassForm(wtforms.Form):
100 old_password = wtforms.PasswordField(
101 _('Old password'),
102 [wtforms.validators.Required()],
103 description=_(
104 "Enter your old password to prove you own this account."))
105 new_password = wtforms.PasswordField(
106 _('New password'),
107 [wtforms.validators.Required(),
108 wtforms.validators.Length(min=6, max=30)],
109 id="password")
110
111
112 class ChangeEmailForm(wtforms.Form):
113 new_email = wtforms.TextField(
114 _('New email address'),
115 [wtforms.validators.Required(),
116 normalize_user_or_email_field(allow_user=False)])
117 password = wtforms.PasswordField(
118 _('Password'),
119 [wtforms.validators.Required()],
120 description=_(
121 "Enter your password to prove you own this account."))