Blame view

flaskr/forms.py 8.27 KB
37fd3b20   Antoine Goutenoir   Update the base F...
1
from flask_wtf import FlaskForm
9e44bb98   Antoine Goutenoir   Support file uplo...
2
from flask_wtf.file import FileAllowed
c81df6e7   Goutte   Add the forms mod...
3
4
5
6
from wtforms import \
    StringField, \
    PasswordField, \
    TextAreaField, \
35e3e5e8   Antoine Goutenoir   Add the select fi...
7
    SelectField, \
9e44bb98   Antoine Goutenoir   Support file uplo...
8
9
    BooleanField, \
    FileField
c81df6e7   Goutte   Add the forms mod...
10
from wtforms import validators
9e44bb98   Antoine Goutenoir   Support file uplo...
11
from werkzeug.datastructures import FileStorage
c81df6e7   Goutte   Add the forms mod...
12
13

from .models import User
d8a2ae6b   Antoine Goutenoir   Provide configura...
14
from .content import content_dict as content
77e86148   Antoine Goutenoir   Fake support for ...
15
from .core import models
cb22e72e   Antoine Goutenoir   Add a Captcha and...
16
from .extensions import captcha
35a99ac7   Goutte   Move more text co...
17
18

form_content = content['estimate']['form']
d25ff871   Antoine Goutenoir   Move train distan...
19
train_values = form_content['use_train_below_km']['values']
c81df6e7   Goutte   Add the forms mod...
20

cb22e72e   Antoine Goutenoir   Add a Captcha and...
21

c81df6e7   Goutte   Add the forms mod...
22
23
# ESTIMATION FORM #############################################################

37fd3b20   Antoine Goutenoir   Update the base F...
24
class EstimateForm(FlaskForm):
77e86148   Antoine Goutenoir   Fake support for ...
25

f47a875d   Antoine Goutenoir   Remove the email ...
26
27
28
29
30
31
32
33
    # email = StringField(
    #     label=form_content['email']['label'],
    #     description=form_content['email']['description'],
    #     validators=[
    #         validators.DataRequired(),
    #         validators.Email(),
    #     ],
    # )
77e86148   Antoine Goutenoir   Fake support for ...
34

8ae021a2   Antoine Goutenoir   Merge shelved cha...
35
36
37
38
39
40
41
42
43
44
45
    run_name = StringField(
        label=form_content['run_name']['label'],
        description=form_content['run_name']['description'],
        validators=[
            validators.Optional(),
            validators.Length(max=128),
        ],
        render_kw={
            "placeholder": form_content['run_name']['placeholder']
        },
    )
c81df6e7   Goutte   Add the forms mod...
46
    first_name = StringField(
35a99ac7   Goutte   Move more text co...
47
48
        label=form_content['first_name']['label'],
        description=form_content['first_name']['description'],
c81df6e7   Goutte   Add the forms mod...
49
50
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
51
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
52
        ],
f47a875d   Antoine Goutenoir   Remove the email ...
53
54
55
        render_kw={
            "placeholder": form_content['first_name']['placeholder']
        },
c81df6e7   Goutte   Add the forms mod...
56
57
    )
    last_name = StringField(
35a99ac7   Goutte   Move more text co...
58
59
        label=form_content['last_name']['label'],
        description=form_content['last_name']['description'],
c81df6e7   Goutte   Add the forms mod...
60
61
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
62
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
63
        ],
f47a875d   Antoine Goutenoir   Remove the email ...
64
65
66
        render_kw={
            "placeholder": form_content['last_name']['placeholder']
        },
c81df6e7   Goutte   Add the forms mod...
67
68
    )
    institution = StringField(
35a99ac7   Goutte   Move more text co...
69
70
        label=form_content['institution']['label'],
        description=form_content['institution']['description'],
c81df6e7   Goutte   Add the forms mod...
71
72
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
73
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
74
75
        ],
    )
35e3e5e8   Antoine Goutenoir   Add the select fi...
76
77
78
    use_train_below_km = SelectField(
        label=form_content['use_train_below_km']['label'],
        description=form_content['use_train_below_km']['description'],
d25ff871   Antoine Goutenoir   Move train distan...
79
80
        default=500,
        choices=[(v['value'], v['label']) for v in train_values],
35e3e5e8   Antoine Goutenoir   Add the select fi...
81
82
        coerce=int,
    )
c81df6e7   Goutte   Add the forms mod...
83
    comment = TextAreaField(
35a99ac7   Goutte   Move more text co...
84
85
        label=form_content['comment']['label'],
        description=form_content['comment']['description'],
c81df6e7   Goutte   Add the forms mod...
86
87
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
88
            validators.Length(max=4096),
c81df6e7   Goutte   Add the forms mod...
89
90
91
        ],
    )
    origin_addresses = TextAreaField(
35a99ac7   Goutte   Move more text co...
92
93
        label=form_content['origin_addresses']['label'],
        description=form_content['origin_addresses']['description'],
c81df6e7   Goutte   Add the forms mod...
94
95
96
        validators=[
            validators.DataRequired(),
        ],
35a99ac7   Goutte   Move more text co...
97
98
99
        render_kw={
            "placeholder": form_content['origin_addresses']['placeholder']
        },
c81df6e7   Goutte   Add the forms mod...
100
101
    )
    destination_addresses = TextAreaField(
35a99ac7   Goutte   Move more text co...
102
103
        label=form_content['destination_addresses']['label'],
        description=form_content['destination_addresses']['description'],
c81df6e7   Goutte   Add the forms mod...
104
105
106
        validators=[
            validators.DataRequired(),
        ],
35a99ac7   Goutte   Move more text co...
107
108
109
110
        render_kw={
            "placeholder": form_content['destination_addresses']['placeholder']
        },
    )
