-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.py
197 lines (183 loc) · 4.5 KB
/
forms.py
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
from datetime import datetime
from flask_wtf import FlaskForm
from wtforms import StringField, SelectField, SelectMultipleField, DateTimeField, BooleanField, ValidationError
from wtforms.validators import DataRequired, AnyOf, URL, Length
import re
from enum import Enum, auto
def anyof_for_multiple_field(values):
message = 'Invalid value, must be one of: {0}.'.format( ','.join(values) )
def _validate(form, field):
error = False
for value in field.data:
if value not in values:
error = True
if error:
raise ValidationError(message)
return _validate
class State(Enum):
AL = 'AL'
AK = 'AK'
AZ = 'AZ'
AR = 'AR'
CA = 'CA'
CO = 'CO'
CT = 'CT'
DE = 'DE'
DC = 'DC'
FL = 'FL'
GA = 'GA'
HI = 'HI'
ID = 'ID'
IL = 'IL'
IN = 'IN'
IA = 'IA'
KS = 'KS'
KY = 'KY'
LA = 'LA'
ME = 'ME'
MT = 'MT'
NE = 'NE'
NV = 'NV'
NH = 'NH'
NJ = 'NJ'
NM = 'NM'
NY = 'NY'
NC = 'NC'
ND = 'ND'
OH = 'OH'
OK = 'OK'
OR = 'OR'
MD = 'MD'
MA = 'MA'
MI = 'MI'
MN = 'MN'
MS = 'MS'
MO = 'MO'
PA = 'PA'
RI = 'RI'
SC = 'SC'
SD = 'SD'
TN = 'TN'
TX = 'TX'
UT = 'UT'
VT = 'VT'
VA = 'VA'
WA = 'WA'
WV = 'WV'
WI = 'WI'
WY = 'WY'
@classmethod
def choices(cls):
return [ (choice.value, choice.value) for choice in cls ]
class Genre(Enum):
Alternative = 'Alternative'
Blues = 'Blues'
Classical = 'Classical'
Country = 'Country'
Electronic = 'Electronic'
Folk = 'Folk'
Funk = 'Funk'
Hip_Hop = 'Hip-Hop'
Heavy_Metal = 'Heavy Metal'
Instrumental = 'Instrumental'
Jazz = 'Jazz'
Musical_Theatre = 'Musical Theatre'
Pop = 'Pop'
Punk = 'Punk'
R_AND_B = 'R&B'
Reggae = 'Reggae'
Rock_n_Roll = 'Rock n Roll'
Soul = 'Soul'
Other = 'Other'
@classmethod
def choices(cls):
return [ (choice.value, choice.value) for choice in cls ]
class ShowForm(FlaskForm):
artist_id = StringField(
'artist_id'
)
venue_id = StringField(
'venue_id'
)
start_time = DateTimeField(
'start_time',
validators=[DataRequired()],
default= datetime.today()
)
end_time = DateTimeField(
'end_time',
validators=[DataRequired()],
default= datetime.today()
)
class VenueForm(FlaskForm):
name = StringField(
'name', validators=[DataRequired()]
)
city = StringField(
'city', validators=[DataRequired(), Length(max=120)]
)
state = SelectField(
'state', validators=[DataRequired(), AnyOf( [ choice.value for choice in State ] )],
choices=State.choices()
)
address = StringField(
'address', validators=[DataRequired(), Length(max=120)]
)
phone = StringField(
'phone'
)
website = StringField(
'website', validators=[DataRequired(), URL(), Length(max=120)]
)
genres = SelectMultipleField(
'genres', validators=[DataRequired(), anyof_for_multiple_field( [ choice.value for choice in Genre ] )],
choices=Genre.choices()
)
facebook_link = StringField(
'facebook_link', validators=[URL()]
)
seeking_talent = BooleanField(
'seeking_talent'
)
seeking_description = StringField(
'seeking_description', validators=[Length(max=500)]
)
image_link = StringField(
'image_link', validators=[DataRequired(), URL(), Length(max=500)]
)
# IMPLEMENT NEW ARTIST FORM AND NEW SHOW FORM
class ArtistForm(FlaskForm):
name = StringField(
'name', validators=[DataRequired(), Length(max=120)]
)
city = StringField(
'city', validators=[DataRequired(), Length(max=120)]
)
state = SelectField(
# implement validation logic for state
'state', validators=[DataRequired(), AnyOf( [ choice.value for choice in State ] )],
choices=State.choices()
)
phone = StringField(
'phone'
)
genres = SelectMultipleField(
# implement enum restriction
'genres', validators=[DataRequired(), anyof_for_multiple_field( [ choice.value for choice in Genre ] )],
choices=Genre.choices()
)
seeking_venue = BooleanField(
'seeking_venue'
)
seeking_description = StringField(
'seeking_description', validators=[Length(max=500)]
)
website = StringField(
'website', validators=[DataRequired(), URL(), Length(max=120)]
)
image_link = StringField(
'image_link', validators=[DataRequired(), URL(), Length(max=500)]
)
facebook_link = StringField(
'facebook_link', validators=[URL()]
)