Blame view

flaskr/controllers/main_controller.py 31.8 KB
3bb89452   Antoine Goutenoir   feat: add a world...
1
2
3
4
import csv
import re
# from io import StringIO
from cStringIO import StringIO
b935618e   Antoine Goutenoir   Count the number ...
5
from copy import deepcopy
3bb89452   Antoine Goutenoir   feat: add a world...
6
7
from os import unlink
from os.path import join
b935618e   Antoine Goutenoir   Count the number ...
8

314c65e2   Antoine Goutenoir   Implement Scenari...
9
import geopy
3bb89452   Antoine Goutenoir   feat: add a world...
10
import pandas
314c65e2   Antoine Goutenoir   Implement Scenari...
11
import sqlalchemy
e2637443   Antoine Goutenoir   Send emails to ad...
12
13
14
15
16
from flask import (
    Blueprint,
    Response,
    render_template,
    flash,
e2637443   Antoine Goutenoir   Send emails to ad...
17
18
19
20
21
    redirect,
    url_for,
    abort,
    send_from_directory,
)
3bb89452   Antoine Goutenoir   feat: add a world...
22
23
24
from pandas.compat import StringIO as PandasStringIO
from wtforms import validators
from yaml import safe_dump as yaml_dump
7b4d2926   Goutte   Rework the contro...
25

3bb89452   Antoine Goutenoir   feat: add a world...
26
from flaskr.content import content, base_url
e2637443   Antoine Goutenoir   Send emails to ad...
27
from flaskr.core import (
e2637443   Antoine Goutenoir   Send emails to ad...
28
29
30
    get_emission_models,
    increment_hit_counter,
)
3bb89452   Antoine Goutenoir   feat: add a world...
31
32
33
34
from flaskr.extensions import cache, send_email
from flaskr.forms import EstimateForm
from flaskr.geocoder import CachedGeocoder
from flaskr.models import db, Estimation, StatusEnum, ScenarioEnum
9e44bb98   Antoine Goutenoir   Support file uplo...
35

7b4d2926   Goutte   Rework the contro...
36
37
38
main = Blueprint('main', __name__)


9621b8a5   Antoine Goutenoir   Fix the CSV gener...
39
40
41
OUT_ENCODING = 'utf-8'


67f85bce   Antoine Goutenoir   Generate a CSV fi...
42
# -----------------------------------------------------------------------------
e2637443   Antoine Goutenoir   Send emails to ad...
43

6318fdba   Antoine Goutenoir   Change PI email.
44
pi_email = "didier.barret@gmail.com"  # todo: move to content YAML or .env
3e6505e2   Antoine Goutenoir   Add content to th...
45
# pi_email = "goutte@protonmail.com"
e2637443   Antoine Goutenoir   Send emails to ad...
46

78eb2a62   Antoine Goutenoir   Use the counter.
47
# -----------------------------------------------------------------------------
67f85bce   Antoine Goutenoir   Generate a CSV fi...
48
49


461850db   Antoine Goutenoir   Yet another joyfu...
50
@main.route('/favicon.ico')
7f7c6b10   Antoine Goutenoir   Disable RFI in th...
51
@cache.cached(timeout=10000)
461850db   Antoine Goutenoir   Yet another joyfu...
52
53
54
55
56
57
58
def favicon():  # we want it served from the root, not from static/
    return send_from_directory(
        join(main.root_path, '..', 'static', 'img'),
        'favicon.ico', mimetype='image/vnd.microsoft.icon'
    )


7b4d2926   Goutte   Rework the contro...
59
@main.route('/')
b0ffb1ba   Antoine Goutenoir   Review actively.
60
61
@main.route('/home')
@main.route('/home.html')
38375935   Antoine Goutenoir   Remove the cache ...
62
# @cache.cached(timeout=1000)
7b4d2926   Goutte   Rework the contro...
63
def home():
4c862b54   Antoine Goutenoir   Add a grouped bar...
64
    models = get_emission_models()
a3e9d0fc   Antoine Goutenoir   Fix home plot leg...
65
66
67
    models_dict = {}
    for model in models:
        models_dict[model.slug] = model.__dict__
78eb2a62   Antoine Goutenoir   Use the counter.
68
    increment_hit_counter()
4c862b54   Antoine Goutenoir   Add a grouped bar...
69
70
    return render_template(
        'home.html',
a3e9d0fc   Antoine Goutenoir   Fix home plot leg...
71
        models=models_dict,
4c862b54   Antoine Goutenoir   Add a grouped bar...
72
        colors=[model.color for model in models],
a3e9d0fc   Antoine Goutenoir   Fix home plot leg...
73
        labels=[model.name for model in models],
4c862b54   Antoine Goutenoir   Add a grouped bar...
74
    )
7b4d2926   Goutte   Rework the contro...
75
76


9e44bb98   Antoine Goutenoir   Support file uplo...
77
def gather_addresses(from_list, from_file):
04d423cb   Antoine Goutenoir   Limit the amount ...
78
79
80
81
    """
    Gather a list of addresses from the provided list and file.
    If the file is provided the list is ignored.
    """
9e44bb98   Antoine Goutenoir   Support file uplo...
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
    addresses = []
    if from_file:
        file_mimetype = from_file.mimetype
        file_contents = from_file.read()

        rows_dicts = None

        if 'text/csv' == file_mimetype:

            rows_dicts = pandas \
                .read_csv(PandasStringIO(file_contents)) \
                .rename(str.lower, axis='columns') \
                .to_dict(orient="row")

        # Here are just *some* of the mimetypes that Microsoft's
        # garbage spreadsheet files may have.
        # application/vnd.ms-excel (official)
        # application/msexcel
        # application/x-msexcel
        # application/x-ms-excel
        # application/x-excel
        # application/x-dos_ms_excel
        # application/xls
        # application/x-xls
        # application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
        # ... Let's check extension instead.

        elif from_file.filename.endswith('xls') \
                or from_file.filename.endswith('xlsx'):

            rows_dicts = pandas \
                .read_excel(PandasStringIO(file_contents)) \
                .rename(str.lower, axis='columns') \
                .to_dict(orient="row")

        # Python 3.7 only
        # elif from_file.filename.endswith('ods'):
