Files @ 747cc853b5e9
Branch filter:

Location: kallithea/kallithea/config/middleware/permanent_repo_url.py

Thomas De Schampheleire
release: merge default to stable for 0.7.0
# -*- coding: utf-8 -*-
# This program 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 3 of the License, or
# (at your option) any later version.
#
# This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
"""
kallithea.config.middleware.permanent_repo_url
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

middleware to handle permanent repo URLs, replacing PATH_INFO '/_123/yada' with
'/name/of/repo/yada' after looking 123 up in the database.
"""


from kallithea.lib.utils import fix_repo_id_name
from kallithea.lib.utils2 import safe_bytes, safe_str


class PermanentRepoUrl(object):

    def __init__(self, app, config):
        self.application = app
        self.config = config

    def __call__(self, environ, start_response):
        # Extract path_info as get_path_info does, but do it explicitly because
        # we also have to do the reverse operation when patching it back in
        path_info = safe_str(environ['PATH_INFO'].encode('latin1'))
        if path_info.startswith('/'): # it must
            path_info = '/' + fix_repo_id_name(path_info[1:])
            environ['PATH_INFO'] = safe_bytes(path_info).decode('latin1')

        return self.application(environ, start_response)