eskp.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Thu, 04 Dec 2014 13:46:17 +0100
changeset 306 cbb1d9eb9c0d
parent 304 f39aa19dbc39
child 309 b744a1156425
permissions -rwxr-xr-x
menue topics improved
     1 # -*- coding: utf-8 -*-
     2 import logging
     3 
     4 import os
     5 import codecs
     6 import vobject
     7 import StringIO
     8 
     9 import qrcode
    10 
    11 from docutils.core import publish_parts
    12 from flask import Flask
    13 from flask import render_template
    14 from flask import request
    15 from flask.ext.babel import gettext as _
    16 from flask.ext.babel import Babel
    17 from config import LANGUAGES
    18 
    19 import base64
    20 
    21 LANGUAGE_SELECTED = "de"
    22 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    23 
    24 # We need the path of this file to find templates to translate
    25 ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
    26 logging.basicConfig(filename=os.path.join(ESKP_PATH, 'eskp-app.log'),level=logging.DEBUG)
    27 
    28 app = Flask(__name__)
    29 babel = Babel(app)
    30 
    31 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    32 
    33 
    34 
    35 def get_vcard(filename):
    36     filename = os.path.join(ESKP_PATH, filename)
    37     with codecs.open(filename, 'r', 'utf-8') as f:
    38             vcard = f.read()
    39             f.close()
    40     return vobject.readOne(vcard)
    41 
    42 
    43 def get_content(filename, overrides=None):
    44     content = u""
    45     filename = os.path.join(ESKP_PATH, filename)
    46     if os.path.isfile(filename):
    47         with codecs.open(filename, 'r', 'utf-8') as f:
    48             rst_data = f.read()
    49         f.close()
    50         content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
    51     return content
    52 
    53 def get_topmenue():
    54     menue = [
    55              ('/ozoneloss', _(u'Ozoneloss'),(
    56              ('/ozoneloss', _(u'quantification')),
    57              ('/ozoneloss/clams/2015', _(u'calculations')),
    58              ('/ozoneloss/vpsc/2015', _(u'estimations')))),
    59 
    60              ('/eskp', _(u'ESKP'),(None, None)),
    61              ('/iek-7', _(u'IEK-7'),(None, None))
    62             ]
    63     return menue
    64 
    65 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    66 
    67 def get_o3lossclams_dates():
    68     menue = [
    69              ('/ozoneloss/clams/2015', _(u'2015')),
    70              ('/ozoneloss/clams/2012', _(u'2012')),
    71              ('/ozoneloss/clams/2011', _(u'2011')),
    72              ('/ozoneloss/clams/2010', _(u'2010')),
    73              ]
    74     return menue
    75 
    76 def get_vpsc_dates():
    77     menue = [
    78              ('/ozoneloss/vpsc/2015', _(u'2015')),
    79              ('/ozoneloss/vpsc/2014', _(u'2014')),
    80              ('/ozoneloss/vpsc/2013', _(u'2013')),
    81              ('/ozoneloss/vpsc/2012', _(u'2012')),
    82              ('/ozoneloss/vpsc/2011', _(u'2011')),
    83              ('/ozoneloss/vpsc/2010', _(u'2010')),
    84              ]
    85     return menue
    86 
    87 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
    88 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
    89 
    90 
    91 def modal_info(template, act, title, filename):
    92     content = get_content(filename)
    93     html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
    94     return html
    95 
    96 
    97 @babel.localeselector
    98 def get_locale():
    99     """ToDo: if translation is completed, switch to en """
   100     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
   101 
   102 
   103 @app.route("/")
   104 @app.route("/index")
   105 def index():
   106     return render_template("/index.html",
   107                            eskp_info=_(u'About ESKP'),
   108                            )
   109 
   110 
   111 @app.route('/ozoneloss/clams/<year>')
   112 def ozoneloss_clams_year(year):
   113     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
   114     content = get_content(filename)
   115     return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
   116 
   117 
   118 @app.route('/ozoneloss/vpsc/<year>')
   119 def ozoneloss_vspc_year(year):
   120     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
   121     content = get_content(filename)
   122     filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
   123     explanation = get_content(filename)
   124 
   125     return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
   126                            content_explanation=explanation, year=year)
   127 
   128 @app.route('/de')
   129 def de():
   130     global LANGUAGE_SELECTED
   131     LANGUAGE_SELECTED = "de"
   132     return render_template("/index.html",
   133                            eskp_info=_(u'About ESKP'),
   134                            )
   135 
   136 @app.route('/en')
   137 def en():
   138     global LANGUAGE_SELECTED
   139     LANGUAGE_SELECTED = "en"
   140     return render_template("/index.html",
   141                            eskp_info=_(u'About ESKP'),
   142                            )
   143 
   144 @app.route("/eskp")
   145 def eskp():
   146     filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
   147     content = get_content(filename)
   148     filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
   149     headline = get_content(filename)
   150     return render_template("/eskp.html", act="eskp", content=content, headline=headline)
   151 
   152 
   153 def qr_image_data(card):
   154     buf= StringIO.StringIO()
   155     qr = qrcode.QRCode(
   156         version=1,
   157         error_correction=qrcode.constants.ERROR_CORRECT_L,
   158         box_size=2,
   159         border=2,
   160         )
   161     qr.add_data(card.serialize())
   162     qr.make(fit=True)
   163     img = qr.make_image()
   164     img.save(buf)
   165     image = buf.getvalue()
   166     return base64.b64encode(image)
   167 
   168 
   169 @app.route("/ozoneloss")
   170 def ozoneloss():
   171 
   172     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
   173     content = get_content(filename)
   174 
   175     vcard_file = os.path.join("vcards", "jug.vcf")
   176     author = u""
   177     try:
   178         card = get_vcard(vcard_file)
   179     except IOError:
   180         card = None
   181     if card is not None:
   182         qr_image = qr_image_data(card)
   183         author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
   184                                   card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
   185 
   186     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
   187     publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
   188     return render_template("/ozoneloss.html", act="ozoneloss", content=content,
   189                            author=author,card=card, publications=publications )
   190 
   191 @app.route("/ozoneloss/clams")
   192 def ozoneloss_clams():
   193     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
   194     content = get_content(filename)
   195     return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
   196 
   197 @app.route("/ozoneloss/vpsc")
   198 def ozoneloss_vspc():
   199     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
   200     content = get_content(filename)
   201     return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
   202 
   203 @app.route("/iek-7")
   204 def institute():
   205     filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
   206     content = get_content(filename)
   207     vcard_file = os.path.join("vcards", "sas.vcf")
   208     author = u""
   209     try:
   210         card = get_vcard(vcard_file)
   211     except IOError:
   212         card = None
   213     if card is not None:
   214         qr_image = qr_image_data(card)
   215         author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
   216                                   card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
   217 
   218     return render_template("/iek-7.html", act="iek-7", content=content,
   219                            author=author, card=card, contact = u"IEK-7")
   220 
   221 
   222 @app.route("/imprint")
   223 def imprint():
   224     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   225     content = get_content(filename)
   226     return render_template("/content.html", act="imprint", content=content)
   227 
   228 
   229 
   230 
   231 
   232 @app.errorhandler(404)
   233 def page_not_found(e):
   234     msg = _(u"Url: %(url)s not found", url=request.url)
   235     info = _(u"This information is not available!")
   236     return render_template("404.html", msg=msg, info=info)
   237 
   238 if __name__ == "__main__":
   239     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung