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