9e44bb98   Antoine Goutenoir   Support file uplo...
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
    origin_addresses_file = FileField(
        label=form_content['origin_addresses_file']['label'],
        description=form_content['origin_addresses_file']['description'],
        validators=[
            # We disabled validators because they bug with multiple FileFields
            # validators.Optional(),
            # FileAllowed(
            #     ['csv', 'xls', 'xlsx'],
            #     form_content['origin_addresses_file']['error']
            # )
        ],
    )
    destination_addresses_file = FileField(
        label=form_content['destination_addresses_file']['label'],
        description=form_content['destination_addresses_file']['description'],
        validators=[
            # We disabled validators because they bug with multiple FileFields
            # validators.Optional(),
            # FileAllowed(
            #     ['csv', 'xls', 'xlsx'],
            #     form_content['destination_addresses_file']['error']
            # )
        ],
    )
cb22e72e   Antoine Goutenoir   Add a Captcha and...
135
136
137
138
139
140
141
142
    captcha = StringField(
        label=form_content['captcha']['label'],
        description=form_content['captcha']['description'],
        validators=[
            validators.InputRequired(),
            validators.Length(max=16),
        ],
    )
9e44bb98   Antoine Goutenoir   Support file uplo...
143
144

    upload_set = ['csv', 'xls', 'xlsx']
77e86148   Antoine Goutenoir   Fake support for ...
145

7f7c6b10   Antoine Goutenoir   Disable RFI in th...
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
    # compute_optimal_destination = BooleanField(
    #     label=form_content['compute_optimal_destination']['label'],
    #     description=form_content['compute_optimal_destination']['description'],
    #     default=False,
    #     validators=[
    #         validators.Optional(),
    #     ],
    # )
    # use_atmosfair_rfi = BooleanField(
    #     label=form_content['use_atmosfair_rfi']['label'],
    #     description=form_content['use_atmosfair_rfi']['description'],
    #     default=False,
    #     validators=[
    #         validators.Optional(),
    #     ],
    # )
c81df6e7   Goutte   Add the forms mod...
162
163
164
165
166
167
168
169

    def validate(self):
        check_validate = super(EstimateForm, self).validate()

        # Do our validators pass?
        if not check_validate:
            return False

cb22e72e   Antoine Goutenoir   Add a Captcha and...
170
171
172
173
174
175
        if not captcha.validate():
            self.captcha.errors.append(
                "Captcha do not match.  Try again."
            )
            return False

77e86148   Antoine Goutenoir   Fake support for ...
176
177
178
        uses_at_least_one_model = False
        for model in models:
            use_model = getattr(self, 'use_model_%s' % model.slug)
cb22e72e   Antoine Goutenoir   Add a Captcha and...
179
            # print("Model data", model.slug, use_model.data)
77e86148   Antoine Goutenoir   Fake support for ...
180
181
182
183
184
            if use_model.data:
                uses_at_least_one_model = True

        if not uses_at_least_one_model:
            last_model = getattr(self, 'use_model_%s' % models[-1].slug)
9e44bb98   Antoine Goutenoir   Support file uplo...
185
186
187
188
            last_model.errors.append(
                "Please select at least one plane model, "
                "<em>even for train-only estimations.</em>"
            )
77e86148   Antoine Goutenoir   Fake support for ...
189
190
            return False

9e44bb98   Antoine Goutenoir   Support file uplo...
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
        # Check uploaded files' extensions, if any
        # We have to do this "by hand" because of a bug in flask wtf
        if isinstance(self.origin_addresses_file.data, FileStorage):
            fn = self.origin_addresses_file.data.filename.lower()
            if fn and not any(fn.endswith('.' + x) for x in self.upload_set):
                self.origin_addresses_file.errors.append(
                    form_content['origin_addresses_file']['error']
                )
                return False
        if isinstance(self.destination_addresses_file.data, FileStorage):
            fn = self.destination_addresses_file.data.filename.lower()
            if fn and not any(fn.endswith('.' + x) for x in self.upload_set):
                self.destination_addresses_file.errors.append(
                    form_content['destination_addresses_file']['error']
                )
                return False

c81df6e7   Goutte   Add the forms mod...
208
209
210
        return True


77e86148   Antoine Goutenoir   Fake support for ...
211
212
213
214
215
216
217
218
# Add the models' checkboxes to the above Form
for model in models:
    setattr(  # setattr() takes no keyword arguments -.-
        EstimateForm,
        'use_model_%s' % model.slug,
        BooleanField(
            label=model.name,
            # description=model.short_description,
845bbf90   Antoine Goutenoir   Activate the `sel...
219
            default=model.selected,
77e86148   Antoine Goutenoir   Fake support for ...
220
221
222
223
224
225
226
            validators=[
                validators.Optional(),
            ],
        )
    )


c81df6e7   Goutte   Add the forms mod...
227
228
# LOGIN FORM ##################################################################

37fd3b20   Antoine Goutenoir   Update the base F...
229
class LoginForm(FlaskForm):
c81df6e7   Goutte   Add the forms mod...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
    username = StringField(u'Username', validators=[validators.required()])
    password = PasswordField(u'Password', validators=[validators.optional()])

    def validate(self):
        check_validate = super(LoginForm, self).validate()

        # Do our validators pass?
        if not check_validate:
            return False

        # Does the user even exist?
        user = User.query.filter_by(username=self.username.data).first()
        if not user:
            self.username.errors.append('Invalid username or password')
            return False

        # Do the passwords match?
        if not user.check_password(self.password.data):
            self.username.errors.append('Invalid username or password')
            return False

        return True