Source code for hepdata.modules.theme.views

# -*- coding: utf-8 -*-
#
# This file is part of HEPData.
# Copyright (C) 2016 CERN.
#
# HEPData is free software; you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# HEPData is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with HEPData; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307, USA.
#
# In applying this license, CERN does not
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.

"""Theme blueprint in order for template and static files to be loaded."""

import re

from flask import Blueprint, render_template, current_app, redirect, request
from hepdata_validator import LATEST_SCHEMA_VERSION, RAW_SCHEMAS_URL

from hepdata.version import __version__

blueprint = Blueprint(
    'hepdata_theme',
    __name__,
    url_prefix='',
    template_folder='templates',
    static_folder='static',
)


[docs]@blueprint.route('/') def index(): return render_template('hepdata_theme/home.html', ctx={"version": __version__})
[docs]@blueprint.route('/submission') def submission_help(): return render_template('hepdata_theme/pages/help.html')
[docs]@blueprint.route('/submission/schemas/<path:jsonschema>') def submission_schema(jsonschema): if not re.match(r"[\d+\.]+/.*", jsonschema): jsonschema = LATEST_SCHEMA_VERSION + '/' + jsonschema return redirect(RAW_SCHEMAS_URL + '/' + jsonschema)
[docs]@blueprint.route('/about') def about(): return render_template('hepdata_theme/pages/about.html')
[docs]@blueprint.route('/terms') def terms(): return render_template('hepdata_theme/pages/terms.html')
[docs]@blueprint.route('/record/invalid_doi') def invalid_doi(): return render_template(current_app.config['INVALID_DOI_TEMPLATE']), 410
[docs]def page_forbidden(e): """Error handler to show a 403.html page in case of a 403 error.""" return render_template(current_app.config['THEME_403_TEMPLATE'], ctx={"name": type(e).__name__, "error": str(e)}), 403
[docs]def page_not_found(e): """Error handler to show a 404.html page in case of a 404 error.""" return render_template(current_app.config['THEME_404_TEMPLATE'], ctx={"name": type(e).__name__, "error": str(e)}), 404
[docs]def internal_error(e): """Error handler to show a 500.html page in case of a 500 error.""" return render_template(current_app.config['THEME_500_TEMPLATE'], ctx={"name": type(e).__name__, "error": str(e)}), 500
[docs]def redirect_nonwww(): if current_app.config.get('PRODUCTION_MODE', False) and 'www' not in request.url: return redirect(request.url.replace('://', '://www.'), code=301)
[docs]@blueprint.route('/ping') def ping(): return 'OK'