Blame view

flaskr/forms.py 7.83 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
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']
c81df6e7   Goutte   Add the forms mod...
19
20
21

# ESTIMATION FORM #############################################################

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

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

8ae021a2   Antoine Goutenoir   Merge shelved cha...
33
34
35
36
37
38
39
40
41
42
43
    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...
44
    first_name = StringField(
35a99ac7   Goutte   Move more text co...
45
46
        label=form_content['first_name']['label'],
        description=form_content['first_name']['description'],
c81df6e7   Goutte   Add the forms mod...
47
48
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
49
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
50
        ],
f47a875d   Antoine Goutenoir   Remove the email ...
51
52
53
        render_kw={
            "placeholder": form_content['first_name']['placeholder']
        },
c81df6e7   Goutte   Add the forms mod...
54
55
    )
    last_name = StringField(
35a99ac7   Goutte   Move more text co...
56
57
        label=form_content['last_name']['label'],
        description=form_content['last_name']['description'],
c81df6e7   Goutte   Add the forms mod...
58
59
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
60
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
61
        ],
f47a875d   Antoine Goutenoir   Remove the email ...
62
63
64
        render_kw={
            "placeholder": form_content['last_name']['placeholder']
        },
c81df6e7   Goutte   Add the forms mod...
65
66
    )
    institution = StringField(
35a99ac7   Goutte   Move more text co...
67
68
        label=form_content['institution']['label'],
        description=form_content['institution']['description'],
c81df6e7   Goutte   Add the forms mod...
69
70
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
71
            validators.Length(max=128),
c81df6e7   Goutte   Add the forms mod...
72
73
        ],
    )
35e3e5e8   Antoine Goutenoir   Add the select fi...
74
75
76
    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...
77
78
        default=500,
        choices=[(v['value'], v['label']) for v in train_values],
35e3e5e8   Antoine Goutenoir   Add the select fi...
79
80
        coerce=int,
    )
c81df6e7   Goutte   Add the forms mod...
81
    comment = TextAreaField(
35a99ac7   Goutte   Move more text co...
82
83
        label=form_content['comment']['label'],
        description=form_content['comment']['description'],
c81df6e7   Goutte   Add the forms mod...
84
85
        validators=[
            validators.Optional(),
8ae021a2   Antoine Goutenoir   Merge shelved cha...
86
            validators.Length(max=4096),
c81df6e7   Goutte   Add the forms mod...
87
88
89
        ],
    )
    origin_addresses = TextAreaField(
35a99ac7   Goutte   Move more text co...
90
91
        label=form_content['origin_addresses']['label'],
        description=form_content['origin_addresses']['description'],
c81df6e7   Goutte   Add the forms mod...
92
93
94
        validators=[
            validators.DataRequired(),
        ],
35a99ac7   Goutte   Move more text co...
95
96
97
        render_kw={
            "placeholder": form_content['origin_addresses']['placeholder']
        },
c81df6e7   Goutte   Add the forms mod...
98
99
    )
    destination_addresses = TextAreaField(
35a99ac7   Goutte   Move more text co...
100
101
        label=form_content['destination_addresses']['label'],
        description=form_content['destination_addresses']['description'],
c81df6e7   Goutte   Add the forms mod...
102
103
104
        validators=[
            validators.DataRequired(),
        ],
35a99ac7   Goutte   Move more text co...
105
106
107
108
        render_kw={
            "placeholder": form_content['destination_addresses']['placeholder']
        },
    )
9e44bb98   Antoine Goutenoir   Support file uplo...
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
    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']
            # )
        ],
    )

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

7f7c6b10   Antoine Goutenoir   Disable RFI in th...
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
    # 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...
152
153
154
155
156
157
158
159

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

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

77e86148   Antoine Goutenoir   Fake support for ...
160
161
162
163
164
165
166
167
168
        uses_at_least_one_model = False
        for model in models:
            use_model = getattr(self, 'use_model_%s' % model.slug)
            #print("Model data", model.slug, use_model.data)
            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...
169
170
171
172
            last_model.errors.append(
                "Please select at least one plane model, "
                "<em>even for train-only estimations.</em>"
            )
77e86148   Antoine Goutenoir   Fake support for ...
173
174
            return False

9e44bb98   Antoine Goutenoir   Support file uplo...
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
        # 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...
192
193
194
        return True


77e86148   Antoine Goutenoir   Fake support for ...
195
196
197
198
199
200
201
202
# 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...
203
            default=model.selected,
77e86148   Antoine Goutenoir   Fake support for ...
204
205
206
207
208
209
210
            validators=[
                validators.Optional(),
            ],
        )
    )


c81df6e7   Goutte   Add the forms mod...
211
212
# LOGIN FORM ##################################################################

37fd3b20   Antoine Goutenoir   Update the base F...
213
class LoginForm(FlaskForm):
c81df6e7   Goutte   Add the forms mod...
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
    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