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():
65 ('/ozoneloss/clams/2015', _(u'2015')),
66 ('/ozoneloss/clams/2012', _(u'2012')),
67 ('/ozoneloss/clams/2011', _(u'2011')),
68 ('/ozoneloss/clams/2010', _(u'2010')),
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')),
83 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
84 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
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"))
95 """ToDo: if translation is completed, switch to en """
96 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
102 return render_template("/index.html",
103 eskp_info=_(u'About ESKP'),
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)
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)
121 return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
122 content_explanation=explanation, year=year)
126 global LANGUAGE_SELECTED
127 LANGUAGE_SELECTED = "de"
128 return render_template("/index.html",
129 eskp_info=_(u'About ESKP'),
134 global LANGUAGE_SELECTED
135 LANGUAGE_SELECTED = "en"
136 return render_template("/index.html",
137 eskp_info=_(u'About 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)
149 def qr_image_data(card):
150 buf= StringIO.StringIO()
153 error_correction=qrcode.constants.ERROR_CORRECT_L,
157 qr.add_data(card.serialize())
159 img = qr.make_image()
161 image = buf.getvalue()
162 return base64.b64encode(image)
165 @app.route("/ozoneloss")
168 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
169 content = get_content(filename)
171 vcard_file = os.path.join("vcards", "jug.vcf")
174 card = get_vcard(vcard_file)
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"))
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 )
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)
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)
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")
206 card = get_vcard(vcard_file)
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"))
214 return render_template("/iek-7.html", act="iek-7", content=content,
215 author=author, card=card, contact = u"IEK-7")
218 @app.route("/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)
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)
234 if __name__ == "__main__":
235 app.run(host='localhost', port=5014, debug=True)