Blame view

flaskr/forms.py 8.4 KB
37fd3b20   Antoine Goutenoir   Update the base F...
1
from flask_wtf import FlaskForm
d014ea17   Antoine Goutenoir   feat: improve aut...
2
from werkzeug.datastructures import FileStorage
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
c81df6e7   Goutte   Add the forms mod...
11

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

form_content = content['estimate']['form']
d25ff871   Antoine Goutenoir   Move train distan...
18
train_values = form_content['use_train_below_km']['values']
57f17703   Antoine Goutenoir   fix: pragmatism
19
IS_HUMAN = 'carbon'
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
    run_name = StringField(
        label=form_content['run_name']['label'],
        description=form_content['run_name']['description'],
        validators=[
            validators.Optional(),
            validators.Length(max=128),
        ],
        render_kw={
d014ea17   Antoine Goutenoir   feat: improve aut...
43
            "placeholder": form_content['run_name']['placeholder'],
8ae021a2   Antoine Goutenoir   Merge shelved cha...
44
45
        },
    )
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
        render_kw={
d014ea17   Antoine Goutenoir   feat: improve aut...
54
55
            "placeholder": form_content['first_name']['placeholder'],
            "autocomplete": "given-name",
f47a875d   Antoine Goutenoir   Remove the email ...
56
        },
c81df6e7   Goutte   Add the forms mod...
57
58
    )
    last_name = StringField(
35a99ac7   Goutte   Move more text co...
59
60
        label=form_content['last_name']['label'],
        description=form_content['last_name']['description'],
c81df6e7   Goutte   Add the forms mod...
61
62
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
63
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
64
        ],
f47a875d   Antoine Goutenoir   Remove the email ...
65
        render_kw={
d014ea17   Antoine Goutenoir   feat: improve aut...
66
67
            "placeholder": form_content['last_name']['placeholder'],
            "autocomplete": "family-name",
f47a875d   Antoine Goutenoir   Remove the email ...
68
        },
c81df6e7   Goutte   Add the forms mod...
69
70
    )
    institution = StringField(
35a99ac7   Goutte   Move more text co...
71
72
        label=form_content['institution']['label'],
        description=form_content['institution']['description'],
c81df6e7   Goutte   Add the forms mod...
73
74
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
75
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
76
77
        ],
    )
35e3e5e8   Antoine Goutenoir   Add the select fi...
78
79
80
    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...
81
82
        default=500,
        choices=[(v['value'], v['label']) for v in train_values],
35e3e5e8   Antoine Goutenoir   Add the select fi...
83
84
        coerce=int,
    )
c81df6e7   Goutte   Add the forms mod...
85
    comment = TextAreaField(
35a99ac7   Goutte   Move more text co...
86
87
        label=form_content['comment']['label'],
        description=form_content['comment']['description'],
c81df6e7   Goutte   Add the forms mod...
88
89
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
90
            validators.Length(max=4096),
c81df6e7   Goutte   Add the forms mod...
91
92
93
        ],
    )
    origin_addresses = TextAreaField(
35a99ac7   Goutte   Move more text co...
94
95
        label=form_content['origin_addresses']['label'],
        description=form_content['origin_addresses']['description'],
c81df6e7   Goutte   Add the forms mod...
96
97
98
        validators=[
            validators.DataRequired(),
        ],
35a99ac7   Goutte   Move more text co...
99
        render_kw={
d014ea17   Antoine Goutenoir   feat: improve aut...
100
            "placeholder": form_content['origin_addresses']['placeholder'],
35a99ac7   Goutte   Move more text co...
101
        },
c81df6e7   Goutte   Add the forms mod...
102
103
    )
    destination_addresses = TextAreaField(
35a99ac7   Goutte   Move more text co...
104
105
        label=form_content['destination_addresses']['label'],
        description=form_content['destination_addresses']['description'],
c81df6e7   Goutte   Add the forms mod...
106
107
108
        validators=[
            validators.DataRequired(),
        ],
35a99ac7   Goutte   Move more text co...
109
        render_kw={
d014ea17   Antoine Goutenoir   feat: improve aut...
110
            "placeholder": form_content['destination_addresses']['placeholder'],
35a99ac7   Goutte   Move more text co...
111
112
        },
    )
9e44bb98   Antoine Goutenoir   Support file uplo...
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
    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...
137
138
139
140
141
142
143
144
    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...
145
146

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

7f7c6b10   Antoine Goutenoir   Disable RFI in th...
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
    # 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...
164
165
166
167
168
169
170
171

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

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

57f17703   Antoine Goutenoir   fix: pragmatism
172
173
174
175
176
177
        if self.captcha.data != IS_HUMAN:
            if not captcha.validate():
                self.captcha.errors.append(
                    "Captcha do not match.  Try again."
                )
                return False
cb22e72e   Antoine Goutenoir   Add a Captcha and...
178

77e86148   Antoine Goutenoir   Fake support for ...
179
180
181
        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...
182
            # print("Model data", model.slug, use_model.data)
77e86148   Antoine Goutenoir   Fake support for ...
183
184
185
186
187
            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...
188
189
190
191
            last_model.errors.append(
                "Please select at least one plane model, "
                "<em>even for train-only estimations.</em>"
            )
77e86148   Antoine Goutenoir   Fake support for ...
192
193
            return False

9e44bb98   Antoine Goutenoir   Support file uplo...
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
        # 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...
211
212
213
        return True


77e86148   Antoine Goutenoir   Fake support for ...
214
215
216
217
218
219
220
221
# 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...
222
            default=model.selected,
77e86148   Antoine Goutenoir   Fake support for ...
223
224
225
226
227
228
229
            validators=[
                validators.Optional(),
            ],
        )
    )


c81df6e7   Goutte   Add the forms mod...
230
231
# LOGIN FORM ##################################################################

37fd3b20   Antoine Goutenoir   Update the base F...
232
class LoginForm(FlaskForm):
c81df6e7   Goutte   Add the forms mod...
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
    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