eskp.py
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Fri, 29 Jan 2016 13:45:53 +0100
changeset 441 c258f9b3f831
parent 380 1c6c49675d42
child 496 0641866df1b0
permissions -rwxr-xr-x
Update of eskp script and text to the year 2016
rb@217
     1
# -*- coding: utf-8 -*-
rb@280
     2
import logging
rb@217
     3
rb@186
     4
import os
rb@186
     5
import codecs
rb@275
     6
import vobject
rb@275
     7
import StringIO
rb@275
     8
rb@275
     9
import qrcode
rb@186
    10
rb@186
    11
from docutils.core import publish_parts
rb@275
    12
from flask import Flask
peter@1
    13
from flask import render_template
peter@1
    14
from flask import request
rb@95
    15
from flask.ext.babel import gettext as _
peter@1
    16
from flask.ext.babel import Babel
rb@95
    17
from config import LANGUAGES
rb@161
    18
rb@275
    19
import base64
rb@275
    20
rb@122
    21
LANGUAGE_SELECTED = "de"
rb@122
    22
#ToDo after engelish is implemented set LANGUAGE_SELECTED = None
rb@95
    23
rb@246
    24
# We need the path of this file to find templates to translate
rb@246
    25
ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
rb@280
    26
logging.basicConfig(filename=os.path.join(ESKP_PATH, 'eskp-app.log'),level=logging.DEBUG)
rb@246
    27
peter@1
    28
app = Flask(__name__)
peter@1
    29
babel = Babel(app)
peter@1
    30
peter@145
    31
app.config['BABEL_DEFAULT_LOCALE'] = 'de'
peter@145
    32
rb@275
    33
rb@275
    34
rb@275
    35
def get_vcard(filename):
rb@281
    36
    filename = os.path.join(ESKP_PATH, filename)
rb@275
    37
    with codecs.open(filename, 'r', 'utf-8') as f:
rb@275
    38
            vcard = f.read()
rb@275
    39
            f.close()
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@162
    49
        f.close()
rb@214
    50
        content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
rb@162
    51
    return content
rb@162
    52
peter@142
    53
def get_topmenue():
rb@238
    54
    menue = [
j@380
    55
             ('/ozoneloss', _(u'Ozoneloss'),
j@380
    56
             (('/ozoneloss', _(u'overview')),
j@441
    57
             ('/ozoneloss/clams/2016', _(u'calculations')),
j@441
    58
             ('/ozoneloss/vpsc/2016', _(u'estimations')),
j@317
    59
             ('/ozoneloss/uvi', _(u'uv increase')))),
rb@304
    60
rb@304
    61
             ('/eskp', _(u'ESKP'),(None, None)),
rb@304
    62
             ('/iek-7', _(u'IEK-7'),(None, None))
rb@186
    63
            ]
peter@145
    64
    return menue
peter@142
    65
peter@142
    66
app.jinja_env.globals.update(get_topmenue=get_topmenue)
peter@142
    67
j@250
    68
def get_o3lossclams_dates():
rb@302
    69
    menue = [
j@441
    70
        ('/ozoneloss/clams/2016', _(u'2016')),
j@380
    71
        ('/ozoneloss/clams/2015', _(u'2015')),
j@380
    72
        ('/ozoneloss/clams/2012', _(u'2012')),
j@380
    73
        ('/ozoneloss/clams/2011', _(u'2011')),
j@380
    74
        ('/ozoneloss/clams/2010', _(u'2010')),
j@380
    75
        ]
j@249
    76
    return menue
j@249
    77
j@249
    78
def get_vpsc_dates():
rb@302
    79
    menue = [
j@441
    80
        ('/ozoneloss/vpsc/2016', _(u'2016')),
j@380
    81
        ('/ozoneloss/vpsc/2015', _(u'2015')),
j@380
    82
        ('/ozoneloss/vpsc/2014', _(u'2014')),
j@380
    83
        ('/ozoneloss/vpsc/2013', _(u'2013')),
j@380
    84
        ('/ozoneloss/vpsc/2012', _(u'2012')),
j@380
    85
        ('/ozoneloss/vpsc/2011', _(u'2011')),
j@380
    86
        ('/ozoneloss/vpsc/2010', _(u'2010')),
j@380
    87
        ]
