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