##// END OF EJS Templates
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case....
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case. Usually WIP in title means unfinished task that needs still some work. This pattern is present in Gitlab/Github and is already quite common.

File last commit:

r4011:e2f9b772 default
r4099:c12e69d0 default
Show More
exceptions.py
175 lines | 4.2 KiB | text/x-python | PythonLexer
project: added all source files and assets
r1 # -*- coding: utf-8 -*-
docs: updated copyrights to 2019
r3363 # Copyright (C) 2010-2019 RhodeCode GmbH
project: added all source files and assets
r1 #
# 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/
"""
Set of custom exceptions used in RhodeCode
"""
from webob.exc import HTTPClientError
dan
vcs-error: replace disable_vcs middleware with vcs and http exceptions...
r682 from pyramid.httpexceptions import HTTPBadGateway
project: added all source files and assets
r1
class LdapUsernameError(Exception):
pass
class LdapPasswordError(Exception):
pass
class LdapConnectionError(Exception):
pass
class LdapImportError(Exception):
pass
class DefaultUserException(Exception):
pass
class UserOwnsReposException(Exception):
pass
class UserOwnsRepoGroupsException(Exception):
pass
class UserOwnsUserGroupsException(Exception):
pass
artifacts: handle detach/delete of artifacts for users who own them and are to be deleted....
r4011 class UserOwnsArtifactsException(Exception):
pass
project: added all source files and assets
r1 class UserGroupAssignedException(Exception):
pass
class StatusChangeOnClosedPullRequestError(Exception):
pass
class AttachedForksError(Exception):
pass
repository: add check preventing of removal of repo with attached pull requests....
r3089 class AttachedPullRequestsError(Exception):
pass
project: added all source files and assets
r1 class RepoGroupAssignmentError(Exception):
pass
class NonRelativePathError(Exception):
pass
class HTTPRequirementError(HTTPClientError):
title = explanation = 'Repository Requirement Missing'
reason = None
def __init__(self, message, *args, **kwargs):
self.title = self.explanation = message
super(HTTPRequirementError, self).__init__(*args, **kwargs)
self.args = (message, )
class HTTPLockedRC(HTTPClientError):
"""
Special Exception For locked Repos in RhodeCode, the return code can
be overwritten by _code keyword argument passed into constructors
"""
code = 423
title = explanation = 'Repository Locked'
reason = None
def __init__(self, message, *args, **kwargs):
from rhodecode import CONFIG
from rhodecode.lib.utils2 import safe_int
_code = CONFIG.get('lock_ret_code')
self.code = safe_int(_code, self.code)
self.title = self.explanation = message
super(HTTPLockedRC, self).__init__(*args, **kwargs)
self.args = (message, )
branch-permissions: handle vcs operations and branch permissions....
r2979 class HTTPBranchProtected(HTTPClientError):
"""
Special Exception For Indicating that branch is protected in RhodeCode, the
return code can be overwritten by _code keyword argument passed into constructors
"""
code = 403
title = explanation = 'Branch Protected'
reason = None
def __init__(self, message, *args, **kwargs):
self.title = self.explanation = message
super(HTTPBranchProtected, self).__init__(*args, **kwargs)
self.args = (message, )
project: added all source files and assets
r1 class IMCCommitError(Exception):
pass
class UserCreationError(Exception):
pass
class NotAllowedToCreateUserError(Exception):
pass
class RepositoryCreationError(Exception):
pass
dan
vcs-error: replace disable_vcs middleware with vcs and http exceptions...
r682
class VCSServerUnavailable(HTTPBadGateway):
""" HTTP Exception class for VCS Server errors """
code = 502
title = 'VCS Server Error'
dan
ux: show list of causes for vcs unavailable error page
r683 causes = [
'VCS Server is not running',
'Incorrect vcs.server=host:port',
'Incorrect vcs.server.protocol',
]
core: properly report 502 errors for gevent and gunicorn....
r2554
dan
vcs-error: replace disable_vcs middleware with vcs and http exceptions...
r682 def __init__(self, message=''):
self.explanation = 'Could not connect to VCS Server'
if message:
self.explanation += ': ' + message
super(VCSServerUnavailable, self).__init__()
artifacts: refactor metadata code...
r3997
class ArtifactMetadataDuplicate(ValueError):
def __init__(self, *args, **kwargs):
self.err_section = kwargs.pop('err_section', None)
self.err_key = kwargs.pop('err_key', None)
super(ArtifactMetadataDuplicate, self).__init__(*args, **kwargs)
class ArtifactMetadataBadValueType(ValueError):
pass