Show More
@@ -0,0 +1,62 b'' | |||
|
1 | # RhodeCode VCSServer provides access to different vcs backends via network. | |
|
2 | # Copyright (C) 2014-2020 RhodeCode GmbH | |
|
3 | # | |
|
4 | # This program is free software; you can redistribute it and/or modify | |
|
5 | # it under the terms of the GNU General Public License as published by | |
|
6 | # the Free Software Foundation; either version 3 of the License, or | |
|
7 | # (at your option) any later version. | |
|
8 | # | |
|
9 | # This program is distributed in the hope that it will be useful, | |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
12 | # GNU General Public License for more details. | |
|
13 | # | |
|
14 | # You should have received a copy of the GNU General Public License | |
|
15 | # along with this program; if not, write to the Free Software Foundation, | |
|
16 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
|
17 | ||
|
18 | ||
|
19 | import logging | |
|
20 | ||
|
21 | log = logging.getLogger(__name__) | |
|
22 | ||
|
23 | ||
|
24 | def str2bool(str_): | |
|
25 | """ | |
|
26 | returns True/False value from given string, it tries to translate the | |
|
27 | string into boolean | |
|
28 | ||
|
29 | :param str_: string value to translate into boolean | |
|
30 | :rtype: boolean | |
|
31 | :returns: boolean from given string | |
|
32 | """ | |
|
33 | if str_ is None: | |
|
34 | return False | |
|
35 | if str_ in (True, False): | |
|
36 | return str_ | |
|
37 | str_ = str(str_).strip().lower() | |
|
38 | return str_ in ('t', 'true', 'y', 'yes', 'on', '1') | |
|
39 | ||
|
40 | ||
|
41 | def aslist(obj, sep=None, strip=True) -> list: | |
|
42 | """ | |
|
43 | Returns given string separated by sep as list | |
|
44 | ||
|
45 | :param obj: | |
|
46 | :param sep: | |
|
47 | :param strip: | |
|
48 | """ | |
|
49 | if isinstance(obj, str): | |
|
50 | if obj in ['', ""]: | |
|
51 | return [] | |
|
52 | ||
|
53 | lst = obj.split(sep) | |
|
54 | if strip: | |
|
55 | lst = [v.strip() for v in lst] | |
|
56 | return lst | |
|
57 | elif isinstance(obj, (list, tuple)): | |
|
58 | return obj | |
|
59 | elif obj is None: | |
|
60 | return [] | |
|
61 | else: | |
|
62 | return [obj] No newline at end of file |
@@ -25,6 +25,9 b' import functools' | |||
|
25 | 25 | import logging |
|
26 | 26 | import tempfile |
|
27 | 27 | import logging.config |
|
28 | ||
|
29 | from vcsserver.type_utils import str2bool, aslist | |
|
30 | ||
|
28 | 31 | log = logging.getLogger(__name__) |
|
29 | 32 | |
|
30 | 33 | # skip keys, that are set here, so we don't double process those |
@@ -33,47 +36,6 b' set_keys = {' | |||
|
33 | 36 | } |
|
34 | 37 | |
|
35 | 38 | |
|
36 | def str2bool(_str): | |
|
37 | """ | |
|
38 | returns True/False value from given string, it tries to translate the | |
|
39 | string into boolean | |
|
40 | ||
|
41 | :param _str: string value to translate into boolean | |
|
42 | :rtype: boolean | |
|
43 | :returns: boolean from given string | |
|
44 | """ | |
|
45 | if _str is None: | |
|
46 | return False | |
|
47 | if _str in (True, False): | |
|
48 | return _str | |
|
49 | _str = str(_str).strip().lower() | |
|
50 | return _str in ('t', 'true', 'y', 'yes', 'on', '1') | |
|
51 | ||
|
52 | ||
|
53 | def aslist(obj, sep=None, strip=True): | |
|
54 | """ | |
|
55 | Returns given string separated by sep as list | |
|
56 | ||
|
57 | :param obj: | |
|
58 | :param sep: | |
|
59 | :param strip: | |
|
60 | """ | |
|
61 | if isinstance(obj, str): | |
|
62 | if obj in ['', ""]: | |
|
63 | return [] | |
|
64 | ||
|
65 | lst = obj.split(sep) | |
|
66 | if strip: | |
|
67 | lst = [v.strip() for v in lst] | |
|
68 | return lst | |
|
69 | elif isinstance(obj, (list, tuple)): | |
|
70 | return obj | |
|
71 | elif obj is None: | |
|
72 | return [] | |
|
73 | else: | |
|
74 | return [obj] | |
|
75 | ||
|
76 | ||
|
77 | 39 | class SettingsMaker(object): |
|
78 | 40 | |
|
79 | 41 | def __init__(self, app_settings): |
General Comments 0
You need to be logged in to leave comments.
Login now