##// END OF EJS Templates
vcs-connection: report problems more explicitly if connections are not established and we want to use it
super-admin -
r4957:70c11875 default
parent child Browse files
Show More
@@ -1,37 +1,45 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2014-2020 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 """
22 22 Holds connection for remote server.
23 23 """
24 24
25 25
26 def _not_initialized(*args, **kwargs):
26 class NotInitializedConnection(object):
27 27 """Placeholder for objects which have to be initialized first."""
28 raise Exception(
29 "rhodecode.lib.vcs is not yet initialized. "
30 "Make sure `vcs.server` is enabled in your configuration.")
28
29 def _raise_exc(self):
30 raise Exception(
31 "rhodecode.lib.vcs is not yet initialized. "
32 "Make sure `vcs.server` is enabled in your configuration.")
33
34 def __getattr__(self, item):
35 self._raise_exc()
36
37 def __call__(self, *args, **kwargs):
38 self._raise_exc()
31 39
32 40 # TODO: figure out a nice default value for these things
33 Service = _not_initialized
41 Service = NotInitializedConnection()
34 42
35 Git = _not_initialized
36 Hg = _not_initialized
37 Svn = _not_initialized
43 Git = NotInitializedConnection()
44 Hg = NotInitializedConnection()
45 Svn = NotInitializedConnection()
General Comments 0
You need to be logged in to leave comments. Login now