rb@241
    88
    return menue
rb@241
    89
j@250
    90
app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
j@249
    91
app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
peter@142
    92
rb@267
    93
rb@267
    94
def modal_info(template, act, title, filename):
rb@264
    95
    content = get_content(filename)
rb@267
    96
    html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
rb@264
    97
    return html
rb@264
    98
rb@264
    99
peter@1
   100
@babel.localeselector
peter@1
   101
def get_locale():
peter@109
   102
    """ToDo: if translation is completed, switch to en """
rb@118
   103
    return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
peter@1
   104
rb@100
   105
peter@1
   106
@app.route("/")
rb@100
   107
@app.route("/index")
peter@1
   108
def index():
rb@213
   109
    return render_template("/index.html",
rb@233
   110
                           eskp_info=_(u'About ESKP'),
rb@233
   111
                           )
peter@1
   112
rb@241
   113
rb@257
   114
@app.route('/ozoneloss/clams/<year>')
rb@257
   115
def ozoneloss_clams_year(year):
j@249
   116
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
rb@241
   117
    content = get_content(filename)
rb@257
   118
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
rb@241
   119
rb@241
   120
rb@257
   121
@app.route('/ozoneloss/vpsc/<year>')
rb@257
   122
def ozoneloss_vspc_year(year):
j@249
   123
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   124
    content = get_content(filename)
j@250
   125
    filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
j@250
   126
    explanation = get_content(filename)
j@250
   127
rb@257
   128
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
rb@257
   129
                           content_explanation=explanation, year=year)
rb@241
   130
j@317
   131
rb@118
   132
@app.route('/de')
rb@118
   133
def de():
rb@118
   134
    global LANGUAGE_SELECTED
rb@118
   135
    LANGUAGE_SELECTED = "de"
peter@160
   136
    return render_template("/index.html",
rb@233
   137
                           eskp_info=_(u'About ESKP'),
rb@233
   138
                           )
rb@118
   139
rb@118
   140
@app.route('/en')
rb@118
   141
def en():
rb@118
   142
    global LANGUAGE_SELECTED
rb@118
   143
    LANGUAGE_SELECTED = "en"
peter@160
   144
    return render_template("/index.html",
rb@233
   145
                           eskp_info=_(u'About ESKP'),
rb@233
   146
                           )
rb@118
   147
rb@233
   148
@app.route("/eskp")
rb@233
   149
def eskp():
rb@233
   150
    filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
rb@162
   151
    content = get_content(filename)
j@272
   152
    filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
j@272
   153
    headline = get_content(filename)
j@272
   154
    return render_template("/eskp.html", act="eskp", content=content, headline=headline)
j@252
   155
peter@1
   156
rb@275
   157
def qr_image_data(card):
rb@275
   158
    buf= StringIO.StringIO()
rb@275
   159
    qr = qrcode.QRCode(
rb@275
   160
        version=1,
rb@275
   161
        error_correction=qrcode.constants.ERROR_CORRECT_L,
rb@275
   162
        box_size=2,
rb@275
   163
        border=2,
rb@275
   164
        )
rb@275
   165
    qr.add_data(card.serialize())
rb@275
   166
    qr.make(fit=True)
rb@275
   167
    img = qr.make_image()
rb@275
   168
    img.save(buf)
rb@275
   169
    image = buf.getvalue()
rb@275
   170
    return base64.b64encode(image)
rb@275
   171
rb@275
   172
rb@233
   173
@app.route("/ozoneloss")
rb@257
   174
def ozoneloss():
rb@275
   175
rb@233
   176
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
rb@165
   177
    content = get_content(filename)
rb@275
   178
rb@275
   179
    vcard_file = os.path.join("vcards", "jug.vcf")
rb@275
   180
    author = u""
rb@275
   181
    try:
rb@275
   182
        card = get_vcard(vcard_file)
rb@275
   183
    except IOError:
rb@275
   184
        card = None
rb@275
   185
    if card is not None:
rb@275
   186
        qr_image = qr_image_data(card)
