|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
# Copyright (C) 2015-2016 RhodeCode GmbH
|
|
|
#
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
# it under the terms of the GNU Affero General Public License, version 3
|
|
|
# (only), as published by the Free Software Foundation.
|
|
|
#
|
|
|
# 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 Affero General Public License
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
#
|
|
|
# This program is dual-licensed. If you wish to learn more about the
|
|
|
# RhodeCode Enterprise Edition, including its added features, Support services,
|
|
|
# and proprietary license terms, please see https://rhodecode.com/licenses/
|
|
|
|
|
|
"""
|
|
|
Disable VCS pages when VCS Server is not available
|
|
|
"""
|
|
|
|
|
|
import logging
|
|
|
import re
|
|
|
from pyramid.httpexceptions import HTTPBadGateway
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
class VCSServerUnavailable(HTTPBadGateway):
|
|
|
""" HTTP Exception class for when VCS Server is unavailable """
|
|
|
code = 502
|
|
|
title = 'VCS Server Required'
|
|
|
explanation = 'A VCS Server is required for this action. There is currently no VCS Server configured.'
|
|
|
|
|
|
class DisableVCSPagesWrapper(object):
|
|
|
"""
|
|
|
Pyramid view wrapper to disable all pages that require VCS Server to be
|
|
|
running, avoiding that errors explode to the user.
|
|
|
|
|
|
This Wrapper should be enabled only in case VCS Server is not available
|
|
|
for the instance.
|
|
|
"""
|
|
|
|
|
|
VCS_NOT_REQUIRED = [
|
|
|
'^/$',
|
|
|
('/_admin(?!/settings/mapping)(?!/my_account/repos)'
|
|
|
'(?!/create_repository)(?!/gists)(?!/notifications/)'
|
|
|
),
|
|
|
]
|
|
|
_REGEX_VCS_NOT_REQUIRED = [re.compile(path) for path in VCS_NOT_REQUIRED]
|
|
|
|
|
|
def _check_vcs_requirement(self, path_info):
|
|
|
"""
|
|
|
Tries to match the current path to one of the safe URLs to be rendered.
|
|
|
Displays an error message in case
|
|
|
"""
|
|
|
for regex in self._REGEX_VCS_NOT_REQUIRED:
|
|
|
safe_url = regex.match(path_info)
|
|
|
if safe_url:
|
|
|
return True
|
|
|
|
|
|
# Url is not safe to be rendered without VCS Server
|
|
|
log.debug('accessing: `%s` with VCS Server disabled', path_info)
|
|
|
return False
|
|
|
|
|
|
def __init__(self, handler):
|
|
|
self.handler = handler
|
|
|
|
|
|
def __call__(self, context, request):
|
|
|
if not self._check_vcs_requirement(request.path):
|
|
|
raise VCSServerUnavailable('VCS Server is not available')
|
|
|
|
|
|
return self.handler(context, request)
|
|
|
|