forms.py
10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
"""
Copyright 2016, 2017 UFPE - Universidade Federal de Pernambuco
Este arquivo é parte do programa Amadeus Sistema de Gestão de Aprendizagem, ou simplesmente Amadeus LMS
O Amadeus LMS é um software livre; você pode redistribui-lo e/ou modifica-lo dentro dos termos da Licença Pública Geral GNU como publicada pela Fundação do Software Livre (FSF); na versão 2 da Licença.
Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU para maiores detalhes.
Você deve ter recebido uma cópia da Licença Pública Geral GNU, sob o título "LICENSE", junto com este programa, se não, escreva para a Fundação do Software Livre (FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
"""
# coding=utf-8
import re
from django import forms
from django.utils.translation import ugettext_lazy as _
from rolepermissions.shortcuts import assign_role
from django.contrib.auth import update_session_auth_hash
from django.core.validators import validate_email
from django.core.exceptions import ValidationError
from os.path import join
from resubmit.widgets import ResubmitFileWidget
from PIL import Image
import os
from amadeus import settings
from .models import User
class Validation(forms.ModelForm):
MIN_PASS_LENGTH = 8
MAX_UPLOAD_SIZE = 2*1024*1024
def clean_email(self):
email = self.cleaned_data.get('email', '')
try:
validate_email( email )
v_email = re.compile('[\w.%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}')
if v_email.fullmatch(email) is None:
self._errors['email'] = [_('You must insert an email address')]
return ValueError
return email
except ValidationError:
self._errors['email'] = [_('You must insert an email address')]
return ValueError
def clean_image(self):
image = self.cleaned_data.get('image', False)
if image:
if hasattr(image, '_size'):
if image._size > self.MAX_UPLOAD_SIZE:
self._errors['image'] = [_("The image is too large. It should have less than 2MB.")]
return ValueError
return image
def clean_new_password(self):
password = self.cleaned_data.get('new_password')
if self.is_edit and len(password) == 0:
return password
if len(password) == 0:
self._errors['new_password'] = [_('You must define a password.')]
return ValueError
return password
def clean_password2(self):
password = self.cleaned_data.get("new_password", None)
password2 = self.cleaned_data.get("password2", None)
if self.is_edit and len(password) == 0:
return password2
if not password is None and password != ValueError:
if not password2 is None and password != password2:
self._errors['password2'] = [_('The confirmation password is incorrect.')]
return ValueError
return password2
class RegisterUserForm(Validation):
new_password = forms.CharField(label=_('Password'), widget = forms.PasswordInput(render_value = True, attrs = {'placeholder': _('Password *')}))
password2 = forms.CharField(label = _('Confirm Password'), widget = forms.PasswordInput(render_value = True, attrs = {'placeholder': _('Confirm Password *')}))
is_edit = False
#Cropping image
x = forms.FloatField(widget=forms.HiddenInput(),required=False)
y = forms.FloatField(widget=forms.HiddenInput(),required=False)
width = forms.FloatField(widget=forms.HiddenInput(),required=False)
height = forms.FloatField(widget=forms.HiddenInput(),required=False)
def save(self, commit=True):
super(RegisterUserForm, self).save(commit=False)
self.deletepath = ""
x = self.cleaned_data.get('x')
y = self.cleaned_data.get('y')
w = self.cleaned_data.get('width')
h = self.cleaned_data.get('height')
if self.instance.image :
image = Image.open(self.instance.image)
if not x is None:
cropped_image = image.crop((x, y, w+x, h+y))
resized_image = cropped_image.resize((200, 200), Image.ANTIALIAS)
folder_path = join(settings.MEDIA_ROOT, 'users')
#check if the folder already exists
if not os.path.isdir(folder_path):
os.makedirs(folder_path)
if ("users" not in self.instance.image.path):
self.deletepath = self.instance.image.path
resized_image.save(self.instance.image.path)
self.instance.set_password(self.cleaned_data['new_password'])
self.instance.save()
if (self.deletepath):
os.remove(self.deletepath)
return self.instance
class Meta:
model = User
fields = ['email', 'username', 'last_name', 'social_name', 'image', 'show_email', 'x', 'y', 'width', 'height',]
widgets = {
'email': forms.EmailInput(attrs = {'placeholder': _('Email *')}),
'username': forms.TextInput(attrs = {'placeholder': _('Name *')}),
'last_name': forms.TextInput(attrs = {'placeholder': _('Last Name *')}),
'social_name': forms.TextInput(attrs = {'placeholder': _('Social Name')}),
'image': ResubmitFileWidget(attrs={'accept':'image/*'}),
}
class ProfileForm(Validation):
is_edit = True
#Cropping image
x = forms.FloatField(widget=forms.HiddenInput(),required=False)
y = forms.FloatField(widget=forms.HiddenInput(),required=False)
width = forms.FloatField(widget=forms.HiddenInput(),required=False)
height = forms.FloatField(widget=forms.HiddenInput(),required=False)
def save(self, commit=True):
super(ProfileForm, self).save(commit=False)
self.deletepath = ""
x = self.cleaned_data.get('x')
y = self.cleaned_data.get('y')
w = self.cleaned_data.get('width')
h = self.cleaned_data.get('height')
if self.instance.image:
image = Image.open(self.instance.image)
if not x is None:
cropped_image = image.crop((x, y, w+x, h+y))
resized_image = cropped_image.resize((200, 200), Image.ANTIALIAS)
folder_path = join(settings.MEDIA_ROOT, 'users')
#check if the folder already exists
if not os.path.isdir(folder_path):
os.makedirs(folder_path)
if ("users" not in self.instance.image.path):
self.deletepath = self.instance.image.path
resized_image.save(self.instance.image.path)
self.instance.save()
if (self.deletepath):
os.remove(self.deletepath)
return self.instance
class Meta:
model = User
fields = ['email', 'username', 'last_name', 'social_name', 'description', 'show_email', 'image']
widgets = {
'email': forms.EmailInput,
'description': forms.Textarea,
'username': forms.TextInput(attrs = {'readonly': 'readonly'}),
'last_name': forms.TextInput(attrs = {'readonly': 'readonly'}),
'image': ResubmitFileWidget(attrs={'accept':'image/*'}),
}
class UserForm(Validation):
is_edit = False
def __init__(self, *args, **kwargs):
is_update = kwargs.pop('is_edit', False)
super(UserForm, self).__init__(*args, **kwargs)
self.is_edit = is_update
new_password = forms.CharField(label = _('Password'), widget = forms.PasswordInput(render_value = True), required = False)
password2 = forms.CharField(label = _('Confirm Password'), widget = forms.PasswordInput(render_value = True), required = False)
#Cropping image
x = forms.FloatField(widget=forms.HiddenInput(),required=False)
y = forms.FloatField(widget=forms.HiddenInput(),required=False)
width = forms.FloatField(widget=forms.HiddenInput(),required=False)
height = forms.FloatField(widget=forms.HiddenInput(),required=False)
def save(self, commit=True):
super(UserForm, self).save(commit=False)
self.deletepath = ""
x = self.cleaned_data.get('x')
y = self.cleaned_data.get('y')
w = self.cleaned_data.get('width')
h = self.cleaned_data.get('height')
if self.instance.image :
image = Image.open(self.instance.image)
if not x is None:
cropped_image = image.crop((x, y, w+x, h+y))
resized_image = cropped_image.resize((200, 200), Image.ANTIALIAS)
folder_path = join(settings.MEDIA_ROOT, 'users')
#check if the folder already exists
if not os.path.isdir(folder_path):
os.makedirs(folder_path)
if ("users" not in self.instance.image.path):
self.deletepath = self.instance.image.path
resized_image.save(self.instance.image.path)
if not self.is_edit or self.cleaned_data['new_password'] != '':
self.instance.set_password(self.cleaned_data['new_password'])
self.instance.save()
if (self.deletepath):
os.remove(self.deletepath)
return self.instance
class Meta:
model = User
fields = ['email', 'username', 'last_name', 'social_name', 'description', 'show_email', 'image', 'is_staff', 'is_active',]
widgets = {
'email': forms.EmailInput,
'description': forms.Textarea,
'image': ResubmitFileWidget(attrs={'accept':'image/*'}),
}
class ChangePassForm(Validation):
def __init__(self, *args, **kwargs):
self.user = kwargs.pop('user', None)
self.request = kwargs.pop('request', None)
super(ChangePassForm, self).__init__(*args, **kwargs)
is_edit = False
new_password = forms.CharField(label=_('New Password'), widget = forms.PasswordInput(render_value=True), required = True)
password2 = forms.CharField(label = _('Confirm Password'), widget = forms.PasswordInput(render_value=True), required = True)
def clean_password(self):
password = self.cleaned_data.get('password', None)
if not self.user.check_password(password):
self._errors['password'] = [_('The value inputed does not match with your actual password.')]
return ValueError
return password
def save(self, commit=True):
super(ChangePassForm, self).save(commit=False)
self.instance.set_password(self.cleaned_data['new_password'])
update_session_auth_hash(self.request, self.instance)
self.instance.save()
return self.instance
class Meta:
model = User
fields = ['password']
labels = {
'password': _('Actual Password')
}
widgets = {
'password': forms.PasswordInput
}
class PassResetRequest(forms.Form):
email = forms.EmailField(label = _('Email'), max_length = 254, widget = forms.EmailInput(attrs = {'placeholder': _('Email') + ' *'}))
def clean_email(self):
email = self.cleaned_data.get('email', '')
try:
validate_email( email )
v_email = re.compile('[\w.%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}')
if v_email.fullmatch(email) is None:
self._errors['email'] = [_('You must insert an email address')]
return ValueError
return email
except ValidationError:
self._errors['email'] = [_('You must insert a valid email address')]
return ValueError
class SetPasswordForm(Validation):
is_edit = False
new_password = forms.CharField(label=_('New Password'), widget = forms.PasswordInput(render_value=True), required = True)
password2 = forms.CharField(label = _('Confirm Password'), widget = forms.PasswordInput(render_value=True), required = True)
class Meta:
model = User
fields = []