eskp.py
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Tue, 22 Jan 2019 08:45:26 +0100
changeset 851 c4fb6f886926
parent 848 bf84b8bf06da
child 989 633640a6b89a
permissions -rwxr-xr-x
initial eskp page version for 2019
rb@217
     1
# -*- coding: utf-8 -*-
rb@846
     2
#!/usr/bin/env python
rb@280
     3
import logging
rb@217
     4
rb@186
     5
import os
rb@186
     6
import codecs
rb@275
     7
import vobject
rb@275
     8
import StringIO
rb@275
     9
rb@275
    10
import qrcode
rb@186
    11
rb@186
    12
from docutils.core import publish_parts
rb@275
    13
from flask import Flask
peter@1
    14
from flask import render_template
peter@1
    15
from flask import request
rb@848
    16
from flask_babel import gettext as _
rb@848
    17
from flask_babel import Babel
rb@95
    18
from config import LANGUAGES
rb@161
    19
rb@275
    20
import base64
rb@275
    21
rb@122
    22
LANGUAGE_SELECTED = "de"
icg179@496
    23
# ToDo after engelish is implemented set LANGUAGE_SELECTED = None
rb@95
    24
rb@246
    25
# We need the path of this file to find templates to translate
rb@246
    26
ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
icg179@496
    27
logging.basicConfig(filename=os.path.join(ESKP_PATH, 'eskp-app.log'), level=logging.DEBUG)
Tim@498
    28
FILES= os.listdir(os.path.join(ESKP_PATH, 'static/images/uvmap'))
rb@246
    29
peter@1
    30
app = Flask(__name__)
peter@1
    31
babel = Babel(app)
peter@1
    32
peter@145
    33
app.config['BABEL_DEFAULT_LOCALE'] = 'de'
peter@145
    34
rb@275
    35
rb@275
    36
def get_vcard(filename):
rb@281
    37
    filename = os.path.join(ESKP_PATH, filename)
rb@275
    38
    with codecs.open(filename, 'r', 'utf-8') as f:
icg179@496
    39
        vcard = f.read()
rb@275
    40
    return vobject.readOne(vcard)
rb@275
    41
rb@275
    42
rb@214
    43
def get_content(filename, overrides=None):
rb@162
    44
    content = u""
rb@246
    45
    filename = os.path.join(ESKP_PATH, filename)
rb@162
    46
    if os.path.isfile(filename):
rb@162
    47
        with codecs.open(filename, 'r', 'utf-8') as f:
rb@162
    48
            rst_data = f.read()
rb@214
    49
        content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
rb@162
    50
    return content
rb@162
    51
icg179@496
    52
icg179@496
    53
def get_newest_date():
Tim@498
    54
    getdates = get_valid_dates(FILES)
icg179@496
    55
    newest_date = getdates[-1]
icg179@496
    56
icg179@496
    57
    return newest_date
icg179@496
    58
icg179@496
    59
peter@142
    60
def get_topmenue():
icg179@496
    61
    newest_date = get_newest_date()
rb@238
    62
    menue = [
icg179@496
    63
        ('/ozoneloss', _(u'Ozoneloss'),
icg179@496
    64
         (('/ozoneloss', _(u'overview')),
j@851
    65
          ('/ozoneloss/clams/2019', _(u'calculations')),
j@851
    66
          ('/ozoneloss/vpsc/2019', _(u'estimations')),
icg179@496
    67
          ('/ozoneloss/uvi', _(u'uv increase')),
icg179@496
    68
          ('/ozoneloss/uvmap/' + newest_date, _(u'uv index map')))),
icg179@496
    69
        ('/eskp', _(u'ESKP'), (None, None)),
icg179@496
    70
        ('/iek-7', _(u'IEK-7'), (None, None))
icg179@496
    71
    ]
peter@145
    72
    return menue
peter@142
    73
icg179@496
    74
peter@142
    75
app.jinja_env.globals.update(get_topmenue=get_topmenue)
peter@142
    76
icg179@496
    77
j@250
    78
