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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
|
from django import forms
from django.utils import timezone
from .models import (
Profile, User, Animation,
Comment, AnimationStats
)
from string import punctuation, digits
try:
from string import letters
except ImportError:
from string import ascii_letters as letters
from django.contrib.auth.models import User
from django.contrib.auth import authenticate
from .send_mails import generate_activation_key
UNAME_CHARS = letters + "._" + digits
PWD_CHARS = letters + punctuation + digits
position_choices = (
("contributor", "Contributor"),
("reviewer", "Reviewer")
)
department_choices = (
("computer", "Dept. of Computer Science/Engg."),
("mathematics", "Dept. of Mathematics"),
("physics", "Dept. of Physics"),
("civil", "Dept. of Civil Engineering"),
("electrical", "Dept. of Electrical Engg."),
("mechanical", "Dept. of Mechanical Engg."),
("chemical", "Dept. of Chemistry"),
("aerospace", "Dept. of Aerospace Engg."),
("biosciences and bioengineering", "Biosciences and BioEngineering"),
("electronics", "Dept. of Electronics"),
("energy science and engineering", "Dept. of Energy Science and Engg"),
("others", "Others")
)
title = (
("Professor", "Prof."),
("Doctor", "Dr."),
("Shriman", "Shri"),
("Shrimati", "Smt."),
("Kumari", "Ku."),
("Mr", "Mr."),
("Mrs", "Mrs."),
("Miss", "Ms."),
)
source = (
("FOSSEE Email", "FOSSEE Email"),
("FOSSEE website", "FOSSEE website"),
("Google", "Google"),
("Social Media", "Social Media"),
("From other College", "From other College"),
("others", "Others")
)
states = (
("IN-AP", "Andhra Pradesh"),
("IN-AR", "Arunachal Pradesh"),
("IN-AS", "Assam"),
("IN-BR", "Bihar"),
("IN-CT", "Chhattisgarh"),
("IN-GA", "Goa"),
("IN-GJ", "Gujarat"),
("IN-HR", "Haryana"),
("IN-HP", "Himachal Pradesh"),
("IN-JK", "Jammu and Kashmir"),
("IN-JH", "Jharkhand"),
("IN-KA", "Karnataka"),
("IN-KL", "Kerala"),
("IN-MP", "Madhya Pradesh"),
("IN-MH", "Maharashtra"),
("IN-MN", "Manipur"),
("IN-ML", "Meghalaya"),
("IN-MZ", "Mizoram"),
("IN-NL", "Nagaland"),
("IN-OR", "Odisha"),
("IN-PB", "Punjab"),
("IN-RJ", "Rajasthan"),
("IN-SK", "Sikkim"),
("IN-TN", "Tamil Nadu"),
("IN-TG", "Telangana"),
("IN-TR", "Tripura"),
("IN-UT", "Uttarakhand"),
("IN-UP", "Uttar Pradesh"),
("IN-WB", "West Bengal"),
("IN-AN", "Andaman and Nicobar Islands"),
("IN-CH", "Chandigarh"),
("IN-DN", "Dadra and Nagar Haveli"),
("IN-DD", "Daman and Diu"),
("IN-DL", "Delhi"),
("IN-LD", "Lakshadweep"),
("IN-PY", "Puducherry")
)
def check_upper(uname):
for a in uname:
if a.isupper():
return True
return False
class UserRegistrationForm(forms.Form):
"""A Class to create new form for User's Registration.
It has the various fields and functions required to register
a new user to the system"""
required_css_class = 'required'
errorlist_css_class = 'errorlist'
username = forms.CharField(
max_length=32, help_text='''lowercase, letters, digits,
period and underscore only.''')
email = forms.EmailField()
password = forms.CharField(max_length=32, widget=forms.PasswordInput())
confirm_password = forms.CharField(
max_length=32, widget=forms.PasswordInput())
title = forms.ChoiceField(choices=title)
first_name = forms.CharField(max_length=32)
last_name = forms.CharField(max_length=32)
phone_number = forms.RegexField(regex=r'^.{10}$',
error_messages={'invalid': "Phone number\
must be entered \
in the format: '9999999999'.\
Up to 10 digits allowed."})
institute = forms.CharField(max_length=128,
help_text='Please write full name of your\
Institute/Organization'
)
department = forms.ChoiceField(help_text='Department you work/study',
choices=department_choices)
location = forms.CharField(max_length=255, help_text="Place/City")
pincode = forms.RegexField(
regex=r'^.{6}$', error_messages={
'invalid': "Please enter valid PINCODE"})
state = forms.ChoiceField(choices=states)
how_did_you_hear_about_us = forms.ChoiceField(choices=source)
def clean_username(self):
u_name = self.cleaned_data["username"]
if u_name.strip(UNAME_CHARS):
msg = "Only letters, digits, period are"\
" allowed in username"
raise forms.ValidationError(msg)
if check_upper(u_name):
raise forms.ValidationError("lowercase only!")
try:
User.objects.get(username__exact=u_name)
raise forms.ValidationError("Username already exists.")
except User.DoesNotExist:
return u_name
def clean_password(self):
pwd = self.cleaned_data['password']
if pwd.strip(PWD_CHARS):
raise forms.ValidationError("Only letters, digits and punctuation\
are allowed in password")
return pwd
def clean_confirm_password(self):
c_pwd = self.cleaned_data['confirm_password']
pwd = self.data['password']
if c_pwd != pwd:
raise forms.ValidationError("Passwords do not match")
return c_pwd
def clean_email(self):
user_email = self.cleaned_data['email']
if User.objects.filter(email=user_email).exists():
raise forms.ValidationError("This email already exists")
return user_email
def save(self):
u_name = self.cleaned_data["username"]
u_name = u_name.lower()
pwd = self.cleaned_data["password"]
email = self.cleaned_data["email"]
new_user = User.objects.create_user(u_name, email, pwd)
new_user.first_name = self.cleaned_data["first_name"]
new_user.last_name = self.cleaned_data["last_name"]
new_user.save()
cleaned_data = self.cleaned_data
new_profile = Profile(user=new_user)
new_profile.institute = cleaned_data["institute"]
new_profile.department = cleaned_data["department"]
#new_profile.position = cleaned_data["position"]
new_profile.phone_number = cleaned_data["phone_number"]
new_profile.location = cleaned_data["location"]
new_profile.title = cleaned_data["title"]
new_profile.state = cleaned_data["state"]
new_profile.pincode = cleaned_data["pincode"]
new_profile.how_did_you_hear_about_us = cleaned_data["how_did_you_hear_about_us"]
new_profile.activation_key = generate_activation_key(new_user.username)
new_profile.key_expiry_time = timezone.now() + timezone.timedelta(
days=1)
new_profile.save()
key = Profile.objects.get(user=new_user).activation_key
return u_name, pwd, key
class UserLoginForm(forms.Form):
"""Creates a form which will allow the user to log into the system."""
username = forms.CharField(max_length=32,
widget=forms.TextInput())
password = forms.CharField(max_length=32,
widget=forms.PasswordInput())
def clean(self):
super(UserLoginForm, self).clean()
try:
u_name, pwd = self.cleaned_data["username"],\
self.cleaned_data["password"]
user = authenticate(username=u_name, password=pwd)
except Exception:
raise forms.ValidationError(
"Username and/or Password is not entered")
if not user:
raise forms.ValidationError("Invalid username/password")
return user
class ProfileForm(forms.ModelForm):
""" profile form for contributors and reviewers """
class Meta:
model = Profile
fields = ['first_name', 'last_name', 'institute', 'department',
]
first_name = forms.CharField(max_length=32)
last_name = forms.CharField(max_length=32)
def __init__(self, *args, **kwargs):
if 'user' in kwargs:
user = kwargs.pop('user')
super(ProfileForm, self).__init__(*args, **kwargs)
self.fields['first_name'].initial = user.first_name
self.fields['last_name'].initial = user.last_name
class AnimationProposal(forms.ModelForm):
"""Animation form """
required_css_class = 'required'
errorlist_css_class = 'errorlist'
def __init__(self, *args, **kwargs):
super(AnimationProposal, self).__init__(*args, **kwargs)
self.fields['subcategory'].widget.attrs['placeholder'] = 'Eg: Quantum Mechanics, Topology'
# self.fields['outline'].widget.attrs['placeholder'] = 'NOTE: Do\
# add info about prerequisites (if any), possible textbooks and \
# any other related information'
self.fields['outline'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'NOTE: Do add info about prerequisites (if any), possible textbooks and '
'any other related information')}
class Meta:
model = Animation
widgets = {
'sketch': forms.FileInput(),
}
fields = ['category', 'subcategory', 'title', 'outline', 'tags']
class AnimationProposal_edit(forms.ModelForm):
"""Animation form """
required_css_class = 'required'
errorlist_css_class = 'errorlist'
def __init__(self, *args, **kwargs):
super(AnimationProposal_edit, self).__init__(*args, **kwargs)
self.fields['subcategory'].widget.attrs['placeholder'] = 'Eg: Quantum Mechanics, Topology'
# self.fields['outline'].widget.attrs['placeholder'] = 'NOTE: Do\
# add info about prerequisites (if any), possible textbooks and \
# any other related information'
self.fields['outline'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'NOTE: Do add info about prerequisites (if any), possible textbooks and '
'any other related information')}
self.fields['concepts'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Which concept(s) do you want to animate?'
'Example: Animation of how data flows in Ring Topology')}
self.fields['audience'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Who would be the target audience for your video?\n'
'Example: High School Students, Mechanical Engineers, etc.')}
self.fields['reference'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Please try to be as specific as possible. For example,\n'
'Book used: Linear Algebra.\n'
'Author: Kenneth Hoffman, Ray Kunze\n'
'Edition: Second\n'
'Chapter: 2 ; Page: 40')}
self.fields['tools'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'What all tools would you be using for animation?\n'
'Example: manim, blender, mayavi, mathbox, etc')}
self.fields['detaled_description'].widget.attrs = {
'id': 'custom_editor',
'rows': 10,
'cols': 50,
'placeholder': ('Give a detailed description of your animation')
}
self.fields['link'].widget.attrs = {'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Along with the video you will have to submit the source code github link below.\n')}
self.fields['sketch'].label = "Sketch(.jpeg/.jpg only)"
class Meta:
model = Animation
widgets = {'sketch': forms.FileInput(), }
fields = [
'category',
'subcategory',
'title',
'outline',
'tags',
'concepts',
'audience',
'reference',
'tools',
'detaled_description',
'link',
'sketch']
class AnimationProposal_edit(forms.ModelForm):
"""Animation form """
required_css_class = 'required'
errorlist_css_class = 'errorlist'
def __init__(self, *args, **kwargs):
super(AnimationProposal_edit, self).__init__(*args, **kwargs)
self.fields['subcategory'].widget.attrs['placeholder'] = 'Eg: Quantum Mechanics, Topology'
self.fields['outline'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'NOTE: Do add info about prerequisites (if any), possible textbooks and '
'any other related information')}
self.fields['concepts'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Which concept(s) do you want to animate?'
'Example: Animation of how data flows in Ring Topology')}
self.fields['audience'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Who would be the target audience for your video?\n'
'Example: High School Students, Mechanical Engineers, etc.')}
self.fields['reference'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Please try to be as specific as possible. For example,\n'
'Book used: Linear Algebra.\n'
'Author: Kenneth Hoffman, Ray Kunze\n'
'Edition: Second\n'
'Chapter: 2 ; Page : 40')}
self.fields['tools'].widget.attrs = {
'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'What all tools would you be using for animation?\n'
'Example: manim, blender, mayavi, mathbox, etc')}
self.fields['detaled_description'].widget.attrs = {
'id': 'custom_editor',
'rows': 10,
'cols': 50,
'placeholder': ('Give a detailed description of your animation')
}
self.fields['link'].widget.attrs = {'id': 'custom_editor', 'rows': 10, 'cols': 50, 'placeholder': (
'Along with the video you will have to submit the source code github link below.\n')}
self.fields['sketch'].label = "Sketch(.jpeg/.jpg only)"
class Meta:
model = Animation
widgets = {
'sketch': forms.FileInput(),
}
fields = [
'category',
'subcategory',
'title',
'outline',
'tags',
'concepts',
'audience',
'reference',
'tools',
'detaled_description',
'link',
'sketch']
class CommentForm(forms.ModelForm):
"""
"""
def __init__(self, *args, **kwargs):
super(CommentForm, self).__init__(*args, **kwargs)
self.fields['comment'].label = ""
class Meta:
model = Comment
exclude = ['animation', 'created_date', 'commentor',
'animation_status']
widgets = {
'comments': forms.CharField(),
}
class UploadAnimationForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(UploadAnimationForm, self).__init__(*args, **kwargs)
self.fields['video_path'].label = "Animation(.mp4 only)"
class Meta:
model = AnimationStats
exclude = ['animation', 'views', 'like', 'dislike', 'thumbnail']
widgets = {'video_path': forms.FileInput(),}
|