Show More
@@ -1,561 +1,561 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 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 | """ |
|
21 | """ | |
22 | this is forms validation classes |
|
22 | this is forms validation classes | |
23 | http://formencode.org/module-formencode.validators.html |
|
23 | http://formencode.org/module-formencode.validators.html | |
24 | for list off all availible validators |
|
24 | for list off all availible validators | |
25 |
|
25 | |||
26 | we can create our own validators |
|
26 | we can create our own validators | |
27 |
|
27 | |||
28 | The table below outlines the options which can be used in a schema in addition to the validators themselves |
|
28 | The table below outlines the options which can be used in a schema in addition to the validators themselves | |
29 | pre_validators [] These validators will be applied before the schema |
|
29 | pre_validators [] These validators will be applied before the schema | |
30 | chained_validators [] These validators will be applied after the schema |
|
30 | chained_validators [] These validators will be applied after the schema | |
31 | allow_extra_fields False If True, then it is not an error when keys that aren't associated with a validator are present |
|
31 | allow_extra_fields False If True, then it is not an error when keys that aren't associated with a validator are present | |
32 | filter_extra_fields False If True, then keys that aren't associated with a validator are removed |
|
32 | filter_extra_fields False If True, then keys that aren't associated with a validator are removed | |
33 | if_key_missing NoDefault If this is given, then any keys that aren't available but are expected will be replaced with this value (and then validated). This does not override a present .if_missing attribute on validators. NoDefault is a special FormEncode class to mean that no default values has been specified and therefore missing keys shouldn't take a default value. |
|
33 | if_key_missing NoDefault If this is given, then any keys that aren't available but are expected will be replaced with this value (and then validated). This does not override a present .if_missing attribute on validators. NoDefault is a special FormEncode class to mean that no default values has been specified and therefore missing keys shouldn't take a default value. | |
34 | ignore_key_missing False If True, then missing keys will be missing in the result, if the validator doesn't have .if_missing on it already |
|
34 | ignore_key_missing False If True, then missing keys will be missing in the result, if the validator doesn't have .if_missing on it already | |
35 |
|
35 | |||
36 |
|
36 | |||
37 | <name> = formencode.validators.<name of validator> |
|
37 | <name> = formencode.validators.<name of validator> | |
38 | <name> must equal form name |
|
38 | <name> must equal form name | |
39 | list=[1,2,3,4,5] |
|
39 | list=[1,2,3,4,5] | |
40 | for SELECT use formencode.All(OneOf(list), Int()) |
|
40 | for SELECT use formencode.All(OneOf(list), Int()) | |
41 |
|
41 | |||
42 | """ |
|
42 | """ | |
43 |
|
43 | |||
44 | import deform |
|
44 | import deform | |
45 | import logging |
|
45 | import logging | |
46 | import formencode |
|
46 | import formencode | |
47 |
|
47 | |||
48 | from pkg_resources import resource_filename |
|
48 | from pkg_resources import resource_filename | |
49 | from formencode import All, Pipe |
|
49 | from formencode import All, Pipe | |
50 |
|
50 | |||
51 | from pylons.i18n.translation import _ |
|
51 | from pylons.i18n.translation import _ | |
52 |
|
52 | |||
53 | from rhodecode import BACKENDS |
|
53 | from rhodecode import BACKENDS | |
54 | from rhodecode.lib import helpers |
|
54 | from rhodecode.lib import helpers | |
55 | from rhodecode.model import validators as v |
|
55 | from rhodecode.model import validators as v | |
56 |
|
56 | |||
57 | log = logging.getLogger(__name__) |
|
57 | log = logging.getLogger(__name__) | |
58 |
|
58 | |||
59 |
|
59 | |||
60 | deform_templates = resource_filename('deform', 'templates') |
|
60 | deform_templates = resource_filename('deform', 'templates') | |
61 | rhodecode_templates = resource_filename('rhodecode', 'templates/forms') |
|
61 | rhodecode_templates = resource_filename('rhodecode', 'templates/forms') | |
62 | search_path = (rhodecode_templates, deform_templates) |
|
62 | search_path = (rhodecode_templates, deform_templates) | |
63 |
|
63 | |||
64 |
|
64 | |||
65 | class RhodecodeFormZPTRendererFactory(deform.ZPTRendererFactory): |
|
65 | class RhodecodeFormZPTRendererFactory(deform.ZPTRendererFactory): | |
66 | """ Subclass of ZPTRendererFactory to add rhodecode context variables """ |
|
66 | """ Subclass of ZPTRendererFactory to add rhodecode context variables """ | |
67 | def __call__(self, template_name, **kw): |
|
67 | def __call__(self, template_name, **kw): | |
68 | kw['h'] = helpers |
|
68 | kw['h'] = helpers | |
69 | return self.load(template_name)(**kw) |
|
69 | return self.load(template_name)(**kw) | |
70 |
|
70 | |||
71 |
|
71 | |||
72 | form_renderer = RhodecodeFormZPTRendererFactory(search_path) |
|
72 | form_renderer = RhodecodeFormZPTRendererFactory(search_path) | |
73 | deform.Form.set_default_renderer(form_renderer) |
|
73 | deform.Form.set_default_renderer(form_renderer) | |
74 |
|
74 | |||
75 |
|
75 | |||
76 | def LoginForm(): |
|
76 | def LoginForm(): | |
77 | class _LoginForm(formencode.Schema): |
|
77 | class _LoginForm(formencode.Schema): | |
78 | allow_extra_fields = True |
|
78 | allow_extra_fields = True | |
79 | filter_extra_fields = True |
|
79 | filter_extra_fields = True | |
80 | username = v.UnicodeString( |
|
80 | username = v.UnicodeString( | |
81 | strip=True, |
|
81 | strip=True, | |
82 | min=1, |
|
82 | min=1, | |
83 | not_empty=True, |
|
83 | not_empty=True, | |
84 | messages={ |
|
84 | messages={ | |
85 | 'empty': _(u'Please enter a login'), |
|
85 | 'empty': _(u'Please enter a login'), | |
86 | 'tooShort': _(u'Enter a value %(min)i characters long or more') |
|
86 | 'tooShort': _(u'Enter a value %(min)i characters long or more') | |
87 | } |
|
87 | } | |
88 | ) |
|
88 | ) | |
89 |
|
89 | |||
90 | password = v.UnicodeString( |
|
90 | password = v.UnicodeString( | |
91 | strip=False, |
|
91 | strip=False, | |
92 | min=3, |
|
92 | min=3, | |
93 | not_empty=True, |
|
93 | not_empty=True, | |
94 | messages={ |
|
94 | messages={ | |
95 | 'empty': _(u'Please enter a password'), |
|
95 | 'empty': _(u'Please enter a password'), | |
96 | 'tooShort': _(u'Enter %(min)i characters or more')} |
|
96 | 'tooShort': _(u'Enter %(min)i characters or more')} | |
97 | ) |
|
97 | ) | |
98 |
|
98 | |||
99 | remember = v.StringBoolean(if_missing=False) |
|
99 | remember = v.StringBoolean(if_missing=False) | |
100 |
|
100 | |||
101 | chained_validators = [v.ValidAuth()] |
|
101 | chained_validators = [v.ValidAuth()] | |
102 | return _LoginForm |
|
102 | return _LoginForm | |
103 |
|
103 | |||
104 |
|
104 | |||
105 | def UserForm(edit=False, available_languages=[], old_data={}): |
|
105 | def UserForm(edit=False, available_languages=[], old_data={}): | |
106 | class _UserForm(formencode.Schema): |
|
106 | class _UserForm(formencode.Schema): | |
107 | allow_extra_fields = True |
|
107 | allow_extra_fields = True | |
108 | filter_extra_fields = True |
|
108 | filter_extra_fields = True | |
109 | username = All(v.UnicodeString(strip=True, min=1, not_empty=True), |
|
109 | username = All(v.UnicodeString(strip=True, min=1, not_empty=True), | |
110 | v.ValidUsername(edit, old_data)) |
|
110 | v.ValidUsername(edit, old_data)) | |
111 | if edit: |
|
111 | if edit: | |
112 | new_password = All( |
|
112 | new_password = All( | |
113 | v.ValidPassword(), |
|
113 | v.ValidPassword(), | |
114 | v.UnicodeString(strip=False, min=6, not_empty=False) |
|
114 | v.UnicodeString(strip=False, min=6, not_empty=False) | |
115 | ) |
|
115 | ) | |
116 | password_confirmation = All( |
|
116 | password_confirmation = All( | |
117 | v.ValidPassword(), |
|
117 | v.ValidPassword(), | |
118 | v.UnicodeString(strip=False, min=6, not_empty=False), |
|
118 | v.UnicodeString(strip=False, min=6, not_empty=False), | |
119 | ) |
|
119 | ) | |
120 | admin = v.StringBoolean(if_missing=False) |
|
120 | admin = v.StringBoolean(if_missing=False) | |
121 | else: |
|
121 | else: | |
122 | password = All( |
|
122 | password = All( | |
123 | v.ValidPassword(), |
|
123 | v.ValidPassword(), | |
124 | v.UnicodeString(strip=False, min=6, not_empty=True) |
|
124 | v.UnicodeString(strip=False, min=6, not_empty=True) | |
125 | ) |
|
125 | ) | |
126 | password_confirmation = All( |
|
126 | password_confirmation = All( | |
127 | v.ValidPassword(), |
|
127 | v.ValidPassword(), | |
128 | v.UnicodeString(strip=False, min=6, not_empty=False) |
|
128 | v.UnicodeString(strip=False, min=6, not_empty=False) | |
129 | ) |
|
129 | ) | |
130 |
|
130 | |||
131 | password_change = v.StringBoolean(if_missing=False) |
|
131 | password_change = v.StringBoolean(if_missing=False) | |
132 | create_repo_group = v.StringBoolean(if_missing=False) |
|
132 | create_repo_group = v.StringBoolean(if_missing=False) | |
133 |
|
133 | |||
134 | active = v.StringBoolean(if_missing=False) |
|
134 | active = v.StringBoolean(if_missing=False) | |
135 | firstname = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
135 | firstname = v.UnicodeString(strip=True, min=1, not_empty=False) | |
136 | lastname = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
136 | lastname = v.UnicodeString(strip=True, min=1, not_empty=False) | |
137 | email = All(v.Email(not_empty=True), v.UniqSystemEmail(old_data)) |
|
137 | email = All(v.Email(not_empty=True), v.UniqSystemEmail(old_data)) | |
138 | extern_name = v.UnicodeString(strip=True) |
|
138 | extern_name = v.UnicodeString(strip=True) | |
139 | extern_type = v.UnicodeString(strip=True) |
|
139 | extern_type = v.UnicodeString(strip=True) | |
140 | language = v.OneOf(available_languages, hideList=False, |
|
140 | language = v.OneOf(available_languages, hideList=False, | |
141 | testValueList=True, if_missing=None) |
|
141 | testValueList=True, if_missing=None) | |
142 | chained_validators = [v.ValidPasswordsMatch()] |
|
142 | chained_validators = [v.ValidPasswordsMatch()] | |
143 | return _UserForm |
|
143 | return _UserForm | |
144 |
|
144 | |||
145 |
|
145 | |||
146 | def UserGroupForm(edit=False, old_data=None, allow_disabled=False): |
|
146 | def UserGroupForm(edit=False, old_data=None, allow_disabled=False): | |
147 | old_data = old_data or {} |
|
147 | old_data = old_data or {} | |
148 |
|
148 | |||
149 | class _UserGroupForm(formencode.Schema): |
|
149 | class _UserGroupForm(formencode.Schema): | |
150 | allow_extra_fields = True |
|
150 | allow_extra_fields = True | |
151 | filter_extra_fields = True |
|
151 | filter_extra_fields = True | |
152 |
|
152 | |||
153 | users_group_name = All( |
|
153 | users_group_name = All( | |
154 | v.UnicodeString(strip=True, min=1, not_empty=True), |
|
154 | v.UnicodeString(strip=True, min=1, not_empty=True), | |
155 | v.ValidUserGroup(edit, old_data) |
|
155 | v.ValidUserGroup(edit, old_data) | |
156 | ) |
|
156 | ) | |
157 | user_group_description = v.UnicodeString(strip=True, min=1, |
|
157 | user_group_description = v.UnicodeString(strip=True, min=1, | |
158 | not_empty=False) |
|
158 | not_empty=False) | |
159 |
|
159 | |||
160 | users_group_active = v.StringBoolean(if_missing=False) |
|
160 | users_group_active = v.StringBoolean(if_missing=False) | |
161 |
|
161 | |||
162 | if edit: |
|
162 | if edit: | |
163 | # this is user group owner |
|
163 | # this is user group owner | |
164 | user = All( |
|
164 | user = All( | |
165 | v.UnicodeString(not_empty=True), |
|
165 | v.UnicodeString(not_empty=True), | |
166 | v.ValidRepoUser(allow_disabled)) |
|
166 | v.ValidRepoUser(allow_disabled)) | |
167 | return _UserGroupForm |
|
167 | return _UserGroupForm | |
168 |
|
168 | |||
169 |
|
169 | |||
170 | def RepoGroupForm(edit=False, old_data=None, available_groups=None, |
|
170 | def RepoGroupForm(edit=False, old_data=None, available_groups=None, | |
171 | can_create_in_root=False, allow_disabled=False): |
|
171 | can_create_in_root=False, allow_disabled=False): | |
172 | old_data = old_data or {} |
|
172 | old_data = old_data or {} | |
173 | available_groups = available_groups or [] |
|
173 | available_groups = available_groups or [] | |
174 |
|
174 | |||
175 | class _RepoGroupForm(formencode.Schema): |
|
175 | class _RepoGroupForm(formencode.Schema): | |
176 | allow_extra_fields = True |
|
176 | allow_extra_fields = True | |
177 | filter_extra_fields = False |
|
177 | filter_extra_fields = False | |
178 |
|
178 | |||
179 | group_name = All(v.UnicodeString(strip=True, min=1, not_empty=True), |
|
179 | group_name = All(v.UnicodeString(strip=True, min=1, not_empty=True), | |
180 | v.SlugifyName(),) |
|
180 | v.SlugifyName(),) | |
181 | group_description = v.UnicodeString(strip=True, min=1, |
|
181 | group_description = v.UnicodeString(strip=True, min=1, | |
182 | not_empty=False) |
|
182 | not_empty=False) | |
183 | group_copy_permissions = v.StringBoolean(if_missing=False) |
|
183 | group_copy_permissions = v.StringBoolean(if_missing=False) | |
184 |
|
184 | |||
185 | group_parent_id = v.OneOf(available_groups, hideList=False, |
|
185 | group_parent_id = v.OneOf(available_groups, hideList=False, | |
186 | testValueList=True, not_empty=True) |
|
186 | testValueList=True, not_empty=True) | |
187 | enable_locking = v.StringBoolean(if_missing=False) |
|
187 | enable_locking = v.StringBoolean(if_missing=False) | |
188 | chained_validators = [ |
|
188 | chained_validators = [ | |
189 | v.ValidRepoGroup(edit, old_data, can_create_in_root)] |
|
189 | v.ValidRepoGroup(edit, old_data, can_create_in_root)] | |
190 |
|
190 | |||
191 | if edit: |
|
191 | if edit: | |
192 | # this is repo group owner |
|
192 | # this is repo group owner | |
193 | user = All( |
|
193 | user = All( | |
194 | v.UnicodeString(not_empty=True), |
|
194 | v.UnicodeString(not_empty=True), | |
195 | v.ValidRepoUser(allow_disabled)) |
|
195 | v.ValidRepoUser(allow_disabled)) | |
196 |
|
196 | |||
197 | return _RepoGroupForm |
|
197 | return _RepoGroupForm | |
198 |
|
198 | |||
199 |
|
199 | |||
200 | def RegisterForm(edit=False, old_data={}): |
|
200 | def RegisterForm(edit=False, old_data={}): | |
201 | class _RegisterForm(formencode.Schema): |
|
201 | class _RegisterForm(formencode.Schema): | |
202 | allow_extra_fields = True |
|
202 | allow_extra_fields = True | |
203 | filter_extra_fields = True |
|
203 | filter_extra_fields = True | |
204 | username = All( |
|
204 | username = All( | |
205 | v.ValidUsername(edit, old_data), |
|
205 | v.ValidUsername(edit, old_data), | |
206 | v.UnicodeString(strip=True, min=1, not_empty=True) |
|
206 | v.UnicodeString(strip=True, min=1, not_empty=True) | |
207 | ) |
|
207 | ) | |
208 | password = All( |
|
208 | password = All( | |
209 | v.ValidPassword(), |
|
209 | v.ValidPassword(), | |
210 | v.UnicodeString(strip=False, min=6, not_empty=True) |
|
210 | v.UnicodeString(strip=False, min=6, not_empty=True) | |
211 | ) |
|
211 | ) | |
212 | password_confirmation = All( |
|
212 | password_confirmation = All( | |
213 | v.ValidPassword(), |
|
213 | v.ValidPassword(), | |
214 | v.UnicodeString(strip=False, min=6, not_empty=True) |
|
214 | v.UnicodeString(strip=False, min=6, not_empty=True) | |
215 | ) |
|
215 | ) | |
216 | active = v.StringBoolean(if_missing=False) |
|
216 | active = v.StringBoolean(if_missing=False) | |
217 | firstname = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
217 | firstname = v.UnicodeString(strip=True, min=1, not_empty=False) | |
218 | lastname = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
218 | lastname = v.UnicodeString(strip=True, min=1, not_empty=False) | |
219 | email = All(v.Email(not_empty=True), v.UniqSystemEmail(old_data)) |
|
219 | email = All(v.Email(not_empty=True), v.UniqSystemEmail(old_data)) | |
220 |
|
220 | |||
221 | chained_validators = [v.ValidPasswordsMatch()] |
|
221 | chained_validators = [v.ValidPasswordsMatch()] | |
222 |
|
222 | |||
223 | return _RegisterForm |
|
223 | return _RegisterForm | |
224 |
|
224 | |||
225 |
|
225 | |||
226 | def PasswordResetForm(): |
|
226 | def PasswordResetForm(): | |
227 | class _PasswordResetForm(formencode.Schema): |
|
227 | class _PasswordResetForm(formencode.Schema): | |
228 | allow_extra_fields = True |
|
228 | allow_extra_fields = True | |
229 | filter_extra_fields = True |
|
229 | filter_extra_fields = True | |
230 | email = All(v.ValidSystemEmail(), v.Email(not_empty=True)) |
|
230 | email = All(v.ValidSystemEmail(), v.Email(not_empty=True)) | |
231 | return _PasswordResetForm |
|
231 | return _PasswordResetForm | |
232 |
|
232 | |||
233 |
|
233 | |||
234 | def RepoForm(edit=False, old_data=None, repo_groups=None, landing_revs=None, |
|
234 | def RepoForm(edit=False, old_data=None, repo_groups=None, landing_revs=None, | |
235 | allow_disabled=False): |
|
235 | allow_disabled=False): | |
236 | old_data = old_data or {} |
|
236 | old_data = old_data or {} | |
237 | repo_groups = repo_groups or [] |
|
237 | repo_groups = repo_groups or [] | |
238 | landing_revs = landing_revs or [] |
|
238 | landing_revs = landing_revs or [] | |
239 | supported_backends = BACKENDS.keys() |
|
239 | supported_backends = BACKENDS.keys() | |
240 |
|
240 | |||
241 | class _RepoForm(formencode.Schema): |
|
241 | class _RepoForm(formencode.Schema): | |
242 | allow_extra_fields = True |
|
242 | allow_extra_fields = True | |
243 | filter_extra_fields = False |
|
243 | filter_extra_fields = False | |
244 | repo_name = All(v.UnicodeString(strip=True, min=1, not_empty=True), |
|
244 | repo_name = All(v.UnicodeString(strip=True, min=1, not_empty=True), | |
245 | v.SlugifyName()) |
|
245 | v.SlugifyName(), v.CannotHaveGitSuffix()) | |
246 | repo_group = All(v.CanWriteGroup(old_data), |
|
246 | repo_group = All(v.CanWriteGroup(old_data), | |
247 | v.OneOf(repo_groups, hideList=True)) |
|
247 | v.OneOf(repo_groups, hideList=True)) | |
248 | repo_type = v.OneOf(supported_backends, required=False, |
|
248 | repo_type = v.OneOf(supported_backends, required=False, | |
249 | if_missing=old_data.get('repo_type')) |
|
249 | if_missing=old_data.get('repo_type')) | |
250 | repo_description = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
250 | repo_description = v.UnicodeString(strip=True, min=1, not_empty=False) | |
251 | repo_private = v.StringBoolean(if_missing=False) |
|
251 | repo_private = v.StringBoolean(if_missing=False) | |
252 | repo_landing_rev = v.OneOf(landing_revs, hideList=True) |
|
252 | repo_landing_rev = v.OneOf(landing_revs, hideList=True) | |
253 | repo_copy_permissions = v.StringBoolean(if_missing=False) |
|
253 | repo_copy_permissions = v.StringBoolean(if_missing=False) | |
254 | clone_uri = All(v.UnicodeString(strip=True, min=1, not_empty=False)) |
|
254 | clone_uri = All(v.UnicodeString(strip=True, min=1, not_empty=False)) | |
255 |
|
255 | |||
256 | repo_enable_statistics = v.StringBoolean(if_missing=False) |
|
256 | repo_enable_statistics = v.StringBoolean(if_missing=False) | |
257 | repo_enable_downloads = v.StringBoolean(if_missing=False) |
|
257 | repo_enable_downloads = v.StringBoolean(if_missing=False) | |
258 | repo_enable_locking = v.StringBoolean(if_missing=False) |
|
258 | repo_enable_locking = v.StringBoolean(if_missing=False) | |
259 |
|
259 | |||
260 | if edit: |
|
260 | if edit: | |
261 | # this is repo owner |
|
261 | # this is repo owner | |
262 | user = All( |
|
262 | user = All( | |
263 | v.UnicodeString(not_empty=True), |
|
263 | v.UnicodeString(not_empty=True), | |
264 | v.ValidRepoUser(allow_disabled)) |
|
264 | v.ValidRepoUser(allow_disabled)) | |
265 | clone_uri_change = v.UnicodeString( |
|
265 | clone_uri_change = v.UnicodeString( | |
266 | not_empty=False, if_missing=v.Missing) |
|
266 | not_empty=False, if_missing=v.Missing) | |
267 |
|
267 | |||
268 | chained_validators = [v.ValidCloneUri(), |
|
268 | chained_validators = [v.ValidCloneUri(), | |
269 | v.ValidRepoName(edit, old_data)] |
|
269 | v.ValidRepoName(edit, old_data)] | |
270 | return _RepoForm |
|
270 | return _RepoForm | |
271 |
|
271 | |||
272 |
|
272 | |||
273 | def RepoPermsForm(): |
|
273 | def RepoPermsForm(): | |
274 | class _RepoPermsForm(formencode.Schema): |
|
274 | class _RepoPermsForm(formencode.Schema): | |
275 | allow_extra_fields = True |
|
275 | allow_extra_fields = True | |
276 | filter_extra_fields = False |
|
276 | filter_extra_fields = False | |
277 | chained_validators = [v.ValidPerms(type_='repo')] |
|
277 | chained_validators = [v.ValidPerms(type_='repo')] | |
278 | return _RepoPermsForm |
|
278 | return _RepoPermsForm | |
279 |
|
279 | |||
280 |
|
280 | |||
281 | def RepoGroupPermsForm(valid_recursive_choices): |
|
281 | def RepoGroupPermsForm(valid_recursive_choices): | |
282 | class _RepoGroupPermsForm(formencode.Schema): |
|
282 | class _RepoGroupPermsForm(formencode.Schema): | |
283 | allow_extra_fields = True |
|
283 | allow_extra_fields = True | |
284 | filter_extra_fields = False |
|
284 | filter_extra_fields = False | |
285 | recursive = v.OneOf(valid_recursive_choices) |
|
285 | recursive = v.OneOf(valid_recursive_choices) | |
286 | chained_validators = [v.ValidPerms(type_='repo_group')] |
|
286 | chained_validators = [v.ValidPerms(type_='repo_group')] | |
287 | return _RepoGroupPermsForm |
|
287 | return _RepoGroupPermsForm | |
288 |
|
288 | |||
289 |
|
289 | |||
290 | def UserGroupPermsForm(): |
|
290 | def UserGroupPermsForm(): | |
291 | class _UserPermsForm(formencode.Schema): |
|
291 | class _UserPermsForm(formencode.Schema): | |
292 | allow_extra_fields = True |
|
292 | allow_extra_fields = True | |
293 | filter_extra_fields = False |
|
293 | filter_extra_fields = False | |
294 | chained_validators = [v.ValidPerms(type_='user_group')] |
|
294 | chained_validators = [v.ValidPerms(type_='user_group')] | |
295 | return _UserPermsForm |
|
295 | return _UserPermsForm | |
296 |
|
296 | |||
297 |
|
297 | |||
298 | def RepoFieldForm(): |
|
298 | def RepoFieldForm(): | |
299 | class _RepoFieldForm(formencode.Schema): |
|
299 | class _RepoFieldForm(formencode.Schema): | |
300 | filter_extra_fields = True |
|
300 | filter_extra_fields = True | |
301 | allow_extra_fields = True |
|
301 | allow_extra_fields = True | |
302 |
|
302 | |||
303 | new_field_key = All(v.FieldKey(), |
|
303 | new_field_key = All(v.FieldKey(), | |
304 | v.UnicodeString(strip=True, min=3, not_empty=True)) |
|
304 | v.UnicodeString(strip=True, min=3, not_empty=True)) | |
305 | new_field_value = v.UnicodeString(not_empty=False, if_missing=u'') |
|
305 | new_field_value = v.UnicodeString(not_empty=False, if_missing=u'') | |
306 | new_field_type = v.OneOf(['str', 'unicode', 'list', 'tuple'], |
|
306 | new_field_type = v.OneOf(['str', 'unicode', 'list', 'tuple'], | |
307 | if_missing='str') |
|
307 | if_missing='str') | |
308 | new_field_label = v.UnicodeString(not_empty=False) |
|
308 | new_field_label = v.UnicodeString(not_empty=False) | |
309 | new_field_desc = v.UnicodeString(not_empty=False) |
|
309 | new_field_desc = v.UnicodeString(not_empty=False) | |
310 |
|
310 | |||
311 | return _RepoFieldForm |
|
311 | return _RepoFieldForm | |
312 |
|
312 | |||
313 |
|
313 | |||
314 | def RepoForkForm(edit=False, old_data={}, supported_backends=BACKENDS.keys(), |
|
314 | def RepoForkForm(edit=False, old_data={}, supported_backends=BACKENDS.keys(), | |
315 | repo_groups=[], landing_revs=[]): |
|
315 | repo_groups=[], landing_revs=[]): | |
316 | class _RepoForkForm(formencode.Schema): |
|
316 | class _RepoForkForm(formencode.Schema): | |
317 | allow_extra_fields = True |
|
317 | allow_extra_fields = True | |
318 | filter_extra_fields = False |
|
318 | filter_extra_fields = False | |
319 | repo_name = All(v.UnicodeString(strip=True, min=1, not_empty=True), |
|
319 | repo_name = All(v.UnicodeString(strip=True, min=1, not_empty=True), | |
320 | v.SlugifyName()) |
|
320 | v.SlugifyName()) | |
321 | repo_group = All(v.CanWriteGroup(), |
|
321 | repo_group = All(v.CanWriteGroup(), | |
322 | v.OneOf(repo_groups, hideList=True)) |
|
322 | v.OneOf(repo_groups, hideList=True)) | |
323 | repo_type = All(v.ValidForkType(old_data), v.OneOf(supported_backends)) |
|
323 | repo_type = All(v.ValidForkType(old_data), v.OneOf(supported_backends)) | |
324 | description = v.UnicodeString(strip=True, min=1, not_empty=True) |
|
324 | description = v.UnicodeString(strip=True, min=1, not_empty=True) | |
325 | private = v.StringBoolean(if_missing=False) |
|
325 | private = v.StringBoolean(if_missing=False) | |
326 | copy_permissions = v.StringBoolean(if_missing=False) |
|
326 | copy_permissions = v.StringBoolean(if_missing=False) | |
327 | fork_parent_id = v.UnicodeString() |
|
327 | fork_parent_id = v.UnicodeString() | |
328 | chained_validators = [v.ValidForkName(edit, old_data)] |
|
328 | chained_validators = [v.ValidForkName(edit, old_data)] | |
329 | landing_rev = v.OneOf(landing_revs, hideList=True) |
|
329 | landing_rev = v.OneOf(landing_revs, hideList=True) | |
330 |
|
330 | |||
331 | return _RepoForkForm |
|
331 | return _RepoForkForm | |
332 |
|
332 | |||
333 |
|
333 | |||
334 | def ApplicationSettingsForm(): |
|
334 | def ApplicationSettingsForm(): | |
335 | class _ApplicationSettingsForm(formencode.Schema): |
|
335 | class _ApplicationSettingsForm(formencode.Schema): | |
336 | allow_extra_fields = True |
|
336 | allow_extra_fields = True | |
337 | filter_extra_fields = False |
|
337 | filter_extra_fields = False | |
338 | rhodecode_title = v.UnicodeString(strip=True, max=40, not_empty=False) |
|
338 | rhodecode_title = v.UnicodeString(strip=True, max=40, not_empty=False) | |
339 | rhodecode_realm = v.UnicodeString(strip=True, min=1, not_empty=True) |
|
339 | rhodecode_realm = v.UnicodeString(strip=True, min=1, not_empty=True) | |
340 | rhodecode_pre_code = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
340 | rhodecode_pre_code = v.UnicodeString(strip=True, min=1, not_empty=False) | |
341 | rhodecode_post_code = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
341 | rhodecode_post_code = v.UnicodeString(strip=True, min=1, not_empty=False) | |
342 | rhodecode_captcha_public_key = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
342 | rhodecode_captcha_public_key = v.UnicodeString(strip=True, min=1, not_empty=False) | |
343 | rhodecode_captcha_private_key = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
343 | rhodecode_captcha_private_key = v.UnicodeString(strip=True, min=1, not_empty=False) | |
344 | rhodecode_create_personal_repo_group = v.StringBoolean(if_missing=False) |
|
344 | rhodecode_create_personal_repo_group = v.StringBoolean(if_missing=False) | |
345 | rhodecode_personal_repo_group_pattern = v.UnicodeString(strip=True, min=1, not_empty=False) |
|
345 | rhodecode_personal_repo_group_pattern = v.UnicodeString(strip=True, min=1, not_empty=False) | |
346 |
|
346 | |||
347 | return _ApplicationSettingsForm |
|
347 | return _ApplicationSettingsForm | |
348 |
|
348 | |||
349 |
|
349 | |||
350 | def ApplicationVisualisationForm(): |
|
350 | def ApplicationVisualisationForm(): | |
351 | class _ApplicationVisualisationForm(formencode.Schema): |
|
351 | class _ApplicationVisualisationForm(formencode.Schema): | |
352 | allow_extra_fields = True |
|
352 | allow_extra_fields = True | |
353 | filter_extra_fields = False |
|
353 | filter_extra_fields = False | |
354 | rhodecode_show_public_icon = v.StringBoolean(if_missing=False) |
|
354 | rhodecode_show_public_icon = v.StringBoolean(if_missing=False) | |
355 | rhodecode_show_private_icon = v.StringBoolean(if_missing=False) |
|
355 | rhodecode_show_private_icon = v.StringBoolean(if_missing=False) | |
356 | rhodecode_stylify_metatags = v.StringBoolean(if_missing=False) |
|
356 | rhodecode_stylify_metatags = v.StringBoolean(if_missing=False) | |
357 |
|
357 | |||
358 | rhodecode_repository_fields = v.StringBoolean(if_missing=False) |
|
358 | rhodecode_repository_fields = v.StringBoolean(if_missing=False) | |
359 | rhodecode_lightweight_journal = v.StringBoolean(if_missing=False) |
|
359 | rhodecode_lightweight_journal = v.StringBoolean(if_missing=False) | |
360 | rhodecode_dashboard_items = v.Int(min=5, not_empty=True) |
|
360 | rhodecode_dashboard_items = v.Int(min=5, not_empty=True) | |
361 | rhodecode_admin_grid_items = v.Int(min=5, not_empty=True) |
|
361 | rhodecode_admin_grid_items = v.Int(min=5, not_empty=True) | |
362 | rhodecode_show_version = v.StringBoolean(if_missing=False) |
|
362 | rhodecode_show_version = v.StringBoolean(if_missing=False) | |
363 | rhodecode_use_gravatar = v.StringBoolean(if_missing=False) |
|
363 | rhodecode_use_gravatar = v.StringBoolean(if_missing=False) | |
364 | rhodecode_markup_renderer = v.OneOf(['markdown', 'rst']) |
|
364 | rhodecode_markup_renderer = v.OneOf(['markdown', 'rst']) | |
365 | rhodecode_gravatar_url = v.UnicodeString(min=3) |
|
365 | rhodecode_gravatar_url = v.UnicodeString(min=3) | |
366 | rhodecode_clone_uri_tmpl = v.UnicodeString(min=3) |
|
366 | rhodecode_clone_uri_tmpl = v.UnicodeString(min=3) | |
367 | rhodecode_support_url = v.UnicodeString() |
|
367 | rhodecode_support_url = v.UnicodeString() | |
368 | rhodecode_show_revision_number = v.StringBoolean(if_missing=False) |
|
368 | rhodecode_show_revision_number = v.StringBoolean(if_missing=False) | |
369 | rhodecode_show_sha_length = v.Int(min=4, not_empty=True) |
|
369 | rhodecode_show_sha_length = v.Int(min=4, not_empty=True) | |
370 |
|
370 | |||
371 | return _ApplicationVisualisationForm |
|
371 | return _ApplicationVisualisationForm | |
372 |
|
372 | |||
373 |
|
373 | |||
374 | class _BaseVcsSettingsForm(formencode.Schema): |
|
374 | class _BaseVcsSettingsForm(formencode.Schema): | |
375 | allow_extra_fields = True |
|
375 | allow_extra_fields = True | |
376 | filter_extra_fields = False |
|
376 | filter_extra_fields = False | |
377 | hooks_changegroup_repo_size = v.StringBoolean(if_missing=False) |
|
377 | hooks_changegroup_repo_size = v.StringBoolean(if_missing=False) | |
378 | hooks_changegroup_push_logger = v.StringBoolean(if_missing=False) |
|
378 | hooks_changegroup_push_logger = v.StringBoolean(if_missing=False) | |
379 | hooks_outgoing_pull_logger = v.StringBoolean(if_missing=False) |
|
379 | hooks_outgoing_pull_logger = v.StringBoolean(if_missing=False) | |
380 |
|
380 | |||
381 | # PR/Code-review |
|
381 | # PR/Code-review | |
382 | rhodecode_pr_merge_enabled = v.StringBoolean(if_missing=False) |
|
382 | rhodecode_pr_merge_enabled = v.StringBoolean(if_missing=False) | |
383 | rhodecode_use_outdated_comments = v.StringBoolean(if_missing=False) |
|
383 | rhodecode_use_outdated_comments = v.StringBoolean(if_missing=False) | |
384 |
|
384 | |||
385 | # hg |
|
385 | # hg | |
386 | extensions_largefiles = v.StringBoolean(if_missing=False) |
|
386 | extensions_largefiles = v.StringBoolean(if_missing=False) | |
387 | phases_publish = v.StringBoolean(if_missing=False) |
|
387 | phases_publish = v.StringBoolean(if_missing=False) | |
388 | rhodecode_hg_use_rebase_for_merging = v.StringBoolean(if_missing=False) |
|
388 | rhodecode_hg_use_rebase_for_merging = v.StringBoolean(if_missing=False) | |
389 |
|
389 | |||
390 | # git |
|
390 | # git | |
391 | vcs_git_lfs_enabled = v.StringBoolean(if_missing=False) |
|
391 | vcs_git_lfs_enabled = v.StringBoolean(if_missing=False) | |
392 |
|
392 | |||
393 | # svn |
|
393 | # svn | |
394 | vcs_svn_proxy_http_requests_enabled = v.StringBoolean(if_missing=False) |
|
394 | vcs_svn_proxy_http_requests_enabled = v.StringBoolean(if_missing=False) | |
395 | vcs_svn_proxy_http_server_url = v.UnicodeString(strip=True, if_missing=None) |
|
395 | vcs_svn_proxy_http_server_url = v.UnicodeString(strip=True, if_missing=None) | |
396 |
|
396 | |||
397 |
|
397 | |||
398 | def ApplicationUiSettingsForm(): |
|
398 | def ApplicationUiSettingsForm(): | |
399 | class _ApplicationUiSettingsForm(_BaseVcsSettingsForm): |
|
399 | class _ApplicationUiSettingsForm(_BaseVcsSettingsForm): | |
400 | web_push_ssl = v.StringBoolean(if_missing=False) |
|
400 | web_push_ssl = v.StringBoolean(if_missing=False) | |
401 | paths_root_path = All( |
|
401 | paths_root_path = All( | |
402 | v.ValidPath(), |
|
402 | v.ValidPath(), | |
403 | v.UnicodeString(strip=True, min=1, not_empty=True) |
|
403 | v.UnicodeString(strip=True, min=1, not_empty=True) | |
404 | ) |
|
404 | ) | |
405 | largefiles_usercache = All( |
|
405 | largefiles_usercache = All( | |
406 | v.ValidPath(), |
|
406 | v.ValidPath(), | |
407 | v.UnicodeString(strip=True, min=2, not_empty=True)) |
|
407 | v.UnicodeString(strip=True, min=2, not_empty=True)) | |
408 | vcs_git_lfs_store_location = All( |
|
408 | vcs_git_lfs_store_location = All( | |
409 | v.ValidPath(), |
|
409 | v.ValidPath(), | |
410 | v.UnicodeString(strip=True, min=2, not_empty=True)) |
|
410 | v.UnicodeString(strip=True, min=2, not_empty=True)) | |
411 | extensions_hgsubversion = v.StringBoolean(if_missing=False) |
|
411 | extensions_hgsubversion = v.StringBoolean(if_missing=False) | |
412 | extensions_hggit = v.StringBoolean(if_missing=False) |
|
412 | extensions_hggit = v.StringBoolean(if_missing=False) | |
413 | new_svn_branch = v.ValidSvnPattern(section='vcs_svn_branch') |
|
413 | new_svn_branch = v.ValidSvnPattern(section='vcs_svn_branch') | |
414 | new_svn_tag = v.ValidSvnPattern(section='vcs_svn_tag') |
|
414 | new_svn_tag = v.ValidSvnPattern(section='vcs_svn_tag') | |
415 |
|
415 | |||
416 | return _ApplicationUiSettingsForm |
|
416 | return _ApplicationUiSettingsForm | |
417 |
|
417 | |||
418 |
|
418 | |||
419 | def RepoVcsSettingsForm(repo_name): |
|
419 | def RepoVcsSettingsForm(repo_name): | |
420 | class _RepoVcsSettingsForm(_BaseVcsSettingsForm): |
|
420 | class _RepoVcsSettingsForm(_BaseVcsSettingsForm): | |
421 | inherit_global_settings = v.StringBoolean(if_missing=False) |
|
421 | inherit_global_settings = v.StringBoolean(if_missing=False) | |
422 | new_svn_branch = v.ValidSvnPattern( |
|
422 | new_svn_branch = v.ValidSvnPattern( | |
423 | section='vcs_svn_branch', repo_name=repo_name) |
|
423 | section='vcs_svn_branch', repo_name=repo_name) | |
424 | new_svn_tag = v.ValidSvnPattern( |
|
424 | new_svn_tag = v.ValidSvnPattern( | |
425 | section='vcs_svn_tag', repo_name=repo_name) |
|
425 | section='vcs_svn_tag', repo_name=repo_name) | |
426 |
|
426 | |||
427 | return _RepoVcsSettingsForm |
|
427 | return _RepoVcsSettingsForm | |
428 |
|
428 | |||
429 |
|
429 | |||
430 | def LabsSettingsForm(): |
|
430 | def LabsSettingsForm(): | |
431 | class _LabSettingsForm(formencode.Schema): |
|
431 | class _LabSettingsForm(formencode.Schema): | |
432 | allow_extra_fields = True |
|
432 | allow_extra_fields = True | |
433 | filter_extra_fields = False |
|
433 | filter_extra_fields = False | |
434 |
|
434 | |||
435 | return _LabSettingsForm |
|
435 | return _LabSettingsForm | |
436 |
|
436 | |||
437 |
|
437 | |||
438 | def ApplicationPermissionsForm( |
|
438 | def ApplicationPermissionsForm( | |
439 | register_choices, password_reset_choices, extern_activate_choices): |
|
439 | register_choices, password_reset_choices, extern_activate_choices): | |
440 | class _DefaultPermissionsForm(formencode.Schema): |
|
440 | class _DefaultPermissionsForm(formencode.Schema): | |
441 | allow_extra_fields = True |
|
441 | allow_extra_fields = True | |
442 | filter_extra_fields = True |
|
442 | filter_extra_fields = True | |
443 |
|
443 | |||
444 | anonymous = v.StringBoolean(if_missing=False) |
|
444 | anonymous = v.StringBoolean(if_missing=False) | |
445 | default_register = v.OneOf(register_choices) |
|
445 | default_register = v.OneOf(register_choices) | |
446 | default_register_message = v.UnicodeString() |
|
446 | default_register_message = v.UnicodeString() | |
447 | default_password_reset = v.OneOf(password_reset_choices) |
|
447 | default_password_reset = v.OneOf(password_reset_choices) | |
448 | default_extern_activate = v.OneOf(extern_activate_choices) |
|
448 | default_extern_activate = v.OneOf(extern_activate_choices) | |
449 |
|
449 | |||
450 | return _DefaultPermissionsForm |
|
450 | return _DefaultPermissionsForm | |
451 |
|
451 | |||
452 |
|
452 | |||
453 | def ObjectPermissionsForm(repo_perms_choices, group_perms_choices, |
|
453 | def ObjectPermissionsForm(repo_perms_choices, group_perms_choices, | |
454 | user_group_perms_choices): |
|
454 | user_group_perms_choices): | |
455 | class _ObjectPermissionsForm(formencode.Schema): |
|
455 | class _ObjectPermissionsForm(formencode.Schema): | |
456 | allow_extra_fields = True |
|
456 | allow_extra_fields = True | |
457 | filter_extra_fields = True |
|
457 | filter_extra_fields = True | |
458 | overwrite_default_repo = v.StringBoolean(if_missing=False) |
|
458 | overwrite_default_repo = v.StringBoolean(if_missing=False) | |
459 | overwrite_default_group = v.StringBoolean(if_missing=False) |
|
459 | overwrite_default_group = v.StringBoolean(if_missing=False) | |
460 | overwrite_default_user_group = v.StringBoolean(if_missing=False) |
|
460 | overwrite_default_user_group = v.StringBoolean(if_missing=False) | |
461 | default_repo_perm = v.OneOf(repo_perms_choices) |
|
461 | default_repo_perm = v.OneOf(repo_perms_choices) | |
462 | default_group_perm = v.OneOf(group_perms_choices) |
|
462 | default_group_perm = v.OneOf(group_perms_choices) | |
463 | default_user_group_perm = v.OneOf(user_group_perms_choices) |
|
463 | default_user_group_perm = v.OneOf(user_group_perms_choices) | |
464 |
|
464 | |||
465 | return _ObjectPermissionsForm |
|
465 | return _ObjectPermissionsForm | |
466 |
|
466 | |||
467 |
|
467 | |||
468 | def UserPermissionsForm(create_choices, create_on_write_choices, |
|
468 | def UserPermissionsForm(create_choices, create_on_write_choices, | |
469 | repo_group_create_choices, user_group_create_choices, |
|
469 | repo_group_create_choices, user_group_create_choices, | |
470 | fork_choices, inherit_default_permissions_choices): |
|
470 | fork_choices, inherit_default_permissions_choices): | |
471 | class _DefaultPermissionsForm(formencode.Schema): |
|
471 | class _DefaultPermissionsForm(formencode.Schema): | |
472 | allow_extra_fields = True |
|
472 | allow_extra_fields = True | |
473 | filter_extra_fields = True |
|
473 | filter_extra_fields = True | |
474 |
|
474 | |||
475 | anonymous = v.StringBoolean(if_missing=False) |
|
475 | anonymous = v.StringBoolean(if_missing=False) | |
476 |
|
476 | |||
477 | default_repo_create = v.OneOf(create_choices) |
|
477 | default_repo_create = v.OneOf(create_choices) | |
478 | default_repo_create_on_write = v.OneOf(create_on_write_choices) |
|
478 | default_repo_create_on_write = v.OneOf(create_on_write_choices) | |
479 | default_user_group_create = v.OneOf(user_group_create_choices) |
|
479 | default_user_group_create = v.OneOf(user_group_create_choices) | |
480 | default_repo_group_create = v.OneOf(repo_group_create_choices) |
|
480 | default_repo_group_create = v.OneOf(repo_group_create_choices) | |
481 | default_fork_create = v.OneOf(fork_choices) |
|
481 | default_fork_create = v.OneOf(fork_choices) | |
482 | default_inherit_default_permissions = v.OneOf(inherit_default_permissions_choices) |
|
482 | default_inherit_default_permissions = v.OneOf(inherit_default_permissions_choices) | |
483 |
|
483 | |||
484 | return _DefaultPermissionsForm |
|
484 | return _DefaultPermissionsForm | |
485 |
|
485 | |||
486 |
|
486 | |||
487 | def UserIndividualPermissionsForm(): |
|
487 | def UserIndividualPermissionsForm(): | |
488 | class _DefaultPermissionsForm(formencode.Schema): |
|
488 | class _DefaultPermissionsForm(formencode.Schema): | |
489 | allow_extra_fields = True |
|
489 | allow_extra_fields = True | |
490 | filter_extra_fields = True |
|
490 | filter_extra_fields = True | |
491 |
|
491 | |||
492 | inherit_default_permissions = v.StringBoolean(if_missing=False) |
|
492 | inherit_default_permissions = v.StringBoolean(if_missing=False) | |
493 |
|
493 | |||
494 | return _DefaultPermissionsForm |
|
494 | return _DefaultPermissionsForm | |
495 |
|
495 | |||
496 |
|
496 | |||
497 | def DefaultsForm(edit=False, old_data={}, supported_backends=BACKENDS.keys()): |
|
497 | def DefaultsForm(edit=False, old_data={}, supported_backends=BACKENDS.keys()): | |
498 | class _DefaultsForm(formencode.Schema): |
|
498 | class _DefaultsForm(formencode.Schema): | |
499 | allow_extra_fields = True |
|
499 | allow_extra_fields = True | |
500 | filter_extra_fields = True |
|
500 | filter_extra_fields = True | |
501 | default_repo_type = v.OneOf(supported_backends) |
|
501 | default_repo_type = v.OneOf(supported_backends) | |
502 | default_repo_private = v.StringBoolean(if_missing=False) |
|
502 | default_repo_private = v.StringBoolean(if_missing=False) | |
503 | default_repo_enable_statistics = v.StringBoolean(if_missing=False) |
|
503 | default_repo_enable_statistics = v.StringBoolean(if_missing=False) | |
504 | default_repo_enable_downloads = v.StringBoolean(if_missing=False) |
|
504 | default_repo_enable_downloads = v.StringBoolean(if_missing=False) | |
505 | default_repo_enable_locking = v.StringBoolean(if_missing=False) |
|
505 | default_repo_enable_locking = v.StringBoolean(if_missing=False) | |
506 |
|
506 | |||
507 | return _DefaultsForm |
|
507 | return _DefaultsForm | |
508 |
|
508 | |||
509 |
|
509 | |||
510 | def AuthSettingsForm(): |
|
510 | def AuthSettingsForm(): | |
511 | class _AuthSettingsForm(formencode.Schema): |
|
511 | class _AuthSettingsForm(formencode.Schema): | |
512 | allow_extra_fields = True |
|
512 | allow_extra_fields = True | |
513 | filter_extra_fields = True |
|
513 | filter_extra_fields = True | |
514 | auth_plugins = All(v.ValidAuthPlugins(), |
|
514 | auth_plugins = All(v.ValidAuthPlugins(), | |
515 | v.UniqueListFromString()(not_empty=True)) |
|
515 | v.UniqueListFromString()(not_empty=True)) | |
516 |
|
516 | |||
517 | return _AuthSettingsForm |
|
517 | return _AuthSettingsForm | |
518 |
|
518 | |||
519 |
|
519 | |||
520 | def UserExtraEmailForm(): |
|
520 | def UserExtraEmailForm(): | |
521 | class _UserExtraEmailForm(formencode.Schema): |
|
521 | class _UserExtraEmailForm(formencode.Schema): | |
522 | email = All(v.UniqSystemEmail(), v.Email(not_empty=True)) |
|
522 | email = All(v.UniqSystemEmail(), v.Email(not_empty=True)) | |
523 | return _UserExtraEmailForm |
|
523 | return _UserExtraEmailForm | |
524 |
|
524 | |||
525 |
|
525 | |||
526 | def UserExtraIpForm(): |
|
526 | def UserExtraIpForm(): | |
527 | class _UserExtraIpForm(formencode.Schema): |
|
527 | class _UserExtraIpForm(formencode.Schema): | |
528 | ip = v.ValidIp()(not_empty=True) |
|
528 | ip = v.ValidIp()(not_empty=True) | |
529 | return _UserExtraIpForm |
|
529 | return _UserExtraIpForm | |
530 |
|
530 | |||
531 |
|
531 | |||
532 |
|
532 | |||
533 | def PullRequestForm(repo_id): |
|
533 | def PullRequestForm(repo_id): | |
534 | class ReviewerForm(formencode.Schema): |
|
534 | class ReviewerForm(formencode.Schema): | |
535 | user_id = v.Int(not_empty=True) |
|
535 | user_id = v.Int(not_empty=True) | |
536 | reasons = All() |
|
536 | reasons = All() | |
537 |
|
537 | |||
538 | class _PullRequestForm(formencode.Schema): |
|
538 | class _PullRequestForm(formencode.Schema): | |
539 | allow_extra_fields = True |
|
539 | allow_extra_fields = True | |
540 | filter_extra_fields = True |
|
540 | filter_extra_fields = True | |
541 |
|
541 | |||
542 | user = v.UnicodeString(strip=True, required=True) |
|
542 | user = v.UnicodeString(strip=True, required=True) | |
543 | source_repo = v.UnicodeString(strip=True, required=True) |
|
543 | source_repo = v.UnicodeString(strip=True, required=True) | |
544 | source_ref = v.UnicodeString(strip=True, required=True) |
|
544 | source_ref = v.UnicodeString(strip=True, required=True) | |
545 | target_repo = v.UnicodeString(strip=True, required=True) |
|
545 | target_repo = v.UnicodeString(strip=True, required=True) | |
546 | target_ref = v.UnicodeString(strip=True, required=True) |
|
546 | target_ref = v.UnicodeString(strip=True, required=True) | |
547 | revisions = All(#v.NotReviewedRevisions(repo_id)(), |
|
547 | revisions = All(#v.NotReviewedRevisions(repo_id)(), | |
548 | v.UniqueList()(not_empty=True)) |
|
548 | v.UniqueList()(not_empty=True)) | |
549 | review_members = formencode.ForEach(ReviewerForm()) |
|
549 | review_members = formencode.ForEach(ReviewerForm()) | |
550 | pullrequest_title = v.UnicodeString(strip=True, required=True) |
|
550 | pullrequest_title = v.UnicodeString(strip=True, required=True) | |
551 | pullrequest_desc = v.UnicodeString(strip=True, required=False) |
|
551 | pullrequest_desc = v.UnicodeString(strip=True, required=False) | |
552 |
|
552 | |||
553 | return _PullRequestForm |
|
553 | return _PullRequestForm | |
554 |
|
554 | |||
555 |
|
555 | |||
556 | def IssueTrackerPatternsForm(): |
|
556 | def IssueTrackerPatternsForm(): | |
557 | class _IssueTrackerPatternsForm(formencode.Schema): |
|
557 | class _IssueTrackerPatternsForm(formencode.Schema): | |
558 | allow_extra_fields = True |
|
558 | allow_extra_fields = True | |
559 | filter_extra_fields = False |
|
559 | filter_extra_fields = False | |
560 | chained_validators = [v.ValidPattern()] |
|
560 | chained_validators = [v.ValidPattern()] | |
561 | return _IssueTrackerPatternsForm |
|
561 | return _IssueTrackerPatternsForm |
@@ -1,321 +1,326 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2016-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2016-2017 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 colander |
|
21 | import colander | |
22 |
|
22 | |||
23 | from rhodecode.translation import _ |
|
23 | from rhodecode.translation import _ | |
24 | from rhodecode.model.validation_schema import validators, preparers, types |
|
24 | from rhodecode.model.validation_schema import validators, preparers, types | |
25 |
|
25 | |||
26 | DEFAULT_LANDING_REF = 'rev:tip' |
|
26 | DEFAULT_LANDING_REF = 'rev:tip' | |
27 |
|
27 | |||
28 |
|
28 | |||
29 | def get_group_and_repo(repo_name): |
|
29 | def get_group_and_repo(repo_name): | |
30 | from rhodecode.model.repo_group import RepoGroupModel |
|
30 | from rhodecode.model.repo_group import RepoGroupModel | |
31 | return RepoGroupModel()._get_group_name_and_parent( |
|
31 | return RepoGroupModel()._get_group_name_and_parent( | |
32 | repo_name, get_object=True) |
|
32 | repo_name, get_object=True) | |
33 |
|
33 | |||
34 |
|
34 | |||
35 | @colander.deferred |
|
35 | @colander.deferred | |
36 | def deferred_repo_type_validator(node, kw): |
|
36 | def deferred_repo_type_validator(node, kw): | |
37 | options = kw.get('repo_type_options', []) |
|
37 | options = kw.get('repo_type_options', []) | |
38 | return colander.OneOf([x for x in options]) |
|
38 | return colander.OneOf([x for x in options]) | |
39 |
|
39 | |||
40 |
|
40 | |||
41 | @colander.deferred |
|
41 | @colander.deferred | |
42 | def deferred_repo_owner_validator(node, kw): |
|
42 | def deferred_repo_owner_validator(node, kw): | |
43 |
|
43 | |||
44 | def repo_owner_validator(node, value): |
|
44 | def repo_owner_validator(node, value): | |
45 | from rhodecode.model.db import User |
|
45 | from rhodecode.model.db import User | |
46 | existing = User.get_by_username(value) |
|
46 | existing = User.get_by_username(value) | |
47 | if not existing: |
|
47 | if not existing: | |
48 | msg = _(u'Repo owner with id `{}` does not exists').format(value) |
|
48 | msg = _(u'Repo owner with id `{}` does not exists').format(value) | |
49 | raise colander.Invalid(node, msg) |
|
49 | raise colander.Invalid(node, msg) | |
50 |
|
50 | |||
51 | return repo_owner_validator |
|
51 | return repo_owner_validator | |
52 |
|
52 | |||
53 |
|
53 | |||
54 | @colander.deferred |
|
54 | @colander.deferred | |
55 | def deferred_landing_ref_validator(node, kw): |
|
55 | def deferred_landing_ref_validator(node, kw): | |
56 | options = kw.get('repo_ref_options', [DEFAULT_LANDING_REF]) |
|
56 | options = kw.get('repo_ref_options', [DEFAULT_LANDING_REF]) | |
57 | return colander.OneOf([x for x in options]) |
|
57 | return colander.OneOf([x for x in options]) | |
58 |
|
58 | |||
59 |
|
59 | |||
60 | @colander.deferred |
|
60 | @colander.deferred | |
61 | def deferred_fork_of_validator(node, kw): |
|
61 | def deferred_fork_of_validator(node, kw): | |
62 | old_values = kw.get('old_values') or {} |
|
62 | old_values = kw.get('old_values') or {} | |
63 |
|
63 | |||
64 | def fork_of_validator(node, value): |
|
64 | def fork_of_validator(node, value): | |
65 | from rhodecode.model.db import Repository, RepoGroup |
|
65 | from rhodecode.model.db import Repository, RepoGroup | |
66 | existing = Repository.get_by_repo_name(value) |
|
66 | existing = Repository.get_by_repo_name(value) | |
67 | if not existing: |
|
67 | if not existing: | |
68 | msg = _(u'Fork with id `{}` does not exists').format(value) |
|
68 | msg = _(u'Fork with id `{}` does not exists').format(value) | |
69 | raise colander.Invalid(node, msg) |
|
69 | raise colander.Invalid(node, msg) | |
70 | elif old_values['repo_name'] == existing.repo_name: |
|
70 | elif old_values['repo_name'] == existing.repo_name: | |
71 | msg = _(u'Cannot set fork of ' |
|
71 | msg = _(u'Cannot set fork of ' | |
72 | u'parameter of this repository to itself').format(value) |
|
72 | u'parameter of this repository to itself').format(value) | |
73 | raise colander.Invalid(node, msg) |
|
73 | raise colander.Invalid(node, msg) | |
74 |
|
74 | |||
75 | return fork_of_validator |
|
75 | return fork_of_validator | |
76 |
|
76 | |||
77 |
|
77 | |||
78 | @colander.deferred |
|
78 | @colander.deferred | |
79 | def deferred_can_write_to_group_validator(node, kw): |
|
79 | def deferred_can_write_to_group_validator(node, kw): | |
80 | request_user = kw.get('user') |
|
80 | request_user = kw.get('user') | |
81 | old_values = kw.get('old_values') or {} |
|
81 | old_values = kw.get('old_values') or {} | |
82 |
|
82 | |||
83 | def can_write_to_group_validator(node, value): |
|
83 | def can_write_to_group_validator(node, value): | |
84 | """ |
|
84 | """ | |
85 | Checks if given repo path is writable by user. This includes checks if |
|
85 | Checks if given repo path is writable by user. This includes checks if | |
86 | user is allowed to create repositories under root path or under |
|
86 | user is allowed to create repositories under root path or under | |
87 | repo group paths |
|
87 | repo group paths | |
88 | """ |
|
88 | """ | |
89 |
|
89 | |||
90 | from rhodecode.lib.auth import ( |
|
90 | from rhodecode.lib.auth import ( | |
91 | HasPermissionAny, HasRepoGroupPermissionAny) |
|
91 | HasPermissionAny, HasRepoGroupPermissionAny) | |
92 | from rhodecode.model.repo_group import RepoGroupModel |
|
92 | from rhodecode.model.repo_group import RepoGroupModel | |
93 |
|
93 | |||
94 | messages = { |
|
94 | messages = { | |
95 | 'invalid_repo_group': |
|
95 | 'invalid_repo_group': | |
96 | _(u"Repository group `{}` does not exist"), |
|
96 | _(u"Repository group `{}` does not exist"), | |
97 | # permissions denied we expose as not existing, to prevent |
|
97 | # permissions denied we expose as not existing, to prevent | |
98 | # resource discovery |
|
98 | # resource discovery | |
99 | 'permission_denied': |
|
99 | 'permission_denied': | |
100 | _(u"Repository group `{}` does not exist"), |
|
100 | _(u"Repository group `{}` does not exist"), | |
101 | 'permission_denied_root': |
|
101 | 'permission_denied_root': | |
102 | _(u"You do not have the permission to store " |
|
102 | _(u"You do not have the permission to store " | |
103 | u"repositories in the root location.") |
|
103 | u"repositories in the root location.") | |
104 | } |
|
104 | } | |
105 |
|
105 | |||
106 | value = value['repo_group_name'] |
|
106 | value = value['repo_group_name'] | |
107 |
|
107 | |||
108 | is_root_location = value is types.RootLocation |
|
108 | is_root_location = value is types.RootLocation | |
109 | # NOT initialized validators, we must call them |
|
109 | # NOT initialized validators, we must call them | |
110 | can_create_repos_at_root = HasPermissionAny( |
|
110 | can_create_repos_at_root = HasPermissionAny( | |
111 | 'hg.admin', 'hg.create.repository') |
|
111 | 'hg.admin', 'hg.create.repository') | |
112 |
|
112 | |||
113 | # if values is root location, we simply need to check if we can write |
|
113 | # if values is root location, we simply need to check if we can write | |
114 | # to root location ! |
|
114 | # to root location ! | |
115 | if is_root_location: |
|
115 | if is_root_location: | |
116 | if can_create_repos_at_root(user=request_user): |
|
116 | if can_create_repos_at_root(user=request_user): | |
117 | # we can create repo group inside tool-level. No more checks |
|
117 | # we can create repo group inside tool-level. No more checks | |
118 | # are required |
|
118 | # are required | |
119 | return |
|
119 | return | |
120 | else: |
|
120 | else: | |
121 | # "fake" node name as repo_name, otherwise we oddly report |
|
121 | # "fake" node name as repo_name, otherwise we oddly report | |
122 | # the error as if it was coming form repo_group |
|
122 | # the error as if it was coming form repo_group | |
123 | # however repo_group is empty when using root location. |
|
123 | # however repo_group is empty when using root location. | |
124 | node.name = 'repo_name' |
|
124 | node.name = 'repo_name' | |
125 | raise colander.Invalid(node, messages['permission_denied_root']) |
|
125 | raise colander.Invalid(node, messages['permission_denied_root']) | |
126 |
|
126 | |||
127 | # parent group not exists ? throw an error |
|
127 | # parent group not exists ? throw an error | |
128 | repo_group = RepoGroupModel().get_by_group_name(value) |
|
128 | repo_group = RepoGroupModel().get_by_group_name(value) | |
129 | if value and not repo_group: |
|
129 | if value and not repo_group: | |
130 | raise colander.Invalid( |
|
130 | raise colander.Invalid( | |
131 | node, messages['invalid_repo_group'].format(value)) |
|
131 | node, messages['invalid_repo_group'].format(value)) | |
132 |
|
132 | |||
133 | gr_name = repo_group.group_name |
|
133 | gr_name = repo_group.group_name | |
134 |
|
134 | |||
135 | # create repositories with write permission on group is set to true |
|
135 | # create repositories with write permission on group is set to true | |
136 | create_on_write = HasPermissionAny( |
|
136 | create_on_write = HasPermissionAny( | |
137 | 'hg.create.write_on_repogroup.true')(user=request_user) |
|
137 | 'hg.create.write_on_repogroup.true')(user=request_user) | |
138 |
|
138 | |||
139 | group_admin = HasRepoGroupPermissionAny('group.admin')( |
|
139 | group_admin = HasRepoGroupPermissionAny('group.admin')( | |
140 | gr_name, 'can write into group validator', user=request_user) |
|
140 | gr_name, 'can write into group validator', user=request_user) | |
141 | group_write = HasRepoGroupPermissionAny('group.write')( |
|
141 | group_write = HasRepoGroupPermissionAny('group.write')( | |
142 | gr_name, 'can write into group validator', user=request_user) |
|
142 | gr_name, 'can write into group validator', user=request_user) | |
143 |
|
143 | |||
144 | forbidden = not (group_admin or (group_write and create_on_write)) |
|
144 | forbidden = not (group_admin or (group_write and create_on_write)) | |
145 |
|
145 | |||
146 | # TODO: handling of old values, and detecting no-change in path |
|
146 | # TODO: handling of old values, and detecting no-change in path | |
147 | # to skip permission checks in such cases. This only needs to be |
|
147 | # to skip permission checks in such cases. This only needs to be | |
148 | # implemented if we use this schema in forms as well |
|
148 | # implemented if we use this schema in forms as well | |
149 |
|
149 | |||
150 | # gid = (old_data['repo_group'].get('group_id') |
|
150 | # gid = (old_data['repo_group'].get('group_id') | |
151 | # if (old_data and 'repo_group' in old_data) else None) |
|
151 | # if (old_data and 'repo_group' in old_data) else None) | |
152 | # value_changed = gid != safe_int(value) |
|
152 | # value_changed = gid != safe_int(value) | |
153 | # new = not old_data |
|
153 | # new = not old_data | |
154 |
|
154 | |||
155 | # do check if we changed the value, there's a case that someone got |
|
155 | # do check if we changed the value, there's a case that someone got | |
156 | # revoked write permissions to a repository, he still created, we |
|
156 | # revoked write permissions to a repository, he still created, we | |
157 | # don't need to check permission if he didn't change the value of |
|
157 | # don't need to check permission if he didn't change the value of | |
158 | # groups in form box |
|
158 | # groups in form box | |
159 | # if value_changed or new: |
|
159 | # if value_changed or new: | |
160 | # # parent group need to be existing |
|
160 | # # parent group need to be existing | |
161 | # TODO: ENDS HERE |
|
161 | # TODO: ENDS HERE | |
162 |
|
162 | |||
163 | if repo_group and forbidden: |
|
163 | if repo_group and forbidden: | |
164 | msg = messages['permission_denied'].format(value) |
|
164 | msg = messages['permission_denied'].format(value) | |
165 | raise colander.Invalid(node, msg) |
|
165 | raise colander.Invalid(node, msg) | |
166 |
|
166 | |||
167 | return can_write_to_group_validator |
|
167 | return can_write_to_group_validator | |
168 |
|
168 | |||
169 |
|
169 | |||
170 | @colander.deferred |
|
170 | @colander.deferred | |
171 | def deferred_unique_name_validator(node, kw): |
|
171 | def deferred_unique_name_validator(node, kw): | |
172 | request_user = kw.get('user') |
|
172 | request_user = kw.get('user') | |
173 | old_values = kw.get('old_values') or {} |
|
173 | old_values = kw.get('old_values') or {} | |
174 |
|
174 | |||
175 | def unique_name_validator(node, value): |
|
175 | def unique_name_validator(node, value): | |
176 | from rhodecode.model.db import Repository, RepoGroup |
|
176 | from rhodecode.model.db import Repository, RepoGroup | |
177 | name_changed = value != old_values.get('repo_name') |
|
177 | name_changed = value != old_values.get('repo_name') | |
178 |
|
178 | |||
179 | existing = Repository.get_by_repo_name(value) |
|
179 | existing = Repository.get_by_repo_name(value) | |
180 | if name_changed and existing: |
|
180 | if name_changed and existing: | |
181 | msg = _(u'Repository with name `{}` already exists').format(value) |
|
181 | msg = _(u'Repository with name `{}` already exists').format(value) | |
182 | raise colander.Invalid(node, msg) |
|
182 | raise colander.Invalid(node, msg) | |
183 |
|
183 | |||
184 | existing_group = RepoGroup.get_by_group_name(value) |
|
184 | existing_group = RepoGroup.get_by_group_name(value) | |
185 | if name_changed and existing_group: |
|
185 | if name_changed and existing_group: | |
186 | msg = _(u'Repository group with name `{}` already exists').format( |
|
186 | msg = _(u'Repository group with name `{}` already exists').format( | |
187 | value) |
|
187 | value) | |
188 | raise colander.Invalid(node, msg) |
|
188 | raise colander.Invalid(node, msg) | |
189 | return unique_name_validator |
|
189 | return unique_name_validator | |
190 |
|
190 | |||
191 |
|
191 | |||
192 | @colander.deferred |
|
192 | @colander.deferred | |
193 | def deferred_repo_name_validator(node, kw): |
|
193 | def deferred_repo_name_validator(node, kw): | |
194 | return validators.valid_name_validator |
|
194 | def no_git_suffix_validator(node, value): | |
|
195 | if value.endswith('.git'): | |||
|
196 | msg = _('Repository name cannot end with .git') | |||
|
197 | raise colander.Invalid(node, msg) | |||
|
198 | return colander.All( | |||
|
199 | no_git_suffix_validator, validators.valid_name_validator) | |||
195 |
|
200 | |||
196 |
|
201 | |||
197 | class GroupType(colander.Mapping): |
|
202 | class GroupType(colander.Mapping): | |
198 | def _validate(self, node, value): |
|
203 | def _validate(self, node, value): | |
199 | try: |
|
204 | try: | |
200 | return dict(repo_group_name=value) |
|
205 | return dict(repo_group_name=value) | |
201 | except Exception as e: |
|
206 | except Exception as e: | |
202 | raise colander.Invalid( |
|
207 | raise colander.Invalid( | |
203 | node, '"${val}" is not a mapping type: ${err}'.format( |
|
208 | node, '"${val}" is not a mapping type: ${err}'.format( | |
204 | val=value, err=e)) |
|
209 | val=value, err=e)) | |
205 |
|
210 | |||
206 | def deserialize(self, node, cstruct): |
|
211 | def deserialize(self, node, cstruct): | |
207 | if cstruct is colander.null: |
|
212 | if cstruct is colander.null: | |
208 | return cstruct |
|
213 | return cstruct | |
209 |
|
214 | |||
210 | appstruct = super(GroupType, self).deserialize(node, cstruct) |
|
215 | appstruct = super(GroupType, self).deserialize(node, cstruct) | |
211 | validated_name = appstruct['repo_group_name'] |
|
216 | validated_name = appstruct['repo_group_name'] | |
212 |
|
217 | |||
213 | # inject group based on once deserialized data |
|
218 | # inject group based on once deserialized data | |
214 | (repo_name_without_group, |
|
219 | (repo_name_without_group, | |
215 | parent_group_name, |
|
220 | parent_group_name, | |
216 | parent_group) = get_group_and_repo(validated_name) |
|
221 | parent_group) = get_group_and_repo(validated_name) | |
217 |
|
222 | |||
218 | appstruct['repo_name_without_group'] = repo_name_without_group |
|
223 | appstruct['repo_name_without_group'] = repo_name_without_group | |
219 | appstruct['repo_group_name'] = parent_group_name or types.RootLocation |
|
224 | appstruct['repo_group_name'] = parent_group_name or types.RootLocation | |
220 | if parent_group: |
|
225 | if parent_group: | |
221 | appstruct['repo_group_id'] = parent_group.group_id |
|
226 | appstruct['repo_group_id'] = parent_group.group_id | |
222 |
|
227 | |||
223 | return appstruct |
|
228 | return appstruct | |
224 |
|
229 | |||
225 |
|
230 | |||
226 | class GroupSchema(colander.SchemaNode): |
|
231 | class GroupSchema(colander.SchemaNode): | |
227 | schema_type = GroupType |
|
232 | schema_type = GroupType | |
228 | validator = deferred_can_write_to_group_validator |
|
233 | validator = deferred_can_write_to_group_validator | |
229 | missing = colander.null |
|
234 | missing = colander.null | |
230 |
|
235 | |||
231 |
|
236 | |||
232 | class RepoGroup(GroupSchema): |
|
237 | class RepoGroup(GroupSchema): | |
233 | repo_group_name = colander.SchemaNode( |
|
238 | repo_group_name = colander.SchemaNode( | |
234 | types.GroupNameType()) |
|
239 | types.GroupNameType()) | |
235 | repo_group_id = colander.SchemaNode( |
|
240 | repo_group_id = colander.SchemaNode( | |
236 | colander.String(), missing=None) |
|
241 | colander.String(), missing=None) | |
237 | repo_name_without_group = colander.SchemaNode( |
|
242 | repo_name_without_group = colander.SchemaNode( | |
238 | colander.String(), missing=None) |
|
243 | colander.String(), missing=None) | |
239 |
|
244 | |||
240 |
|
245 | |||
241 | class RepoGroupAccessSchema(colander.MappingSchema): |
|
246 | class RepoGroupAccessSchema(colander.MappingSchema): | |
242 | repo_group = RepoGroup() |
|
247 | repo_group = RepoGroup() | |
243 |
|
248 | |||
244 |
|
249 | |||
245 | class RepoNameUniqueSchema(colander.MappingSchema): |
|
250 | class RepoNameUniqueSchema(colander.MappingSchema): | |
246 | unique_repo_name = colander.SchemaNode( |
|
251 | unique_repo_name = colander.SchemaNode( | |
247 | colander.String(), |
|
252 | colander.String(), | |
248 | validator=deferred_unique_name_validator) |
|
253 | validator=deferred_unique_name_validator) | |
249 |
|
254 | |||
250 |
|
255 | |||
251 | class RepoSchema(colander.MappingSchema): |
|
256 | class RepoSchema(colander.MappingSchema): | |
252 |
|
257 | |||
253 | repo_name = colander.SchemaNode( |
|
258 | repo_name = colander.SchemaNode( | |
254 | types.RepoNameType(), |
|
259 | types.RepoNameType(), | |
255 | validator=deferred_repo_name_validator) |
|
260 | validator=deferred_repo_name_validator) | |
256 |
|
261 | |||
257 | repo_type = colander.SchemaNode( |
|
262 | repo_type = colander.SchemaNode( | |
258 | colander.String(), |
|
263 | colander.String(), | |
259 | validator=deferred_repo_type_validator) |
|
264 | validator=deferred_repo_type_validator) | |
260 |
|
265 | |||
261 | repo_owner = colander.SchemaNode( |
|
266 | repo_owner = colander.SchemaNode( | |
262 | colander.String(), |
|
267 | colander.String(), | |
263 | validator=deferred_repo_owner_validator) |
|
268 | validator=deferred_repo_owner_validator) | |
264 |
|
269 | |||
265 | repo_description = colander.SchemaNode( |
|
270 | repo_description = colander.SchemaNode( | |
266 | colander.String(), missing='') |
|
271 | colander.String(), missing='') | |
267 |
|
272 | |||
268 | repo_landing_commit_ref = colander.SchemaNode( |
|
273 | repo_landing_commit_ref = colander.SchemaNode( | |
269 | colander.String(), |
|
274 | colander.String(), | |
270 | validator=deferred_landing_ref_validator, |
|
275 | validator=deferred_landing_ref_validator, | |
271 | preparers=[preparers.strip_preparer], |
|
276 | preparers=[preparers.strip_preparer], | |
272 | missing=DEFAULT_LANDING_REF) |
|
277 | missing=DEFAULT_LANDING_REF) | |
273 |
|
278 | |||
274 | repo_clone_uri = colander.SchemaNode( |
|
279 | repo_clone_uri = colander.SchemaNode( | |
275 | colander.String(), |
|
280 | colander.String(), | |
276 | validator=colander.All(colander.Length(min=1)), |
|
281 | validator=colander.All(colander.Length(min=1)), | |
277 | preparers=[preparers.strip_preparer], |
|
282 | preparers=[preparers.strip_preparer], | |
278 | missing='') |
|
283 | missing='') | |
279 |
|
284 | |||
280 | repo_fork_of = colander.SchemaNode( |
|
285 | repo_fork_of = colander.SchemaNode( | |
281 | colander.String(), |
|
286 | colander.String(), | |
282 | validator=deferred_fork_of_validator, |
|
287 | validator=deferred_fork_of_validator, | |
283 | missing=None) |
|
288 | missing=None) | |
284 |
|
289 | |||
285 | repo_private = colander.SchemaNode( |
|
290 | repo_private = colander.SchemaNode( | |
286 | types.StringBooleanType(), |
|
291 | types.StringBooleanType(), | |
287 | missing=False) |
|
292 | missing=False) | |
288 | repo_copy_permissions = colander.SchemaNode( |
|
293 | repo_copy_permissions = colander.SchemaNode( | |
289 | types.StringBooleanType(), |
|
294 | types.StringBooleanType(), | |
290 | missing=False) |
|
295 | missing=False) | |
291 | repo_enable_statistics = colander.SchemaNode( |
|
296 | repo_enable_statistics = colander.SchemaNode( | |
292 | types.StringBooleanType(), |
|
297 | types.StringBooleanType(), | |
293 | missing=False) |
|
298 | missing=False) | |
294 | repo_enable_downloads = colander.SchemaNode( |
|
299 | repo_enable_downloads = colander.SchemaNode( | |
295 | types.StringBooleanType(), |
|
300 | types.StringBooleanType(), | |
296 | missing=False) |
|
301 | missing=False) | |
297 | repo_enable_locking = colander.SchemaNode( |
|
302 | repo_enable_locking = colander.SchemaNode( | |
298 | types.StringBooleanType(), |
|
303 | types.StringBooleanType(), | |
299 | missing=False) |
|
304 | missing=False) | |
300 |
|
305 | |||
301 | def deserialize(self, cstruct): |
|
306 | def deserialize(self, cstruct): | |
302 | """ |
|
307 | """ | |
303 | Custom deserialize that allows to chain validation, and verify |
|
308 | Custom deserialize that allows to chain validation, and verify | |
304 | permissions, and as last step uniqueness |
|
309 | permissions, and as last step uniqueness | |
305 | """ |
|
310 | """ | |
306 |
|
311 | |||
307 | # first pass, to validate given data |
|
312 | # first pass, to validate given data | |
308 | appstruct = super(RepoSchema, self).deserialize(cstruct) |
|
313 | appstruct = super(RepoSchema, self).deserialize(cstruct) | |
309 | validated_name = appstruct['repo_name'] |
|
314 | validated_name = appstruct['repo_name'] | |
310 |
|
315 | |||
311 | # second pass to validate permissions to repo_group |
|
316 | # second pass to validate permissions to repo_group | |
312 | second = RepoGroupAccessSchema().bind(**self.bindings) |
|
317 | second = RepoGroupAccessSchema().bind(**self.bindings) | |
313 | appstruct_second = second.deserialize({'repo_group': validated_name}) |
|
318 | appstruct_second = second.deserialize({'repo_group': validated_name}) | |
314 | # save result |
|
319 | # save result | |
315 | appstruct['repo_group'] = appstruct_second['repo_group'] |
|
320 | appstruct['repo_group'] = appstruct_second['repo_group'] | |
316 |
|
321 | |||
317 | # thirds to validate uniqueness |
|
322 | # thirds to validate uniqueness | |
318 | third = RepoNameUniqueSchema().bind(**self.bindings) |
|
323 | third = RepoNameUniqueSchema().bind(**self.bindings) | |
319 | third.deserialize({'unique_repo_name': validated_name}) |
|
324 | third.deserialize({'unique_repo_name': validated_name}) | |
320 |
|
325 | |||
321 | return appstruct |
|
326 | return appstruct |
@@ -1,1089 +1,1109 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 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 | """ |
|
21 | """ | |
22 | Set of generic validators |
|
22 | Set of generic validators | |
23 | """ |
|
23 | """ | |
24 |
|
24 | |||
25 | import logging |
|
25 | import logging | |
26 | import os |
|
26 | import os | |
27 | import re |
|
27 | import re | |
28 | from collections import defaultdict |
|
28 | from collections import defaultdict | |
29 |
|
29 | |||
30 | import formencode |
|
30 | import formencode | |
31 | import ipaddress |
|
31 | import ipaddress | |
32 | from formencode.validators import ( |
|
32 | from formencode.validators import ( | |
33 | UnicodeString, OneOf, Int, Number, Regex, Email, Bool, StringBoolean, Set, |
|
33 | UnicodeString, OneOf, Int, Number, Regex, Email, Bool, StringBoolean, Set, | |
34 | NotEmpty, IPAddress, CIDR, String, FancyValidator |
|
34 | NotEmpty, IPAddress, CIDR, String, FancyValidator | |
35 | ) |
|
35 | ) | |
36 | from pylons.i18n.translation import _ |
|
36 | from pylons.i18n.translation import _ | |
37 | from sqlalchemy.sql.expression import true |
|
37 | from sqlalchemy.sql.expression import true | |
38 | from sqlalchemy.util import OrderedSet |
|
38 | from sqlalchemy.util import OrderedSet | |
39 | from webhelpers.pylonslib.secure_form import authentication_token |
|
39 | from webhelpers.pylonslib.secure_form import authentication_token | |
40 |
|
40 | |||
41 | from rhodecode.authentication import ( |
|
41 | from rhodecode.authentication import ( | |
42 | legacy_plugin_prefix, _import_legacy_plugin) |
|
42 | legacy_plugin_prefix, _import_legacy_plugin) | |
43 | from rhodecode.authentication.base import loadplugin |
|
43 | from rhodecode.authentication.base import loadplugin | |
44 | from rhodecode.config.routing import ADMIN_PREFIX |
|
44 | from rhodecode.config.routing import ADMIN_PREFIX | |
45 | from rhodecode.lib.auth import HasRepoGroupPermissionAny, HasPermissionAny |
|
45 | from rhodecode.lib.auth import HasRepoGroupPermissionAny, HasPermissionAny | |
46 | from rhodecode.lib.utils import repo_name_slug, make_db_config |
|
46 | from rhodecode.lib.utils import repo_name_slug, make_db_config | |
47 | from rhodecode.lib.utils2 import safe_int, str2bool, aslist, md5 |
|
47 | from rhodecode.lib.utils2 import safe_int, str2bool, aslist, md5 | |
48 | from rhodecode.lib.vcs.backends.git.repository import GitRepository |
|
48 | from rhodecode.lib.vcs.backends.git.repository import GitRepository | |
49 | from rhodecode.lib.vcs.backends.hg.repository import MercurialRepository |
|
49 | from rhodecode.lib.vcs.backends.hg.repository import MercurialRepository | |
50 | from rhodecode.lib.vcs.backends.svn.repository import SubversionRepository |
|
50 | from rhodecode.lib.vcs.backends.svn.repository import SubversionRepository | |
51 | from rhodecode.model.db import ( |
|
51 | from rhodecode.model.db import ( | |
52 | RepoGroup, Repository, UserGroup, User, ChangesetStatus, Gist) |
|
52 | RepoGroup, Repository, UserGroup, User, ChangesetStatus, Gist) | |
53 | from rhodecode.model.settings import VcsSettingsModel |
|
53 | from rhodecode.model.settings import VcsSettingsModel | |
54 |
|
54 | |||
55 | # silence warnings and pylint |
|
55 | # silence warnings and pylint | |
56 | UnicodeString, OneOf, Int, Number, Regex, Email, Bool, StringBoolean, Set, \ |
|
56 | UnicodeString, OneOf, Int, Number, Regex, Email, Bool, StringBoolean, Set, \ | |
57 | NotEmpty, IPAddress, CIDR, String, FancyValidator |
|
57 | NotEmpty, IPAddress, CIDR, String, FancyValidator | |
58 |
|
58 | |||
59 | log = logging.getLogger(__name__) |
|
59 | log = logging.getLogger(__name__) | |
60 |
|
60 | |||
61 |
|
61 | |||
62 | class _Missing(object): |
|
62 | class _Missing(object): | |
63 | pass |
|
63 | pass | |
64 |
|
64 | |||
65 | Missing = _Missing() |
|
65 | Missing = _Missing() | |
66 |
|
66 | |||
67 |
|
67 | |||
68 | class StateObj(object): |
|
68 | class StateObj(object): | |
69 | """ |
|
69 | """ | |
70 | this is needed to translate the messages using _() in validators |
|
70 | this is needed to translate the messages using _() in validators | |
71 | """ |
|
71 | """ | |
72 | _ = staticmethod(_) |
|
72 | _ = staticmethod(_) | |
73 |
|
73 | |||
74 |
|
74 | |||
75 | def M(self, key, state=None, **kwargs): |
|
75 | def M(self, key, state=None, **kwargs): | |
76 | """ |
|
76 | """ | |
77 | returns string from self.message based on given key, |
|
77 | returns string from self.message based on given key, | |
78 | passed kw params are used to substitute %(named)s params inside |
|
78 | passed kw params are used to substitute %(named)s params inside | |
79 | translated strings |
|
79 | translated strings | |
80 |
|
80 | |||
81 | :param msg: |
|
81 | :param msg: | |
82 | :param state: |
|
82 | :param state: | |
83 | """ |
|
83 | """ | |
84 | if state is None: |
|
84 | if state is None: | |
85 | state = StateObj() |
|
85 | state = StateObj() | |
86 | else: |
|
86 | else: | |
87 | state._ = staticmethod(_) |
|
87 | state._ = staticmethod(_) | |
88 | # inject validator into state object |
|
88 | # inject validator into state object | |
89 | return self.message(key, state, **kwargs) |
|
89 | return self.message(key, state, **kwargs) | |
90 |
|
90 | |||
91 |
|
91 | |||
92 | def UniqueList(convert=None): |
|
92 | def UniqueList(convert=None): | |
93 | class _UniqueList(formencode.FancyValidator): |
|
93 | class _UniqueList(formencode.FancyValidator): | |
94 | """ |
|
94 | """ | |
95 | Unique List ! |
|
95 | Unique List ! | |
96 | """ |
|
96 | """ | |
97 | messages = { |
|
97 | messages = { | |
98 | 'empty': _(u'Value cannot be an empty list'), |
|
98 | 'empty': _(u'Value cannot be an empty list'), | |
99 | 'missing_value': _(u'Value cannot be an empty list'), |
|
99 | 'missing_value': _(u'Value cannot be an empty list'), | |
100 | } |
|
100 | } | |
101 |
|
101 | |||
102 | def _to_python(self, value, state): |
|
102 | def _to_python(self, value, state): | |
103 | ret_val = [] |
|
103 | ret_val = [] | |
104 |
|
104 | |||
105 | def make_unique(value): |
|
105 | def make_unique(value): | |
106 | seen = [] |
|
106 | seen = [] | |
107 | return [c for c in value if not (c in seen or seen.append(c))] |
|
107 | return [c for c in value if not (c in seen or seen.append(c))] | |
108 |
|
108 | |||
109 | if isinstance(value, list): |
|
109 | if isinstance(value, list): | |
110 | ret_val = make_unique(value) |
|
110 | ret_val = make_unique(value) | |
111 | elif isinstance(value, set): |
|
111 | elif isinstance(value, set): | |
112 | ret_val = make_unique(list(value)) |
|
112 | ret_val = make_unique(list(value)) | |
113 | elif isinstance(value, tuple): |
|
113 | elif isinstance(value, tuple): | |
114 | ret_val = make_unique(list(value)) |
|
114 | ret_val = make_unique(list(value)) | |
115 | elif value is None: |
|
115 | elif value is None: | |
116 | ret_val = [] |
|
116 | ret_val = [] | |
117 | else: |
|
117 | else: | |
118 | ret_val = [value] |
|
118 | ret_val = [value] | |
119 |
|
119 | |||
120 | if convert: |
|
120 | if convert: | |
121 | ret_val = map(convert, ret_val) |
|
121 | ret_val = map(convert, ret_val) | |
122 | return ret_val |
|
122 | return ret_val | |
123 |
|
123 | |||
124 | def empty_value(self, value): |
|
124 | def empty_value(self, value): | |
125 | return [] |
|
125 | return [] | |
126 |
|
126 | |||
127 | return _UniqueList |
|
127 | return _UniqueList | |
128 |
|
128 | |||
129 |
|
129 | |||
130 | def UniqueListFromString(): |
|
130 | def UniqueListFromString(): | |
131 | class _UniqueListFromString(UniqueList()): |
|
131 | class _UniqueListFromString(UniqueList()): | |
132 | def _to_python(self, value, state): |
|
132 | def _to_python(self, value, state): | |
133 | if isinstance(value, basestring): |
|
133 | if isinstance(value, basestring): | |
134 | value = aslist(value, ',') |
|
134 | value = aslist(value, ',') | |
135 | return super(_UniqueListFromString, self)._to_python(value, state) |
|
135 | return super(_UniqueListFromString, self)._to_python(value, state) | |
136 | return _UniqueListFromString |
|
136 | return _UniqueListFromString | |
137 |
|
137 | |||
138 |
|
138 | |||
139 | def ValidSvnPattern(section, repo_name=None): |
|
139 | def ValidSvnPattern(section, repo_name=None): | |
140 | class _validator(formencode.validators.FancyValidator): |
|
140 | class _validator(formencode.validators.FancyValidator): | |
141 | messages = { |
|
141 | messages = { | |
142 | 'pattern_exists': _(u'Pattern already exists'), |
|
142 | 'pattern_exists': _(u'Pattern already exists'), | |
143 | } |
|
143 | } | |
144 |
|
144 | |||
145 | def validate_python(self, value, state): |
|
145 | def validate_python(self, value, state): | |
146 | if not value: |
|
146 | if not value: | |
147 | return |
|
147 | return | |
148 | model = VcsSettingsModel(repo=repo_name) |
|
148 | model = VcsSettingsModel(repo=repo_name) | |
149 | ui_settings = model.get_svn_patterns(section=section) |
|
149 | ui_settings = model.get_svn_patterns(section=section) | |
150 | for entry in ui_settings: |
|
150 | for entry in ui_settings: | |
151 | if value == entry.value: |
|
151 | if value == entry.value: | |
152 | msg = M(self, 'pattern_exists', state) |
|
152 | msg = M(self, 'pattern_exists', state) | |
153 | raise formencode.Invalid(msg, value, state) |
|
153 | raise formencode.Invalid(msg, value, state) | |
154 | return _validator |
|
154 | return _validator | |
155 |
|
155 | |||
156 |
|
156 | |||
157 | def ValidUsername(edit=False, old_data={}): |
|
157 | def ValidUsername(edit=False, old_data={}): | |
158 | class _validator(formencode.validators.FancyValidator): |
|
158 | class _validator(formencode.validators.FancyValidator): | |
159 | messages = { |
|
159 | messages = { | |
160 | 'username_exists': _(u'Username "%(username)s" already exists'), |
|
160 | 'username_exists': _(u'Username "%(username)s" already exists'), | |
161 | 'system_invalid_username': |
|
161 | 'system_invalid_username': | |
162 | _(u'Username "%(username)s" is forbidden'), |
|
162 | _(u'Username "%(username)s" is forbidden'), | |
163 | 'invalid_username': |
|
163 | 'invalid_username': | |
164 | _(u'Username may only contain alphanumeric characters ' |
|
164 | _(u'Username may only contain alphanumeric characters ' | |
165 | u'underscores, periods or dashes and must begin with ' |
|
165 | u'underscores, periods or dashes and must begin with ' | |
166 | u'alphanumeric character or underscore') |
|
166 | u'alphanumeric character or underscore') | |
167 | } |
|
167 | } | |
168 |
|
168 | |||
169 | def validate_python(self, value, state): |
|
169 | def validate_python(self, value, state): | |
170 | if value in ['default', 'new_user']: |
|
170 | if value in ['default', 'new_user']: | |
171 | msg = M(self, 'system_invalid_username', state, username=value) |
|
171 | msg = M(self, 'system_invalid_username', state, username=value) | |
172 | raise formencode.Invalid(msg, value, state) |
|
172 | raise formencode.Invalid(msg, value, state) | |
173 | # check if user is unique |
|
173 | # check if user is unique | |
174 | old_un = None |
|
174 | old_un = None | |
175 | if edit: |
|
175 | if edit: | |
176 | old_un = User.get(old_data.get('user_id')).username |
|
176 | old_un = User.get(old_data.get('user_id')).username | |
177 |
|
177 | |||
178 | if old_un != value or not edit: |
|
178 | if old_un != value or not edit: | |
179 | if User.get_by_username(value, case_insensitive=True): |
|
179 | if User.get_by_username(value, case_insensitive=True): | |
180 | msg = M(self, 'username_exists', state, username=value) |
|
180 | msg = M(self, 'username_exists', state, username=value) | |
181 | raise formencode.Invalid(msg, value, state) |
|
181 | raise formencode.Invalid(msg, value, state) | |
182 |
|
182 | |||
183 | if (re.match(r'^[\w]{1}[\w\-\.]{0,254}$', value) |
|
183 | if (re.match(r'^[\w]{1}[\w\-\.]{0,254}$', value) | |
184 | is None): |
|
184 | is None): | |
185 | msg = M(self, 'invalid_username', state) |
|
185 | msg = M(self, 'invalid_username', state) | |
186 | raise formencode.Invalid(msg, value, state) |
|
186 | raise formencode.Invalid(msg, value, state) | |
187 | return _validator |
|
187 | return _validator | |
188 |
|
188 | |||
189 |
|
189 | |||
190 | def ValidRegex(msg=None): |
|
190 | def ValidRegex(msg=None): | |
191 | class _validator(formencode.validators.Regex): |
|
191 | class _validator(formencode.validators.Regex): | |
192 | messages = {'invalid': msg or _(u'The input is not valid')} |
|
192 | messages = {'invalid': msg or _(u'The input is not valid')} | |
193 | return _validator |
|
193 | return _validator | |
194 |
|
194 | |||
195 |
|
195 | |||
196 | def ValidRepoUser(allow_disabled=False): |
|
196 | def ValidRepoUser(allow_disabled=False): | |
197 | class _validator(formencode.validators.FancyValidator): |
|
197 | class _validator(formencode.validators.FancyValidator): | |
198 | messages = { |
|
198 | messages = { | |
199 | 'invalid_username': _(u'Username %(username)s is not valid'), |
|
199 | 'invalid_username': _(u'Username %(username)s is not valid'), | |
200 | 'disabled_username': _(u'Username %(username)s is disabled') |
|
200 | 'disabled_username': _(u'Username %(username)s is disabled') | |
201 | } |
|
201 | } | |
202 |
|
202 | |||
203 | def validate_python(self, value, state): |
|
203 | def validate_python(self, value, state): | |
204 | try: |
|
204 | try: | |
205 | user = User.query().filter(User.username == value).one() |
|
205 | user = User.query().filter(User.username == value).one() | |
206 | except Exception: |
|
206 | except Exception: | |
207 | msg = M(self, 'invalid_username', state, username=value) |
|
207 | msg = M(self, 'invalid_username', state, username=value) | |
208 | raise formencode.Invalid( |
|
208 | raise formencode.Invalid( | |
209 | msg, value, state, error_dict={'username': msg} |
|
209 | msg, value, state, error_dict={'username': msg} | |
210 | ) |
|
210 | ) | |
211 | if user and (not allow_disabled and not user.active): |
|
211 | if user and (not allow_disabled and not user.active): | |
212 | msg = M(self, 'disabled_username', state, username=value) |
|
212 | msg = M(self, 'disabled_username', state, username=value) | |
213 | raise formencode.Invalid( |
|
213 | raise formencode.Invalid( | |
214 | msg, value, state, error_dict={'username': msg} |
|
214 | msg, value, state, error_dict={'username': msg} | |
215 | ) |
|
215 | ) | |
216 |
|
216 | |||
217 | return _validator |
|
217 | return _validator | |
218 |
|
218 | |||
219 |
|
219 | |||
220 | def ValidUserGroup(edit=False, old_data={}): |
|
220 | def ValidUserGroup(edit=False, old_data={}): | |
221 | class _validator(formencode.validators.FancyValidator): |
|
221 | class _validator(formencode.validators.FancyValidator): | |
222 | messages = { |
|
222 | messages = { | |
223 | 'invalid_group': _(u'Invalid user group name'), |
|
223 | 'invalid_group': _(u'Invalid user group name'), | |
224 | 'group_exist': _(u'User group "%(usergroup)s" already exists'), |
|
224 | 'group_exist': _(u'User group "%(usergroup)s" already exists'), | |
225 | 'invalid_usergroup_name': |
|
225 | 'invalid_usergroup_name': | |
226 | _(u'user group name may only contain alphanumeric ' |
|
226 | _(u'user group name may only contain alphanumeric ' | |
227 | u'characters underscores, periods or dashes and must begin ' |
|
227 | u'characters underscores, periods or dashes and must begin ' | |
228 | u'with alphanumeric character') |
|
228 | u'with alphanumeric character') | |
229 | } |
|
229 | } | |
230 |
|
230 | |||
231 | def validate_python(self, value, state): |
|
231 | def validate_python(self, value, state): | |
232 | if value in ['default']: |
|
232 | if value in ['default']: | |
233 | msg = M(self, 'invalid_group', state) |
|
233 | msg = M(self, 'invalid_group', state) | |
234 | raise formencode.Invalid( |
|
234 | raise formencode.Invalid( | |
235 | msg, value, state, error_dict={'users_group_name': msg} |
|
235 | msg, value, state, error_dict={'users_group_name': msg} | |
236 | ) |
|
236 | ) | |
237 | # check if group is unique |
|
237 | # check if group is unique | |
238 | old_ugname = None |
|
238 | old_ugname = None | |
239 | if edit: |
|
239 | if edit: | |
240 | old_id = old_data.get('users_group_id') |
|
240 | old_id = old_data.get('users_group_id') | |
241 | old_ugname = UserGroup.get(old_id).users_group_name |
|
241 | old_ugname = UserGroup.get(old_id).users_group_name | |
242 |
|
242 | |||
243 | if old_ugname != value or not edit: |
|
243 | if old_ugname != value or not edit: | |
244 | is_existing_group = UserGroup.get_by_group_name( |
|
244 | is_existing_group = UserGroup.get_by_group_name( | |
245 | value, case_insensitive=True) |
|
245 | value, case_insensitive=True) | |
246 | if is_existing_group: |
|
246 | if is_existing_group: | |
247 | msg = M(self, 'group_exist', state, usergroup=value) |
|
247 | msg = M(self, 'group_exist', state, usergroup=value) | |
248 | raise formencode.Invalid( |
|
248 | raise formencode.Invalid( | |
249 | msg, value, state, error_dict={'users_group_name': msg} |
|
249 | msg, value, state, error_dict={'users_group_name': msg} | |
250 | ) |
|
250 | ) | |
251 |
|
251 | |||
252 | if re.match(r'^[a-zA-Z0-9]{1}[a-zA-Z0-9\-\_\.]+$', value) is None: |
|
252 | if re.match(r'^[a-zA-Z0-9]{1}[a-zA-Z0-9\-\_\.]+$', value) is None: | |
253 | msg = M(self, 'invalid_usergroup_name', state) |
|
253 | msg = M(self, 'invalid_usergroup_name', state) | |
254 | raise formencode.Invalid( |
|
254 | raise formencode.Invalid( | |
255 | msg, value, state, error_dict={'users_group_name': msg} |
|
255 | msg, value, state, error_dict={'users_group_name': msg} | |
256 | ) |
|
256 | ) | |
257 |
|
257 | |||
258 | return _validator |
|
258 | return _validator | |
259 |
|
259 | |||
260 |
|
260 | |||
261 | def ValidRepoGroup(edit=False, old_data={}, can_create_in_root=False): |
|
261 | def ValidRepoGroup(edit=False, old_data={}, can_create_in_root=False): | |
262 | class _validator(formencode.validators.FancyValidator): |
|
262 | class _validator(formencode.validators.FancyValidator): | |
263 | messages = { |
|
263 | messages = { | |
264 | 'group_parent_id': _(u'Cannot assign this group as parent'), |
|
264 | 'group_parent_id': _(u'Cannot assign this group as parent'), | |
265 | 'group_exists': _(u'Group "%(group_name)s" already exists'), |
|
265 | 'group_exists': _(u'Group "%(group_name)s" already exists'), | |
266 | 'repo_exists': _(u'Repository with name "%(group_name)s" ' |
|
266 | 'repo_exists': _(u'Repository with name "%(group_name)s" ' | |
267 | u'already exists'), |
|
267 | u'already exists'), | |
268 | 'permission_denied': _(u"no permission to store repository group" |
|
268 | 'permission_denied': _(u"no permission to store repository group" | |
269 | u"in this location"), |
|
269 | u"in this location"), | |
270 | 'permission_denied_root': _( |
|
270 | 'permission_denied_root': _( | |
271 | u"no permission to store repository group " |
|
271 | u"no permission to store repository group " | |
272 | u"in root location") |
|
272 | u"in root location") | |
273 | } |
|
273 | } | |
274 |
|
274 | |||
275 | def _to_python(self, value, state): |
|
275 | def _to_python(self, value, state): | |
276 | group_name = repo_name_slug(value.get('group_name', '')) |
|
276 | group_name = repo_name_slug(value.get('group_name', '')) | |
277 | group_parent_id = safe_int(value.get('group_parent_id')) |
|
277 | group_parent_id = safe_int(value.get('group_parent_id')) | |
278 | gr = RepoGroup.get(group_parent_id) |
|
278 | gr = RepoGroup.get(group_parent_id) | |
279 | if gr: |
|
279 | if gr: | |
280 | parent_group_path = gr.full_path |
|
280 | parent_group_path = gr.full_path | |
281 | # value needs to be aware of group name in order to check |
|
281 | # value needs to be aware of group name in order to check | |
282 | # db key This is an actual just the name to store in the |
|
282 | # db key This is an actual just the name to store in the | |
283 | # database |
|
283 | # database | |
284 | group_name_full = ( |
|
284 | group_name_full = ( | |
285 | parent_group_path + RepoGroup.url_sep() + group_name) |
|
285 | parent_group_path + RepoGroup.url_sep() + group_name) | |
286 | else: |
|
286 | else: | |
287 | group_name_full = group_name |
|
287 | group_name_full = group_name | |
288 |
|
288 | |||
289 | value['group_name'] = group_name |
|
289 | value['group_name'] = group_name | |
290 | value['group_name_full'] = group_name_full |
|
290 | value['group_name_full'] = group_name_full | |
291 | value['group_parent_id'] = group_parent_id |
|
291 | value['group_parent_id'] = group_parent_id | |
292 | return value |
|
292 | return value | |
293 |
|
293 | |||
294 | def validate_python(self, value, state): |
|
294 | def validate_python(self, value, state): | |
295 |
|
295 | |||
296 | old_group_name = None |
|
296 | old_group_name = None | |
297 | group_name = value.get('group_name') |
|
297 | group_name = value.get('group_name') | |
298 | group_name_full = value.get('group_name_full') |
|
298 | group_name_full = value.get('group_name_full') | |
299 | group_parent_id = safe_int(value.get('group_parent_id')) |
|
299 | group_parent_id = safe_int(value.get('group_parent_id')) | |
300 | if group_parent_id == -1: |
|
300 | if group_parent_id == -1: | |
301 | group_parent_id = None |
|
301 | group_parent_id = None | |
302 |
|
302 | |||
303 | group_obj = RepoGroup.get(old_data.get('group_id')) |
|
303 | group_obj = RepoGroup.get(old_data.get('group_id')) | |
304 | parent_group_changed = False |
|
304 | parent_group_changed = False | |
305 | if edit: |
|
305 | if edit: | |
306 | old_group_name = group_obj.group_name |
|
306 | old_group_name = group_obj.group_name | |
307 | old_group_parent_id = group_obj.group_parent_id |
|
307 | old_group_parent_id = group_obj.group_parent_id | |
308 |
|
308 | |||
309 | if group_parent_id != old_group_parent_id: |
|
309 | if group_parent_id != old_group_parent_id: | |
310 | parent_group_changed = True |
|
310 | parent_group_changed = True | |
311 |
|
311 | |||
312 | # TODO: mikhail: the following if statement is not reached |
|
312 | # TODO: mikhail: the following if statement is not reached | |
313 | # since group_parent_id's OneOf validation fails before. |
|
313 | # since group_parent_id's OneOf validation fails before. | |
314 | # Can be removed. |
|
314 | # Can be removed. | |
315 |
|
315 | |||
316 | # check against setting a parent of self |
|
316 | # check against setting a parent of self | |
317 | parent_of_self = ( |
|
317 | parent_of_self = ( | |
318 | old_data['group_id'] == group_parent_id |
|
318 | old_data['group_id'] == group_parent_id | |
319 | if group_parent_id else False |
|
319 | if group_parent_id else False | |
320 | ) |
|
320 | ) | |
321 | if parent_of_self: |
|
321 | if parent_of_self: | |
322 | msg = M(self, 'group_parent_id', state) |
|
322 | msg = M(self, 'group_parent_id', state) | |
323 | raise formencode.Invalid( |
|
323 | raise formencode.Invalid( | |
324 | msg, value, state, error_dict={'group_parent_id': msg} |
|
324 | msg, value, state, error_dict={'group_parent_id': msg} | |
325 | ) |
|
325 | ) | |
326 |
|
326 | |||
327 | # group we're moving current group inside |
|
327 | # group we're moving current group inside | |
328 | child_group = None |
|
328 | child_group = None | |
329 | if group_parent_id: |
|
329 | if group_parent_id: | |
330 | child_group = RepoGroup.query().filter( |
|
330 | child_group = RepoGroup.query().filter( | |
331 | RepoGroup.group_id == group_parent_id).scalar() |
|
331 | RepoGroup.group_id == group_parent_id).scalar() | |
332 |
|
332 | |||
333 | # do a special check that we cannot move a group to one of |
|
333 | # do a special check that we cannot move a group to one of | |
334 | # it's children |
|
334 | # it's children | |
335 | if edit and child_group: |
|
335 | if edit and child_group: | |
336 | parents = [x.group_id for x in child_group.parents] |
|
336 | parents = [x.group_id for x in child_group.parents] | |
337 | move_to_children = old_data['group_id'] in parents |
|
337 | move_to_children = old_data['group_id'] in parents | |
338 | if move_to_children: |
|
338 | if move_to_children: | |
339 | msg = M(self, 'group_parent_id', state) |
|
339 | msg = M(self, 'group_parent_id', state) | |
340 | raise formencode.Invalid( |
|
340 | raise formencode.Invalid( | |
341 | msg, value, state, error_dict={'group_parent_id': msg}) |
|
341 | msg, value, state, error_dict={'group_parent_id': msg}) | |
342 |
|
342 | |||
343 | # Check if we have permission to store in the parent. |
|
343 | # Check if we have permission to store in the parent. | |
344 | # Only check if the parent group changed. |
|
344 | # Only check if the parent group changed. | |
345 | if parent_group_changed: |
|
345 | if parent_group_changed: | |
346 | if child_group is None: |
|
346 | if child_group is None: | |
347 | if not can_create_in_root: |
|
347 | if not can_create_in_root: | |
348 | msg = M(self, 'permission_denied_root', state) |
|
348 | msg = M(self, 'permission_denied_root', state) | |
349 | raise formencode.Invalid( |
|
349 | raise formencode.Invalid( | |
350 | msg, value, state, |
|
350 | msg, value, state, | |
351 | error_dict={'group_parent_id': msg}) |
|
351 | error_dict={'group_parent_id': msg}) | |
352 | else: |
|
352 | else: | |
353 | valid = HasRepoGroupPermissionAny('group.admin') |
|
353 | valid = HasRepoGroupPermissionAny('group.admin') | |
354 | forbidden = not valid( |
|
354 | forbidden = not valid( | |
355 | child_group.group_name, 'can create group validator') |
|
355 | child_group.group_name, 'can create group validator') | |
356 | if forbidden: |
|
356 | if forbidden: | |
357 | msg = M(self, 'permission_denied', state) |
|
357 | msg = M(self, 'permission_denied', state) | |
358 | raise formencode.Invalid( |
|
358 | raise formencode.Invalid( | |
359 | msg, value, state, |
|
359 | msg, value, state, | |
360 | error_dict={'group_parent_id': msg}) |
|
360 | error_dict={'group_parent_id': msg}) | |
361 |
|
361 | |||
362 | # if we change the name or it's new group, check for existing names |
|
362 | # if we change the name or it's new group, check for existing names | |
363 | # or repositories with the same name |
|
363 | # or repositories with the same name | |
364 | if old_group_name != group_name_full or not edit: |
|
364 | if old_group_name != group_name_full or not edit: | |
365 | # check group |
|
365 | # check group | |
366 | gr = RepoGroup.get_by_group_name(group_name_full) |
|
366 | gr = RepoGroup.get_by_group_name(group_name_full) | |
367 | if gr: |
|
367 | if gr: | |
368 | msg = M(self, 'group_exists', state, group_name=group_name) |
|
368 | msg = M(self, 'group_exists', state, group_name=group_name) | |
369 | raise formencode.Invalid( |
|
369 | raise formencode.Invalid( | |
370 | msg, value, state, error_dict={'group_name': msg}) |
|
370 | msg, value, state, error_dict={'group_name': msg}) | |
371 |
|
371 | |||
372 | # check for same repo |
|
372 | # check for same repo | |
373 | repo = Repository.get_by_repo_name(group_name_full) |
|
373 | repo = Repository.get_by_repo_name(group_name_full) | |
374 | if repo: |
|
374 | if repo: | |
375 | msg = M(self, 'repo_exists', state, group_name=group_name) |
|
375 | msg = M(self, 'repo_exists', state, group_name=group_name) | |
376 | raise formencode.Invalid( |
|
376 | raise formencode.Invalid( | |
377 | msg, value, state, error_dict={'group_name': msg}) |
|
377 | msg, value, state, error_dict={'group_name': msg}) | |
378 |
|
378 | |||
379 | return _validator |
|
379 | return _validator | |
380 |
|
380 | |||
381 |
|
381 | |||
382 | def ValidPassword(): |
|
382 | def ValidPassword(): | |
383 | class _validator(formencode.validators.FancyValidator): |
|
383 | class _validator(formencode.validators.FancyValidator): | |
384 | messages = { |
|
384 | messages = { | |
385 | 'invalid_password': |
|
385 | 'invalid_password': | |
386 | _(u'Invalid characters (non-ascii) in password') |
|
386 | _(u'Invalid characters (non-ascii) in password') | |
387 | } |
|
387 | } | |
388 |
|
388 | |||
389 | def validate_python(self, value, state): |
|
389 | def validate_python(self, value, state): | |
390 | try: |
|
390 | try: | |
391 | (value or '').decode('ascii') |
|
391 | (value or '').decode('ascii') | |
392 | except UnicodeError: |
|
392 | except UnicodeError: | |
393 | msg = M(self, 'invalid_password', state) |
|
393 | msg = M(self, 'invalid_password', state) | |
394 | raise formencode.Invalid(msg, value, state,) |
|
394 | raise formencode.Invalid(msg, value, state,) | |
395 | return _validator |
|
395 | return _validator | |
396 |
|
396 | |||
397 |
|
397 | |||
398 | def ValidOldPassword(username): |
|
398 | def ValidOldPassword(username): | |
399 | class _validator(formencode.validators.FancyValidator): |
|
399 | class _validator(formencode.validators.FancyValidator): | |
400 | messages = { |
|
400 | messages = { | |
401 | 'invalid_password': _(u'Invalid old password') |
|
401 | 'invalid_password': _(u'Invalid old password') | |
402 | } |
|
402 | } | |
403 |
|
403 | |||
404 | def validate_python(self, value, state): |
|
404 | def validate_python(self, value, state): | |
405 | from rhodecode.authentication.base import authenticate, HTTP_TYPE |
|
405 | from rhodecode.authentication.base import authenticate, HTTP_TYPE | |
406 | if not authenticate(username, value, '', HTTP_TYPE): |
|
406 | if not authenticate(username, value, '', HTTP_TYPE): | |
407 | msg = M(self, 'invalid_password', state) |
|
407 | msg = M(self, 'invalid_password', state) | |
408 | raise formencode.Invalid( |
|
408 | raise formencode.Invalid( | |
409 | msg, value, state, error_dict={'current_password': msg} |
|
409 | msg, value, state, error_dict={'current_password': msg} | |
410 | ) |
|
410 | ) | |
411 | return _validator |
|
411 | return _validator | |
412 |
|
412 | |||
413 |
|
413 | |||
414 | def ValidPasswordsMatch( |
|
414 | def ValidPasswordsMatch( | |
415 | passwd='new_password', passwd_confirmation='password_confirmation'): |
|
415 | passwd='new_password', passwd_confirmation='password_confirmation'): | |
416 | class _validator(formencode.validators.FancyValidator): |
|
416 | class _validator(formencode.validators.FancyValidator): | |
417 | messages = { |
|
417 | messages = { | |
418 | 'password_mismatch': _(u'Passwords do not match'), |
|
418 | 'password_mismatch': _(u'Passwords do not match'), | |
419 | } |
|
419 | } | |
420 |
|
420 | |||
421 | def validate_python(self, value, state): |
|
421 | def validate_python(self, value, state): | |
422 |
|
422 | |||
423 | pass_val = value.get('password') or value.get(passwd) |
|
423 | pass_val = value.get('password') or value.get(passwd) | |
424 | if pass_val != value[passwd_confirmation]: |
|
424 | if pass_val != value[passwd_confirmation]: | |
425 | msg = M(self, 'password_mismatch', state) |
|
425 | msg = M(self, 'password_mismatch', state) | |
426 | raise formencode.Invalid( |
|
426 | raise formencode.Invalid( | |
427 | msg, value, state, |
|
427 | msg, value, state, | |
428 | error_dict={passwd: msg, passwd_confirmation: msg} |
|
428 | error_dict={passwd: msg, passwd_confirmation: msg} | |
429 | ) |
|
429 | ) | |
430 | return _validator |
|
430 | return _validator | |
431 |
|
431 | |||
432 |
|
432 | |||
433 | def ValidAuth(): |
|
433 | def ValidAuth(): | |
434 | class _validator(formencode.validators.FancyValidator): |
|
434 | class _validator(formencode.validators.FancyValidator): | |
435 | messages = { |
|
435 | messages = { | |
436 | 'invalid_password': _(u'invalid password'), |
|
436 | 'invalid_password': _(u'invalid password'), | |
437 | 'invalid_username': _(u'invalid user name'), |
|
437 | 'invalid_username': _(u'invalid user name'), | |
438 | 'disabled_account': _(u'Your account is disabled') |
|
438 | 'disabled_account': _(u'Your account is disabled') | |
439 | } |
|
439 | } | |
440 |
|
440 | |||
441 | def validate_python(self, value, state): |
|
441 | def validate_python(self, value, state): | |
442 | from rhodecode.authentication.base import authenticate, HTTP_TYPE |
|
442 | from rhodecode.authentication.base import authenticate, HTTP_TYPE | |
443 |
|
443 | |||
444 | password = value['password'] |
|
444 | password = value['password'] | |
445 | username = value['username'] |
|
445 | username = value['username'] | |
446 |
|
446 | |||
447 | if not authenticate(username, password, '', HTTP_TYPE, |
|
447 | if not authenticate(username, password, '', HTTP_TYPE, | |
448 | skip_missing=True): |
|
448 | skip_missing=True): | |
449 | user = User.get_by_username(username) |
|
449 | user = User.get_by_username(username) | |
450 | if user and not user.active: |
|
450 | if user and not user.active: | |
451 | log.warning('user %s is disabled', username) |
|
451 | log.warning('user %s is disabled', username) | |
452 | msg = M(self, 'disabled_account', state) |
|
452 | msg = M(self, 'disabled_account', state) | |
453 | raise formencode.Invalid( |
|
453 | raise formencode.Invalid( | |
454 | msg, value, state, error_dict={'username': msg} |
|
454 | msg, value, state, error_dict={'username': msg} | |
455 | ) |
|
455 | ) | |
456 | else: |
|
456 | else: | |
457 | log.warning('user `%s` failed to authenticate', username) |
|
457 | log.warning('user `%s` failed to authenticate', username) | |
458 | msg = M(self, 'invalid_username', state) |
|
458 | msg = M(self, 'invalid_username', state) | |
459 | msg2 = M(self, 'invalid_password', state) |
|
459 | msg2 = M(self, 'invalid_password', state) | |
460 | raise formencode.Invalid( |
|
460 | raise formencode.Invalid( | |
461 | msg, value, state, |
|
461 | msg, value, state, | |
462 | error_dict={'username': msg, 'password': msg2} |
|
462 | error_dict={'username': msg, 'password': msg2} | |
463 | ) |
|
463 | ) | |
464 | return _validator |
|
464 | return _validator | |
465 |
|
465 | |||
466 |
|
466 | |||
467 | def ValidAuthToken(): |
|
467 | def ValidAuthToken(): | |
468 | class _validator(formencode.validators.FancyValidator): |
|
468 | class _validator(formencode.validators.FancyValidator): | |
469 | messages = { |
|
469 | messages = { | |
470 | 'invalid_token': _(u'Token mismatch') |
|
470 | 'invalid_token': _(u'Token mismatch') | |
471 | } |
|
471 | } | |
472 |
|
472 | |||
473 | def validate_python(self, value, state): |
|
473 | def validate_python(self, value, state): | |
474 | if value != authentication_token(): |
|
474 | if value != authentication_token(): | |
475 | msg = M(self, 'invalid_token', state) |
|
475 | msg = M(self, 'invalid_token', state) | |
476 | raise formencode.Invalid(msg, value, state) |
|
476 | raise formencode.Invalid(msg, value, state) | |
477 | return _validator |
|
477 | return _validator | |
478 |
|
478 | |||
479 |
|
479 | |||
480 | def ValidRepoName(edit=False, old_data={}): |
|
480 | def ValidRepoName(edit=False, old_data={}): | |
481 | class _validator(formencode.validators.FancyValidator): |
|
481 | class _validator(formencode.validators.FancyValidator): | |
482 | messages = { |
|
482 | messages = { | |
483 | 'invalid_repo_name': |
|
483 | 'invalid_repo_name': | |
484 | _(u'Repository name %(repo)s is disallowed'), |
|
484 | _(u'Repository name %(repo)s is disallowed'), | |
485 | # top level |
|
485 | # top level | |
486 | 'repository_exists': _(u'Repository with name %(repo)s ' |
|
486 | 'repository_exists': _(u'Repository with name %(repo)s ' | |
487 | u'already exists'), |
|
487 | u'already exists'), | |
488 | 'group_exists': _(u'Repository group with name "%(repo)s" ' |
|
488 | 'group_exists': _(u'Repository group with name "%(repo)s" ' | |
489 | u'already exists'), |
|
489 | u'already exists'), | |
490 | # inside a group |
|
490 | # inside a group | |
491 | 'repository_in_group_exists': _(u'Repository with name %(repo)s ' |
|
491 | 'repository_in_group_exists': _(u'Repository with name %(repo)s ' | |
492 | u'exists in group "%(group)s"'), |
|
492 | u'exists in group "%(group)s"'), | |
493 | 'group_in_group_exists': _( |
|
493 | 'group_in_group_exists': _( | |
494 | u'Repository group with name "%(repo)s" ' |
|
494 | u'Repository group with name "%(repo)s" ' | |
495 | u'exists in group "%(group)s"'), |
|
495 | u'exists in group "%(group)s"'), | |
496 | } |
|
496 | } | |
497 |
|
497 | |||
498 | def _to_python(self, value, state): |
|
498 | def _to_python(self, value, state): | |
499 | repo_name = repo_name_slug(value.get('repo_name', '')) |
|
499 | repo_name = repo_name_slug(value.get('repo_name', '')) | |
500 | repo_group = value.get('repo_group') |
|
500 | repo_group = value.get('repo_group') | |
501 | if repo_group: |
|
501 | if repo_group: | |
502 | gr = RepoGroup.get(repo_group) |
|
502 | gr = RepoGroup.get(repo_group) | |
503 | group_path = gr.full_path |
|
503 | group_path = gr.full_path | |
504 | group_name = gr.group_name |
|
504 | group_name = gr.group_name | |
505 | # value needs to be aware of group name in order to check |
|
505 | # value needs to be aware of group name in order to check | |
506 | # db key This is an actual just the name to store in the |
|
506 | # db key This is an actual just the name to store in the | |
507 | # database |
|
507 | # database | |
508 | repo_name_full = group_path + RepoGroup.url_sep() + repo_name |
|
508 | repo_name_full = group_path + RepoGroup.url_sep() + repo_name | |
509 | else: |
|
509 | else: | |
510 | group_name = group_path = '' |
|
510 | group_name = group_path = '' | |
511 | repo_name_full = repo_name |
|
511 | repo_name_full = repo_name | |
512 |
|
512 | |||
513 | value['repo_name'] = repo_name |
|
513 | value['repo_name'] = repo_name | |
514 | value['repo_name_full'] = repo_name_full |
|
514 | value['repo_name_full'] = repo_name_full | |
515 | value['group_path'] = group_path |
|
515 | value['group_path'] = group_path | |
516 | value['group_name'] = group_name |
|
516 | value['group_name'] = group_name | |
517 | return value |
|
517 | return value | |
518 |
|
518 | |||
519 | def validate_python(self, value, state): |
|
519 | def validate_python(self, value, state): | |
520 |
|
520 | |||
521 | repo_name = value.get('repo_name') |
|
521 | repo_name = value.get('repo_name') | |
522 | repo_name_full = value.get('repo_name_full') |
|
522 | repo_name_full = value.get('repo_name_full') | |
523 | group_path = value.get('group_path') |
|
523 | group_path = value.get('group_path') | |
524 | group_name = value.get('group_name') |
|
524 | group_name = value.get('group_name') | |
525 |
|
525 | |||
526 | if repo_name in [ADMIN_PREFIX, '']: |
|
526 | if repo_name in [ADMIN_PREFIX, '']: | |
527 | msg = M(self, 'invalid_repo_name', state, repo=repo_name) |
|
527 | msg = M(self, 'invalid_repo_name', state, repo=repo_name) | |
528 | raise formencode.Invalid( |
|
528 | raise formencode.Invalid( | |
529 | msg, value, state, error_dict={'repo_name': msg}) |
|
529 | msg, value, state, error_dict={'repo_name': msg}) | |
530 |
|
530 | |||
531 | rename = old_data.get('repo_name') != repo_name_full |
|
531 | rename = old_data.get('repo_name') != repo_name_full | |
532 | create = not edit |
|
532 | create = not edit | |
533 | if rename or create: |
|
533 | if rename or create: | |
534 |
|
534 | |||
535 | if group_path: |
|
535 | if group_path: | |
536 | if Repository.get_by_repo_name(repo_name_full): |
|
536 | if Repository.get_by_repo_name(repo_name_full): | |
537 | msg = M(self, 'repository_in_group_exists', state, |
|
537 | msg = M(self, 'repository_in_group_exists', state, | |
538 | repo=repo_name, group=group_name) |
|
538 | repo=repo_name, group=group_name) | |
539 | raise formencode.Invalid( |
|
539 | raise formencode.Invalid( | |
540 | msg, value, state, error_dict={'repo_name': msg}) |
|
540 | msg, value, state, error_dict={'repo_name': msg}) | |
541 | if RepoGroup.get_by_group_name(repo_name_full): |
|
541 | if RepoGroup.get_by_group_name(repo_name_full): | |
542 | msg = M(self, 'group_in_group_exists', state, |
|
542 | msg = M(self, 'group_in_group_exists', state, | |
543 | repo=repo_name, group=group_name) |
|
543 | repo=repo_name, group=group_name) | |
544 | raise formencode.Invalid( |
|
544 | raise formencode.Invalid( | |
545 | msg, value, state, error_dict={'repo_name': msg}) |
|
545 | msg, value, state, error_dict={'repo_name': msg}) | |
546 | else: |
|
546 | else: | |
547 | if RepoGroup.get_by_group_name(repo_name_full): |
|
547 | if RepoGroup.get_by_group_name(repo_name_full): | |
548 | msg = M(self, 'group_exists', state, repo=repo_name) |
|
548 | msg = M(self, 'group_exists', state, repo=repo_name) | |
549 | raise formencode.Invalid( |
|
549 | raise formencode.Invalid( | |
550 | msg, value, state, error_dict={'repo_name': msg}) |
|
550 | msg, value, state, error_dict={'repo_name': msg}) | |
551 |
|
551 | |||
552 | if Repository.get_by_repo_name(repo_name_full): |
|
552 | if Repository.get_by_repo_name(repo_name_full): | |
553 | msg = M( |
|
553 | msg = M( | |
554 | self, 'repository_exists', state, repo=repo_name) |
|
554 | self, 'repository_exists', state, repo=repo_name) | |
555 | raise formencode.Invalid( |
|
555 | raise formencode.Invalid( | |
556 | msg, value, state, error_dict={'repo_name': msg}) |
|
556 | msg, value, state, error_dict={'repo_name': msg}) | |
557 | return value |
|
557 | return value | |
558 | return _validator |
|
558 | return _validator | |
559 |
|
559 | |||
560 |
|
560 | |||
561 | def ValidForkName(*args, **kwargs): |
|
561 | def ValidForkName(*args, **kwargs): | |
562 | return ValidRepoName(*args, **kwargs) |
|
562 | return ValidRepoName(*args, **kwargs) | |
563 |
|
563 | |||
564 |
|
564 | |||
565 | def SlugifyName(): |
|
565 | def SlugifyName(): | |
566 | class _validator(formencode.validators.FancyValidator): |
|
566 | class _validator(formencode.validators.FancyValidator): | |
567 |
|
567 | |||
568 | def _to_python(self, value, state): |
|
568 | def _to_python(self, value, state): | |
569 | return repo_name_slug(value) |
|
569 | return repo_name_slug(value) | |
570 |
|
570 | |||
571 | def validate_python(self, value, state): |
|
571 | def validate_python(self, value, state): | |
572 | pass |
|
572 | pass | |
573 |
|
573 | |||
574 | return _validator |
|
574 | return _validator | |
575 |
|
575 | |||
576 |
|
576 | |||
|
577 | def CannotHaveGitSuffix(): | |||
|
578 | class _validator(formencode.validators.FancyValidator): | |||
|
579 | messages = { | |||
|
580 | 'has_git_suffix': | |||
|
581 | _(u'Repository name cannot end with .git'), | |||
|
582 | } | |||
|
583 | ||||
|
584 | def _to_python(self, value, state): | |||
|
585 | return value | |||
|
586 | ||||
|
587 | def validate_python(self, value, state): | |||
|
588 | if value and value.endswith('.git'): | |||
|
589 | msg = M( | |||
|
590 | self, 'has_git_suffix', state) | |||
|
591 | raise formencode.Invalid( | |||
|
592 | msg, value, state, error_dict={'repo_name': msg}) | |||
|
593 | ||||
|
594 | return _validator | |||
|
595 | ||||
|
596 | ||||
577 | def ValidCloneUri(): |
|
597 | def ValidCloneUri(): | |
578 | class InvalidCloneUrl(Exception): |
|
598 | class InvalidCloneUrl(Exception): | |
579 | allowed_prefixes = () |
|
599 | allowed_prefixes = () | |
580 |
|
600 | |||
581 | def url_handler(repo_type, url): |
|
601 | def url_handler(repo_type, url): | |
582 | config = make_db_config(clear_session=False) |
|
602 | config = make_db_config(clear_session=False) | |
583 | if repo_type == 'hg': |
|
603 | if repo_type == 'hg': | |
584 | allowed_prefixes = ('http', 'svn+http', 'git+http') |
|
604 | allowed_prefixes = ('http', 'svn+http', 'git+http') | |
585 |
|
605 | |||
586 | if 'http' in url[:4]: |
|
606 | if 'http' in url[:4]: | |
587 | # initially check if it's at least the proper URL |
|
607 | # initially check if it's at least the proper URL | |
588 | # or does it pass basic auth |
|
608 | # or does it pass basic auth | |
589 | MercurialRepository.check_url(url, config) |
|
609 | MercurialRepository.check_url(url, config) | |
590 | elif 'svn+http' in url[:8]: # svn->hg import |
|
610 | elif 'svn+http' in url[:8]: # svn->hg import | |
591 | SubversionRepository.check_url(url, config) |
|
611 | SubversionRepository.check_url(url, config) | |
592 | elif 'git+http' in url[:8]: # git->hg import |
|
612 | elif 'git+http' in url[:8]: # git->hg import | |
593 | raise NotImplementedError() |
|
613 | raise NotImplementedError() | |
594 | else: |
|
614 | else: | |
595 | exc = InvalidCloneUrl('Clone from URI %s not allowed. ' |
|
615 | exc = InvalidCloneUrl('Clone from URI %s not allowed. ' | |
596 | 'Allowed url must start with one of %s' |
|
616 | 'Allowed url must start with one of %s' | |
597 | % (url, ','.join(allowed_prefixes))) |
|
617 | % (url, ','.join(allowed_prefixes))) | |
598 | exc.allowed_prefixes = allowed_prefixes |
|
618 | exc.allowed_prefixes = allowed_prefixes | |
599 | raise exc |
|
619 | raise exc | |
600 |
|
620 | |||
601 | elif repo_type == 'git': |
|
621 | elif repo_type == 'git': | |
602 | allowed_prefixes = ('http', 'svn+http', 'hg+http') |
|
622 | allowed_prefixes = ('http', 'svn+http', 'hg+http') | |
603 | if 'http' in url[:4]: |
|
623 | if 'http' in url[:4]: | |
604 | # initially check if it's at least the proper URL |
|
624 | # initially check if it's at least the proper URL | |
605 | # or does it pass basic auth |
|
625 | # or does it pass basic auth | |
606 | GitRepository.check_url(url, config) |
|
626 | GitRepository.check_url(url, config) | |
607 | elif 'svn+http' in url[:8]: # svn->git import |
|
627 | elif 'svn+http' in url[:8]: # svn->git import | |
608 | raise NotImplementedError() |
|
628 | raise NotImplementedError() | |
609 | elif 'hg+http' in url[:8]: # hg->git import |
|
629 | elif 'hg+http' in url[:8]: # hg->git import | |
610 | raise NotImplementedError() |
|
630 | raise NotImplementedError() | |
611 | else: |
|
631 | else: | |
612 | exc = InvalidCloneUrl('Clone from URI %s not allowed. ' |
|
632 | exc = InvalidCloneUrl('Clone from URI %s not allowed. ' | |
613 | 'Allowed url must start with one of %s' |
|
633 | 'Allowed url must start with one of %s' | |
614 | % (url, ','.join(allowed_prefixes))) |
|
634 | % (url, ','.join(allowed_prefixes))) | |
615 | exc.allowed_prefixes = allowed_prefixes |
|
635 | exc.allowed_prefixes = allowed_prefixes | |
616 | raise exc |
|
636 | raise exc | |
617 |
|
637 | |||
618 | class _validator(formencode.validators.FancyValidator): |
|
638 | class _validator(formencode.validators.FancyValidator): | |
619 | messages = { |
|
639 | messages = { | |
620 | 'clone_uri': _(u'invalid clone url for %(rtype)s repository'), |
|
640 | 'clone_uri': _(u'invalid clone url for %(rtype)s repository'), | |
621 | 'invalid_clone_uri': _( |
|
641 | 'invalid_clone_uri': _( | |
622 | u'Invalid clone url, provide a valid clone ' |
|
642 | u'Invalid clone url, provide a valid clone ' | |
623 | u'url starting with one of %(allowed_prefixes)s') |
|
643 | u'url starting with one of %(allowed_prefixes)s') | |
624 | } |
|
644 | } | |
625 |
|
645 | |||
626 | def validate_python(self, value, state): |
|
646 | def validate_python(self, value, state): | |
627 | repo_type = value.get('repo_type') |
|
647 | repo_type = value.get('repo_type') | |
628 | url = value.get('clone_uri') |
|
648 | url = value.get('clone_uri') | |
629 |
|
649 | |||
630 | if url: |
|
650 | if url: | |
631 | try: |
|
651 | try: | |
632 | url_handler(repo_type, url) |
|
652 | url_handler(repo_type, url) | |
633 | except InvalidCloneUrl as e: |
|
653 | except InvalidCloneUrl as e: | |
634 | log.warning(e) |
|
654 | log.warning(e) | |
635 | msg = M(self, 'invalid_clone_uri', rtype=repo_type, |
|
655 | msg = M(self, 'invalid_clone_uri', rtype=repo_type, | |
636 | allowed_prefixes=','.join(e.allowed_prefixes)) |
|
656 | allowed_prefixes=','.join(e.allowed_prefixes)) | |
637 | raise formencode.Invalid(msg, value, state, |
|
657 | raise formencode.Invalid(msg, value, state, | |
638 | error_dict={'clone_uri': msg}) |
|
658 | error_dict={'clone_uri': msg}) | |
639 | except Exception: |
|
659 | except Exception: | |
640 | log.exception('Url validation failed') |
|
660 | log.exception('Url validation failed') | |
641 | msg = M(self, 'clone_uri', rtype=repo_type) |
|
661 | msg = M(self, 'clone_uri', rtype=repo_type) | |
642 | raise formencode.Invalid(msg, value, state, |
|
662 | raise formencode.Invalid(msg, value, state, | |
643 | error_dict={'clone_uri': msg}) |
|
663 | error_dict={'clone_uri': msg}) | |
644 | return _validator |
|
664 | return _validator | |
645 |
|
665 | |||
646 |
|
666 | |||
647 | def ValidForkType(old_data={}): |
|
667 | def ValidForkType(old_data={}): | |
648 | class _validator(formencode.validators.FancyValidator): |
|
668 | class _validator(formencode.validators.FancyValidator): | |
649 | messages = { |
|
669 | messages = { | |
650 | 'invalid_fork_type': _(u'Fork have to be the same type as parent') |
|
670 | 'invalid_fork_type': _(u'Fork have to be the same type as parent') | |
651 | } |
|
671 | } | |
652 |
|
672 | |||
653 | def validate_python(self, value, state): |
|
673 | def validate_python(self, value, state): | |
654 | if old_data['repo_type'] != value: |
|
674 | if old_data['repo_type'] != value: | |
655 | msg = M(self, 'invalid_fork_type', state) |
|
675 | msg = M(self, 'invalid_fork_type', state) | |
656 | raise formencode.Invalid( |
|
676 | raise formencode.Invalid( | |
657 | msg, value, state, error_dict={'repo_type': msg} |
|
677 | msg, value, state, error_dict={'repo_type': msg} | |
658 | ) |
|
678 | ) | |
659 | return _validator |
|
679 | return _validator | |
660 |
|
680 | |||
661 |
|
681 | |||
662 | def CanWriteGroup(old_data=None): |
|
682 | def CanWriteGroup(old_data=None): | |
663 | class _validator(formencode.validators.FancyValidator): |
|
683 | class _validator(formencode.validators.FancyValidator): | |
664 | messages = { |
|
684 | messages = { | |
665 | 'permission_denied': _( |
|
685 | 'permission_denied': _( | |
666 | u"You do not have the permission " |
|
686 | u"You do not have the permission " | |
667 | u"to create repositories in this group."), |
|
687 | u"to create repositories in this group."), | |
668 | 'permission_denied_root': _( |
|
688 | 'permission_denied_root': _( | |
669 | u"You do not have the permission to store repositories in " |
|
689 | u"You do not have the permission to store repositories in " | |
670 | u"the root location.") |
|
690 | u"the root location.") | |
671 | } |
|
691 | } | |
672 |
|
692 | |||
673 | def _to_python(self, value, state): |
|
693 | def _to_python(self, value, state): | |
674 | # root location |
|
694 | # root location | |
675 | if value in [-1, "-1"]: |
|
695 | if value in [-1, "-1"]: | |
676 | return None |
|
696 | return None | |
677 | return value |
|
697 | return value | |
678 |
|
698 | |||
679 | def validate_python(self, value, state): |
|
699 | def validate_python(self, value, state): | |
680 | gr = RepoGroup.get(value) |
|
700 | gr = RepoGroup.get(value) | |
681 | gr_name = gr.group_name if gr else None # None means ROOT location |
|
701 | gr_name = gr.group_name if gr else None # None means ROOT location | |
682 | # create repositories with write permission on group is set to true |
|
702 | # create repositories with write permission on group is set to true | |
683 | create_on_write = HasPermissionAny( |
|
703 | create_on_write = HasPermissionAny( | |
684 | 'hg.create.write_on_repogroup.true')() |
|
704 | 'hg.create.write_on_repogroup.true')() | |
685 | group_admin = HasRepoGroupPermissionAny('group.admin')( |
|
705 | group_admin = HasRepoGroupPermissionAny('group.admin')( | |
686 | gr_name, 'can write into group validator') |
|
706 | gr_name, 'can write into group validator') | |
687 | group_write = HasRepoGroupPermissionAny('group.write')( |
|
707 | group_write = HasRepoGroupPermissionAny('group.write')( | |
688 | gr_name, 'can write into group validator') |
|
708 | gr_name, 'can write into group validator') | |
689 | forbidden = not (group_admin or (group_write and create_on_write)) |
|
709 | forbidden = not (group_admin or (group_write and create_on_write)) | |
690 | can_create_repos = HasPermissionAny( |
|
710 | can_create_repos = HasPermissionAny( | |
691 | 'hg.admin', 'hg.create.repository') |
|
711 | 'hg.admin', 'hg.create.repository') | |
692 | gid = (old_data['repo_group'].get('group_id') |
|
712 | gid = (old_data['repo_group'].get('group_id') | |
693 | if (old_data and 'repo_group' in old_data) else None) |
|
713 | if (old_data and 'repo_group' in old_data) else None) | |
694 | value_changed = gid != safe_int(value) |
|
714 | value_changed = gid != safe_int(value) | |
695 | new = not old_data |
|
715 | new = not old_data | |
696 | # do check if we changed the value, there's a case that someone got |
|
716 | # do check if we changed the value, there's a case that someone got | |
697 | # revoked write permissions to a repository, he still created, we |
|
717 | # revoked write permissions to a repository, he still created, we | |
698 | # don't need to check permission if he didn't change the value of |
|
718 | # don't need to check permission if he didn't change the value of | |
699 | # groups in form box |
|
719 | # groups in form box | |
700 | if value_changed or new: |
|
720 | if value_changed or new: | |
701 | # parent group need to be existing |
|
721 | # parent group need to be existing | |
702 | if gr and forbidden: |
|
722 | if gr and forbidden: | |
703 | msg = M(self, 'permission_denied', state) |
|
723 | msg = M(self, 'permission_denied', state) | |
704 | raise formencode.Invalid( |
|
724 | raise formencode.Invalid( | |
705 | msg, value, state, error_dict={'repo_type': msg} |
|
725 | msg, value, state, error_dict={'repo_type': msg} | |
706 | ) |
|
726 | ) | |
707 | # check if we can write to root location ! |
|
727 | # check if we can write to root location ! | |
708 | elif gr is None and not can_create_repos(): |
|
728 | elif gr is None and not can_create_repos(): | |
709 | msg = M(self, 'permission_denied_root', state) |
|
729 | msg = M(self, 'permission_denied_root', state) | |
710 | raise formencode.Invalid( |
|
730 | raise formencode.Invalid( | |
711 | msg, value, state, error_dict={'repo_type': msg} |
|
731 | msg, value, state, error_dict={'repo_type': msg} | |
712 | ) |
|
732 | ) | |
713 |
|
733 | |||
714 | return _validator |
|
734 | return _validator | |
715 |
|
735 | |||
716 |
|
736 | |||
717 | def ValidPerms(type_='repo'): |
|
737 | def ValidPerms(type_='repo'): | |
718 | if type_ == 'repo_group': |
|
738 | if type_ == 'repo_group': | |
719 | EMPTY_PERM = 'group.none' |
|
739 | EMPTY_PERM = 'group.none' | |
720 | elif type_ == 'repo': |
|
740 | elif type_ == 'repo': | |
721 | EMPTY_PERM = 'repository.none' |
|
741 | EMPTY_PERM = 'repository.none' | |
722 | elif type_ == 'user_group': |
|
742 | elif type_ == 'user_group': | |
723 | EMPTY_PERM = 'usergroup.none' |
|
743 | EMPTY_PERM = 'usergroup.none' | |
724 |
|
744 | |||
725 | class _validator(formencode.validators.FancyValidator): |
|
745 | class _validator(formencode.validators.FancyValidator): | |
726 | messages = { |
|
746 | messages = { | |
727 | 'perm_new_member_name': |
|
747 | 'perm_new_member_name': | |
728 | _(u'This username or user group name is not valid') |
|
748 | _(u'This username or user group name is not valid') | |
729 | } |
|
749 | } | |
730 |
|
750 | |||
731 | def _to_python(self, value, state): |
|
751 | def _to_python(self, value, state): | |
732 | perm_updates = OrderedSet() |
|
752 | perm_updates = OrderedSet() | |
733 | perm_additions = OrderedSet() |
|
753 | perm_additions = OrderedSet() | |
734 | perm_deletions = OrderedSet() |
|
754 | perm_deletions = OrderedSet() | |
735 | # build a list of permission to update/delete and new permission |
|
755 | # build a list of permission to update/delete and new permission | |
736 |
|
756 | |||
737 | # Read the perm_new_member/perm_del_member attributes and group |
|
757 | # Read the perm_new_member/perm_del_member attributes and group | |
738 | # them by they IDs |
|
758 | # them by they IDs | |
739 | new_perms_group = defaultdict(dict) |
|
759 | new_perms_group = defaultdict(dict) | |
740 | del_perms_group = defaultdict(dict) |
|
760 | del_perms_group = defaultdict(dict) | |
741 | for k, v in value.copy().iteritems(): |
|
761 | for k, v in value.copy().iteritems(): | |
742 | if k.startswith('perm_del_member'): |
|
762 | if k.startswith('perm_del_member'): | |
743 | # delete from org storage so we don't process that later |
|
763 | # delete from org storage so we don't process that later | |
744 | del value[k] |
|
764 | del value[k] | |
745 | # part is `id`, `type` |
|
765 | # part is `id`, `type` | |
746 | _type, part = k.split('perm_del_member_') |
|
766 | _type, part = k.split('perm_del_member_') | |
747 | args = part.split('_') |
|
767 | args = part.split('_') | |
748 | if len(args) == 2: |
|
768 | if len(args) == 2: | |
749 | _key, pos = args |
|
769 | _key, pos = args | |
750 | del_perms_group[pos][_key] = v |
|
770 | del_perms_group[pos][_key] = v | |
751 | if k.startswith('perm_new_member'): |
|
771 | if k.startswith('perm_new_member'): | |
752 | # delete from org storage so we don't process that later |
|
772 | # delete from org storage so we don't process that later | |
753 | del value[k] |
|
773 | del value[k] | |
754 | # part is `id`, `type`, `perm` |
|
774 | # part is `id`, `type`, `perm` | |
755 | _type, part = k.split('perm_new_member_') |
|
775 | _type, part = k.split('perm_new_member_') | |
756 | args = part.split('_') |
|
776 | args = part.split('_') | |
757 | if len(args) == 2: |
|
777 | if len(args) == 2: | |
758 | _key, pos = args |
|
778 | _key, pos = args | |
759 | new_perms_group[pos][_key] = v |
|
779 | new_perms_group[pos][_key] = v | |
760 |
|
780 | |||
761 | # store the deletes |
|
781 | # store the deletes | |
762 | for k in sorted(del_perms_group.keys()): |
|
782 | for k in sorted(del_perms_group.keys()): | |
763 | perm_dict = del_perms_group[k] |
|
783 | perm_dict = del_perms_group[k] | |
764 | del_member = perm_dict.get('id') |
|
784 | del_member = perm_dict.get('id') | |
765 | del_type = perm_dict.get('type') |
|
785 | del_type = perm_dict.get('type') | |
766 | if del_member and del_type: |
|
786 | if del_member and del_type: | |
767 | perm_deletions.add((del_member, None, del_type)) |
|
787 | perm_deletions.add((del_member, None, del_type)) | |
768 |
|
788 | |||
769 | # store additions in order of how they were added in web form |
|
789 | # store additions in order of how they were added in web form | |
770 | for k in sorted(new_perms_group.keys()): |
|
790 | for k in sorted(new_perms_group.keys()): | |
771 | perm_dict = new_perms_group[k] |
|
791 | perm_dict = new_perms_group[k] | |
772 | new_member = perm_dict.get('id') |
|
792 | new_member = perm_dict.get('id') | |
773 | new_type = perm_dict.get('type') |
|
793 | new_type = perm_dict.get('type') | |
774 | new_perm = perm_dict.get('perm') |
|
794 | new_perm = perm_dict.get('perm') | |
775 | if new_member and new_perm and new_type: |
|
795 | if new_member and new_perm and new_type: | |
776 | perm_additions.add((new_member, new_perm, new_type)) |
|
796 | perm_additions.add((new_member, new_perm, new_type)) | |
777 |
|
797 | |||
778 | # get updates of permissions |
|
798 | # get updates of permissions | |
779 | # (read the existing radio button states) |
|
799 | # (read the existing radio button states) | |
780 | for k, update_value in value.iteritems(): |
|
800 | for k, update_value in value.iteritems(): | |
781 | if k.startswith('u_perm_') or k.startswith('g_perm_'): |
|
801 | if k.startswith('u_perm_') or k.startswith('g_perm_'): | |
782 | member = k[7:] |
|
802 | member = k[7:] | |
783 | update_type = {'u': 'user', |
|
803 | update_type = {'u': 'user', | |
784 | 'g': 'users_group'}[k[0]] |
|
804 | 'g': 'users_group'}[k[0]] | |
785 | if member == User.DEFAULT_USER: |
|
805 | if member == User.DEFAULT_USER: | |
786 | if str2bool(value.get('repo_private')): |
|
806 | if str2bool(value.get('repo_private')): | |
787 | # set none for default when updating to |
|
807 | # set none for default when updating to | |
788 | # private repo protects agains form manipulation |
|
808 | # private repo protects agains form manipulation | |
789 | update_value = EMPTY_PERM |
|
809 | update_value = EMPTY_PERM | |
790 | perm_updates.add((member, update_value, update_type)) |
|
810 | perm_updates.add((member, update_value, update_type)) | |
791 | # check the deletes |
|
811 | # check the deletes | |
792 |
|
812 | |||
793 | value['perm_additions'] = list(perm_additions) |
|
813 | value['perm_additions'] = list(perm_additions) | |
794 | value['perm_updates'] = list(perm_updates) |
|
814 | value['perm_updates'] = list(perm_updates) | |
795 | value['perm_deletions'] = list(perm_deletions) |
|
815 | value['perm_deletions'] = list(perm_deletions) | |
796 |
|
816 | |||
797 | # validate users they exist and they are active ! |
|
817 | # validate users they exist and they are active ! | |
798 | for member_id, _perm, member_type in perm_additions: |
|
818 | for member_id, _perm, member_type in perm_additions: | |
799 | try: |
|
819 | try: | |
800 | if member_type == 'user': |
|
820 | if member_type == 'user': | |
801 | self.user_db = User.query()\ |
|
821 | self.user_db = User.query()\ | |
802 | .filter(User.active == true())\ |
|
822 | .filter(User.active == true())\ | |
803 | .filter(User.user_id == member_id).one() |
|
823 | .filter(User.user_id == member_id).one() | |
804 | if member_type == 'users_group': |
|
824 | if member_type == 'users_group': | |
805 | self.user_db = UserGroup.query()\ |
|
825 | self.user_db = UserGroup.query()\ | |
806 | .filter(UserGroup.users_group_active == true())\ |
|
826 | .filter(UserGroup.users_group_active == true())\ | |
807 | .filter(UserGroup.users_group_id == member_id)\ |
|
827 | .filter(UserGroup.users_group_id == member_id)\ | |
808 | .one() |
|
828 | .one() | |
809 |
|
829 | |||
810 | except Exception: |
|
830 | except Exception: | |
811 | log.exception('Updated permission failed: org_exc:') |
|
831 | log.exception('Updated permission failed: org_exc:') | |
812 | msg = M(self, 'perm_new_member_type', state) |
|
832 | msg = M(self, 'perm_new_member_type', state) | |
813 | raise formencode.Invalid( |
|
833 | raise formencode.Invalid( | |
814 | msg, value, state, error_dict={ |
|
834 | msg, value, state, error_dict={ | |
815 | 'perm_new_member_name': msg} |
|
835 | 'perm_new_member_name': msg} | |
816 | ) |
|
836 | ) | |
817 | return value |
|
837 | return value | |
818 | return _validator |
|
838 | return _validator | |
819 |
|
839 | |||
820 |
|
840 | |||
821 | def ValidSettings(): |
|
841 | def ValidSettings(): | |
822 | class _validator(formencode.validators.FancyValidator): |
|
842 | class _validator(formencode.validators.FancyValidator): | |
823 | def _to_python(self, value, state): |
|
843 | def _to_python(self, value, state): | |
824 | # settings form for users that are not admin |
|
844 | # settings form for users that are not admin | |
825 | # can't edit certain parameters, it's extra backup if they mangle |
|
845 | # can't edit certain parameters, it's extra backup if they mangle | |
826 | # with forms |
|
846 | # with forms | |
827 |
|
847 | |||
828 | forbidden_params = [ |
|
848 | forbidden_params = [ | |
829 | 'user', 'repo_type', 'repo_enable_locking', |
|
849 | 'user', 'repo_type', 'repo_enable_locking', | |
830 | 'repo_enable_downloads', 'repo_enable_statistics' |
|
850 | 'repo_enable_downloads', 'repo_enable_statistics' | |
831 | ] |
|
851 | ] | |
832 |
|
852 | |||
833 | for param in forbidden_params: |
|
853 | for param in forbidden_params: | |
834 | if param in value: |
|
854 | if param in value: | |
835 | del value[param] |
|
855 | del value[param] | |
836 | return value |
|
856 | return value | |
837 |
|
857 | |||
838 | def validate_python(self, value, state): |
|
858 | def validate_python(self, value, state): | |
839 | pass |
|
859 | pass | |
840 | return _validator |
|
860 | return _validator | |
841 |
|
861 | |||
842 |
|
862 | |||
843 | def ValidPath(): |
|
863 | def ValidPath(): | |
844 | class _validator(formencode.validators.FancyValidator): |
|
864 | class _validator(formencode.validators.FancyValidator): | |
845 | messages = { |
|
865 | messages = { | |
846 | 'invalid_path': _(u'This is not a valid path') |
|
866 | 'invalid_path': _(u'This is not a valid path') | |
847 | } |
|
867 | } | |
848 |
|
868 | |||
849 | def validate_python(self, value, state): |
|
869 | def validate_python(self, value, state): | |
850 | if not os.path.isdir(value): |
|
870 | if not os.path.isdir(value): | |
851 | msg = M(self, 'invalid_path', state) |
|
871 | msg = M(self, 'invalid_path', state) | |
852 | raise formencode.Invalid( |
|
872 | raise formencode.Invalid( | |
853 | msg, value, state, error_dict={'paths_root_path': msg} |
|
873 | msg, value, state, error_dict={'paths_root_path': msg} | |
854 | ) |
|
874 | ) | |
855 | return _validator |
|
875 | return _validator | |
856 |
|
876 | |||
857 |
|
877 | |||
858 | def UniqSystemEmail(old_data={}): |
|
878 | def UniqSystemEmail(old_data={}): | |
859 | class _validator(formencode.validators.FancyValidator): |
|
879 | class _validator(formencode.validators.FancyValidator): | |
860 | messages = { |
|
880 | messages = { | |
861 | 'email_taken': _(u'This e-mail address is already taken') |
|
881 | 'email_taken': _(u'This e-mail address is already taken') | |
862 | } |
|
882 | } | |
863 |
|
883 | |||
864 | def _to_python(self, value, state): |
|
884 | def _to_python(self, value, state): | |
865 | return value.lower() |
|
885 | return value.lower() | |
866 |
|
886 | |||
867 | def validate_python(self, value, state): |
|
887 | def validate_python(self, value, state): | |
868 | if (old_data.get('email') or '').lower() != value: |
|
888 | if (old_data.get('email') or '').lower() != value: | |
869 | user = User.get_by_email(value, case_insensitive=True) |
|
889 | user = User.get_by_email(value, case_insensitive=True) | |
870 | if user: |
|
890 | if user: | |
871 | msg = M(self, 'email_taken', state) |
|
891 | msg = M(self, 'email_taken', state) | |
872 | raise formencode.Invalid( |
|
892 | raise formencode.Invalid( | |
873 | msg, value, state, error_dict={'email': msg} |
|
893 | msg, value, state, error_dict={'email': msg} | |
874 | ) |
|
894 | ) | |
875 | return _validator |
|
895 | return _validator | |
876 |
|
896 | |||
877 |
|
897 | |||
878 | def ValidSystemEmail(): |
|
898 | def ValidSystemEmail(): | |
879 | class _validator(formencode.validators.FancyValidator): |
|
899 | class _validator(formencode.validators.FancyValidator): | |
880 | messages = { |
|
900 | messages = { | |
881 | 'non_existing_email': _(u'e-mail "%(email)s" does not exist.') |
|
901 | 'non_existing_email': _(u'e-mail "%(email)s" does not exist.') | |
882 | } |
|
902 | } | |
883 |
|
903 | |||
884 | def _to_python(self, value, state): |
|
904 | def _to_python(self, value, state): | |
885 | return value.lower() |
|
905 | return value.lower() | |
886 |
|
906 | |||
887 | def validate_python(self, value, state): |
|
907 | def validate_python(self, value, state): | |
888 | user = User.get_by_email(value, case_insensitive=True) |
|
908 | user = User.get_by_email(value, case_insensitive=True) | |
889 | if user is None: |
|
909 | if user is None: | |
890 | msg = M(self, 'non_existing_email', state, email=value) |
|
910 | msg = M(self, 'non_existing_email', state, email=value) | |
891 | raise formencode.Invalid( |
|
911 | raise formencode.Invalid( | |
892 | msg, value, state, error_dict={'email': msg} |
|
912 | msg, value, state, error_dict={'email': msg} | |
893 | ) |
|
913 | ) | |
894 |
|
914 | |||
895 | return _validator |
|
915 | return _validator | |
896 |
|
916 | |||
897 |
|
917 | |||
898 | def NotReviewedRevisions(repo_id): |
|
918 | def NotReviewedRevisions(repo_id): | |
899 | class _validator(formencode.validators.FancyValidator): |
|
919 | class _validator(formencode.validators.FancyValidator): | |
900 | messages = { |
|
920 | messages = { | |
901 | 'rev_already_reviewed': |
|
921 | 'rev_already_reviewed': | |
902 | _(u'Revisions %(revs)s are already part of pull request ' |
|
922 | _(u'Revisions %(revs)s are already part of pull request ' | |
903 | u'or have set status'), |
|
923 | u'or have set status'), | |
904 | } |
|
924 | } | |
905 |
|
925 | |||
906 | def validate_python(self, value, state): |
|
926 | def validate_python(self, value, state): | |
907 | # check revisions if they are not reviewed, or a part of another |
|
927 | # check revisions if they are not reviewed, or a part of another | |
908 | # pull request |
|
928 | # pull request | |
909 | statuses = ChangesetStatus.query()\ |
|
929 | statuses = ChangesetStatus.query()\ | |
910 | .filter(ChangesetStatus.revision.in_(value))\ |
|
930 | .filter(ChangesetStatus.revision.in_(value))\ | |
911 | .filter(ChangesetStatus.repo_id == repo_id)\ |
|
931 | .filter(ChangesetStatus.repo_id == repo_id)\ | |
912 | .all() |
|
932 | .all() | |
913 |
|
933 | |||
914 | errors = [] |
|
934 | errors = [] | |
915 | for status in statuses: |
|
935 | for status in statuses: | |
916 | if status.pull_request_id: |
|
936 | if status.pull_request_id: | |
917 | errors.append(['pull_req', status.revision[:12]]) |
|
937 | errors.append(['pull_req', status.revision[:12]]) | |
918 | elif status.status: |
|
938 | elif status.status: | |
919 | errors.append(['status', status.revision[:12]]) |
|
939 | errors.append(['status', status.revision[:12]]) | |
920 |
|
940 | |||
921 | if errors: |
|
941 | if errors: | |
922 | revs = ','.join([x[1] for x in errors]) |
|
942 | revs = ','.join([x[1] for x in errors]) | |
923 | msg = M(self, 'rev_already_reviewed', state, revs=revs) |
|
943 | msg = M(self, 'rev_already_reviewed', state, revs=revs) | |
924 | raise formencode.Invalid( |
|
944 | raise formencode.Invalid( | |
925 | msg, value, state, error_dict={'revisions': revs}) |
|
945 | msg, value, state, error_dict={'revisions': revs}) | |
926 |
|
946 | |||
927 | return _validator |
|
947 | return _validator | |
928 |
|
948 | |||
929 |
|
949 | |||
930 | def ValidIp(): |
|
950 | def ValidIp(): | |
931 | class _validator(CIDR): |
|
951 | class _validator(CIDR): | |
932 | messages = { |
|
952 | messages = { | |
933 | 'badFormat': _(u'Please enter a valid IPv4 or IpV6 address'), |
|
953 | 'badFormat': _(u'Please enter a valid IPv4 or IpV6 address'), | |
934 | 'illegalBits': _( |
|
954 | 'illegalBits': _( | |
935 | u'The network size (bits) must be within the range ' |
|
955 | u'The network size (bits) must be within the range ' | |
936 | u'of 0-32 (not %(bits)r)'), |
|
956 | u'of 0-32 (not %(bits)r)'), | |
937 | } |
|
957 | } | |
938 |
|
958 | |||
939 | # we ovveride the default to_python() call |
|
959 | # we ovveride the default to_python() call | |
940 | def to_python(self, value, state): |
|
960 | def to_python(self, value, state): | |
941 | v = super(_validator, self).to_python(value, state) |
|
961 | v = super(_validator, self).to_python(value, state) | |
942 | v = v.strip() |
|
962 | v = v.strip() | |
943 | net = ipaddress.ip_network(address=v, strict=False) |
|
963 | net = ipaddress.ip_network(address=v, strict=False) | |
944 | return str(net) |
|
964 | return str(net) | |
945 |
|
965 | |||
946 | def validate_python(self, value, state): |
|
966 | def validate_python(self, value, state): | |
947 | try: |
|
967 | try: | |
948 | addr = value.strip() |
|
968 | addr = value.strip() | |
949 | # this raises an ValueError if address is not IpV4 or IpV6 |
|
969 | # this raises an ValueError if address is not IpV4 or IpV6 | |
950 | ipaddress.ip_network(addr, strict=False) |
|
970 | ipaddress.ip_network(addr, strict=False) | |
951 | except ValueError: |
|
971 | except ValueError: | |
952 | raise formencode.Invalid(self.message('badFormat', state), |
|
972 | raise formencode.Invalid(self.message('badFormat', state), | |
953 | value, state) |
|
973 | value, state) | |
954 |
|
974 | |||
955 | return _validator |
|
975 | return _validator | |
956 |
|
976 | |||
957 |
|
977 | |||
958 | def FieldKey(): |
|
978 | def FieldKey(): | |
959 | class _validator(formencode.validators.FancyValidator): |
|
979 | class _validator(formencode.validators.FancyValidator): | |
960 | messages = { |
|
980 | messages = { | |
961 | 'badFormat': _( |
|
981 | 'badFormat': _( | |
962 | u'Key name can only consist of letters, ' |
|
982 | u'Key name can only consist of letters, ' | |
963 | u'underscore, dash or numbers'), |
|
983 | u'underscore, dash or numbers'), | |
964 | } |
|
984 | } | |
965 |
|
985 | |||
966 | def validate_python(self, value, state): |
|
986 | def validate_python(self, value, state): | |
967 | if not re.match('[a-zA-Z0-9_-]+$', value): |
|
987 | if not re.match('[a-zA-Z0-9_-]+$', value): | |
968 | raise formencode.Invalid(self.message('badFormat', state), |
|
988 | raise formencode.Invalid(self.message('badFormat', state), | |
969 | value, state) |
|
989 | value, state) | |
970 | return _validator |
|
990 | return _validator | |
971 |
|
991 | |||
972 |
|
992 | |||
973 | def ValidAuthPlugins(): |
|
993 | def ValidAuthPlugins(): | |
974 | class _validator(formencode.validators.FancyValidator): |
|
994 | class _validator(formencode.validators.FancyValidator): | |
975 | messages = { |
|
995 | messages = { | |
976 | 'import_duplicate': _( |
|
996 | 'import_duplicate': _( | |
977 | u'Plugins %(loaded)s and %(next_to_load)s ' |
|
997 | u'Plugins %(loaded)s and %(next_to_load)s ' | |
978 | u'both export the same name'), |
|
998 | u'both export the same name'), | |
979 | 'missing_includeme': _( |
|
999 | 'missing_includeme': _( | |
980 | u'The plugin "%(plugin_id)s" is missing an includeme ' |
|
1000 | u'The plugin "%(plugin_id)s" is missing an includeme ' | |
981 | u'function.'), |
|
1001 | u'function.'), | |
982 | 'import_error': _( |
|
1002 | 'import_error': _( | |
983 | u'Can not load plugin "%(plugin_id)s"'), |
|
1003 | u'Can not load plugin "%(plugin_id)s"'), | |
984 | 'no_plugin': _( |
|
1004 | 'no_plugin': _( | |
985 | u'No plugin available with ID "%(plugin_id)s"'), |
|
1005 | u'No plugin available with ID "%(plugin_id)s"'), | |
986 | } |
|
1006 | } | |
987 |
|
1007 | |||
988 | def _to_python(self, value, state): |
|
1008 | def _to_python(self, value, state): | |
989 | # filter empty values |
|
1009 | # filter empty values | |
990 | return filter(lambda s: s not in [None, ''], value) |
|
1010 | return filter(lambda s: s not in [None, ''], value) | |
991 |
|
1011 | |||
992 | def _validate_legacy_plugin_id(self, plugin_id, value, state): |
|
1012 | def _validate_legacy_plugin_id(self, plugin_id, value, state): | |
993 | """ |
|
1013 | """ | |
994 | Validates that the plugin import works. It also checks that the |
|
1014 | Validates that the plugin import works. It also checks that the | |
995 | plugin has an includeme attribute. |
|
1015 | plugin has an includeme attribute. | |
996 | """ |
|
1016 | """ | |
997 | try: |
|
1017 | try: | |
998 | plugin = _import_legacy_plugin(plugin_id) |
|
1018 | plugin = _import_legacy_plugin(plugin_id) | |
999 | except Exception as e: |
|
1019 | except Exception as e: | |
1000 | log.exception( |
|
1020 | log.exception( | |
1001 | 'Exception during import of auth legacy plugin "{}"' |
|
1021 | 'Exception during import of auth legacy plugin "{}"' | |
1002 | .format(plugin_id)) |
|
1022 | .format(plugin_id)) | |
1003 | msg = M(self, 'import_error', plugin_id=plugin_id) |
|
1023 | msg = M(self, 'import_error', plugin_id=plugin_id) | |
1004 | raise formencode.Invalid(msg, value, state) |
|
1024 | raise formencode.Invalid(msg, value, state) | |
1005 |
|
1025 | |||
1006 | if not hasattr(plugin, 'includeme'): |
|
1026 | if not hasattr(plugin, 'includeme'): | |
1007 | msg = M(self, 'missing_includeme', plugin_id=plugin_id) |
|
1027 | msg = M(self, 'missing_includeme', plugin_id=plugin_id) | |
1008 | raise formencode.Invalid(msg, value, state) |
|
1028 | raise formencode.Invalid(msg, value, state) | |
1009 |
|
1029 | |||
1010 | return plugin |
|
1030 | return plugin | |
1011 |
|
1031 | |||
1012 | def _validate_plugin_id(self, plugin_id, value, state): |
|
1032 | def _validate_plugin_id(self, plugin_id, value, state): | |
1013 | """ |
|
1033 | """ | |
1014 | Plugins are already imported during app start up. Therefore this |
|
1034 | Plugins are already imported during app start up. Therefore this | |
1015 | validation only retrieves the plugin from the plugin registry and |
|
1035 | validation only retrieves the plugin from the plugin registry and | |
1016 | if it returns something not None everything is OK. |
|
1036 | if it returns something not None everything is OK. | |
1017 | """ |
|
1037 | """ | |
1018 | plugin = loadplugin(plugin_id) |
|
1038 | plugin = loadplugin(plugin_id) | |
1019 |
|
1039 | |||
1020 | if plugin is None: |
|
1040 | if plugin is None: | |
1021 | msg = M(self, 'no_plugin', plugin_id=plugin_id) |
|
1041 | msg = M(self, 'no_plugin', plugin_id=plugin_id) | |
1022 | raise formencode.Invalid(msg, value, state) |
|
1042 | raise formencode.Invalid(msg, value, state) | |
1023 |
|
1043 | |||
1024 | return plugin |
|
1044 | return plugin | |
1025 |
|
1045 | |||
1026 | def validate_python(self, value, state): |
|
1046 | def validate_python(self, value, state): | |
1027 | unique_names = {} |
|
1047 | unique_names = {} | |
1028 | for plugin_id in value: |
|
1048 | for plugin_id in value: | |
1029 |
|
1049 | |||
1030 | # Validate legacy or normal plugin. |
|
1050 | # Validate legacy or normal plugin. | |
1031 | if plugin_id.startswith(legacy_plugin_prefix): |
|
1051 | if plugin_id.startswith(legacy_plugin_prefix): | |
1032 | plugin = self._validate_legacy_plugin_id( |
|
1052 | plugin = self._validate_legacy_plugin_id( | |
1033 | plugin_id, value, state) |
|
1053 | plugin_id, value, state) | |
1034 | else: |
|
1054 | else: | |
1035 | plugin = self._validate_plugin_id(plugin_id, value, state) |
|
1055 | plugin = self._validate_plugin_id(plugin_id, value, state) | |
1036 |
|
1056 | |||
1037 | # Only allow unique plugin names. |
|
1057 | # Only allow unique plugin names. | |
1038 | if plugin.name in unique_names: |
|
1058 | if plugin.name in unique_names: | |
1039 | msg = M(self, 'import_duplicate', state, |
|
1059 | msg = M(self, 'import_duplicate', state, | |
1040 | loaded=unique_names[plugin.name], |
|
1060 | loaded=unique_names[plugin.name], | |
1041 | next_to_load=plugin) |
|
1061 | next_to_load=plugin) | |
1042 | raise formencode.Invalid(msg, value, state) |
|
1062 | raise formencode.Invalid(msg, value, state) | |
1043 | unique_names[plugin.name] = plugin |
|
1063 | unique_names[plugin.name] = plugin | |
1044 |
|
1064 | |||
1045 | return _validator |
|
1065 | return _validator | |
1046 |
|
1066 | |||
1047 |
|
1067 | |||
1048 | def ValidPattern(): |
|
1068 | def ValidPattern(): | |
1049 |
|
1069 | |||
1050 | class _Validator(formencode.validators.FancyValidator): |
|
1070 | class _Validator(formencode.validators.FancyValidator): | |
1051 |
|
1071 | |||
1052 | def _to_python(self, value, state): |
|
1072 | def _to_python(self, value, state): | |
1053 | patterns = [] |
|
1073 | patterns = [] | |
1054 |
|
1074 | |||
1055 | prefix = 'new_pattern' |
|
1075 | prefix = 'new_pattern' | |
1056 | for name, v in value.iteritems(): |
|
1076 | for name, v in value.iteritems(): | |
1057 | pattern_name = '_'.join((prefix, 'pattern')) |
|
1077 | pattern_name = '_'.join((prefix, 'pattern')) | |
1058 | if name.startswith(pattern_name): |
|
1078 | if name.startswith(pattern_name): | |
1059 | new_item_id = name[len(pattern_name)+1:] |
|
1079 | new_item_id = name[len(pattern_name)+1:] | |
1060 |
|
1080 | |||
1061 | def _field(name): |
|
1081 | def _field(name): | |
1062 | return '%s_%s_%s' % (prefix, name, new_item_id) |
|
1082 | return '%s_%s_%s' % (prefix, name, new_item_id) | |
1063 |
|
1083 | |||
1064 | values = { |
|
1084 | values = { | |
1065 | 'issuetracker_pat': value.get(_field('pattern')), |
|
1085 | 'issuetracker_pat': value.get(_field('pattern')), | |
1066 | 'issuetracker_pat': value.get(_field('pattern')), |
|
1086 | 'issuetracker_pat': value.get(_field('pattern')), | |
1067 | 'issuetracker_url': value.get(_field('url')), |
|
1087 | 'issuetracker_url': value.get(_field('url')), | |
1068 | 'issuetracker_pref': value.get(_field('prefix')), |
|
1088 | 'issuetracker_pref': value.get(_field('prefix')), | |
1069 | 'issuetracker_desc': value.get(_field('description')) |
|
1089 | 'issuetracker_desc': value.get(_field('description')) | |
1070 | } |
|
1090 | } | |
1071 | new_uid = md5(values['issuetracker_pat']) |
|
1091 | new_uid = md5(values['issuetracker_pat']) | |
1072 |
|
1092 | |||
1073 | has_required_fields = ( |
|
1093 | has_required_fields = ( | |
1074 | values['issuetracker_pat'] |
|
1094 | values['issuetracker_pat'] | |
1075 | and values['issuetracker_url']) |
|
1095 | and values['issuetracker_url']) | |
1076 |
|
1096 | |||
1077 | if has_required_fields: |
|
1097 | if has_required_fields: | |
1078 | settings = [ |
|
1098 | settings = [ | |
1079 | ('_'.join((key, new_uid)), values[key], 'unicode') |
|
1099 | ('_'.join((key, new_uid)), values[key], 'unicode') | |
1080 | for key in values] |
|
1100 | for key in values] | |
1081 | patterns.append(settings) |
|
1101 | patterns.append(settings) | |
1082 |
|
1102 | |||
1083 | value['patterns'] = patterns |
|
1103 | value['patterns'] = patterns | |
1084 | delete_patterns = value.get('uid') or [] |
|
1104 | delete_patterns = value.get('uid') or [] | |
1085 | if not isinstance(delete_patterns, (list, tuple)): |
|
1105 | if not isinstance(delete_patterns, (list, tuple)): | |
1086 | delete_patterns = [delete_patterns] |
|
1106 | delete_patterns = [delete_patterns] | |
1087 | value['delete_patterns'] = delete_patterns |
|
1107 | value['delete_patterns'] = delete_patterns | |
1088 | return value |
|
1108 | return value | |
1089 | return _Validator |
|
1109 | return _Validator |
@@ -1,1250 +1,1264 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 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 urllib |
|
21 | import urllib | |
22 |
|
22 | |||
23 | import mock |
|
23 | import mock | |
24 | import pytest |
|
24 | import pytest | |
25 |
|
25 | |||
26 | from rhodecode.lib import auth |
|
26 | from rhodecode.lib import auth | |
27 | from rhodecode.lib.utils2 import safe_str, str2bool |
|
27 | from rhodecode.lib.utils2 import safe_str, str2bool, safe_unicode | |
28 | from rhodecode.lib.vcs.exceptions import RepositoryRequirementError |
|
28 | from rhodecode.lib.vcs.exceptions import RepositoryRequirementError | |
29 | from rhodecode.model.db import Repository, RepoGroup, UserRepoToPerm, User,\ |
|
29 | from rhodecode.model.db import Repository, RepoGroup, UserRepoToPerm, User,\ | |
30 | Permission |
|
30 | Permission | |
31 | from rhodecode.model.meta import Session |
|
31 | from rhodecode.model.meta import Session | |
32 | from rhodecode.model.repo import RepoModel |
|
32 | from rhodecode.model.repo import RepoModel | |
33 | from rhodecode.model.repo_group import RepoGroupModel |
|
33 | from rhodecode.model.repo_group import RepoGroupModel | |
34 | from rhodecode.model.settings import SettingsModel, VcsSettingsModel |
|
34 | from rhodecode.model.settings import SettingsModel, VcsSettingsModel | |
35 | from rhodecode.model.user import UserModel |
|
35 | from rhodecode.model.user import UserModel | |
36 | from rhodecode.tests import ( |
|
36 | from rhodecode.tests import ( | |
37 | login_user_session, url, assert_session_flash, TEST_USER_ADMIN_LOGIN, |
|
37 | login_user_session, url, assert_session_flash, TEST_USER_ADMIN_LOGIN, | |
38 | TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS, HG_REPO, GIT_REPO, |
|
38 | TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS, HG_REPO, GIT_REPO, | |
39 | logout_user_session) |
|
39 | logout_user_session) | |
40 | from rhodecode.tests.fixture import Fixture, error_function |
|
40 | from rhodecode.tests.fixture import Fixture, error_function | |
41 | from rhodecode.tests.utils import AssertResponse, repo_on_filesystem |
|
41 | from rhodecode.tests.utils import AssertResponse, repo_on_filesystem | |
42 |
|
42 | |||
43 | fixture = Fixture() |
|
43 | fixture = Fixture() | |
44 |
|
44 | |||
45 |
|
45 | |||
46 | @pytest.mark.usefixtures("app") |
|
46 | @pytest.mark.usefixtures("app") | |
47 | class TestAdminRepos: |
|
47 | class TestAdminRepos(object): | |
48 |
|
48 | |||
49 | def test_index(self): |
|
49 | def test_index(self): | |
50 | self.app.get(url('repos')) |
|
50 | self.app.get(url('repos')) | |
51 |
|
51 | |||
52 | def test_create_page_restricted(self, autologin_user, backend): |
|
52 | def test_create_page_restricted(self, autologin_user, backend): | |
53 | with mock.patch('rhodecode.BACKENDS', {'git': 'git'}): |
|
53 | with mock.patch('rhodecode.BACKENDS', {'git': 'git'}): | |
54 | response = self.app.get(url('new_repo'), status=200) |
|
54 | response = self.app.get(url('new_repo'), status=200) | |
55 | assert_response = AssertResponse(response) |
|
55 | assert_response = AssertResponse(response) | |
56 | element = assert_response.get_element('#repo_type') |
|
56 | element = assert_response.get_element('#repo_type') | |
57 | assert element.text_content() == '\ngit\n' |
|
57 | assert element.text_content() == '\ngit\n' | |
58 |
|
58 | |||
59 | def test_create_page_non_restricted(self, autologin_user, backend): |
|
59 | def test_create_page_non_restricted(self, autologin_user, backend): | |
60 | response = self.app.get(url('new_repo'), status=200) |
|
60 | response = self.app.get(url('new_repo'), status=200) | |
61 | assert_response = AssertResponse(response) |
|
61 | assert_response = AssertResponse(response) | |
62 | assert_response.element_contains('#repo_type', 'git') |
|
62 | assert_response.element_contains('#repo_type', 'git') | |
63 | assert_response.element_contains('#repo_type', 'svn') |
|
63 | assert_response.element_contains('#repo_type', 'svn') | |
64 | assert_response.element_contains('#repo_type', 'hg') |
|
64 | assert_response.element_contains('#repo_type', 'hg') | |
65 |
|
65 | |||
66 |
@pytest.mark.parametrize("suffix", |
|
66 | @pytest.mark.parametrize("suffix", | |
|
67 | [u'', u'xxa'], ids=['', 'non-ascii']) | |||
67 | def test_create(self, autologin_user, backend, suffix, csrf_token): |
|
68 | def test_create(self, autologin_user, backend, suffix, csrf_token): | |
68 | repo_name_unicode = backend.new_repo_name(suffix=suffix) |
|
69 | repo_name_unicode = backend.new_repo_name(suffix=suffix) | |
69 | repo_name = repo_name_unicode.encode('utf8') |
|
70 | repo_name = repo_name_unicode.encode('utf8') | |
70 | description_unicode = u'description for newly created repo' + suffix |
|
71 | description_unicode = u'description for newly created repo' + suffix | |
71 | description = description_unicode.encode('utf8') |
|
72 | description = description_unicode.encode('utf8') | |
72 | self.app.post( |
|
73 | response = self.app.post( | |
73 | url('repos'), |
|
74 | url('repos'), | |
74 | fixture._get_repo_create_params( |
|
75 | fixture._get_repo_create_params( | |
75 | repo_private=False, |
|
76 | repo_private=False, | |
76 | repo_name=repo_name, |
|
77 | repo_name=repo_name, | |
77 | repo_type=backend.alias, |
|
78 | repo_type=backend.alias, | |
78 | repo_description=description, |
|
79 | repo_description=description, | |
79 | csrf_token=csrf_token), |
|
80 | csrf_token=csrf_token), | |
80 | status=302 |
|
81 | status=302) | |
81 | ) |
|
|||
82 |
|
82 | |||
83 | self.assert_repository_is_created_correctly( |
|
83 | self.assert_repository_is_created_correctly( | |
84 | repo_name, description, backend) |
|
84 | repo_name, description, backend) | |
85 |
|
85 | |||
86 | def test_create_numeric(self, autologin_user, backend, csrf_token): |
|
86 | def test_create_numeric(self, autologin_user, backend, csrf_token): | |
87 | numeric_repo = '1234' |
|
87 | numeric_repo = '1234' | |
88 | repo_name = numeric_repo |
|
88 | repo_name = numeric_repo | |
89 | description = 'description for newly created repo' + numeric_repo |
|
89 | description = 'description for newly created repo' + numeric_repo | |
90 | self.app.post( |
|
90 | self.app.post( | |
91 | url('repos'), |
|
91 | url('repos'), | |
92 | fixture._get_repo_create_params( |
|
92 | fixture._get_repo_create_params( | |
93 | repo_private=False, |
|
93 | repo_private=False, | |
94 | repo_name=repo_name, |
|
94 | repo_name=repo_name, | |
95 | repo_type=backend.alias, |
|
95 | repo_type=backend.alias, | |
96 | repo_description=description, |
|
96 | repo_description=description, | |
97 | csrf_token=csrf_token)) |
|
97 | csrf_token=csrf_token)) | |
98 |
|
98 | |||
99 | self.assert_repository_is_created_correctly( |
|
99 | self.assert_repository_is_created_correctly( | |
100 | repo_name, description, backend) |
|
100 | repo_name, description, backend) | |
101 |
|
101 | |||
102 | @pytest.mark.parametrize("suffix", [u'', u'Δ ΔΔ'], ids=['', 'non-ascii']) |
|
102 | @pytest.mark.parametrize("suffix", [u'', u'Δ ΔΔ'], ids=['', 'non-ascii']) | |
103 | def test_create_in_group( |
|
103 | def test_create_in_group( | |
104 | self, autologin_user, backend, suffix, csrf_token): |
|
104 | self, autologin_user, backend, suffix, csrf_token): | |
105 | # create GROUP |
|
105 | # create GROUP | |
106 | group_name = 'sometest_%s' % backend.alias |
|
106 | group_name = 'sometest_%s' % backend.alias | |
107 | gr = RepoGroupModel().create(group_name=group_name, |
|
107 | gr = RepoGroupModel().create(group_name=group_name, | |
108 | group_description='test', |
|
108 | group_description='test', | |
109 | owner=TEST_USER_ADMIN_LOGIN) |
|
109 | owner=TEST_USER_ADMIN_LOGIN) | |
110 | Session().commit() |
|
110 | Session().commit() | |
111 |
|
111 | |||
112 | repo_name = u'ingroup' + suffix |
|
112 | repo_name = u'ingroup' + suffix | |
113 | repo_name_full = RepoGroup.url_sep().join( |
|
113 | repo_name_full = RepoGroup.url_sep().join( | |
114 | [group_name, repo_name]) |
|
114 | [group_name, repo_name]) | |
115 | description = u'description for newly created repo' |
|
115 | description = u'description for newly created repo' | |
116 | self.app.post( |
|
116 | self.app.post( | |
117 | url('repos'), |
|
117 | url('repos'), | |
118 | fixture._get_repo_create_params( |
|
118 | fixture._get_repo_create_params( | |
119 | repo_private=False, |
|
119 | repo_private=False, | |
120 | repo_name=safe_str(repo_name), |
|
120 | repo_name=safe_str(repo_name), | |
121 | repo_type=backend.alias, |
|
121 | repo_type=backend.alias, | |
122 | repo_description=description, |
|
122 | repo_description=description, | |
123 | repo_group=gr.group_id, |
|
123 | repo_group=gr.group_id, | |
124 | csrf_token=csrf_token)) |
|
124 | csrf_token=csrf_token)) | |
125 |
|
125 | |||
126 | # TODO: johbo: Cleanup work to fixture |
|
126 | # TODO: johbo: Cleanup work to fixture | |
127 | try: |
|
127 | try: | |
128 | self.assert_repository_is_created_correctly( |
|
128 | self.assert_repository_is_created_correctly( | |
129 | repo_name_full, description, backend) |
|
129 | repo_name_full, description, backend) | |
130 |
|
130 | |||
131 | new_repo = RepoModel().get_by_repo_name(repo_name_full) |
|
131 | new_repo = RepoModel().get_by_repo_name(repo_name_full) | |
132 | inherited_perms = UserRepoToPerm.query().filter( |
|
132 | inherited_perms = UserRepoToPerm.query().filter( | |
133 | UserRepoToPerm.repository_id == new_repo.repo_id).all() |
|
133 | UserRepoToPerm.repository_id == new_repo.repo_id).all() | |
134 | assert len(inherited_perms) == 1 |
|
134 | assert len(inherited_perms) == 1 | |
135 | finally: |
|
135 | finally: | |
136 | RepoModel().delete(repo_name_full) |
|
136 | RepoModel().delete(repo_name_full) | |
137 | RepoGroupModel().delete(group_name) |
|
137 | RepoGroupModel().delete(group_name) | |
138 | Session().commit() |
|
138 | Session().commit() | |
139 |
|
139 | |||
140 | def test_create_in_group_numeric( |
|
140 | def test_create_in_group_numeric( | |
141 | self, autologin_user, backend, csrf_token): |
|
141 | self, autologin_user, backend, csrf_token): | |
142 | # create GROUP |
|
142 | # create GROUP | |
143 | group_name = 'sometest_%s' % backend.alias |
|
143 | group_name = 'sometest_%s' % backend.alias | |
144 | gr = RepoGroupModel().create(group_name=group_name, |
|
144 | gr = RepoGroupModel().create(group_name=group_name, | |
145 | group_description='test', |
|
145 | group_description='test', | |
146 | owner=TEST_USER_ADMIN_LOGIN) |
|
146 | owner=TEST_USER_ADMIN_LOGIN) | |
147 | Session().commit() |
|
147 | Session().commit() | |
148 |
|
148 | |||
149 | repo_name = '12345' |
|
149 | repo_name = '12345' | |
150 | repo_name_full = RepoGroup.url_sep().join([group_name, repo_name]) |
|
150 | repo_name_full = RepoGroup.url_sep().join([group_name, repo_name]) | |
151 | description = 'description for newly created repo' |
|
151 | description = 'description for newly created repo' | |
152 | self.app.post( |
|
152 | self.app.post( | |
153 | url('repos'), |
|
153 | url('repos'), | |
154 | fixture._get_repo_create_params( |
|
154 | fixture._get_repo_create_params( | |
155 | repo_private=False, |
|
155 | repo_private=False, | |
156 | repo_name=repo_name, |
|
156 | repo_name=repo_name, | |
157 | repo_type=backend.alias, |
|
157 | repo_type=backend.alias, | |
158 | repo_description=description, |
|
158 | repo_description=description, | |
159 | repo_group=gr.group_id, |
|
159 | repo_group=gr.group_id, | |
160 | csrf_token=csrf_token)) |
|
160 | csrf_token=csrf_token)) | |
161 |
|
161 | |||
162 | # TODO: johbo: Cleanup work to fixture |
|
162 | # TODO: johbo: Cleanup work to fixture | |
163 | try: |
|
163 | try: | |
164 | self.assert_repository_is_created_correctly( |
|
164 | self.assert_repository_is_created_correctly( | |
165 | repo_name_full, description, backend) |
|
165 | repo_name_full, description, backend) | |
166 |
|
166 | |||
167 | new_repo = RepoModel().get_by_repo_name(repo_name_full) |
|
167 | new_repo = RepoModel().get_by_repo_name(repo_name_full) | |
168 | inherited_perms = UserRepoToPerm.query()\ |
|
168 | inherited_perms = UserRepoToPerm.query()\ | |
169 | .filter(UserRepoToPerm.repository_id == new_repo.repo_id).all() |
|
169 | .filter(UserRepoToPerm.repository_id == new_repo.repo_id).all() | |
170 | assert len(inherited_perms) == 1 |
|
170 | assert len(inherited_perms) == 1 | |
171 | finally: |
|
171 | finally: | |
172 | RepoModel().delete(repo_name_full) |
|
172 | RepoModel().delete(repo_name_full) | |
173 | RepoGroupModel().delete(group_name) |
|
173 | RepoGroupModel().delete(group_name) | |
174 | Session().commit() |
|
174 | Session().commit() | |
175 |
|
175 | |||
176 | def test_create_in_group_without_needed_permissions(self, backend): |
|
176 | def test_create_in_group_without_needed_permissions(self, backend): | |
177 | session = login_user_session( |
|
177 | session = login_user_session( | |
178 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
178 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
179 | csrf_token = auth.get_csrf_token(session) |
|
179 | csrf_token = auth.get_csrf_token(session) | |
180 | # revoke |
|
180 | # revoke | |
181 | user_model = UserModel() |
|
181 | user_model = UserModel() | |
182 | # disable fork and create on default user |
|
182 | # disable fork and create on default user | |
183 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.create.repository') |
|
183 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.create.repository') | |
184 | user_model.grant_perm(User.DEFAULT_USER, 'hg.create.none') |
|
184 | user_model.grant_perm(User.DEFAULT_USER, 'hg.create.none') | |
185 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.fork.repository') |
|
185 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.fork.repository') | |
186 | user_model.grant_perm(User.DEFAULT_USER, 'hg.fork.none') |
|
186 | user_model.grant_perm(User.DEFAULT_USER, 'hg.fork.none') | |
187 |
|
187 | |||
188 | # disable on regular user |
|
188 | # disable on regular user | |
189 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.repository') |
|
189 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.repository') | |
190 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.none') |
|
190 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.none') | |
191 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.repository') |
|
191 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.repository') | |
192 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.none') |
|
192 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.none') | |
193 | Session().commit() |
|
193 | Session().commit() | |
194 |
|
194 | |||
195 | # create GROUP |
|
195 | # create GROUP | |
196 | group_name = 'reg_sometest_%s' % backend.alias |
|
196 | group_name = 'reg_sometest_%s' % backend.alias | |
197 | gr = RepoGroupModel().create(group_name=group_name, |
|
197 | gr = RepoGroupModel().create(group_name=group_name, | |
198 | group_description='test', |
|
198 | group_description='test', | |
199 | owner=TEST_USER_ADMIN_LOGIN) |
|
199 | owner=TEST_USER_ADMIN_LOGIN) | |
200 | Session().commit() |
|
200 | Session().commit() | |
201 |
|
201 | |||
202 | group_name_allowed = 'reg_sometest_allowed_%s' % backend.alias |
|
202 | group_name_allowed = 'reg_sometest_allowed_%s' % backend.alias | |
203 | gr_allowed = RepoGroupModel().create( |
|
203 | gr_allowed = RepoGroupModel().create( | |
204 | group_name=group_name_allowed, |
|
204 | group_name=group_name_allowed, | |
205 | group_description='test', |
|
205 | group_description='test', | |
206 | owner=TEST_USER_REGULAR_LOGIN) |
|
206 | owner=TEST_USER_REGULAR_LOGIN) | |
207 | Session().commit() |
|
207 | Session().commit() | |
208 |
|
208 | |||
209 | repo_name = 'ingroup' |
|
209 | repo_name = 'ingroup' | |
210 | description = 'description for newly created repo' |
|
210 | description = 'description for newly created repo' | |
211 | response = self.app.post( |
|
211 | response = self.app.post( | |
212 | url('repos'), |
|
212 | url('repos'), | |
213 | fixture._get_repo_create_params( |
|
213 | fixture._get_repo_create_params( | |
214 | repo_private=False, |
|
214 | repo_private=False, | |
215 | repo_name=repo_name, |
|
215 | repo_name=repo_name, | |
216 | repo_type=backend.alias, |
|
216 | repo_type=backend.alias, | |
217 | repo_description=description, |
|
217 | repo_description=description, | |
218 | repo_group=gr.group_id, |
|
218 | repo_group=gr.group_id, | |
219 | csrf_token=csrf_token)) |
|
219 | csrf_token=csrf_token)) | |
220 |
|
220 | |||
221 | response.mustcontain('Invalid value') |
|
221 | response.mustcontain('Invalid value') | |
222 |
|
222 | |||
223 | # user is allowed to create in this group |
|
223 | # user is allowed to create in this group | |
224 | repo_name = 'ingroup' |
|
224 | repo_name = 'ingroup' | |
225 | repo_name_full = RepoGroup.url_sep().join( |
|
225 | repo_name_full = RepoGroup.url_sep().join( | |
226 | [group_name_allowed, repo_name]) |
|
226 | [group_name_allowed, repo_name]) | |
227 | description = 'description for newly created repo' |
|
227 | description = 'description for newly created repo' | |
228 | response = self.app.post( |
|
228 | response = self.app.post( | |
229 | url('repos'), |
|
229 | url('repos'), | |
230 | fixture._get_repo_create_params( |
|
230 | fixture._get_repo_create_params( | |
231 | repo_private=False, |
|
231 | repo_private=False, | |
232 | repo_name=repo_name, |
|
232 | repo_name=repo_name, | |
233 | repo_type=backend.alias, |
|
233 | repo_type=backend.alias, | |
234 | repo_description=description, |
|
234 | repo_description=description, | |
235 | repo_group=gr_allowed.group_id, |
|
235 | repo_group=gr_allowed.group_id, | |
236 | csrf_token=csrf_token)) |
|
236 | csrf_token=csrf_token)) | |
237 |
|
237 | |||
238 | # TODO: johbo: Cleanup in pytest fixture |
|
238 | # TODO: johbo: Cleanup in pytest fixture | |
239 | try: |
|
239 | try: | |
240 | self.assert_repository_is_created_correctly( |
|
240 | self.assert_repository_is_created_correctly( | |
241 | repo_name_full, description, backend) |
|
241 | repo_name_full, description, backend) | |
242 |
|
242 | |||
243 | new_repo = RepoModel().get_by_repo_name(repo_name_full) |
|
243 | new_repo = RepoModel().get_by_repo_name(repo_name_full) | |
244 | inherited_perms = UserRepoToPerm.query().filter( |
|
244 | inherited_perms = UserRepoToPerm.query().filter( | |
245 | UserRepoToPerm.repository_id == new_repo.repo_id).all() |
|
245 | UserRepoToPerm.repository_id == new_repo.repo_id).all() | |
246 | assert len(inherited_perms) == 1 |
|
246 | assert len(inherited_perms) == 1 | |
247 |
|
247 | |||
248 | assert repo_on_filesystem(repo_name_full) |
|
248 | assert repo_on_filesystem(repo_name_full) | |
249 | finally: |
|
249 | finally: | |
250 | RepoModel().delete(repo_name_full) |
|
250 | RepoModel().delete(repo_name_full) | |
251 | RepoGroupModel().delete(group_name) |
|
251 | RepoGroupModel().delete(group_name) | |
252 | RepoGroupModel().delete(group_name_allowed) |
|
252 | RepoGroupModel().delete(group_name_allowed) | |
253 | Session().commit() |
|
253 | Session().commit() | |
254 |
|
254 | |||
255 | def test_create_in_group_inherit_permissions(self, autologin_user, backend, |
|
255 | def test_create_in_group_inherit_permissions(self, autologin_user, backend, | |
256 | csrf_token): |
|
256 | csrf_token): | |
257 | # create GROUP |
|
257 | # create GROUP | |
258 | group_name = 'sometest_%s' % backend.alias |
|
258 | group_name = 'sometest_%s' % backend.alias | |
259 | gr = RepoGroupModel().create(group_name=group_name, |
|
259 | gr = RepoGroupModel().create(group_name=group_name, | |
260 | group_description='test', |
|
260 | group_description='test', | |
261 | owner=TEST_USER_ADMIN_LOGIN) |
|
261 | owner=TEST_USER_ADMIN_LOGIN) | |
262 | perm = Permission.get_by_key('repository.write') |
|
262 | perm = Permission.get_by_key('repository.write') | |
263 | RepoGroupModel().grant_user_permission( |
|
263 | RepoGroupModel().grant_user_permission( | |
264 | gr, TEST_USER_REGULAR_LOGIN, perm) |
|
264 | gr, TEST_USER_REGULAR_LOGIN, perm) | |
265 |
|
265 | |||
266 | # add repo permissions |
|
266 | # add repo permissions | |
267 | Session().commit() |
|
267 | Session().commit() | |
268 |
|
268 | |||
269 | repo_name = 'ingroup_inherited_%s' % backend.alias |
|
269 | repo_name = 'ingroup_inherited_%s' % backend.alias | |
270 | repo_name_full = RepoGroup.url_sep().join([group_name, repo_name]) |
|
270 | repo_name_full = RepoGroup.url_sep().join([group_name, repo_name]) | |
271 | description = 'description for newly created repo' |
|
271 | description = 'description for newly created repo' | |
272 | self.app.post( |
|
272 | self.app.post( | |
273 | url('repos'), |
|
273 | url('repos'), | |
274 | fixture._get_repo_create_params( |
|
274 | fixture._get_repo_create_params( | |
275 | repo_private=False, |
|
275 | repo_private=False, | |
276 | repo_name=repo_name, |
|
276 | repo_name=repo_name, | |
277 | repo_type=backend.alias, |
|
277 | repo_type=backend.alias, | |
278 | repo_description=description, |
|
278 | repo_description=description, | |
279 | repo_group=gr.group_id, |
|
279 | repo_group=gr.group_id, | |
280 | repo_copy_permissions=True, |
|
280 | repo_copy_permissions=True, | |
281 | csrf_token=csrf_token)) |
|
281 | csrf_token=csrf_token)) | |
282 |
|
282 | |||
283 | # TODO: johbo: Cleanup to pytest fixture |
|
283 | # TODO: johbo: Cleanup to pytest fixture | |
284 | try: |
|
284 | try: | |
285 | self.assert_repository_is_created_correctly( |
|
285 | self.assert_repository_is_created_correctly( | |
286 | repo_name_full, description, backend) |
|
286 | repo_name_full, description, backend) | |
287 | except Exception: |
|
287 | except Exception: | |
288 | RepoGroupModel().delete(group_name) |
|
288 | RepoGroupModel().delete(group_name) | |
289 | Session().commit() |
|
289 | Session().commit() | |
290 | raise |
|
290 | raise | |
291 |
|
291 | |||
292 | # check if inherited permissions are applied |
|
292 | # check if inherited permissions are applied | |
293 | new_repo = RepoModel().get_by_repo_name(repo_name_full) |
|
293 | new_repo = RepoModel().get_by_repo_name(repo_name_full) | |
294 | inherited_perms = UserRepoToPerm.query().filter( |
|
294 | inherited_perms = UserRepoToPerm.query().filter( | |
295 | UserRepoToPerm.repository_id == new_repo.repo_id).all() |
|
295 | UserRepoToPerm.repository_id == new_repo.repo_id).all() | |
296 | assert len(inherited_perms) == 2 |
|
296 | assert len(inherited_perms) == 2 | |
297 |
|
297 | |||
298 | assert TEST_USER_REGULAR_LOGIN in [ |
|
298 | assert TEST_USER_REGULAR_LOGIN in [ | |
299 | x.user.username for x in inherited_perms] |
|
299 | x.user.username for x in inherited_perms] | |
300 | assert 'repository.write' in [ |
|
300 | assert 'repository.write' in [ | |
301 | x.permission.permission_name for x in inherited_perms] |
|
301 | x.permission.permission_name for x in inherited_perms] | |
302 |
|
302 | |||
303 | RepoModel().delete(repo_name_full) |
|
303 | RepoModel().delete(repo_name_full) | |
304 | RepoGroupModel().delete(group_name) |
|
304 | RepoGroupModel().delete(group_name) | |
305 | Session().commit() |
|
305 | Session().commit() | |
306 |
|
306 | |||
307 | @pytest.mark.xfail_backends( |
|
307 | @pytest.mark.xfail_backends( | |
308 | "git", "hg", reason="Missing reposerver support") |
|
308 | "git", "hg", reason="Missing reposerver support") | |
309 | def test_create_with_clone_uri(self, autologin_user, backend, reposerver, |
|
309 | def test_create_with_clone_uri(self, autologin_user, backend, reposerver, | |
310 | csrf_token): |
|
310 | csrf_token): | |
311 | source_repo = backend.create_repo(number_of_commits=2) |
|
311 | source_repo = backend.create_repo(number_of_commits=2) | |
312 | source_repo_name = source_repo.repo_name |
|
312 | source_repo_name = source_repo.repo_name | |
313 | reposerver.serve(source_repo.scm_instance()) |
|
313 | reposerver.serve(source_repo.scm_instance()) | |
314 |
|
314 | |||
315 | repo_name = backend.new_repo_name() |
|
315 | repo_name = backend.new_repo_name() | |
316 | response = self.app.post( |
|
316 | response = self.app.post( | |
317 | url('repos'), |
|
317 | url('repos'), | |
318 | fixture._get_repo_create_params( |
|
318 | fixture._get_repo_create_params( | |
319 | repo_private=False, |
|
319 | repo_private=False, | |
320 | repo_name=repo_name, |
|
320 | repo_name=repo_name, | |
321 | repo_type=backend.alias, |
|
321 | repo_type=backend.alias, | |
322 | repo_description='', |
|
322 | repo_description='', | |
323 | clone_uri=reposerver.url, |
|
323 | clone_uri=reposerver.url, | |
324 | csrf_token=csrf_token), |
|
324 | csrf_token=csrf_token), | |
325 | status=302) |
|
325 | status=302) | |
326 |
|
326 | |||
327 | # Should be redirected to the creating page |
|
327 | # Should be redirected to the creating page | |
328 | response.mustcontain('repo_creating') |
|
328 | response.mustcontain('repo_creating') | |
329 |
|
329 | |||
330 | # Expecting that both repositories have same history |
|
330 | # Expecting that both repositories have same history | |
331 | source_repo = RepoModel().get_by_repo_name(source_repo_name) |
|
331 | source_repo = RepoModel().get_by_repo_name(source_repo_name) | |
332 | source_vcs = source_repo.scm_instance() |
|
332 | source_vcs = source_repo.scm_instance() | |
333 | repo = RepoModel().get_by_repo_name(repo_name) |
|
333 | repo = RepoModel().get_by_repo_name(repo_name) | |
334 | repo_vcs = repo.scm_instance() |
|
334 | repo_vcs = repo.scm_instance() | |
335 | assert source_vcs[0].message == repo_vcs[0].message |
|
335 | assert source_vcs[0].message == repo_vcs[0].message | |
336 | assert source_vcs.count() == repo_vcs.count() |
|
336 | assert source_vcs.count() == repo_vcs.count() | |
337 | assert source_vcs.commit_ids == repo_vcs.commit_ids |
|
337 | assert source_vcs.commit_ids == repo_vcs.commit_ids | |
338 |
|
338 | |||
339 | @pytest.mark.xfail_backends("svn", reason="Depends on import support") |
|
339 | @pytest.mark.xfail_backends("svn", reason="Depends on import support") | |
340 | def test_create_remote_repo_wrong_clone_uri(self, autologin_user, backend, |
|
340 | def test_create_remote_repo_wrong_clone_uri(self, autologin_user, backend, | |
341 | csrf_token): |
|
341 | csrf_token): | |
342 | repo_name = backend.new_repo_name() |
|
342 | repo_name = backend.new_repo_name() | |
343 | description = 'description for newly created repo' |
|
343 | description = 'description for newly created repo' | |
344 | response = self.app.post( |
|
344 | response = self.app.post( | |
345 | url('repos'), |
|
345 | url('repos'), | |
346 | fixture._get_repo_create_params( |
|
346 | fixture._get_repo_create_params( | |
347 | repo_private=False, |
|
347 | repo_private=False, | |
348 | repo_name=repo_name, |
|
348 | repo_name=repo_name, | |
349 | repo_type=backend.alias, |
|
349 | repo_type=backend.alias, | |
350 | repo_description=description, |
|
350 | repo_description=description, | |
351 | clone_uri='http://repo.invalid/repo', |
|
351 | clone_uri='http://repo.invalid/repo', | |
352 | csrf_token=csrf_token)) |
|
352 | csrf_token=csrf_token)) | |
353 | response.mustcontain('invalid clone url') |
|
353 | response.mustcontain('invalid clone url') | |
354 |
|
354 | |||
355 | @pytest.mark.xfail_backends("svn", reason="Depends on import support") |
|
355 | @pytest.mark.xfail_backends("svn", reason="Depends on import support") | |
356 | def test_create_remote_repo_wrong_clone_uri_hg_svn( |
|
356 | def test_create_remote_repo_wrong_clone_uri_hg_svn( | |
357 | self, autologin_user, backend, csrf_token): |
|
357 | self, autologin_user, backend, csrf_token): | |
358 | repo_name = backend.new_repo_name() |
|
358 | repo_name = backend.new_repo_name() | |
359 | description = 'description for newly created repo' |
|
359 | description = 'description for newly created repo' | |
360 | response = self.app.post( |
|
360 | response = self.app.post( | |
361 | url('repos'), |
|
361 | url('repos'), | |
362 | fixture._get_repo_create_params( |
|
362 | fixture._get_repo_create_params( | |
363 | repo_private=False, |
|
363 | repo_private=False, | |
364 | repo_name=repo_name, |
|
364 | repo_name=repo_name, | |
365 | repo_type=backend.alias, |
|
365 | repo_type=backend.alias, | |
366 | repo_description=description, |
|
366 | repo_description=description, | |
367 | clone_uri='svn+http://svn.invalid/repo', |
|
367 | clone_uri='svn+http://svn.invalid/repo', | |
368 | csrf_token=csrf_token)) |
|
368 | csrf_token=csrf_token)) | |
369 | response.mustcontain('invalid clone url') |
|
369 | response.mustcontain('invalid clone url') | |
370 |
|
370 | |||
|
371 | def test_create_with_git_suffix( | |||
|
372 | self, autologin_user, backend, csrf_token): | |||
|
373 | repo_name = backend.new_repo_name() + ".git" | |||
|
374 | description = 'description for newly created repo' | |||
|
375 | response = self.app.post( | |||
|
376 | url('repos'), | |||
|
377 | fixture._get_repo_create_params( | |||
|
378 | repo_private=False, | |||
|
379 | repo_name=repo_name, | |||
|
380 | repo_type=backend.alias, | |||
|
381 | repo_description=description, | |||
|
382 | csrf_token=csrf_token)) | |||
|
383 | response.mustcontain('Repository name cannot end with .git') | |||
|
384 | ||||
371 | @pytest.mark.parametrize("suffix", [u'', u'Δ ΔΕ'], ids=['', 'non-ascii']) |
|
385 | @pytest.mark.parametrize("suffix", [u'', u'Δ ΔΕ'], ids=['', 'non-ascii']) | |
372 | def test_delete(self, autologin_user, backend, suffix, csrf_token): |
|
386 | def test_delete(self, autologin_user, backend, suffix, csrf_token): | |
373 | repo = backend.create_repo(name_suffix=suffix) |
|
387 | repo = backend.create_repo(name_suffix=suffix) | |
374 | repo_name = repo.repo_name |
|
388 | repo_name = repo.repo_name | |
375 |
|
389 | |||
376 | response = self.app.post(url('repo', repo_name=repo_name), |
|
390 | response = self.app.post(url('repo', repo_name=repo_name), | |
377 | params={'_method': 'delete', |
|
391 | params={'_method': 'delete', | |
378 | 'csrf_token': csrf_token}) |
|
392 | 'csrf_token': csrf_token}) | |
379 | assert_session_flash(response, 'Deleted repository %s' % (repo_name)) |
|
393 | assert_session_flash(response, 'Deleted repository %s' % (repo_name)) | |
380 | response.follow() |
|
394 | response.follow() | |
381 |
|
395 | |||
382 | # check if repo was deleted from db |
|
396 | # check if repo was deleted from db | |
383 | assert RepoModel().get_by_repo_name(repo_name) is None |
|
397 | assert RepoModel().get_by_repo_name(repo_name) is None | |
384 | assert not repo_on_filesystem(repo_name) |
|
398 | assert not repo_on_filesystem(repo_name) | |
385 |
|
399 | |||
386 | def test_show(self, autologin_user, backend): |
|
400 | def test_show(self, autologin_user, backend): | |
387 | self.app.get(url('repo', repo_name=backend.repo_name)) |
|
401 | self.app.get(url('repo', repo_name=backend.repo_name)) | |
388 |
|
402 | |||
389 | def test_edit(self, backend, autologin_user): |
|
403 | def test_edit(self, backend, autologin_user): | |
390 | self.app.get(url('edit_repo', repo_name=backend.repo_name)) |
|
404 | self.app.get(url('edit_repo', repo_name=backend.repo_name)) | |
391 |
|
405 | |||
392 | def test_edit_accessible_when_missing_requirements( |
|
406 | def test_edit_accessible_when_missing_requirements( | |
393 | self, backend_hg, autologin_user): |
|
407 | self, backend_hg, autologin_user): | |
394 | scm_patcher = mock.patch.object( |
|
408 | scm_patcher = mock.patch.object( | |
395 | Repository, 'scm_instance', side_effect=RepositoryRequirementError) |
|
409 | Repository, 'scm_instance', side_effect=RepositoryRequirementError) | |
396 | with scm_patcher: |
|
410 | with scm_patcher: | |
397 | self.app.get(url('edit_repo', repo_name=backend_hg.repo_name)) |
|
411 | self.app.get(url('edit_repo', repo_name=backend_hg.repo_name)) | |
398 |
|
412 | |||
399 | def test_set_private_flag_sets_default_to_none( |
|
413 | def test_set_private_flag_sets_default_to_none( | |
400 | self, autologin_user, backend, csrf_token): |
|
414 | self, autologin_user, backend, csrf_token): | |
401 | # initially repository perm should be read |
|
415 | # initially repository perm should be read | |
402 | perm = _get_permission_for_user(user='default', repo=backend.repo_name) |
|
416 | perm = _get_permission_for_user(user='default', repo=backend.repo_name) | |
403 | assert len(perm) == 1 |
|
417 | assert len(perm) == 1 | |
404 | assert perm[0].permission.permission_name == 'repository.read' |
|
418 | assert perm[0].permission.permission_name == 'repository.read' | |
405 | assert not backend.repo.private |
|
419 | assert not backend.repo.private | |
406 |
|
420 | |||
407 | response = self.app.post( |
|
421 | response = self.app.post( | |
408 | url('repo', repo_name=backend.repo_name), |
|
422 | url('repo', repo_name=backend.repo_name), | |
409 | fixture._get_repo_create_params( |
|
423 | fixture._get_repo_create_params( | |
410 | repo_private=1, |
|
424 | repo_private=1, | |
411 | repo_name=backend.repo_name, |
|
425 | repo_name=backend.repo_name, | |
412 | repo_type=backend.alias, |
|
426 | repo_type=backend.alias, | |
413 | user=TEST_USER_ADMIN_LOGIN, |
|
427 | user=TEST_USER_ADMIN_LOGIN, | |
414 | _method='put', |
|
428 | _method='put', | |
415 | csrf_token=csrf_token)) |
|
429 | csrf_token=csrf_token)) | |
416 | assert_session_flash( |
|
430 | assert_session_flash( | |
417 | response, |
|
431 | response, | |
418 | msg='Repository %s updated successfully' % (backend.repo_name)) |
|
432 | msg='Repository %s updated successfully' % (backend.repo_name)) | |
419 | assert backend.repo.private |
|
433 | assert backend.repo.private | |
420 |
|
434 | |||
421 | # now the repo default permission should be None |
|
435 | # now the repo default permission should be None | |
422 | perm = _get_permission_for_user(user='default', repo=backend.repo_name) |
|
436 | perm = _get_permission_for_user(user='default', repo=backend.repo_name) | |
423 | assert len(perm) == 1 |
|
437 | assert len(perm) == 1 | |
424 | assert perm[0].permission.permission_name == 'repository.none' |
|
438 | assert perm[0].permission.permission_name == 'repository.none' | |
425 |
|
439 | |||
426 | response = self.app.post( |
|
440 | response = self.app.post( | |
427 | url('repo', repo_name=backend.repo_name), |
|
441 | url('repo', repo_name=backend.repo_name), | |
428 | fixture._get_repo_create_params( |
|
442 | fixture._get_repo_create_params( | |
429 | repo_private=False, |
|
443 | repo_private=False, | |
430 | repo_name=backend.repo_name, |
|
444 | repo_name=backend.repo_name, | |
431 | repo_type=backend.alias, |
|
445 | repo_type=backend.alias, | |
432 | user=TEST_USER_ADMIN_LOGIN, |
|
446 | user=TEST_USER_ADMIN_LOGIN, | |
433 | _method='put', |
|
447 | _method='put', | |
434 | csrf_token=csrf_token)) |
|
448 | csrf_token=csrf_token)) | |
435 | assert_session_flash( |
|
449 | assert_session_flash( | |
436 | response, |
|
450 | response, | |
437 | msg='Repository %s updated successfully' % (backend.repo_name)) |
|
451 | msg='Repository %s updated successfully' % (backend.repo_name)) | |
438 | assert not backend.repo.private |
|
452 | assert not backend.repo.private | |
439 |
|
453 | |||
440 | # we turn off private now the repo default permission should stay None |
|
454 | # we turn off private now the repo default permission should stay None | |
441 | perm = _get_permission_for_user(user='default', repo=backend.repo_name) |
|
455 | perm = _get_permission_for_user(user='default', repo=backend.repo_name) | |
442 | assert len(perm) == 1 |
|
456 | assert len(perm) == 1 | |
443 | assert perm[0].permission.permission_name == 'repository.none' |
|
457 | assert perm[0].permission.permission_name == 'repository.none' | |
444 |
|
458 | |||
445 | # update this permission back |
|
459 | # update this permission back | |
446 | perm[0].permission = Permission.get_by_key('repository.read') |
|
460 | perm[0].permission = Permission.get_by_key('repository.read') | |
447 | Session().add(perm[0]) |
|
461 | Session().add(perm[0]) | |
448 | Session().commit() |
|
462 | Session().commit() | |
449 |
|
463 | |||
450 | def test_default_user_cannot_access_private_repo_in_a_group( |
|
464 | def test_default_user_cannot_access_private_repo_in_a_group( | |
451 | self, autologin_user, user_util, backend, csrf_token): |
|
465 | self, autologin_user, user_util, backend, csrf_token): | |
452 |
|
466 | |||
453 | group = user_util.create_repo_group() |
|
467 | group = user_util.create_repo_group() | |
454 |
|
468 | |||
455 | repo = backend.create_repo( |
|
469 | repo = backend.create_repo( | |
456 | repo_private=True, repo_group=group, repo_copy_permissions=True) |
|
470 | repo_private=True, repo_group=group, repo_copy_permissions=True) | |
457 |
|
471 | |||
458 | permissions = _get_permission_for_user( |
|
472 | permissions = _get_permission_for_user( | |
459 | user='default', repo=repo.repo_name) |
|
473 | user='default', repo=repo.repo_name) | |
460 | assert len(permissions) == 1 |
|
474 | assert len(permissions) == 1 | |
461 | assert permissions[0].permission.permission_name == 'repository.none' |
|
475 | assert permissions[0].permission.permission_name == 'repository.none' | |
462 | assert permissions[0].repository.private is True |
|
476 | assert permissions[0].repository.private is True | |
463 |
|
477 | |||
464 | def test_set_repo_fork_has_no_self_id(self, autologin_user, backend): |
|
478 | def test_set_repo_fork_has_no_self_id(self, autologin_user, backend): | |
465 | repo = backend.repo |
|
479 | repo = backend.repo | |
466 | response = self.app.get( |
|
480 | response = self.app.get( | |
467 | url('edit_repo_advanced', repo_name=backend.repo_name)) |
|
481 | url('edit_repo_advanced', repo_name=backend.repo_name)) | |
468 | opt = """<option value="%s">vcs_test_git</option>""" % repo.repo_id |
|
482 | opt = """<option value="%s">vcs_test_git</option>""" % repo.repo_id | |
469 | response.mustcontain(no=[opt]) |
|
483 | response.mustcontain(no=[opt]) | |
470 |
|
484 | |||
471 | def test_set_fork_of_target_repo( |
|
485 | def test_set_fork_of_target_repo( | |
472 | self, autologin_user, backend, csrf_token): |
|
486 | self, autologin_user, backend, csrf_token): | |
473 | target_repo = 'target_%s' % backend.alias |
|
487 | target_repo = 'target_%s' % backend.alias | |
474 | fixture.create_repo(target_repo, repo_type=backend.alias) |
|
488 | fixture.create_repo(target_repo, repo_type=backend.alias) | |
475 | repo2 = Repository.get_by_repo_name(target_repo) |
|
489 | repo2 = Repository.get_by_repo_name(target_repo) | |
476 | response = self.app.post( |
|
490 | response = self.app.post( | |
477 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), |
|
491 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), | |
478 | params={'id_fork_of': repo2.repo_id, '_method': 'put', |
|
492 | params={'id_fork_of': repo2.repo_id, '_method': 'put', | |
479 | 'csrf_token': csrf_token}) |
|
493 | 'csrf_token': csrf_token}) | |
480 | repo = Repository.get_by_repo_name(backend.repo_name) |
|
494 | repo = Repository.get_by_repo_name(backend.repo_name) | |
481 | repo2 = Repository.get_by_repo_name(target_repo) |
|
495 | repo2 = Repository.get_by_repo_name(target_repo) | |
482 | assert_session_flash( |
|
496 | assert_session_flash( | |
483 | response, |
|
497 | response, | |
484 | 'Marked repo %s as fork of %s' % (repo.repo_name, repo2.repo_name)) |
|
498 | 'Marked repo %s as fork of %s' % (repo.repo_name, repo2.repo_name)) | |
485 |
|
499 | |||
486 | assert repo.fork == repo2 |
|
500 | assert repo.fork == repo2 | |
487 | response = response.follow() |
|
501 | response = response.follow() | |
488 | # check if given repo is selected |
|
502 | # check if given repo is selected | |
489 |
|
503 | |||
490 | opt = 'This repository is a fork of <a href="%s">%s</a>' % ( |
|
504 | opt = 'This repository is a fork of <a href="%s">%s</a>' % ( | |
491 | url('summary_home', repo_name=repo2.repo_name), repo2.repo_name) |
|
505 | url('summary_home', repo_name=repo2.repo_name), repo2.repo_name) | |
492 |
|
506 | |||
493 | response.mustcontain(opt) |
|
507 | response.mustcontain(opt) | |
494 |
|
508 | |||
495 | fixture.destroy_repo(target_repo, forks='detach') |
|
509 | fixture.destroy_repo(target_repo, forks='detach') | |
496 |
|
510 | |||
497 | @pytest.mark.backends("hg", "git") |
|
511 | @pytest.mark.backends("hg", "git") | |
498 | def test_set_fork_of_other_type_repo(self, autologin_user, backend, |
|
512 | def test_set_fork_of_other_type_repo(self, autologin_user, backend, | |
499 | csrf_token): |
|
513 | csrf_token): | |
500 | TARGET_REPO_MAP = { |
|
514 | TARGET_REPO_MAP = { | |
501 | 'git': { |
|
515 | 'git': { | |
502 | 'type': 'hg', |
|
516 | 'type': 'hg', | |
503 | 'repo_name': HG_REPO}, |
|
517 | 'repo_name': HG_REPO}, | |
504 | 'hg': { |
|
518 | 'hg': { | |
505 | 'type': 'git', |
|
519 | 'type': 'git', | |
506 | 'repo_name': GIT_REPO}, |
|
520 | 'repo_name': GIT_REPO}, | |
507 | } |
|
521 | } | |
508 | target_repo = TARGET_REPO_MAP[backend.alias] |
|
522 | target_repo = TARGET_REPO_MAP[backend.alias] | |
509 |
|
523 | |||
510 | repo2 = Repository.get_by_repo_name(target_repo['repo_name']) |
|
524 | repo2 = Repository.get_by_repo_name(target_repo['repo_name']) | |
511 | response = self.app.post( |
|
525 | response = self.app.post( | |
512 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), |
|
526 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), | |
513 | params={'id_fork_of': repo2.repo_id, '_method': 'put', |
|
527 | params={'id_fork_of': repo2.repo_id, '_method': 'put', | |
514 | 'csrf_token': csrf_token}) |
|
528 | 'csrf_token': csrf_token}) | |
515 | assert_session_flash( |
|
529 | assert_session_flash( | |
516 | response, |
|
530 | response, | |
517 | 'Cannot set repository as fork of repository with other type') |
|
531 | 'Cannot set repository as fork of repository with other type') | |
518 |
|
532 | |||
519 | def test_set_fork_of_none(self, autologin_user, backend, csrf_token): |
|
533 | def test_set_fork_of_none(self, autologin_user, backend, csrf_token): | |
520 | # mark it as None |
|
534 | # mark it as None | |
521 | response = self.app.post( |
|
535 | response = self.app.post( | |
522 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), |
|
536 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), | |
523 | params={'id_fork_of': None, '_method': 'put', |
|
537 | params={'id_fork_of': None, '_method': 'put', | |
524 | 'csrf_token': csrf_token}) |
|
538 | 'csrf_token': csrf_token}) | |
525 | assert_session_flash( |
|
539 | assert_session_flash( | |
526 | response, |
|
540 | response, | |
527 | 'Marked repo %s as fork of %s' |
|
541 | 'Marked repo %s as fork of %s' | |
528 | % (backend.repo_name, "Nothing")) |
|
542 | % (backend.repo_name, "Nothing")) | |
529 | assert backend.repo.fork is None |
|
543 | assert backend.repo.fork is None | |
530 |
|
544 | |||
531 | def test_set_fork_of_same_repo(self, autologin_user, backend, csrf_token): |
|
545 | def test_set_fork_of_same_repo(self, autologin_user, backend, csrf_token): | |
532 | repo = Repository.get_by_repo_name(backend.repo_name) |
|
546 | repo = Repository.get_by_repo_name(backend.repo_name) | |
533 | response = self.app.post( |
|
547 | response = self.app.post( | |
534 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), |
|
548 | url('edit_repo_advanced_fork', repo_name=backend.repo_name), | |
535 | params={'id_fork_of': repo.repo_id, '_method': 'put', |
|
549 | params={'id_fork_of': repo.repo_id, '_method': 'put', | |
536 | 'csrf_token': csrf_token}) |
|
550 | 'csrf_token': csrf_token}) | |
537 | assert_session_flash( |
|
551 | assert_session_flash( | |
538 | response, 'An error occurred during this operation') |
|
552 | response, 'An error occurred during this operation') | |
539 |
|
553 | |||
540 | def test_create_on_top_level_without_permissions(self, backend): |
|
554 | def test_create_on_top_level_without_permissions(self, backend): | |
541 | session = login_user_session( |
|
555 | session = login_user_session( | |
542 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
556 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
543 | csrf_token = auth.get_csrf_token(session) |
|
557 | csrf_token = auth.get_csrf_token(session) | |
544 |
|
558 | |||
545 | # revoke |
|
559 | # revoke | |
546 | user_model = UserModel() |
|
560 | user_model = UserModel() | |
547 | # disable fork and create on default user |
|
561 | # disable fork and create on default user | |
548 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.create.repository') |
|
562 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.create.repository') | |
549 | user_model.grant_perm(User.DEFAULT_USER, 'hg.create.none') |
|
563 | user_model.grant_perm(User.DEFAULT_USER, 'hg.create.none') | |
550 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.fork.repository') |
|
564 | user_model.revoke_perm(User.DEFAULT_USER, 'hg.fork.repository') | |
551 | user_model.grant_perm(User.DEFAULT_USER, 'hg.fork.none') |
|
565 | user_model.grant_perm(User.DEFAULT_USER, 'hg.fork.none') | |
552 |
|
566 | |||
553 | # disable on regular user |
|
567 | # disable on regular user | |
554 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.repository') |
|
568 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.repository') | |
555 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.none') |
|
569 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.create.none') | |
556 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.repository') |
|
570 | user_model.revoke_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.repository') | |
557 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.none') |
|
571 | user_model.grant_perm(TEST_USER_REGULAR_LOGIN, 'hg.fork.none') | |
558 | Session().commit() |
|
572 | Session().commit() | |
559 |
|
573 | |||
560 | repo_name = backend.new_repo_name() |
|
574 | repo_name = backend.new_repo_name() | |
561 | description = 'description for newly created repo' |
|
575 | description = 'description for newly created repo' | |
562 | response = self.app.post( |
|
576 | response = self.app.post( | |
563 | url('repos'), |
|
577 | url('repos'), | |
564 | fixture._get_repo_create_params( |
|
578 | fixture._get_repo_create_params( | |
565 | repo_private=False, |
|
579 | repo_private=False, | |
566 | repo_name=repo_name, |
|
580 | repo_name=repo_name, | |
567 | repo_type=backend.alias, |
|
581 | repo_type=backend.alias, | |
568 | repo_description=description, |
|
582 | repo_description=description, | |
569 | csrf_token=csrf_token)) |
|
583 | csrf_token=csrf_token)) | |
570 |
|
584 | |||
571 | response.mustcontain( |
|
585 | response.mustcontain( | |
572 | u"You do not have the permission to store repositories in " |
|
586 | u"You do not have the permission to store repositories in " | |
573 | u"the root location.") |
|
587 | u"the root location.") | |
574 |
|
588 | |||
575 | @mock.patch.object(RepoModel, '_create_filesystem_repo', error_function) |
|
589 | @mock.patch.object(RepoModel, '_create_filesystem_repo', error_function) | |
576 | def test_create_repo_when_filesystem_op_fails( |
|
590 | def test_create_repo_when_filesystem_op_fails( | |
577 | self, autologin_user, backend, csrf_token): |
|
591 | self, autologin_user, backend, csrf_token): | |
578 | repo_name = backend.new_repo_name() |
|
592 | repo_name = backend.new_repo_name() | |
579 | description = 'description for newly created repo' |
|
593 | description = 'description for newly created repo' | |
580 |
|
594 | |||
581 | response = self.app.post( |
|
595 | response = self.app.post( | |
582 | url('repos'), |
|
596 | url('repos'), | |
583 | fixture._get_repo_create_params( |
|
597 | fixture._get_repo_create_params( | |
584 | repo_private=False, |
|
598 | repo_private=False, | |
585 | repo_name=repo_name, |
|
599 | repo_name=repo_name, | |
586 | repo_type=backend.alias, |
|
600 | repo_type=backend.alias, | |
587 | repo_description=description, |
|
601 | repo_description=description, | |
588 | csrf_token=csrf_token)) |
|
602 | csrf_token=csrf_token)) | |
589 |
|
603 | |||
590 | assert_session_flash( |
|
604 | assert_session_flash( | |
591 | response, 'Error creating repository %s' % repo_name) |
|
605 | response, 'Error creating repository %s' % repo_name) | |
592 | # repo must not be in db |
|
606 | # repo must not be in db | |
593 | assert backend.repo is None |
|
607 | assert backend.repo is None | |
594 | # repo must not be in filesystem ! |
|
608 | # repo must not be in filesystem ! | |
595 | assert not repo_on_filesystem(repo_name) |
|
609 | assert not repo_on_filesystem(repo_name) | |
596 |
|
610 | |||
597 | def assert_repository_is_created_correctly( |
|
611 | def assert_repository_is_created_correctly( | |
598 | self, repo_name, description, backend): |
|
612 | self, repo_name, description, backend): | |
599 |
repo_name_utf8 = repo_name |
|
613 | repo_name_utf8 = safe_str(repo_name) | |
600 |
|
614 | |||
601 | # run the check page that triggers the flash message |
|
615 | # run the check page that triggers the flash message | |
602 | response = self.app.get(url('repo_check_home', repo_name=repo_name)) |
|
616 | response = self.app.get(url('repo_check_home', repo_name=repo_name)) | |
603 | assert response.json == {u'result': True} |
|
617 | assert response.json == {u'result': True} | |
604 | assert_session_flash( |
|
618 | ||
605 | response, |
|
619 | flash_msg = u'Created repository <a href="/{}">{}</a>'.format( | |
606 | u'Created repository <a href="/%s">%s</a>' |
|
620 | urllib.quote(repo_name_utf8), repo_name) | |
607 | % (urllib.quote(repo_name_utf8), repo_name)) |
|
621 | assert_session_flash(response, flash_msg) | |
608 |
|
622 | |||
609 | # test if the repo was created in the database |
|
623 | # test if the repo was created in the database | |
610 | new_repo = RepoModel().get_by_repo_name(repo_name) |
|
624 | new_repo = RepoModel().get_by_repo_name(repo_name) | |
611 |
|
625 | |||
612 | assert new_repo.repo_name == repo_name |
|
626 | assert new_repo.repo_name == repo_name | |
613 | assert new_repo.description == description |
|
627 | assert new_repo.description == description | |
614 |
|
628 | |||
615 | # test if the repository is visible in the list ? |
|
629 | # test if the repository is visible in the list ? | |
616 | response = self.app.get(url('summary_home', repo_name=repo_name)) |
|
630 | response = self.app.get(url('summary_home', repo_name=repo_name)) | |
617 | response.mustcontain(repo_name) |
|
631 | response.mustcontain(repo_name) | |
618 | response.mustcontain(backend.alias) |
|
632 | response.mustcontain(backend.alias) | |
619 |
|
633 | |||
620 | assert repo_on_filesystem(repo_name) |
|
634 | assert repo_on_filesystem(repo_name) | |
621 |
|
635 | |||
622 |
|
636 | |||
623 | @pytest.mark.usefixtures("app") |
|
637 | @pytest.mark.usefixtures("app") | |
624 | class TestVcsSettings(object): |
|
638 | class TestVcsSettings(object): | |
625 | FORM_DATA = { |
|
639 | FORM_DATA = { | |
626 | 'inherit_global_settings': False, |
|
640 | 'inherit_global_settings': False, | |
627 | 'hooks_changegroup_repo_size': False, |
|
641 | 'hooks_changegroup_repo_size': False, | |
628 | 'hooks_changegroup_push_logger': False, |
|
642 | 'hooks_changegroup_push_logger': False, | |
629 | 'hooks_outgoing_pull_logger': False, |
|
643 | 'hooks_outgoing_pull_logger': False, | |
630 | 'extensions_largefiles': False, |
|
644 | 'extensions_largefiles': False, | |
631 | 'phases_publish': 'False', |
|
645 | 'phases_publish': 'False', | |
632 | 'rhodecode_pr_merge_enabled': False, |
|
646 | 'rhodecode_pr_merge_enabled': False, | |
633 | 'rhodecode_use_outdated_comments': False, |
|
647 | 'rhodecode_use_outdated_comments': False, | |
634 | 'new_svn_branch': '', |
|
648 | 'new_svn_branch': '', | |
635 | 'new_svn_tag': '' |
|
649 | 'new_svn_tag': '' | |
636 | } |
|
650 | } | |
637 |
|
651 | |||
638 | @pytest.mark.skip_backends('svn') |
|
652 | @pytest.mark.skip_backends('svn') | |
639 | def test_global_settings_initial_values(self, autologin_user, backend): |
|
653 | def test_global_settings_initial_values(self, autologin_user, backend): | |
640 | repo_name = backend.repo_name |
|
654 | repo_name = backend.repo_name | |
641 | response = self.app.get(url('repo_vcs_settings', repo_name=repo_name)) |
|
655 | response = self.app.get(url('repo_vcs_settings', repo_name=repo_name)) | |
642 |
|
656 | |||
643 | expected_settings = ( |
|
657 | expected_settings = ( | |
644 | 'rhodecode_use_outdated_comments', 'rhodecode_pr_merge_enabled', |
|
658 | 'rhodecode_use_outdated_comments', 'rhodecode_pr_merge_enabled', | |
645 | 'hooks_changegroup_repo_size', 'hooks_changegroup_push_logger', |
|
659 | 'hooks_changegroup_repo_size', 'hooks_changegroup_push_logger', | |
646 | 'hooks_outgoing_pull_logger' |
|
660 | 'hooks_outgoing_pull_logger' | |
647 | ) |
|
661 | ) | |
648 | for setting in expected_settings: |
|
662 | for setting in expected_settings: | |
649 | self.assert_repo_value_equals_global_value(response, setting) |
|
663 | self.assert_repo_value_equals_global_value(response, setting) | |
650 |
|
664 | |||
651 | def test_show_settings_requires_repo_admin_permission( |
|
665 | def test_show_settings_requires_repo_admin_permission( | |
652 | self, backend, user_util, settings_util): |
|
666 | self, backend, user_util, settings_util): | |
653 | repo = backend.create_repo() |
|
667 | repo = backend.create_repo() | |
654 | repo_name = repo.repo_name |
|
668 | repo_name = repo.repo_name | |
655 | user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN) |
|
669 | user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN) | |
656 | user_util.grant_user_permission_to_repo(repo, user, 'repository.admin') |
|
670 | user_util.grant_user_permission_to_repo(repo, user, 'repository.admin') | |
657 | login_user_session( |
|
671 | login_user_session( | |
658 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
672 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
659 | self.app.get(url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
673 | self.app.get(url('repo_vcs_settings', repo_name=repo_name), status=200) | |
660 |
|
674 | |||
661 | def test_inherit_global_settings_flag_is_true_by_default( |
|
675 | def test_inherit_global_settings_flag_is_true_by_default( | |
662 | self, autologin_user, backend): |
|
676 | self, autologin_user, backend): | |
663 | repo_name = backend.repo_name |
|
677 | repo_name = backend.repo_name | |
664 | response = self.app.get(url('repo_vcs_settings', repo_name=repo_name)) |
|
678 | response = self.app.get(url('repo_vcs_settings', repo_name=repo_name)) | |
665 |
|
679 | |||
666 | assert_response = AssertResponse(response) |
|
680 | assert_response = AssertResponse(response) | |
667 | element = assert_response.get_element('#inherit_global_settings') |
|
681 | element = assert_response.get_element('#inherit_global_settings') | |
668 | assert element.checked |
|
682 | assert element.checked | |
669 |
|
683 | |||
670 | @pytest.mark.parametrize('checked_value', [True, False]) |
|
684 | @pytest.mark.parametrize('checked_value', [True, False]) | |
671 | def test_inherit_global_settings_value( |
|
685 | def test_inherit_global_settings_value( | |
672 | self, autologin_user, backend, checked_value, settings_util): |
|
686 | self, autologin_user, backend, checked_value, settings_util): | |
673 | repo = backend.create_repo() |
|
687 | repo = backend.create_repo() | |
674 | repo_name = repo.repo_name |
|
688 | repo_name = repo.repo_name | |
675 | settings_util.create_repo_rhodecode_setting( |
|
689 | settings_util.create_repo_rhodecode_setting( | |
676 | repo, 'inherit_vcs_settings', checked_value, 'bool') |
|
690 | repo, 'inherit_vcs_settings', checked_value, 'bool') | |
677 | response = self.app.get(url('repo_vcs_settings', repo_name=repo_name)) |
|
691 | response = self.app.get(url('repo_vcs_settings', repo_name=repo_name)) | |
678 |
|
692 | |||
679 | assert_response = AssertResponse(response) |
|
693 | assert_response = AssertResponse(response) | |
680 | element = assert_response.get_element('#inherit_global_settings') |
|
694 | element = assert_response.get_element('#inherit_global_settings') | |
681 | assert element.checked == checked_value |
|
695 | assert element.checked == checked_value | |
682 |
|
696 | |||
683 | @pytest.mark.skip_backends('svn') |
|
697 | @pytest.mark.skip_backends('svn') | |
684 | def test_hooks_settings_are_created( |
|
698 | def test_hooks_settings_are_created( | |
685 | self, autologin_user, backend, csrf_token): |
|
699 | self, autologin_user, backend, csrf_token): | |
686 | repo_name = backend.repo_name |
|
700 | repo_name = backend.repo_name | |
687 | data = self.FORM_DATA.copy() |
|
701 | data = self.FORM_DATA.copy() | |
688 | data['csrf_token'] = csrf_token |
|
702 | data['csrf_token'] = csrf_token | |
689 | self.app.post( |
|
703 | self.app.post( | |
690 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
704 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
691 | settings = SettingsModel(repo=repo_name) |
|
705 | settings = SettingsModel(repo=repo_name) | |
692 | try: |
|
706 | try: | |
693 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: |
|
707 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: | |
694 | ui = settings.get_ui_by_section_and_key(section, key) |
|
708 | ui = settings.get_ui_by_section_and_key(section, key) | |
695 | assert ui.ui_active is False |
|
709 | assert ui.ui_active is False | |
696 | finally: |
|
710 | finally: | |
697 | self._cleanup_repo_settings(settings) |
|
711 | self._cleanup_repo_settings(settings) | |
698 |
|
712 | |||
699 | def test_hooks_settings_are_not_created_for_svn( |
|
713 | def test_hooks_settings_are_not_created_for_svn( | |
700 | self, autologin_user, backend_svn, csrf_token): |
|
714 | self, autologin_user, backend_svn, csrf_token): | |
701 | repo_name = backend_svn.repo_name |
|
715 | repo_name = backend_svn.repo_name | |
702 | data = self.FORM_DATA.copy() |
|
716 | data = self.FORM_DATA.copy() | |
703 | data['csrf_token'] = csrf_token |
|
717 | data['csrf_token'] = csrf_token | |
704 | self.app.post( |
|
718 | self.app.post( | |
705 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
719 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
706 | settings = SettingsModel(repo=repo_name) |
|
720 | settings = SettingsModel(repo=repo_name) | |
707 | try: |
|
721 | try: | |
708 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: |
|
722 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: | |
709 | ui = settings.get_ui_by_section_and_key(section, key) |
|
723 | ui = settings.get_ui_by_section_and_key(section, key) | |
710 | assert ui is None |
|
724 | assert ui is None | |
711 | finally: |
|
725 | finally: | |
712 | self._cleanup_repo_settings(settings) |
|
726 | self._cleanup_repo_settings(settings) | |
713 |
|
727 | |||
714 | @pytest.mark.skip_backends('svn') |
|
728 | @pytest.mark.skip_backends('svn') | |
715 | def test_hooks_settings_are_updated( |
|
729 | def test_hooks_settings_are_updated( | |
716 | self, autologin_user, backend, csrf_token): |
|
730 | self, autologin_user, backend, csrf_token): | |
717 | repo_name = backend.repo_name |
|
731 | repo_name = backend.repo_name | |
718 | settings = SettingsModel(repo=repo_name) |
|
732 | settings = SettingsModel(repo=repo_name) | |
719 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: |
|
733 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: | |
720 | settings.create_ui_section_value(section, '', key=key, active=True) |
|
734 | settings.create_ui_section_value(section, '', key=key, active=True) | |
721 |
|
735 | |||
722 | data = self.FORM_DATA.copy() |
|
736 | data = self.FORM_DATA.copy() | |
723 | data['csrf_token'] = csrf_token |
|
737 | data['csrf_token'] = csrf_token | |
724 | self.app.post( |
|
738 | self.app.post( | |
725 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
739 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
726 | try: |
|
740 | try: | |
727 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: |
|
741 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: | |
728 | ui = settings.get_ui_by_section_and_key(section, key) |
|
742 | ui = settings.get_ui_by_section_and_key(section, key) | |
729 | assert ui.ui_active is False |
|
743 | assert ui.ui_active is False | |
730 | finally: |
|
744 | finally: | |
731 | self._cleanup_repo_settings(settings) |
|
745 | self._cleanup_repo_settings(settings) | |
732 |
|
746 | |||
733 | def test_hooks_settings_are_not_updated_for_svn( |
|
747 | def test_hooks_settings_are_not_updated_for_svn( | |
734 | self, autologin_user, backend_svn, csrf_token): |
|
748 | self, autologin_user, backend_svn, csrf_token): | |
735 | repo_name = backend_svn.repo_name |
|
749 | repo_name = backend_svn.repo_name | |
736 | settings = SettingsModel(repo=repo_name) |
|
750 | settings = SettingsModel(repo=repo_name) | |
737 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: |
|
751 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: | |
738 | settings.create_ui_section_value(section, '', key=key, active=True) |
|
752 | settings.create_ui_section_value(section, '', key=key, active=True) | |
739 |
|
753 | |||
740 | data = self.FORM_DATA.copy() |
|
754 | data = self.FORM_DATA.copy() | |
741 | data['csrf_token'] = csrf_token |
|
755 | data['csrf_token'] = csrf_token | |
742 | self.app.post( |
|
756 | self.app.post( | |
743 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
757 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
744 | try: |
|
758 | try: | |
745 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: |
|
759 | for section, key in VcsSettingsModel.HOOKS_SETTINGS: | |
746 | ui = settings.get_ui_by_section_and_key(section, key) |
|
760 | ui = settings.get_ui_by_section_and_key(section, key) | |
747 | assert ui.ui_active is True |
|
761 | assert ui.ui_active is True | |
748 | finally: |
|
762 | finally: | |
749 | self._cleanup_repo_settings(settings) |
|
763 | self._cleanup_repo_settings(settings) | |
750 |
|
764 | |||
751 | @pytest.mark.skip_backends('svn') |
|
765 | @pytest.mark.skip_backends('svn') | |
752 | def test_pr_settings_are_created( |
|
766 | def test_pr_settings_are_created( | |
753 | self, autologin_user, backend, csrf_token): |
|
767 | self, autologin_user, backend, csrf_token): | |
754 | repo_name = backend.repo_name |
|
768 | repo_name = backend.repo_name | |
755 | data = self.FORM_DATA.copy() |
|
769 | data = self.FORM_DATA.copy() | |
756 | data['csrf_token'] = csrf_token |
|
770 | data['csrf_token'] = csrf_token | |
757 | self.app.post( |
|
771 | self.app.post( | |
758 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
772 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
759 | settings = SettingsModel(repo=repo_name) |
|
773 | settings = SettingsModel(repo=repo_name) | |
760 | try: |
|
774 | try: | |
761 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
775 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
762 | setting = settings.get_setting_by_name(name) |
|
776 | setting = settings.get_setting_by_name(name) | |
763 | assert setting.app_settings_value is False |
|
777 | assert setting.app_settings_value is False | |
764 | finally: |
|
778 | finally: | |
765 | self._cleanup_repo_settings(settings) |
|
779 | self._cleanup_repo_settings(settings) | |
766 |
|
780 | |||
767 | def test_pr_settings_are_not_created_for_svn( |
|
781 | def test_pr_settings_are_not_created_for_svn( | |
768 | self, autologin_user, backend_svn, csrf_token): |
|
782 | self, autologin_user, backend_svn, csrf_token): | |
769 | repo_name = backend_svn.repo_name |
|
783 | repo_name = backend_svn.repo_name | |
770 | data = self.FORM_DATA.copy() |
|
784 | data = self.FORM_DATA.copy() | |
771 | data['csrf_token'] = csrf_token |
|
785 | data['csrf_token'] = csrf_token | |
772 | self.app.post( |
|
786 | self.app.post( | |
773 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
787 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
774 | settings = SettingsModel(repo=repo_name) |
|
788 | settings = SettingsModel(repo=repo_name) | |
775 | try: |
|
789 | try: | |
776 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
790 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
777 | setting = settings.get_setting_by_name(name) |
|
791 | setting = settings.get_setting_by_name(name) | |
778 | assert setting is None |
|
792 | assert setting is None | |
779 | finally: |
|
793 | finally: | |
780 | self._cleanup_repo_settings(settings) |
|
794 | self._cleanup_repo_settings(settings) | |
781 |
|
795 | |||
782 | def test_pr_settings_creation_requires_repo_admin_permission( |
|
796 | def test_pr_settings_creation_requires_repo_admin_permission( | |
783 | self, backend, user_util, settings_util, csrf_token): |
|
797 | self, backend, user_util, settings_util, csrf_token): | |
784 | repo = backend.create_repo() |
|
798 | repo = backend.create_repo() | |
785 | repo_name = repo.repo_name |
|
799 | repo_name = repo.repo_name | |
786 | user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN) |
|
800 | user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN) | |
787 |
|
801 | |||
788 | logout_user_session(self.app, csrf_token) |
|
802 | logout_user_session(self.app, csrf_token) | |
789 | session = login_user_session( |
|
803 | session = login_user_session( | |
790 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
804 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
791 | new_csrf_token = auth.get_csrf_token(session) |
|
805 | new_csrf_token = auth.get_csrf_token(session) | |
792 |
|
806 | |||
793 | user_util.grant_user_permission_to_repo(repo, user, 'repository.admin') |
|
807 | user_util.grant_user_permission_to_repo(repo, user, 'repository.admin') | |
794 | data = self.FORM_DATA.copy() |
|
808 | data = self.FORM_DATA.copy() | |
795 | data['csrf_token'] = new_csrf_token |
|
809 | data['csrf_token'] = new_csrf_token | |
796 | settings = SettingsModel(repo=repo_name) |
|
810 | settings = SettingsModel(repo=repo_name) | |
797 |
|
811 | |||
798 | try: |
|
812 | try: | |
799 | self.app.post( |
|
813 | self.app.post( | |
800 | url('repo_vcs_settings', repo_name=repo_name), data, |
|
814 | url('repo_vcs_settings', repo_name=repo_name), data, | |
801 | status=302) |
|
815 | status=302) | |
802 | finally: |
|
816 | finally: | |
803 | self._cleanup_repo_settings(settings) |
|
817 | self._cleanup_repo_settings(settings) | |
804 |
|
818 | |||
805 | @pytest.mark.skip_backends('svn') |
|
819 | @pytest.mark.skip_backends('svn') | |
806 | def test_pr_settings_are_updated( |
|
820 | def test_pr_settings_are_updated( | |
807 | self, autologin_user, backend, csrf_token): |
|
821 | self, autologin_user, backend, csrf_token): | |
808 | repo_name = backend.repo_name |
|
822 | repo_name = backend.repo_name | |
809 | settings = SettingsModel(repo=repo_name) |
|
823 | settings = SettingsModel(repo=repo_name) | |
810 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
824 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
811 | settings.create_or_update_setting(name, True, 'bool') |
|
825 | settings.create_or_update_setting(name, True, 'bool') | |
812 |
|
826 | |||
813 | data = self.FORM_DATA.copy() |
|
827 | data = self.FORM_DATA.copy() | |
814 | data['csrf_token'] = csrf_token |
|
828 | data['csrf_token'] = csrf_token | |
815 | self.app.post( |
|
829 | self.app.post( | |
816 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
830 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
817 | try: |
|
831 | try: | |
818 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
832 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
819 | setting = settings.get_setting_by_name(name) |
|
833 | setting = settings.get_setting_by_name(name) | |
820 | assert setting.app_settings_value is False |
|
834 | assert setting.app_settings_value is False | |
821 | finally: |
|
835 | finally: | |
822 | self._cleanup_repo_settings(settings) |
|
836 | self._cleanup_repo_settings(settings) | |
823 |
|
837 | |||
824 | def test_pr_settings_are_not_updated_for_svn( |
|
838 | def test_pr_settings_are_not_updated_for_svn( | |
825 | self, autologin_user, backend_svn, csrf_token): |
|
839 | self, autologin_user, backend_svn, csrf_token): | |
826 | repo_name = backend_svn.repo_name |
|
840 | repo_name = backend_svn.repo_name | |
827 | settings = SettingsModel(repo=repo_name) |
|
841 | settings = SettingsModel(repo=repo_name) | |
828 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
842 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
829 | settings.create_or_update_setting(name, True, 'bool') |
|
843 | settings.create_or_update_setting(name, True, 'bool') | |
830 |
|
844 | |||
831 | data = self.FORM_DATA.copy() |
|
845 | data = self.FORM_DATA.copy() | |
832 | data['csrf_token'] = csrf_token |
|
846 | data['csrf_token'] = csrf_token | |
833 | self.app.post( |
|
847 | self.app.post( | |
834 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
848 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
835 | try: |
|
849 | try: | |
836 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
850 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
837 | setting = settings.get_setting_by_name(name) |
|
851 | setting = settings.get_setting_by_name(name) | |
838 | assert setting.app_settings_value is True |
|
852 | assert setting.app_settings_value is True | |
839 | finally: |
|
853 | finally: | |
840 | self._cleanup_repo_settings(settings) |
|
854 | self._cleanup_repo_settings(settings) | |
841 |
|
855 | |||
842 | def test_svn_settings_are_created( |
|
856 | def test_svn_settings_are_created( | |
843 | self, autologin_user, backend_svn, csrf_token, settings_util): |
|
857 | self, autologin_user, backend_svn, csrf_token, settings_util): | |
844 | repo_name = backend_svn.repo_name |
|
858 | repo_name = backend_svn.repo_name | |
845 | data = self.FORM_DATA.copy() |
|
859 | data = self.FORM_DATA.copy() | |
846 | data['new_svn_tag'] = 'svn-tag' |
|
860 | data['new_svn_tag'] = 'svn-tag' | |
847 | data['new_svn_branch'] = 'svn-branch' |
|
861 | data['new_svn_branch'] = 'svn-branch' | |
848 | data['csrf_token'] = csrf_token |
|
862 | data['csrf_token'] = csrf_token | |
849 |
|
863 | |||
850 | # Create few global settings to make sure that uniqueness validators |
|
864 | # Create few global settings to make sure that uniqueness validators | |
851 | # are not triggered |
|
865 | # are not triggered | |
852 | settings_util.create_rhodecode_ui( |
|
866 | settings_util.create_rhodecode_ui( | |
853 | VcsSettingsModel.SVN_BRANCH_SECTION, 'svn-branch') |
|
867 | VcsSettingsModel.SVN_BRANCH_SECTION, 'svn-branch') | |
854 | settings_util.create_rhodecode_ui( |
|
868 | settings_util.create_rhodecode_ui( | |
855 | VcsSettingsModel.SVN_TAG_SECTION, 'svn-tag') |
|
869 | VcsSettingsModel.SVN_TAG_SECTION, 'svn-tag') | |
856 |
|
870 | |||
857 | self.app.post( |
|
871 | self.app.post( | |
858 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
872 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
859 | settings = SettingsModel(repo=repo_name) |
|
873 | settings = SettingsModel(repo=repo_name) | |
860 | try: |
|
874 | try: | |
861 | svn_branches = settings.get_ui_by_section( |
|
875 | svn_branches = settings.get_ui_by_section( | |
862 | VcsSettingsModel.SVN_BRANCH_SECTION) |
|
876 | VcsSettingsModel.SVN_BRANCH_SECTION) | |
863 | svn_branch_names = [b.ui_value for b in svn_branches] |
|
877 | svn_branch_names = [b.ui_value for b in svn_branches] | |
864 | svn_tags = settings.get_ui_by_section( |
|
878 | svn_tags = settings.get_ui_by_section( | |
865 | VcsSettingsModel.SVN_TAG_SECTION) |
|
879 | VcsSettingsModel.SVN_TAG_SECTION) | |
866 | svn_tag_names = [b.ui_value for b in svn_tags] |
|
880 | svn_tag_names = [b.ui_value for b in svn_tags] | |
867 | assert 'svn-branch' in svn_branch_names |
|
881 | assert 'svn-branch' in svn_branch_names | |
868 | assert 'svn-tag' in svn_tag_names |
|
882 | assert 'svn-tag' in svn_tag_names | |
869 | finally: |
|
883 | finally: | |
870 | self._cleanup_repo_settings(settings) |
|
884 | self._cleanup_repo_settings(settings) | |
871 |
|
885 | |||
872 | def test_svn_settings_are_unique( |
|
886 | def test_svn_settings_are_unique( | |
873 | self, autologin_user, backend_svn, csrf_token, settings_util): |
|
887 | self, autologin_user, backend_svn, csrf_token, settings_util): | |
874 | repo = backend_svn.repo |
|
888 | repo = backend_svn.repo | |
875 | repo_name = repo.repo_name |
|
889 | repo_name = repo.repo_name | |
876 | data = self.FORM_DATA.copy() |
|
890 | data = self.FORM_DATA.copy() | |
877 | data['new_svn_tag'] = 'test_tag' |
|
891 | data['new_svn_tag'] = 'test_tag' | |
878 | data['new_svn_branch'] = 'test_branch' |
|
892 | data['new_svn_branch'] = 'test_branch' | |
879 | data['csrf_token'] = csrf_token |
|
893 | data['csrf_token'] = csrf_token | |
880 | settings_util.create_repo_rhodecode_ui( |
|
894 | settings_util.create_repo_rhodecode_ui( | |
881 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, 'test_branch') |
|
895 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, 'test_branch') | |
882 | settings_util.create_repo_rhodecode_ui( |
|
896 | settings_util.create_repo_rhodecode_ui( | |
883 | repo, VcsSettingsModel.SVN_TAG_SECTION, 'test_tag') |
|
897 | repo, VcsSettingsModel.SVN_TAG_SECTION, 'test_tag') | |
884 |
|
898 | |||
885 | response = self.app.post( |
|
899 | response = self.app.post( | |
886 | url('repo_vcs_settings', repo_name=repo_name), data, status=200) |
|
900 | url('repo_vcs_settings', repo_name=repo_name), data, status=200) | |
887 | response.mustcontain('Pattern already exists') |
|
901 | response.mustcontain('Pattern already exists') | |
888 |
|
902 | |||
889 | def test_svn_settings_with_empty_values_are_not_created( |
|
903 | def test_svn_settings_with_empty_values_are_not_created( | |
890 | self, autologin_user, backend_svn, csrf_token): |
|
904 | self, autologin_user, backend_svn, csrf_token): | |
891 | repo_name = backend_svn.repo_name |
|
905 | repo_name = backend_svn.repo_name | |
892 | data = self.FORM_DATA.copy() |
|
906 | data = self.FORM_DATA.copy() | |
893 | data['csrf_token'] = csrf_token |
|
907 | data['csrf_token'] = csrf_token | |
894 | self.app.post( |
|
908 | self.app.post( | |
895 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
909 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
896 | settings = SettingsModel(repo=repo_name) |
|
910 | settings = SettingsModel(repo=repo_name) | |
897 | try: |
|
911 | try: | |
898 | svn_branches = settings.get_ui_by_section( |
|
912 | svn_branches = settings.get_ui_by_section( | |
899 | VcsSettingsModel.SVN_BRANCH_SECTION) |
|
913 | VcsSettingsModel.SVN_BRANCH_SECTION) | |
900 | svn_tags = settings.get_ui_by_section( |
|
914 | svn_tags = settings.get_ui_by_section( | |
901 | VcsSettingsModel.SVN_TAG_SECTION) |
|
915 | VcsSettingsModel.SVN_TAG_SECTION) | |
902 | assert len(svn_branches) == 0 |
|
916 | assert len(svn_branches) == 0 | |
903 | assert len(svn_tags) == 0 |
|
917 | assert len(svn_tags) == 0 | |
904 | finally: |
|
918 | finally: | |
905 | self._cleanup_repo_settings(settings) |
|
919 | self._cleanup_repo_settings(settings) | |
906 |
|
920 | |||
907 | def test_svn_settings_are_shown_for_svn_repository( |
|
921 | def test_svn_settings_are_shown_for_svn_repository( | |
908 | self, autologin_user, backend_svn, csrf_token): |
|
922 | self, autologin_user, backend_svn, csrf_token): | |
909 | repo_name = backend_svn.repo_name |
|
923 | repo_name = backend_svn.repo_name | |
910 | response = self.app.get( |
|
924 | response = self.app.get( | |
911 | url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
925 | url('repo_vcs_settings', repo_name=repo_name), status=200) | |
912 | response.mustcontain('Subversion Settings') |
|
926 | response.mustcontain('Subversion Settings') | |
913 |
|
927 | |||
914 | @pytest.mark.skip_backends('svn') |
|
928 | @pytest.mark.skip_backends('svn') | |
915 | def test_svn_settings_are_not_created_for_not_svn_repository( |
|
929 | def test_svn_settings_are_not_created_for_not_svn_repository( | |
916 | self, autologin_user, backend, csrf_token): |
|
930 | self, autologin_user, backend, csrf_token): | |
917 | repo_name = backend.repo_name |
|
931 | repo_name = backend.repo_name | |
918 | data = self.FORM_DATA.copy() |
|
932 | data = self.FORM_DATA.copy() | |
919 | data['csrf_token'] = csrf_token |
|
933 | data['csrf_token'] = csrf_token | |
920 | self.app.post( |
|
934 | self.app.post( | |
921 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
935 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
922 | settings = SettingsModel(repo=repo_name) |
|
936 | settings = SettingsModel(repo=repo_name) | |
923 | try: |
|
937 | try: | |
924 | svn_branches = settings.get_ui_by_section( |
|
938 | svn_branches = settings.get_ui_by_section( | |
925 | VcsSettingsModel.SVN_BRANCH_SECTION) |
|
939 | VcsSettingsModel.SVN_BRANCH_SECTION) | |
926 | svn_tags = settings.get_ui_by_section( |
|
940 | svn_tags = settings.get_ui_by_section( | |
927 | VcsSettingsModel.SVN_TAG_SECTION) |
|
941 | VcsSettingsModel.SVN_TAG_SECTION) | |
928 | assert len(svn_branches) == 0 |
|
942 | assert len(svn_branches) == 0 | |
929 | assert len(svn_tags) == 0 |
|
943 | assert len(svn_tags) == 0 | |
930 | finally: |
|
944 | finally: | |
931 | self._cleanup_repo_settings(settings) |
|
945 | self._cleanup_repo_settings(settings) | |
932 |
|
946 | |||
933 | @pytest.mark.skip_backends('svn') |
|
947 | @pytest.mark.skip_backends('svn') | |
934 | def test_svn_settings_are_shown_only_for_svn_repository( |
|
948 | def test_svn_settings_are_shown_only_for_svn_repository( | |
935 | self, autologin_user, backend, csrf_token): |
|
949 | self, autologin_user, backend, csrf_token): | |
936 | repo_name = backend.repo_name |
|
950 | repo_name = backend.repo_name | |
937 | response = self.app.get( |
|
951 | response = self.app.get( | |
938 | url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
952 | url('repo_vcs_settings', repo_name=repo_name), status=200) | |
939 | response.mustcontain(no='Subversion Settings') |
|
953 | response.mustcontain(no='Subversion Settings') | |
940 |
|
954 | |||
941 | def test_hg_settings_are_created( |
|
955 | def test_hg_settings_are_created( | |
942 | self, autologin_user, backend_hg, csrf_token): |
|
956 | self, autologin_user, backend_hg, csrf_token): | |
943 | repo_name = backend_hg.repo_name |
|
957 | repo_name = backend_hg.repo_name | |
944 | data = self.FORM_DATA.copy() |
|
958 | data = self.FORM_DATA.copy() | |
945 | data['new_svn_tag'] = 'svn-tag' |
|
959 | data['new_svn_tag'] = 'svn-tag' | |
946 | data['new_svn_branch'] = 'svn-branch' |
|
960 | data['new_svn_branch'] = 'svn-branch' | |
947 | data['csrf_token'] = csrf_token |
|
961 | data['csrf_token'] = csrf_token | |
948 | self.app.post( |
|
962 | self.app.post( | |
949 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
963 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
950 | settings = SettingsModel(repo=repo_name) |
|
964 | settings = SettingsModel(repo=repo_name) | |
951 | try: |
|
965 | try: | |
952 | largefiles_ui = settings.get_ui_by_section_and_key( |
|
966 | largefiles_ui = settings.get_ui_by_section_and_key( | |
953 | 'extensions', 'largefiles') |
|
967 | 'extensions', 'largefiles') | |
954 | assert largefiles_ui.ui_active is False |
|
968 | assert largefiles_ui.ui_active is False | |
955 | phases_ui = settings.get_ui_by_section_and_key( |
|
969 | phases_ui = settings.get_ui_by_section_and_key( | |
956 | 'phases', 'publish') |
|
970 | 'phases', 'publish') | |
957 | assert str2bool(phases_ui.ui_value) is False |
|
971 | assert str2bool(phases_ui.ui_value) is False | |
958 | finally: |
|
972 | finally: | |
959 | self._cleanup_repo_settings(settings) |
|
973 | self._cleanup_repo_settings(settings) | |
960 |
|
974 | |||
961 | def test_hg_settings_are_updated( |
|
975 | def test_hg_settings_are_updated( | |
962 | self, autologin_user, backend_hg, csrf_token): |
|
976 | self, autologin_user, backend_hg, csrf_token): | |
963 | repo_name = backend_hg.repo_name |
|
977 | repo_name = backend_hg.repo_name | |
964 | settings = SettingsModel(repo=repo_name) |
|
978 | settings = SettingsModel(repo=repo_name) | |
965 | settings.create_ui_section_value( |
|
979 | settings.create_ui_section_value( | |
966 | 'extensions', '', key='largefiles', active=True) |
|
980 | 'extensions', '', key='largefiles', active=True) | |
967 | settings.create_ui_section_value( |
|
981 | settings.create_ui_section_value( | |
968 | 'phases', '1', key='publish', active=True) |
|
982 | 'phases', '1', key='publish', active=True) | |
969 |
|
983 | |||
970 | data = self.FORM_DATA.copy() |
|
984 | data = self.FORM_DATA.copy() | |
971 | data['csrf_token'] = csrf_token |
|
985 | data['csrf_token'] = csrf_token | |
972 | self.app.post( |
|
986 | self.app.post( | |
973 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
987 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
974 | try: |
|
988 | try: | |
975 | largefiles_ui = settings.get_ui_by_section_and_key( |
|
989 | largefiles_ui = settings.get_ui_by_section_and_key( | |
976 | 'extensions', 'largefiles') |
|
990 | 'extensions', 'largefiles') | |
977 | assert largefiles_ui.ui_active is False |
|
991 | assert largefiles_ui.ui_active is False | |
978 | phases_ui = settings.get_ui_by_section_and_key( |
|
992 | phases_ui = settings.get_ui_by_section_and_key( | |
979 | 'phases', 'publish') |
|
993 | 'phases', 'publish') | |
980 | assert str2bool(phases_ui.ui_value) is False |
|
994 | assert str2bool(phases_ui.ui_value) is False | |
981 | finally: |
|
995 | finally: | |
982 | self._cleanup_repo_settings(settings) |
|
996 | self._cleanup_repo_settings(settings) | |
983 |
|
997 | |||
984 | def test_hg_settings_are_shown_for_hg_repository( |
|
998 | def test_hg_settings_are_shown_for_hg_repository( | |
985 | self, autologin_user, backend_hg, csrf_token): |
|
999 | self, autologin_user, backend_hg, csrf_token): | |
986 | repo_name = backend_hg.repo_name |
|
1000 | repo_name = backend_hg.repo_name | |
987 | response = self.app.get( |
|
1001 | response = self.app.get( | |
988 | url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
1002 | url('repo_vcs_settings', repo_name=repo_name), status=200) | |
989 | response.mustcontain('Mercurial Settings') |
|
1003 | response.mustcontain('Mercurial Settings') | |
990 |
|
1004 | |||
991 | @pytest.mark.skip_backends('hg') |
|
1005 | @pytest.mark.skip_backends('hg') | |
992 | def test_hg_settings_are_created_only_for_hg_repository( |
|
1006 | def test_hg_settings_are_created_only_for_hg_repository( | |
993 | self, autologin_user, backend, csrf_token): |
|
1007 | self, autologin_user, backend, csrf_token): | |
994 | repo_name = backend.repo_name |
|
1008 | repo_name = backend.repo_name | |
995 | data = self.FORM_DATA.copy() |
|
1009 | data = self.FORM_DATA.copy() | |
996 | data['csrf_token'] = csrf_token |
|
1010 | data['csrf_token'] = csrf_token | |
997 | self.app.post( |
|
1011 | self.app.post( | |
998 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
1012 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
999 | settings = SettingsModel(repo=repo_name) |
|
1013 | settings = SettingsModel(repo=repo_name) | |
1000 | try: |
|
1014 | try: | |
1001 | largefiles_ui = settings.get_ui_by_section_and_key( |
|
1015 | largefiles_ui = settings.get_ui_by_section_and_key( | |
1002 | 'extensions', 'largefiles') |
|
1016 | 'extensions', 'largefiles') | |
1003 | assert largefiles_ui is None |
|
1017 | assert largefiles_ui is None | |
1004 | phases_ui = settings.get_ui_by_section_and_key( |
|
1018 | phases_ui = settings.get_ui_by_section_and_key( | |
1005 | 'phases', 'publish') |
|
1019 | 'phases', 'publish') | |
1006 | assert phases_ui is None |
|
1020 | assert phases_ui is None | |
1007 | finally: |
|
1021 | finally: | |
1008 | self._cleanup_repo_settings(settings) |
|
1022 | self._cleanup_repo_settings(settings) | |
1009 |
|
1023 | |||
1010 | @pytest.mark.skip_backends('hg') |
|
1024 | @pytest.mark.skip_backends('hg') | |
1011 | def test_hg_settings_are_shown_only_for_hg_repository( |
|
1025 | def test_hg_settings_are_shown_only_for_hg_repository( | |
1012 | self, autologin_user, backend, csrf_token): |
|
1026 | self, autologin_user, backend, csrf_token): | |
1013 | repo_name = backend.repo_name |
|
1027 | repo_name = backend.repo_name | |
1014 | response = self.app.get( |
|
1028 | response = self.app.get( | |
1015 | url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
1029 | url('repo_vcs_settings', repo_name=repo_name), status=200) | |
1016 | response.mustcontain(no='Mercurial Settings') |
|
1030 | response.mustcontain(no='Mercurial Settings') | |
1017 |
|
1031 | |||
1018 | @pytest.mark.skip_backends('hg') |
|
1032 | @pytest.mark.skip_backends('hg') | |
1019 | def test_hg_settings_are_updated_only_for_hg_repository( |
|
1033 | def test_hg_settings_are_updated_only_for_hg_repository( | |
1020 | self, autologin_user, backend, csrf_token): |
|
1034 | self, autologin_user, backend, csrf_token): | |
1021 | repo_name = backend.repo_name |
|
1035 | repo_name = backend.repo_name | |
1022 | settings = SettingsModel(repo=repo_name) |
|
1036 | settings = SettingsModel(repo=repo_name) | |
1023 | settings.create_ui_section_value( |
|
1037 | settings.create_ui_section_value( | |
1024 | 'extensions', '', key='largefiles', active=True) |
|
1038 | 'extensions', '', key='largefiles', active=True) | |
1025 | settings.create_ui_section_value( |
|
1039 | settings.create_ui_section_value( | |
1026 | 'phases', '1', key='publish', active=True) |
|
1040 | 'phases', '1', key='publish', active=True) | |
1027 |
|
1041 | |||
1028 | data = self.FORM_DATA.copy() |
|
1042 | data = self.FORM_DATA.copy() | |
1029 | data['csrf_token'] = csrf_token |
|
1043 | data['csrf_token'] = csrf_token | |
1030 | self.app.post( |
|
1044 | self.app.post( | |
1031 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
1045 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
1032 | try: |
|
1046 | try: | |
1033 | largefiles_ui = settings.get_ui_by_section_and_key( |
|
1047 | largefiles_ui = settings.get_ui_by_section_and_key( | |
1034 | 'extensions', 'largefiles') |
|
1048 | 'extensions', 'largefiles') | |
1035 | assert largefiles_ui.ui_active is True |
|
1049 | assert largefiles_ui.ui_active is True | |
1036 | phases_ui = settings.get_ui_by_section_and_key( |
|
1050 | phases_ui = settings.get_ui_by_section_and_key( | |
1037 | 'phases', 'publish') |
|
1051 | 'phases', 'publish') | |
1038 | assert phases_ui.ui_value == '1' |
|
1052 | assert phases_ui.ui_value == '1' | |
1039 | finally: |
|
1053 | finally: | |
1040 | self._cleanup_repo_settings(settings) |
|
1054 | self._cleanup_repo_settings(settings) | |
1041 |
|
1055 | |||
1042 | def test_per_repo_svn_settings_are_displayed( |
|
1056 | def test_per_repo_svn_settings_are_displayed( | |
1043 | self, autologin_user, backend_svn, settings_util): |
|
1057 | self, autologin_user, backend_svn, settings_util): | |
1044 | repo = backend_svn.create_repo() |
|
1058 | repo = backend_svn.create_repo() | |
1045 | repo_name = repo.repo_name |
|
1059 | repo_name = repo.repo_name | |
1046 | branches = [ |
|
1060 | branches = [ | |
1047 | settings_util.create_repo_rhodecode_ui( |
|
1061 | settings_util.create_repo_rhodecode_ui( | |
1048 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, |
|
1062 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, | |
1049 | 'branch_{}'.format(i)) |
|
1063 | 'branch_{}'.format(i)) | |
1050 | for i in range(10)] |
|
1064 | for i in range(10)] | |
1051 | tags = [ |
|
1065 | tags = [ | |
1052 | settings_util.create_repo_rhodecode_ui( |
|
1066 | settings_util.create_repo_rhodecode_ui( | |
1053 | repo, VcsSettingsModel.SVN_TAG_SECTION, 'tag_{}'.format(i)) |
|
1067 | repo, VcsSettingsModel.SVN_TAG_SECTION, 'tag_{}'.format(i)) | |
1054 | for i in range(10)] |
|
1068 | for i in range(10)] | |
1055 |
|
1069 | |||
1056 | response = self.app.get( |
|
1070 | response = self.app.get( | |
1057 | url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
1071 | url('repo_vcs_settings', repo_name=repo_name), status=200) | |
1058 | assert_response = AssertResponse(response) |
|
1072 | assert_response = AssertResponse(response) | |
1059 | for branch in branches: |
|
1073 | for branch in branches: | |
1060 | css_selector = '[name=branch_value_{}]'.format(branch.ui_id) |
|
1074 | css_selector = '[name=branch_value_{}]'.format(branch.ui_id) | |
1061 | element = assert_response.get_element(css_selector) |
|
1075 | element = assert_response.get_element(css_selector) | |
1062 | assert element.value == branch.ui_value |
|
1076 | assert element.value == branch.ui_value | |
1063 | for tag in tags: |
|
1077 | for tag in tags: | |
1064 | css_selector = '[name=tag_ui_value_new_{}]'.format(tag.ui_id) |
|
1078 | css_selector = '[name=tag_ui_value_new_{}]'.format(tag.ui_id) | |
1065 | element = assert_response.get_element(css_selector) |
|
1079 | element = assert_response.get_element(css_selector) | |
1066 | assert element.value == tag.ui_value |
|
1080 | assert element.value == tag.ui_value | |
1067 |
|
1081 | |||
1068 | def test_per_repo_hg_and_pr_settings_are_not_displayed_for_svn( |
|
1082 | def test_per_repo_hg_and_pr_settings_are_not_displayed_for_svn( | |
1069 | self, autologin_user, backend_svn, settings_util): |
|
1083 | self, autologin_user, backend_svn, settings_util): | |
1070 | repo = backend_svn.create_repo() |
|
1084 | repo = backend_svn.create_repo() | |
1071 | repo_name = repo.repo_name |
|
1085 | repo_name = repo.repo_name | |
1072 | response = self.app.get( |
|
1086 | response = self.app.get( | |
1073 | url('repo_vcs_settings', repo_name=repo_name), status=200) |
|
1087 | url('repo_vcs_settings', repo_name=repo_name), status=200) | |
1074 | response.mustcontain(no='<label>Hooks:</label>') |
|
1088 | response.mustcontain(no='<label>Hooks:</label>') | |
1075 | response.mustcontain(no='<label>Pull Request Settings:</label>') |
|
1089 | response.mustcontain(no='<label>Pull Request Settings:</label>') | |
1076 |
|
1090 | |||
1077 | def test_inherit_global_settings_value_is_saved( |
|
1091 | def test_inherit_global_settings_value_is_saved( | |
1078 | self, autologin_user, backend, csrf_token): |
|
1092 | self, autologin_user, backend, csrf_token): | |
1079 | repo_name = backend.repo_name |
|
1093 | repo_name = backend.repo_name | |
1080 | data = self.FORM_DATA.copy() |
|
1094 | data = self.FORM_DATA.copy() | |
1081 | data['csrf_token'] = csrf_token |
|
1095 | data['csrf_token'] = csrf_token | |
1082 | data['inherit_global_settings'] = True |
|
1096 | data['inherit_global_settings'] = True | |
1083 | self.app.post( |
|
1097 | self.app.post( | |
1084 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
1098 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
1085 |
|
1099 | |||
1086 | settings = SettingsModel(repo=repo_name) |
|
1100 | settings = SettingsModel(repo=repo_name) | |
1087 | vcs_settings = VcsSettingsModel(repo=repo_name) |
|
1101 | vcs_settings = VcsSettingsModel(repo=repo_name) | |
1088 | try: |
|
1102 | try: | |
1089 | assert vcs_settings.inherit_global_settings is True |
|
1103 | assert vcs_settings.inherit_global_settings is True | |
1090 | finally: |
|
1104 | finally: | |
1091 | self._cleanup_repo_settings(settings) |
|
1105 | self._cleanup_repo_settings(settings) | |
1092 |
|
1106 | |||
1093 | def test_repo_cache_is_invalidated_when_settings_are_updated( |
|
1107 | def test_repo_cache_is_invalidated_when_settings_are_updated( | |
1094 | self, autologin_user, backend, csrf_token): |
|
1108 | self, autologin_user, backend, csrf_token): | |
1095 | repo_name = backend.repo_name |
|
1109 | repo_name = backend.repo_name | |
1096 | data = self.FORM_DATA.copy() |
|
1110 | data = self.FORM_DATA.copy() | |
1097 | data['csrf_token'] = csrf_token |
|
1111 | data['csrf_token'] = csrf_token | |
1098 | data['inherit_global_settings'] = True |
|
1112 | data['inherit_global_settings'] = True | |
1099 | settings = SettingsModel(repo=repo_name) |
|
1113 | settings = SettingsModel(repo=repo_name) | |
1100 |
|
1114 | |||
1101 | invalidation_patcher = mock.patch( |
|
1115 | invalidation_patcher = mock.patch( | |
1102 | 'rhodecode.controllers.admin.repos.ScmModel.mark_for_invalidation') |
|
1116 | 'rhodecode.controllers.admin.repos.ScmModel.mark_for_invalidation') | |
1103 | with invalidation_patcher as invalidation_mock: |
|
1117 | with invalidation_patcher as invalidation_mock: | |
1104 | self.app.post( |
|
1118 | self.app.post( | |
1105 | url('repo_vcs_settings', repo_name=repo_name), data, |
|
1119 | url('repo_vcs_settings', repo_name=repo_name), data, | |
1106 | status=302) |
|
1120 | status=302) | |
1107 | try: |
|
1121 | try: | |
1108 | invalidation_mock.assert_called_once_with(repo_name, delete=True) |
|
1122 | invalidation_mock.assert_called_once_with(repo_name, delete=True) | |
1109 | finally: |
|
1123 | finally: | |
1110 | self._cleanup_repo_settings(settings) |
|
1124 | self._cleanup_repo_settings(settings) | |
1111 |
|
1125 | |||
1112 | def test_other_settings_not_saved_inherit_global_settings_is_true( |
|
1126 | def test_other_settings_not_saved_inherit_global_settings_is_true( | |
1113 | self, autologin_user, backend, csrf_token): |
|
1127 | self, autologin_user, backend, csrf_token): | |
1114 | repo_name = backend.repo_name |
|
1128 | repo_name = backend.repo_name | |
1115 | data = self.FORM_DATA.copy() |
|
1129 | data = self.FORM_DATA.copy() | |
1116 | data['csrf_token'] = csrf_token |
|
1130 | data['csrf_token'] = csrf_token | |
1117 | data['inherit_global_settings'] = True |
|
1131 | data['inherit_global_settings'] = True | |
1118 | self.app.post( |
|
1132 | self.app.post( | |
1119 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) |
|
1133 | url('repo_vcs_settings', repo_name=repo_name), data, status=302) | |
1120 |
|
1134 | |||
1121 | settings = SettingsModel(repo=repo_name) |
|
1135 | settings = SettingsModel(repo=repo_name) | |
1122 | ui_settings = ( |
|
1136 | ui_settings = ( | |
1123 | VcsSettingsModel.HOOKS_SETTINGS + VcsSettingsModel.HG_SETTINGS) |
|
1137 | VcsSettingsModel.HOOKS_SETTINGS + VcsSettingsModel.HG_SETTINGS) | |
1124 |
|
1138 | |||
1125 | vcs_settings = [] |
|
1139 | vcs_settings = [] | |
1126 | try: |
|
1140 | try: | |
1127 | for section, key in ui_settings: |
|
1141 | for section, key in ui_settings: | |
1128 | ui = settings.get_ui_by_section_and_key(section, key) |
|
1142 | ui = settings.get_ui_by_section_and_key(section, key) | |
1129 | if ui: |
|
1143 | if ui: | |
1130 | vcs_settings.append(ui) |
|
1144 | vcs_settings.append(ui) | |
1131 | vcs_settings.extend(settings.get_ui_by_section( |
|
1145 | vcs_settings.extend(settings.get_ui_by_section( | |
1132 | VcsSettingsModel.SVN_BRANCH_SECTION)) |
|
1146 | VcsSettingsModel.SVN_BRANCH_SECTION)) | |
1133 | vcs_settings.extend(settings.get_ui_by_section( |
|
1147 | vcs_settings.extend(settings.get_ui_by_section( | |
1134 | VcsSettingsModel.SVN_TAG_SECTION)) |
|
1148 | VcsSettingsModel.SVN_TAG_SECTION)) | |
1135 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
1149 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
1136 | setting = settings.get_setting_by_name(name) |
|
1150 | setting = settings.get_setting_by_name(name) | |
1137 | if setting: |
|
1151 | if setting: | |
1138 | vcs_settings.append(setting) |
|
1152 | vcs_settings.append(setting) | |
1139 | assert vcs_settings == [] |
|
1153 | assert vcs_settings == [] | |
1140 | finally: |
|
1154 | finally: | |
1141 | self._cleanup_repo_settings(settings) |
|
1155 | self._cleanup_repo_settings(settings) | |
1142 |
|
1156 | |||
1143 | def test_delete_svn_branch_and_tag_patterns( |
|
1157 | def test_delete_svn_branch_and_tag_patterns( | |
1144 | self, autologin_user, backend_svn, settings_util, csrf_token): |
|
1158 | self, autologin_user, backend_svn, settings_util, csrf_token): | |
1145 | repo = backend_svn.create_repo() |
|
1159 | repo = backend_svn.create_repo() | |
1146 | repo_name = repo.repo_name |
|
1160 | repo_name = repo.repo_name | |
1147 | branch = settings_util.create_repo_rhodecode_ui( |
|
1161 | branch = settings_util.create_repo_rhodecode_ui( | |
1148 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, 'test_branch', |
|
1162 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, 'test_branch', | |
1149 | cleanup=False) |
|
1163 | cleanup=False) | |
1150 | tag = settings_util.create_repo_rhodecode_ui( |
|
1164 | tag = settings_util.create_repo_rhodecode_ui( | |
1151 | repo, VcsSettingsModel.SVN_TAG_SECTION, 'test_tag', cleanup=False) |
|
1165 | repo, VcsSettingsModel.SVN_TAG_SECTION, 'test_tag', cleanup=False) | |
1152 | data = { |
|
1166 | data = { | |
1153 | '_method': 'delete', |
|
1167 | '_method': 'delete', | |
1154 | 'csrf_token': csrf_token |
|
1168 | 'csrf_token': csrf_token | |
1155 | } |
|
1169 | } | |
1156 | for id_ in (branch.ui_id, tag.ui_id): |
|
1170 | for id_ in (branch.ui_id, tag.ui_id): | |
1157 | data['delete_svn_pattern'] = id_, |
|
1171 | data['delete_svn_pattern'] = id_, | |
1158 | self.app.post( |
|
1172 | self.app.post( | |
1159 | url('repo_vcs_settings', repo_name=repo_name), data, |
|
1173 | url('repo_vcs_settings', repo_name=repo_name), data, | |
1160 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=200) |
|
1174 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=200) | |
1161 | settings = VcsSettingsModel(repo=repo_name) |
|
1175 | settings = VcsSettingsModel(repo=repo_name) | |
1162 | assert settings.get_repo_svn_branch_patterns() == [] |
|
1176 | assert settings.get_repo_svn_branch_patterns() == [] | |
1163 |
|
1177 | |||
1164 | def test_delete_svn_branch_requires_repo_admin_permission( |
|
1178 | def test_delete_svn_branch_requires_repo_admin_permission( | |
1165 | self, backend_svn, user_util, settings_util, csrf_token): |
|
1179 | self, backend_svn, user_util, settings_util, csrf_token): | |
1166 | repo = backend_svn.create_repo() |
|
1180 | repo = backend_svn.create_repo() | |
1167 | repo_name = repo.repo_name |
|
1181 | repo_name = repo.repo_name | |
1168 | user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN) |
|
1182 | user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN) | |
1169 | logout_user_session(self.app, csrf_token) |
|
1183 | logout_user_session(self.app, csrf_token) | |
1170 | session = login_user_session( |
|
1184 | session = login_user_session( | |
1171 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
1185 | self.app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
1172 | csrf_token = auth.get_csrf_token(session) |
|
1186 | csrf_token = auth.get_csrf_token(session) | |
1173 | user_util.grant_user_permission_to_repo(repo, user, 'repository.admin') |
|
1187 | user_util.grant_user_permission_to_repo(repo, user, 'repository.admin') | |
1174 | branch = settings_util.create_repo_rhodecode_ui( |
|
1188 | branch = settings_util.create_repo_rhodecode_ui( | |
1175 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, 'test_branch', |
|
1189 | repo, VcsSettingsModel.SVN_BRANCH_SECTION, 'test_branch', | |
1176 | cleanup=False) |
|
1190 | cleanup=False) | |
1177 | data = { |
|
1191 | data = { | |
1178 | '_method': 'delete', |
|
1192 | '_method': 'delete', | |
1179 | 'csrf_token': csrf_token, |
|
1193 | 'csrf_token': csrf_token, | |
1180 | 'delete_svn_pattern': branch.ui_id |
|
1194 | 'delete_svn_pattern': branch.ui_id | |
1181 | } |
|
1195 | } | |
1182 | self.app.post( |
|
1196 | self.app.post( | |
1183 | url('repo_vcs_settings', repo_name=repo_name), data, |
|
1197 | url('repo_vcs_settings', repo_name=repo_name), data, | |
1184 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=200) |
|
1198 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=200) | |
1185 |
|
1199 | |||
1186 | def test_delete_svn_branch_raises_400_when_not_found( |
|
1200 | def test_delete_svn_branch_raises_400_when_not_found( | |
1187 | self, autologin_user, backend_svn, settings_util, csrf_token): |
|
1201 | self, autologin_user, backend_svn, settings_util, csrf_token): | |
1188 | repo_name = backend_svn.repo_name |
|
1202 | repo_name = backend_svn.repo_name | |
1189 | data = { |
|
1203 | data = { | |
1190 | '_method': 'delete', |
|
1204 | '_method': 'delete', | |
1191 | 'delete_svn_pattern': 123, |
|
1205 | 'delete_svn_pattern': 123, | |
1192 | 'csrf_token': csrf_token |
|
1206 | 'csrf_token': csrf_token | |
1193 | } |
|
1207 | } | |
1194 | self.app.post( |
|
1208 | self.app.post( | |
1195 | url('repo_vcs_settings', repo_name=repo_name), data, |
|
1209 | url('repo_vcs_settings', repo_name=repo_name), data, | |
1196 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=400) |
|
1210 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=400) | |
1197 |
|
1211 | |||
1198 | def test_delete_svn_branch_raises_400_when_no_id_specified( |
|
1212 | def test_delete_svn_branch_raises_400_when_no_id_specified( | |
1199 | self, autologin_user, backend_svn, settings_util, csrf_token): |
|
1213 | self, autologin_user, backend_svn, settings_util, csrf_token): | |
1200 | repo_name = backend_svn.repo_name |
|
1214 | repo_name = backend_svn.repo_name | |
1201 | data = { |
|
1215 | data = { | |
1202 | '_method': 'delete', |
|
1216 | '_method': 'delete', | |
1203 | 'csrf_token': csrf_token |
|
1217 | 'csrf_token': csrf_token | |
1204 | } |
|
1218 | } | |
1205 | self.app.post( |
|
1219 | self.app.post( | |
1206 | url('repo_vcs_settings', repo_name=repo_name), data, |
|
1220 | url('repo_vcs_settings', repo_name=repo_name), data, | |
1207 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=400) |
|
1221 | headers={'X-REQUESTED-WITH': 'XMLHttpRequest', }, status=400) | |
1208 |
|
1222 | |||
1209 | def _cleanup_repo_settings(self, settings_model): |
|
1223 | def _cleanup_repo_settings(self, settings_model): | |
1210 | cleanup = [] |
|
1224 | cleanup = [] | |
1211 | ui_settings = ( |
|
1225 | ui_settings = ( | |
1212 | VcsSettingsModel.HOOKS_SETTINGS + VcsSettingsModel.HG_SETTINGS) |
|
1226 | VcsSettingsModel.HOOKS_SETTINGS + VcsSettingsModel.HG_SETTINGS) | |
1213 |
|
1227 | |||
1214 | for section, key in ui_settings: |
|
1228 | for section, key in ui_settings: | |
1215 | ui = settings_model.get_ui_by_section_and_key(section, key) |
|
1229 | ui = settings_model.get_ui_by_section_and_key(section, key) | |
1216 | if ui: |
|
1230 | if ui: | |
1217 | cleanup.append(ui) |
|
1231 | cleanup.append(ui) | |
1218 |
|
1232 | |||
1219 | cleanup.extend(settings_model.get_ui_by_section( |
|
1233 | cleanup.extend(settings_model.get_ui_by_section( | |
1220 | VcsSettingsModel.INHERIT_SETTINGS)) |
|
1234 | VcsSettingsModel.INHERIT_SETTINGS)) | |
1221 | cleanup.extend(settings_model.get_ui_by_section( |
|
1235 | cleanup.extend(settings_model.get_ui_by_section( | |
1222 | VcsSettingsModel.SVN_BRANCH_SECTION)) |
|
1236 | VcsSettingsModel.SVN_BRANCH_SECTION)) | |
1223 | cleanup.extend(settings_model.get_ui_by_section( |
|
1237 | cleanup.extend(settings_model.get_ui_by_section( | |
1224 | VcsSettingsModel.SVN_TAG_SECTION)) |
|
1238 | VcsSettingsModel.SVN_TAG_SECTION)) | |
1225 |
|
1239 | |||
1226 | for name in VcsSettingsModel.GENERAL_SETTINGS: |
|
1240 | for name in VcsSettingsModel.GENERAL_SETTINGS: | |
1227 | setting = settings_model.get_setting_by_name(name) |
|
1241 | setting = settings_model.get_setting_by_name(name) | |
1228 | if setting: |
|
1242 | if setting: | |
1229 | cleanup.append(setting) |
|
1243 | cleanup.append(setting) | |
1230 |
|
1244 | |||
1231 | for object_ in cleanup: |
|
1245 | for object_ in cleanup: | |
1232 | Session().delete(object_) |
|
1246 | Session().delete(object_) | |
1233 | Session().commit() |
|
1247 | Session().commit() | |
1234 |
|
1248 | |||
1235 | def assert_repo_value_equals_global_value(self, response, setting): |
|
1249 | def assert_repo_value_equals_global_value(self, response, setting): | |
1236 | assert_response = AssertResponse(response) |
|
1250 | assert_response = AssertResponse(response) | |
1237 | global_css_selector = '[name={}_inherited]'.format(setting) |
|
1251 | global_css_selector = '[name={}_inherited]'.format(setting) | |
1238 | repo_css_selector = '[name={}]'.format(setting) |
|
1252 | repo_css_selector = '[name={}]'.format(setting) | |
1239 | repo_element = assert_response.get_element(repo_css_selector) |
|
1253 | repo_element = assert_response.get_element(repo_css_selector) | |
1240 | global_element = assert_response.get_element(global_css_selector) |
|
1254 | global_element = assert_response.get_element(global_css_selector) | |
1241 | assert repo_element.value == global_element.value |
|
1255 | assert repo_element.value == global_element.value | |
1242 |
|
1256 | |||
1243 |
|
1257 | |||
1244 | def _get_permission_for_user(user, repo): |
|
1258 | def _get_permission_for_user(user, repo): | |
1245 | perm = UserRepoToPerm.query()\ |
|
1259 | perm = UserRepoToPerm.query()\ | |
1246 | .filter(UserRepoToPerm.repository == |
|
1260 | .filter(UserRepoToPerm.repository == | |
1247 | Repository.get_by_repo_name(repo))\ |
|
1261 | Repository.get_by_repo_name(repo))\ | |
1248 | .filter(UserRepoToPerm.user == User.get_by_username(user))\ |
|
1262 | .filter(UserRepoToPerm.user == User.get_by_username(user))\ | |
1249 | .all() |
|
1263 | .all() | |
1250 | return perm |
|
1264 | return perm |
General Comments 0
You need to be logged in to leave comments.
Login now