def get_o3lossclams_dates():
rb@302
    79
    menue = [
j@851
    80
        ('/ozoneloss/clams/2019', _(u'2019')),
j@733
    81
        ('/ozoneloss/clams/2018', _(u'2018')),
j@584
    82
        ('/ozoneloss/clams/2017', _(u'2017')),
j@441
    83
        ('/ozoneloss/clams/2016', _(u'2016')),
j@380
    84
        ('/ozoneloss/clams/2015', _(u'2015')),
j@380
    85
        ('/ozoneloss/clams/2012', _(u'2012')),
j@380
    86
        ('/ozoneloss/clams/2011', _(u'2011')),
j@380
    87
        ('/ozoneloss/clams/2010', _(u'2010')),
icg179@496
    88
    ]
j@249
    89
    return menue
j@249
    90
icg179@496
    91
icg179@496
    92
def get_valid_dates(files):
icg179@496
    93
    dates = []
icg179@496
    94
icg179@496
    95
    for file in files:
icg179@496
    96
        if file.endswith('.png') and file.find('uvi') >= 0:
icg179@496
    97
            date = file[-12:-6]
icg179@496
    98
            dates.append(date)
icg179@496
    99
    dates.sort()
icg179@496
   100
    for date in dates:
icg179@496
   101
        i = 0
icg179@496
   102
        for param in ['uvi', 'o3col', 'do3col']:
icg179@496
   103
            testfile = 'clams_' + param + '_' + date + '12.png'
icg179@496
   104
            if files.count(testfile) > 0:
icg179@496
   105
                i = i + 1
icg179@496
   106
        if i <> 3:
icg179@496
   107
            dates.remove(date)
icg179@496
   108
    return dates
icg179@496
   109
icg179@496
   110
icg179@496
   111
def get_o3lossuvmap_dates(date_show):
Tim@498
   112
    dates = get_valid_dates(FILES)
icg179@496
   113
    ndates = len(dates)
icg179@496
   114
    ind = dates.index(date_show)
j@503
   115
    navitexts = []
icg179@496
   116
    if ind ==0 :
icg179@496
   117
        chosendates = [dates[ind+1]]
j@503
   118
        navitexts.append('next ->')
Tim@501
   119
icg179@496
   120
    elif ind >= ndates - 1:
icg179@496
   121
        chosendates= [dates[ind-1]]
j@503
   122
        navitexts.append('<- prev')
icg179@496
   123
    else:
icg179@496
   124
        chosendates = [dates[ind-1], dates[ind+1]]
j@503
   125
        navitexts.append('<- prev')
j@503
   126
        navitexts.append('next ->')
icg179@496
   127
    menue = []
Tim@501
   128
Tim@501
   129
    for i in range(len(chosendates)):
Tim@501
   130
        date = chosendates[i]
j@503
   131
        navitext = navitexts[i]
j@503
   132
        menue.append(('/ozoneloss/uvmap/' + date, _(navitext)))
icg179@496
   133
    return menue
icg179@496
   134
icg179@496
   135
j@249
   136
def get_vpsc_dates():
rb@302
   137
    menue = [
j@851
   138
        ('/ozoneloss/vpsc/2019', _(u'2019')),
j@733
   139
        ('/ozoneloss/vpsc/2018', _(u'2018')),
j@584
   140
        ('/ozoneloss/vpsc/2017', _(u'2017')),
j@441
   141
        ('/ozoneloss/vpsc/2016', _(u'2016')),
j@380
   142
        ('/ozoneloss/vpsc/2015', _(u'2015')),
j@380
   143
        ('/ozoneloss/vpsc/2014', _(u'2014')),
j@380
   144
        ('/ozoneloss/vpsc/2013', _(u'2013')),
j@380
   145
        ('/ozoneloss/vpsc/2012', _(u'2012')),
j@380
   146
        ('/ozoneloss/vpsc/2011', _(u'2011')),
j@380
   147
        ('/ozoneloss/vpsc/2010', _(u'2010')),
icg179@496
   148
    ]
rb@241
   149
    return menue
rb@241
   150
icg179@496
   151
j@250
   152
app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
j@249
   153
app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
icg179@496
   154
app.jinja_env.globals.update(get_o3lossuvmap_dates=get_o3lossuvmap_dates)
peter@142
   155
rb@267
   156
rb@267
   157
def modal_info(template, act, title, filename):
rb@264
   158
    content = get_content(filename)
rb@267
   159
    html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
rb@264
   160
    return html
rb@264
   161
rb@264
   162
peter@1
   163
@babel.localeselector
peter@1
   164
def get_locale():
peter@109
   165
    """ToDo: if translation is completed, switch to en """