rb@275
   187
        author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
rb@275
   188
                                  card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@275
   189
rb@267
   190
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
rb@267
   191
    publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
rb@264
   192
    return render_template("/ozoneloss.html", act="ozoneloss", content=content,
rb@275
   193
                           author=author,card=card, publications=publications )
j@247
   194
j@249
   195
@app.route("/ozoneloss/clams")
rb@257
   196
def ozoneloss_clams():
j@249
   197
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
j@247
   198
    content = get_content(filename)
j@249
   199
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
j@249
   200
j@249
   201
@app.route("/ozoneloss/vpsc")
rb@257
   202
def ozoneloss_vspc():
j@249
   203
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   204
    content = get_content(filename)
j@249
   205
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
peter@1
   206
j@380
   207
j@380
   208
@app.route("/ozoneloss/uvi", methods=['GET'])
j@317
   209
def ozoneloss_uvi():
j@380
   210
    # XXX check 'POST' does not work
j@317
   211
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@317
   212
    content = get_content(filename)
j@380
   213
j@380
   214
    lat = 50.
j@380
   215
    o3offset = 50.
j@380
   216
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset)
j@380
   217
j@380
   218
j@380
   219
    return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname,
j@380
   220
                           alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"))
j@380
   221
j@380
   222
@app.route("/ozoneloss/uvi_graph", methods=['POST'])
j@380
   223
def ozoneloss_uvi_graph():
j@380
   224
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@380
   225
    content = get_content(filename)
j@380
   226
j@380
   227
    latstr = request.form['Gradzahl']
j@380
   228
    o3offsetstr = request.form['Dobson-Unit']
j@380
   229
j@380
   230
    latstr2 = latstr.replace(u'\xb0', '')
j@380
   231
j@380
   232
    if latstr2.endswith(u'N'):
j@380
   233
        latstr2 = latstr2.replace(u'N', '')
j@380
   234
        lat = float(latstr2)
j@380
   235
    if latstr2.endswith(u'S'):
j@380
   236
        latstr2 = latstr2.replace(u'S', '')
j@380
   237
        lat = -float(latstr2)
j@380
   238
j@380
   239
j@380
   240
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr))
j@380
   241
j@380
   242
    return render_template('graph.html', act="ozoneloss_uvi_graph", content=content, figname=figname,
j@380
   243
                           o3offsetstr=o3offsetstr, latstr=latstr)
j@380
   244
j@380
   245
j@380
   246
j@380
   247
j@380
   248
j@317
   249
rb@233
   250
@app.route("/iek-7")
rb@257
   251
def institute():
rb@233
   252
    filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
rb@167
   253
    content = get_content(filename)
rb@277
   254
    vcard_file = os.path.join("vcards", "sas.vcf")
rb@277
   255
    author = u""
rb@277
   256
    try:
rb@277
   257
        card = get_vcard(vcard_file)
rb@277
   258
    except IOError:
rb@277
   259
        card = None
rb@277
   260
    if card is not None:
rb@277
   261
        qr_image = qr_image_data(card)
rb@277
   262
        author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
rb@277
   263
                                  card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@277
   264
rb@264
   265
    return render_template("/iek-7.html", act="iek-7", content=content,
j@380
   266
                           author=author, card=card, contact=u"IEK-7")
peter@1
   267
peter@1
   268
rb@100
   269
@app.route("/imprint")
peter@88
   270
def imprint():
rb@163
   271
    filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
rb@163
   272
    content = get_content(filename)
rb@170
   273
    return render_template("/content.html", act="imprint", content=content)
peter@88
   274
peter@109
   275
peter@88
   276
rb@264
   277
rb@264
   278
peter@1
   279
@app.errorhandler(404)
peter@1
   280
def page_not_found(e):
rb@213
   281
    msg = _(u"Url: %(url)s not found", url=request.url)
rb@157
   282
    info = _(u"This information is not available!")
rb@157
   283
    return render_template("404.html", msg=msg, info=info)
peter@1
   284
peter@1
   285
if __name__ == "__main__":
j@380
   286
    app.run(host='localhost', port=5014)
Impressum Datenschutzerklärung