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