rb@118
   166
    return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
peter@1
   167
rb@100
   168
peter@1
   169
@app.route("/")
rb@100
   170
@app.route("/index")
peter@1
   171
def index():
rb@213
   172
    return render_template("/index.html",
rb@233
   173
                           eskp_info=_(u'About ESKP'),
rb@233
   174
                           )
peter@1
   175
rb@241
   176
rb@257
   177
@app.route('/ozoneloss/clams/<year>')
rb@257
   178
def ozoneloss_clams_year(year):
j@249
   179
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
rb@241
   180
    content = get_content(filename)
rb@257
   181
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
rb@241
   182
rb@241
   183
icg179@496
   184
@app.route('/ozoneloss/uvmap/<date>')
icg179@496
   185
def ozoneloss_uvmap_date(date):
icg179@496
   186
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
icg179@496
   187
    content = get_content(filename)
icg179@496
   188
    return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap/%s" % date, content=content, date=date)
icg179@496
   189
icg179@496
   190
rb@257
   191
@app.route('/ozoneloss/vpsc/<year>')
rb@257
   192
def ozoneloss_vspc_year(year):
j@249
   193
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   194
    content = get_content(filename)
j@250
   195
    filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
j@250
   196
    explanation = get_content(filename)
j@250
   197
rb@257
   198
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
rb@257
   199
                           content_explanation=explanation, year=year)
rb@241
   200
j@317
   201
rb@118
   202
@app.route('/de')
rb@118
   203
def de():
rb@118
   204
    global LANGUAGE_SELECTED
rb@118
   205
    LANGUAGE_SELECTED = "de"
peter@160
   206
    return render_template("/index.html",
rb@233
   207
                           eskp_info=_(u'About ESKP'),
rb@233
   208
                           )
rb@118
   209
icg179@496
   210
rb@118
   211
@app.route('/en')
rb@118
   212
def en():
rb@118
   213
    global LANGUAGE_SELECTED
rb@118
   214
    LANGUAGE_SELECTED = "en"
peter@160
   215
    return render_template("/index.html",
rb@233
   216
                           eskp_info=_(u'About ESKP'),
rb@233
   217
                           )
rb@118
   218
icg179@496
   219
rb@233
   220
@app.route("/eskp")
rb@233
   221
def eskp():
rb@233
   222
    filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
rb@162
   223
    content = get_content(filename)
j@272
   224
    filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
j@272
   225
    headline = get_content(filename)
j@272
   226
    return render_template("/eskp.html", act="eskp", content=content, headline=headline)
j@252
   227
peter@1
   228
rb@275
   229
def qr_image_data(card):
icg179@496
   230
    buf = StringIO.StringIO()
rb@275
   231
    qr = qrcode.QRCode(
rb@275
   232
        version=1,
rb@275
   233
        error_correction=qrcode.constants.ERROR_CORRECT_L,
rb@275
   234
        box_size=2,
rb@275
   235
        border=2,
icg179@496
   236
    )
rb@275
   237
    qr.add_data(card.serialize())
rb@275
   238
    qr.make(fit=True)
rb@275
   239
    img = qr.make_image()
rb@275
   240
    img.save(buf)
rb@275
   241
    image = buf.getvalue()
rb@275
   242
    return base64.b64encode(image)
rb@275
   243
rb@275
   244
rb@233
   245
@app.route("/ozoneloss")
rb@257
   246
def ozoneloss():
rb@233
   247
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
rb@165
   248
    content = get_content(filename)
rb@275
   249
rb@275
   250
    vcard_file = os.path.join("vcards", "jug.vcf")
rb@275
   251
    author = u""
icg179@496
   252
rb@275
   253
    try:
rb@275
   254
        card = get_vcard(vcard_file)
rb@275
   255
    except IOError:
rb@275
   256
        card = None
rb@275
   257
    if card is not None:
rb@275
   258
        qr_image = qr_image_data(card)
rb@275
   259
        author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
icg179@496
   260
                                 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@275
   261
rb@267
   262
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
rb@267
   263
    publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
rb@264
   264
    return render_template("/ozoneloss.html", act="ozoneloss", content=content,
icg179@496
   265
                           author=author, card=card, publications=publications)
icg179@496
   266
j@247
   267
j@249
   268
@app.route("/ozoneloss/clams")
rb@257
   269