9e44bb98   Antoine Goutenoir   Support file uplo...
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
        #     rows_dicts = read_ods(PandasStringIO(file_contents), 1) \
        #         .rename(str.lower, axis='columns') \
        #         .to_dict(orient="row")

        if rows_dicts is not None:
            for row_dict in rows_dicts:
                if 'address' in row_dict:
                    addresses.append(row_dict['address'])
                    continue
                address = None
                if 'city' in row_dict:
                    address = row_dict['city']
                if 'country' in row_dict:
                    if address is None:
                        address = row_dict['country']
                    else:
                        address += "," + row_dict['country']
                if address is not None:
                    addresses.append(address)
                else:
f2fbbb72   Antoine Goutenoir   Display a nice er...
139
140
141
                    raise validators.ValidationError(
                        "We could not find Address data in the spreadsheet."
                    )
9e44bb98   Antoine Goutenoir   Support file uplo...
142
        else:
f2fbbb72   Antoine Goutenoir   Display a nice er...
143
144
145
            raise validators.ValidationError(
                "We could not find any data in the spreadsheet."
            )
9e44bb98   Antoine Goutenoir   Support file uplo...
146
147
148
149

    else:
        addresses = from_list.replace("\r", '').split("\n")

68da7cd4   Antoine Goutenoir   Improve robustnes...
150
    clean_addresses = []
88c95474   Antoine Goutenoir   Improve perfs of ...
151
152
    # Ignore inevitable copy/paste bloopers
    to_ignore = re.compile(r"City\s*,\s*Country", re.I & re.U)
68da7cd4   Antoine Goutenoir   Improve robustnes...
153
154
155
    for address in addresses:
        if not address:
            continue
8ba63c8d   Antoine Goutenoir   Ignore "City,Coun...
156
157
        if type(address).__name__ == 'str':
            address = unicode(address, 'utf-8')
88c95474   Antoine Goutenoir   Improve perfs of ...
158
159
        if to_ignore.match(address) is not None:
            continue
8ba63c8d   Antoine Goutenoir   Ignore "City,Coun...
160
        clean_addresses.append(address)
68da7cd4   Antoine Goutenoir   Improve robustnes...
161
162
163
164
    addresses = clean_addresses

    # Remove empty lines (if any) and white characters
    addresses = [a.strip() for a in addresses if a]
8ec0ce68   Antoine Goutenoir   Improve robustnes...
165

9e44bb98   Antoine Goutenoir   Support file uplo...
166
167
168
    return "\n".join(addresses)


7b4d2926   Goutte   Rework the contro...
169
@main.route("/estimate", methods=["GET", "POST"])
b0ffb1ba   Antoine Goutenoir   Review actively.
170
@main.route("/estimate.html", methods=["GET", "POST"])
e2637443   Antoine Goutenoir   Send emails to ad...
171
def estimate():  # register new estimation request, more accurately
04d423cb   Antoine Goutenoir   Limit the amount ...
172
    maximum_travels_to_compute = 1000000
77e86148   Antoine Goutenoir   Fake support for ...
173
    models = get_emission_models()
7b4d2926   Goutte   Rework the contro...
174
175
    form = EstimateForm()

f2fbbb72   Antoine Goutenoir   Display a nice er...
176
    def show_form():
a7e8b345   Antoine Goutenoir   refactor: rename ...
177
        return render_template("estimation-request.html", form=form, models=models)
f2fbbb72   Antoine Goutenoir   Display a nice er...
178

7b4d2926   Goutte   Rework the contro...
179
180
    if form.validate_on_submit():

7b4d2926   Goutte   Rework the contro...
181
        estimation = Estimation()
a4c03d8e   Antoine Goutenoir   Add the controlle...
182
        # estimation.email = form.email.data
8ae021a2   Antoine Goutenoir   Merge shelved cha...
183
        estimation.run_name = form.run_name.data
7b4d2926   Goutte   Rework the contro...
184
185
        estimation.first_name = form.first_name.data
        estimation.last_name = form.last_name.data
