exceptions.py
125 lines
| 3.8 KiB
| text/x-python
|
PythonLexer
/ vcsserver / exceptions.py
r0 | # RhodeCode VCSServer provides access to different vcs backends via network. | |||
r1126 | # Copyright (C) 2014-2023 RhodeCode GmbH | |||
r0 | # | |||
# 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, write to the Free Software Foundation, | ||||
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||||
""" | ||||
Special exception handling over the wire. | ||||
Since we cannot assume that our client is able to import our exception classes, | ||||
this module provides a "wrapping" mechanism to raise plain exceptions | ||||
which contain an extra attribute `_vcs_kind` to allow a client to distinguish | ||||
different error conditions. | ||||
""" | ||||
r509 | from pyramid.httpexceptions import HTTPLocked, HTTPForbidden | |||
r0 | ||||
r490 | def _make_exception(kind, org_exc, *args): | |||
r0 | """ | |||
Prepares a base `Exception` instance to be sent over the wire. | ||||
To give our caller a hint what this is about, it will attach an attribute | ||||
`_vcs_kind` to the exception. | ||||
""" | ||||
exc = Exception(*args) | ||||
exc._vcs_kind = kind | ||||
r490 | exc._org_exc = org_exc | |||
r658 | exc._org_exc_tb = getattr(org_exc, '_org_exc_tb', '') | |||
r0 | return exc | |||
r490 | def AbortException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('abort', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r490 | def ArchiveException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('archive', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r490 | def LookupException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('lookup', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r490 | def VcsException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('error', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r490 | def RepositoryLockedException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('repo_locked', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r509 | def RepositoryBranchProtectedException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('repo_branch_protected', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r490 | def RequirementException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('requirement', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r490 | def UnhandledException(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('unhandled', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
r0 | ||||
r490 | def URLError(org_exc=None): | |||
def _make_exception_wrapper(*args): | ||||
return _make_exception('url_error', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
Martin Bornhold
|
r85 | |||
r490 | ||||
def SubrepoMergeException(org_exc=None): | ||||
def _make_exception_wrapper(*args): | ||||
return _make_exception('subrepo_merge_error', org_exc, *args) | ||||
return _make_exception_wrapper | ||||
Martin Bornhold
|
r98 | |||
Martin Bornhold
|
r85 | |||
class HTTPRepoLocked(HTTPLocked): | ||||
""" | ||||
Subclass of HTTPLocked response that allows to set the title and status | ||||
code via constructor arguments. | ||||
""" | ||||
def __init__(self, title, status_code=None, **kwargs): | ||||
self.code = status_code or HTTPLocked.code | ||||
self.title = title | ||||
r1114 | super().__init__(**kwargs) | |||
r509 | ||||
class HTTPRepoBranchProtected(HTTPForbidden): | ||||
def __init__(self, *args, **kwargs): | ||||
super(HTTPForbidden, self).__init__(*args, **kwargs) | ||||
r843 | ||||
class RefNotFoundException(KeyError): | ||||
pass | ||||
r894 | ||||
class NoContentException(ValueError): | ||||
pass | ||||