def ozoneloss_clams():
j@249
   270
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
j@247
   271
    content = get_content(filename)
j@249
   272
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
j@249
   273
icg179@496
   274
icg179@496
   275
@app.route("/ozoneloss/uvmap")
icg179@496
   276
def ozoneloss_uvmap():
icg179@496
   277
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
icg179@496
   278
    content = get_content(filename)
icg179@496
   279
    return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap", content=content)
icg179@496
   280
icg179@496
   281
j@249
   282
@app.route("/ozoneloss/vpsc")
rb@257
   283
def ozoneloss_vspc():
j@249
   284
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   285
    content = get_content(filename)
j@249
   286
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
peter@1
   287
j@380
   288
j@380
   289
@app.route("/ozoneloss/uvi", methods=['GET'])
j@317
   290
def ozoneloss_uvi():
j@380
   291
    # XXX check 'POST' does not work
j@317
   292
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@317
   293
    content = get_content(filename)
j@380
   294
j@380
   295
    lat = 50.
j@380
   296
    o3offset = 50.
j@380
   297
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset)
j@380
   298
j@380
   299
    return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname,
j@380
   300
                           alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"))
j@380
   301
icg179@496
   302
j@380
   303
@app.route("/ozoneloss/uvi_graph", methods=['POST'])
j@380
   304
def ozoneloss_uvi_graph():
j@380
   305
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@380
   306
    content = get_content(filename)
j@380
   307
j@380
   308
    latstr = request.form['Gradzahl']
j@380
   309
    o3offsetstr = request.form['Dobson-Unit']
j@380
   310
j@380
   311
    latstr2 = latstr.replace(u'\xb0', '')
j@380
   312
j@380
   313
    if latstr2.endswith(u'N'):
j@380
   314
        latstr2 = latstr2.replace(u'N', '')
j@380
   315
        lat = float(latstr2)
j@380
   316
    if latstr2.endswith(u'S'):
j@380
   317
        latstr2 = latstr2.replace(u'S', '')
j@380
   318
        lat = -float(latstr2)
j@380
   319
j@380
   320
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr))
j@380
   321
j@380
   322
    return render_template('graph.html', act="ozoneloss_uvi_graph", content=content, figname=figname,
j@380
   323
                           o3offsetstr=o3offsetstr, latstr=latstr)
j@380
   324
j@380
   325
rb@233
   326
@app.route("/iek-7")
rb@257
   327
def institute():
rb@233
   328
    filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
rb@167
   329
    content = get_content(filename)
rb@277
   330
    vcard_file = os.path.join("vcards", "sas.vcf")
rb@277
   331
    author = u""
rb@277
   332
    try:
rb@277
   333
        card = get_vcard(vcard_file)
rb@277
   334
    except IOError:
rb@277
   335
        card = None
rb@277
   336
    if card is not None:
rb@277
   337
        qr_image = qr_image_data(card)
rb@277
   338
        author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
icg179@496
   339
                                 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@277
   340
rb@264
   341
    return render_template("/iek-7.html", act="iek-7", content=content,
j@380
   342
                           author=author, card=card, contact=u"IEK-7")
peter@1
   343
peter@1
   344
rb@100
   345
@app.route("/imprint")
peter@88
   346
def imprint():
rb@163
   347
    filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
rb@163
   348
    content = get_content(filename)
rb@170
   349
    return render_template("/content.html", act="imprint", content=content)
peter@88
   350
peter@109
   351
rb@846
   352
@app.route("/dataprotection")
rb@846
   353
def dataprotection():
rb@846
   354
    filename = os.path.join("templates", get_locale(), "rst", "datenschutz.rst")
rb@846
   355
    content = get_content(filename)
rb@846
   356
    return render_template("/content.html", act="datenschutz", content=content)
rb@845
   357
rb@845
   358
peter@1
   359
@app.errorhandler(404)
peter@1
   360
def page_not_found(e):
rb@213
   361
    msg = _(u"Url: %(url)s not found", url=request.url)
rb@157
   362
    info = _(u"This information is not available!")
rb@157
   363
    return render_template("404.html", msg=msg, info=info)
peter@1
   364
icg179@496
   365
peter@1
   366
if __name__ == "__main__":
j@503
   367
    app.run(host='localhost', port=5014)
Impressum Datenschutzerklärung