1 # -*- coding: utf-8 -*-
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
21 LANGUAGE_SELECTED = "de"
22 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
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)
31 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
35 def get_vcard(filename):
36 filename = os.path.join(ESKP_PATH, filename)
37 with codecs.open(filename, 'r', 'utf-8') as f:
40 return vobject.readOne(vcard)
43 def get_content(filename, overrides=None):
45 filename = os.path.join(ESKP_PATH, filename)
46 if os.path.isfile(filename):
47 with codecs.open(filename, 'r', 'utf-8') as f:
50 content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
55 ('/ozoneloss', _(u'Ozoneloss')),
56 ('/eskp', _(u'ESKP')),
57 ('/iek-7', _(u'IEK-7')),
61 app.jinja_env.globals.update(get_topmenue=get_topmenue)
63 def get_o3lossclams_dates():
64 menue = [('/ozoneloss/clams/2012', _(u'2012')),
65 ('/ozoneloss/clams/2011', _(u'2011')),
66 ('/ozoneloss/clams/2010', _(u'2010')),
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')),
79 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
80 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
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"))
91 """ToDo: if translation is completed, switch to en """
92 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
98 return render_template("/index.html",
99 eskp_info=_(u'About ESKP'),
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)
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)
117 return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
118 content_explanation=explanation, year=year)
122 global LANGUAGE_SELECTED
123 LANGUAGE_SELECTED = "de"
124 return render_template("/index.html",
125 eskp_info=_(u'About ESKP'),
130 global LANGUAGE_SELECTED
131 LANGUAGE_SELECTED = "en"
132 return render_template("/index.html",
133 eskp_info=_(u'About 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)
145 def qr_image_data(card):
146 buf= StringIO.StringIO()
149 error_correction=qrcode.constants.ERROR_CORRECT_L,
153 qr.add_data(card.serialize())
155 img = qr.make_image()
157 image = buf.getvalue()
158 return base64.b64encode(image)
161 @app.route("/ozoneloss")
164 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
165 content = get_content(filename)
167 vcard_file = os.path.join("vcards", "jug.vcf")
170 card = get_vcard(vcard_file)
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"))
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 )
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)
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)
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")
202 card = get_vcard(vcard_file)
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"))
210 return render_template("/iek-7.html", act="iek-7", content=content,
211 author=author, card=card, contact = u"IEK-7")
214 @app.route("/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)
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)
230 if __name__ == "__main__":
231 app.run(host='localhost', port=5014, debug=True)