16f69d07   Antoine Goutenoir   Add an (unsecured...
186
        estimation.institution = form.institution.data
24f55cde   Antoine Goutenoir   Geocode destinati...
187
        estimation.status = StatusEnum.pending
f2fbbb72   Antoine Goutenoir   Display a nice er...
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206

        try:
            estimation.origin_addresses = gather_addresses(
                form.origin_addresses.data,
                form.origin_addresses_file.data
            )
        except validators.ValidationError as e:
            form.origin_addresses_file.errors.append(e.message)
            return show_form()

        try:
            estimation.destination_addresses = gather_addresses(
                form.destination_addresses.data,
                form.destination_addresses_file.data
            )
        except validators.ValidationError as e:
            form.destination_addresses_file.errors.append(e.message)
            return show_form()

4276f1aa   Antoine Goutenoir   Support train emi...
207
        estimation.use_train_below_km = form.use_train_below_km.data
f2fbbb72   Antoine Goutenoir   Display a nice er...
208

77e86148   Antoine Goutenoir   Fake support for ...
209
        models_slugs = []
04d423cb   Antoine Goutenoir   Limit the amount ...
210
        models_count = 0
77e86148   Antoine Goutenoir   Fake support for ...
211
        for model in models:
35fbac1f   Antoine Goutenoir   Fix a blooper.
212
            if getattr(form, 'use_model_%s' % model.slug).data:
77e86148   Antoine Goutenoir   Fake support for ...
213
                models_slugs.append(model.slug)
04d423cb   Antoine Goutenoir   Limit the amount ...
214
                models_count += 1
6b9c0dd2   Antoine Goutenoir   Force Unicode.
215
        estimation.models_slugs = u"\n".join(models_slugs)
7b4d2926   Goutte   Rework the contro...
216

04d423cb   Antoine Goutenoir   Limit the amount ...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
        travels_to_compute = \
            models_count * \
            (estimation.origin_addresses.count("\n") + 1) * \
            (estimation.destination_addresses.count("\n") + 1)
        if travels_to_compute > maximum_travels_to_compute:
            message = """
            Too many travels to compute. (%d > %d)
            We're working on increasing this limitation.
            Please contact us directly if you wish to boost this issue
            or get a dedicated estimation.
            """ % (travels_to_compute, maximum_travels_to_compute)
            form.origin_addresses.errors.append(message)
            form.destination_addresses.errors.append(message)
            # form.origin_addresses_file.errors.append(message)
            # form.destination_addresses_file.errors.append(message)
            return show_form()

7b4d2926   Goutte   Rework the contro...
234
235
236
        db.session.add(estimation)
        db.session.commit()

e2637443   Antoine Goutenoir   Send emails to ad...
237
238
        send_email(
            to_recipient=pi_email,
3e6505e2   Antoine Goutenoir   Add content to th...
239
            subject="[TCFM] New Estimation Request: %s" % estimation.public_id,
07c07af5   Antoine Goutenoir   Add an email temp...
240
241
242
243
244
            message=render_template(
                'email/run_requested.html',
                base_url=base_url,
                estimation=estimation,
            )
e2637443   Antoine Goutenoir   Send emails to ad...
245
246
        )

7b4d2926   Goutte   Rework the contro...
247
        flash("Estimation request submitted successfully.", "success")
a4c03d8e   Antoine Goutenoir   Add the controlle...
248
249
250
        return redirect(url_for(
            endpoint=".consult_estimation",
            public_id=estimation.public_id,
91751451   Antoine Goutenoir   Shift the API to ...
251
            extension='html'
a4c03d8e   Antoine Goutenoir   Add the controlle...
252
        ))
7b4d2926   Goutte   Rework the contro...
253
254
        # return render_template("estimate-debrief.html", form=form)

f2fbbb72   Antoine Goutenoir   Display a nice er...
255
    return show_form()
7b4d2926   Goutte   Rework the contro...
256

4392f295   Goutte   Update the Estima...
257

15e57dca   Antoine Goutenoir   Naming things and...
258
@main.route("/invalidate")
4276f1aa   Antoine Goutenoir   Support train emi...
259
@main.route("/invalidate.html")
15e57dca   Antoine Goutenoir   Naming things and...
260
261
262
263
264
265
266
267
268
269
def invalidate():
    stuck_estimations = Estimation.query \
        .filter_by(status=StatusEnum.working) \
        .all()

    for estimation in stuck_estimations:
        estimation.status = StatusEnum.failure
        estimation.errors = "Invalidated. Try again."
        db.session.commit()

8ae021a2   Antoine Goutenoir   Merge shelved cha...
270
271
272
273
274
275
276
277
278
279
280
    return "Estimations invalidated: %d" % len(stuck_estimations)


@main.route("/invalidate-geocache")
@main.route("/invalidate-geocache.html")
def invalidate_geocache():
    geocache = 'geocache.db'

    unlink(geocache)

    return "Geocache invalidated."
15e57dca   Antoine Goutenoir   Naming things and...
281
282


4392f295   Goutte   Update the Estima...
283
@main.route("/compute")
51f564d3   Antoine Goutenoir   Add a big chunk o...
284
def compute():  # process the queue of estimation requests
24f55cde   Antoine Goutenoir   Geocode destinati...
285

04d423cb   Antoine Goutenoir   Limit the amount ...
286
    # maximum_addresses_to_compute = 30000
dca2b847   Antoine Goutenoir   Cap the amount of...
287

24f55cde   Antoine Goutenoir   Geocode destinati...
288
289
290
291
    def _respond(_msg):
        return "<pre>%s</pre>" % _msg

    def _handle_failure(_estimation, _failure_message):
a4c03d8e   Antoine Goutenoir   Add the controlle...
292
        _estimation.status = StatusEnum.failure
70aa301f   Antoine Goutenoir   Implement another...
293
        _estimation.errors = _failure_message
24f55cde   Antoine Goutenoir   Geocode destinati...
294
        db.session.commit()
3e6505e2   Antoine Goutenoir   Add content to th...
295
296
297
298
299
300
301
302
303
        send_email(
            to_recipient=pi_email,
            subject="[TCFM] Run failed: %s" % _estimation.public_id,
            message=render_template(
                'email/run_failed.html',
                base_url=base_url,
                estimation=_estimation,
            )
        )
24f55cde   Antoine Goutenoir   Geocode destinati...
304

72460978   Antoine Goutenoir   Use warnings inst...
305
    def _handle_warning(_estimation, _warning_message):
3d8865da   Antoine Goutenoir   Improve warnings ...
306
307
308
        if not _estimation.warnings:
            _estimation.warnings = _warning_message
        else:
ac935afa   Antoine Goutenoir   Make warnings mor...
309
            _estimation.warnings += _warning_message
3d8865da   Antoine Goutenoir   Improve warnings ...
310
311
            # _estimation.warnings = u"%s\n%s" % \
            #                        (_estimation.warnings, _warning_message)
72460978   Antoine Goutenoir   Use warnings inst...
312
313
        db.session.commit()

3d8865da   Antoine Goutenoir   Improve warnings ...
314
    estimation = None
59125398   Antoine Goutenoir   Improve resilience.
315
316
    try:
        response = ""
4392f295   Goutte   Update the Estima...
317

59125398   Antoine Goutenoir   Improve resilience.
318
319
320
        count_working = Estimation.query \
            .filter_by(status=StatusEnum.working) \
            .count()
03c194bf   Antoine Goutenoir   Actually implemen...
321

59125398   Antoine Goutenoir   Improve resilience.
322
323
        if 0 < count_working:
            return _respond("Already working on estimation.")
03c194bf   Antoine Goutenoir   Actually implemen...
324

59125398   Antoine Goutenoir   Improve resilience.
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
        try:
            estimation = Estimation.query \
                .filter_by(status=StatusEnum.pending) \
                .order_by(Estimation.id.asc()) \
                .first()
        except sqlalchemy.orm.exc.NoResultFound:
            return _respond("No estimation in the queue.")
        except Exception as e:
            return _respond("Database error: %s" % (e,))

        if not estimation:
            return _respond("No estimation in the queue.")

        estimation.status = StatusEnum.working
        db.session.commit()
51f564d3   Antoine Goutenoir   Add a big chunk o...
340

59125398   Antoine Goutenoir   Improve resilience.
341
342
343
        response += u"Processing estimation `%s`...\n" % (
            estimation.public_id
        )
24f55cde   Antoine Goutenoir   Geocode destinati...
344

6b9c0dd2   Antoine Goutenoir   Force Unicode.
345
346
        # GEOCODE ADDRESSES ###################################################

59125398   Antoine Goutenoir   Improve resilience.
347
348
        failed_addresses = []
        geocoder = CachedGeocoder()
03c194bf   Antoine Goutenoir   Actually implemen...
349

e2637443   Antoine Goutenoir   Send emails to ad...
350
        # GEOCODE ORIGINS #####################################################
24f55cde   Antoine Goutenoir   Geocode destinati...
351

59125398   Antoine Goutenoir   Improve resilience.
352
        origins_addresses = estimation.origin_addresses.strip().split("\n")
dca2b847   Antoine Goutenoir   Cap the amount of...
353
        origins_addresses_count = len(origins_addresses)
59125398   Antoine Goutenoir   Improve resilience.
354
        origins = []
24f55cde   Antoine Goutenoir   Geocode destinati...
355

04d423cb   Antoine Goutenoir   Limit the amount ...
356
357
358
359
360
361
362
        # if origins_addresses_count > maximum_addresses_to_compute:
        #     errmsg = u"Too many origins. (%d > %d) \n" \
        #              u"Please contact us " \
        #              u"for support of more origins." % \
        #              (origins_addresses_count, maximum_addresses_to_compute)
        #     _handle_failure(estimation, errmsg)
        #     return _respond(errmsg)
dca2b847   Antoine Goutenoir   Cap the amount of...
363
364

        for i in range(origins_addresses_count):
51f564d3   Antoine Goutenoir   Add a big chunk o...
365

59125398   Antoine Goutenoir   Improve resilience.
366
            origin_address = origins_addresses[i].strip()
3d8865da   Antoine Goutenoir   Improve warnings ...
367
368
369
370

            if not origin_address:
                continue

59125398   Antoine Goutenoir   Improve resilience.
371
372
            if origin_address in failed_addresses:
                continue
51f564d3   Antoine Goutenoir   Add a big chunk o...
373

59125398   Antoine Goutenoir   Improve resilience.
374
375
376
            try:
                origin = geocoder.geocode(origin_address.encode('utf-8'))
            except geopy.exc.GeopyError as e:
3d8865da   Antoine Goutenoir   Improve warnings ...
377
378
379
                warning = u"Ignoring origin `%s` " \
                          u"since we failed to geocode it.\n%s\n" % (
                            origin_address, e,
59125398   Antoine Goutenoir   Improve resilience.
380
                )
3d8865da   Antoine Goutenoir   Improve warnings ...
381
382
                response += warning
                _handle_warning(estimation, warning)
59125398   Antoine Goutenoir   Improve resilience.
383
384
                failed_addresses.append(origin_address)
                continue
51f564d3   Antoine Goutenoir   Add a big chunk o...
385

59125398   Antoine Goutenoir   Improve resilience.
386
            if origin is None:
3d8865da   Antoine Goutenoir   Improve warnings ...
387
388
389
                warning = u"Ignoring origin `%s` " \
                          u"since we failed to geocode it.\n" % (
                            origin_address,
59125398   Antoine Goutenoir   Improve resilience.
390
                )
3d8865da   Antoine Goutenoir   Improve warnings ...
391
392
                response += warning
                _handle_warning(estimation, warning)
59125398   Antoine Goutenoir   Improve resilience.
393
394
                failed_addresses.append(origin_address)
                continue
51f564d3   Antoine Goutenoir   Add a big chunk o...
395

59125398   Antoine Goutenoir   Improve resilience.
396
            origins.append(origin)
51f564d3   Antoine Goutenoir   Add a big chunk o...
397

3d8865da   Antoine Goutenoir   Improve warnings ...
398
            response += u"Origin `%s` geocoded to `%s` (%f, %f).\n" % (
59125398   Antoine Goutenoir   Improve resilience.
399
400
                origin_address, origin.address,
                origin.latitude, origin.longitude,
51f564d3   Antoine Goutenoir   Add a big chunk o...
401
            )
51f564d3   Antoine Goutenoir   Add a big chunk o...
402

e2637443   Antoine Goutenoir   Send emails to ad...
403
        # GEOCODE DESTINATIONS ################################################
51f564d3   Antoine Goutenoir   Add a big chunk o...
404

59125398   Antoine Goutenoir   Improve resilience.
405
        destinations_addresses = estimation.destination_addresses.strip().split("\n")
dca2b847   Antoine Goutenoir   Cap the amount of...
406
        destinations_addresses_count = len(destinations_addresses)
59125398   Antoine Goutenoir   Improve resilience.
407
        destinations = []
51f564d3   Antoine Goutenoir   Add a big chunk o...
408

04d423cb   Antoine Goutenoir   Limit the amount ...
409
410
411
412
413
414
415
416
417
418
        # if destinations_addresses_count > maximum_addresses_to_compute:
        #     errmsg = u"Too many destinations. (%d > %d) \n" \
        #              u"Please contact us " \
        #              u"for support of that many destinations." \
        #              % (
        #                  destinations_addresses_count,
        #                  maximum_addresses_to_compute,
        #              )
        #     _handle_failure(estimation, errmsg)
        #     return _respond(errmsg)
dca2b847   Antoine Goutenoir   Cap the amount of...
419
420

        for i in range(destinations_addresses_count):
51f564d3   Antoine Goutenoir   Add a big chunk o...
421

59125398   Antoine Goutenoir   Improve resilience.
422
            destination_address = destinations_addresses[i].strip()
3d8865da   Antoine Goutenoir   Improve warnings ...
423
424
425
426

            if not destination_address:
                continue

59125398   Antoine Goutenoir   Improve resilience.
427
428
            if destination_address in failed_addresses:
                continue
24f55cde   Antoine Goutenoir   Geocode destinati...
429

59125398   Antoine Goutenoir   Improve resilience.
430
            try:
e2637443   Antoine Goutenoir   Send emails to ad...
431
432
433
                destination = geocoder.geocode(
                    destination_address.encode('utf-8')
                )
59125398   Antoine Goutenoir   Improve resilience.
434
            except geopy.exc.GeopyError as e:
3d8865da   Antoine Goutenoir   Improve warnings ...
435
436
437
                warning = u"Ignoring destination `%s` " \
                          u"since we failed to geocode it.\n%s\n" % (
                            destination_address, e,
59125398   Antoine Goutenoir   Improve resilience.
438
                )
3d8865da   Antoine Goutenoir   Improve warnings ...
439
440
                response += warning
                _handle_warning(estimation, warning)
59125398   Antoine Goutenoir   Improve resilience.
441
442
                failed_addresses.append(destination_address)
                continue
24f55cde   Antoine Goutenoir   Geocode destinati...
443

59125398   Antoine Goutenoir   Improve resilience.
444
            if destination is None:
3d8865da   Antoine Goutenoir   Improve warnings ...
445
446
447
                warning = u"Ignoring destination `%s` " \
                          u"since we failed to geocode it.\n" % (
                            destination_address,
59125398   Antoine Goutenoir   Improve resilience.
448
                )
3d8865da   Antoine Goutenoir   Improve warnings ...
449
450
                response += warning
                _handle_warning(estimation, warning)
59125398   Antoine Goutenoir   Improve resilience.
451
452
                failed_addresses.append(destination_address)
                continue
24f55cde   Antoine Goutenoir   Geocode destinati...
453

59125398   Antoine Goutenoir   Improve resilience.
454
            # print(repr(destination.raw))
24f55cde   Antoine Goutenoir   Geocode destinati...
455

59125398   Antoine Goutenoir   Improve resilience.
456
457
            destinations.append(destination)

3d8865da   Antoine Goutenoir   Improve warnings ...
458
            response += u"Destination `%s` geocoded to `%s` (%f, %f).\n" % (
59125398   Antoine Goutenoir   Improve resilience.
459
460
                destination_address, destination.address,
                destination.latitude, destination.longitude,
24f55cde   Antoine Goutenoir   Geocode destinati...
461
            )
24f55cde   Antoine Goutenoir   Geocode destinati...
462

8ae021a2   Antoine Goutenoir   Merge shelved cha...
463
464
        geocoder.close()

e2637443   Antoine Goutenoir   Send emails to ad...
465
        # GTFO IF NO ORIGINS OR NO DESTINATIONS ###############################
314c65e2   Antoine Goutenoir   Implement Scenari...
466

59125398   Antoine Goutenoir   Improve resilience.
467
        if 0 == len(origins):
3d8865da   Antoine Goutenoir   Improve warnings ...
468
            response += u"Failed to geocode ALL the origin(s).\n"
59125398   Antoine Goutenoir   Improve resilience.
469
470
471
            _handle_failure(estimation, response)
            return _respond(response)
        if 0 == len(destinations):
3d8865da   Antoine Goutenoir   Improve warnings ...
472
            response += u"Failed to geocode ALL the destination(s).\n"
59125398   Antoine Goutenoir   Improve resilience.
473
474
            _handle_failure(estimation, response)
            return _respond(response)
24f55cde   Antoine Goutenoir   Geocode destinati...
475

e2637443   Antoine Goutenoir   Send emails to ad...
476
        # GRAB AND CONFIGURE THE EMISSION MODELS ##############################
24f55cde   Antoine Goutenoir   Geocode destinati...
477

59125398   Antoine Goutenoir   Improve resilience.
478
479
        emission_models = estimation.get_models()
        # print(emission_models)
51f564d3   Antoine Goutenoir   Add a big chunk o...
480

59125398   Antoine Goutenoir   Improve resilience.
481
482
483
484
        extra_config = {
            'use_train_below_distance': estimation.use_train_below_km,
            # 'use_train_below_distance': 300,
        }
70aa301f   Antoine Goutenoir   Implement another...
485

e2637443   Antoine Goutenoir   Send emails to ad...
486
        # PREPARE RESULT DICTIONARY THAT WILL BE STORED #######################
59125398   Antoine Goutenoir   Improve resilience.
487
488
489

        results = {}

e2637443   Antoine Goutenoir   Send emails to ad...
490
        # UTILITY PRIVATE FUNCTION(S) #########################################
59125398   Antoine Goutenoir   Improve resilience.
491

e2e42156   Antoine Goutenoir   Add the country t...
492
        def _get_city_key(_location):
59125398   Antoine Goutenoir   Improve resilience.
493
494
495
496
497
498
499
500
501
502
503
            return _location.address.split(',')[0]

            # _city_key = _location.address
            # # if 'address100' in _location.raw['address']:
            # #     _city_key = _location.raw['address']['address100']
            # if 'city' in _location.raw['address']:
            #     _city_key = _location.raw['address']['city']
            # elif 'state' in _location.raw['address']:
            #     _city_key = _location.raw['address']['state']
            # return _city_key

e2e42156   Antoine Goutenoir   Add the country t...
504
505
506
        def _get_country_key(_location):
            return _location.address.split(',')[-1]

59125398   Antoine Goutenoir   Improve resilience.
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
        def compute_one_to_many(
                _origin,
                _destinations,
                _extra_config=None
        ):
            _results = {}
            footprints = {}

            destinations_by_city_key = {}

            cities_sum_foot = {}
            cities_sum_dist = {}
            cities_dict_first_model = None
            for model in emission_models:
                cities_dict = {}
                for _destination in _destinations:
                    footprint = model.compute_travel_footprint(
                        origin_latitude=_origin.latitude,
                        origin_longitude=_origin.longitude,
                        destination_latitude=_destination.latitude,
                        destination_longitude=_destination.longitude,
                        extra_config=_extra_config,
                    )
51f564d3   Antoine Goutenoir   Add a big chunk o...
530

e2e42156   Antoine Goutenoir   Add the country t...
531
                    _key = _get_city_key(_destination)
59125398   Antoine Goutenoir   Improve resilience.
532
533
534
535
536
537

                    destinations_by_city_key[_key] = _destination

                    if _key not in cities_dict:
                        cities_dict[_key] = {
                            'city': _key,
e2e42156   Antoine Goutenoir   Add the country t...
538
                            'country': _get_country_key(_destination),
59125398   Antoine Goutenoir   Improve resilience.
539
                            'address': _destination.address,
82cd86ae   Antoine Goutenoir   feat: add the lat...
540
541
                            'latitude': _destination.latitude,
                            'longitude': _destination.longitude,
59125398   Antoine Goutenoir   Improve resilience.
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
                            'footprint': 0.0,
                            'distance': 0.0,
                            'train_trips': 0,
                            'plane_trips': 0,
                        }
                    cities_dict[_key]['footprint'] += footprint['co2eq_kg']
                    cities_dict[_key]['distance'] += footprint['distance_km']
                    cities_dict[_key]['train_trips'] += footprint['train_trips']
                    cities_dict[_key]['plane_trips'] += footprint['plane_trips']
                    if _key not in cities_sum_foot:
                        cities_sum_foot[_key] = 0.0
                    cities_sum_foot[_key] += footprint['co2eq_kg']
                    if _key not in cities_sum_dist:
                        cities_sum_dist[_key] = 0.0
                    cities_sum_dist[_key] += footprint['distance_km']

                cities = sorted(cities_dict.values(), key=lambda c: c['footprint'])

                footprints[model.slug] = {
                    'cities': cities,
                }

                if cities_dict_first_model is None:
                    cities_dict_first_model = deepcopy(cities_dict)

            _results['footprints'] = footprints

            total_foot = 0.0
            total_dist = 0.0
            total_train_trips = 0
            total_plane_trips = 0

            cities_mean_dict = {}
            for city in cities_sum_foot.keys():
                city_mean_foot = 1.0 * cities_sum_foot[city] / len(emission_models)
                city_mean_dist = 1.0 * cities_sum_dist[city] / len(emission_models)
                city_train_trips = cities_dict_first_model[city]['train_trips']
                city_plane_trips = cities_dict_first_model[city]['plane_trips']
                cities_mean_dict[city] = {
59125398   Antoine Goutenoir   Improve resilience.
581
                    'city': city,
e2e42156   Antoine Goutenoir   Add the country t...
582
                    'country': _get_country_key(destinations_by_city_key[city]),
82cd86ae   Antoine Goutenoir   feat: add the lat...
583
584
585
                    'address': destinations_by_city_key[city].address,
                    'latitude': destinations_by_city_key[city].latitude,
                    'longitude': destinations_by_city_key[city].longitude,
59125398   Antoine Goutenoir   Improve resilience.
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
                    'footprint': city_mean_foot,
                    'distance': city_mean_dist,
                    'train_trips': city_train_trips,
                    'plane_trips': city_plane_trips,
                }
                total_foot += city_mean_foot
                total_dist += city_mean_dist
                total_train_trips += city_train_trips
                total_plane_trips += city_plane_trips

            cities_mean = [cities_mean_dict[k] for k in cities_mean_dict.keys()]
            cities_mean = sorted(cities_mean, key=lambda c: c['footprint'])

            _results['mean_footprint'] = {  # DEPRECATED?
                'cities': cities_mean
584b13cc   Antoine Goutenoir   Order the results...
601
            }
59125398   Antoine Goutenoir   Improve resilience.
602
            _results['cities'] = cities_mean
1d48272e   Antoine Goutenoir   Compute the mean ...
603

59125398   Antoine Goutenoir   Improve resilience.
604
605
            _results['total'] = total_foot  # DEPRECATED
            _results['footprint'] = total_foot
584b13cc   Antoine Goutenoir   Order the results...
606

59125398   Antoine Goutenoir   Improve resilience.
607
608
609
            _results['distance'] = total_dist
            _results['train_trips'] = total_train_trips
            _results['plane_trips'] = total_plane_trips
70aa301f   Antoine Goutenoir   Implement another...
610

59125398   Antoine Goutenoir   Improve resilience.
611
            return _results
24f55cde   Antoine Goutenoir   Geocode destinati...
612

e2637443   Antoine Goutenoir   Send emails to ad...
613
        # SCENARIO A : One Origin, At Least One Destination ###################
59125398   Antoine Goutenoir   Improve resilience.
614
        #
e2637443   Antoine Goutenoir   Send emails to ad...
615
        # We compute the sum of each of the travels' footprint,
59125398   Antoine Goutenoir   Improve resilience.
616
617
618
619
620
621
622
623
624
        # for each of the Emission Models, and present a mean of all Models.
        #
        if 1 == len(origins):
            estimation.scenario = ScenarioEnum.one_to_many
            results = compute_one_to_many(
                _origin=origins[0],
                _destinations=destinations,
                _extra_config=extra_config,
            )
94ae2730   Antoine Goutenoir   Ignore duplicates...
625

e2637443   Antoine Goutenoir   Send emails to ad...
626
        # SCENARIO B : At Least One Origin, One Destination ###################
59125398   Antoine Goutenoir   Improve resilience.
627
628
629
630
631
632
633
        #
        # Same as A for now.
        #
        elif 1 == len(destinations):
            estimation.scenario = ScenarioEnum.many_to_one
            results = compute_one_to_many(
                _origin=destinations[0],
314c65e2   Antoine Goutenoir   Implement Scenari...
634
                _destinations=origins,
8a693e06   Antoine Goutenoir   Glue the extra co...
635
                _extra_config=extra_config,
314c65e2   Antoine Goutenoir   Implement Scenari...
636
            )
314c65e2   Antoine Goutenoir   Implement Scenari...
637

e2637443   Antoine Goutenoir   Send emails to ad...
638
        # SCENARIO C : At Least One Origin, At Least One Destination ##########
59125398   Antoine Goutenoir   Improve resilience.
639
640
641
642
643
644
645
646
        #
        # Run Scenario A for each Destination, and expose optimum Destination.
        #
        else:
            estimation.scenario = ScenarioEnum.many_to_many
            unique_city_keys = []
            result_cities = []
            for destination in destinations:
e2e42156   Antoine Goutenoir   Add the country t...
647
648
                city_key = _get_city_key(destination)
                country_key = _get_country_key(destination)
59125398   Antoine Goutenoir   Improve resilience.
649
650
651
652
653

                if city_key in unique_city_keys:
                    continue
                else:
                    unique_city_keys.append(city_key)
1d48272e   Antoine Goutenoir   Compute the mean ...
654

59125398   Antoine Goutenoir   Improve resilience.
655
656
657
658
659
660
                city_results = compute_one_to_many(
                    _origin=destination,
                    _destinations=origins,
                    _extra_config=extra_config,
                )
                city_results['city'] = city_key
e2e42156   Antoine Goutenoir   Add the country t...
661
                city_results['country'] = country_key
59125398   Antoine Goutenoir   Improve resilience.
662
                city_results['address'] = destination.address
82cd86ae   Antoine Goutenoir   feat: add the lat...
663
664
                city_results['latitude'] = destination.latitude
                city_results['longitude'] = destination.longitude
59125398   Antoine Goutenoir   Improve resilience.
665
666
667
668
669
670
671
                result_cities.append(city_results)

            result_cities = sorted(result_cities, key=lambda c: int(c['footprint']))
            results = {
                'cities': result_cities,
            }

e2637443   Antoine Goutenoir   Send emails to ad...
672
        # WRITE RESULTS INTO THE DATABASE #####################################
a4c03d8e   Antoine Goutenoir   Add the controlle...
673

59125398   Antoine Goutenoir   Improve resilience.
674
        estimation.status = StatusEnum.success
e2637443   Antoine Goutenoir   Send emails to ad...
675
        # Don't use YAML, it is too slow for big data.
f48f4a8f   Antoine Goutenoir   Optimize a bottle...
676
        # estimation.output_yaml = u"%s" % yaml_dump(results)
3d8865da   Antoine Goutenoir   Improve warnings ...
677
        estimation.informations = response
f48f4a8f   Antoine Goutenoir   Optimize a bottle...
678
        estimation.set_output_dict(results)
59125398   Antoine Goutenoir   Improve resilience.
679
680
        db.session.commit()

e2637443   Antoine Goutenoir   Send emails to ad...
681
682
683
684
685
        # SEND AN EMAIL #######################################################

        send_email(
            to_recipient=pi_email,
            subject="[TCFM] Run completed: %s" % estimation.public_id,
3e6505e2   Antoine Goutenoir   Add content to th...
686
687
688
689
690
            message=render_template(
                'email/run_completed.html',
                base_url=base_url,
                estimation=estimation,
            )
e2637443   Antoine Goutenoir   Send emails to ad...
691
692
693
        )

        # FINALLY, RESPOND ####################################################
a4c03d8e   Antoine Goutenoir   Add the controlle...
694

3e6505e2   Antoine Goutenoir   Add content to th...
695
        # YAML is too expensive, let's not
f48f4a8f   Antoine Goutenoir   Optimize a bottle...
696
        # response += yaml_dump(results) + "\n"
a4c03d8e   Antoine Goutenoir   Add the controlle...
697

59125398   Antoine Goutenoir   Improve resilience.
698
        return _respond(response)
4392f295   Goutte   Update the Estima...
699

59125398   Antoine Goutenoir   Improve resilience.
700
    except Exception as e:
e144bb1b   Antoine Goutenoir   Fix encoding.
701
        errmsg = u"Computation failed : %s" % (e,)
ce850e3a   Antoine Goutenoir   Revert traceback.
702
        # errmsg = u"%s\n\n%s" % (errmsg, traceback.format_exc())
59125398   Antoine Goutenoir   Improve resilience.
703
704
705
        if estimation:
            _handle_failure(estimation, errmsg)
        return _respond(errmsg)
a4c03d8e   Antoine Goutenoir   Add the controlle...
706
707


3bb89452   Antoine Goutenoir   feat: add a world...
708
709
710
unavailable_statuses = [StatusEnum.pending, StatusEnum.working]


b9fc86c3   Antoine Goutenoir   Secure the admin ...
711
712
@main.route("/estimation/<public_id>.<extension>")
def consult_estimation(public_id, extension):
a4c03d8e   Antoine Goutenoir   Add the controlle...
713
714
715
716
717
718
719
    try:
        estimation = Estimation.query \
            .filter_by(public_id=public_id) \
            .one()
    except sqlalchemy.orm.exc.NoResultFound:
        return abort(404)
    except Exception as e:
59125398   Antoine Goutenoir   Improve resilience.
720
        # TODO: log?
a4c03d8e   Antoine Goutenoir   Add the controlle...
721
722
723
724
725
726
        return abort(500)

    # allowed_formats = ['html']
    # if format not in allowed_formats:
    #     abort(404)

b9fc86c3   Antoine Goutenoir   Secure the admin ...
727
    if extension in ['xhtml', 'html', 'htm']:
e721cb31   Antoine Goutenoir   Provide a YAML fi...
728
729

        if estimation.status in unavailable_statuses:
a4c03d8e   Antoine Goutenoir   Add the controlle...
730
731
732
733
734
            return render_template(
                "estimation-queue-wait.html",
                estimation=estimation
            )
        else:
40382971   Antoine Goutenoir   Add the sum of es...
735
736
            estimation_output = estimation.get_output_dict()
            estimation_sum = 0
37e28f2c   Antoine Goutenoir   Improve resilience.
737
738
739
            if estimation_output:
                for city in estimation_output['cities']:
                    estimation_sum += city['footprint']
40382971   Antoine Goutenoir   Add the sum of es...
740

a4c03d8e   Antoine Goutenoir   Add the controlle...
741
742
            return render_template(
                "estimation.html",
91751451   Antoine Goutenoir   Shift the API to ...
743
                estimation=estimation,
40382971   Antoine Goutenoir   Add the sum of es...
744
745
                estimation_output=estimation_output,
                estimation_sum=estimation_sum,
a4c03d8e   Antoine Goutenoir   Add the controlle...
746
747
            )

b9fc86c3   Antoine Goutenoir   Secure the admin ...
748
    elif extension in ['yaml', 'yml']:
e721cb31   Antoine Goutenoir   Provide a YAML fi...
749
750
751
752

        if estimation.status in unavailable_statuses:
            abort(404)

f48f4a8f   Antoine Goutenoir   Optimize a bottle...
753
754
        return u"%s" % yaml_dump(estimation.get_output_dict())
        # return estimation.output_yaml
e721cb31   Antoine Goutenoir   Provide a YAML fi...
755

b9fc86c3   Antoine Goutenoir   Secure the admin ...
756
    elif 'csv' == extension:
a4c03d8e   Antoine Goutenoir   Add the controlle...
757

e721cb31   Antoine Goutenoir   Provide a YAML fi...
758
759
760
        if estimation.status in unavailable_statuses:
            abort(404)

a4c03d8e   Antoine Goutenoir   Add the controlle...
761
762
        si = StringIO()
        cw = csv.writer(si, quoting=csv.QUOTE_ALL)
b935618e   Antoine Goutenoir   Count the number ...
763
        cw.writerow([
e2e42156   Antoine Goutenoir   Add the country t...
764
            u"city", u"country", u"address",
82cd86ae   Antoine Goutenoir   feat: add the lat...
765
            u"latitude", u"longitude",
29a1d1c1   Antoine Goutenoir   Rename columns in...
766
767
768
769
            u"co2_kg",
            u"distance_km",
            u"plane trips_amount",
            u'train trips_amount',
b935618e   Antoine Goutenoir   Count the number ...
770
        ])
a4c03d8e   Antoine Goutenoir   Add the controlle...
771
772

        results = estimation.get_output_dict()
5634c975   Antoine Goutenoir   Expose travel dis...
773
774
775
        for city in results['cities']:
            cw.writerow([
                city['city'].encode(OUT_ENCODING),
e2e42156   Antoine Goutenoir   Add the country t...
776
                city['country'].encode(OUT_ENCODING),
5634c975   Antoine Goutenoir   Expose travel dis...
777
                city['address'].encode(OUT_ENCODING),
67db4e6a   Antoine Goutenoir   fix: backward-com...
778
779
                city.get('latitude', 0.0),
                city.get('longitude', 0.0),
5634c975   Antoine Goutenoir   Expose travel dis...
780
781
                round(city['footprint'], 3),
                round(city['distance'], 3),
b935618e   Antoine Goutenoir   Count the number ...
782
783
                city['plane_trips'],
                city['train_trips'],
5634c975   Antoine Goutenoir   Expose travel dis...
784
785
            ])

67f85bce   Antoine Goutenoir   Generate a CSV fi...
786
787
788
789
790
791
792
793
        # return si.getvalue().strip('\r\n')
        return Response(
            response=si.getvalue().strip('\r\n'),
            headers={
                'Content-type': 'text/csv',
                'Content-disposition': "attachment; filename=%s.csv"%public_id,
            },
        )
a4c03d8e   Antoine Goutenoir   Add the controlle...
794
795
796

    else:
        abort(404)
b9fc86c3   Antoine Goutenoir   Secure the admin ...
797
798


3bb89452   Antoine Goutenoir   feat: add a world...
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
def get_locations(addresses):
    geocoder = CachedGeocoder()

    warnings = []
    addresses_count = len(addresses)
    failed_addresses = []
    locations = []

    for i in range(addresses_count):

        address = addresses[i].strip()
        unicode_address = address.encode('utf-8')

        if not address:
            continue

        if address in failed_addresses:
            continue

        try:
            location = geocoder.geocode(unicode_address)
        except geopy.exc.GeopyError as e:
            warning = u"Ignoring address `%s` " \
                      u"since we failed to geocode it.\n%s\n" % (
                          address, e,
                      )
            warnings.append(warning)
            failed_addresses.append(address)
            continue

        if location is None:
            warning = u"Ignoring address `%s` " \
                      u"since we failed to geocode it.\n" % (
                          address,
                      )
            warnings.append(warning)
            failed_addresses.append(address)
            failed_addresses.append(address)
            continue

        print("Geocoded Location:\n", repr(location.raw))
        locations.append(location)

        # response += u"Location `%s` geocoded to `%s` (%f, %f).\n" % (
        #     location_address, location.address,
        #     location.latitude, location.longitude,
        # )

    return locations, warnings


@main.route("/estimation/<public_id>/trips_to_destination_<destination_index>.csv")
def get_trips_csv(public_id, destination_index=0):
    destination_index = int(destination_index)
    try:
        estimation = Estimation.query \
            .filter_by(public_id=public_id) \
            .one()
    except sqlalchemy.orm.exc.NoResultFound:
        return abort(404)
    except Exception as e:
        return abort(500)

    if estimation.status in unavailable_statuses:
        abort(404)

    si = StringIO()
    cw = csv.writer(si, quoting=csv.QUOTE_ALL)
    cw.writerow([
        u"origin_lon",
        u"origin_lat",
        u"destination_lon",
        u"destination_lat",
    ])
    results = estimation.get_output_dict()

    if not 'cities' in results:
        abort(500)

    cities_length = len(results['cities'])

    if 0 == cities_length:
        abort(500, Response("No cities in results."))

    destination_index = min(destination_index, cities_length - 1)
    destination_index = max(destination_index, 0)

    city = results['cities'][destination_index]
    # >>> yaml_dump(city)
    # address: Paris, Ile - de - France, Metropolitan
    # France, France
    # city: Paris
    # country: ' France'
    # distance: 1752.7481921181325
    # footprint: 824.9628320703453
    # plane_trips: 1
    # train_trips: 0

    geocoder = CachedGeocoder()
    try:
        city_location = geocoder.geocode(city['address'].encode('utf-8'))
    except geopy.exc.GeopyError as e:
        return Response(
            response=si.getvalue().strip('\r\n'),
        )

    other_locations, _warnings = get_locations(estimation.origin_addresses.split("\n"))
    # destination_locations = get_locations(estimation.destination_addresses.split("\n"))
    for other_location in other_locations:
        cw.writerow([
            u"%.8f" % city_location.longitude,
            u"%.8f" % city_location.latitude,
            u"%.8f" % other_location.longitude,
            u"%.8f" % other_location.latitude,
        ])

    filename = "trips_to_destination_%d.csv" % destination_index
    return Response(
        response=si.getvalue().strip('\r\n'),
        headers={
            'Content-type': 'text/csv',
            'Content-disposition': 'attachment; filename=%s' % filename,
        },
    )


67f85bce   Antoine Goutenoir   Generate a CSV fi...
925
926
@main.route("/scaling_laws.csv")
def get_scaling_laws_csv():
a728e600   Antoine Goutenoir   Allow configurati...
927
    distances = content.laws_plot.distances
67f85bce   Antoine Goutenoir   Generate a CSV fi...
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
    models = get_emission_models()

    si = StringIO()
    cw = csv.writer(si, quoting=csv.QUOTE_ALL)

    header = ['distance'] + [model.slug for model in models]
    cw.writerow(header)

    for distance in distances:
        row = [distance]
        for model in models:
            row.append(model.compute_airplane_distance_footprint(distance))
        cw.writerow(row)

    return Response(
        response=si.getvalue().strip('\r\n'),
        headers={
            'Content-type': 'text/csv',
            'Content-disposition': 'attachment; filename=scaling_laws.csv',
        },
    )


b9fc86c3   Antoine Goutenoir   Secure the admin ...
951
@main.route("/test")
c2a01bd2   Antoine Goutenoir   Prepare mail flas...
952
# @basic_auth.required
b9fc86c3   Antoine Goutenoir   Secure the admin ...
953
def dev_test():
e2637443   Antoine Goutenoir   Send emails to ad...
954
    # email_content = render_template(
3e6505e2   Antoine Goutenoir   Add content to th...
955
    #     'email/run_completed.html',
e2637443   Antoine Goutenoir   Send emails to ad...
956
957
958
959
960
961
962
963
964
    #     # run=run,
    # )
    # send_email(
    #     'goutte@protonmail.com',
    #     subject=u"[TCFC] New run request",
    #     message=email_content
    # )

    return "ok"