Show More
@@ -1,31 +1,44 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2016-2016 RhodeCode GmbH |
|
3 | # Copyright (C) 2016-2016 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
|
21 | import logging | |||
21 |
|
22 | |||
|
23 | from rhodecode.model.settings import SettingsModel | |||
22 | from .utils import generate_mod_dav_svn_config |
|
24 | from .utils import generate_mod_dav_svn_config | |
23 |
|
25 | |||
24 |
|
26 | |||
|
27 | log = logging.getLogger(__name__) | |||
|
28 | ||||
|
29 | ||||
25 | def generate_config_subscriber(event): |
|
30 | def generate_config_subscriber(event): | |
26 | """ |
|
31 | """ | |
27 | Subscriber to the `rhodcode.events.RepoGroupEvent`. This triggers the |
|
32 | Subscriber to the `rhodcode.events.RepoGroupEvent`. This triggers the | |
28 | automatic generation of mod_dav_svn config file on repository group |
|
33 | automatic generation of mod_dav_svn config file on repository group | |
29 | changes. |
|
34 | changes. | |
30 | """ |
|
35 | """ | |
31 | generate_mod_dav_svn_config(event.request.registry.settings) |
|
36 | try: | |
|
37 | parent_path_root = SettingsModel().get_ui_by_section_and_key( | |||
|
38 | 'paths', '/').ui_value | |||
|
39 | generate_mod_dav_svn_config( | |||
|
40 | settings=event.request.registry.settings, | |||
|
41 | parent_path_root=parent_path_root) | |||
|
42 | except Exception: | |||
|
43 | log.exception( | |||
|
44 | 'Exception while generating subversion mod_dav_svn configuration.') |
@@ -1,88 +1,80 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2016-2016 RhodeCode GmbH |
|
3 | # Copyright (C) 2016-2016 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import codecs |
|
21 | import codecs | |
22 | import logging |
|
22 | import logging | |
23 | import os |
|
23 | import os | |
24 |
|
24 | |||
25 | from pyramid.renderers import render |
|
25 | from pyramid.renderers import render | |
26 |
|
26 | |||
27 | from rhodecode.lib.utils import get_rhodecode_realm |
|
27 | from rhodecode.lib.utils import get_rhodecode_realm | |
28 | from rhodecode.model.db import RepoGroup |
|
28 | from rhodecode.model.db import RepoGroup | |
29 | from rhodecode.model.settings import SettingsModel |
|
|||
30 | from . import config_keys |
|
29 | from . import config_keys | |
31 |
|
30 | |||
32 |
|
31 | |||
33 | log = logging.getLogger(__name__) |
|
32 | log = logging.getLogger(__name__) | |
34 |
|
33 | |||
35 |
|
34 | |||
36 | def generate_mod_dav_svn_config(settings): |
|
35 | def generate_mod_dav_svn_config(settings, parent_path_root): | |
37 | """ |
|
36 | """ | |
38 | Generate the configuration file for use with subversion's mod_dav_svn |
|
37 | Generate the configuration file for use with subversion's mod_dav_svn | |
39 | module. The configuration has to contain a <Location> block for each |
|
38 | module. The configuration has to contain a <Location> block for each | |
40 | available repository group because the mod_dav_svn module does not support |
|
39 | available repository group because the mod_dav_svn module does not support | |
41 | repositories organized in sub folders. |
|
40 | repositories organized in sub folders. | |
42 | """ |
|
41 | """ | |
43 | parent_path_root = SettingsModel().get_ui_by_section_and_key( |
|
|||
44 | 'paths', '/').ui_value |
|
|||
45 | config = _render_mod_dav_svn_config( |
|
42 | config = _render_mod_dav_svn_config( | |
46 | parent_path_root=parent_path_root, |
|
43 | parent_path_root=parent_path_root, | |
47 | list_parent_path=settings[config_keys.list_parent_path], |
|
44 | list_parent_path=settings[config_keys.list_parent_path], | |
48 | location_root=settings[config_keys.location_root], |
|
45 | location_root=settings[config_keys.location_root], | |
49 | repo_groups=RepoGroup.get_all_repo_groups()) |
|
46 | repo_groups=RepoGroup.get_all_repo_groups()) | |
50 | _write_mod_dav_svn_config(config, settings[config_keys.config_file_path]) |
|
47 | _write_mod_dav_svn_config(config, settings[config_keys.config_file_path]) | |
51 |
|
48 | |||
52 |
|
49 | |||
53 | def _render_mod_dav_svn_config( |
|
50 | def _render_mod_dav_svn_config( | |
54 | parent_path_root, list_parent_path, location_root, repo_groups): |
|
51 | parent_path_root, list_parent_path, location_root, repo_groups): | |
55 | """ |
|
52 | """ | |
56 | Render mod_dav_svn configuration to string. |
|
53 | Render mod_dav_svn configuration to string. | |
57 | """ |
|
54 | """ | |
58 | repo_group_paths = [] |
|
55 | repo_group_paths = [] | |
59 | for repo_group in repo_groups: |
|
56 | for repo_group in repo_groups: | |
60 | group_path = repo_group.full_path_splitted |
|
57 | group_path = repo_group.full_path_splitted | |
61 | location = os.path.join(location_root, *group_path) |
|
58 | location = os.path.join(location_root, *group_path) | |
62 | parent_path = os.path.join(parent_path_root, *group_path) |
|
59 | parent_path = os.path.join(parent_path_root, *group_path) | |
63 | repo_group_paths.append((location, parent_path)) |
|
60 | repo_group_paths.append((location, parent_path)) | |
64 |
|
61 | |||
65 | context = { |
|
62 | context = { | |
66 | 'location_root': location_root, |
|
63 | 'location_root': location_root, | |
67 | 'parent_path_root': parent_path_root, |
|
64 | 'parent_path_root': parent_path_root, | |
68 | 'repo_group_paths': repo_group_paths, |
|
65 | 'repo_group_paths': repo_group_paths, | |
69 | 'svn_list_parent_path': list_parent_path, |
|
66 | 'svn_list_parent_path': list_parent_path, | |
70 | 'rhodecode_realm': get_rhodecode_realm(), |
|
67 | 'rhodecode_realm': get_rhodecode_realm(), | |
71 | } |
|
68 | } | |
72 |
|
69 | |||
73 | # Render the configuration template to string. |
|
70 | # Render the configuration template to string. | |
74 | template = 'rhodecode:svn_support/templates/mod-dav-svn.conf.mako' |
|
71 | template = 'rhodecode:svn_support/templates/mod-dav-svn.conf.mako' | |
75 | return render(template, context) |
|
72 | return render(template, context) | |
76 |
|
73 | |||
77 |
|
74 | |||
78 | def _write_mod_dav_svn_config(config, filepath): |
|
75 | def _write_mod_dav_svn_config(config, filepath): | |
79 | """ |
|
76 | """ | |
80 |
Write mod_dav_svn config to file. |
|
77 | Write mod_dav_svn config to file. | |
81 | """ |
|
78 | """ | |
82 | try: |
|
|||
83 |
|
|
79 | with codecs.open(filepath, 'w', encoding='utf-8') as f: | |
84 |
|
|
80 | f.write(config) | |
85 | except Exception: |
|
|||
86 | log.exception( |
|
|||
87 | 'Exception while writing mod_dav_svn configuration to ' |
|
|||
88 | '"%s"', filepath) |
|
General Comments 0
You need to be logged in to leave comments.
Login now