eskp.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Thu, 04 Dec 2014 10:41:50 +0100
changeset 302 ac09366ab07f
parent 281 99597bb20b0c
child 304 f39aa19dbc39
permissions -rwxr-xr-x
year 2015 and some translations added
     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              ('/eskp', _(u'ESKP')),
    57              ('/iek-7', _(u'IEK-7')),
    58             ]
    59     return menue
    60 
    61 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    62 
    63 def get_o3lossclams_dates():
    64     menue = [
    65              ('/ozoneloss/clams/2015', _(u'2015')),
    66              ('/ozoneloss/clams/2012', _(u'2012')),
    67              ('/ozoneloss/clams/2011', _(u'2011')),
    68              ('/ozoneloss/clams/2010', _(u'2010')),
    69              ]
    70     return menue
    71 
    72 def get_vpsc_dates():
    73     menue = [
    74              ('/ozoneloss/vpsc/2015', _(u'2015')),
    75              ('/ozoneloss/vpsc/2014', _(u'2014')),
    76              ('/ozoneloss/vpsc/2013', _(u'2013')),
    77              ('/ozoneloss/vpsc/2012', _(u'2012')),
    78              ('/ozoneloss/vpsc/2011', _(u'2011')),
    79              ('/ozoneloss/vpsc/2010', _(u'2010')),
    80              ]
    81     return menue
    82 
    83 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
    84 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
    85 
    86 
    87 def modal_info(template, act, title, filename):
    88     content = get_content(filename)
    89     html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
    90     return html
    91 
    92 
    93 @babel.localeselector
    94 def get_locale():
    95     """ToDo: if translation is completed, switch to en """
    96     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    97 
    98 
    99 @app.route("/")
   100 @app.route("/index")
   101 def index():
   102     return render_template("/index.html",
   103                            eskp_info=_(u'About ESKP'),
   104                            )
   105 
   106 
   107 @app.route('/ozoneloss/clams/<year>')
   108 def ozoneloss_clams_year(year):
   109     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
   110     content = get_content(filename)
   111     return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
   112 
   113 
   114 @app.route('/ozoneloss/vpsc/<year>')
   115 def ozoneloss_vspc_year(year):
   116     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
   117     content = get_content(filename)
   118     filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
   119     explanation = get_content(filename)
   120 
   121     return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
   122                            content_explanation=explanation, year=year)
   123 
   124 @app.route('/de')
   125 def de():
   126     global LANGUAGE_SELECTED
   127     LANGUAGE_SELECTED = "de"
   128     return render_template("/index.html",
   129                            eskp_info=_(u'About ESKP'),
   130                            )
   131 
   132 @app.route('/en')
   133 def en():
   134     global LANGUAGE_SELECTED
   135     LANGUAGE_SELECTED = "en"
   136     return render_template("/index.html",
   137                            eskp_info=_(u'About ESKP'),
   138                            )
   139 
   140 @app.route("/eskp")
   141 def eskp():
   142     filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
   143     content = get_content(filename)
   144     filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
   145     headline = get_content(filename)
   146     return render_template("/eskp.html", act="eskp", content=content, headline=headline)
   147 
   148 
   149 def qr_image_data(card):
   150     buf= StringIO.StringIO()
   151     qr = qrcode.QRCode(
   152         version=1,
   153         error_correction=qrcode.constants.ERROR_CORRECT_L,
   154         box_size=2,
   155         border=2,
   156         )
   157     qr.add_data(card.serialize())
   158     qr.make(fit=True)
   159     img = qr.make_image()
   160     img.save(buf)
   161     image = buf.getvalue()
   162     return base64.b64encode(image)
   163 
   164 
   165 @app.route("/ozoneloss")
   166 def ozoneloss():
   167 
   168     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
   169     content = get_content(filename)
   170 
   171     vcard_file = os.path.join("vcards", "jug.vcf")
   172     author = u""
   173     try:
   174         card = get_vcard(vcard_file)
   175     except IOError:
   176         card = None
   177     if card is not None:
   178         qr_image = qr_image_data(card)
   179         author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
   180                                   card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
   181 
   182     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
   183     publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
   184     return render_template("/ozoneloss.html", act="ozoneloss", content=content,
   185                            author=author,card=card, publications=publications )
   186 
   187 @app.route("/ozoneloss/clams")
   188 def ozoneloss_clams():
   189     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
   190     content = get_content(filename)
   191     return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
   192 
   193 @app.route("/ozoneloss/vpsc")
   194 def ozoneloss_vspc():
   195     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
   196     content = get_content(filename)
   197     return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
   198 
   199 @app.route("/iek-7")
   200 def institute():
   201     filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
   202     content = get_content(filename)
   203     vcard_file = os.path.join("vcards", "sas.vcf")
   204     author = u""
   205     try:
   206         card = get_vcard(vcard_file)
   207     except IOError:
   208         card = None
   209     if card is not None:
   210         qr_image = qr_image_data(card)
   211         author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
   212                                   card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
   213 
   214     return render_template("/iek-7.html", act="iek-7", content=content,
   215                            author=author, card=card, contact = u"IEK-7")
   216 
   217 
   218 @app.route("/imprint")
   219 def imprint():
   220     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   221     content = get_content(filename)
   222     return render_template("/content.html", act="imprint", content=content)
   223 
   224 
   225 
   226 
   227 
   228 @app.errorhandler(404)
   229 def page_not_found(e):
   230     msg = _(u"Url: %(url)s not found", url=request.url)
   231     info = _(u"This information is not available!")
   232     return render_template("404.html", msg=msg, info=info)
   233 
   234 if __name__ == "__main__":
   235     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung