Show More
@@ -1,504 +1,512 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2016-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | from rhodecode.apps._base import add_route_with_slash |
|
21 | 21 | |
|
22 | 22 | |
|
23 | 23 | def includeme(config): |
|
24 | 24 | |
|
25 | 25 | # repo creating checks, special cases that aren't repo routes |
|
26 | 26 | config.add_route( |
|
27 | 27 | name='repo_creating', |
|
28 | 28 | pattern='/{repo_name:.*?[^/]}/repo_creating') |
|
29 | 29 | |
|
30 | 30 | config.add_route( |
|
31 | 31 | name='repo_creating_check', |
|
32 | 32 | pattern='/{repo_name:.*?[^/]}/repo_creating_check') |
|
33 | 33 | |
|
34 | 34 | # Summary |
|
35 | 35 | # NOTE(marcink): one additional route is defined in very bottom, catch |
|
36 | 36 | # all pattern |
|
37 | 37 | config.add_route( |
|
38 | 38 | name='repo_summary_explicit', |
|
39 | 39 | pattern='/{repo_name:.*?[^/]}/summary', repo_route=True) |
|
40 | 40 | config.add_route( |
|
41 | 41 | name='repo_summary_commits', |
|
42 | 42 | pattern='/{repo_name:.*?[^/]}/summary-commits', repo_route=True) |
|
43 | 43 | |
|
44 | 44 | # Commits |
|
45 | 45 | config.add_route( |
|
46 | 46 | name='repo_commit', |
|
47 | 47 | pattern='/{repo_name:.*?[^/]}/changeset/{commit_id}', repo_route=True) |
|
48 | 48 | |
|
49 | 49 | config.add_route( |
|
50 | 50 | name='repo_commit_children', |
|
51 | 51 | pattern='/{repo_name:.*?[^/]}/changeset_children/{commit_id}', repo_route=True) |
|
52 | 52 | |
|
53 | 53 | config.add_route( |
|
54 | 54 | name='repo_commit_parents', |
|
55 | 55 | pattern='/{repo_name:.*?[^/]}/changeset_parents/{commit_id}', repo_route=True) |
|
56 | 56 | |
|
57 | 57 | config.add_route( |
|
58 | 58 | name='repo_commit_raw', |
|
59 | 59 | pattern='/{repo_name:.*?[^/]}/changeset-diff/{commit_id}', repo_route=True) |
|
60 | 60 | |
|
61 | 61 | config.add_route( |
|
62 | 62 | name='repo_commit_patch', |
|
63 | 63 | pattern='/{repo_name:.*?[^/]}/changeset-patch/{commit_id}', repo_route=True) |
|
64 | 64 | |
|
65 | 65 | config.add_route( |
|
66 | 66 | name='repo_commit_download', |
|
67 | 67 | pattern='/{repo_name:.*?[^/]}/changeset-download/{commit_id}', repo_route=True) |
|
68 | 68 | |
|
69 | 69 | config.add_route( |
|
70 | 70 | name='repo_commit_data', |
|
71 | 71 | pattern='/{repo_name:.*?[^/]}/changeset-data/{commit_id}', repo_route=True) |
|
72 | 72 | |
|
73 | 73 | config.add_route( |
|
74 | 74 | name='repo_commit_comment_create', |
|
75 | 75 | pattern='/{repo_name:.*?[^/]}/changeset/{commit_id}/comment/create', repo_route=True) |
|
76 | 76 | |
|
77 | 77 | config.add_route( |
|
78 | 78 | name='repo_commit_comment_preview', |
|
79 | 79 | pattern='/{repo_name:.*?[^/]}/changeset/{commit_id}/comment/preview', repo_route=True) |
|
80 | 80 | |
|
81 | 81 | config.add_route( |
|
82 | 82 | name='repo_commit_comment_delete', |
|
83 | 83 | pattern='/{repo_name:.*?[^/]}/changeset/{commit_id}/comment/{comment_id}/delete', repo_route=True) |
|
84 | 84 | |
|
85 | 85 | # still working url for backward compat. |
|
86 | 86 | config.add_route( |
|
87 | 87 | name='repo_commit_raw_deprecated', |
|
88 | 88 | pattern='/{repo_name:.*?[^/]}/raw-changeset/{commit_id}', repo_route=True) |
|
89 | 89 | |
|
90 | 90 | # Files |
|
91 | 91 | config.add_route( |
|
92 | 92 | name='repo_archivefile', |
|
93 | 93 | pattern='/{repo_name:.*?[^/]}/archive/{fname:.*}', repo_route=True) |
|
94 | 94 | |
|
95 | 95 | config.add_route( |
|
96 | 96 | name='repo_files_diff', |
|
97 | 97 | pattern='/{repo_name:.*?[^/]}/diff/{f_path:.*}', repo_route=True) |
|
98 | 98 | config.add_route( # legacy route to make old links work |
|
99 | 99 | name='repo_files_diff_2way_redirect', |
|
100 | 100 | pattern='/{repo_name:.*?[^/]}/diff-2way/{f_path:.*}', repo_route=True) |
|
101 | 101 | |
|
102 | 102 | config.add_route( |
|
103 | 103 | name='repo_files', |
|
104 | 104 | pattern='/{repo_name:.*?[^/]}/files/{commit_id}/{f_path:.*}', repo_route=True) |
|
105 | 105 | config.add_route( |
|
106 | 106 | name='repo_files:default_path', |
|
107 | 107 | pattern='/{repo_name:.*?[^/]}/files/{commit_id}/', repo_route=True) |
|
108 | 108 | config.add_route( |
|
109 | 109 | name='repo_files:default_commit', |
|
110 | 110 | pattern='/{repo_name:.*?[^/]}/files', repo_route=True) |
|
111 | 111 | |
|
112 | 112 | config.add_route( |
|
113 | 113 | name='repo_files:rendered', |
|
114 | 114 | pattern='/{repo_name:.*?[^/]}/render/{commit_id}/{f_path:.*}', repo_route=True) |
|
115 | 115 | |
|
116 | 116 | config.add_route( |
|
117 | 117 | name='repo_files:annotated', |
|
118 | 118 | pattern='/{repo_name:.*?[^/]}/annotate/{commit_id}/{f_path:.*}', repo_route=True) |
|
119 | 119 | config.add_route( |
|
120 | 120 | name='repo_files:annotated_previous', |
|
121 | 121 | pattern='/{repo_name:.*?[^/]}/annotate-previous/{commit_id}/{f_path:.*}', repo_route=True) |
|
122 | 122 | |
|
123 | 123 | config.add_route( |
|
124 | 124 | name='repo_nodetree_full', |
|
125 | 125 | pattern='/{repo_name:.*?[^/]}/nodetree_full/{commit_id}/{f_path:.*}', repo_route=True) |
|
126 | 126 | config.add_route( |
|
127 | 127 | name='repo_nodetree_full:default_path', |
|
128 | 128 | pattern='/{repo_name:.*?[^/]}/nodetree_full/{commit_id}/', repo_route=True) |
|
129 | 129 | |
|
130 | 130 | config.add_route( |
|
131 | 131 | name='repo_files_nodelist', |
|
132 | 132 | pattern='/{repo_name:.*?[^/]}/nodelist/{commit_id}/{f_path:.*}', repo_route=True) |
|
133 | 133 | |
|
134 | 134 | config.add_route( |
|
135 | 135 | name='repo_file_raw', |
|
136 | 136 | pattern='/{repo_name:.*?[^/]}/raw/{commit_id}/{f_path:.*}', repo_route=True) |
|
137 | 137 | |
|
138 | 138 | config.add_route( |
|
139 | 139 | name='repo_file_download', |
|
140 | 140 | pattern='/{repo_name:.*?[^/]}/download/{commit_id}/{f_path:.*}', repo_route=True) |
|
141 | 141 | config.add_route( # backward compat to keep old links working |
|
142 | 142 | name='repo_file_download:legacy', |
|
143 | 143 | pattern='/{repo_name:.*?[^/]}/rawfile/{commit_id}/{f_path:.*}', |
|
144 | 144 | repo_route=True) |
|
145 | 145 | |
|
146 | 146 | config.add_route( |
|
147 | 147 | name='repo_file_history', |
|
148 | 148 | pattern='/{repo_name:.*?[^/]}/history/{commit_id}/{f_path:.*}', repo_route=True) |
|
149 | 149 | |
|
150 | 150 | config.add_route( |
|
151 | 151 | name='repo_file_authors', |
|
152 | 152 | pattern='/{repo_name:.*?[^/]}/authors/{commit_id}/{f_path:.*}', repo_route=True) |
|
153 | 153 | |
|
154 | 154 | config.add_route( |
|
155 | 155 | name='repo_files_remove_file', |
|
156 | 156 | pattern='/{repo_name:.*?[^/]}/remove_file/{commit_id}/{f_path:.*}', |
|
157 | 157 | repo_route=True) |
|
158 | 158 | config.add_route( |
|
159 | 159 | name='repo_files_delete_file', |
|
160 | 160 | pattern='/{repo_name:.*?[^/]}/delete_file/{commit_id}/{f_path:.*}', |
|
161 | 161 | repo_route=True) |
|
162 | 162 | config.add_route( |
|
163 | 163 | name='repo_files_edit_file', |
|
164 | 164 | pattern='/{repo_name:.*?[^/]}/edit_file/{commit_id}/{f_path:.*}', |
|
165 | 165 | repo_route=True) |
|
166 | 166 | config.add_route( |
|
167 | 167 | name='repo_files_update_file', |
|
168 | 168 | pattern='/{repo_name:.*?[^/]}/update_file/{commit_id}/{f_path:.*}', |
|
169 | 169 | repo_route=True) |
|
170 | 170 | config.add_route( |
|
171 | 171 | name='repo_files_add_file', |
|
172 | 172 | pattern='/{repo_name:.*?[^/]}/add_file/{commit_id}/{f_path:.*}', |
|
173 | 173 | repo_route=True) |
|
174 | 174 | config.add_route( |
|
175 | 175 | name='repo_files_upload_file', |
|
176 | 176 | pattern='/{repo_name:.*?[^/]}/upload_file/{commit_id}/{f_path:.*}', |
|
177 | 177 | repo_route=True) |
|
178 | 178 | config.add_route( |
|
179 | 179 | name='repo_files_create_file', |
|
180 | 180 | pattern='/{repo_name:.*?[^/]}/create_file/{commit_id}/{f_path:.*}', |
|
181 | 181 | repo_route=True) |
|
182 | 182 | |
|
183 | 183 | # Refs data |
|
184 | 184 | config.add_route( |
|
185 | 185 | name='repo_refs_data', |
|
186 | 186 | pattern='/{repo_name:.*?[^/]}/refs-data', repo_route=True) |
|
187 | 187 | |
|
188 | 188 | config.add_route( |
|
189 | 189 | name='repo_refs_changelog_data', |
|
190 | 190 | pattern='/{repo_name:.*?[^/]}/refs-data-changelog', repo_route=True) |
|
191 | 191 | |
|
192 | 192 | config.add_route( |
|
193 | 193 | name='repo_stats', |
|
194 | 194 | pattern='/{repo_name:.*?[^/]}/repo_stats/{commit_id}', repo_route=True) |
|
195 | 195 | |
|
196 | 196 | # Commits |
|
197 | 197 | config.add_route( |
|
198 | 198 | name='repo_commits', |
|
199 | 199 | pattern='/{repo_name:.*?[^/]}/commits', repo_route=True) |
|
200 | 200 | config.add_route( |
|
201 | 201 | name='repo_commits_file', |
|
202 | 202 | pattern='/{repo_name:.*?[^/]}/commits/{commit_id}/{f_path:.*}', repo_route=True) |
|
203 | 203 | config.add_route( |
|
204 | 204 | name='repo_commits_elements', |
|
205 | 205 | pattern='/{repo_name:.*?[^/]}/commits_elements', repo_route=True) |
|
206 | 206 | config.add_route( |
|
207 | 207 | name='repo_commits_elements_file', |
|
208 | 208 | pattern='/{repo_name:.*?[^/]}/commits_elements/{commit_id}/{f_path:.*}', repo_route=True) |
|
209 | 209 | |
|
210 | 210 | # Changelog (old deprecated name for commits page) |
|
211 | 211 | config.add_route( |
|
212 | 212 | name='repo_changelog', |
|
213 | 213 | pattern='/{repo_name:.*?[^/]}/changelog', repo_route=True) |
|
214 | 214 | config.add_route( |
|
215 | 215 | name='repo_changelog_file', |
|
216 | 216 | pattern='/{repo_name:.*?[^/]}/changelog/{commit_id}/{f_path:.*}', repo_route=True) |
|
217 | 217 | |
|
218 | 218 | # Compare |
|
219 | 219 | config.add_route( |
|
220 | 220 | name='repo_compare_select', |
|
221 | 221 | pattern='/{repo_name:.*?[^/]}/compare', repo_route=True) |
|
222 | 222 | |
|
223 | 223 | config.add_route( |
|
224 | 224 | name='repo_compare', |
|
225 | 225 | pattern='/{repo_name:.*?[^/]}/compare/{source_ref_type}@{source_ref:.*?}...{target_ref_type}@{target_ref:.*?}', repo_route=True) |
|
226 | 226 | |
|
227 | 227 | # Tags |
|
228 | 228 | config.add_route( |
|
229 | 229 | name='tags_home', |
|
230 | 230 | pattern='/{repo_name:.*?[^/]}/tags', repo_route=True) |
|
231 | 231 | |
|
232 | 232 | # Branches |
|
233 | 233 | config.add_route( |
|
234 | 234 | name='branches_home', |
|
235 | 235 | pattern='/{repo_name:.*?[^/]}/branches', repo_route=True) |
|
236 | 236 | |
|
237 | 237 | # Bookmarks |
|
238 | 238 | config.add_route( |
|
239 | 239 | name='bookmarks_home', |
|
240 | 240 | pattern='/{repo_name:.*?[^/]}/bookmarks', repo_route=True) |
|
241 | 241 | |
|
242 | 242 | # Forks |
|
243 | 243 | config.add_route( |
|
244 | 244 | name='repo_fork_new', |
|
245 | 245 | pattern='/{repo_name:.*?[^/]}/fork', repo_route=True, |
|
246 | 246 | repo_forbid_when_archived=True, |
|
247 | 247 | repo_accepted_types=['hg', 'git']) |
|
248 | 248 | |
|
249 | 249 | config.add_route( |
|
250 | 250 | name='repo_fork_create', |
|
251 | 251 | pattern='/{repo_name:.*?[^/]}/fork/create', repo_route=True, |
|
252 | 252 | repo_forbid_when_archived=True, |
|
253 | 253 | repo_accepted_types=['hg', 'git']) |
|
254 | 254 | |
|
255 | 255 | config.add_route( |
|
256 | 256 | name='repo_forks_show_all', |
|
257 | 257 | pattern='/{repo_name:.*?[^/]}/forks', repo_route=True, |
|
258 | 258 | repo_accepted_types=['hg', 'git']) |
|
259 | 259 | config.add_route( |
|
260 | 260 | name='repo_forks_data', |
|
261 | 261 | pattern='/{repo_name:.*?[^/]}/forks/data', repo_route=True, |
|
262 | 262 | repo_accepted_types=['hg', 'git']) |
|
263 | 263 | |
|
264 | 264 | # Pull Requests |
|
265 | 265 | config.add_route( |
|
266 | 266 | name='pullrequest_show', |
|
267 | 267 | pattern='/{repo_name:.*?[^/]}/pull-request/{pull_request_id:\d+}', |
|
268 | 268 | repo_route=True) |
|
269 | 269 | |
|
270 | 270 | config.add_route( |
|
271 | 271 | name='pullrequest_show_all', |
|
272 | 272 | pattern='/{repo_name:.*?[^/]}/pull-request', |
|
273 | 273 | repo_route=True, repo_accepted_types=['hg', 'git']) |
|
274 | 274 | |
|
275 | 275 | config.add_route( |
|
276 | 276 | name='pullrequest_show_all_data', |
|
277 | 277 | pattern='/{repo_name:.*?[^/]}/pull-request-data', |
|
278 | 278 | repo_route=True, repo_accepted_types=['hg', 'git']) |
|
279 | 279 | |
|
280 | 280 | config.add_route( |
|
281 | 281 | name='pullrequest_repo_refs', |
|
282 | 282 | pattern='/{repo_name:.*?[^/]}/pull-request/refs/{target_repo_name:.*?[^/]}', |
|
283 | 283 | repo_route=True) |
|
284 | 284 | |
|
285 | 285 | config.add_route( |
|
286 | 286 | name='pullrequest_repo_targets', |
|
287 | 287 | pattern='/{repo_name:.*?[^/]}/pull-request/repo-targets', |
|
288 | 288 | repo_route=True) |
|
289 | 289 | |
|
290 | 290 | config.add_route( |
|
291 | 291 | name='pullrequest_new', |
|
292 | 292 | pattern='/{repo_name:.*?[^/]}/pull-request/new', |
|
293 | 293 | repo_route=True, repo_accepted_types=['hg', 'git'], |
|
294 | 294 | repo_forbid_when_archived=True) |
|
295 | 295 | |
|
296 | 296 | config.add_route( |
|
297 | 297 | name='pullrequest_create', |
|
298 | 298 | pattern='/{repo_name:.*?[^/]}/pull-request/create', |
|
299 | 299 | repo_route=True, repo_accepted_types=['hg', 'git'], |
|
300 | 300 | repo_forbid_when_archived=True) |
|
301 | 301 | |
|
302 | 302 | config.add_route( |
|
303 | 303 | name='pullrequest_update', |
|
304 | 304 | pattern='/{repo_name:.*?[^/]}/pull-request/{pull_request_id:\d+}/update', |
|
305 | 305 | repo_route=True, repo_forbid_when_archived=True) |
|
306 | 306 | |
|
307 | 307 | config.add_route( |
|
308 | 308 | name='pullrequest_merge', |
|
309 | 309 | pattern='/{repo_name:.*?[^/]}/pull-request/{pull_request_id:\d+}/merge', |
|
310 | 310 | repo_route=True, repo_forbid_when_archived=True) |
|
311 | 311 | |
|
312 | 312 | config.add_route( |
|
313 | 313 | name='pullrequest_delete', |
|
314 | 314 | pattern='/{repo_name:.*?[^/]}/pull-request/{pull_request_id:\d+}/delete', |
|
315 | 315 | repo_route=True, repo_forbid_when_archived=True) |
|
316 | 316 | |
|
317 | 317 | config.add_route( |
|
318 | 318 | name='pullrequest_comment_create', |
|
319 | 319 | pattern='/{repo_name:.*?[^/]}/pull-request/{pull_request_id:\d+}/comment', |
|
320 | 320 | repo_route=True) |
|
321 | 321 | |
|
322 | 322 | config.add_route( |
|
323 | 323 | name='pullrequest_comment_delete', |
|
324 | 324 | pattern='/{repo_name:.*?[^/]}/pull-request/{pull_request_id:\d+}/comment/{comment_id}/delete', |
|
325 | 325 | repo_route=True, repo_accepted_types=['hg', 'git']) |
|
326 | 326 | |
|
327 | 327 | # Artifacts, (EE feature) |
|
328 | 328 | config.add_route( |
|
329 | 329 | name='repo_artifacts_list', |
|
330 | 330 | pattern='/{repo_name:.*?[^/]}/artifacts', repo_route=True) |
|
331 | 331 | |
|
332 | 332 | # Settings |
|
333 | 333 | config.add_route( |
|
334 | 334 | name='edit_repo', |
|
335 | 335 | pattern='/{repo_name:.*?[^/]}/settings', repo_route=True) |
|
336 | 336 | # update is POST on edit_repo |
|
337 | 337 | |
|
338 | 338 | # Settings advanced |
|
339 | 339 | config.add_route( |
|
340 | 340 | name='edit_repo_advanced', |
|
341 | 341 | pattern='/{repo_name:.*?[^/]}/settings/advanced', repo_route=True) |
|
342 | 342 | config.add_route( |
|
343 | 343 | name='edit_repo_advanced_archive', |
|
344 | 344 | pattern='/{repo_name:.*?[^/]}/settings/advanced/archive', repo_route=True) |
|
345 | 345 | config.add_route( |
|
346 | 346 | name='edit_repo_advanced_delete', |
|
347 | 347 | pattern='/{repo_name:.*?[^/]}/settings/advanced/delete', repo_route=True) |
|
348 | 348 | config.add_route( |
|
349 | 349 | name='edit_repo_advanced_locking', |
|
350 | 350 | pattern='/{repo_name:.*?[^/]}/settings/advanced/locking', repo_route=True) |
|
351 | 351 | config.add_route( |
|
352 | 352 | name='edit_repo_advanced_journal', |
|
353 | 353 | pattern='/{repo_name:.*?[^/]}/settings/advanced/journal', repo_route=True) |
|
354 | 354 | config.add_route( |
|
355 | 355 | name='edit_repo_advanced_fork', |
|
356 | 356 | pattern='/{repo_name:.*?[^/]}/settings/advanced/fork', repo_route=True) |
|
357 | 357 | |
|
358 | 358 | config.add_route( |
|
359 | 359 | name='edit_repo_advanced_hooks', |
|
360 | 360 | pattern='/{repo_name:.*?[^/]}/settings/advanced/hooks', repo_route=True) |
|
361 | 361 | |
|
362 | 362 | # Caches |
|
363 | 363 | config.add_route( |
|
364 | 364 | name='edit_repo_caches', |
|
365 | 365 | pattern='/{repo_name:.*?[^/]}/settings/caches', repo_route=True) |
|
366 | 366 | |
|
367 | 367 | # Permissions |
|
368 | 368 | config.add_route( |
|
369 | 369 | name='edit_repo_perms', |
|
370 | 370 | pattern='/{repo_name:.*?[^/]}/settings/permissions', repo_route=True) |
|
371 | 371 | |
|
372 | 372 | config.add_route( |
|
373 | 373 | name='edit_repo_perms_set_private', |
|
374 | 374 | pattern='/{repo_name:.*?[^/]}/settings/permissions/set_private', repo_route=True) |
|
375 | 375 | |
|
376 | 376 | # Permissions Branch (EE feature) |
|
377 | 377 | config.add_route( |
|
378 | 378 | name='edit_repo_perms_branch', |
|
379 | 379 | pattern='/{repo_name:.*?[^/]}/settings/branch_permissions', repo_route=True) |
|
380 | 380 | config.add_route( |
|
381 | 381 | name='edit_repo_perms_branch_delete', |
|
382 | 382 | pattern='/{repo_name:.*?[^/]}/settings/branch_permissions/{rule_id}/delete', |
|
383 | 383 | repo_route=True) |
|
384 | 384 | |
|
385 | 385 | # Maintenance |
|
386 | 386 | config.add_route( |
|
387 | 387 | name='edit_repo_maintenance', |
|
388 | 388 | pattern='/{repo_name:.*?[^/]}/settings/maintenance', repo_route=True) |
|
389 | 389 | |
|
390 | 390 | config.add_route( |
|
391 | 391 | name='edit_repo_maintenance_execute', |
|
392 | 392 | pattern='/{repo_name:.*?[^/]}/settings/maintenance/execute', repo_route=True) |
|
393 | 393 | |
|
394 | 394 | # Fields |
|
395 | 395 | config.add_route( |
|
396 | 396 | name='edit_repo_fields', |
|
397 | 397 | pattern='/{repo_name:.*?[^/]}/settings/fields', repo_route=True) |
|
398 | 398 | config.add_route( |
|
399 | 399 | name='edit_repo_fields_create', |
|
400 | 400 | pattern='/{repo_name:.*?[^/]}/settings/fields/create', repo_route=True) |
|
401 | 401 | config.add_route( |
|
402 | 402 | name='edit_repo_fields_delete', |
|
403 | 403 | pattern='/{repo_name:.*?[^/]}/settings/fields/{field_id}/delete', repo_route=True) |
|
404 | 404 | |
|
405 | 405 | # Locking |
|
406 | 406 | config.add_route( |
|
407 | 407 | name='repo_edit_toggle_locking', |
|
408 | 408 | pattern='/{repo_name:.*?[^/]}/settings/toggle_locking', repo_route=True) |
|
409 | 409 | |
|
410 | 410 | # Remote |
|
411 | 411 | config.add_route( |
|
412 | 412 | name='edit_repo_remote', |
|
413 | 413 | pattern='/{repo_name:.*?[^/]}/settings/remote', repo_route=True) |
|
414 | 414 | config.add_route( |
|
415 | 415 | name='edit_repo_remote_pull', |
|
416 | 416 | pattern='/{repo_name:.*?[^/]}/settings/remote/pull', repo_route=True) |
|
417 | 417 | config.add_route( |
|
418 | 418 | name='edit_repo_remote_push', |
|
419 | 419 | pattern='/{repo_name:.*?[^/]}/settings/remote/push', repo_route=True) |
|
420 | 420 | |
|
421 | 421 | # Statistics |
|
422 | 422 | config.add_route( |
|
423 | 423 | name='edit_repo_statistics', |
|
424 | 424 | pattern='/{repo_name:.*?[^/]}/settings/statistics', repo_route=True) |
|
425 | 425 | config.add_route( |
|
426 | 426 | name='edit_repo_statistics_reset', |
|
427 | 427 | pattern='/{repo_name:.*?[^/]}/settings/statistics/update', repo_route=True) |
|
428 | 428 | |
|
429 | 429 | # Issue trackers |
|
430 | 430 | config.add_route( |
|
431 | 431 | name='edit_repo_issuetracker', |
|
432 | 432 | pattern='/{repo_name:.*?[^/]}/settings/issue_trackers', repo_route=True) |
|
433 | 433 | config.add_route( |
|
434 | 434 | name='edit_repo_issuetracker_test', |
|
435 | 435 | pattern='/{repo_name:.*?[^/]}/settings/issue_trackers/test', repo_route=True) |
|
436 | 436 | config.add_route( |
|
437 | 437 | name='edit_repo_issuetracker_delete', |
|
438 | 438 | pattern='/{repo_name:.*?[^/]}/settings/issue_trackers/delete', repo_route=True) |
|
439 | 439 | config.add_route( |
|
440 | 440 | name='edit_repo_issuetracker_update', |
|
441 | 441 | pattern='/{repo_name:.*?[^/]}/settings/issue_trackers/update', repo_route=True) |
|
442 | 442 | |
|
443 | 443 | # VCS Settings |
|
444 | 444 | config.add_route( |
|
445 | 445 | name='edit_repo_vcs', |
|
446 | 446 | pattern='/{repo_name:.*?[^/]}/settings/vcs', repo_route=True) |
|
447 | 447 | config.add_route( |
|
448 | 448 | name='edit_repo_vcs_update', |
|
449 | 449 | pattern='/{repo_name:.*?[^/]}/settings/vcs/update', repo_route=True) |
|
450 | 450 | |
|
451 | 451 | # svn pattern |
|
452 | 452 | config.add_route( |
|
453 | 453 | name='edit_repo_vcs_svn_pattern_delete', |
|
454 | 454 | pattern='/{repo_name:.*?[^/]}/settings/vcs/svn_pattern/delete', repo_route=True) |
|
455 | 455 | |
|
456 | 456 | # Repo Review Rules (EE feature) |
|
457 | 457 | config.add_route( |
|
458 | 458 | name='repo_reviewers', |
|
459 | 459 | pattern='/{repo_name:.*?[^/]}/settings/review/rules', repo_route=True) |
|
460 | 460 | |
|
461 | 461 | config.add_route( |
|
462 | 462 | name='repo_default_reviewers_data', |
|
463 | 463 | pattern='/{repo_name:.*?[^/]}/settings/review/default-reviewers', repo_route=True) |
|
464 | 464 | |
|
465 | 465 | # Repo Automation (EE feature) |
|
466 | 466 | config.add_route( |
|
467 | 467 | name='repo_automation', |
|
468 | 468 | pattern='/{repo_name:.*?[^/]}/settings/automation', repo_route=True) |
|
469 | 469 | |
|
470 | 470 | # Strip |
|
471 | 471 | config.add_route( |
|
472 | 472 | name='edit_repo_strip', |
|
473 | 473 | pattern='/{repo_name:.*?[^/]}/settings/strip', repo_route=True) |
|
474 | 474 | |
|
475 | 475 | config.add_route( |
|
476 | 476 | name='strip_check', |
|
477 | 477 | pattern='/{repo_name:.*?[^/]}/settings/strip_check', repo_route=True) |
|
478 | 478 | |
|
479 | 479 | config.add_route( |
|
480 | 480 | name='strip_execute', |
|
481 | 481 | pattern='/{repo_name:.*?[^/]}/settings/strip_execute', repo_route=True) |
|
482 | 482 | |
|
483 | 483 | # Audit logs |
|
484 | 484 | config.add_route( |
|
485 | 485 | name='edit_repo_audit_logs', |
|
486 | 486 | pattern='/{repo_name:.*?[^/]}/settings/audit_logs', repo_route=True) |
|
487 | 487 | |
|
488 | # ATOM/RSS Feed | |
|
488 | # ATOM/RSS Feed, shouldn't contain slashes for outlook compatibility | |
|
489 | 489 | config.add_route( |
|
490 | 490 | name='rss_feed_home', |
|
491 | pattern='/{repo_name:.*?[^/]}/feed-rss', repo_route=True) | |
|
492 | ||
|
493 | config.add_route( | |
|
494 | name='atom_feed_home', | |
|
495 | pattern='/{repo_name:.*?[^/]}/feed-atom', repo_route=True) | |
|
496 | ||
|
497 | config.add_route( | |
|
498 | name='rss_feed_home_old', | |
|
491 | 499 | pattern='/{repo_name:.*?[^/]}/feed/rss', repo_route=True) |
|
492 | 500 | |
|
493 | 501 | config.add_route( |
|
494 | name='atom_feed_home', | |
|
502 | name='atom_feed_home_old', | |
|
495 | 503 | pattern='/{repo_name:.*?[^/]}/feed/atom', repo_route=True) |
|
496 | 504 | |
|
497 | 505 | # NOTE(marcink): needs to be at the end for catch-all |
|
498 | 506 | add_route_with_slash( |
|
499 | 507 | config, |
|
500 | 508 | name='repo_summary', |
|
501 | 509 | pattern='/{repo_name:.*?[^/]}', repo_route=True) |
|
502 | 510 | |
|
503 | 511 | # Scan module for configuration decorators. |
|
504 | 512 | config.scan('.views', ignore='.tests') |
@@ -1,99 +1,137 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | import pytest |
|
22 | 22 | from rhodecode.model.auth_token import AuthTokenModel |
|
23 | 23 | from rhodecode.tests import TestController |
|
24 | 24 | |
|
25 | 25 | |
|
26 | 26 | def route_path(name, params=None, **kwargs): |
|
27 | 27 | import urllib |
|
28 | 28 | |
|
29 | 29 | base_url = { |
|
30 |
'rss_feed_home': '/{repo_name}/feed |
|
|
31 |
'atom_feed_home': '/{repo_name}/feed |
|
|
30 | 'rss_feed_home': '/{repo_name}/feed-rss', | |
|
31 | 'atom_feed_home': '/{repo_name}/feed-atom', | |
|
32 | 'rss_feed_home_old': '/{repo_name}/feed/rss', | |
|
33 | 'atom_feed_home_old': '/{repo_name}/feed/atom', | |
|
32 | 34 | }[name].format(**kwargs) |
|
33 | 35 | |
|
34 | 36 | if params: |
|
35 | 37 | base_url = '{}?{}'.format(base_url, urllib.urlencode(params)) |
|
36 | 38 | return base_url |
|
37 | 39 | |
|
38 | 40 | |
|
39 | 41 | class TestFeedView(TestController): |
|
40 | 42 | |
|
41 | 43 | @pytest.mark.parametrize("feed_type,response_types,content_type",[ |
|
42 | 44 | ('rss', ['<rss version="2.0">'], |
|
43 | 45 | "application/rss+xml"), |
|
44 | 46 | ('atom', ['xmlns="http://www.w3.org/2005/Atom"', 'xml:lang="en-us"'], |
|
45 | 47 | "application/atom+xml"), |
|
46 | 48 | ]) |
|
47 | 49 | def test_feed(self, backend, feed_type, response_types, content_type): |
|
48 | 50 | self.log_user() |
|
49 | 51 | response = self.app.get( |
|
50 | 52 | route_path('{}_feed_home'.format(feed_type), |
|
51 | 53 | repo_name=backend.repo_name)) |
|
52 | 54 | |
|
53 | 55 | for content in response_types: |
|
54 | 56 | response.mustcontain(content) |
|
55 | 57 | |
|
56 | 58 | assert response.content_type == content_type |
|
57 | 59 | |
|
58 | 60 | @pytest.mark.parametrize("feed_type, content_type", [ |
|
59 | 61 | ('rss', "application/rss+xml"), |
|
60 | 62 | ('atom', "application/atom+xml") |
|
61 | 63 | ]) |
|
62 | 64 | def test_feed_with_auth_token( |
|
63 | 65 | self, backend, user_admin, feed_type, content_type): |
|
64 | 66 | auth_token = user_admin.feed_token |
|
65 | 67 | assert auth_token != '' |
|
66 | 68 | |
|
67 | 69 | response = self.app.get( |
|
68 | 70 | route_path( |
|
69 | 71 | '{}_feed_home'.format(feed_type), |
|
70 | 72 | repo_name=backend.repo_name, |
|
71 | 73 | params=dict(auth_token=auth_token)), |
|
72 | 74 | status=200) |
|
73 | 75 | |
|
74 | 76 | assert response.content_type == content_type |
|
75 | 77 | |
|
78 | @pytest.mark.parametrize("feed_type, content_type", [ | |
|
79 | ('rss', "application/rss+xml"), | |
|
80 | ('atom', "application/atom+xml") | |
|
81 | ]) | |
|
82 | def test_feed_with_auth_token_by_uid( | |
|
83 | self, backend, user_admin, feed_type, content_type): | |
|
84 | auth_token = user_admin.feed_token | |
|
85 | assert auth_token != '' | |
|
86 | ||
|
87 | response = self.app.get( | |
|
88 | route_path( | |
|
89 | '{}_feed_home'.format(feed_type), | |
|
90 | repo_name='_{}'.format(backend.repo.repo_id), | |
|
91 | params=dict(auth_token=auth_token)), | |
|
92 | status=200) | |
|
93 | ||
|
94 | assert response.content_type == content_type | |
|
95 | ||
|
96 | @pytest.mark.parametrize("feed_type, content_type", [ | |
|
97 | ('rss', "application/rss+xml"), | |
|
98 | ('atom', "application/atom+xml") | |
|
99 | ]) | |
|
100 | def test_feed_old_urls_with_auth_token( | |
|
101 | self, backend, user_admin, feed_type, content_type): | |
|
102 | auth_token = user_admin.feed_token | |
|
103 | assert auth_token != '' | |
|
104 | ||
|
105 | response = self.app.get( | |
|
106 | route_path( | |
|
107 | '{}_feed_home_old'.format(feed_type), | |
|
108 | repo_name=backend.repo_name, | |
|
109 | params=dict(auth_token=auth_token)), | |
|
110 | status=200) | |
|
111 | ||
|
112 | assert response.content_type == content_type | |
|
113 | ||
|
76 | 114 | @pytest.mark.parametrize("feed_type", ['rss', 'atom']) |
|
77 | 115 | def test_feed_with_auth_token_of_wrong_type( |
|
78 | 116 | self, backend, user_util, feed_type): |
|
79 | 117 | user = user_util.create_user() |
|
80 | 118 | auth_token = AuthTokenModel().create( |
|
81 | 119 | user.user_id, 'test-token', -1, AuthTokenModel.cls.ROLE_API) |
|
82 | 120 | auth_token = auth_token.api_key |
|
83 | 121 | |
|
84 | 122 | self.app.get( |
|
85 | 123 | route_path( |
|
86 | 124 | '{}_feed_home'.format(feed_type), |
|
87 | 125 | repo_name=backend.repo_name, |
|
88 | 126 | params=dict(auth_token=auth_token)), |
|
89 | 127 | status=302) |
|
90 | 128 | |
|
91 | 129 | auth_token = AuthTokenModel().create( |
|
92 | 130 | user.user_id, 'test-token', -1, AuthTokenModel.cls.ROLE_FEED) |
|
93 | 131 | auth_token = auth_token.api_key |
|
94 | 132 | self.app.get( |
|
95 | 133 | route_path( |
|
96 | 134 | '{}_feed_home'.format(feed_type), |
|
97 | 135 | repo_name=backend.repo_name, |
|
98 | 136 | params=dict(auth_token=auth_token)), |
|
99 | 137 | status=200) |
@@ -1,238 +1,242 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2017-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | import pytz |
|
21 | 21 | import logging |
|
22 | 22 | |
|
23 | 23 | from pyramid.view import view_config |
|
24 | 24 | from pyramid.response import Response |
|
25 | 25 | from webhelpers.feedgenerator import Rss201rev2Feed, Atom1Feed |
|
26 | 26 | |
|
27 | 27 | from rhodecode.apps._base import RepoAppView |
|
28 | 28 | from rhodecode.lib import audit_logger |
|
29 | 29 | from rhodecode.lib import rc_cache |
|
30 | 30 | from rhodecode.lib import helpers as h |
|
31 | 31 | from rhodecode.lib.auth import ( |
|
32 | 32 | LoginRequired, HasRepoPermissionAnyDecorator) |
|
33 | 33 | from rhodecode.lib.diffs import DiffProcessor, LimitedDiffContainer |
|
34 | 34 | from rhodecode.lib.utils2 import str2bool, safe_int, md5_safe |
|
35 | 35 | from rhodecode.model.db import UserApiKeys, CacheKey |
|
36 | 36 | |
|
37 | 37 | log = logging.getLogger(__name__) |
|
38 | 38 | |
|
39 | 39 | |
|
40 | 40 | class RepoFeedView(RepoAppView): |
|
41 | 41 | def load_default_context(self): |
|
42 | 42 | c = self._get_local_tmpl_context() |
|
43 | ||
|
44 | ||
|
45 | 43 | self._load_defaults() |
|
46 | 44 | return c |
|
47 | 45 | |
|
48 | 46 | def _get_config(self): |
|
49 | 47 | import rhodecode |
|
50 | 48 | config = rhodecode.CONFIG |
|
51 | 49 | |
|
52 | 50 | return { |
|
53 | 51 | 'language': 'en-us', |
|
54 | 52 | 'feed_ttl': '5', # TTL of feed, |
|
55 | 53 | 'feed_include_diff': |
|
56 | 54 | str2bool(config.get('rss_include_diff', False)), |
|
57 | 55 | 'feed_items_per_page': |
|
58 | 56 | safe_int(config.get('rss_items_per_page', 20)), |
|
59 | 57 | 'feed_diff_limit': |
|
60 | 58 | # we need to protect from parsing huge diffs here other way |
|
61 | 59 | # we can kill the server |
|
62 | 60 | safe_int(config.get('rss_cut_off_limit', 32 * 1024)), |
|
63 | 61 | } |
|
64 | 62 | |
|
65 | 63 | def _load_defaults(self): |
|
66 | 64 | _ = self.request.translate |
|
67 | 65 | config = self._get_config() |
|
68 | 66 | # common values for feeds |
|
69 | 67 | self.description = _('Changes on %s repository') |
|
70 | 68 | self.title = self.title = _('%s %s feed') % (self.db_repo_name, '%s') |
|
71 | 69 | self.language = config["language"] |
|
72 | 70 | self.ttl = config["feed_ttl"] |
|
73 | 71 | self.feed_include_diff = config['feed_include_diff'] |
|
74 | 72 | self.feed_diff_limit = config['feed_diff_limit'] |
|
75 | 73 | self.feed_items_per_page = config['feed_items_per_page'] |
|
76 | 74 | |
|
77 | 75 | def _changes(self, commit): |
|
78 | 76 | diff_processor = DiffProcessor( |
|
79 | 77 | commit.diff(), diff_limit=self.feed_diff_limit) |
|
80 | 78 | _parsed = diff_processor.prepare(inline_diff=False) |
|
81 | 79 | limited_diff = isinstance(_parsed, LimitedDiffContainer) |
|
82 | 80 | |
|
83 | 81 | return diff_processor, _parsed, limited_diff |
|
84 | 82 | |
|
85 | 83 | def _get_title(self, commit): |
|
86 | 84 | return h.shorter(commit.message, 160) |
|
87 | 85 | |
|
88 | 86 | def _get_description(self, commit): |
|
89 | 87 | _renderer = self.request.get_partial_renderer( |
|
90 | 88 | 'rhodecode:templates/feed/atom_feed_entry.mako') |
|
91 | 89 | diff_processor, parsed_diff, limited_diff = self._changes(commit) |
|
92 | 90 | filtered_parsed_diff, has_hidden_changes = self.path_filter.filter_patchset(parsed_diff) |
|
93 | 91 | return _renderer( |
|
94 | 92 | 'body', |
|
95 | 93 | commit=commit, |
|
96 | 94 | parsed_diff=filtered_parsed_diff, |
|
97 | 95 | limited_diff=limited_diff, |
|
98 | 96 | feed_include_diff=self.feed_include_diff, |
|
99 | 97 | diff_processor=diff_processor, |
|
100 | 98 | has_hidden_changes=has_hidden_changes |
|
101 | 99 | ) |
|
102 | 100 | |
|
103 | 101 | def _set_timezone(self, date, tzinfo=pytz.utc): |
|
104 | 102 | if not getattr(date, "tzinfo", None): |
|
105 | 103 | date.replace(tzinfo=tzinfo) |
|
106 | 104 | return date |
|
107 | 105 | |
|
108 | 106 | def _get_commits(self): |
|
109 | 107 | return list(self.rhodecode_vcs_repo[-self.feed_items_per_page:]) |
|
110 | 108 | |
|
111 | 109 | def uid(self, repo_id, commit_id): |
|
112 | 110 | return '{}:{}'.format(md5_safe(repo_id), md5_safe(commit_id)) |
|
113 | 111 | |
|
114 | 112 | @LoginRequired(auth_token_access=[UserApiKeys.ROLE_FEED]) |
|
115 | 113 | @HasRepoPermissionAnyDecorator( |
|
116 | 114 | 'repository.read', 'repository.write', 'repository.admin') |
|
117 | 115 | @view_config( |
|
118 | 116 | route_name='atom_feed_home', request_method='GET', |
|
119 | 117 | renderer=None) |
|
118 | @view_config( | |
|
119 | route_name='atom_feed_home_old', request_method='GET', | |
|
120 | renderer=None) | |
|
120 | 121 | def atom(self): |
|
121 | 122 | """ |
|
122 | 123 | Produce an atom-1.0 feed via feedgenerator module |
|
123 | 124 | """ |
|
124 | 125 | self.load_default_context() |
|
125 | 126 | |
|
126 | 127 | cache_namespace_uid = 'cache_repo_instance.{}_{}'.format( |
|
127 | 128 | self.db_repo.repo_id, CacheKey.CACHE_TYPE_FEED) |
|
128 | 129 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
129 | 130 | repo_id=self.db_repo.repo_id) |
|
130 | 131 | |
|
131 | 132 | region = rc_cache.get_or_create_region('cache_repo_longterm', |
|
132 | 133 | cache_namespace_uid) |
|
133 | 134 | |
|
134 | 135 | condition = not self.path_filter.is_enabled |
|
135 | 136 | |
|
136 | 137 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid, |
|
137 | 138 | condition=condition) |
|
138 | 139 | def generate_atom_feed(repo_id, _repo_name, _feed_type): |
|
139 | 140 | feed = Atom1Feed( |
|
140 | 141 | title=self.title % _repo_name, |
|
141 | 142 | link=h.route_url('repo_summary', repo_name=_repo_name), |
|
142 | 143 | description=self.description % _repo_name, |
|
143 | 144 | language=self.language, |
|
144 | 145 | ttl=self.ttl |
|
145 | 146 | ) |
|
146 | 147 | |
|
147 | 148 | for commit in reversed(self._get_commits()): |
|
148 | 149 | date = self._set_timezone(commit.date) |
|
149 | 150 | feed.add_item( |
|
150 | 151 | unique_id=self.uid(repo_id, commit.raw_id), |
|
151 | 152 | title=self._get_title(commit), |
|
152 | 153 | author_name=commit.author, |
|
153 | 154 | description=self._get_description(commit), |
|
154 | 155 | link=h.route_url( |
|
155 | 156 | 'repo_commit', repo_name=_repo_name, |
|
156 | 157 | commit_id=commit.raw_id), |
|
157 | 158 | pubdate=date,) |
|
158 | 159 | |
|
159 | 160 | return feed.mime_type, feed.writeString('utf-8') |
|
160 | 161 | |
|
161 | 162 | inv_context_manager = rc_cache.InvalidationContext( |
|
162 | 163 | uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace) |
|
163 | 164 | with inv_context_manager as invalidation_context: |
|
164 | 165 | args = (self.db_repo.repo_id, self.db_repo.repo_name, 'atom',) |
|
165 | 166 | # re-compute and store cache if we get invalidate signal |
|
166 | 167 | if invalidation_context.should_invalidate(): |
|
167 | 168 | mime_type, feed = generate_atom_feed.refresh(*args) |
|
168 | 169 | else: |
|
169 | 170 | mime_type, feed = generate_atom_feed(*args) |
|
170 | 171 | |
|
171 | 172 | log.debug('Repo ATOM feed computed in %.3fs', |
|
172 | 173 | inv_context_manager.compute_time) |
|
173 | 174 | |
|
174 | 175 | response = Response(feed) |
|
175 | 176 | response.content_type = mime_type |
|
176 | 177 | return response |
|
177 | 178 | |
|
178 | 179 | @LoginRequired(auth_token_access=[UserApiKeys.ROLE_FEED]) |
|
179 | 180 | @HasRepoPermissionAnyDecorator( |
|
180 | 181 | 'repository.read', 'repository.write', 'repository.admin') |
|
181 | 182 | @view_config( |
|
182 | 183 | route_name='rss_feed_home', request_method='GET', |
|
183 | 184 | renderer=None) |
|
185 | @view_config( | |
|
186 | route_name='rss_feed_home_old', request_method='GET', | |
|
187 | renderer=None) | |
|
184 | 188 | def rss(self): |
|
185 | 189 | """ |
|
186 | 190 | Produce an rss2 feed via feedgenerator module |
|
187 | 191 | """ |
|
188 | 192 | self.load_default_context() |
|
189 | 193 | |
|
190 | 194 | cache_namespace_uid = 'cache_repo_instance.{}_{}'.format( |
|
191 | 195 | self.db_repo.repo_id, CacheKey.CACHE_TYPE_FEED) |
|
192 | 196 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
193 | 197 | repo_id=self.db_repo.repo_id) |
|
194 | 198 | region = rc_cache.get_or_create_region('cache_repo_longterm', |
|
195 | 199 | cache_namespace_uid) |
|
196 | 200 | |
|
197 | 201 | condition = not self.path_filter.is_enabled |
|
198 | 202 | |
|
199 | 203 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid, |
|
200 | 204 | condition=condition) |
|
201 | 205 | def generate_rss_feed(repo_id, _repo_name, _feed_type): |
|
202 | 206 | feed = Rss201rev2Feed( |
|
203 | 207 | title=self.title % _repo_name, |
|
204 | 208 | link=h.route_url('repo_summary', repo_name=_repo_name), |
|
205 | 209 | description=self.description % _repo_name, |
|
206 | 210 | language=self.language, |
|
207 | 211 | ttl=self.ttl |
|
208 | 212 | ) |
|
209 | 213 | |
|
210 | 214 | for commit in reversed(self._get_commits()): |
|
211 | 215 | date = self._set_timezone(commit.date) |
|
212 | 216 | feed.add_item( |
|
213 | 217 | unique_id=self.uid(repo_id, commit.raw_id), |
|
214 | 218 | title=self._get_title(commit), |
|
215 | 219 | author_name=commit.author, |
|
216 | 220 | description=self._get_description(commit), |
|
217 | 221 | link=h.route_url( |
|
218 | 222 | 'repo_commit', repo_name=_repo_name, |
|
219 | 223 | commit_id=commit.raw_id), |
|
220 | 224 | pubdate=date,) |
|
221 | 225 | |
|
222 | 226 | return feed.mime_type, feed.writeString('utf-8') |
|
223 | 227 | |
|
224 | 228 | inv_context_manager = rc_cache.InvalidationContext( |
|
225 | 229 | uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace) |
|
226 | 230 | with inv_context_manager as invalidation_context: |
|
227 | 231 | args = (self.db_repo.repo_id, self.db_repo.repo_name, 'rss',) |
|
228 | 232 | # re-compute and store cache if we get invalidate signal |
|
229 | 233 | if invalidation_context.should_invalidate(): |
|
230 | 234 | mime_type, feed = generate_rss_feed.refresh(*args) |
|
231 | 235 | else: |
|
232 | 236 | mime_type, feed = generate_rss_feed(*args) |
|
233 | 237 | log.debug( |
|
234 | 238 | 'Repo RSS feed computed in %.3fs', inv_context_manager.compute_time) |
|
235 | 239 | |
|
236 | 240 | response = Response(feed) |
|
237 | 241 | response.content_type = mime_type |
|
238 | 242 | return response |
@@ -1,5157 +1,5161 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | """ |
|
22 | 22 | Database Models for RhodeCode Enterprise |
|
23 | 23 | """ |
|
24 | 24 | |
|
25 | 25 | import re |
|
26 | 26 | import os |
|
27 | 27 | import time |
|
28 | 28 | import string |
|
29 | 29 | import hashlib |
|
30 | 30 | import logging |
|
31 | 31 | import datetime |
|
32 | 32 | import warnings |
|
33 | 33 | import ipaddress |
|
34 | 34 | import functools |
|
35 | 35 | import traceback |
|
36 | 36 | import collections |
|
37 | 37 | |
|
38 | 38 | from sqlalchemy import ( |
|
39 | 39 | or_, and_, not_, func, TypeDecorator, event, |
|
40 | 40 | Index, Sequence, UniqueConstraint, ForeignKey, CheckConstraint, Column, |
|
41 | 41 | Boolean, String, Unicode, UnicodeText, DateTime, Integer, LargeBinary, |
|
42 | 42 | Text, Float, PickleType) |
|
43 | 43 | from sqlalchemy.sql.expression import true, false, case |
|
44 | 44 | from sqlalchemy.sql.functions import coalesce, count # pragma: no cover |
|
45 | 45 | from sqlalchemy.orm import ( |
|
46 | 46 | relationship, joinedload, class_mapper, validates, aliased) |
|
47 | 47 | from sqlalchemy.ext.declarative import declared_attr |
|
48 | 48 | from sqlalchemy.ext.hybrid import hybrid_property |
|
49 | 49 | from sqlalchemy.exc import IntegrityError # pragma: no cover |
|
50 | 50 | from sqlalchemy.dialects.mysql import LONGTEXT |
|
51 | 51 | from zope.cachedescriptors.property import Lazy as LazyProperty |
|
52 | 52 | from pyramid import compat |
|
53 | 53 | from pyramid.threadlocal import get_current_request |
|
54 | 54 | from webhelpers.text import collapse, remove_formatting |
|
55 | 55 | |
|
56 | 56 | from rhodecode.translation import _ |
|
57 | 57 | from rhodecode.lib.vcs import get_vcs_instance |
|
58 | 58 | from rhodecode.lib.vcs.backends.base import EmptyCommit, Reference |
|
59 | 59 | from rhodecode.lib.utils2 import ( |
|
60 | 60 | str2bool, safe_str, get_commit_safe, safe_unicode, sha1_safe, |
|
61 | 61 | time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict, |
|
62 | 62 | glob2re, StrictAttributeDict, cleaned_uri, datetime_to_time, OrderedDefaultDict) |
|
63 | 63 | from rhodecode.lib.jsonalchemy import MutationObj, MutationList, JsonType, \ |
|
64 | 64 | JsonRaw |
|
65 | 65 | from rhodecode.lib.ext_json import json |
|
66 | 66 | from rhodecode.lib.caching_query import FromCache |
|
67 | 67 | from rhodecode.lib.encrypt import AESCipher, validate_and_get_enc_data |
|
68 | 68 | from rhodecode.lib.encrypt2 import Encryptor |
|
69 | 69 | from rhodecode.model.meta import Base, Session |
|
70 | 70 | |
|
71 | 71 | URL_SEP = '/' |
|
72 | 72 | log = logging.getLogger(__name__) |
|
73 | 73 | |
|
74 | 74 | # ============================================================================= |
|
75 | 75 | # BASE CLASSES |
|
76 | 76 | # ============================================================================= |
|
77 | 77 | |
|
78 | 78 | # this is propagated from .ini file rhodecode.encrypted_values.secret or |
|
79 | 79 | # beaker.session.secret if first is not set. |
|
80 | 80 | # and initialized at environment.py |
|
81 | 81 | ENCRYPTION_KEY = None |
|
82 | 82 | |
|
83 | 83 | # used to sort permissions by types, '#' used here is not allowed to be in |
|
84 | 84 | # usernames, and it's very early in sorted string.printable table. |
|
85 | 85 | PERMISSION_TYPE_SORT = { |
|
86 | 86 | 'admin': '####', |
|
87 | 87 | 'write': '###', |
|
88 | 88 | 'read': '##', |
|
89 | 89 | 'none': '#', |
|
90 | 90 | } |
|
91 | 91 | |
|
92 | 92 | |
|
93 | 93 | def display_user_sort(obj): |
|
94 | 94 | """ |
|
95 | 95 | Sort function used to sort permissions in .permissions() function of |
|
96 | 96 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
97 | 97 | of all other resources |
|
98 | 98 | """ |
|
99 | 99 | |
|
100 | 100 | if obj.username == User.DEFAULT_USER: |
|
101 | 101 | return '#####' |
|
102 | 102 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
103 | 103 | return prefix + obj.username |
|
104 | 104 | |
|
105 | 105 | |
|
106 | 106 | def display_user_group_sort(obj): |
|
107 | 107 | """ |
|
108 | 108 | Sort function used to sort permissions in .permissions() function of |
|
109 | 109 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
110 | 110 | of all other resources |
|
111 | 111 | """ |
|
112 | 112 | |
|
113 | 113 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
114 | 114 | return prefix + obj.users_group_name |
|
115 | 115 | |
|
116 | 116 | |
|
117 | 117 | def _hash_key(k): |
|
118 | 118 | return sha1_safe(k) |
|
119 | 119 | |
|
120 | 120 | |
|
121 | 121 | def in_filter_generator(qry, items, limit=500): |
|
122 | 122 | """ |
|
123 | 123 | Splits IN() into multiple with OR |
|
124 | 124 | e.g.:: |
|
125 | 125 | cnt = Repository.query().filter( |
|
126 | 126 | or_( |
|
127 | 127 | *in_filter_generator(Repository.repo_id, range(100000)) |
|
128 | 128 | )).count() |
|
129 | 129 | """ |
|
130 | 130 | if not items: |
|
131 | 131 | # empty list will cause empty query which might cause security issues |
|
132 | 132 | # this can lead to hidden unpleasant results |
|
133 | 133 | items = [-1] |
|
134 | 134 | |
|
135 | 135 | parts = [] |
|
136 | 136 | for chunk in xrange(0, len(items), limit): |
|
137 | 137 | parts.append( |
|
138 | 138 | qry.in_(items[chunk: chunk + limit]) |
|
139 | 139 | ) |
|
140 | 140 | |
|
141 | 141 | return parts |
|
142 | 142 | |
|
143 | 143 | |
|
144 | 144 | base_table_args = { |
|
145 | 145 | 'extend_existing': True, |
|
146 | 146 | 'mysql_engine': 'InnoDB', |
|
147 | 147 | 'mysql_charset': 'utf8', |
|
148 | 148 | 'sqlite_autoincrement': True |
|
149 | 149 | } |
|
150 | 150 | |
|
151 | 151 | |
|
152 | 152 | class EncryptedTextValue(TypeDecorator): |
|
153 | 153 | """ |
|
154 | 154 | Special column for encrypted long text data, use like:: |
|
155 | 155 | |
|
156 | 156 | value = Column("encrypted_value", EncryptedValue(), nullable=False) |
|
157 | 157 | |
|
158 | 158 | This column is intelligent so if value is in unencrypted form it return |
|
159 | 159 | unencrypted form, but on save it always encrypts |
|
160 | 160 | """ |
|
161 | 161 | impl = Text |
|
162 | 162 | |
|
163 | 163 | def process_bind_param(self, value, dialect): |
|
164 | 164 | """ |
|
165 | 165 | Setter for storing value |
|
166 | 166 | """ |
|
167 | 167 | import rhodecode |
|
168 | 168 | if not value: |
|
169 | 169 | return value |
|
170 | 170 | |
|
171 | 171 | # protect against double encrypting if values is already encrypted |
|
172 | 172 | if value.startswith('enc$aes$') \ |
|
173 | 173 | or value.startswith('enc$aes_hmac$') \ |
|
174 | 174 | or value.startswith('enc2$'): |
|
175 | 175 | raise ValueError('value needs to be in unencrypted format, ' |
|
176 | 176 | 'ie. not starting with enc$ or enc2$') |
|
177 | 177 | |
|
178 | 178 | algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes' |
|
179 | 179 | if algo == 'aes': |
|
180 | 180 | return 'enc$aes_hmac$%s' % AESCipher(ENCRYPTION_KEY, hmac=True).encrypt(value) |
|
181 | 181 | elif algo == 'fernet': |
|
182 | 182 | return Encryptor(ENCRYPTION_KEY).encrypt(value) |
|
183 | 183 | else: |
|
184 | 184 | ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo)) |
|
185 | 185 | |
|
186 | 186 | def process_result_value(self, value, dialect): |
|
187 | 187 | """ |
|
188 | 188 | Getter for retrieving value |
|
189 | 189 | """ |
|
190 | 190 | |
|
191 | 191 | import rhodecode |
|
192 | 192 | if not value: |
|
193 | 193 | return value |
|
194 | 194 | |
|
195 | 195 | algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes' |
|
196 | 196 | enc_strict_mode = str2bool(rhodecode.CONFIG.get('rhodecode.encrypted_values.strict') or True) |
|
197 | 197 | if algo == 'aes': |
|
198 | 198 | decrypted_data = validate_and_get_enc_data(value, ENCRYPTION_KEY, enc_strict_mode) |
|
199 | 199 | elif algo == 'fernet': |
|
200 | 200 | return Encryptor(ENCRYPTION_KEY).decrypt(value) |
|
201 | 201 | else: |
|
202 | 202 | ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo)) |
|
203 | 203 | return decrypted_data |
|
204 | 204 | |
|
205 | 205 | |
|
206 | 206 | class BaseModel(object): |
|
207 | 207 | """ |
|
208 | 208 | Base Model for all classes |
|
209 | 209 | """ |
|
210 | 210 | |
|
211 | 211 | @classmethod |
|
212 | 212 | def _get_keys(cls): |
|
213 | 213 | """return column names for this model """ |
|
214 | 214 | return class_mapper(cls).c.keys() |
|
215 | 215 | |
|
216 | 216 | def get_dict(self): |
|
217 | 217 | """ |
|
218 | 218 | return dict with keys and values corresponding |
|
219 | 219 | to this model data """ |
|
220 | 220 | |
|
221 | 221 | d = {} |
|
222 | 222 | for k in self._get_keys(): |
|
223 | 223 | d[k] = getattr(self, k) |
|
224 | 224 | |
|
225 | 225 | # also use __json__() if present to get additional fields |
|
226 | 226 | _json_attr = getattr(self, '__json__', None) |
|
227 | 227 | if _json_attr: |
|
228 | 228 | # update with attributes from __json__ |
|
229 | 229 | if callable(_json_attr): |
|
230 | 230 | _json_attr = _json_attr() |
|
231 | 231 | for k, val in _json_attr.iteritems(): |
|
232 | 232 | d[k] = val |
|
233 | 233 | return d |
|
234 | 234 | |
|
235 | 235 | def get_appstruct(self): |
|
236 | 236 | """return list with keys and values tuples corresponding |
|
237 | 237 | to this model data """ |
|
238 | 238 | |
|
239 | 239 | lst = [] |
|
240 | 240 | for k in self._get_keys(): |
|
241 | 241 | lst.append((k, getattr(self, k),)) |
|
242 | 242 | return lst |
|
243 | 243 | |
|
244 | 244 | def populate_obj(self, populate_dict): |
|
245 | 245 | """populate model with data from given populate_dict""" |
|
246 | 246 | |
|
247 | 247 | for k in self._get_keys(): |
|
248 | 248 | if k in populate_dict: |
|
249 | 249 | setattr(self, k, populate_dict[k]) |
|
250 | 250 | |
|
251 | 251 | @classmethod |
|
252 | 252 | def query(cls): |
|
253 | 253 | return Session().query(cls) |
|
254 | 254 | |
|
255 | 255 | @classmethod |
|
256 | 256 | def get(cls, id_): |
|
257 | 257 | if id_: |
|
258 | 258 | return cls.query().get(id_) |
|
259 | 259 | |
|
260 | 260 | @classmethod |
|
261 | 261 | def get_or_404(cls, id_): |
|
262 | 262 | from pyramid.httpexceptions import HTTPNotFound |
|
263 | 263 | |
|
264 | 264 | try: |
|
265 | 265 | id_ = int(id_) |
|
266 | 266 | except (TypeError, ValueError): |
|
267 | 267 | raise HTTPNotFound() |
|
268 | 268 | |
|
269 | 269 | res = cls.query().get(id_) |
|
270 | 270 | if not res: |
|
271 | 271 | raise HTTPNotFound() |
|
272 | 272 | return res |
|
273 | 273 | |
|
274 | 274 | @classmethod |
|
275 | 275 | def getAll(cls): |
|
276 | 276 | # deprecated and left for backward compatibility |
|
277 | 277 | return cls.get_all() |
|
278 | 278 | |
|
279 | 279 | @classmethod |
|
280 | 280 | def get_all(cls): |
|
281 | 281 | return cls.query().all() |
|
282 | 282 | |
|
283 | 283 | @classmethod |
|
284 | 284 | def delete(cls, id_): |
|
285 | 285 | obj = cls.query().get(id_) |
|
286 | 286 | Session().delete(obj) |
|
287 | 287 | |
|
288 | 288 | @classmethod |
|
289 | 289 | def identity_cache(cls, session, attr_name, value): |
|
290 | 290 | exist_in_session = [] |
|
291 | 291 | for (item_cls, pkey), instance in session.identity_map.items(): |
|
292 | 292 | if cls == item_cls and getattr(instance, attr_name) == value: |
|
293 | 293 | exist_in_session.append(instance) |
|
294 | 294 | if exist_in_session: |
|
295 | 295 | if len(exist_in_session) == 1: |
|
296 | 296 | return exist_in_session[0] |
|
297 | 297 | log.exception( |
|
298 | 298 | 'multiple objects with attr %s and ' |
|
299 | 299 | 'value %s found with same name: %r', |
|
300 | 300 | attr_name, value, exist_in_session) |
|
301 | 301 | |
|
302 | 302 | def __repr__(self): |
|
303 | 303 | if hasattr(self, '__unicode__'): |
|
304 | 304 | # python repr needs to return str |
|
305 | 305 | try: |
|
306 | 306 | return safe_str(self.__unicode__()) |
|
307 | 307 | except UnicodeDecodeError: |
|
308 | 308 | pass |
|
309 | 309 | return '<DB:%s>' % (self.__class__.__name__) |
|
310 | 310 | |
|
311 | 311 | |
|
312 | 312 | class RhodeCodeSetting(Base, BaseModel): |
|
313 | 313 | __tablename__ = 'rhodecode_settings' |
|
314 | 314 | __table_args__ = ( |
|
315 | 315 | UniqueConstraint('app_settings_name'), |
|
316 | 316 | base_table_args |
|
317 | 317 | ) |
|
318 | 318 | |
|
319 | 319 | SETTINGS_TYPES = { |
|
320 | 320 | 'str': safe_str, |
|
321 | 321 | 'int': safe_int, |
|
322 | 322 | 'unicode': safe_unicode, |
|
323 | 323 | 'bool': str2bool, |
|
324 | 324 | 'list': functools.partial(aslist, sep=',') |
|
325 | 325 | } |
|
326 | 326 | DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' |
|
327 | 327 | GLOBAL_CONF_KEY = 'app_settings' |
|
328 | 328 | |
|
329 | 329 | app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
330 | 330 | app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None) |
|
331 | 331 | _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None) |
|
332 | 332 | _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None) |
|
333 | 333 | |
|
334 | 334 | def __init__(self, key='', val='', type='unicode'): |
|
335 | 335 | self.app_settings_name = key |
|
336 | 336 | self.app_settings_type = type |
|
337 | 337 | self.app_settings_value = val |
|
338 | 338 | |
|
339 | 339 | @validates('_app_settings_value') |
|
340 | 340 | def validate_settings_value(self, key, val): |
|
341 | 341 | assert type(val) == unicode |
|
342 | 342 | return val |
|
343 | 343 | |
|
344 | 344 | @hybrid_property |
|
345 | 345 | def app_settings_value(self): |
|
346 | 346 | v = self._app_settings_value |
|
347 | 347 | _type = self.app_settings_type |
|
348 | 348 | if _type: |
|
349 | 349 | _type = self.app_settings_type.split('.')[0] |
|
350 | 350 | # decode the encrypted value |
|
351 | 351 | if 'encrypted' in self.app_settings_type: |
|
352 | 352 | cipher = EncryptedTextValue() |
|
353 | 353 | v = safe_unicode(cipher.process_result_value(v, None)) |
|
354 | 354 | |
|
355 | 355 | converter = self.SETTINGS_TYPES.get(_type) or \ |
|
356 | 356 | self.SETTINGS_TYPES['unicode'] |
|
357 | 357 | return converter(v) |
|
358 | 358 | |
|
359 | 359 | @app_settings_value.setter |
|
360 | 360 | def app_settings_value(self, val): |
|
361 | 361 | """ |
|
362 | 362 | Setter that will always make sure we use unicode in app_settings_value |
|
363 | 363 | |
|
364 | 364 | :param val: |
|
365 | 365 | """ |
|
366 | 366 | val = safe_unicode(val) |
|
367 | 367 | # encode the encrypted value |
|
368 | 368 | if 'encrypted' in self.app_settings_type: |
|
369 | 369 | cipher = EncryptedTextValue() |
|
370 | 370 | val = safe_unicode(cipher.process_bind_param(val, None)) |
|
371 | 371 | self._app_settings_value = val |
|
372 | 372 | |
|
373 | 373 | @hybrid_property |
|
374 | 374 | def app_settings_type(self): |
|
375 | 375 | return self._app_settings_type |
|
376 | 376 | |
|
377 | 377 | @app_settings_type.setter |
|
378 | 378 | def app_settings_type(self, val): |
|
379 | 379 | if val.split('.')[0] not in self.SETTINGS_TYPES: |
|
380 | 380 | raise Exception('type must be one of %s got %s' |
|
381 | 381 | % (self.SETTINGS_TYPES.keys(), val)) |
|
382 | 382 | self._app_settings_type = val |
|
383 | 383 | |
|
384 | 384 | @classmethod |
|
385 | 385 | def get_by_prefix(cls, prefix): |
|
386 | 386 | return RhodeCodeSetting.query()\ |
|
387 | 387 | .filter(RhodeCodeSetting.app_settings_name.startswith(prefix))\ |
|
388 | 388 | .all() |
|
389 | 389 | |
|
390 | 390 | def __unicode__(self): |
|
391 | 391 | return u"<%s('%s:%s[%s]')>" % ( |
|
392 | 392 | self.__class__.__name__, |
|
393 | 393 | self.app_settings_name, self.app_settings_value, |
|
394 | 394 | self.app_settings_type |
|
395 | 395 | ) |
|
396 | 396 | |
|
397 | 397 | |
|
398 | 398 | class RhodeCodeUi(Base, BaseModel): |
|
399 | 399 | __tablename__ = 'rhodecode_ui' |
|
400 | 400 | __table_args__ = ( |
|
401 | 401 | UniqueConstraint('ui_key'), |
|
402 | 402 | base_table_args |
|
403 | 403 | ) |
|
404 | 404 | |
|
405 | 405 | HOOK_REPO_SIZE = 'changegroup.repo_size' |
|
406 | 406 | # HG |
|
407 | 407 | HOOK_PRE_PULL = 'preoutgoing.pre_pull' |
|
408 | 408 | HOOK_PULL = 'outgoing.pull_logger' |
|
409 | 409 | HOOK_PRE_PUSH = 'prechangegroup.pre_push' |
|
410 | 410 | HOOK_PRETX_PUSH = 'pretxnchangegroup.pre_push' |
|
411 | 411 | HOOK_PUSH = 'changegroup.push_logger' |
|
412 | 412 | HOOK_PUSH_KEY = 'pushkey.key_push' |
|
413 | 413 | |
|
414 | 414 | HOOKS_BUILTIN = [ |
|
415 | 415 | HOOK_PRE_PULL, |
|
416 | 416 | HOOK_PULL, |
|
417 | 417 | HOOK_PRE_PUSH, |
|
418 | 418 | HOOK_PRETX_PUSH, |
|
419 | 419 | HOOK_PUSH, |
|
420 | 420 | HOOK_PUSH_KEY, |
|
421 | 421 | ] |
|
422 | 422 | |
|
423 | 423 | # TODO: johbo: Unify way how hooks are configured for git and hg, |
|
424 | 424 | # git part is currently hardcoded. |
|
425 | 425 | |
|
426 | 426 | # SVN PATTERNS |
|
427 | 427 | SVN_BRANCH_ID = 'vcs_svn_branch' |
|
428 | 428 | SVN_TAG_ID = 'vcs_svn_tag' |
|
429 | 429 | |
|
430 | 430 | ui_id = Column( |
|
431 | 431 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
432 | 432 | primary_key=True) |
|
433 | 433 | ui_section = Column( |
|
434 | 434 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
435 | 435 | ui_key = Column( |
|
436 | 436 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
437 | 437 | ui_value = Column( |
|
438 | 438 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
439 | 439 | ui_active = Column( |
|
440 | 440 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
441 | 441 | |
|
442 | 442 | def __repr__(self): |
|
443 | 443 | return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section, |
|
444 | 444 | self.ui_key, self.ui_value) |
|
445 | 445 | |
|
446 | 446 | |
|
447 | 447 | class RepoRhodeCodeSetting(Base, BaseModel): |
|
448 | 448 | __tablename__ = 'repo_rhodecode_settings' |
|
449 | 449 | __table_args__ = ( |
|
450 | 450 | UniqueConstraint( |
|
451 | 451 | 'app_settings_name', 'repository_id', |
|
452 | 452 | name='uq_repo_rhodecode_setting_name_repo_id'), |
|
453 | 453 | base_table_args |
|
454 | 454 | ) |
|
455 | 455 | |
|
456 | 456 | repository_id = Column( |
|
457 | 457 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
458 | 458 | nullable=False) |
|
459 | 459 | app_settings_id = Column( |
|
460 | 460 | "app_settings_id", Integer(), nullable=False, unique=True, |
|
461 | 461 | default=None, primary_key=True) |
|
462 | 462 | app_settings_name = Column( |
|
463 | 463 | "app_settings_name", String(255), nullable=True, unique=None, |
|
464 | 464 | default=None) |
|
465 | 465 | _app_settings_value = Column( |
|
466 | 466 | "app_settings_value", String(4096), nullable=True, unique=None, |
|
467 | 467 | default=None) |
|
468 | 468 | _app_settings_type = Column( |
|
469 | 469 | "app_settings_type", String(255), nullable=True, unique=None, |
|
470 | 470 | default=None) |
|
471 | 471 | |
|
472 | 472 | repository = relationship('Repository') |
|
473 | 473 | |
|
474 | 474 | def __init__(self, repository_id, key='', val='', type='unicode'): |
|
475 | 475 | self.repository_id = repository_id |
|
476 | 476 | self.app_settings_name = key |
|
477 | 477 | self.app_settings_type = type |
|
478 | 478 | self.app_settings_value = val |
|
479 | 479 | |
|
480 | 480 | @validates('_app_settings_value') |
|
481 | 481 | def validate_settings_value(self, key, val): |
|
482 | 482 | assert type(val) == unicode |
|
483 | 483 | return val |
|
484 | 484 | |
|
485 | 485 | @hybrid_property |
|
486 | 486 | def app_settings_value(self): |
|
487 | 487 | v = self._app_settings_value |
|
488 | 488 | type_ = self.app_settings_type |
|
489 | 489 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
490 | 490 | converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode'] |
|
491 | 491 | return converter(v) |
|
492 | 492 | |
|
493 | 493 | @app_settings_value.setter |
|
494 | 494 | def app_settings_value(self, val): |
|
495 | 495 | """ |
|
496 | 496 | Setter that will always make sure we use unicode in app_settings_value |
|
497 | 497 | |
|
498 | 498 | :param val: |
|
499 | 499 | """ |
|
500 | 500 | self._app_settings_value = safe_unicode(val) |
|
501 | 501 | |
|
502 | 502 | @hybrid_property |
|
503 | 503 | def app_settings_type(self): |
|
504 | 504 | return self._app_settings_type |
|
505 | 505 | |
|
506 | 506 | @app_settings_type.setter |
|
507 | 507 | def app_settings_type(self, val): |
|
508 | 508 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
509 | 509 | if val not in SETTINGS_TYPES: |
|
510 | 510 | raise Exception('type must be one of %s got %s' |
|
511 | 511 | % (SETTINGS_TYPES.keys(), val)) |
|
512 | 512 | self._app_settings_type = val |
|
513 | 513 | |
|
514 | 514 | def __unicode__(self): |
|
515 | 515 | return u"<%s('%s:%s:%s[%s]')>" % ( |
|
516 | 516 | self.__class__.__name__, self.repository.repo_name, |
|
517 | 517 | self.app_settings_name, self.app_settings_value, |
|
518 | 518 | self.app_settings_type |
|
519 | 519 | ) |
|
520 | 520 | |
|
521 | 521 | |
|
522 | 522 | class RepoRhodeCodeUi(Base, BaseModel): |
|
523 | 523 | __tablename__ = 'repo_rhodecode_ui' |
|
524 | 524 | __table_args__ = ( |
|
525 | 525 | UniqueConstraint( |
|
526 | 526 | 'repository_id', 'ui_section', 'ui_key', |
|
527 | 527 | name='uq_repo_rhodecode_ui_repository_id_section_key'), |
|
528 | 528 | base_table_args |
|
529 | 529 | ) |
|
530 | 530 | |
|
531 | 531 | repository_id = Column( |
|
532 | 532 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
533 | 533 | nullable=False) |
|
534 | 534 | ui_id = Column( |
|
535 | 535 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
536 | 536 | primary_key=True) |
|
537 | 537 | ui_section = Column( |
|
538 | 538 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
539 | 539 | ui_key = Column( |
|
540 | 540 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
541 | 541 | ui_value = Column( |
|
542 | 542 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
543 | 543 | ui_active = Column( |
|
544 | 544 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
545 | 545 | |
|
546 | 546 | repository = relationship('Repository') |
|
547 | 547 | |
|
548 | 548 | def __repr__(self): |
|
549 | 549 | return '<%s[%s:%s]%s=>%s]>' % ( |
|
550 | 550 | self.__class__.__name__, self.repository.repo_name, |
|
551 | 551 | self.ui_section, self.ui_key, self.ui_value) |
|
552 | 552 | |
|
553 | 553 | |
|
554 | 554 | class User(Base, BaseModel): |
|
555 | 555 | __tablename__ = 'users' |
|
556 | 556 | __table_args__ = ( |
|
557 | 557 | UniqueConstraint('username'), UniqueConstraint('email'), |
|
558 | 558 | Index('u_username_idx', 'username'), |
|
559 | 559 | Index('u_email_idx', 'email'), |
|
560 | 560 | base_table_args |
|
561 | 561 | ) |
|
562 | 562 | |
|
563 | 563 | DEFAULT_USER = 'default' |
|
564 | 564 | DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org' |
|
565 | 565 | DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}' |
|
566 | 566 | |
|
567 | 567 | user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
568 | 568 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
569 | 569 | password = Column("password", String(255), nullable=True, unique=None, default=None) |
|
570 | 570 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
571 | 571 | admin = Column("admin", Boolean(), nullable=True, unique=None, default=False) |
|
572 | 572 | name = Column("firstname", String(255), nullable=True, unique=None, default=None) |
|
573 | 573 | lastname = Column("lastname", String(255), nullable=True, unique=None, default=None) |
|
574 | 574 | _email = Column("email", String(255), nullable=True, unique=None, default=None) |
|
575 | 575 | last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
576 | 576 | last_activity = Column('last_activity', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
577 | 577 | |
|
578 | 578 | extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None) |
|
579 | 579 | extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None) |
|
580 | 580 | _api_key = Column("api_key", String(255), nullable=True, unique=None, default=None) |
|
581 | 581 | inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
582 | 582 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
583 | 583 | _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data |
|
584 | 584 | |
|
585 | 585 | user_log = relationship('UserLog') |
|
586 | 586 | user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all') |
|
587 | 587 | |
|
588 | 588 | repositories = relationship('Repository') |
|
589 | 589 | repository_groups = relationship('RepoGroup') |
|
590 | 590 | user_groups = relationship('UserGroup') |
|
591 | 591 | |
|
592 | 592 | user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all') |
|
593 | 593 | followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all') |
|
594 | 594 | |
|
595 | 595 | repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all') |
|
596 | 596 | repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all') |
|
597 | 597 | user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all') |
|
598 | 598 | |
|
599 | 599 | group_member = relationship('UserGroupMember', cascade='all') |
|
600 | 600 | |
|
601 | 601 | notifications = relationship('UserNotification', cascade='all') |
|
602 | 602 | # notifications assigned to this user |
|
603 | 603 | user_created_notifications = relationship('Notification', cascade='all') |
|
604 | 604 | # comments created by this user |
|
605 | 605 | user_comments = relationship('ChangesetComment', cascade='all') |
|
606 | 606 | # user profile extra info |
|
607 | 607 | user_emails = relationship('UserEmailMap', cascade='all') |
|
608 | 608 | user_ip_map = relationship('UserIpMap', cascade='all') |
|
609 | 609 | user_auth_tokens = relationship('UserApiKeys', cascade='all') |
|
610 | 610 | user_ssh_keys = relationship('UserSshKeys', cascade='all') |
|
611 | 611 | |
|
612 | 612 | # gists |
|
613 | 613 | user_gists = relationship('Gist', cascade='all') |
|
614 | 614 | # user pull requests |
|
615 | 615 | user_pull_requests = relationship('PullRequest', cascade='all') |
|
616 | 616 | # external identities |
|
617 | 617 | extenal_identities = relationship( |
|
618 | 618 | 'ExternalIdentity', |
|
619 | 619 | primaryjoin="User.user_id==ExternalIdentity.local_user_id", |
|
620 | 620 | cascade='all') |
|
621 | 621 | # review rules |
|
622 | 622 | user_review_rules = relationship('RepoReviewRuleUser', cascade='all') |
|
623 | 623 | |
|
624 | 624 | def __unicode__(self): |
|
625 | 625 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
626 | 626 | self.user_id, self.username) |
|
627 | 627 | |
|
628 | 628 | @hybrid_property |
|
629 | 629 | def email(self): |
|
630 | 630 | return self._email |
|
631 | 631 | |
|
632 | 632 | @email.setter |
|
633 | 633 | def email(self, val): |
|
634 | 634 | self._email = val.lower() if val else None |
|
635 | 635 | |
|
636 | 636 | @hybrid_property |
|
637 | 637 | def first_name(self): |
|
638 | 638 | from rhodecode.lib import helpers as h |
|
639 | 639 | if self.name: |
|
640 | 640 | return h.escape(self.name) |
|
641 | 641 | return self.name |
|
642 | 642 | |
|
643 | 643 | @hybrid_property |
|
644 | 644 | def last_name(self): |
|
645 | 645 | from rhodecode.lib import helpers as h |
|
646 | 646 | if self.lastname: |
|
647 | 647 | return h.escape(self.lastname) |
|
648 | 648 | return self.lastname |
|
649 | 649 | |
|
650 | 650 | @hybrid_property |
|
651 | 651 | def api_key(self): |
|
652 | 652 | """ |
|
653 | 653 | Fetch if exist an auth-token with role ALL connected to this user |
|
654 | 654 | """ |
|
655 | 655 | user_auth_token = UserApiKeys.query()\ |
|
656 | 656 | .filter(UserApiKeys.user_id == self.user_id)\ |
|
657 | 657 | .filter(or_(UserApiKeys.expires == -1, |
|
658 | 658 | UserApiKeys.expires >= time.time()))\ |
|
659 | 659 | .filter(UserApiKeys.role == UserApiKeys.ROLE_ALL).first() |
|
660 | 660 | if user_auth_token: |
|
661 | 661 | user_auth_token = user_auth_token.api_key |
|
662 | 662 | |
|
663 | 663 | return user_auth_token |
|
664 | 664 | |
|
665 | 665 | @api_key.setter |
|
666 | 666 | def api_key(self, val): |
|
667 | 667 | # don't allow to set API key this is deprecated for now |
|
668 | 668 | self._api_key = None |
|
669 | 669 | |
|
670 | 670 | @property |
|
671 | 671 | def reviewer_pull_requests(self): |
|
672 | 672 | return PullRequestReviewers.query() \ |
|
673 | 673 | .options(joinedload(PullRequestReviewers.pull_request)) \ |
|
674 | 674 | .filter(PullRequestReviewers.user_id == self.user_id) \ |
|
675 | 675 | .all() |
|
676 | 676 | |
|
677 | 677 | @property |
|
678 | 678 | def firstname(self): |
|
679 | 679 | # alias for future |
|
680 | 680 | return self.name |
|
681 | 681 | |
|
682 | 682 | @property |
|
683 | 683 | def emails(self): |
|
684 | 684 | other = UserEmailMap.query()\ |
|
685 | 685 | .filter(UserEmailMap.user == self) \ |
|
686 | 686 | .order_by(UserEmailMap.email_id.asc()) \ |
|
687 | 687 | .all() |
|
688 | 688 | return [self.email] + [x.email for x in other] |
|
689 | 689 | |
|
690 | 690 | @property |
|
691 | 691 | def auth_tokens(self): |
|
692 | 692 | auth_tokens = self.get_auth_tokens() |
|
693 | 693 | return [x.api_key for x in auth_tokens] |
|
694 | 694 | |
|
695 | 695 | def get_auth_tokens(self): |
|
696 | 696 | return UserApiKeys.query()\ |
|
697 | 697 | .filter(UserApiKeys.user == self)\ |
|
698 | 698 | .order_by(UserApiKeys.user_api_key_id.asc())\ |
|
699 | 699 | .all() |
|
700 | 700 | |
|
701 | 701 | @LazyProperty |
|
702 | 702 | def feed_token(self): |
|
703 | 703 | return self.get_feed_token() |
|
704 | 704 | |
|
705 | 705 | def get_feed_token(self, cache=True): |
|
706 | 706 | feed_tokens = UserApiKeys.query()\ |
|
707 | 707 | .filter(UserApiKeys.user == self)\ |
|
708 | 708 | .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED) |
|
709 | 709 | if cache: |
|
710 | 710 | feed_tokens = feed_tokens.options( |
|
711 | 711 | FromCache("sql_cache_short", "get_user_feed_token_%s" % self.user_id)) |
|
712 | 712 | |
|
713 | 713 | feed_tokens = feed_tokens.all() |
|
714 | 714 | if feed_tokens: |
|
715 | 715 | return feed_tokens[0].api_key |
|
716 | 716 | return 'NO_FEED_TOKEN_AVAILABLE' |
|
717 | 717 | |
|
718 | 718 | @classmethod |
|
719 | 719 | def get(cls, user_id, cache=False): |
|
720 | 720 | if not user_id: |
|
721 | 721 | return |
|
722 | 722 | |
|
723 | 723 | user = cls.query() |
|
724 | 724 | if cache: |
|
725 | 725 | user = user.options( |
|
726 | 726 | FromCache("sql_cache_short", "get_users_%s" % user_id)) |
|
727 | 727 | return user.get(user_id) |
|
728 | 728 | |
|
729 | 729 | @classmethod |
|
730 | 730 | def extra_valid_auth_tokens(cls, user, role=None): |
|
731 | 731 | tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\ |
|
732 | 732 | .filter(or_(UserApiKeys.expires == -1, |
|
733 | 733 | UserApiKeys.expires >= time.time())) |
|
734 | 734 | if role: |
|
735 | 735 | tokens = tokens.filter(or_(UserApiKeys.role == role, |
|
736 | 736 | UserApiKeys.role == UserApiKeys.ROLE_ALL)) |
|
737 | 737 | return tokens.all() |
|
738 | 738 | |
|
739 | 739 | def authenticate_by_token(self, auth_token, roles=None, scope_repo_id=None): |
|
740 | 740 | from rhodecode.lib import auth |
|
741 | 741 | |
|
742 | 742 | log.debug('Trying to authenticate user: %s via auth-token, ' |
|
743 | 743 | 'and roles: %s', self, roles) |
|
744 | 744 | |
|
745 | 745 | if not auth_token: |
|
746 | 746 | return False |
|
747 | 747 | |
|
748 | 748 | roles = (roles or []) + [UserApiKeys.ROLE_ALL] |
|
749 | 749 | tokens_q = UserApiKeys.query()\ |
|
750 | 750 | .filter(UserApiKeys.user_id == self.user_id)\ |
|
751 | 751 | .filter(or_(UserApiKeys.expires == -1, |
|
752 | 752 | UserApiKeys.expires >= time.time())) |
|
753 | 753 | |
|
754 | 754 | tokens_q = tokens_q.filter(UserApiKeys.role.in_(roles)) |
|
755 | 755 | |
|
756 | 756 | crypto_backend = auth.crypto_backend() |
|
757 | 757 | enc_token_map = {} |
|
758 | 758 | plain_token_map = {} |
|
759 | 759 | for token in tokens_q: |
|
760 | 760 | if token.api_key.startswith(crypto_backend.ENC_PREF): |
|
761 | 761 | enc_token_map[token.api_key] = token |
|
762 | 762 | else: |
|
763 | 763 | plain_token_map[token.api_key] = token |
|
764 | 764 | log.debug( |
|
765 | 765 | 'Found %s plain and %s encrypted user tokens to check for authentication', |
|
766 | 766 | len(plain_token_map), len(enc_token_map)) |
|
767 | 767 | |
|
768 | 768 | # plain token match comes first |
|
769 | 769 | match = plain_token_map.get(auth_token) |
|
770 | 770 | |
|
771 | 771 | # check encrypted tokens now |
|
772 | 772 | if not match: |
|
773 | 773 | for token_hash, token in enc_token_map.items(): |
|
774 | 774 | # NOTE(marcink): this is expensive to calculate, but most secure |
|
775 | 775 | if crypto_backend.hash_check(auth_token, token_hash): |
|
776 | 776 | match = token |
|
777 | 777 | break |
|
778 | 778 | |
|
779 | 779 | if match: |
|
780 | 780 | log.debug('Found matching token %s', match) |
|
781 | 781 | if match.repo_id: |
|
782 | 782 | log.debug('Found scope, checking for scope match of token %s', match) |
|
783 | 783 | if match.repo_id == scope_repo_id: |
|
784 | 784 | return True |
|
785 | 785 | else: |
|
786 | 786 | log.debug( |
|
787 | 787 | 'AUTH_TOKEN: scope mismatch, token has a set repo scope: %s, ' |
|
788 | 788 | 'and calling scope is:%s, skipping further checks', |
|
789 | 789 | match.repo, scope_repo_id) |
|
790 | 790 | return False |
|
791 | 791 | else: |
|
792 | 792 | return True |
|
793 | 793 | |
|
794 | 794 | return False |
|
795 | 795 | |
|
796 | 796 | @property |
|
797 | 797 | def ip_addresses(self): |
|
798 | 798 | ret = UserIpMap.query().filter(UserIpMap.user == self).all() |
|
799 | 799 | return [x.ip_addr for x in ret] |
|
800 | 800 | |
|
801 | 801 | @property |
|
802 | 802 | def username_and_name(self): |
|
803 | 803 | return '%s (%s %s)' % (self.username, self.first_name, self.last_name) |
|
804 | 804 | |
|
805 | 805 | @property |
|
806 | 806 | def username_or_name_or_email(self): |
|
807 | 807 | full_name = self.full_name if self.full_name is not ' ' else None |
|
808 | 808 | return self.username or full_name or self.email |
|
809 | 809 | |
|
810 | 810 | @property |
|
811 | 811 | def full_name(self): |
|
812 | 812 | return '%s %s' % (self.first_name, self.last_name) |
|
813 | 813 | |
|
814 | 814 | @property |
|
815 | 815 | def full_name_or_username(self): |
|
816 | 816 | return ('%s %s' % (self.first_name, self.last_name) |
|
817 | 817 | if (self.first_name and self.last_name) else self.username) |
|
818 | 818 | |
|
819 | 819 | @property |
|
820 | 820 | def full_contact(self): |
|
821 | 821 | return '%s %s <%s>' % (self.first_name, self.last_name, self.email) |
|
822 | 822 | |
|
823 | 823 | @property |
|
824 | 824 | def short_contact(self): |
|
825 | 825 | return '%s %s' % (self.first_name, self.last_name) |
|
826 | 826 | |
|
827 | 827 | @property |
|
828 | 828 | def is_admin(self): |
|
829 | 829 | return self.admin |
|
830 | 830 | |
|
831 | 831 | def AuthUser(self, **kwargs): |
|
832 | 832 | """ |
|
833 | 833 | Returns instance of AuthUser for this user |
|
834 | 834 | """ |
|
835 | 835 | from rhodecode.lib.auth import AuthUser |
|
836 | 836 | return AuthUser(user_id=self.user_id, username=self.username, **kwargs) |
|
837 | 837 | |
|
838 | 838 | @hybrid_property |
|
839 | 839 | def user_data(self): |
|
840 | 840 | if not self._user_data: |
|
841 | 841 | return {} |
|
842 | 842 | |
|
843 | 843 | try: |
|
844 | 844 | return json.loads(self._user_data) |
|
845 | 845 | except TypeError: |
|
846 | 846 | return {} |
|
847 | 847 | |
|
848 | 848 | @user_data.setter |
|
849 | 849 | def user_data(self, val): |
|
850 | 850 | if not isinstance(val, dict): |
|
851 | 851 | raise Exception('user_data must be dict, got %s' % type(val)) |
|
852 | 852 | try: |
|
853 | 853 | self._user_data = json.dumps(val) |
|
854 | 854 | except Exception: |
|
855 | 855 | log.error(traceback.format_exc()) |
|
856 | 856 | |
|
857 | 857 | @classmethod |
|
858 | 858 | def get_by_username(cls, username, case_insensitive=False, |
|
859 | 859 | cache=False, identity_cache=False): |
|
860 | 860 | session = Session() |
|
861 | 861 | |
|
862 | 862 | if case_insensitive: |
|
863 | 863 | q = cls.query().filter( |
|
864 | 864 | func.lower(cls.username) == func.lower(username)) |
|
865 | 865 | else: |
|
866 | 866 | q = cls.query().filter(cls.username == username) |
|
867 | 867 | |
|
868 | 868 | if cache: |
|
869 | 869 | if identity_cache: |
|
870 | 870 | val = cls.identity_cache(session, 'username', username) |
|
871 | 871 | if val: |
|
872 | 872 | return val |
|
873 | 873 | else: |
|
874 | 874 | cache_key = "get_user_by_name_%s" % _hash_key(username) |
|
875 | 875 | q = q.options( |
|
876 | 876 | FromCache("sql_cache_short", cache_key)) |
|
877 | 877 | |
|
878 | 878 | return q.scalar() |
|
879 | 879 | |
|
880 | 880 | @classmethod |
|
881 | 881 | def get_by_auth_token(cls, auth_token, cache=False): |
|
882 | 882 | q = UserApiKeys.query()\ |
|
883 | 883 | .filter(UserApiKeys.api_key == auth_token)\ |
|
884 | 884 | .filter(or_(UserApiKeys.expires == -1, |
|
885 | 885 | UserApiKeys.expires >= time.time())) |
|
886 | 886 | if cache: |
|
887 | 887 | q = q.options( |
|
888 | 888 | FromCache("sql_cache_short", "get_auth_token_%s" % auth_token)) |
|
889 | 889 | |
|
890 | 890 | match = q.first() |
|
891 | 891 | if match: |
|
892 | 892 | return match.user |
|
893 | 893 | |
|
894 | 894 | @classmethod |
|
895 | 895 | def get_by_email(cls, email, case_insensitive=False, cache=False): |
|
896 | 896 | |
|
897 | 897 | if case_insensitive: |
|
898 | 898 | q = cls.query().filter(func.lower(cls.email) == func.lower(email)) |
|
899 | 899 | |
|
900 | 900 | else: |
|
901 | 901 | q = cls.query().filter(cls.email == email) |
|
902 | 902 | |
|
903 | 903 | email_key = _hash_key(email) |
|
904 | 904 | if cache: |
|
905 | 905 | q = q.options( |
|
906 | 906 | FromCache("sql_cache_short", "get_email_key_%s" % email_key)) |
|
907 | 907 | |
|
908 | 908 | ret = q.scalar() |
|
909 | 909 | if ret is None: |
|
910 | 910 | q = UserEmailMap.query() |
|
911 | 911 | # try fetching in alternate email map |
|
912 | 912 | if case_insensitive: |
|
913 | 913 | q = q.filter(func.lower(UserEmailMap.email) == func.lower(email)) |
|
914 | 914 | else: |
|
915 | 915 | q = q.filter(UserEmailMap.email == email) |
|
916 | 916 | q = q.options(joinedload(UserEmailMap.user)) |
|
917 | 917 | if cache: |
|
918 | 918 | q = q.options( |
|
919 | 919 | FromCache("sql_cache_short", "get_email_map_key_%s" % email_key)) |
|
920 | 920 | ret = getattr(q.scalar(), 'user', None) |
|
921 | 921 | |
|
922 | 922 | return ret |
|
923 | 923 | |
|
924 | 924 | @classmethod |
|
925 | 925 | def get_from_cs_author(cls, author): |
|
926 | 926 | """ |
|
927 | 927 | Tries to get User objects out of commit author string |
|
928 | 928 | |
|
929 | 929 | :param author: |
|
930 | 930 | """ |
|
931 | 931 | from rhodecode.lib.helpers import email, author_name |
|
932 | 932 | # Valid email in the attribute passed, see if they're in the system |
|
933 | 933 | _email = email(author) |
|
934 | 934 | if _email: |
|
935 | 935 | user = cls.get_by_email(_email, case_insensitive=True) |
|
936 | 936 | if user: |
|
937 | 937 | return user |
|
938 | 938 | # Maybe we can match by username? |
|
939 | 939 | _author = author_name(author) |
|
940 | 940 | user = cls.get_by_username(_author, case_insensitive=True) |
|
941 | 941 | if user: |
|
942 | 942 | return user |
|
943 | 943 | |
|
944 | 944 | def update_userdata(self, **kwargs): |
|
945 | 945 | usr = self |
|
946 | 946 | old = usr.user_data |
|
947 | 947 | old.update(**kwargs) |
|
948 | 948 | usr.user_data = old |
|
949 | 949 | Session().add(usr) |
|
950 | 950 | log.debug('updated userdata with ', kwargs) |
|
951 | 951 | |
|
952 | 952 | def update_lastlogin(self): |
|
953 | 953 | """Update user lastlogin""" |
|
954 | 954 | self.last_login = datetime.datetime.now() |
|
955 | 955 | Session().add(self) |
|
956 | 956 | log.debug('updated user %s lastlogin', self.username) |
|
957 | 957 | |
|
958 | 958 | def update_password(self, new_password): |
|
959 | 959 | from rhodecode.lib.auth import get_crypt_password |
|
960 | 960 | |
|
961 | 961 | self.password = get_crypt_password(new_password) |
|
962 | 962 | Session().add(self) |
|
963 | 963 | |
|
964 | 964 | @classmethod |
|
965 | 965 | def get_first_super_admin(cls): |
|
966 | 966 | user = User.query()\ |
|
967 | 967 | .filter(User.admin == true()) \ |
|
968 | 968 | .order_by(User.user_id.asc()) \ |
|
969 | 969 | .first() |
|
970 | 970 | |
|
971 | 971 | if user is None: |
|
972 | 972 | raise Exception('FATAL: Missing administrative account!') |
|
973 | 973 | return user |
|
974 | 974 | |
|
975 | 975 | @classmethod |
|
976 | 976 | def get_all_super_admins(cls, only_active=False): |
|
977 | 977 | """ |
|
978 | 978 | Returns all admin accounts sorted by username |
|
979 | 979 | """ |
|
980 | 980 | qry = User.query().filter(User.admin == true()).order_by(User.username.asc()) |
|
981 | 981 | if only_active: |
|
982 | 982 | qry = qry.filter(User.active == true()) |
|
983 | 983 | return qry.all() |
|
984 | 984 | |
|
985 | 985 | @classmethod |
|
986 | 986 | def get_default_user(cls, cache=False, refresh=False): |
|
987 | 987 | user = User.get_by_username(User.DEFAULT_USER, cache=cache) |
|
988 | 988 | if user is None: |
|
989 | 989 | raise Exception('FATAL: Missing default account!') |
|
990 | 990 | if refresh: |
|
991 | 991 | # The default user might be based on outdated state which |
|
992 | 992 | # has been loaded from the cache. |
|
993 | 993 | # A call to refresh() ensures that the |
|
994 | 994 | # latest state from the database is used. |
|
995 | 995 | Session().refresh(user) |
|
996 | 996 | return user |
|
997 | 997 | |
|
998 | 998 | def _get_default_perms(self, user, suffix=''): |
|
999 | 999 | from rhodecode.model.permission import PermissionModel |
|
1000 | 1000 | return PermissionModel().get_default_perms(user.user_perms, suffix) |
|
1001 | 1001 | |
|
1002 | 1002 | def get_default_perms(self, suffix=''): |
|
1003 | 1003 | return self._get_default_perms(self, suffix) |
|
1004 | 1004 | |
|
1005 | 1005 | def get_api_data(self, include_secrets=False, details='full'): |
|
1006 | 1006 | """ |
|
1007 | 1007 | Common function for generating user related data for API |
|
1008 | 1008 | |
|
1009 | 1009 | :param include_secrets: By default secrets in the API data will be replaced |
|
1010 | 1010 | by a placeholder value to prevent exposing this data by accident. In case |
|
1011 | 1011 | this data shall be exposed, set this flag to ``True``. |
|
1012 | 1012 | |
|
1013 | 1013 | :param details: details can be 'basic|full' basic gives only a subset of |
|
1014 | 1014 | the available user information that includes user_id, name and emails. |
|
1015 | 1015 | """ |
|
1016 | 1016 | user = self |
|
1017 | 1017 | user_data = self.user_data |
|
1018 | 1018 | data = { |
|
1019 | 1019 | 'user_id': user.user_id, |
|
1020 | 1020 | 'username': user.username, |
|
1021 | 1021 | 'firstname': user.name, |
|
1022 | 1022 | 'lastname': user.lastname, |
|
1023 | 1023 | 'email': user.email, |
|
1024 | 1024 | 'emails': user.emails, |
|
1025 | 1025 | } |
|
1026 | 1026 | if details == 'basic': |
|
1027 | 1027 | return data |
|
1028 | 1028 | |
|
1029 | 1029 | auth_token_length = 40 |
|
1030 | 1030 | auth_token_replacement = '*' * auth_token_length |
|
1031 | 1031 | |
|
1032 | 1032 | extras = { |
|
1033 | 1033 | 'auth_tokens': [auth_token_replacement], |
|
1034 | 1034 | 'active': user.active, |
|
1035 | 1035 | 'admin': user.admin, |
|
1036 | 1036 | 'extern_type': user.extern_type, |
|
1037 | 1037 | 'extern_name': user.extern_name, |
|
1038 | 1038 | 'last_login': user.last_login, |
|
1039 | 1039 | 'last_activity': user.last_activity, |
|
1040 | 1040 | 'ip_addresses': user.ip_addresses, |
|
1041 | 1041 | 'language': user_data.get('language') |
|
1042 | 1042 | } |
|
1043 | 1043 | data.update(extras) |
|
1044 | 1044 | |
|
1045 | 1045 | if include_secrets: |
|
1046 | 1046 | data['auth_tokens'] = user.auth_tokens |
|
1047 | 1047 | return data |
|
1048 | 1048 | |
|
1049 | 1049 | def __json__(self): |
|
1050 | 1050 | data = { |
|
1051 | 1051 | 'full_name': self.full_name, |
|
1052 | 1052 | 'full_name_or_username': self.full_name_or_username, |
|
1053 | 1053 | 'short_contact': self.short_contact, |
|
1054 | 1054 | 'full_contact': self.full_contact, |
|
1055 | 1055 | } |
|
1056 | 1056 | data.update(self.get_api_data()) |
|
1057 | 1057 | return data |
|
1058 | 1058 | |
|
1059 | 1059 | |
|
1060 | 1060 | class UserApiKeys(Base, BaseModel): |
|
1061 | 1061 | __tablename__ = 'user_api_keys' |
|
1062 | 1062 | __table_args__ = ( |
|
1063 | 1063 | Index('uak_api_key_idx', 'api_key', unique=True), |
|
1064 | 1064 | Index('uak_api_key_expires_idx', 'api_key', 'expires'), |
|
1065 | 1065 | base_table_args |
|
1066 | 1066 | ) |
|
1067 | 1067 | __mapper_args__ = {} |
|
1068 | 1068 | |
|
1069 | 1069 | # ApiKey role |
|
1070 | 1070 | ROLE_ALL = 'token_role_all' |
|
1071 | 1071 | ROLE_HTTP = 'token_role_http' |
|
1072 | 1072 | ROLE_VCS = 'token_role_vcs' |
|
1073 | 1073 | ROLE_API = 'token_role_api' |
|
1074 | 1074 | ROLE_FEED = 'token_role_feed' |
|
1075 | 1075 | ROLE_PASSWORD_RESET = 'token_password_reset' |
|
1076 | 1076 | |
|
1077 | 1077 | ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED] |
|
1078 | 1078 | |
|
1079 | 1079 | user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1080 | 1080 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1081 | 1081 | api_key = Column("api_key", String(255), nullable=False, unique=True) |
|
1082 | 1082 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
1083 | 1083 | expires = Column('expires', Float(53), nullable=False) |
|
1084 | 1084 | role = Column('role', String(255), nullable=True) |
|
1085 | 1085 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1086 | 1086 | |
|
1087 | 1087 | # scope columns |
|
1088 | 1088 | repo_id = Column( |
|
1089 | 1089 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
1090 | 1090 | nullable=True, unique=None, default=None) |
|
1091 | 1091 | repo = relationship('Repository', lazy='joined') |
|
1092 | 1092 | |
|
1093 | 1093 | repo_group_id = Column( |
|
1094 | 1094 | 'repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
1095 | 1095 | nullable=True, unique=None, default=None) |
|
1096 | 1096 | repo_group = relationship('RepoGroup', lazy='joined') |
|
1097 | 1097 | |
|
1098 | 1098 | user = relationship('User', lazy='joined') |
|
1099 | 1099 | |
|
1100 | 1100 | def __unicode__(self): |
|
1101 | 1101 | return u"<%s('%s')>" % (self.__class__.__name__, self.role) |
|
1102 | 1102 | |
|
1103 | 1103 | def __json__(self): |
|
1104 | 1104 | data = { |
|
1105 | 1105 | 'auth_token': self.api_key, |
|
1106 | 1106 | 'role': self.role, |
|
1107 | 1107 | 'scope': self.scope_humanized, |
|
1108 | 1108 | 'expired': self.expired |
|
1109 | 1109 | } |
|
1110 | 1110 | return data |
|
1111 | 1111 | |
|
1112 | 1112 | def get_api_data(self, include_secrets=False): |
|
1113 | 1113 | data = self.__json__() |
|
1114 | 1114 | if include_secrets: |
|
1115 | 1115 | return data |
|
1116 | 1116 | else: |
|
1117 | 1117 | data['auth_token'] = self.token_obfuscated |
|
1118 | 1118 | return data |
|
1119 | 1119 | |
|
1120 | 1120 | @hybrid_property |
|
1121 | 1121 | def description_safe(self): |
|
1122 | 1122 | from rhodecode.lib import helpers as h |
|
1123 | 1123 | return h.escape(self.description) |
|
1124 | 1124 | |
|
1125 | 1125 | @property |
|
1126 | 1126 | def expired(self): |
|
1127 | 1127 | if self.expires == -1: |
|
1128 | 1128 | return False |
|
1129 | 1129 | return time.time() > self.expires |
|
1130 | 1130 | |
|
1131 | 1131 | @classmethod |
|
1132 | 1132 | def _get_role_name(cls, role): |
|
1133 | 1133 | return { |
|
1134 | 1134 | cls.ROLE_ALL: _('all'), |
|
1135 | 1135 | cls.ROLE_HTTP: _('http/web interface'), |
|
1136 | 1136 | cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'), |
|
1137 | 1137 | cls.ROLE_API: _('api calls'), |
|
1138 | 1138 | cls.ROLE_FEED: _('feed access'), |
|
1139 | 1139 | }.get(role, role) |
|
1140 | 1140 | |
|
1141 | 1141 | @property |
|
1142 | 1142 | def role_humanized(self): |
|
1143 | 1143 | return self._get_role_name(self.role) |
|
1144 | 1144 | |
|
1145 | 1145 | def _get_scope(self): |
|
1146 | 1146 | if self.repo: |
|
1147 | 1147 | return 'Repository: {}'.format(self.repo.repo_name) |
|
1148 | 1148 | if self.repo_group: |
|
1149 | 1149 | return 'RepositoryGroup: {} (recursive)'.format(self.repo_group.group_name) |
|
1150 | 1150 | return 'Global' |
|
1151 | 1151 | |
|
1152 | 1152 | @property |
|
1153 | 1153 | def scope_humanized(self): |
|
1154 | 1154 | return self._get_scope() |
|
1155 | 1155 | |
|
1156 | 1156 | @property |
|
1157 | 1157 | def token_obfuscated(self): |
|
1158 | 1158 | if self.api_key: |
|
1159 | 1159 | return self.api_key[:4] + "****" |
|
1160 | 1160 | |
|
1161 | 1161 | |
|
1162 | 1162 | class UserEmailMap(Base, BaseModel): |
|
1163 | 1163 | __tablename__ = 'user_email_map' |
|
1164 | 1164 | __table_args__ = ( |
|
1165 | 1165 | Index('uem_email_idx', 'email'), |
|
1166 | 1166 | UniqueConstraint('email'), |
|
1167 | 1167 | base_table_args |
|
1168 | 1168 | ) |
|
1169 | 1169 | __mapper_args__ = {} |
|
1170 | 1170 | |
|
1171 | 1171 | email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1172 | 1172 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1173 | 1173 | _email = Column("email", String(255), nullable=True, unique=False, default=None) |
|
1174 | 1174 | user = relationship('User', lazy='joined') |
|
1175 | 1175 | |
|
1176 | 1176 | @validates('_email') |
|
1177 | 1177 | def validate_email(self, key, email): |
|
1178 | 1178 | # check if this email is not main one |
|
1179 | 1179 | main_email = Session().query(User).filter(User.email == email).scalar() |
|
1180 | 1180 | if main_email is not None: |
|
1181 | 1181 | raise AttributeError('email %s is present is user table' % email) |
|
1182 | 1182 | return email |
|
1183 | 1183 | |
|
1184 | 1184 | @hybrid_property |
|
1185 | 1185 | def email(self): |
|
1186 | 1186 | return self._email |
|
1187 | 1187 | |
|
1188 | 1188 | @email.setter |
|
1189 | 1189 | def email(self, val): |
|
1190 | 1190 | self._email = val.lower() if val else None |
|
1191 | 1191 | |
|
1192 | 1192 | |
|
1193 | 1193 | class UserIpMap(Base, BaseModel): |
|
1194 | 1194 | __tablename__ = 'user_ip_map' |
|
1195 | 1195 | __table_args__ = ( |
|
1196 | 1196 | UniqueConstraint('user_id', 'ip_addr'), |
|
1197 | 1197 | base_table_args |
|
1198 | 1198 | ) |
|
1199 | 1199 | __mapper_args__ = {} |
|
1200 | 1200 | |
|
1201 | 1201 | ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1202 | 1202 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1203 | 1203 | ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None) |
|
1204 | 1204 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
1205 | 1205 | description = Column("description", String(10000), nullable=True, unique=None, default=None) |
|
1206 | 1206 | user = relationship('User', lazy='joined') |
|
1207 | 1207 | |
|
1208 | 1208 | @hybrid_property |
|
1209 | 1209 | def description_safe(self): |
|
1210 | 1210 | from rhodecode.lib import helpers as h |
|
1211 | 1211 | return h.escape(self.description) |
|
1212 | 1212 | |
|
1213 | 1213 | @classmethod |
|
1214 | 1214 | def _get_ip_range(cls, ip_addr): |
|
1215 | 1215 | net = ipaddress.ip_network(safe_unicode(ip_addr), strict=False) |
|
1216 | 1216 | return [str(net.network_address), str(net.broadcast_address)] |
|
1217 | 1217 | |
|
1218 | 1218 | def __json__(self): |
|
1219 | 1219 | return { |
|
1220 | 1220 | 'ip_addr': self.ip_addr, |
|
1221 | 1221 | 'ip_range': self._get_ip_range(self.ip_addr), |
|
1222 | 1222 | } |
|
1223 | 1223 | |
|
1224 | 1224 | def __unicode__(self): |
|
1225 | 1225 | return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__, |
|
1226 | 1226 | self.user_id, self.ip_addr) |
|
1227 | 1227 | |
|
1228 | 1228 | |
|
1229 | 1229 | class UserSshKeys(Base, BaseModel): |
|
1230 | 1230 | __tablename__ = 'user_ssh_keys' |
|
1231 | 1231 | __table_args__ = ( |
|
1232 | 1232 | Index('usk_ssh_key_fingerprint_idx', 'ssh_key_fingerprint'), |
|
1233 | 1233 | |
|
1234 | 1234 | UniqueConstraint('ssh_key_fingerprint'), |
|
1235 | 1235 | |
|
1236 | 1236 | base_table_args |
|
1237 | 1237 | ) |
|
1238 | 1238 | __mapper_args__ = {} |
|
1239 | 1239 | |
|
1240 | 1240 | ssh_key_id = Column('ssh_key_id', Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1241 | 1241 | ssh_key_data = Column('ssh_key_data', String(10240), nullable=False, unique=None, default=None) |
|
1242 | 1242 | ssh_key_fingerprint = Column('ssh_key_fingerprint', String(255), nullable=False, unique=None, default=None) |
|
1243 | 1243 | |
|
1244 | 1244 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
1245 | 1245 | |
|
1246 | 1246 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1247 | 1247 | accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True, default=None) |
|
1248 | 1248 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1249 | 1249 | |
|
1250 | 1250 | user = relationship('User', lazy='joined') |
|
1251 | 1251 | |
|
1252 | 1252 | def __json__(self): |
|
1253 | 1253 | data = { |
|
1254 | 1254 | 'ssh_fingerprint': self.ssh_key_fingerprint, |
|
1255 | 1255 | 'description': self.description, |
|
1256 | 1256 | 'created_on': self.created_on |
|
1257 | 1257 | } |
|
1258 | 1258 | return data |
|
1259 | 1259 | |
|
1260 | 1260 | def get_api_data(self): |
|
1261 | 1261 | data = self.__json__() |
|
1262 | 1262 | return data |
|
1263 | 1263 | |
|
1264 | 1264 | |
|
1265 | 1265 | class UserLog(Base, BaseModel): |
|
1266 | 1266 | __tablename__ = 'user_logs' |
|
1267 | 1267 | __table_args__ = ( |
|
1268 | 1268 | base_table_args, |
|
1269 | 1269 | ) |
|
1270 | 1270 | |
|
1271 | 1271 | VERSION_1 = 'v1' |
|
1272 | 1272 | VERSION_2 = 'v2' |
|
1273 | 1273 | VERSIONS = [VERSION_1, VERSION_2] |
|
1274 | 1274 | |
|
1275 | 1275 | user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1276 | 1276 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id',ondelete='SET NULL'), nullable=True, unique=None, default=None) |
|
1277 | 1277 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
1278 | 1278 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id', ondelete='SET NULL'), nullable=True, unique=None, default=None) |
|
1279 | 1279 | repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None) |
|
1280 | 1280 | user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None) |
|
1281 | 1281 | action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None) |
|
1282 | 1282 | action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
1283 | 1283 | |
|
1284 | 1284 | version = Column("version", String(255), nullable=True, default=VERSION_1) |
|
1285 | 1285 | user_data = Column('user_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT())))) |
|
1286 | 1286 | action_data = Column('action_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT())))) |
|
1287 | 1287 | |
|
1288 | 1288 | def __unicode__(self): |
|
1289 | 1289 | return u"<%s('id:%s:%s')>" % ( |
|
1290 | 1290 | self.__class__.__name__, self.repository_name, self.action) |
|
1291 | 1291 | |
|
1292 | 1292 | def __json__(self): |
|
1293 | 1293 | return { |
|
1294 | 1294 | 'user_id': self.user_id, |
|
1295 | 1295 | 'username': self.username, |
|
1296 | 1296 | 'repository_id': self.repository_id, |
|
1297 | 1297 | 'repository_name': self.repository_name, |
|
1298 | 1298 | 'user_ip': self.user_ip, |
|
1299 | 1299 | 'action_date': self.action_date, |
|
1300 | 1300 | 'action': self.action, |
|
1301 | 1301 | } |
|
1302 | 1302 | |
|
1303 | 1303 | @hybrid_property |
|
1304 | 1304 | def entry_id(self): |
|
1305 | 1305 | return self.user_log_id |
|
1306 | 1306 | |
|
1307 | 1307 | @property |
|
1308 | 1308 | def action_as_day(self): |
|
1309 | 1309 | return datetime.date(*self.action_date.timetuple()[:3]) |
|
1310 | 1310 | |
|
1311 | 1311 | user = relationship('User') |
|
1312 | 1312 | repository = relationship('Repository', cascade='') |
|
1313 | 1313 | |
|
1314 | 1314 | |
|
1315 | 1315 | class UserGroup(Base, BaseModel): |
|
1316 | 1316 | __tablename__ = 'users_groups' |
|
1317 | 1317 | __table_args__ = ( |
|
1318 | 1318 | base_table_args, |
|
1319 | 1319 | ) |
|
1320 | 1320 | |
|
1321 | 1321 | users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1322 | 1322 | users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None) |
|
1323 | 1323 | user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None) |
|
1324 | 1324 | users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None) |
|
1325 | 1325 | inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
1326 | 1326 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
1327 | 1327 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1328 | 1328 | _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data |
|
1329 | 1329 | |
|
1330 | 1330 | members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined") |
|
1331 | 1331 | users_group_to_perm = relationship('UserGroupToPerm', cascade='all') |
|
1332 | 1332 | users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1333 | 1333 | users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
1334 | 1334 | user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all') |
|
1335 | 1335 | user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all') |
|
1336 | 1336 | |
|
1337 | 1337 | user_group_review_rules = relationship('RepoReviewRuleUserGroup', cascade='all') |
|
1338 | 1338 | user = relationship('User', primaryjoin="User.user_id==UserGroup.user_id") |
|
1339 | 1339 | |
|
1340 | 1340 | @classmethod |
|
1341 | 1341 | def _load_group_data(cls, column): |
|
1342 | 1342 | if not column: |
|
1343 | 1343 | return {} |
|
1344 | 1344 | |
|
1345 | 1345 | try: |
|
1346 | 1346 | return json.loads(column) or {} |
|
1347 | 1347 | except TypeError: |
|
1348 | 1348 | return {} |
|
1349 | 1349 | |
|
1350 | 1350 | @hybrid_property |
|
1351 | 1351 | def description_safe(self): |
|
1352 | 1352 | from rhodecode.lib import helpers as h |
|
1353 | 1353 | return h.escape(self.user_group_description) |
|
1354 | 1354 | |
|
1355 | 1355 | @hybrid_property |
|
1356 | 1356 | def group_data(self): |
|
1357 | 1357 | return self._load_group_data(self._group_data) |
|
1358 | 1358 | |
|
1359 | 1359 | @group_data.expression |
|
1360 | 1360 | def group_data(self, **kwargs): |
|
1361 | 1361 | return self._group_data |
|
1362 | 1362 | |
|
1363 | 1363 | @group_data.setter |
|
1364 | 1364 | def group_data(self, val): |
|
1365 | 1365 | try: |
|
1366 | 1366 | self._group_data = json.dumps(val) |
|
1367 | 1367 | except Exception: |
|
1368 | 1368 | log.error(traceback.format_exc()) |
|
1369 | 1369 | |
|
1370 | 1370 | @classmethod |
|
1371 | 1371 | def _load_sync(cls, group_data): |
|
1372 | 1372 | if group_data: |
|
1373 | 1373 | return group_data.get('extern_type') |
|
1374 | 1374 | |
|
1375 | 1375 | @property |
|
1376 | 1376 | def sync(self): |
|
1377 | 1377 | return self._load_sync(self.group_data) |
|
1378 | 1378 | |
|
1379 | 1379 | def __unicode__(self): |
|
1380 | 1380 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
1381 | 1381 | self.users_group_id, |
|
1382 | 1382 | self.users_group_name) |
|
1383 | 1383 | |
|
1384 | 1384 | @classmethod |
|
1385 | 1385 | def get_by_group_name(cls, group_name, cache=False, |
|
1386 | 1386 | case_insensitive=False): |
|
1387 | 1387 | if case_insensitive: |
|
1388 | 1388 | q = cls.query().filter(func.lower(cls.users_group_name) == |
|
1389 | 1389 | func.lower(group_name)) |
|
1390 | 1390 | |
|
1391 | 1391 | else: |
|
1392 | 1392 | q = cls.query().filter(cls.users_group_name == group_name) |
|
1393 | 1393 | if cache: |
|
1394 | 1394 | q = q.options( |
|
1395 | 1395 | FromCache("sql_cache_short", "get_group_%s" % _hash_key(group_name))) |
|
1396 | 1396 | return q.scalar() |
|
1397 | 1397 | |
|
1398 | 1398 | @classmethod |
|
1399 | 1399 | def get(cls, user_group_id, cache=False): |
|
1400 | 1400 | if not user_group_id: |
|
1401 | 1401 | return |
|
1402 | 1402 | |
|
1403 | 1403 | user_group = cls.query() |
|
1404 | 1404 | if cache: |
|
1405 | 1405 | user_group = user_group.options( |
|
1406 | 1406 | FromCache("sql_cache_short", "get_users_group_%s" % user_group_id)) |
|
1407 | 1407 | return user_group.get(user_group_id) |
|
1408 | 1408 | |
|
1409 | 1409 | def permissions(self, with_admins=True, with_owner=True, |
|
1410 | 1410 | expand_from_user_groups=False): |
|
1411 | 1411 | """ |
|
1412 | 1412 | Permissions for user groups |
|
1413 | 1413 | """ |
|
1414 | 1414 | _admin_perm = 'usergroup.admin' |
|
1415 | 1415 | |
|
1416 | 1416 | owner_row = [] |
|
1417 | 1417 | if with_owner: |
|
1418 | 1418 | usr = AttributeDict(self.user.get_dict()) |
|
1419 | 1419 | usr.owner_row = True |
|
1420 | 1420 | usr.permission = _admin_perm |
|
1421 | 1421 | owner_row.append(usr) |
|
1422 | 1422 | |
|
1423 | 1423 | super_admin_ids = [] |
|
1424 | 1424 | super_admin_rows = [] |
|
1425 | 1425 | if with_admins: |
|
1426 | 1426 | for usr in User.get_all_super_admins(): |
|
1427 | 1427 | super_admin_ids.append(usr.user_id) |
|
1428 | 1428 | # if this admin is also owner, don't double the record |
|
1429 | 1429 | if usr.user_id == owner_row[0].user_id: |
|
1430 | 1430 | owner_row[0].admin_row = True |
|
1431 | 1431 | else: |
|
1432 | 1432 | usr = AttributeDict(usr.get_dict()) |
|
1433 | 1433 | usr.admin_row = True |
|
1434 | 1434 | usr.permission = _admin_perm |
|
1435 | 1435 | super_admin_rows.append(usr) |
|
1436 | 1436 | |
|
1437 | 1437 | q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self) |
|
1438 | 1438 | q = q.options(joinedload(UserUserGroupToPerm.user_group), |
|
1439 | 1439 | joinedload(UserUserGroupToPerm.user), |
|
1440 | 1440 | joinedload(UserUserGroupToPerm.permission),) |
|
1441 | 1441 | |
|
1442 | 1442 | # get owners and admins and permissions. We do a trick of re-writing |
|
1443 | 1443 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1444 | 1444 | # has a global reference and changing one object propagates to all |
|
1445 | 1445 | # others. This means if admin is also an owner admin_row that change |
|
1446 | 1446 | # would propagate to both objects |
|
1447 | 1447 | perm_rows = [] |
|
1448 | 1448 | for _usr in q.all(): |
|
1449 | 1449 | usr = AttributeDict(_usr.user.get_dict()) |
|
1450 | 1450 | # if this user is also owner/admin, mark as duplicate record |
|
1451 | 1451 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
1452 | 1452 | usr.duplicate_perm = True |
|
1453 | 1453 | usr.permission = _usr.permission.permission_name |
|
1454 | 1454 | perm_rows.append(usr) |
|
1455 | 1455 | |
|
1456 | 1456 | # filter the perm rows by 'default' first and then sort them by |
|
1457 | 1457 | # admin,write,read,none permissions sorted again alphabetically in |
|
1458 | 1458 | # each group |
|
1459 | 1459 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
1460 | 1460 | |
|
1461 | 1461 | user_groups_rows = [] |
|
1462 | 1462 | if expand_from_user_groups: |
|
1463 | 1463 | for ug in self.permission_user_groups(with_members=True): |
|
1464 | 1464 | for user_data in ug.members: |
|
1465 | 1465 | user_groups_rows.append(user_data) |
|
1466 | 1466 | |
|
1467 | 1467 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
1468 | 1468 | |
|
1469 | 1469 | def permission_user_groups(self, with_members=False): |
|
1470 | 1470 | q = UserGroupUserGroupToPerm.query()\ |
|
1471 | 1471 | .filter(UserGroupUserGroupToPerm.target_user_group == self) |
|
1472 | 1472 | q = q.options(joinedload(UserGroupUserGroupToPerm.user_group), |
|
1473 | 1473 | joinedload(UserGroupUserGroupToPerm.target_user_group), |
|
1474 | 1474 | joinedload(UserGroupUserGroupToPerm.permission),) |
|
1475 | 1475 | |
|
1476 | 1476 | perm_rows = [] |
|
1477 | 1477 | for _user_group in q.all(): |
|
1478 | 1478 | entry = AttributeDict(_user_group.user_group.get_dict()) |
|
1479 | 1479 | entry.permission = _user_group.permission.permission_name |
|
1480 | 1480 | if with_members: |
|
1481 | 1481 | entry.members = [x.user.get_dict() |
|
1482 | 1482 | for x in _user_group.user_group.members] |
|
1483 | 1483 | perm_rows.append(entry) |
|
1484 | 1484 | |
|
1485 | 1485 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
1486 | 1486 | return perm_rows |
|
1487 | 1487 | |
|
1488 | 1488 | def _get_default_perms(self, user_group, suffix=''): |
|
1489 | 1489 | from rhodecode.model.permission import PermissionModel |
|
1490 | 1490 | return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix) |
|
1491 | 1491 | |
|
1492 | 1492 | def get_default_perms(self, suffix=''): |
|
1493 | 1493 | return self._get_default_perms(self, suffix) |
|
1494 | 1494 | |
|
1495 | 1495 | def get_api_data(self, with_group_members=True, include_secrets=False): |
|
1496 | 1496 | """ |
|
1497 | 1497 | :param include_secrets: See :meth:`User.get_api_data`, this parameter is |
|
1498 | 1498 | basically forwarded. |
|
1499 | 1499 | |
|
1500 | 1500 | """ |
|
1501 | 1501 | user_group = self |
|
1502 | 1502 | data = { |
|
1503 | 1503 | 'users_group_id': user_group.users_group_id, |
|
1504 | 1504 | 'group_name': user_group.users_group_name, |
|
1505 | 1505 | 'group_description': user_group.user_group_description, |
|
1506 | 1506 | 'active': user_group.users_group_active, |
|
1507 | 1507 | 'owner': user_group.user.username, |
|
1508 | 1508 | 'sync': user_group.sync, |
|
1509 | 1509 | 'owner_email': user_group.user.email, |
|
1510 | 1510 | } |
|
1511 | 1511 | |
|
1512 | 1512 | if with_group_members: |
|
1513 | 1513 | users = [] |
|
1514 | 1514 | for user in user_group.members: |
|
1515 | 1515 | user = user.user |
|
1516 | 1516 | users.append(user.get_api_data(include_secrets=include_secrets)) |
|
1517 | 1517 | data['users'] = users |
|
1518 | 1518 | |
|
1519 | 1519 | return data |
|
1520 | 1520 | |
|
1521 | 1521 | |
|
1522 | 1522 | class UserGroupMember(Base, BaseModel): |
|
1523 | 1523 | __tablename__ = 'users_groups_members' |
|
1524 | 1524 | __table_args__ = ( |
|
1525 | 1525 | base_table_args, |
|
1526 | 1526 | ) |
|
1527 | 1527 | |
|
1528 | 1528 | users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1529 | 1529 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
1530 | 1530 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
1531 | 1531 | |
|
1532 | 1532 | user = relationship('User', lazy='joined') |
|
1533 | 1533 | users_group = relationship('UserGroup') |
|
1534 | 1534 | |
|
1535 | 1535 | def __init__(self, gr_id='', u_id=''): |
|
1536 | 1536 | self.users_group_id = gr_id |
|
1537 | 1537 | self.user_id = u_id |
|
1538 | 1538 | |
|
1539 | 1539 | |
|
1540 | 1540 | class RepositoryField(Base, BaseModel): |
|
1541 | 1541 | __tablename__ = 'repositories_fields' |
|
1542 | 1542 | __table_args__ = ( |
|
1543 | 1543 | UniqueConstraint('repository_id', 'field_key'), # no-multi field |
|
1544 | 1544 | base_table_args, |
|
1545 | 1545 | ) |
|
1546 | 1546 | |
|
1547 | 1547 | PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields |
|
1548 | 1548 | |
|
1549 | 1549 | repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1550 | 1550 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
1551 | 1551 | field_key = Column("field_key", String(250)) |
|
1552 | 1552 | field_label = Column("field_label", String(1024), nullable=False) |
|
1553 | 1553 | field_value = Column("field_value", String(10000), nullable=False) |
|
1554 | 1554 | field_desc = Column("field_desc", String(1024), nullable=False) |
|
1555 | 1555 | field_type = Column("field_type", String(255), nullable=False, unique=None) |
|
1556 | 1556 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1557 | 1557 | |
|
1558 | 1558 | repository = relationship('Repository') |
|
1559 | 1559 | |
|
1560 | 1560 | @property |
|
1561 | 1561 | def field_key_prefixed(self): |
|
1562 | 1562 | return 'ex_%s' % self.field_key |
|
1563 | 1563 | |
|
1564 | 1564 | @classmethod |
|
1565 | 1565 | def un_prefix_key(cls, key): |
|
1566 | 1566 | if key.startswith(cls.PREFIX): |
|
1567 | 1567 | return key[len(cls.PREFIX):] |
|
1568 | 1568 | return key |
|
1569 | 1569 | |
|
1570 | 1570 | @classmethod |
|
1571 | 1571 | def get_by_key_name(cls, key, repo): |
|
1572 | 1572 | row = cls.query()\ |
|
1573 | 1573 | .filter(cls.repository == repo)\ |
|
1574 | 1574 | .filter(cls.field_key == key).scalar() |
|
1575 | 1575 | return row |
|
1576 | 1576 | |
|
1577 | 1577 | |
|
1578 | 1578 | class Repository(Base, BaseModel): |
|
1579 | 1579 | __tablename__ = 'repositories' |
|
1580 | 1580 | __table_args__ = ( |
|
1581 | 1581 | Index('r_repo_name_idx', 'repo_name', mysql_length=255), |
|
1582 | 1582 | base_table_args, |
|
1583 | 1583 | ) |
|
1584 | 1584 | DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}' |
|
1585 | 1585 | DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}' |
|
1586 | 1586 | DEFAULT_CLONE_URI_SSH = 'ssh://{sys_user}@{hostname}/{repo}' |
|
1587 | 1587 | |
|
1588 | 1588 | STATE_CREATED = 'repo_state_created' |
|
1589 | 1589 | STATE_PENDING = 'repo_state_pending' |
|
1590 | 1590 | STATE_ERROR = 'repo_state_error' |
|
1591 | 1591 | |
|
1592 | 1592 | LOCK_AUTOMATIC = 'lock_auto' |
|
1593 | 1593 | LOCK_API = 'lock_api' |
|
1594 | 1594 | LOCK_WEB = 'lock_web' |
|
1595 | 1595 | LOCK_PULL = 'lock_pull' |
|
1596 | 1596 | |
|
1597 | 1597 | NAME_SEP = URL_SEP |
|
1598 | 1598 | |
|
1599 | 1599 | repo_id = Column( |
|
1600 | 1600 | "repo_id", Integer(), nullable=False, unique=True, default=None, |
|
1601 | 1601 | primary_key=True) |
|
1602 | 1602 | _repo_name = Column( |
|
1603 | 1603 | "repo_name", Text(), nullable=False, default=None) |
|
1604 | 1604 | _repo_name_hash = Column( |
|
1605 | 1605 | "repo_name_hash", String(255), nullable=False, unique=True) |
|
1606 | 1606 | repo_state = Column("repo_state", String(255), nullable=True) |
|
1607 | 1607 | |
|
1608 | 1608 | clone_uri = Column( |
|
1609 | 1609 | "clone_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1610 | 1610 | default=None) |
|
1611 | 1611 | push_uri = Column( |
|
1612 | 1612 | "push_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1613 | 1613 | default=None) |
|
1614 | 1614 | repo_type = Column( |
|
1615 | 1615 | "repo_type", String(255), nullable=False, unique=False, default=None) |
|
1616 | 1616 | user_id = Column( |
|
1617 | 1617 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
1618 | 1618 | unique=False, default=None) |
|
1619 | 1619 | private = Column( |
|
1620 | 1620 | "private", Boolean(), nullable=True, unique=None, default=None) |
|
1621 | 1621 | archived = Column( |
|
1622 | 1622 | "archived", Boolean(), nullable=True, unique=None, default=None) |
|
1623 | 1623 | enable_statistics = Column( |
|
1624 | 1624 | "statistics", Boolean(), nullable=True, unique=None, default=True) |
|
1625 | 1625 | enable_downloads = Column( |
|
1626 | 1626 | "downloads", Boolean(), nullable=True, unique=None, default=True) |
|
1627 | 1627 | description = Column( |
|
1628 | 1628 | "description", String(10000), nullable=True, unique=None, default=None) |
|
1629 | 1629 | created_on = Column( |
|
1630 | 1630 | 'created_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1631 | 1631 | default=datetime.datetime.now) |
|
1632 | 1632 | updated_on = Column( |
|
1633 | 1633 | 'updated_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1634 | 1634 | default=datetime.datetime.now) |
|
1635 | 1635 | _landing_revision = Column( |
|
1636 | 1636 | "landing_revision", String(255), nullable=False, unique=False, |
|
1637 | 1637 | default=None) |
|
1638 | 1638 | enable_locking = Column( |
|
1639 | 1639 | "enable_locking", Boolean(), nullable=False, unique=None, |
|
1640 | 1640 | default=False) |
|
1641 | 1641 | _locked = Column( |
|
1642 | 1642 | "locked", String(255), nullable=True, unique=False, default=None) |
|
1643 | 1643 | _changeset_cache = Column( |
|
1644 | 1644 | "changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
1645 | 1645 | |
|
1646 | 1646 | fork_id = Column( |
|
1647 | 1647 | "fork_id", Integer(), ForeignKey('repositories.repo_id'), |
|
1648 | 1648 | nullable=True, unique=False, default=None) |
|
1649 | 1649 | group_id = Column( |
|
1650 | 1650 | "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True, |
|
1651 | 1651 | unique=False, default=None) |
|
1652 | 1652 | |
|
1653 | 1653 | user = relationship('User', lazy='joined') |
|
1654 | 1654 | fork = relationship('Repository', remote_side=repo_id, lazy='joined') |
|
1655 | 1655 | group = relationship('RepoGroup', lazy='joined') |
|
1656 | 1656 | repo_to_perm = relationship( |
|
1657 | 1657 | 'UserRepoToPerm', cascade='all', |
|
1658 | 1658 | order_by='UserRepoToPerm.repo_to_perm_id') |
|
1659 | 1659 | users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1660 | 1660 | stats = relationship('Statistics', cascade='all', uselist=False) |
|
1661 | 1661 | |
|
1662 | 1662 | followers = relationship( |
|
1663 | 1663 | 'UserFollowing', |
|
1664 | 1664 | primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id', |
|
1665 | 1665 | cascade='all') |
|
1666 | 1666 | extra_fields = relationship( |
|
1667 | 1667 | 'RepositoryField', cascade="all, delete, delete-orphan") |
|
1668 | 1668 | logs = relationship('UserLog') |
|
1669 | 1669 | comments = relationship( |
|
1670 | 1670 | 'ChangesetComment', cascade="all, delete, delete-orphan") |
|
1671 | 1671 | pull_requests_source = relationship( |
|
1672 | 1672 | 'PullRequest', |
|
1673 | 1673 | primaryjoin='PullRequest.source_repo_id==Repository.repo_id', |
|
1674 | 1674 | cascade="all, delete, delete-orphan") |
|
1675 | 1675 | pull_requests_target = relationship( |
|
1676 | 1676 | 'PullRequest', |
|
1677 | 1677 | primaryjoin='PullRequest.target_repo_id==Repository.repo_id', |
|
1678 | 1678 | cascade="all, delete, delete-orphan") |
|
1679 | 1679 | ui = relationship('RepoRhodeCodeUi', cascade="all") |
|
1680 | 1680 | settings = relationship('RepoRhodeCodeSetting', cascade="all") |
|
1681 | 1681 | integrations = relationship('Integration', cascade="all, delete, delete-orphan") |
|
1682 | 1682 | |
|
1683 | 1683 | scoped_tokens = relationship('UserApiKeys', cascade="all") |
|
1684 | 1684 | |
|
1685 | 1685 | artifacts = relationship('FileStore', cascade="all") |
|
1686 | 1686 | |
|
1687 | 1687 | def __unicode__(self): |
|
1688 | 1688 | return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id, |
|
1689 | 1689 | safe_unicode(self.repo_name)) |
|
1690 | 1690 | |
|
1691 | 1691 | @hybrid_property |
|
1692 | 1692 | def description_safe(self): |
|
1693 | 1693 | from rhodecode.lib import helpers as h |
|
1694 | 1694 | return h.escape(self.description) |
|
1695 | 1695 | |
|
1696 | 1696 | @hybrid_property |
|
1697 | 1697 | def landing_rev(self): |
|
1698 | 1698 | # always should return [rev_type, rev] |
|
1699 | 1699 | if self._landing_revision: |
|
1700 | 1700 | _rev_info = self._landing_revision.split(':') |
|
1701 | 1701 | if len(_rev_info) < 2: |
|
1702 | 1702 | _rev_info.insert(0, 'rev') |
|
1703 | 1703 | return [_rev_info[0], _rev_info[1]] |
|
1704 | 1704 | return [None, None] |
|
1705 | 1705 | |
|
1706 | 1706 | @landing_rev.setter |
|
1707 | 1707 | def landing_rev(self, val): |
|
1708 | 1708 | if ':' not in val: |
|
1709 | 1709 | raise ValueError('value must be delimited with `:` and consist ' |
|
1710 | 1710 | 'of <rev_type>:<rev>, got %s instead' % val) |
|
1711 | 1711 | self._landing_revision = val |
|
1712 | 1712 | |
|
1713 | 1713 | @hybrid_property |
|
1714 | 1714 | def locked(self): |
|
1715 | 1715 | if self._locked: |
|
1716 | 1716 | user_id, timelocked, reason = self._locked.split(':') |
|
1717 | 1717 | lock_values = int(user_id), timelocked, reason |
|
1718 | 1718 | else: |
|
1719 | 1719 | lock_values = [None, None, None] |
|
1720 | 1720 | return lock_values |
|
1721 | 1721 | |
|
1722 | 1722 | @locked.setter |
|
1723 | 1723 | def locked(self, val): |
|
1724 | 1724 | if val and isinstance(val, (list, tuple)): |
|
1725 | 1725 | self._locked = ':'.join(map(str, val)) |
|
1726 | 1726 | else: |
|
1727 | 1727 | self._locked = None |
|
1728 | 1728 | |
|
1729 | 1729 | @hybrid_property |
|
1730 | 1730 | def changeset_cache(self): |
|
1731 | 1731 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
1732 | 1732 | dummy = EmptyCommit().__json__() |
|
1733 | 1733 | if not self._changeset_cache: |
|
1734 | 1734 | dummy['source_repo_id'] = self.repo_id |
|
1735 | 1735 | return json.loads(json.dumps(dummy)) |
|
1736 | 1736 | |
|
1737 | 1737 | try: |
|
1738 | 1738 | return json.loads(self._changeset_cache) |
|
1739 | 1739 | except TypeError: |
|
1740 | 1740 | return dummy |
|
1741 | 1741 | except Exception: |
|
1742 | 1742 | log.error(traceback.format_exc()) |
|
1743 | 1743 | return dummy |
|
1744 | 1744 | |
|
1745 | 1745 | @changeset_cache.setter |
|
1746 | 1746 | def changeset_cache(self, val): |
|
1747 | 1747 | try: |
|
1748 | 1748 | self._changeset_cache = json.dumps(val) |
|
1749 | 1749 | except Exception: |
|
1750 | 1750 | log.error(traceback.format_exc()) |
|
1751 | 1751 | |
|
1752 | 1752 | @hybrid_property |
|
1753 | 1753 | def repo_name(self): |
|
1754 | 1754 | return self._repo_name |
|
1755 | 1755 | |
|
1756 | 1756 | @repo_name.setter |
|
1757 | 1757 | def repo_name(self, value): |
|
1758 | 1758 | self._repo_name = value |
|
1759 | 1759 | self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest() |
|
1760 | 1760 | |
|
1761 | 1761 | @classmethod |
|
1762 | 1762 | def normalize_repo_name(cls, repo_name): |
|
1763 | 1763 | """ |
|
1764 | 1764 | Normalizes os specific repo_name to the format internally stored inside |
|
1765 | 1765 | database using URL_SEP |
|
1766 | 1766 | |
|
1767 | 1767 | :param cls: |
|
1768 | 1768 | :param repo_name: |
|
1769 | 1769 | """ |
|
1770 | 1770 | return cls.NAME_SEP.join(repo_name.split(os.sep)) |
|
1771 | 1771 | |
|
1772 | 1772 | @classmethod |
|
1773 | 1773 | def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False): |
|
1774 | 1774 | session = Session() |
|
1775 | 1775 | q = session.query(cls).filter(cls.repo_name == repo_name) |
|
1776 | 1776 | |
|
1777 | 1777 | if cache: |
|
1778 | 1778 | if identity_cache: |
|
1779 | 1779 | val = cls.identity_cache(session, 'repo_name', repo_name) |
|
1780 | 1780 | if val: |
|
1781 | 1781 | return val |
|
1782 | 1782 | else: |
|
1783 | 1783 | cache_key = "get_repo_by_name_%s" % _hash_key(repo_name) |
|
1784 | 1784 | q = q.options( |
|
1785 | 1785 | FromCache("sql_cache_short", cache_key)) |
|
1786 | 1786 | |
|
1787 | 1787 | return q.scalar() |
|
1788 | 1788 | |
|
1789 | 1789 | @classmethod |
|
1790 | 1790 | def get_by_id_or_repo_name(cls, repoid): |
|
1791 | 1791 | if isinstance(repoid, (int, long)): |
|
1792 | 1792 | try: |
|
1793 | 1793 | repo = cls.get(repoid) |
|
1794 | 1794 | except ValueError: |
|
1795 | 1795 | repo = None |
|
1796 | 1796 | else: |
|
1797 | 1797 | repo = cls.get_by_repo_name(repoid) |
|
1798 | 1798 | return repo |
|
1799 | 1799 | |
|
1800 | 1800 | @classmethod |
|
1801 | 1801 | def get_by_full_path(cls, repo_full_path): |
|
1802 | 1802 | repo_name = repo_full_path.split(cls.base_path(), 1)[-1] |
|
1803 | 1803 | repo_name = cls.normalize_repo_name(repo_name) |
|
1804 | 1804 | return cls.get_by_repo_name(repo_name.strip(URL_SEP)) |
|
1805 | 1805 | |
|
1806 | 1806 | @classmethod |
|
1807 | 1807 | def get_repo_forks(cls, repo_id): |
|
1808 | 1808 | return cls.query().filter(Repository.fork_id == repo_id) |
|
1809 | 1809 | |
|
1810 | 1810 | @classmethod |
|
1811 | 1811 | def base_path(cls): |
|
1812 | 1812 | """ |
|
1813 | 1813 | Returns base path when all repos are stored |
|
1814 | 1814 | |
|
1815 | 1815 | :param cls: |
|
1816 | 1816 | """ |
|
1817 | 1817 | q = Session().query(RhodeCodeUi)\ |
|
1818 | 1818 | .filter(RhodeCodeUi.ui_key == cls.NAME_SEP) |
|
1819 | 1819 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1820 | 1820 | return q.one().ui_value |
|
1821 | 1821 | |
|
1822 | 1822 | @classmethod |
|
1823 | 1823 | def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None), |
|
1824 | 1824 | case_insensitive=True, archived=False): |
|
1825 | 1825 | q = Repository.query() |
|
1826 | 1826 | |
|
1827 | 1827 | if not archived: |
|
1828 | 1828 | q = q.filter(Repository.archived.isnot(true())) |
|
1829 | 1829 | |
|
1830 | 1830 | if not isinstance(user_id, Optional): |
|
1831 | 1831 | q = q.filter(Repository.user_id == user_id) |
|
1832 | 1832 | |
|
1833 | 1833 | if not isinstance(group_id, Optional): |
|
1834 | 1834 | q = q.filter(Repository.group_id == group_id) |
|
1835 | 1835 | |
|
1836 | 1836 | if case_insensitive: |
|
1837 | 1837 | q = q.order_by(func.lower(Repository.repo_name)) |
|
1838 | 1838 | else: |
|
1839 | 1839 | q = q.order_by(Repository.repo_name) |
|
1840 | 1840 | |
|
1841 | 1841 | return q.all() |
|
1842 | 1842 | |
|
1843 | 1843 | @property |
|
1844 | def repo_uid(self): | |
|
1845 | return '_{}'.format(self.repo_id) | |
|
1846 | ||
|
1847 | @property | |
|
1844 | 1848 | def forks(self): |
|
1845 | 1849 | """ |
|
1846 | 1850 | Return forks of this repo |
|
1847 | 1851 | """ |
|
1848 | 1852 | return Repository.get_repo_forks(self.repo_id) |
|
1849 | 1853 | |
|
1850 | 1854 | @property |
|
1851 | 1855 | def parent(self): |
|
1852 | 1856 | """ |
|
1853 | 1857 | Returns fork parent |
|
1854 | 1858 | """ |
|
1855 | 1859 | return self.fork |
|
1856 | 1860 | |
|
1857 | 1861 | @property |
|
1858 | 1862 | def just_name(self): |
|
1859 | 1863 | return self.repo_name.split(self.NAME_SEP)[-1] |
|
1860 | 1864 | |
|
1861 | 1865 | @property |
|
1862 | 1866 | def groups_with_parents(self): |
|
1863 | 1867 | groups = [] |
|
1864 | 1868 | if self.group is None: |
|
1865 | 1869 | return groups |
|
1866 | 1870 | |
|
1867 | 1871 | cur_gr = self.group |
|
1868 | 1872 | groups.insert(0, cur_gr) |
|
1869 | 1873 | while 1: |
|
1870 | 1874 | gr = getattr(cur_gr, 'parent_group', None) |
|
1871 | 1875 | cur_gr = cur_gr.parent_group |
|
1872 | 1876 | if gr is None: |
|
1873 | 1877 | break |
|
1874 | 1878 | groups.insert(0, gr) |
|
1875 | 1879 | |
|
1876 | 1880 | return groups |
|
1877 | 1881 | |
|
1878 | 1882 | @property |
|
1879 | 1883 | def groups_and_repo(self): |
|
1880 | 1884 | return self.groups_with_parents, self |
|
1881 | 1885 | |
|
1882 | 1886 | @LazyProperty |
|
1883 | 1887 | def repo_path(self): |
|
1884 | 1888 | """ |
|
1885 | 1889 | Returns base full path for that repository means where it actually |
|
1886 | 1890 | exists on a filesystem |
|
1887 | 1891 | """ |
|
1888 | 1892 | q = Session().query(RhodeCodeUi).filter( |
|
1889 | 1893 | RhodeCodeUi.ui_key == self.NAME_SEP) |
|
1890 | 1894 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1891 | 1895 | return q.one().ui_value |
|
1892 | 1896 | |
|
1893 | 1897 | @property |
|
1894 | 1898 | def repo_full_path(self): |
|
1895 | 1899 | p = [self.repo_path] |
|
1896 | 1900 | # we need to split the name by / since this is how we store the |
|
1897 | 1901 | # names in the database, but that eventually needs to be converted |
|
1898 | 1902 | # into a valid system path |
|
1899 | 1903 | p += self.repo_name.split(self.NAME_SEP) |
|
1900 | 1904 | return os.path.join(*map(safe_unicode, p)) |
|
1901 | 1905 | |
|
1902 | 1906 | @property |
|
1903 | 1907 | def cache_keys(self): |
|
1904 | 1908 | """ |
|
1905 | 1909 | Returns associated cache keys for that repo |
|
1906 | 1910 | """ |
|
1907 | 1911 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
1908 | 1912 | repo_id=self.repo_id) |
|
1909 | 1913 | return CacheKey.query()\ |
|
1910 | 1914 | .filter(CacheKey.cache_args == invalidation_namespace)\ |
|
1911 | 1915 | .order_by(CacheKey.cache_key)\ |
|
1912 | 1916 | .all() |
|
1913 | 1917 | |
|
1914 | 1918 | @property |
|
1915 | 1919 | def cached_diffs_relative_dir(self): |
|
1916 | 1920 | """ |
|
1917 | 1921 | Return a relative to the repository store path of cached diffs |
|
1918 | 1922 | used for safe display for users, who shouldn't know the absolute store |
|
1919 | 1923 | path |
|
1920 | 1924 | """ |
|
1921 | 1925 | return os.path.join( |
|
1922 | 1926 | os.path.dirname(self.repo_name), |
|
1923 | 1927 | self.cached_diffs_dir.split(os.path.sep)[-1]) |
|
1924 | 1928 | |
|
1925 | 1929 | @property |
|
1926 | 1930 | def cached_diffs_dir(self): |
|
1927 | 1931 | path = self.repo_full_path |
|
1928 | 1932 | return os.path.join( |
|
1929 | 1933 | os.path.dirname(path), |
|
1930 | 1934 | '.__shadow_diff_cache_repo_{}'.format(self.repo_id)) |
|
1931 | 1935 | |
|
1932 | 1936 | def cached_diffs(self): |
|
1933 | 1937 | diff_cache_dir = self.cached_diffs_dir |
|
1934 | 1938 | if os.path.isdir(diff_cache_dir): |
|
1935 | 1939 | return os.listdir(diff_cache_dir) |
|
1936 | 1940 | return [] |
|
1937 | 1941 | |
|
1938 | 1942 | def shadow_repos(self): |
|
1939 | 1943 | shadow_repos_pattern = '.__shadow_repo_{}'.format(self.repo_id) |
|
1940 | 1944 | return [ |
|
1941 | 1945 | x for x in os.listdir(os.path.dirname(self.repo_full_path)) |
|
1942 | 1946 | if x.startswith(shadow_repos_pattern)] |
|
1943 | 1947 | |
|
1944 | 1948 | def get_new_name(self, repo_name): |
|
1945 | 1949 | """ |
|
1946 | 1950 | returns new full repository name based on assigned group and new new |
|
1947 | 1951 | |
|
1948 | 1952 | :param group_name: |
|
1949 | 1953 | """ |
|
1950 | 1954 | path_prefix = self.group.full_path_splitted if self.group else [] |
|
1951 | 1955 | return self.NAME_SEP.join(path_prefix + [repo_name]) |
|
1952 | 1956 | |
|
1953 | 1957 | @property |
|
1954 | 1958 | def _config(self): |
|
1955 | 1959 | """ |
|
1956 | 1960 | Returns db based config object. |
|
1957 | 1961 | """ |
|
1958 | 1962 | from rhodecode.lib.utils import make_db_config |
|
1959 | 1963 | return make_db_config(clear_session=False, repo=self) |
|
1960 | 1964 | |
|
1961 | 1965 | def permissions(self, with_admins=True, with_owner=True, |
|
1962 | 1966 | expand_from_user_groups=False): |
|
1963 | 1967 | """ |
|
1964 | 1968 | Permissions for repositories |
|
1965 | 1969 | """ |
|
1966 | 1970 | _admin_perm = 'repository.admin' |
|
1967 | 1971 | |
|
1968 | 1972 | owner_row = [] |
|
1969 | 1973 | if with_owner: |
|
1970 | 1974 | usr = AttributeDict(self.user.get_dict()) |
|
1971 | 1975 | usr.owner_row = True |
|
1972 | 1976 | usr.permission = _admin_perm |
|
1973 | 1977 | usr.permission_id = None |
|
1974 | 1978 | owner_row.append(usr) |
|
1975 | 1979 | |
|
1976 | 1980 | super_admin_ids = [] |
|
1977 | 1981 | super_admin_rows = [] |
|
1978 | 1982 | if with_admins: |
|
1979 | 1983 | for usr in User.get_all_super_admins(): |
|
1980 | 1984 | super_admin_ids.append(usr.user_id) |
|
1981 | 1985 | # if this admin is also owner, don't double the record |
|
1982 | 1986 | if usr.user_id == owner_row[0].user_id: |
|
1983 | 1987 | owner_row[0].admin_row = True |
|
1984 | 1988 | else: |
|
1985 | 1989 | usr = AttributeDict(usr.get_dict()) |
|
1986 | 1990 | usr.admin_row = True |
|
1987 | 1991 | usr.permission = _admin_perm |
|
1988 | 1992 | usr.permission_id = None |
|
1989 | 1993 | super_admin_rows.append(usr) |
|
1990 | 1994 | |
|
1991 | 1995 | q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self) |
|
1992 | 1996 | q = q.options(joinedload(UserRepoToPerm.repository), |
|
1993 | 1997 | joinedload(UserRepoToPerm.user), |
|
1994 | 1998 | joinedload(UserRepoToPerm.permission),) |
|
1995 | 1999 | |
|
1996 | 2000 | # get owners and admins and permissions. We do a trick of re-writing |
|
1997 | 2001 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1998 | 2002 | # has a global reference and changing one object propagates to all |
|
1999 | 2003 | # others. This means if admin is also an owner admin_row that change |
|
2000 | 2004 | # would propagate to both objects |
|
2001 | 2005 | perm_rows = [] |
|
2002 | 2006 | for _usr in q.all(): |
|
2003 | 2007 | usr = AttributeDict(_usr.user.get_dict()) |
|
2004 | 2008 | # if this user is also owner/admin, mark as duplicate record |
|
2005 | 2009 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
2006 | 2010 | usr.duplicate_perm = True |
|
2007 | 2011 | # also check if this permission is maybe used by branch_permissions |
|
2008 | 2012 | if _usr.branch_perm_entry: |
|
2009 | 2013 | usr.branch_rules = [x.branch_rule_id for x in _usr.branch_perm_entry] |
|
2010 | 2014 | |
|
2011 | 2015 | usr.permission = _usr.permission.permission_name |
|
2012 | 2016 | usr.permission_id = _usr.repo_to_perm_id |
|
2013 | 2017 | perm_rows.append(usr) |
|
2014 | 2018 | |
|
2015 | 2019 | # filter the perm rows by 'default' first and then sort them by |
|
2016 | 2020 | # admin,write,read,none permissions sorted again alphabetically in |
|
2017 | 2021 | # each group |
|
2018 | 2022 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
2019 | 2023 | |
|
2020 | 2024 | user_groups_rows = [] |
|
2021 | 2025 | if expand_from_user_groups: |
|
2022 | 2026 | for ug in self.permission_user_groups(with_members=True): |
|
2023 | 2027 | for user_data in ug.members: |
|
2024 | 2028 | user_groups_rows.append(user_data) |
|
2025 | 2029 | |
|
2026 | 2030 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
2027 | 2031 | |
|
2028 | 2032 | def permission_user_groups(self, with_members=True): |
|
2029 | 2033 | q = UserGroupRepoToPerm.query()\ |
|
2030 | 2034 | .filter(UserGroupRepoToPerm.repository == self) |
|
2031 | 2035 | q = q.options(joinedload(UserGroupRepoToPerm.repository), |
|
2032 | 2036 | joinedload(UserGroupRepoToPerm.users_group), |
|
2033 | 2037 | joinedload(UserGroupRepoToPerm.permission),) |
|
2034 | 2038 | |
|
2035 | 2039 | perm_rows = [] |
|
2036 | 2040 | for _user_group in q.all(): |
|
2037 | 2041 | entry = AttributeDict(_user_group.users_group.get_dict()) |
|
2038 | 2042 | entry.permission = _user_group.permission.permission_name |
|
2039 | 2043 | if with_members: |
|
2040 | 2044 | entry.members = [x.user.get_dict() |
|
2041 | 2045 | for x in _user_group.users_group.members] |
|
2042 | 2046 | perm_rows.append(entry) |
|
2043 | 2047 | |
|
2044 | 2048 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
2045 | 2049 | return perm_rows |
|
2046 | 2050 | |
|
2047 | 2051 | def get_api_data(self, include_secrets=False): |
|
2048 | 2052 | """ |
|
2049 | 2053 | Common function for generating repo api data |
|
2050 | 2054 | |
|
2051 | 2055 | :param include_secrets: See :meth:`User.get_api_data`. |
|
2052 | 2056 | |
|
2053 | 2057 | """ |
|
2054 | 2058 | # TODO: mikhail: Here there is an anti-pattern, we probably need to |
|
2055 | 2059 | # move this methods on models level. |
|
2056 | 2060 | from rhodecode.model.settings import SettingsModel |
|
2057 | 2061 | from rhodecode.model.repo import RepoModel |
|
2058 | 2062 | |
|
2059 | 2063 | repo = self |
|
2060 | 2064 | _user_id, _time, _reason = self.locked |
|
2061 | 2065 | |
|
2062 | 2066 | data = { |
|
2063 | 2067 | 'repo_id': repo.repo_id, |
|
2064 | 2068 | 'repo_name': repo.repo_name, |
|
2065 | 2069 | 'repo_type': repo.repo_type, |
|
2066 | 2070 | 'clone_uri': repo.clone_uri or '', |
|
2067 | 2071 | 'push_uri': repo.push_uri or '', |
|
2068 | 2072 | 'url': RepoModel().get_url(self), |
|
2069 | 2073 | 'private': repo.private, |
|
2070 | 2074 | 'created_on': repo.created_on, |
|
2071 | 2075 | 'description': repo.description_safe, |
|
2072 | 2076 | 'landing_rev': repo.landing_rev, |
|
2073 | 2077 | 'owner': repo.user.username, |
|
2074 | 2078 | 'fork_of': repo.fork.repo_name if repo.fork else None, |
|
2075 | 2079 | 'fork_of_id': repo.fork.repo_id if repo.fork else None, |
|
2076 | 2080 | 'enable_statistics': repo.enable_statistics, |
|
2077 | 2081 | 'enable_locking': repo.enable_locking, |
|
2078 | 2082 | 'enable_downloads': repo.enable_downloads, |
|
2079 | 2083 | 'last_changeset': repo.changeset_cache, |
|
2080 | 2084 | 'locked_by': User.get(_user_id).get_api_data( |
|
2081 | 2085 | include_secrets=include_secrets) if _user_id else None, |
|
2082 | 2086 | 'locked_date': time_to_datetime(_time) if _time else None, |
|
2083 | 2087 | 'lock_reason': _reason if _reason else None, |
|
2084 | 2088 | } |
|
2085 | 2089 | |
|
2086 | 2090 | # TODO: mikhail: should be per-repo settings here |
|
2087 | 2091 | rc_config = SettingsModel().get_all_settings() |
|
2088 | 2092 | repository_fields = str2bool( |
|
2089 | 2093 | rc_config.get('rhodecode_repository_fields')) |
|
2090 | 2094 | if repository_fields: |
|
2091 | 2095 | for f in self.extra_fields: |
|
2092 | 2096 | data[f.field_key_prefixed] = f.field_value |
|
2093 | 2097 | |
|
2094 | 2098 | return data |
|
2095 | 2099 | |
|
2096 | 2100 | @classmethod |
|
2097 | 2101 | def lock(cls, repo, user_id, lock_time=None, lock_reason=None): |
|
2098 | 2102 | if not lock_time: |
|
2099 | 2103 | lock_time = time.time() |
|
2100 | 2104 | if not lock_reason: |
|
2101 | 2105 | lock_reason = cls.LOCK_AUTOMATIC |
|
2102 | 2106 | repo.locked = [user_id, lock_time, lock_reason] |
|
2103 | 2107 | Session().add(repo) |
|
2104 | 2108 | Session().commit() |
|
2105 | 2109 | |
|
2106 | 2110 | @classmethod |
|
2107 | 2111 | def unlock(cls, repo): |
|
2108 | 2112 | repo.locked = None |
|
2109 | 2113 | Session().add(repo) |
|
2110 | 2114 | Session().commit() |
|
2111 | 2115 | |
|
2112 | 2116 | @classmethod |
|
2113 | 2117 | def getlock(cls, repo): |
|
2114 | 2118 | return repo.locked |
|
2115 | 2119 | |
|
2116 | 2120 | def is_user_lock(self, user_id): |
|
2117 | 2121 | if self.lock[0]: |
|
2118 | 2122 | lock_user_id = safe_int(self.lock[0]) |
|
2119 | 2123 | user_id = safe_int(user_id) |
|
2120 | 2124 | # both are ints, and they are equal |
|
2121 | 2125 | return all([lock_user_id, user_id]) and lock_user_id == user_id |
|
2122 | 2126 | |
|
2123 | 2127 | return False |
|
2124 | 2128 | |
|
2125 | 2129 | def get_locking_state(self, action, user_id, only_when_enabled=True): |
|
2126 | 2130 | """ |
|
2127 | 2131 | Checks locking on this repository, if locking is enabled and lock is |
|
2128 | 2132 | present returns a tuple of make_lock, locked, locked_by. |
|
2129 | 2133 | make_lock can have 3 states None (do nothing) True, make lock |
|
2130 | 2134 | False release lock, This value is later propagated to hooks, which |
|
2131 | 2135 | do the locking. Think about this as signals passed to hooks what to do. |
|
2132 | 2136 | |
|
2133 | 2137 | """ |
|
2134 | 2138 | # TODO: johbo: This is part of the business logic and should be moved |
|
2135 | 2139 | # into the RepositoryModel. |
|
2136 | 2140 | |
|
2137 | 2141 | if action not in ('push', 'pull'): |
|
2138 | 2142 | raise ValueError("Invalid action value: %s" % repr(action)) |
|
2139 | 2143 | |
|
2140 | 2144 | # defines if locked error should be thrown to user |
|
2141 | 2145 | currently_locked = False |
|
2142 | 2146 | # defines if new lock should be made, tri-state |
|
2143 | 2147 | make_lock = None |
|
2144 | 2148 | repo = self |
|
2145 | 2149 | user = User.get(user_id) |
|
2146 | 2150 | |
|
2147 | 2151 | lock_info = repo.locked |
|
2148 | 2152 | |
|
2149 | 2153 | if repo and (repo.enable_locking or not only_when_enabled): |
|
2150 | 2154 | if action == 'push': |
|
2151 | 2155 | # check if it's already locked !, if it is compare users |
|
2152 | 2156 | locked_by_user_id = lock_info[0] |
|
2153 | 2157 | if user.user_id == locked_by_user_id: |
|
2154 | 2158 | log.debug( |
|
2155 | 2159 | 'Got `push` action from user %s, now unlocking', user) |
|
2156 | 2160 | # unlock if we have push from user who locked |
|
2157 | 2161 | make_lock = False |
|
2158 | 2162 | else: |
|
2159 | 2163 | # we're not the same user who locked, ban with |
|
2160 | 2164 | # code defined in settings (default is 423 HTTP Locked) ! |
|
2161 | 2165 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
2162 | 2166 | currently_locked = True |
|
2163 | 2167 | elif action == 'pull': |
|
2164 | 2168 | # [0] user [1] date |
|
2165 | 2169 | if lock_info[0] and lock_info[1]: |
|
2166 | 2170 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
2167 | 2171 | currently_locked = True |
|
2168 | 2172 | else: |
|
2169 | 2173 | log.debug('Setting lock on repo %s by %s', repo, user) |
|
2170 | 2174 | make_lock = True |
|
2171 | 2175 | |
|
2172 | 2176 | else: |
|
2173 | 2177 | log.debug('Repository %s do not have locking enabled', repo) |
|
2174 | 2178 | |
|
2175 | 2179 | log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s', |
|
2176 | 2180 | make_lock, currently_locked, lock_info) |
|
2177 | 2181 | |
|
2178 | 2182 | from rhodecode.lib.auth import HasRepoPermissionAny |
|
2179 | 2183 | perm_check = HasRepoPermissionAny('repository.write', 'repository.admin') |
|
2180 | 2184 | if make_lock and not perm_check(repo_name=repo.repo_name, user=user): |
|
2181 | 2185 | # if we don't have at least write permission we cannot make a lock |
|
2182 | 2186 | log.debug('lock state reset back to FALSE due to lack ' |
|
2183 | 2187 | 'of at least read permission') |
|
2184 | 2188 | make_lock = False |
|
2185 | 2189 | |
|
2186 | 2190 | return make_lock, currently_locked, lock_info |
|
2187 | 2191 | |
|
2188 | 2192 | @property |
|
2189 | 2193 | def last_commit_cache_update_diff(self): |
|
2190 | 2194 | return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0) |
|
2191 | 2195 | |
|
2192 | 2196 | @property |
|
2193 | 2197 | def last_commit_change(self): |
|
2194 | 2198 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2195 | 2199 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2196 | 2200 | date_latest = self.changeset_cache.get('date', empty_date) |
|
2197 | 2201 | try: |
|
2198 | 2202 | return parse_datetime(date_latest) |
|
2199 | 2203 | except Exception: |
|
2200 | 2204 | return empty_date |
|
2201 | 2205 | |
|
2202 | 2206 | @property |
|
2203 | 2207 | def last_db_change(self): |
|
2204 | 2208 | return self.updated_on |
|
2205 | 2209 | |
|
2206 | 2210 | @property |
|
2207 | 2211 | def clone_uri_hidden(self): |
|
2208 | 2212 | clone_uri = self.clone_uri |
|
2209 | 2213 | if clone_uri: |
|
2210 | 2214 | import urlobject |
|
2211 | 2215 | url_obj = urlobject.URLObject(cleaned_uri(clone_uri)) |
|
2212 | 2216 | if url_obj.password: |
|
2213 | 2217 | clone_uri = url_obj.with_password('*****') |
|
2214 | 2218 | return clone_uri |
|
2215 | 2219 | |
|
2216 | 2220 | @property |
|
2217 | 2221 | def push_uri_hidden(self): |
|
2218 | 2222 | push_uri = self.push_uri |
|
2219 | 2223 | if push_uri: |
|
2220 | 2224 | import urlobject |
|
2221 | 2225 | url_obj = urlobject.URLObject(cleaned_uri(push_uri)) |
|
2222 | 2226 | if url_obj.password: |
|
2223 | 2227 | push_uri = url_obj.with_password('*****') |
|
2224 | 2228 | return push_uri |
|
2225 | 2229 | |
|
2226 | 2230 | def clone_url(self, **override): |
|
2227 | 2231 | from rhodecode.model.settings import SettingsModel |
|
2228 | 2232 | |
|
2229 | 2233 | uri_tmpl = None |
|
2230 | 2234 | if 'with_id' in override: |
|
2231 | 2235 | uri_tmpl = self.DEFAULT_CLONE_URI_ID |
|
2232 | 2236 | del override['with_id'] |
|
2233 | 2237 | |
|
2234 | 2238 | if 'uri_tmpl' in override: |
|
2235 | 2239 | uri_tmpl = override['uri_tmpl'] |
|
2236 | 2240 | del override['uri_tmpl'] |
|
2237 | 2241 | |
|
2238 | 2242 | ssh = False |
|
2239 | 2243 | if 'ssh' in override: |
|
2240 | 2244 | ssh = True |
|
2241 | 2245 | del override['ssh'] |
|
2242 | 2246 | |
|
2243 | 2247 | # we didn't override our tmpl from **overrides |
|
2244 | 2248 | if not uri_tmpl: |
|
2245 | 2249 | rc_config = SettingsModel().get_all_settings(cache=True) |
|
2246 | 2250 | if ssh: |
|
2247 | 2251 | uri_tmpl = rc_config.get( |
|
2248 | 2252 | 'rhodecode_clone_uri_ssh_tmpl') or self.DEFAULT_CLONE_URI_SSH |
|
2249 | 2253 | else: |
|
2250 | 2254 | uri_tmpl = rc_config.get( |
|
2251 | 2255 | 'rhodecode_clone_uri_tmpl') or self.DEFAULT_CLONE_URI |
|
2252 | 2256 | |
|
2253 | 2257 | request = get_current_request() |
|
2254 | 2258 | return get_clone_url(request=request, |
|
2255 | 2259 | uri_tmpl=uri_tmpl, |
|
2256 | 2260 | repo_name=self.repo_name, |
|
2257 | 2261 | repo_id=self.repo_id, **override) |
|
2258 | 2262 | |
|
2259 | 2263 | def set_state(self, state): |
|
2260 | 2264 | self.repo_state = state |
|
2261 | 2265 | Session().add(self) |
|
2262 | 2266 | #========================================================================== |
|
2263 | 2267 | # SCM PROPERTIES |
|
2264 | 2268 | #========================================================================== |
|
2265 | 2269 | |
|
2266 | 2270 | def get_commit(self, commit_id=None, commit_idx=None, pre_load=None): |
|
2267 | 2271 | return get_commit_safe( |
|
2268 | 2272 | self.scm_instance(), commit_id, commit_idx, pre_load=pre_load) |
|
2269 | 2273 | |
|
2270 | 2274 | def get_changeset(self, rev=None, pre_load=None): |
|
2271 | 2275 | warnings.warn("Use get_commit", DeprecationWarning) |
|
2272 | 2276 | commit_id = None |
|
2273 | 2277 | commit_idx = None |
|
2274 | 2278 | if isinstance(rev, compat.string_types): |
|
2275 | 2279 | commit_id = rev |
|
2276 | 2280 | else: |
|
2277 | 2281 | commit_idx = rev |
|
2278 | 2282 | return self.get_commit(commit_id=commit_id, commit_idx=commit_idx, |
|
2279 | 2283 | pre_load=pre_load) |
|
2280 | 2284 | |
|
2281 | 2285 | def get_landing_commit(self): |
|
2282 | 2286 | """ |
|
2283 | 2287 | Returns landing commit, or if that doesn't exist returns the tip |
|
2284 | 2288 | """ |
|
2285 | 2289 | _rev_type, _rev = self.landing_rev |
|
2286 | 2290 | commit = self.get_commit(_rev) |
|
2287 | 2291 | if isinstance(commit, EmptyCommit): |
|
2288 | 2292 | return self.get_commit() |
|
2289 | 2293 | return commit |
|
2290 | 2294 | |
|
2291 | 2295 | def update_commit_cache(self, cs_cache=None, config=None): |
|
2292 | 2296 | """ |
|
2293 | 2297 | Update cache of last changeset for repository, keys should be:: |
|
2294 | 2298 | |
|
2295 | 2299 | source_repo_id |
|
2296 | 2300 | short_id |
|
2297 | 2301 | raw_id |
|
2298 | 2302 | revision |
|
2299 | 2303 | parents |
|
2300 | 2304 | message |
|
2301 | 2305 | date |
|
2302 | 2306 | author |
|
2303 | 2307 | updated_on |
|
2304 | 2308 | |
|
2305 | 2309 | """ |
|
2306 | 2310 | from rhodecode.lib.vcs.backends.base import BaseChangeset |
|
2307 | 2311 | if cs_cache is None: |
|
2308 | 2312 | # use no-cache version here |
|
2309 | 2313 | scm_repo = self.scm_instance(cache=False, config=config) |
|
2310 | 2314 | |
|
2311 | 2315 | empty = scm_repo is None or scm_repo.is_empty() |
|
2312 | 2316 | if not empty: |
|
2313 | 2317 | cs_cache = scm_repo.get_commit( |
|
2314 | 2318 | pre_load=["author", "date", "message", "parents"]) |
|
2315 | 2319 | else: |
|
2316 | 2320 | cs_cache = EmptyCommit() |
|
2317 | 2321 | |
|
2318 | 2322 | if isinstance(cs_cache, BaseChangeset): |
|
2319 | 2323 | cs_cache = cs_cache.__json__() |
|
2320 | 2324 | |
|
2321 | 2325 | def is_outdated(new_cs_cache): |
|
2322 | 2326 | if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or |
|
2323 | 2327 | new_cs_cache['revision'] != self.changeset_cache['revision']): |
|
2324 | 2328 | return True |
|
2325 | 2329 | return False |
|
2326 | 2330 | |
|
2327 | 2331 | # check if we have maybe already latest cached revision |
|
2328 | 2332 | if is_outdated(cs_cache) or not self.changeset_cache: |
|
2329 | 2333 | _default = datetime.datetime.utcnow() |
|
2330 | 2334 | last_change = cs_cache.get('date') or _default |
|
2331 | 2335 | # we check if last update is newer than the new value |
|
2332 | 2336 | # if yes, we use the current timestamp instead. Imagine you get |
|
2333 | 2337 | # old commit pushed 1y ago, we'd set last update 1y to ago. |
|
2334 | 2338 | last_change_timestamp = datetime_to_time(last_change) |
|
2335 | 2339 | current_timestamp = datetime_to_time(last_change) |
|
2336 | 2340 | if last_change_timestamp > current_timestamp: |
|
2337 | 2341 | cs_cache['date'] = _default |
|
2338 | 2342 | |
|
2339 | 2343 | cs_cache['updated_on'] = time.time() |
|
2340 | 2344 | self.changeset_cache = cs_cache |
|
2341 | 2345 | Session().add(self) |
|
2342 | 2346 | Session().commit() |
|
2343 | 2347 | |
|
2344 | 2348 | log.debug('updated repo %s with new commit cache %s', |
|
2345 | 2349 | self.repo_name, cs_cache) |
|
2346 | 2350 | else: |
|
2347 | 2351 | cs_cache = self.changeset_cache |
|
2348 | 2352 | cs_cache['updated_on'] = time.time() |
|
2349 | 2353 | self.changeset_cache = cs_cache |
|
2350 | 2354 | Session().add(self) |
|
2351 | 2355 | Session().commit() |
|
2352 | 2356 | |
|
2353 | 2357 | log.debug('Skipping update_commit_cache for repo:`%s` ' |
|
2354 | 2358 | 'commit already with latest changes', self.repo_name) |
|
2355 | 2359 | |
|
2356 | 2360 | @property |
|
2357 | 2361 | def tip(self): |
|
2358 | 2362 | return self.get_commit('tip') |
|
2359 | 2363 | |
|
2360 | 2364 | @property |
|
2361 | 2365 | def author(self): |
|
2362 | 2366 | return self.tip.author |
|
2363 | 2367 | |
|
2364 | 2368 | @property |
|
2365 | 2369 | def last_change(self): |
|
2366 | 2370 | return self.scm_instance().last_change |
|
2367 | 2371 | |
|
2368 | 2372 | def get_comments(self, revisions=None): |
|
2369 | 2373 | """ |
|
2370 | 2374 | Returns comments for this repository grouped by revisions |
|
2371 | 2375 | |
|
2372 | 2376 | :param revisions: filter query by revisions only |
|
2373 | 2377 | """ |
|
2374 | 2378 | cmts = ChangesetComment.query()\ |
|
2375 | 2379 | .filter(ChangesetComment.repo == self) |
|
2376 | 2380 | if revisions: |
|
2377 | 2381 | cmts = cmts.filter(ChangesetComment.revision.in_(revisions)) |
|
2378 | 2382 | grouped = collections.defaultdict(list) |
|
2379 | 2383 | for cmt in cmts.all(): |
|
2380 | 2384 | grouped[cmt.revision].append(cmt) |
|
2381 | 2385 | return grouped |
|
2382 | 2386 | |
|
2383 | 2387 | def statuses(self, revisions=None): |
|
2384 | 2388 | """ |
|
2385 | 2389 | Returns statuses for this repository |
|
2386 | 2390 | |
|
2387 | 2391 | :param revisions: list of revisions to get statuses for |
|
2388 | 2392 | """ |
|
2389 | 2393 | statuses = ChangesetStatus.query()\ |
|
2390 | 2394 | .filter(ChangesetStatus.repo == self)\ |
|
2391 | 2395 | .filter(ChangesetStatus.version == 0) |
|
2392 | 2396 | |
|
2393 | 2397 | if revisions: |
|
2394 | 2398 | # Try doing the filtering in chunks to avoid hitting limits |
|
2395 | 2399 | size = 500 |
|
2396 | 2400 | status_results = [] |
|
2397 | 2401 | for chunk in xrange(0, len(revisions), size): |
|
2398 | 2402 | status_results += statuses.filter( |
|
2399 | 2403 | ChangesetStatus.revision.in_( |
|
2400 | 2404 | revisions[chunk: chunk+size]) |
|
2401 | 2405 | ).all() |
|
2402 | 2406 | else: |
|
2403 | 2407 | status_results = statuses.all() |
|
2404 | 2408 | |
|
2405 | 2409 | grouped = {} |
|
2406 | 2410 | |
|
2407 | 2411 | # maybe we have open new pullrequest without a status? |
|
2408 | 2412 | stat = ChangesetStatus.STATUS_UNDER_REVIEW |
|
2409 | 2413 | status_lbl = ChangesetStatus.get_status_lbl(stat) |
|
2410 | 2414 | for pr in PullRequest.query().filter(PullRequest.source_repo == self).all(): |
|
2411 | 2415 | for rev in pr.revisions: |
|
2412 | 2416 | pr_id = pr.pull_request_id |
|
2413 | 2417 | pr_repo = pr.target_repo.repo_name |
|
2414 | 2418 | grouped[rev] = [stat, status_lbl, pr_id, pr_repo] |
|
2415 | 2419 | |
|
2416 | 2420 | for stat in status_results: |
|
2417 | 2421 | pr_id = pr_repo = None |
|
2418 | 2422 | if stat.pull_request: |
|
2419 | 2423 | pr_id = stat.pull_request.pull_request_id |
|
2420 | 2424 | pr_repo = stat.pull_request.target_repo.repo_name |
|
2421 | 2425 | grouped[stat.revision] = [str(stat.status), stat.status_lbl, |
|
2422 | 2426 | pr_id, pr_repo] |
|
2423 | 2427 | return grouped |
|
2424 | 2428 | |
|
2425 | 2429 | # ========================================================================== |
|
2426 | 2430 | # SCM CACHE INSTANCE |
|
2427 | 2431 | # ========================================================================== |
|
2428 | 2432 | |
|
2429 | 2433 | def scm_instance(self, **kwargs): |
|
2430 | 2434 | import rhodecode |
|
2431 | 2435 | |
|
2432 | 2436 | # Passing a config will not hit the cache currently only used |
|
2433 | 2437 | # for repo2dbmapper |
|
2434 | 2438 | config = kwargs.pop('config', None) |
|
2435 | 2439 | cache = kwargs.pop('cache', None) |
|
2436 | 2440 | full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache')) |
|
2437 | 2441 | # if cache is NOT defined use default global, else we have a full |
|
2438 | 2442 | # control over cache behaviour |
|
2439 | 2443 | if cache is None and full_cache and not config: |
|
2440 | 2444 | return self._get_instance_cached() |
|
2441 | 2445 | # cache here is sent to the "vcs server" |
|
2442 | 2446 | return self._get_instance(cache=bool(cache), config=config) |
|
2443 | 2447 | |
|
2444 | 2448 | def _get_instance_cached(self): |
|
2445 | 2449 | from rhodecode.lib import rc_cache |
|
2446 | 2450 | |
|
2447 | 2451 | cache_namespace_uid = 'cache_repo_instance.{}'.format(self.repo_id) |
|
2448 | 2452 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
2449 | 2453 | repo_id=self.repo_id) |
|
2450 | 2454 | region = rc_cache.get_or_create_region('cache_repo_longterm', cache_namespace_uid) |
|
2451 | 2455 | |
|
2452 | 2456 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid) |
|
2453 | 2457 | def get_instance_cached(repo_id, context_id): |
|
2454 | 2458 | return self._get_instance() |
|
2455 | 2459 | |
|
2456 | 2460 | # we must use thread scoped cache here, |
|
2457 | 2461 | # because each thread of gevent needs it's own not shared connection and cache |
|
2458 | 2462 | # we also alter `args` so the cache key is individual for every green thread. |
|
2459 | 2463 | inv_context_manager = rc_cache.InvalidationContext( |
|
2460 | 2464 | uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace, |
|
2461 | 2465 | thread_scoped=True) |
|
2462 | 2466 | with inv_context_manager as invalidation_context: |
|
2463 | 2467 | args = (self.repo_id, inv_context_manager.cache_key) |
|
2464 | 2468 | # re-compute and store cache if we get invalidate signal |
|
2465 | 2469 | if invalidation_context.should_invalidate(): |
|
2466 | 2470 | instance = get_instance_cached.refresh(*args) |
|
2467 | 2471 | else: |
|
2468 | 2472 | instance = get_instance_cached(*args) |
|
2469 | 2473 | |
|
2470 | 2474 | log.debug('Repo instance fetched in %.3fs', inv_context_manager.compute_time) |
|
2471 | 2475 | return instance |
|
2472 | 2476 | |
|
2473 | 2477 | def _get_instance(self, cache=True, config=None): |
|
2474 | 2478 | config = config or self._config |
|
2475 | 2479 | custom_wire = { |
|
2476 | 2480 | 'cache': cache # controls the vcs.remote cache |
|
2477 | 2481 | } |
|
2478 | 2482 | repo = get_vcs_instance( |
|
2479 | 2483 | repo_path=safe_str(self.repo_full_path), |
|
2480 | 2484 | config=config, |
|
2481 | 2485 | with_wire=custom_wire, |
|
2482 | 2486 | create=False, |
|
2483 | 2487 | _vcs_alias=self.repo_type) |
|
2484 | 2488 | if repo is not None: |
|
2485 | 2489 | repo.count() # cache rebuild |
|
2486 | 2490 | return repo |
|
2487 | 2491 | |
|
2488 | 2492 | def __json__(self): |
|
2489 | 2493 | return {'landing_rev': self.landing_rev} |
|
2490 | 2494 | |
|
2491 | 2495 | def get_dict(self): |
|
2492 | 2496 | |
|
2493 | 2497 | # Since we transformed `repo_name` to a hybrid property, we need to |
|
2494 | 2498 | # keep compatibility with the code which uses `repo_name` field. |
|
2495 | 2499 | |
|
2496 | 2500 | result = super(Repository, self).get_dict() |
|
2497 | 2501 | result['repo_name'] = result.pop('_repo_name', None) |
|
2498 | 2502 | return result |
|
2499 | 2503 | |
|
2500 | 2504 | |
|
2501 | 2505 | class RepoGroup(Base, BaseModel): |
|
2502 | 2506 | __tablename__ = 'groups' |
|
2503 | 2507 | __table_args__ = ( |
|
2504 | 2508 | UniqueConstraint('group_name', 'group_parent_id'), |
|
2505 | 2509 | base_table_args, |
|
2506 | 2510 | ) |
|
2507 | 2511 | __mapper_args__ = {'order_by': 'group_name'} |
|
2508 | 2512 | |
|
2509 | 2513 | CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups |
|
2510 | 2514 | |
|
2511 | 2515 | group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2512 | 2516 | _group_name = Column("group_name", String(255), nullable=False, unique=True, default=None) |
|
2513 | 2517 | group_name_hash = Column("repo_group_name_hash", String(1024), nullable=False, unique=False) |
|
2514 | 2518 | group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None) |
|
2515 | 2519 | group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None) |
|
2516 | 2520 | enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False) |
|
2517 | 2521 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
2518 | 2522 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
2519 | 2523 | updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
2520 | 2524 | personal = Column('personal', Boolean(), nullable=True, unique=None, default=None) |
|
2521 | 2525 | _changeset_cache = Column( |
|
2522 | 2526 | "changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
2523 | 2527 | |
|
2524 | 2528 | repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id') |
|
2525 | 2529 | users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
2526 | 2530 | parent_group = relationship('RepoGroup', remote_side=group_id) |
|
2527 | 2531 | user = relationship('User') |
|
2528 | 2532 | integrations = relationship('Integration', cascade="all, delete, delete-orphan") |
|
2529 | 2533 | |
|
2530 | 2534 | def __init__(self, group_name='', parent_group=None): |
|
2531 | 2535 | self.group_name = group_name |
|
2532 | 2536 | self.parent_group = parent_group |
|
2533 | 2537 | |
|
2534 | 2538 | def __unicode__(self): |
|
2535 | 2539 | return u"<%s('id:%s:%s')>" % ( |
|
2536 | 2540 | self.__class__.__name__, self.group_id, self.group_name) |
|
2537 | 2541 | |
|
2538 | 2542 | @hybrid_property |
|
2539 | 2543 | def group_name(self): |
|
2540 | 2544 | return self._group_name |
|
2541 | 2545 | |
|
2542 | 2546 | @group_name.setter |
|
2543 | 2547 | def group_name(self, value): |
|
2544 | 2548 | self._group_name = value |
|
2545 | 2549 | self.group_name_hash = self.hash_repo_group_name(value) |
|
2546 | 2550 | |
|
2547 | 2551 | @hybrid_property |
|
2548 | 2552 | def changeset_cache(self): |
|
2549 | 2553 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
2550 | 2554 | dummy = EmptyCommit().__json__() |
|
2551 | 2555 | if not self._changeset_cache: |
|
2552 | 2556 | dummy['source_repo_id'] = '' |
|
2553 | 2557 | return json.loads(json.dumps(dummy)) |
|
2554 | 2558 | |
|
2555 | 2559 | try: |
|
2556 | 2560 | return json.loads(self._changeset_cache) |
|
2557 | 2561 | except TypeError: |
|
2558 | 2562 | return dummy |
|
2559 | 2563 | except Exception: |
|
2560 | 2564 | log.error(traceback.format_exc()) |
|
2561 | 2565 | return dummy |
|
2562 | 2566 | |
|
2563 | 2567 | @changeset_cache.setter |
|
2564 | 2568 | def changeset_cache(self, val): |
|
2565 | 2569 | try: |
|
2566 | 2570 | self._changeset_cache = json.dumps(val) |
|
2567 | 2571 | except Exception: |
|
2568 | 2572 | log.error(traceback.format_exc()) |
|
2569 | 2573 | |
|
2570 | 2574 | @validates('group_parent_id') |
|
2571 | 2575 | def validate_group_parent_id(self, key, val): |
|
2572 | 2576 | """ |
|
2573 | 2577 | Check cycle references for a parent group to self |
|
2574 | 2578 | """ |
|
2575 | 2579 | if self.group_id and val: |
|
2576 | 2580 | assert val != self.group_id |
|
2577 | 2581 | |
|
2578 | 2582 | return val |
|
2579 | 2583 | |
|
2580 | 2584 | @hybrid_property |
|
2581 | 2585 | def description_safe(self): |
|
2582 | 2586 | from rhodecode.lib import helpers as h |
|
2583 | 2587 | return h.escape(self.group_description) |
|
2584 | 2588 | |
|
2585 | 2589 | @classmethod |
|
2586 | 2590 | def hash_repo_group_name(cls, repo_group_name): |
|
2587 | 2591 | val = remove_formatting(repo_group_name) |
|
2588 | 2592 | val = safe_str(val).lower() |
|
2589 | 2593 | chars = [] |
|
2590 | 2594 | for c in val: |
|
2591 | 2595 | if c not in string.ascii_letters: |
|
2592 | 2596 | c = str(ord(c)) |
|
2593 | 2597 | chars.append(c) |
|
2594 | 2598 | |
|
2595 | 2599 | return ''.join(chars) |
|
2596 | 2600 | |
|
2597 | 2601 | @classmethod |
|
2598 | 2602 | def _generate_choice(cls, repo_group): |
|
2599 | 2603 | from webhelpers.html import literal as _literal |
|
2600 | 2604 | _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k)) |
|
2601 | 2605 | return repo_group.group_id, _name(repo_group.full_path_splitted) |
|
2602 | 2606 | |
|
2603 | 2607 | @classmethod |
|
2604 | 2608 | def groups_choices(cls, groups=None, show_empty_group=True): |
|
2605 | 2609 | if not groups: |
|
2606 | 2610 | groups = cls.query().all() |
|
2607 | 2611 | |
|
2608 | 2612 | repo_groups = [] |
|
2609 | 2613 | if show_empty_group: |
|
2610 | 2614 | repo_groups = [(-1, u'-- %s --' % _('No parent'))] |
|
2611 | 2615 | |
|
2612 | 2616 | repo_groups.extend([cls._generate_choice(x) for x in groups]) |
|
2613 | 2617 | |
|
2614 | 2618 | repo_groups = sorted( |
|
2615 | 2619 | repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0]) |
|
2616 | 2620 | return repo_groups |
|
2617 | 2621 | |
|
2618 | 2622 | @classmethod |
|
2619 | 2623 | def url_sep(cls): |
|
2620 | 2624 | return URL_SEP |
|
2621 | 2625 | |
|
2622 | 2626 | @classmethod |
|
2623 | 2627 | def get_by_group_name(cls, group_name, cache=False, case_insensitive=False): |
|
2624 | 2628 | if case_insensitive: |
|
2625 | 2629 | gr = cls.query().filter(func.lower(cls.group_name) |
|
2626 | 2630 | == func.lower(group_name)) |
|
2627 | 2631 | else: |
|
2628 | 2632 | gr = cls.query().filter(cls.group_name == group_name) |
|
2629 | 2633 | if cache: |
|
2630 | 2634 | name_key = _hash_key(group_name) |
|
2631 | 2635 | gr = gr.options( |
|
2632 | 2636 | FromCache("sql_cache_short", "get_group_%s" % name_key)) |
|
2633 | 2637 | return gr.scalar() |
|
2634 | 2638 | |
|
2635 | 2639 | @classmethod |
|
2636 | 2640 | def get_user_personal_repo_group(cls, user_id): |
|
2637 | 2641 | user = User.get(user_id) |
|
2638 | 2642 | if user.username == User.DEFAULT_USER: |
|
2639 | 2643 | return None |
|
2640 | 2644 | |
|
2641 | 2645 | return cls.query()\ |
|
2642 | 2646 | .filter(cls.personal == true()) \ |
|
2643 | 2647 | .filter(cls.user == user) \ |
|
2644 | 2648 | .order_by(cls.group_id.asc()) \ |
|
2645 | 2649 | .first() |
|
2646 | 2650 | |
|
2647 | 2651 | @classmethod |
|
2648 | 2652 | def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None), |
|
2649 | 2653 | case_insensitive=True): |
|
2650 | 2654 | q = RepoGroup.query() |
|
2651 | 2655 | |
|
2652 | 2656 | if not isinstance(user_id, Optional): |
|
2653 | 2657 | q = q.filter(RepoGroup.user_id == user_id) |
|
2654 | 2658 | |
|
2655 | 2659 | if not isinstance(group_id, Optional): |
|
2656 | 2660 | q = q.filter(RepoGroup.group_parent_id == group_id) |
|
2657 | 2661 | |
|
2658 | 2662 | if case_insensitive: |
|
2659 | 2663 | q = q.order_by(func.lower(RepoGroup.group_name)) |
|
2660 | 2664 | else: |
|
2661 | 2665 | q = q.order_by(RepoGroup.group_name) |
|
2662 | 2666 | return q.all() |
|
2663 | 2667 | |
|
2664 | 2668 | @property |
|
2665 | 2669 | def parents(self, parents_recursion_limit = 10): |
|
2666 | 2670 | groups = [] |
|
2667 | 2671 | if self.parent_group is None: |
|
2668 | 2672 | return groups |
|
2669 | 2673 | cur_gr = self.parent_group |
|
2670 | 2674 | groups.insert(0, cur_gr) |
|
2671 | 2675 | cnt = 0 |
|
2672 | 2676 | while 1: |
|
2673 | 2677 | cnt += 1 |
|
2674 | 2678 | gr = getattr(cur_gr, 'parent_group', None) |
|
2675 | 2679 | cur_gr = cur_gr.parent_group |
|
2676 | 2680 | if gr is None: |
|
2677 | 2681 | break |
|
2678 | 2682 | if cnt == parents_recursion_limit: |
|
2679 | 2683 | # this will prevent accidental infinit loops |
|
2680 | 2684 | log.error('more than %s parents found for group %s, stopping ' |
|
2681 | 2685 | 'recursive parent fetching', parents_recursion_limit, self) |
|
2682 | 2686 | break |
|
2683 | 2687 | |
|
2684 | 2688 | groups.insert(0, gr) |
|
2685 | 2689 | return groups |
|
2686 | 2690 | |
|
2687 | 2691 | @property |
|
2688 | 2692 | def last_commit_cache_update_diff(self): |
|
2689 | 2693 | return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0) |
|
2690 | 2694 | |
|
2691 | 2695 | @property |
|
2692 | 2696 | def last_commit_change(self): |
|
2693 | 2697 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2694 | 2698 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2695 | 2699 | date_latest = self.changeset_cache.get('date', empty_date) |
|
2696 | 2700 | try: |
|
2697 | 2701 | return parse_datetime(date_latest) |
|
2698 | 2702 | except Exception: |
|
2699 | 2703 | return empty_date |
|
2700 | 2704 | |
|
2701 | 2705 | @property |
|
2702 | 2706 | def last_db_change(self): |
|
2703 | 2707 | return self.updated_on |
|
2704 | 2708 | |
|
2705 | 2709 | @property |
|
2706 | 2710 | def children(self): |
|
2707 | 2711 | return RepoGroup.query().filter(RepoGroup.parent_group == self) |
|
2708 | 2712 | |
|
2709 | 2713 | @property |
|
2710 | 2714 | def name(self): |
|
2711 | 2715 | return self.group_name.split(RepoGroup.url_sep())[-1] |
|
2712 | 2716 | |
|
2713 | 2717 | @property |
|
2714 | 2718 | def full_path(self): |
|
2715 | 2719 | return self.group_name |
|
2716 | 2720 | |
|
2717 | 2721 | @property |
|
2718 | 2722 | def full_path_splitted(self): |
|
2719 | 2723 | return self.group_name.split(RepoGroup.url_sep()) |
|
2720 | 2724 | |
|
2721 | 2725 | @property |
|
2722 | 2726 | def repositories(self): |
|
2723 | 2727 | return Repository.query()\ |
|
2724 | 2728 | .filter(Repository.group == self)\ |
|
2725 | 2729 | .order_by(Repository.repo_name) |
|
2726 | 2730 | |
|
2727 | 2731 | @property |
|
2728 | 2732 | def repositories_recursive_count(self): |
|
2729 | 2733 | cnt = self.repositories.count() |
|
2730 | 2734 | |
|
2731 | 2735 | def children_count(group): |
|
2732 | 2736 | cnt = 0 |
|
2733 | 2737 | for child in group.children: |
|
2734 | 2738 | cnt += child.repositories.count() |
|
2735 | 2739 | cnt += children_count(child) |
|
2736 | 2740 | return cnt |
|
2737 | 2741 | |
|
2738 | 2742 | return cnt + children_count(self) |
|
2739 | 2743 | |
|
2740 | 2744 | def _recursive_objects(self, include_repos=True, include_groups=True): |
|
2741 | 2745 | all_ = [] |
|
2742 | 2746 | |
|
2743 | 2747 | def _get_members(root_gr): |
|
2744 | 2748 | if include_repos: |
|
2745 | 2749 | for r in root_gr.repositories: |
|
2746 | 2750 | all_.append(r) |
|
2747 | 2751 | childs = root_gr.children.all() |
|
2748 | 2752 | if childs: |
|
2749 | 2753 | for gr in childs: |
|
2750 | 2754 | if include_groups: |
|
2751 | 2755 | all_.append(gr) |
|
2752 | 2756 | _get_members(gr) |
|
2753 | 2757 | |
|
2754 | 2758 | root_group = [] |
|
2755 | 2759 | if include_groups: |
|
2756 | 2760 | root_group = [self] |
|
2757 | 2761 | |
|
2758 | 2762 | _get_members(self) |
|
2759 | 2763 | return root_group + all_ |
|
2760 | 2764 | |
|
2761 | 2765 | def recursive_groups_and_repos(self): |
|
2762 | 2766 | """ |
|
2763 | 2767 | Recursive return all groups, with repositories in those groups |
|
2764 | 2768 | """ |
|
2765 | 2769 | return self._recursive_objects() |
|
2766 | 2770 | |
|
2767 | 2771 | def recursive_groups(self): |
|
2768 | 2772 | """ |
|
2769 | 2773 | Returns all children groups for this group including children of children |
|
2770 | 2774 | """ |
|
2771 | 2775 | return self._recursive_objects(include_repos=False) |
|
2772 | 2776 | |
|
2773 | 2777 | def recursive_repos(self): |
|
2774 | 2778 | """ |
|
2775 | 2779 | Returns all children repositories for this group |
|
2776 | 2780 | """ |
|
2777 | 2781 | return self._recursive_objects(include_groups=False) |
|
2778 | 2782 | |
|
2779 | 2783 | def get_new_name(self, group_name): |
|
2780 | 2784 | """ |
|
2781 | 2785 | returns new full group name based on parent and new name |
|
2782 | 2786 | |
|
2783 | 2787 | :param group_name: |
|
2784 | 2788 | """ |
|
2785 | 2789 | path_prefix = (self.parent_group.full_path_splitted if |
|
2786 | 2790 | self.parent_group else []) |
|
2787 | 2791 | return RepoGroup.url_sep().join(path_prefix + [group_name]) |
|
2788 | 2792 | |
|
2789 | 2793 | def update_commit_cache(self, config=None): |
|
2790 | 2794 | """ |
|
2791 | 2795 | Update cache of last changeset for newest repository inside this group, keys should be:: |
|
2792 | 2796 | |
|
2793 | 2797 | source_repo_id |
|
2794 | 2798 | short_id |
|
2795 | 2799 | raw_id |
|
2796 | 2800 | revision |
|
2797 | 2801 | parents |
|
2798 | 2802 | message |
|
2799 | 2803 | date |
|
2800 | 2804 | author |
|
2801 | 2805 | |
|
2802 | 2806 | """ |
|
2803 | 2807 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2804 | 2808 | |
|
2805 | 2809 | def repo_groups_and_repos(): |
|
2806 | 2810 | all_entries = OrderedDefaultDict(list) |
|
2807 | 2811 | |
|
2808 | 2812 | def _get_members(root_gr, pos=0): |
|
2809 | 2813 | |
|
2810 | 2814 | for repo in root_gr.repositories: |
|
2811 | 2815 | all_entries[root_gr].append(repo) |
|
2812 | 2816 | |
|
2813 | 2817 | # fill in all parent positions |
|
2814 | 2818 | for parent_group in root_gr.parents: |
|
2815 | 2819 | all_entries[parent_group].extend(all_entries[root_gr]) |
|
2816 | 2820 | |
|
2817 | 2821 | children_groups = root_gr.children.all() |
|
2818 | 2822 | if children_groups: |
|
2819 | 2823 | for cnt, gr in enumerate(children_groups, 1): |
|
2820 | 2824 | _get_members(gr, pos=pos+cnt) |
|
2821 | 2825 | |
|
2822 | 2826 | _get_members(root_gr=self) |
|
2823 | 2827 | return all_entries |
|
2824 | 2828 | |
|
2825 | 2829 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2826 | 2830 | for repo_group, repos in repo_groups_and_repos().items(): |
|
2827 | 2831 | |
|
2828 | 2832 | latest_repo_cs_cache = {} |
|
2829 | 2833 | for repo in repos: |
|
2830 | 2834 | repo_cs_cache = repo.changeset_cache |
|
2831 | 2835 | date_latest = latest_repo_cs_cache.get('date', empty_date) |
|
2832 | 2836 | date_current = repo_cs_cache.get('date', empty_date) |
|
2833 | 2837 | current_timestamp = datetime_to_time(parse_datetime(date_latest)) |
|
2834 | 2838 | if current_timestamp < datetime_to_time(parse_datetime(date_current)): |
|
2835 | 2839 | latest_repo_cs_cache = repo_cs_cache |
|
2836 | 2840 | latest_repo_cs_cache['source_repo_id'] = repo.repo_id |
|
2837 | 2841 | |
|
2838 | 2842 | latest_repo_cs_cache['updated_on'] = time.time() |
|
2839 | 2843 | repo_group.changeset_cache = latest_repo_cs_cache |
|
2840 | 2844 | Session().add(repo_group) |
|
2841 | 2845 | Session().commit() |
|
2842 | 2846 | |
|
2843 | 2847 | log.debug('updated repo group %s with new commit cache %s', |
|
2844 | 2848 | repo_group.group_name, latest_repo_cs_cache) |
|
2845 | 2849 | |
|
2846 | 2850 | def permissions(self, with_admins=True, with_owner=True, |
|
2847 | 2851 | expand_from_user_groups=False): |
|
2848 | 2852 | """ |
|
2849 | 2853 | Permissions for repository groups |
|
2850 | 2854 | """ |
|
2851 | 2855 | _admin_perm = 'group.admin' |
|
2852 | 2856 | |
|
2853 | 2857 | owner_row = [] |
|
2854 | 2858 | if with_owner: |
|
2855 | 2859 | usr = AttributeDict(self.user.get_dict()) |
|
2856 | 2860 | usr.owner_row = True |
|
2857 | 2861 | usr.permission = _admin_perm |
|
2858 | 2862 | owner_row.append(usr) |
|
2859 | 2863 | |
|
2860 | 2864 | super_admin_ids = [] |
|
2861 | 2865 | super_admin_rows = [] |
|
2862 | 2866 | if with_admins: |
|
2863 | 2867 | for usr in User.get_all_super_admins(): |
|
2864 | 2868 | super_admin_ids.append(usr.user_id) |
|
2865 | 2869 | # if this admin is also owner, don't double the record |
|
2866 | 2870 | if usr.user_id == owner_row[0].user_id: |
|
2867 | 2871 | owner_row[0].admin_row = True |
|
2868 | 2872 | else: |
|
2869 | 2873 | usr = AttributeDict(usr.get_dict()) |
|
2870 | 2874 | usr.admin_row = True |
|
2871 | 2875 | usr.permission = _admin_perm |
|
2872 | 2876 | super_admin_rows.append(usr) |
|
2873 | 2877 | |
|
2874 | 2878 | q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self) |
|
2875 | 2879 | q = q.options(joinedload(UserRepoGroupToPerm.group), |
|
2876 | 2880 | joinedload(UserRepoGroupToPerm.user), |
|
2877 | 2881 | joinedload(UserRepoGroupToPerm.permission),) |
|
2878 | 2882 | |
|
2879 | 2883 | # get owners and admins and permissions. We do a trick of re-writing |
|
2880 | 2884 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
2881 | 2885 | # has a global reference and changing one object propagates to all |
|
2882 | 2886 | # others. This means if admin is also an owner admin_row that change |
|
2883 | 2887 | # would propagate to both objects |
|
2884 | 2888 | perm_rows = [] |
|
2885 | 2889 | for _usr in q.all(): |
|
2886 | 2890 | usr = AttributeDict(_usr.user.get_dict()) |
|
2887 | 2891 | # if this user is also owner/admin, mark as duplicate record |
|
2888 | 2892 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
2889 | 2893 | usr.duplicate_perm = True |
|
2890 | 2894 | usr.permission = _usr.permission.permission_name |
|
2891 | 2895 | perm_rows.append(usr) |
|
2892 | 2896 | |
|
2893 | 2897 | # filter the perm rows by 'default' first and then sort them by |
|
2894 | 2898 | # admin,write,read,none permissions sorted again alphabetically in |
|
2895 | 2899 | # each group |
|
2896 | 2900 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
2897 | 2901 | |
|
2898 | 2902 | user_groups_rows = [] |
|
2899 | 2903 | if expand_from_user_groups: |
|
2900 | 2904 | for ug in self.permission_user_groups(with_members=True): |
|
2901 | 2905 | for user_data in ug.members: |
|
2902 | 2906 | user_groups_rows.append(user_data) |
|
2903 | 2907 | |
|
2904 | 2908 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
2905 | 2909 | |
|
2906 | 2910 | def permission_user_groups(self, with_members=False): |
|
2907 | 2911 | q = UserGroupRepoGroupToPerm.query()\ |
|
2908 | 2912 | .filter(UserGroupRepoGroupToPerm.group == self) |
|
2909 | 2913 | q = q.options(joinedload(UserGroupRepoGroupToPerm.group), |
|
2910 | 2914 | joinedload(UserGroupRepoGroupToPerm.users_group), |
|
2911 | 2915 | joinedload(UserGroupRepoGroupToPerm.permission),) |
|
2912 | 2916 | |
|
2913 | 2917 | perm_rows = [] |
|
2914 | 2918 | for _user_group in q.all(): |
|
2915 | 2919 | entry = AttributeDict(_user_group.users_group.get_dict()) |
|
2916 | 2920 | entry.permission = _user_group.permission.permission_name |
|
2917 | 2921 | if with_members: |
|
2918 | 2922 | entry.members = [x.user.get_dict() |
|
2919 | 2923 | for x in _user_group.users_group.members] |
|
2920 | 2924 | perm_rows.append(entry) |
|
2921 | 2925 | |
|
2922 | 2926 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
2923 | 2927 | return perm_rows |
|
2924 | 2928 | |
|
2925 | 2929 | def get_api_data(self): |
|
2926 | 2930 | """ |
|
2927 | 2931 | Common function for generating api data |
|
2928 | 2932 | |
|
2929 | 2933 | """ |
|
2930 | 2934 | group = self |
|
2931 | 2935 | data = { |
|
2932 | 2936 | 'group_id': group.group_id, |
|
2933 | 2937 | 'group_name': group.group_name, |
|
2934 | 2938 | 'group_description': group.description_safe, |
|
2935 | 2939 | 'parent_group': group.parent_group.group_name if group.parent_group else None, |
|
2936 | 2940 | 'repositories': [x.repo_name for x in group.repositories], |
|
2937 | 2941 | 'owner': group.user.username, |
|
2938 | 2942 | } |
|
2939 | 2943 | return data |
|
2940 | 2944 | |
|
2941 | 2945 | def get_dict(self): |
|
2942 | 2946 | # Since we transformed `group_name` to a hybrid property, we need to |
|
2943 | 2947 | # keep compatibility with the code which uses `group_name` field. |
|
2944 | 2948 | result = super(RepoGroup, self).get_dict() |
|
2945 | 2949 | result['group_name'] = result.pop('_group_name', None) |
|
2946 | 2950 | return result |
|
2947 | 2951 | |
|
2948 | 2952 | |
|
2949 | 2953 | class Permission(Base, BaseModel): |
|
2950 | 2954 | __tablename__ = 'permissions' |
|
2951 | 2955 | __table_args__ = ( |
|
2952 | 2956 | Index('p_perm_name_idx', 'permission_name'), |
|
2953 | 2957 | base_table_args, |
|
2954 | 2958 | ) |
|
2955 | 2959 | |
|
2956 | 2960 | PERMS = [ |
|
2957 | 2961 | ('hg.admin', _('RhodeCode Super Administrator')), |
|
2958 | 2962 | |
|
2959 | 2963 | ('repository.none', _('Repository no access')), |
|
2960 | 2964 | ('repository.read', _('Repository read access')), |
|
2961 | 2965 | ('repository.write', _('Repository write access')), |
|
2962 | 2966 | ('repository.admin', _('Repository admin access')), |
|
2963 | 2967 | |
|
2964 | 2968 | ('group.none', _('Repository group no access')), |
|
2965 | 2969 | ('group.read', _('Repository group read access')), |
|
2966 | 2970 | ('group.write', _('Repository group write access')), |
|
2967 | 2971 | ('group.admin', _('Repository group admin access')), |
|
2968 | 2972 | |
|
2969 | 2973 | ('usergroup.none', _('User group no access')), |
|
2970 | 2974 | ('usergroup.read', _('User group read access')), |
|
2971 | 2975 | ('usergroup.write', _('User group write access')), |
|
2972 | 2976 | ('usergroup.admin', _('User group admin access')), |
|
2973 | 2977 | |
|
2974 | 2978 | ('branch.none', _('Branch no permissions')), |
|
2975 | 2979 | ('branch.merge', _('Branch access by web merge')), |
|
2976 | 2980 | ('branch.push', _('Branch access by push')), |
|
2977 | 2981 | ('branch.push_force', _('Branch access by push with force')), |
|
2978 | 2982 | |
|
2979 | 2983 | ('hg.repogroup.create.false', _('Repository Group creation disabled')), |
|
2980 | 2984 | ('hg.repogroup.create.true', _('Repository Group creation enabled')), |
|
2981 | 2985 | |
|
2982 | 2986 | ('hg.usergroup.create.false', _('User Group creation disabled')), |
|
2983 | 2987 | ('hg.usergroup.create.true', _('User Group creation enabled')), |
|
2984 | 2988 | |
|
2985 | 2989 | ('hg.create.none', _('Repository creation disabled')), |
|
2986 | 2990 | ('hg.create.repository', _('Repository creation enabled')), |
|
2987 | 2991 | ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')), |
|
2988 | 2992 | ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')), |
|
2989 | 2993 | |
|
2990 | 2994 | ('hg.fork.none', _('Repository forking disabled')), |
|
2991 | 2995 | ('hg.fork.repository', _('Repository forking enabled')), |
|
2992 | 2996 | |
|
2993 | 2997 | ('hg.register.none', _('Registration disabled')), |
|
2994 | 2998 | ('hg.register.manual_activate', _('User Registration with manual account activation')), |
|
2995 | 2999 | ('hg.register.auto_activate', _('User Registration with automatic account activation')), |
|
2996 | 3000 | |
|
2997 | 3001 | ('hg.password_reset.enabled', _('Password reset enabled')), |
|
2998 | 3002 | ('hg.password_reset.hidden', _('Password reset hidden')), |
|
2999 | 3003 | ('hg.password_reset.disabled', _('Password reset disabled')), |
|
3000 | 3004 | |
|
3001 | 3005 | ('hg.extern_activate.manual', _('Manual activation of external account')), |
|
3002 | 3006 | ('hg.extern_activate.auto', _('Automatic activation of external account')), |
|
3003 | 3007 | |
|
3004 | 3008 | ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')), |
|
3005 | 3009 | ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')), |
|
3006 | 3010 | ] |
|
3007 | 3011 | |
|
3008 | 3012 | # definition of system default permissions for DEFAULT user, created on |
|
3009 | 3013 | # system setup |
|
3010 | 3014 | DEFAULT_USER_PERMISSIONS = [ |
|
3011 | 3015 | # object perms |
|
3012 | 3016 | 'repository.read', |
|
3013 | 3017 | 'group.read', |
|
3014 | 3018 | 'usergroup.read', |
|
3015 | 3019 | # branch, for backward compat we need same value as before so forced pushed |
|
3016 | 3020 | 'branch.push_force', |
|
3017 | 3021 | # global |
|
3018 | 3022 | 'hg.create.repository', |
|
3019 | 3023 | 'hg.repogroup.create.false', |
|
3020 | 3024 | 'hg.usergroup.create.false', |
|
3021 | 3025 | 'hg.create.write_on_repogroup.true', |
|
3022 | 3026 | 'hg.fork.repository', |
|
3023 | 3027 | 'hg.register.manual_activate', |
|
3024 | 3028 | 'hg.password_reset.enabled', |
|
3025 | 3029 | 'hg.extern_activate.auto', |
|
3026 | 3030 | 'hg.inherit_default_perms.true', |
|
3027 | 3031 | ] |
|
3028 | 3032 | |
|
3029 | 3033 | # defines which permissions are more important higher the more important |
|
3030 | 3034 | # Weight defines which permissions are more important. |
|
3031 | 3035 | # The higher number the more important. |
|
3032 | 3036 | PERM_WEIGHTS = { |
|
3033 | 3037 | 'repository.none': 0, |
|
3034 | 3038 | 'repository.read': 1, |
|
3035 | 3039 | 'repository.write': 3, |
|
3036 | 3040 | 'repository.admin': 4, |
|
3037 | 3041 | |
|
3038 | 3042 | 'group.none': 0, |
|
3039 | 3043 | 'group.read': 1, |
|
3040 | 3044 | 'group.write': 3, |
|
3041 | 3045 | 'group.admin': 4, |
|
3042 | 3046 | |
|
3043 | 3047 | 'usergroup.none': 0, |
|
3044 | 3048 | 'usergroup.read': 1, |
|
3045 | 3049 | 'usergroup.write': 3, |
|
3046 | 3050 | 'usergroup.admin': 4, |
|
3047 | 3051 | |
|
3048 | 3052 | 'branch.none': 0, |
|
3049 | 3053 | 'branch.merge': 1, |
|
3050 | 3054 | 'branch.push': 3, |
|
3051 | 3055 | 'branch.push_force': 4, |
|
3052 | 3056 | |
|
3053 | 3057 | 'hg.repogroup.create.false': 0, |
|
3054 | 3058 | 'hg.repogroup.create.true': 1, |
|
3055 | 3059 | |
|
3056 | 3060 | 'hg.usergroup.create.false': 0, |
|
3057 | 3061 | 'hg.usergroup.create.true': 1, |
|
3058 | 3062 | |
|
3059 | 3063 | 'hg.fork.none': 0, |
|
3060 | 3064 | 'hg.fork.repository': 1, |
|
3061 | 3065 | 'hg.create.none': 0, |
|
3062 | 3066 | 'hg.create.repository': 1 |
|
3063 | 3067 | } |
|
3064 | 3068 | |
|
3065 | 3069 | permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3066 | 3070 | permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None) |
|
3067 | 3071 | permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None) |
|
3068 | 3072 | |
|
3069 | 3073 | def __unicode__(self): |
|
3070 | 3074 | return u"<%s('%s:%s')>" % ( |
|
3071 | 3075 | self.__class__.__name__, self.permission_id, self.permission_name |
|
3072 | 3076 | ) |
|
3073 | 3077 | |
|
3074 | 3078 | @classmethod |
|
3075 | 3079 | def get_by_key(cls, key): |
|
3076 | 3080 | return cls.query().filter(cls.permission_name == key).scalar() |
|
3077 | 3081 | |
|
3078 | 3082 | @classmethod |
|
3079 | 3083 | def get_default_repo_perms(cls, user_id, repo_id=None): |
|
3080 | 3084 | q = Session().query(UserRepoToPerm, Repository, Permission)\ |
|
3081 | 3085 | .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\ |
|
3082 | 3086 | .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\ |
|
3083 | 3087 | .filter(UserRepoToPerm.user_id == user_id) |
|
3084 | 3088 | if repo_id: |
|
3085 | 3089 | q = q.filter(UserRepoToPerm.repository_id == repo_id) |
|
3086 | 3090 | return q.all() |
|
3087 | 3091 | |
|
3088 | 3092 | @classmethod |
|
3089 | 3093 | def get_default_repo_branch_perms(cls, user_id, repo_id=None): |
|
3090 | 3094 | q = Session().query(UserToRepoBranchPermission, UserRepoToPerm, Permission) \ |
|
3091 | 3095 | .join( |
|
3092 | 3096 | Permission, |
|
3093 | 3097 | UserToRepoBranchPermission.permission_id == Permission.permission_id) \ |
|
3094 | 3098 | .join( |
|
3095 | 3099 | UserRepoToPerm, |
|
3096 | 3100 | UserToRepoBranchPermission.rule_to_perm_id == UserRepoToPerm.repo_to_perm_id) \ |
|
3097 | 3101 | .filter(UserRepoToPerm.user_id == user_id) |
|
3098 | 3102 | |
|
3099 | 3103 | if repo_id: |
|
3100 | 3104 | q = q.filter(UserToRepoBranchPermission.repository_id == repo_id) |
|
3101 | 3105 | return q.order_by(UserToRepoBranchPermission.rule_order).all() |
|
3102 | 3106 | |
|
3103 | 3107 | @classmethod |
|
3104 | 3108 | def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None): |
|
3105 | 3109 | q = Session().query(UserGroupRepoToPerm, Repository, Permission)\ |
|
3106 | 3110 | .join( |
|
3107 | 3111 | Permission, |
|
3108 | 3112 | UserGroupRepoToPerm.permission_id == Permission.permission_id)\ |
|
3109 | 3113 | .join( |
|
3110 | 3114 | Repository, |
|
3111 | 3115 | UserGroupRepoToPerm.repository_id == Repository.repo_id)\ |
|
3112 | 3116 | .join( |
|
3113 | 3117 | UserGroup, |
|
3114 | 3118 | UserGroupRepoToPerm.users_group_id == |
|
3115 | 3119 | UserGroup.users_group_id)\ |
|
3116 | 3120 | .join( |
|
3117 | 3121 | UserGroupMember, |
|
3118 | 3122 | UserGroupRepoToPerm.users_group_id == |
|
3119 | 3123 | UserGroupMember.users_group_id)\ |
|
3120 | 3124 | .filter( |
|
3121 | 3125 | UserGroupMember.user_id == user_id, |
|
3122 | 3126 | UserGroup.users_group_active == true()) |
|
3123 | 3127 | if repo_id: |
|
3124 | 3128 | q = q.filter(UserGroupRepoToPerm.repository_id == repo_id) |
|
3125 | 3129 | return q.all() |
|
3126 | 3130 | |
|
3127 | 3131 | @classmethod |
|
3128 | 3132 | def get_default_repo_branch_perms_from_user_group(cls, user_id, repo_id=None): |
|
3129 | 3133 | q = Session().query(UserGroupToRepoBranchPermission, UserGroupRepoToPerm, Permission) \ |
|
3130 | 3134 | .join( |
|
3131 | 3135 | Permission, |
|
3132 | 3136 | UserGroupToRepoBranchPermission.permission_id == Permission.permission_id) \ |
|
3133 | 3137 | .join( |
|
3134 | 3138 | UserGroupRepoToPerm, |
|
3135 | 3139 | UserGroupToRepoBranchPermission.rule_to_perm_id == UserGroupRepoToPerm.users_group_to_perm_id) \ |
|
3136 | 3140 | .join( |
|
3137 | 3141 | UserGroup, |
|
3138 | 3142 | UserGroupRepoToPerm.users_group_id == UserGroup.users_group_id) \ |
|
3139 | 3143 | .join( |
|
3140 | 3144 | UserGroupMember, |
|
3141 | 3145 | UserGroupRepoToPerm.users_group_id == UserGroupMember.users_group_id) \ |
|
3142 | 3146 | .filter( |
|
3143 | 3147 | UserGroupMember.user_id == user_id, |
|
3144 | 3148 | UserGroup.users_group_active == true()) |
|
3145 | 3149 | |
|
3146 | 3150 | if repo_id: |
|
3147 | 3151 | q = q.filter(UserGroupToRepoBranchPermission.repository_id == repo_id) |
|
3148 | 3152 | return q.order_by(UserGroupToRepoBranchPermission.rule_order).all() |
|
3149 | 3153 | |
|
3150 | 3154 | @classmethod |
|
3151 | 3155 | def get_default_group_perms(cls, user_id, repo_group_id=None): |
|
3152 | 3156 | q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\ |
|
3153 | 3157 | .join( |
|
3154 | 3158 | Permission, |
|
3155 | 3159 | UserRepoGroupToPerm.permission_id == Permission.permission_id)\ |
|
3156 | 3160 | .join( |
|
3157 | 3161 | RepoGroup, |
|
3158 | 3162 | UserRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
3159 | 3163 | .filter(UserRepoGroupToPerm.user_id == user_id) |
|
3160 | 3164 | if repo_group_id: |
|
3161 | 3165 | q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id) |
|
3162 | 3166 | return q.all() |
|
3163 | 3167 | |
|
3164 | 3168 | @classmethod |
|
3165 | 3169 | def get_default_group_perms_from_user_group( |
|
3166 | 3170 | cls, user_id, repo_group_id=None): |
|
3167 | 3171 | q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\ |
|
3168 | 3172 | .join( |
|
3169 | 3173 | Permission, |
|
3170 | 3174 | UserGroupRepoGroupToPerm.permission_id == |
|
3171 | 3175 | Permission.permission_id)\ |
|
3172 | 3176 | .join( |
|
3173 | 3177 | RepoGroup, |
|
3174 | 3178 | UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
3175 | 3179 | .join( |
|
3176 | 3180 | UserGroup, |
|
3177 | 3181 | UserGroupRepoGroupToPerm.users_group_id == |
|
3178 | 3182 | UserGroup.users_group_id)\ |
|
3179 | 3183 | .join( |
|
3180 | 3184 | UserGroupMember, |
|
3181 | 3185 | UserGroupRepoGroupToPerm.users_group_id == |
|
3182 | 3186 | UserGroupMember.users_group_id)\ |
|
3183 | 3187 | .filter( |
|
3184 | 3188 | UserGroupMember.user_id == user_id, |
|
3185 | 3189 | UserGroup.users_group_active == true()) |
|
3186 | 3190 | if repo_group_id: |
|
3187 | 3191 | q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id) |
|
3188 | 3192 | return q.all() |
|
3189 | 3193 | |
|
3190 | 3194 | @classmethod |
|
3191 | 3195 | def get_default_user_group_perms(cls, user_id, user_group_id=None): |
|
3192 | 3196 | q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\ |
|
3193 | 3197 | .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\ |
|
3194 | 3198 | .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\ |
|
3195 | 3199 | .filter(UserUserGroupToPerm.user_id == user_id) |
|
3196 | 3200 | if user_group_id: |
|
3197 | 3201 | q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id) |
|
3198 | 3202 | return q.all() |
|
3199 | 3203 | |
|
3200 | 3204 | @classmethod |
|
3201 | 3205 | def get_default_user_group_perms_from_user_group( |
|
3202 | 3206 | cls, user_id, user_group_id=None): |
|
3203 | 3207 | TargetUserGroup = aliased(UserGroup, name='target_user_group') |
|
3204 | 3208 | q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\ |
|
3205 | 3209 | .join( |
|
3206 | 3210 | Permission, |
|
3207 | 3211 | UserGroupUserGroupToPerm.permission_id == |
|
3208 | 3212 | Permission.permission_id)\ |
|
3209 | 3213 | .join( |
|
3210 | 3214 | TargetUserGroup, |
|
3211 | 3215 | UserGroupUserGroupToPerm.target_user_group_id == |
|
3212 | 3216 | TargetUserGroup.users_group_id)\ |
|
3213 | 3217 | .join( |
|
3214 | 3218 | UserGroup, |
|
3215 | 3219 | UserGroupUserGroupToPerm.user_group_id == |
|
3216 | 3220 | UserGroup.users_group_id)\ |
|
3217 | 3221 | .join( |
|
3218 | 3222 | UserGroupMember, |
|
3219 | 3223 | UserGroupUserGroupToPerm.user_group_id == |
|
3220 | 3224 | UserGroupMember.users_group_id)\ |
|
3221 | 3225 | .filter( |
|
3222 | 3226 | UserGroupMember.user_id == user_id, |
|
3223 | 3227 | UserGroup.users_group_active == true()) |
|
3224 | 3228 | if user_group_id: |
|
3225 | 3229 | q = q.filter( |
|
3226 | 3230 | UserGroupUserGroupToPerm.user_group_id == user_group_id) |
|
3227 | 3231 | |
|
3228 | 3232 | return q.all() |
|
3229 | 3233 | |
|
3230 | 3234 | |
|
3231 | 3235 | class UserRepoToPerm(Base, BaseModel): |
|
3232 | 3236 | __tablename__ = 'repo_to_perm' |
|
3233 | 3237 | __table_args__ = ( |
|
3234 | 3238 | UniqueConstraint('user_id', 'repository_id', 'permission_id'), |
|
3235 | 3239 | base_table_args |
|
3236 | 3240 | ) |
|
3237 | 3241 | |
|
3238 | 3242 | repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3239 | 3243 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3240 | 3244 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3241 | 3245 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
3242 | 3246 | |
|
3243 | 3247 | user = relationship('User') |
|
3244 | 3248 | repository = relationship('Repository') |
|
3245 | 3249 | permission = relationship('Permission') |
|
3246 | 3250 | |
|
3247 | 3251 | branch_perm_entry = relationship('UserToRepoBranchPermission', cascade="all, delete, delete-orphan", lazy='joined') |
|
3248 | 3252 | |
|
3249 | 3253 | @classmethod |
|
3250 | 3254 | def create(cls, user, repository, permission): |
|
3251 | 3255 | n = cls() |
|
3252 | 3256 | n.user = user |
|
3253 | 3257 | n.repository = repository |
|
3254 | 3258 | n.permission = permission |
|
3255 | 3259 | Session().add(n) |
|
3256 | 3260 | return n |
|
3257 | 3261 | |
|
3258 | 3262 | def __unicode__(self): |
|
3259 | 3263 | return u'<%s => %s >' % (self.user, self.repository) |
|
3260 | 3264 | |
|
3261 | 3265 | |
|
3262 | 3266 | class UserUserGroupToPerm(Base, BaseModel): |
|
3263 | 3267 | __tablename__ = 'user_user_group_to_perm' |
|
3264 | 3268 | __table_args__ = ( |
|
3265 | 3269 | UniqueConstraint('user_id', 'user_group_id', 'permission_id'), |
|
3266 | 3270 | base_table_args |
|
3267 | 3271 | ) |
|
3268 | 3272 | |
|
3269 | 3273 | user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3270 | 3274 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3271 | 3275 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3272 | 3276 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3273 | 3277 | |
|
3274 | 3278 | user = relationship('User') |
|
3275 | 3279 | user_group = relationship('UserGroup') |
|
3276 | 3280 | permission = relationship('Permission') |
|
3277 | 3281 | |
|
3278 | 3282 | @classmethod |
|
3279 | 3283 | def create(cls, user, user_group, permission): |
|
3280 | 3284 | n = cls() |
|
3281 | 3285 | n.user = user |
|
3282 | 3286 | n.user_group = user_group |
|
3283 | 3287 | n.permission = permission |
|
3284 | 3288 | Session().add(n) |
|
3285 | 3289 | return n |
|
3286 | 3290 | |
|
3287 | 3291 | def __unicode__(self): |
|
3288 | 3292 | return u'<%s => %s >' % (self.user, self.user_group) |
|
3289 | 3293 | |
|
3290 | 3294 | |
|
3291 | 3295 | class UserToPerm(Base, BaseModel): |
|
3292 | 3296 | __tablename__ = 'user_to_perm' |
|
3293 | 3297 | __table_args__ = ( |
|
3294 | 3298 | UniqueConstraint('user_id', 'permission_id'), |
|
3295 | 3299 | base_table_args |
|
3296 | 3300 | ) |
|
3297 | 3301 | |
|
3298 | 3302 | user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3299 | 3303 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3300 | 3304 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3301 | 3305 | |
|
3302 | 3306 | user = relationship('User') |
|
3303 | 3307 | permission = relationship('Permission', lazy='joined') |
|
3304 | 3308 | |
|
3305 | 3309 | def __unicode__(self): |
|
3306 | 3310 | return u'<%s => %s >' % (self.user, self.permission) |
|
3307 | 3311 | |
|
3308 | 3312 | |
|
3309 | 3313 | class UserGroupRepoToPerm(Base, BaseModel): |
|
3310 | 3314 | __tablename__ = 'users_group_repo_to_perm' |
|
3311 | 3315 | __table_args__ = ( |
|
3312 | 3316 | UniqueConstraint('repository_id', 'users_group_id', 'permission_id'), |
|
3313 | 3317 | base_table_args |
|
3314 | 3318 | ) |
|
3315 | 3319 | |
|
3316 | 3320 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3317 | 3321 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3318 | 3322 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3319 | 3323 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
3320 | 3324 | |
|
3321 | 3325 | users_group = relationship('UserGroup') |
|
3322 | 3326 | permission = relationship('Permission') |
|
3323 | 3327 | repository = relationship('Repository') |
|
3324 | 3328 | user_group_branch_perms = relationship('UserGroupToRepoBranchPermission', cascade='all') |
|
3325 | 3329 | |
|
3326 | 3330 | @classmethod |
|
3327 | 3331 | def create(cls, users_group, repository, permission): |
|
3328 | 3332 | n = cls() |
|
3329 | 3333 | n.users_group = users_group |
|
3330 | 3334 | n.repository = repository |
|
3331 | 3335 | n.permission = permission |
|
3332 | 3336 | Session().add(n) |
|
3333 | 3337 | return n |
|
3334 | 3338 | |
|
3335 | 3339 | def __unicode__(self): |
|
3336 | 3340 | return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository) |
|
3337 | 3341 | |
|
3338 | 3342 | |
|
3339 | 3343 | class UserGroupUserGroupToPerm(Base, BaseModel): |
|
3340 | 3344 | __tablename__ = 'user_group_user_group_to_perm' |
|
3341 | 3345 | __table_args__ = ( |
|
3342 | 3346 | UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'), |
|
3343 | 3347 | CheckConstraint('target_user_group_id != user_group_id'), |
|
3344 | 3348 | base_table_args |
|
3345 | 3349 | ) |
|
3346 | 3350 | |
|
3347 | 3351 | user_group_user_group_to_perm_id = Column("user_group_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3348 | 3352 | target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3349 | 3353 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3350 | 3354 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3351 | 3355 | |
|
3352 | 3356 | target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id') |
|
3353 | 3357 | user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id') |
|
3354 | 3358 | permission = relationship('Permission') |
|
3355 | 3359 | |
|
3356 | 3360 | @classmethod |
|
3357 | 3361 | def create(cls, target_user_group, user_group, permission): |
|
3358 | 3362 | n = cls() |
|
3359 | 3363 | n.target_user_group = target_user_group |
|
3360 | 3364 | n.user_group = user_group |
|
3361 | 3365 | n.permission = permission |
|
3362 | 3366 | Session().add(n) |
|
3363 | 3367 | return n |
|
3364 | 3368 | |
|
3365 | 3369 | def __unicode__(self): |
|
3366 | 3370 | return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group) |
|
3367 | 3371 | |
|
3368 | 3372 | |
|
3369 | 3373 | class UserGroupToPerm(Base, BaseModel): |
|
3370 | 3374 | __tablename__ = 'users_group_to_perm' |
|
3371 | 3375 | __table_args__ = ( |
|
3372 | 3376 | UniqueConstraint('users_group_id', 'permission_id',), |
|
3373 | 3377 | base_table_args |
|
3374 | 3378 | ) |
|
3375 | 3379 | |
|
3376 | 3380 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3377 | 3381 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3378 | 3382 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3379 | 3383 | |
|
3380 | 3384 | users_group = relationship('UserGroup') |
|
3381 | 3385 | permission = relationship('Permission') |
|
3382 | 3386 | |
|
3383 | 3387 | |
|
3384 | 3388 | class UserRepoGroupToPerm(Base, BaseModel): |
|
3385 | 3389 | __tablename__ = 'user_repo_group_to_perm' |
|
3386 | 3390 | __table_args__ = ( |
|
3387 | 3391 | UniqueConstraint('user_id', 'group_id', 'permission_id'), |
|
3388 | 3392 | base_table_args |
|
3389 | 3393 | ) |
|
3390 | 3394 | |
|
3391 | 3395 | group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3392 | 3396 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3393 | 3397 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
3394 | 3398 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3395 | 3399 | |
|
3396 | 3400 | user = relationship('User') |
|
3397 | 3401 | group = relationship('RepoGroup') |
|
3398 | 3402 | permission = relationship('Permission') |
|
3399 | 3403 | |
|
3400 | 3404 | @classmethod |
|
3401 | 3405 | def create(cls, user, repository_group, permission): |
|
3402 | 3406 | n = cls() |
|
3403 | 3407 | n.user = user |
|
3404 | 3408 | n.group = repository_group |
|
3405 | 3409 | n.permission = permission |
|
3406 | 3410 | Session().add(n) |
|
3407 | 3411 | return n |
|
3408 | 3412 | |
|
3409 | 3413 | |
|
3410 | 3414 | class UserGroupRepoGroupToPerm(Base, BaseModel): |
|
3411 | 3415 | __tablename__ = 'users_group_repo_group_to_perm' |
|
3412 | 3416 | __table_args__ = ( |
|
3413 | 3417 | UniqueConstraint('users_group_id', 'group_id'), |
|
3414 | 3418 | base_table_args |
|
3415 | 3419 | ) |
|
3416 | 3420 | |
|
3417 | 3421 | users_group_repo_group_to_perm_id = Column("users_group_repo_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3418 | 3422 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3419 | 3423 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
3420 | 3424 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3421 | 3425 | |
|
3422 | 3426 | users_group = relationship('UserGroup') |
|
3423 | 3427 | permission = relationship('Permission') |
|
3424 | 3428 | group = relationship('RepoGroup') |
|
3425 | 3429 | |
|
3426 | 3430 | @classmethod |
|
3427 | 3431 | def create(cls, user_group, repository_group, permission): |
|
3428 | 3432 | n = cls() |
|
3429 | 3433 | n.users_group = user_group |
|
3430 | 3434 | n.group = repository_group |
|
3431 | 3435 | n.permission = permission |
|
3432 | 3436 | Session().add(n) |
|
3433 | 3437 | return n |
|
3434 | 3438 | |
|
3435 | 3439 | def __unicode__(self): |
|
3436 | 3440 | return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group) |
|
3437 | 3441 | |
|
3438 | 3442 | |
|
3439 | 3443 | class Statistics(Base, BaseModel): |
|
3440 | 3444 | __tablename__ = 'statistics' |
|
3441 | 3445 | __table_args__ = ( |
|
3442 | 3446 | base_table_args |
|
3443 | 3447 | ) |
|
3444 | 3448 | |
|
3445 | 3449 | stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3446 | 3450 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None) |
|
3447 | 3451 | stat_on_revision = Column("stat_on_revision", Integer(), nullable=False) |
|
3448 | 3452 | commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data |
|
3449 | 3453 | commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data |
|
3450 | 3454 | languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data |
|
3451 | 3455 | |
|
3452 | 3456 | repository = relationship('Repository', single_parent=True) |
|
3453 | 3457 | |
|
3454 | 3458 | |
|
3455 | 3459 | class UserFollowing(Base, BaseModel): |
|
3456 | 3460 | __tablename__ = 'user_followings' |
|
3457 | 3461 | __table_args__ = ( |
|
3458 | 3462 | UniqueConstraint('user_id', 'follows_repository_id'), |
|
3459 | 3463 | UniqueConstraint('user_id', 'follows_user_id'), |
|
3460 | 3464 | base_table_args |
|
3461 | 3465 | ) |
|
3462 | 3466 | |
|
3463 | 3467 | user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3464 | 3468 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3465 | 3469 | follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None) |
|
3466 | 3470 | follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
3467 | 3471 | follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
3468 | 3472 | |
|
3469 | 3473 | user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id') |
|
3470 | 3474 | |
|
3471 | 3475 | follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id') |
|
3472 | 3476 | follows_repository = relationship('Repository', order_by='Repository.repo_name') |
|
3473 | 3477 | |
|
3474 | 3478 | @classmethod |
|
3475 | 3479 | def get_repo_followers(cls, repo_id): |
|
3476 | 3480 | return cls.query().filter(cls.follows_repo_id == repo_id) |
|
3477 | 3481 | |
|
3478 | 3482 | |
|
3479 | 3483 | class CacheKey(Base, BaseModel): |
|
3480 | 3484 | __tablename__ = 'cache_invalidation' |
|
3481 | 3485 | __table_args__ = ( |
|
3482 | 3486 | UniqueConstraint('cache_key'), |
|
3483 | 3487 | Index('key_idx', 'cache_key'), |
|
3484 | 3488 | base_table_args, |
|
3485 | 3489 | ) |
|
3486 | 3490 | |
|
3487 | 3491 | CACHE_TYPE_FEED = 'FEED' |
|
3488 | 3492 | CACHE_TYPE_README = 'README' |
|
3489 | 3493 | # namespaces used to register process/thread aware caches |
|
3490 | 3494 | REPO_INVALIDATION_NAMESPACE = 'repo_cache:{repo_id}' |
|
3491 | 3495 | SETTINGS_INVALIDATION_NAMESPACE = 'system_settings' |
|
3492 | 3496 | |
|
3493 | 3497 | cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3494 | 3498 | cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None) |
|
3495 | 3499 | cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None) |
|
3496 | 3500 | cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False) |
|
3497 | 3501 | |
|
3498 | 3502 | def __init__(self, cache_key, cache_args=''): |
|
3499 | 3503 | self.cache_key = cache_key |
|
3500 | 3504 | self.cache_args = cache_args |
|
3501 | 3505 | self.cache_active = False |
|
3502 | 3506 | |
|
3503 | 3507 | def __unicode__(self): |
|
3504 | 3508 | return u"<%s('%s:%s[%s]')>" % ( |
|
3505 | 3509 | self.__class__.__name__, |
|
3506 | 3510 | self.cache_id, self.cache_key, self.cache_active) |
|
3507 | 3511 | |
|
3508 | 3512 | def _cache_key_partition(self): |
|
3509 | 3513 | prefix, repo_name, suffix = self.cache_key.partition(self.cache_args) |
|
3510 | 3514 | return prefix, repo_name, suffix |
|
3511 | 3515 | |
|
3512 | 3516 | def get_prefix(self): |
|
3513 | 3517 | """ |
|
3514 | 3518 | Try to extract prefix from existing cache key. The key could consist |
|
3515 | 3519 | of prefix, repo_name, suffix |
|
3516 | 3520 | """ |
|
3517 | 3521 | # this returns prefix, repo_name, suffix |
|
3518 | 3522 | return self._cache_key_partition()[0] |
|
3519 | 3523 | |
|
3520 | 3524 | def get_suffix(self): |
|
3521 | 3525 | """ |
|
3522 | 3526 | get suffix that might have been used in _get_cache_key to |
|
3523 | 3527 | generate self.cache_key. Only used for informational purposes |
|
3524 | 3528 | in repo_edit.mako. |
|
3525 | 3529 | """ |
|
3526 | 3530 | # prefix, repo_name, suffix |
|
3527 | 3531 | return self._cache_key_partition()[2] |
|
3528 | 3532 | |
|
3529 | 3533 | @classmethod |
|
3530 | 3534 | def delete_all_cache(cls): |
|
3531 | 3535 | """ |
|
3532 | 3536 | Delete all cache keys from database. |
|
3533 | 3537 | Should only be run when all instances are down and all entries |
|
3534 | 3538 | thus stale. |
|
3535 | 3539 | """ |
|
3536 | 3540 | cls.query().delete() |
|
3537 | 3541 | Session().commit() |
|
3538 | 3542 | |
|
3539 | 3543 | @classmethod |
|
3540 | 3544 | def set_invalidate(cls, cache_uid, delete=False): |
|
3541 | 3545 | """ |
|
3542 | 3546 | Mark all caches of a repo as invalid in the database. |
|
3543 | 3547 | """ |
|
3544 | 3548 | |
|
3545 | 3549 | try: |
|
3546 | 3550 | qry = Session().query(cls).filter(cls.cache_args == cache_uid) |
|
3547 | 3551 | if delete: |
|
3548 | 3552 | qry.delete() |
|
3549 | 3553 | log.debug('cache objects deleted for cache args %s', |
|
3550 | 3554 | safe_str(cache_uid)) |
|
3551 | 3555 | else: |
|
3552 | 3556 | qry.update({"cache_active": False}) |
|
3553 | 3557 | log.debug('cache objects marked as invalid for cache args %s', |
|
3554 | 3558 | safe_str(cache_uid)) |
|
3555 | 3559 | |
|
3556 | 3560 | Session().commit() |
|
3557 | 3561 | except Exception: |
|
3558 | 3562 | log.exception( |
|
3559 | 3563 | 'Cache key invalidation failed for cache args %s', |
|
3560 | 3564 | safe_str(cache_uid)) |
|
3561 | 3565 | Session().rollback() |
|
3562 | 3566 | |
|
3563 | 3567 | @classmethod |
|
3564 | 3568 | def get_active_cache(cls, cache_key): |
|
3565 | 3569 | inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar() |
|
3566 | 3570 | if inv_obj: |
|
3567 | 3571 | return inv_obj |
|
3568 | 3572 | return None |
|
3569 | 3573 | |
|
3570 | 3574 | |
|
3571 | 3575 | class ChangesetComment(Base, BaseModel): |
|
3572 | 3576 | __tablename__ = 'changeset_comments' |
|
3573 | 3577 | __table_args__ = ( |
|
3574 | 3578 | Index('cc_revision_idx', 'revision'), |
|
3575 | 3579 | base_table_args, |
|
3576 | 3580 | ) |
|
3577 | 3581 | |
|
3578 | 3582 | COMMENT_OUTDATED = u'comment_outdated' |
|
3579 | 3583 | COMMENT_TYPE_NOTE = u'note' |
|
3580 | 3584 | COMMENT_TYPE_TODO = u'todo' |
|
3581 | 3585 | COMMENT_TYPES = [COMMENT_TYPE_NOTE, COMMENT_TYPE_TODO] |
|
3582 | 3586 | |
|
3583 | 3587 | comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True) |
|
3584 | 3588 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
3585 | 3589 | revision = Column('revision', String(40), nullable=True) |
|
3586 | 3590 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
3587 | 3591 | pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True) |
|
3588 | 3592 | line_no = Column('line_no', Unicode(10), nullable=True) |
|
3589 | 3593 | hl_lines = Column('hl_lines', Unicode(512), nullable=True) |
|
3590 | 3594 | f_path = Column('f_path', Unicode(1000), nullable=True) |
|
3591 | 3595 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
3592 | 3596 | text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False) |
|
3593 | 3597 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3594 | 3598 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3595 | 3599 | renderer = Column('renderer', Unicode(64), nullable=True) |
|
3596 | 3600 | display_state = Column('display_state', Unicode(128), nullable=True) |
|
3597 | 3601 | |
|
3598 | 3602 | comment_type = Column('comment_type', Unicode(128), nullable=True, default=COMMENT_TYPE_NOTE) |
|
3599 | 3603 | resolved_comment_id = Column('resolved_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'), nullable=True) |
|
3600 | 3604 | |
|
3601 | 3605 | resolved_comment = relationship('ChangesetComment', remote_side=comment_id, back_populates='resolved_by') |
|
3602 | 3606 | resolved_by = relationship('ChangesetComment', back_populates='resolved_comment') |
|
3603 | 3607 | |
|
3604 | 3608 | author = relationship('User', lazy='joined') |
|
3605 | 3609 | repo = relationship('Repository') |
|
3606 | 3610 | status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan", lazy='joined') |
|
3607 | 3611 | pull_request = relationship('PullRequest', lazy='joined') |
|
3608 | 3612 | pull_request_version = relationship('PullRequestVersion') |
|
3609 | 3613 | |
|
3610 | 3614 | @classmethod |
|
3611 | 3615 | def get_users(cls, revision=None, pull_request_id=None): |
|
3612 | 3616 | """ |
|
3613 | 3617 | Returns user associated with this ChangesetComment. ie those |
|
3614 | 3618 | who actually commented |
|
3615 | 3619 | |
|
3616 | 3620 | :param cls: |
|
3617 | 3621 | :param revision: |
|
3618 | 3622 | """ |
|
3619 | 3623 | q = Session().query(User)\ |
|
3620 | 3624 | .join(ChangesetComment.author) |
|
3621 | 3625 | if revision: |
|
3622 | 3626 | q = q.filter(cls.revision == revision) |
|
3623 | 3627 | elif pull_request_id: |
|
3624 | 3628 | q = q.filter(cls.pull_request_id == pull_request_id) |
|
3625 | 3629 | return q.all() |
|
3626 | 3630 | |
|
3627 | 3631 | @classmethod |
|
3628 | 3632 | def get_index_from_version(cls, pr_version, versions): |
|
3629 | 3633 | num_versions = [x.pull_request_version_id for x in versions] |
|
3630 | 3634 | try: |
|
3631 | 3635 | return num_versions.index(pr_version) +1 |
|
3632 | 3636 | except (IndexError, ValueError): |
|
3633 | 3637 | return |
|
3634 | 3638 | |
|
3635 | 3639 | @property |
|
3636 | 3640 | def outdated(self): |
|
3637 | 3641 | return self.display_state == self.COMMENT_OUTDATED |
|
3638 | 3642 | |
|
3639 | 3643 | def outdated_at_version(self, version): |
|
3640 | 3644 | """ |
|
3641 | 3645 | Checks if comment is outdated for given pull request version |
|
3642 | 3646 | """ |
|
3643 | 3647 | return self.outdated and self.pull_request_version_id != version |
|
3644 | 3648 | |
|
3645 | 3649 | def older_than_version(self, version): |
|
3646 | 3650 | """ |
|
3647 | 3651 | Checks if comment is made from previous version than given |
|
3648 | 3652 | """ |
|
3649 | 3653 | if version is None: |
|
3650 | 3654 | return self.pull_request_version_id is not None |
|
3651 | 3655 | |
|
3652 | 3656 | return self.pull_request_version_id < version |
|
3653 | 3657 | |
|
3654 | 3658 | @property |
|
3655 | 3659 | def resolved(self): |
|
3656 | 3660 | return self.resolved_by[0] if self.resolved_by else None |
|
3657 | 3661 | |
|
3658 | 3662 | @property |
|
3659 | 3663 | def is_todo(self): |
|
3660 | 3664 | return self.comment_type == self.COMMENT_TYPE_TODO |
|
3661 | 3665 | |
|
3662 | 3666 | @property |
|
3663 | 3667 | def is_inline(self): |
|
3664 | 3668 | return self.line_no and self.f_path |
|
3665 | 3669 | |
|
3666 | 3670 | def get_index_version(self, versions): |
|
3667 | 3671 | return self.get_index_from_version( |
|
3668 | 3672 | self.pull_request_version_id, versions) |
|
3669 | 3673 | |
|
3670 | 3674 | def __repr__(self): |
|
3671 | 3675 | if self.comment_id: |
|
3672 | 3676 | return '<DB:Comment #%s>' % self.comment_id |
|
3673 | 3677 | else: |
|
3674 | 3678 | return '<DB:Comment at %#x>' % id(self) |
|
3675 | 3679 | |
|
3676 | 3680 | def get_api_data(self): |
|
3677 | 3681 | comment = self |
|
3678 | 3682 | data = { |
|
3679 | 3683 | 'comment_id': comment.comment_id, |
|
3680 | 3684 | 'comment_type': comment.comment_type, |
|
3681 | 3685 | 'comment_text': comment.text, |
|
3682 | 3686 | 'comment_status': comment.status_change, |
|
3683 | 3687 | 'comment_f_path': comment.f_path, |
|
3684 | 3688 | 'comment_lineno': comment.line_no, |
|
3685 | 3689 | 'comment_author': comment.author, |
|
3686 | 3690 | 'comment_created_on': comment.created_on, |
|
3687 | 3691 | 'comment_resolved_by': self.resolved |
|
3688 | 3692 | } |
|
3689 | 3693 | return data |
|
3690 | 3694 | |
|
3691 | 3695 | def __json__(self): |
|
3692 | 3696 | data = dict() |
|
3693 | 3697 | data.update(self.get_api_data()) |
|
3694 | 3698 | return data |
|
3695 | 3699 | |
|
3696 | 3700 | |
|
3697 | 3701 | class ChangesetStatus(Base, BaseModel): |
|
3698 | 3702 | __tablename__ = 'changeset_statuses' |
|
3699 | 3703 | __table_args__ = ( |
|
3700 | 3704 | Index('cs_revision_idx', 'revision'), |
|
3701 | 3705 | Index('cs_version_idx', 'version'), |
|
3702 | 3706 | UniqueConstraint('repo_id', 'revision', 'version'), |
|
3703 | 3707 | base_table_args |
|
3704 | 3708 | ) |
|
3705 | 3709 | |
|
3706 | 3710 | STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed' |
|
3707 | 3711 | STATUS_APPROVED = 'approved' |
|
3708 | 3712 | STATUS_REJECTED = 'rejected' |
|
3709 | 3713 | STATUS_UNDER_REVIEW = 'under_review' |
|
3710 | 3714 | |
|
3711 | 3715 | STATUSES = [ |
|
3712 | 3716 | (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default |
|
3713 | 3717 | (STATUS_APPROVED, _("Approved")), |
|
3714 | 3718 | (STATUS_REJECTED, _("Rejected")), |
|
3715 | 3719 | (STATUS_UNDER_REVIEW, _("Under Review")), |
|
3716 | 3720 | ] |
|
3717 | 3721 | |
|
3718 | 3722 | changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True) |
|
3719 | 3723 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
3720 | 3724 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None) |
|
3721 | 3725 | revision = Column('revision', String(40), nullable=False) |
|
3722 | 3726 | status = Column('status', String(128), nullable=False, default=DEFAULT) |
|
3723 | 3727 | changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id')) |
|
3724 | 3728 | modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now) |
|
3725 | 3729 | version = Column('version', Integer(), nullable=False, default=0) |
|
3726 | 3730 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
3727 | 3731 | |
|
3728 | 3732 | author = relationship('User', lazy='joined') |
|
3729 | 3733 | repo = relationship('Repository') |
|
3730 | 3734 | comment = relationship('ChangesetComment', lazy='joined') |
|
3731 | 3735 | pull_request = relationship('PullRequest', lazy='joined') |
|
3732 | 3736 | |
|
3733 | 3737 | def __unicode__(self): |
|
3734 | 3738 | return u"<%s('%s[v%s]:%s')>" % ( |
|
3735 | 3739 | self.__class__.__name__, |
|
3736 | 3740 | self.status, self.version, self.author |
|
3737 | 3741 | ) |
|
3738 | 3742 | |
|
3739 | 3743 | @classmethod |
|
3740 | 3744 | def get_status_lbl(cls, value): |
|
3741 | 3745 | return dict(cls.STATUSES).get(value) |
|
3742 | 3746 | |
|
3743 | 3747 | @property |
|
3744 | 3748 | def status_lbl(self): |
|
3745 | 3749 | return ChangesetStatus.get_status_lbl(self.status) |
|
3746 | 3750 | |
|
3747 | 3751 | def get_api_data(self): |
|
3748 | 3752 | status = self |
|
3749 | 3753 | data = { |
|
3750 | 3754 | 'status_id': status.changeset_status_id, |
|
3751 | 3755 | 'status': status.status, |
|
3752 | 3756 | } |
|
3753 | 3757 | return data |
|
3754 | 3758 | |
|
3755 | 3759 | def __json__(self): |
|
3756 | 3760 | data = dict() |
|
3757 | 3761 | data.update(self.get_api_data()) |
|
3758 | 3762 | return data |
|
3759 | 3763 | |
|
3760 | 3764 | |
|
3761 | 3765 | class _SetState(object): |
|
3762 | 3766 | """ |
|
3763 | 3767 | Context processor allowing changing state for sensitive operation such as |
|
3764 | 3768 | pull request update or merge |
|
3765 | 3769 | """ |
|
3766 | 3770 | |
|
3767 | 3771 | def __init__(self, pull_request, pr_state, back_state=None): |
|
3768 | 3772 | self._pr = pull_request |
|
3769 | 3773 | self._org_state = back_state or pull_request.pull_request_state |
|
3770 | 3774 | self._pr_state = pr_state |
|
3771 | 3775 | |
|
3772 | 3776 | def __enter__(self): |
|
3773 | 3777 | log.debug('StateLock: entering set state context, setting state to: `%s`', |
|
3774 | 3778 | self._pr_state) |
|
3775 | 3779 | self._pr.pull_request_state = self._pr_state |
|
3776 | 3780 | Session().add(self._pr) |
|
3777 | 3781 | Session().commit() |
|
3778 | 3782 | |
|
3779 | 3783 | def __exit__(self, exc_type, exc_val, exc_tb): |
|
3780 | 3784 | log.debug('StateLock: exiting set state context, setting state to: `%s`', |
|
3781 | 3785 | self._org_state) |
|
3782 | 3786 | self._pr.pull_request_state = self._org_state |
|
3783 | 3787 | Session().add(self._pr) |
|
3784 | 3788 | Session().commit() |
|
3785 | 3789 | |
|
3786 | 3790 | |
|
3787 | 3791 | class _PullRequestBase(BaseModel): |
|
3788 | 3792 | """ |
|
3789 | 3793 | Common attributes of pull request and version entries. |
|
3790 | 3794 | """ |
|
3791 | 3795 | |
|
3792 | 3796 | # .status values |
|
3793 | 3797 | STATUS_NEW = u'new' |
|
3794 | 3798 | STATUS_OPEN = u'open' |
|
3795 | 3799 | STATUS_CLOSED = u'closed' |
|
3796 | 3800 | |
|
3797 | 3801 | # available states |
|
3798 | 3802 | STATE_CREATING = u'creating' |
|
3799 | 3803 | STATE_UPDATING = u'updating' |
|
3800 | 3804 | STATE_MERGING = u'merging' |
|
3801 | 3805 | STATE_CREATED = u'created' |
|
3802 | 3806 | |
|
3803 | 3807 | title = Column('title', Unicode(255), nullable=True) |
|
3804 | 3808 | description = Column( |
|
3805 | 3809 | 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), |
|
3806 | 3810 | nullable=True) |
|
3807 | 3811 | description_renderer = Column('description_renderer', Unicode(64), nullable=True) |
|
3808 | 3812 | |
|
3809 | 3813 | # new/open/closed status of pull request (not approve/reject/etc) |
|
3810 | 3814 | status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW) |
|
3811 | 3815 | created_on = Column( |
|
3812 | 3816 | 'created_on', DateTime(timezone=False), nullable=False, |
|
3813 | 3817 | default=datetime.datetime.now) |
|
3814 | 3818 | updated_on = Column( |
|
3815 | 3819 | 'updated_on', DateTime(timezone=False), nullable=False, |
|
3816 | 3820 | default=datetime.datetime.now) |
|
3817 | 3821 | |
|
3818 | 3822 | pull_request_state = Column("pull_request_state", String(255), nullable=True) |
|
3819 | 3823 | |
|
3820 | 3824 | @declared_attr |
|
3821 | 3825 | def user_id(cls): |
|
3822 | 3826 | return Column( |
|
3823 | 3827 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
3824 | 3828 | unique=None) |
|
3825 | 3829 | |
|
3826 | 3830 | # 500 revisions max |
|
3827 | 3831 | _revisions = Column( |
|
3828 | 3832 | 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql')) |
|
3829 | 3833 | |
|
3830 | 3834 | @declared_attr |
|
3831 | 3835 | def source_repo_id(cls): |
|
3832 | 3836 | # TODO: dan: rename column to source_repo_id |
|
3833 | 3837 | return Column( |
|
3834 | 3838 | 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3835 | 3839 | nullable=False) |
|
3836 | 3840 | |
|
3837 | 3841 | _source_ref = Column('org_ref', Unicode(255), nullable=False) |
|
3838 | 3842 | |
|
3839 | 3843 | @hybrid_property |
|
3840 | 3844 | def source_ref(self): |
|
3841 | 3845 | return self._source_ref |
|
3842 | 3846 | |
|
3843 | 3847 | @source_ref.setter |
|
3844 | 3848 | def source_ref(self, val): |
|
3845 | 3849 | parts = (val or '').split(':') |
|
3846 | 3850 | if len(parts) != 3: |
|
3847 | 3851 | raise ValueError( |
|
3848 | 3852 | 'Invalid reference format given: {}, expected X:Y:Z'.format(val)) |
|
3849 | 3853 | self._source_ref = safe_unicode(val) |
|
3850 | 3854 | |
|
3851 | 3855 | _target_ref = Column('other_ref', Unicode(255), nullable=False) |
|
3852 | 3856 | |
|
3853 | 3857 | @hybrid_property |
|
3854 | 3858 | def target_ref(self): |
|
3855 | 3859 | return self._target_ref |
|
3856 | 3860 | |
|
3857 | 3861 | @target_ref.setter |
|
3858 | 3862 | def target_ref(self, val): |
|
3859 | 3863 | parts = (val or '').split(':') |
|
3860 | 3864 | if len(parts) != 3: |
|
3861 | 3865 | raise ValueError( |
|
3862 | 3866 | 'Invalid reference format given: {}, expected X:Y:Z'.format(val)) |
|
3863 | 3867 | self._target_ref = safe_unicode(val) |
|
3864 | 3868 | |
|
3865 | 3869 | @declared_attr |
|
3866 | 3870 | def target_repo_id(cls): |
|
3867 | 3871 | # TODO: dan: rename column to target_repo_id |
|
3868 | 3872 | return Column( |
|
3869 | 3873 | 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3870 | 3874 | nullable=False) |
|
3871 | 3875 | |
|
3872 | 3876 | _shadow_merge_ref = Column('shadow_merge_ref', Unicode(255), nullable=True) |
|
3873 | 3877 | |
|
3874 | 3878 | # TODO: dan: rename column to last_merge_source_rev |
|
3875 | 3879 | _last_merge_source_rev = Column( |
|
3876 | 3880 | 'last_merge_org_rev', String(40), nullable=True) |
|
3877 | 3881 | # TODO: dan: rename column to last_merge_target_rev |
|
3878 | 3882 | _last_merge_target_rev = Column( |
|
3879 | 3883 | 'last_merge_other_rev', String(40), nullable=True) |
|
3880 | 3884 | _last_merge_status = Column('merge_status', Integer(), nullable=True) |
|
3881 | 3885 | merge_rev = Column('merge_rev', String(40), nullable=True) |
|
3882 | 3886 | |
|
3883 | 3887 | reviewer_data = Column( |
|
3884 | 3888 | 'reviewer_data_json', MutationObj.as_mutable( |
|
3885 | 3889 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
3886 | 3890 | |
|
3887 | 3891 | @property |
|
3888 | 3892 | def reviewer_data_json(self): |
|
3889 | 3893 | return json.dumps(self.reviewer_data) |
|
3890 | 3894 | |
|
3891 | 3895 | @hybrid_property |
|
3892 | 3896 | def description_safe(self): |
|
3893 | 3897 | from rhodecode.lib import helpers as h |
|
3894 | 3898 | return h.escape(self.description) |
|
3895 | 3899 | |
|
3896 | 3900 | @hybrid_property |
|
3897 | 3901 | def revisions(self): |
|
3898 | 3902 | return self._revisions.split(':') if self._revisions else [] |
|
3899 | 3903 | |
|
3900 | 3904 | @revisions.setter |
|
3901 | 3905 | def revisions(self, val): |
|
3902 | 3906 | self._revisions = ':'.join(val) |
|
3903 | 3907 | |
|
3904 | 3908 | @hybrid_property |
|
3905 | 3909 | def last_merge_status(self): |
|
3906 | 3910 | return safe_int(self._last_merge_status) |
|
3907 | 3911 | |
|
3908 | 3912 | @last_merge_status.setter |
|
3909 | 3913 | def last_merge_status(self, val): |
|
3910 | 3914 | self._last_merge_status = val |
|
3911 | 3915 | |
|
3912 | 3916 | @declared_attr |
|
3913 | 3917 | def author(cls): |
|
3914 | 3918 | return relationship('User', lazy='joined') |
|
3915 | 3919 | |
|
3916 | 3920 | @declared_attr |
|
3917 | 3921 | def source_repo(cls): |
|
3918 | 3922 | return relationship( |
|
3919 | 3923 | 'Repository', |
|
3920 | 3924 | primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__) |
|
3921 | 3925 | |
|
3922 | 3926 | @property |
|
3923 | 3927 | def source_ref_parts(self): |
|
3924 | 3928 | return self.unicode_to_reference(self.source_ref) |
|
3925 | 3929 | |
|
3926 | 3930 | @declared_attr |
|
3927 | 3931 | def target_repo(cls): |
|
3928 | 3932 | return relationship( |
|
3929 | 3933 | 'Repository', |
|
3930 | 3934 | primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__) |
|
3931 | 3935 | |
|
3932 | 3936 | @property |
|
3933 | 3937 | def target_ref_parts(self): |
|
3934 | 3938 | return self.unicode_to_reference(self.target_ref) |
|
3935 | 3939 | |
|
3936 | 3940 | @property |
|
3937 | 3941 | def shadow_merge_ref(self): |
|
3938 | 3942 | return self.unicode_to_reference(self._shadow_merge_ref) |
|
3939 | 3943 | |
|
3940 | 3944 | @shadow_merge_ref.setter |
|
3941 | 3945 | def shadow_merge_ref(self, ref): |
|
3942 | 3946 | self._shadow_merge_ref = self.reference_to_unicode(ref) |
|
3943 | 3947 | |
|
3944 | 3948 | @staticmethod |
|
3945 | 3949 | def unicode_to_reference(raw): |
|
3946 | 3950 | """ |
|
3947 | 3951 | Convert a unicode (or string) to a reference object. |
|
3948 | 3952 | If unicode evaluates to False it returns None. |
|
3949 | 3953 | """ |
|
3950 | 3954 | if raw: |
|
3951 | 3955 | refs = raw.split(':') |
|
3952 | 3956 | return Reference(*refs) |
|
3953 | 3957 | else: |
|
3954 | 3958 | return None |
|
3955 | 3959 | |
|
3956 | 3960 | @staticmethod |
|
3957 | 3961 | def reference_to_unicode(ref): |
|
3958 | 3962 | """ |
|
3959 | 3963 | Convert a reference object to unicode. |
|
3960 | 3964 | If reference is None it returns None. |
|
3961 | 3965 | """ |
|
3962 | 3966 | if ref: |
|
3963 | 3967 | return u':'.join(ref) |
|
3964 | 3968 | else: |
|
3965 | 3969 | return None |
|
3966 | 3970 | |
|
3967 | 3971 | def get_api_data(self, with_merge_state=True): |
|
3968 | 3972 | from rhodecode.model.pull_request import PullRequestModel |
|
3969 | 3973 | |
|
3970 | 3974 | pull_request = self |
|
3971 | 3975 | if with_merge_state: |
|
3972 | 3976 | merge_status = PullRequestModel().merge_status(pull_request) |
|
3973 | 3977 | merge_state = { |
|
3974 | 3978 | 'status': merge_status[0], |
|
3975 | 3979 | 'message': safe_unicode(merge_status[1]), |
|
3976 | 3980 | } |
|
3977 | 3981 | else: |
|
3978 | 3982 | merge_state = {'status': 'not_available', |
|
3979 | 3983 | 'message': 'not_available'} |
|
3980 | 3984 | |
|
3981 | 3985 | merge_data = { |
|
3982 | 3986 | 'clone_url': PullRequestModel().get_shadow_clone_url(pull_request), |
|
3983 | 3987 | 'reference': ( |
|
3984 | 3988 | pull_request.shadow_merge_ref._asdict() |
|
3985 | 3989 | if pull_request.shadow_merge_ref else None), |
|
3986 | 3990 | } |
|
3987 | 3991 | |
|
3988 | 3992 | data = { |
|
3989 | 3993 | 'pull_request_id': pull_request.pull_request_id, |
|
3990 | 3994 | 'url': PullRequestModel().get_url(pull_request), |
|
3991 | 3995 | 'title': pull_request.title, |
|
3992 | 3996 | 'description': pull_request.description, |
|
3993 | 3997 | 'status': pull_request.status, |
|
3994 | 3998 | 'state': pull_request.pull_request_state, |
|
3995 | 3999 | 'created_on': pull_request.created_on, |
|
3996 | 4000 | 'updated_on': pull_request.updated_on, |
|
3997 | 4001 | 'commit_ids': pull_request.revisions, |
|
3998 | 4002 | 'review_status': pull_request.calculated_review_status(), |
|
3999 | 4003 | 'mergeable': merge_state, |
|
4000 | 4004 | 'source': { |
|
4001 | 4005 | 'clone_url': pull_request.source_repo.clone_url(), |
|
4002 | 4006 | 'repository': pull_request.source_repo.repo_name, |
|
4003 | 4007 | 'reference': { |
|
4004 | 4008 | 'name': pull_request.source_ref_parts.name, |
|
4005 | 4009 | 'type': pull_request.source_ref_parts.type, |
|
4006 | 4010 | 'commit_id': pull_request.source_ref_parts.commit_id, |
|
4007 | 4011 | }, |
|
4008 | 4012 | }, |
|
4009 | 4013 | 'target': { |
|
4010 | 4014 | 'clone_url': pull_request.target_repo.clone_url(), |
|
4011 | 4015 | 'repository': pull_request.target_repo.repo_name, |
|
4012 | 4016 | 'reference': { |
|
4013 | 4017 | 'name': pull_request.target_ref_parts.name, |
|
4014 | 4018 | 'type': pull_request.target_ref_parts.type, |
|
4015 | 4019 | 'commit_id': pull_request.target_ref_parts.commit_id, |
|
4016 | 4020 | }, |
|
4017 | 4021 | }, |
|
4018 | 4022 | 'merge': merge_data, |
|
4019 | 4023 | 'author': pull_request.author.get_api_data(include_secrets=False, |
|
4020 | 4024 | details='basic'), |
|
4021 | 4025 | 'reviewers': [ |
|
4022 | 4026 | { |
|
4023 | 4027 | 'user': reviewer.get_api_data(include_secrets=False, |
|
4024 | 4028 | details='basic'), |
|
4025 | 4029 | 'reasons': reasons, |
|
4026 | 4030 | 'review_status': st[0][1].status if st else 'not_reviewed', |
|
4027 | 4031 | } |
|
4028 | 4032 | for obj, reviewer, reasons, mandatory, st in |
|
4029 | 4033 | pull_request.reviewers_statuses() |
|
4030 | 4034 | ] |
|
4031 | 4035 | } |
|
4032 | 4036 | |
|
4033 | 4037 | return data |
|
4034 | 4038 | |
|
4035 | 4039 | def set_state(self, pull_request_state, final_state=None): |
|
4036 | 4040 | """ |
|
4037 | 4041 | # goes from initial state to updating to initial state. |
|
4038 | 4042 | # initial state can be changed by specifying back_state= |
|
4039 | 4043 | with pull_request_obj.set_state(PullRequest.STATE_UPDATING): |
|
4040 | 4044 | pull_request.merge() |
|
4041 | 4045 | |
|
4042 | 4046 | :param pull_request_state: |
|
4043 | 4047 | :param final_state: |
|
4044 | 4048 | |
|
4045 | 4049 | """ |
|
4046 | 4050 | |
|
4047 | 4051 | return _SetState(self, pull_request_state, back_state=final_state) |
|
4048 | 4052 | |
|
4049 | 4053 | |
|
4050 | 4054 | class PullRequest(Base, _PullRequestBase): |
|
4051 | 4055 | __tablename__ = 'pull_requests' |
|
4052 | 4056 | __table_args__ = ( |
|
4053 | 4057 | base_table_args, |
|
4054 | 4058 | ) |
|
4055 | 4059 | |
|
4056 | 4060 | pull_request_id = Column( |
|
4057 | 4061 | 'pull_request_id', Integer(), nullable=False, primary_key=True) |
|
4058 | 4062 | |
|
4059 | 4063 | def __repr__(self): |
|
4060 | 4064 | if self.pull_request_id: |
|
4061 | 4065 | return '<DB:PullRequest #%s>' % self.pull_request_id |
|
4062 | 4066 | else: |
|
4063 | 4067 | return '<DB:PullRequest at %#x>' % id(self) |
|
4064 | 4068 | |
|
4065 | 4069 | reviewers = relationship('PullRequestReviewers', |
|
4066 | 4070 | cascade="all, delete, delete-orphan") |
|
4067 | 4071 | statuses = relationship('ChangesetStatus', |
|
4068 | 4072 | cascade="all, delete, delete-orphan") |
|
4069 | 4073 | comments = relationship('ChangesetComment', |
|
4070 | 4074 | cascade="all, delete, delete-orphan") |
|
4071 | 4075 | versions = relationship('PullRequestVersion', |
|
4072 | 4076 | cascade="all, delete, delete-orphan", |
|
4073 | 4077 | lazy='dynamic') |
|
4074 | 4078 | |
|
4075 | 4079 | @classmethod |
|
4076 | 4080 | def get_pr_display_object(cls, pull_request_obj, org_pull_request_obj, |
|
4077 | 4081 | internal_methods=None): |
|
4078 | 4082 | |
|
4079 | 4083 | class PullRequestDisplay(object): |
|
4080 | 4084 | """ |
|
4081 | 4085 | Special object wrapper for showing PullRequest data via Versions |
|
4082 | 4086 | It mimics PR object as close as possible. This is read only object |
|
4083 | 4087 | just for display |
|
4084 | 4088 | """ |
|
4085 | 4089 | |
|
4086 | 4090 | def __init__(self, attrs, internal=None): |
|
4087 | 4091 | self.attrs = attrs |
|
4088 | 4092 | # internal have priority over the given ones via attrs |
|
4089 | 4093 | self.internal = internal or ['versions'] |
|
4090 | 4094 | |
|
4091 | 4095 | def __getattr__(self, item): |
|
4092 | 4096 | if item in self.internal: |
|
4093 | 4097 | return getattr(self, item) |
|
4094 | 4098 | try: |
|
4095 | 4099 | return self.attrs[item] |
|
4096 | 4100 | except KeyError: |
|
4097 | 4101 | raise AttributeError( |
|
4098 | 4102 | '%s object has no attribute %s' % (self, item)) |
|
4099 | 4103 | |
|
4100 | 4104 | def __repr__(self): |
|
4101 | 4105 | return '<DB:PullRequestDisplay #%s>' % self.attrs.get('pull_request_id') |
|
4102 | 4106 | |
|
4103 | 4107 | def versions(self): |
|
4104 | 4108 | return pull_request_obj.versions.order_by( |
|
4105 | 4109 | PullRequestVersion.pull_request_version_id).all() |
|
4106 | 4110 | |
|
4107 | 4111 | def is_closed(self): |
|
4108 | 4112 | return pull_request_obj.is_closed() |
|
4109 | 4113 | |
|
4110 | 4114 | @property |
|
4111 | 4115 | def pull_request_version_id(self): |
|
4112 | 4116 | return getattr(pull_request_obj, 'pull_request_version_id', None) |
|
4113 | 4117 | |
|
4114 | 4118 | attrs = StrictAttributeDict(pull_request_obj.get_api_data()) |
|
4115 | 4119 | |
|
4116 | 4120 | attrs.author = StrictAttributeDict( |
|
4117 | 4121 | pull_request_obj.author.get_api_data()) |
|
4118 | 4122 | if pull_request_obj.target_repo: |
|
4119 | 4123 | attrs.target_repo = StrictAttributeDict( |
|
4120 | 4124 | pull_request_obj.target_repo.get_api_data()) |
|
4121 | 4125 | attrs.target_repo.clone_url = pull_request_obj.target_repo.clone_url |
|
4122 | 4126 | |
|
4123 | 4127 | if pull_request_obj.source_repo: |
|
4124 | 4128 | attrs.source_repo = StrictAttributeDict( |
|
4125 | 4129 | pull_request_obj.source_repo.get_api_data()) |
|
4126 | 4130 | attrs.source_repo.clone_url = pull_request_obj.source_repo.clone_url |
|
4127 | 4131 | |
|
4128 | 4132 | attrs.source_ref_parts = pull_request_obj.source_ref_parts |
|
4129 | 4133 | attrs.target_ref_parts = pull_request_obj.target_ref_parts |
|
4130 | 4134 | attrs.revisions = pull_request_obj.revisions |
|
4131 | 4135 | |
|
4132 | 4136 | attrs.shadow_merge_ref = org_pull_request_obj.shadow_merge_ref |
|
4133 | 4137 | attrs.reviewer_data = org_pull_request_obj.reviewer_data |
|
4134 | 4138 | attrs.reviewer_data_json = org_pull_request_obj.reviewer_data_json |
|
4135 | 4139 | |
|
4136 | 4140 | return PullRequestDisplay(attrs, internal=internal_methods) |
|
4137 | 4141 | |
|
4138 | 4142 | def is_closed(self): |
|
4139 | 4143 | return self.status == self.STATUS_CLOSED |
|
4140 | 4144 | |
|
4141 | 4145 | def __json__(self): |
|
4142 | 4146 | return { |
|
4143 | 4147 | 'revisions': self.revisions, |
|
4144 | 4148 | } |
|
4145 | 4149 | |
|
4146 | 4150 | def calculated_review_status(self): |
|
4147 | 4151 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
4148 | 4152 | return ChangesetStatusModel().calculated_review_status(self) |
|
4149 | 4153 | |
|
4150 | 4154 | def reviewers_statuses(self): |
|
4151 | 4155 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
4152 | 4156 | return ChangesetStatusModel().reviewers_statuses(self) |
|
4153 | 4157 | |
|
4154 | 4158 | @property |
|
4155 | 4159 | def workspace_id(self): |
|
4156 | 4160 | from rhodecode.model.pull_request import PullRequestModel |
|
4157 | 4161 | return PullRequestModel()._workspace_id(self) |
|
4158 | 4162 | |
|
4159 | 4163 | def get_shadow_repo(self): |
|
4160 | 4164 | workspace_id = self.workspace_id |
|
4161 | 4165 | vcs_obj = self.target_repo.scm_instance() |
|
4162 | 4166 | shadow_repository_path = vcs_obj._get_shadow_repository_path( |
|
4163 | 4167 | self.target_repo.repo_id, workspace_id) |
|
4164 | 4168 | if os.path.isdir(shadow_repository_path): |
|
4165 | 4169 | return vcs_obj._get_shadow_instance(shadow_repository_path) |
|
4166 | 4170 | |
|
4167 | 4171 | |
|
4168 | 4172 | class PullRequestVersion(Base, _PullRequestBase): |
|
4169 | 4173 | __tablename__ = 'pull_request_versions' |
|
4170 | 4174 | __table_args__ = ( |
|
4171 | 4175 | base_table_args, |
|
4172 | 4176 | ) |
|
4173 | 4177 | |
|
4174 | 4178 | pull_request_version_id = Column( |
|
4175 | 4179 | 'pull_request_version_id', Integer(), nullable=False, primary_key=True) |
|
4176 | 4180 | pull_request_id = Column( |
|
4177 | 4181 | 'pull_request_id', Integer(), |
|
4178 | 4182 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
4179 | 4183 | pull_request = relationship('PullRequest') |
|
4180 | 4184 | |
|
4181 | 4185 | def __repr__(self): |
|
4182 | 4186 | if self.pull_request_version_id: |
|
4183 | 4187 | return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id |
|
4184 | 4188 | else: |
|
4185 | 4189 | return '<DB:PullRequestVersion at %#x>' % id(self) |
|
4186 | 4190 | |
|
4187 | 4191 | @property |
|
4188 | 4192 | def reviewers(self): |
|
4189 | 4193 | return self.pull_request.reviewers |
|
4190 | 4194 | |
|
4191 | 4195 | @property |
|
4192 | 4196 | def versions(self): |
|
4193 | 4197 | return self.pull_request.versions |
|
4194 | 4198 | |
|
4195 | 4199 | def is_closed(self): |
|
4196 | 4200 | # calculate from original |
|
4197 | 4201 | return self.pull_request.status == self.STATUS_CLOSED |
|
4198 | 4202 | |
|
4199 | 4203 | def calculated_review_status(self): |
|
4200 | 4204 | return self.pull_request.calculated_review_status() |
|
4201 | 4205 | |
|
4202 | 4206 | def reviewers_statuses(self): |
|
4203 | 4207 | return self.pull_request.reviewers_statuses() |
|
4204 | 4208 | |
|
4205 | 4209 | |
|
4206 | 4210 | class PullRequestReviewers(Base, BaseModel): |
|
4207 | 4211 | __tablename__ = 'pull_request_reviewers' |
|
4208 | 4212 | __table_args__ = ( |
|
4209 | 4213 | base_table_args, |
|
4210 | 4214 | ) |
|
4211 | 4215 | |
|
4212 | 4216 | @hybrid_property |
|
4213 | 4217 | def reasons(self): |
|
4214 | 4218 | if not self._reasons: |
|
4215 | 4219 | return [] |
|
4216 | 4220 | return self._reasons |
|
4217 | 4221 | |
|
4218 | 4222 | @reasons.setter |
|
4219 | 4223 | def reasons(self, val): |
|
4220 | 4224 | val = val or [] |
|
4221 | 4225 | if any(not isinstance(x, compat.string_types) for x in val): |
|
4222 | 4226 | raise Exception('invalid reasons type, must be list of strings') |
|
4223 | 4227 | self._reasons = val |
|
4224 | 4228 | |
|
4225 | 4229 | pull_requests_reviewers_id = Column( |
|
4226 | 4230 | 'pull_requests_reviewers_id', Integer(), nullable=False, |
|
4227 | 4231 | primary_key=True) |
|
4228 | 4232 | pull_request_id = Column( |
|
4229 | 4233 | "pull_request_id", Integer(), |
|
4230 | 4234 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
4231 | 4235 | user_id = Column( |
|
4232 | 4236 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4233 | 4237 | _reasons = Column( |
|
4234 | 4238 | 'reason', MutationList.as_mutable( |
|
4235 | 4239 | JsonType('list', dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4236 | 4240 | |
|
4237 | 4241 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4238 | 4242 | user = relationship('User') |
|
4239 | 4243 | pull_request = relationship('PullRequest') |
|
4240 | 4244 | |
|
4241 | 4245 | rule_data = Column( |
|
4242 | 4246 | 'rule_data_json', |
|
4243 | 4247 | JsonType(dialect_map=dict(mysql=UnicodeText(16384)))) |
|
4244 | 4248 | |
|
4245 | 4249 | def rule_user_group_data(self): |
|
4246 | 4250 | """ |
|
4247 | 4251 | Returns the voting user group rule data for this reviewer |
|
4248 | 4252 | """ |
|
4249 | 4253 | |
|
4250 | 4254 | if self.rule_data and 'vote_rule' in self.rule_data: |
|
4251 | 4255 | user_group_data = {} |
|
4252 | 4256 | if 'rule_user_group_entry_id' in self.rule_data: |
|
4253 | 4257 | # means a group with voting rules ! |
|
4254 | 4258 | user_group_data['id'] = self.rule_data['rule_user_group_entry_id'] |
|
4255 | 4259 | user_group_data['name'] = self.rule_data['rule_name'] |
|
4256 | 4260 | user_group_data['vote_rule'] = self.rule_data['vote_rule'] |
|
4257 | 4261 | |
|
4258 | 4262 | return user_group_data |
|
4259 | 4263 | |
|
4260 | 4264 | def __unicode__(self): |
|
4261 | 4265 | return u"<%s('id:%s')>" % (self.__class__.__name__, |
|
4262 | 4266 | self.pull_requests_reviewers_id) |
|
4263 | 4267 | |
|
4264 | 4268 | |
|
4265 | 4269 | class Notification(Base, BaseModel): |
|
4266 | 4270 | __tablename__ = 'notifications' |
|
4267 | 4271 | __table_args__ = ( |
|
4268 | 4272 | Index('notification_type_idx', 'type'), |
|
4269 | 4273 | base_table_args, |
|
4270 | 4274 | ) |
|
4271 | 4275 | |
|
4272 | 4276 | TYPE_CHANGESET_COMMENT = u'cs_comment' |
|
4273 | 4277 | TYPE_MESSAGE = u'message' |
|
4274 | 4278 | TYPE_MENTION = u'mention' |
|
4275 | 4279 | TYPE_REGISTRATION = u'registration' |
|
4276 | 4280 | TYPE_PULL_REQUEST = u'pull_request' |
|
4277 | 4281 | TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment' |
|
4278 | 4282 | |
|
4279 | 4283 | notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True) |
|
4280 | 4284 | subject = Column('subject', Unicode(512), nullable=True) |
|
4281 | 4285 | body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True) |
|
4282 | 4286 | created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4283 | 4287 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4284 | 4288 | type_ = Column('type', Unicode(255)) |
|
4285 | 4289 | |
|
4286 | 4290 | created_by_user = relationship('User') |
|
4287 | 4291 | notifications_to_users = relationship('UserNotification', lazy='joined', |
|
4288 | 4292 | cascade="all, delete, delete-orphan") |
|
4289 | 4293 | |
|
4290 | 4294 | @property |
|
4291 | 4295 | def recipients(self): |
|
4292 | 4296 | return [x.user for x in UserNotification.query()\ |
|
4293 | 4297 | .filter(UserNotification.notification == self)\ |
|
4294 | 4298 | .order_by(UserNotification.user_id.asc()).all()] |
|
4295 | 4299 | |
|
4296 | 4300 | @classmethod |
|
4297 | 4301 | def create(cls, created_by, subject, body, recipients, type_=None): |
|
4298 | 4302 | if type_ is None: |
|
4299 | 4303 | type_ = Notification.TYPE_MESSAGE |
|
4300 | 4304 | |
|
4301 | 4305 | notification = cls() |
|
4302 | 4306 | notification.created_by_user = created_by |
|
4303 | 4307 | notification.subject = subject |
|
4304 | 4308 | notification.body = body |
|
4305 | 4309 | notification.type_ = type_ |
|
4306 | 4310 | notification.created_on = datetime.datetime.now() |
|
4307 | 4311 | |
|
4308 | 4312 | # For each recipient link the created notification to his account |
|
4309 | 4313 | for u in recipients: |
|
4310 | 4314 | assoc = UserNotification() |
|
4311 | 4315 | assoc.user_id = u.user_id |
|
4312 | 4316 | assoc.notification = notification |
|
4313 | 4317 | |
|
4314 | 4318 | # if created_by is inside recipients mark his notification |
|
4315 | 4319 | # as read |
|
4316 | 4320 | if u.user_id == created_by.user_id: |
|
4317 | 4321 | assoc.read = True |
|
4318 | 4322 | Session().add(assoc) |
|
4319 | 4323 | |
|
4320 | 4324 | Session().add(notification) |
|
4321 | 4325 | |
|
4322 | 4326 | return notification |
|
4323 | 4327 | |
|
4324 | 4328 | |
|
4325 | 4329 | class UserNotification(Base, BaseModel): |
|
4326 | 4330 | __tablename__ = 'user_to_notification' |
|
4327 | 4331 | __table_args__ = ( |
|
4328 | 4332 | UniqueConstraint('user_id', 'notification_id'), |
|
4329 | 4333 | base_table_args |
|
4330 | 4334 | ) |
|
4331 | 4335 | |
|
4332 | 4336 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
4333 | 4337 | notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True) |
|
4334 | 4338 | read = Column('read', Boolean, default=False) |
|
4335 | 4339 | sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None) |
|
4336 | 4340 | |
|
4337 | 4341 | user = relationship('User', lazy="joined") |
|
4338 | 4342 | notification = relationship('Notification', lazy="joined", |
|
4339 | 4343 | order_by=lambda: Notification.created_on.desc(),) |
|
4340 | 4344 | |
|
4341 | 4345 | def mark_as_read(self): |
|
4342 | 4346 | self.read = True |
|
4343 | 4347 | Session().add(self) |
|
4344 | 4348 | |
|
4345 | 4349 | |
|
4346 | 4350 | class Gist(Base, BaseModel): |
|
4347 | 4351 | __tablename__ = 'gists' |
|
4348 | 4352 | __table_args__ = ( |
|
4349 | 4353 | Index('g_gist_access_id_idx', 'gist_access_id'), |
|
4350 | 4354 | Index('g_created_on_idx', 'created_on'), |
|
4351 | 4355 | base_table_args |
|
4352 | 4356 | ) |
|
4353 | 4357 | |
|
4354 | 4358 | GIST_PUBLIC = u'public' |
|
4355 | 4359 | GIST_PRIVATE = u'private' |
|
4356 | 4360 | DEFAULT_FILENAME = u'gistfile1.txt' |
|
4357 | 4361 | |
|
4358 | 4362 | ACL_LEVEL_PUBLIC = u'acl_public' |
|
4359 | 4363 | ACL_LEVEL_PRIVATE = u'acl_private' |
|
4360 | 4364 | |
|
4361 | 4365 | gist_id = Column('gist_id', Integer(), primary_key=True) |
|
4362 | 4366 | gist_access_id = Column('gist_access_id', Unicode(250)) |
|
4363 | 4367 | gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
4364 | 4368 | gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4365 | 4369 | gist_expires = Column('gist_expires', Float(53), nullable=False) |
|
4366 | 4370 | gist_type = Column('gist_type', Unicode(128), nullable=False) |
|
4367 | 4371 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4368 | 4372 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4369 | 4373 | acl_level = Column('acl_level', Unicode(128), nullable=True) |
|
4370 | 4374 | |
|
4371 | 4375 | owner = relationship('User') |
|
4372 | 4376 | |
|
4373 | 4377 | def __repr__(self): |
|
4374 | 4378 | return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id) |
|
4375 | 4379 | |
|
4376 | 4380 | @hybrid_property |
|
4377 | 4381 | def description_safe(self): |
|
4378 | 4382 | from rhodecode.lib import helpers as h |
|
4379 | 4383 | return h.escape(self.gist_description) |
|
4380 | 4384 | |
|
4381 | 4385 | @classmethod |
|
4382 | 4386 | def get_or_404(cls, id_): |
|
4383 | 4387 | from pyramid.httpexceptions import HTTPNotFound |
|
4384 | 4388 | |
|
4385 | 4389 | res = cls.query().filter(cls.gist_access_id == id_).scalar() |
|
4386 | 4390 | if not res: |
|
4387 | 4391 | raise HTTPNotFound() |
|
4388 | 4392 | return res |
|
4389 | 4393 | |
|
4390 | 4394 | @classmethod |
|
4391 | 4395 | def get_by_access_id(cls, gist_access_id): |
|
4392 | 4396 | return cls.query().filter(cls.gist_access_id == gist_access_id).scalar() |
|
4393 | 4397 | |
|
4394 | 4398 | def gist_url(self): |
|
4395 | 4399 | from rhodecode.model.gist import GistModel |
|
4396 | 4400 | return GistModel().get_url(self) |
|
4397 | 4401 | |
|
4398 | 4402 | @classmethod |
|
4399 | 4403 | def base_path(cls): |
|
4400 | 4404 | """ |
|
4401 | 4405 | Returns base path when all gists are stored |
|
4402 | 4406 | |
|
4403 | 4407 | :param cls: |
|
4404 | 4408 | """ |
|
4405 | 4409 | from rhodecode.model.gist import GIST_STORE_LOC |
|
4406 | 4410 | q = Session().query(RhodeCodeUi)\ |
|
4407 | 4411 | .filter(RhodeCodeUi.ui_key == URL_SEP) |
|
4408 | 4412 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
4409 | 4413 | return os.path.join(q.one().ui_value, GIST_STORE_LOC) |
|
4410 | 4414 | |
|
4411 | 4415 | def get_api_data(self): |
|
4412 | 4416 | """ |
|
4413 | 4417 | Common function for generating gist related data for API |
|
4414 | 4418 | """ |
|
4415 | 4419 | gist = self |
|
4416 | 4420 | data = { |
|
4417 | 4421 | 'gist_id': gist.gist_id, |
|
4418 | 4422 | 'type': gist.gist_type, |
|
4419 | 4423 | 'access_id': gist.gist_access_id, |
|
4420 | 4424 | 'description': gist.gist_description, |
|
4421 | 4425 | 'url': gist.gist_url(), |
|
4422 | 4426 | 'expires': gist.gist_expires, |
|
4423 | 4427 | 'created_on': gist.created_on, |
|
4424 | 4428 | 'modified_at': gist.modified_at, |
|
4425 | 4429 | 'content': None, |
|
4426 | 4430 | 'acl_level': gist.acl_level, |
|
4427 | 4431 | } |
|
4428 | 4432 | return data |
|
4429 | 4433 | |
|
4430 | 4434 | def __json__(self): |
|
4431 | 4435 | data = dict( |
|
4432 | 4436 | ) |
|
4433 | 4437 | data.update(self.get_api_data()) |
|
4434 | 4438 | return data |
|
4435 | 4439 | # SCM functions |
|
4436 | 4440 | |
|
4437 | 4441 | def scm_instance(self, **kwargs): |
|
4438 | 4442 | """ |
|
4439 | 4443 | Get an instance of VCS Repository |
|
4440 | 4444 | |
|
4441 | 4445 | :param kwargs: |
|
4442 | 4446 | """ |
|
4443 | 4447 | from rhodecode.model.gist import GistModel |
|
4444 | 4448 | full_repo_path = os.path.join(self.base_path(), self.gist_access_id) |
|
4445 | 4449 | return get_vcs_instance( |
|
4446 | 4450 | repo_path=safe_str(full_repo_path), create=False, |
|
4447 | 4451 | _vcs_alias=GistModel.vcs_backend) |
|
4448 | 4452 | |
|
4449 | 4453 | |
|
4450 | 4454 | class ExternalIdentity(Base, BaseModel): |
|
4451 | 4455 | __tablename__ = 'external_identities' |
|
4452 | 4456 | __table_args__ = ( |
|
4453 | 4457 | Index('local_user_id_idx', 'local_user_id'), |
|
4454 | 4458 | Index('external_id_idx', 'external_id'), |
|
4455 | 4459 | base_table_args |
|
4456 | 4460 | ) |
|
4457 | 4461 | |
|
4458 | 4462 | external_id = Column('external_id', Unicode(255), default=u'', primary_key=True) |
|
4459 | 4463 | external_username = Column('external_username', Unicode(1024), default=u'') |
|
4460 | 4464 | local_user_id = Column('local_user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
4461 | 4465 | provider_name = Column('provider_name', Unicode(255), default=u'', primary_key=True) |
|
4462 | 4466 | access_token = Column('access_token', String(1024), default=u'') |
|
4463 | 4467 | alt_token = Column('alt_token', String(1024), default=u'') |
|
4464 | 4468 | token_secret = Column('token_secret', String(1024), default=u'') |
|
4465 | 4469 | |
|
4466 | 4470 | @classmethod |
|
4467 | 4471 | def by_external_id_and_provider(cls, external_id, provider_name, local_user_id=None): |
|
4468 | 4472 | """ |
|
4469 | 4473 | Returns ExternalIdentity instance based on search params |
|
4470 | 4474 | |
|
4471 | 4475 | :param external_id: |
|
4472 | 4476 | :param provider_name: |
|
4473 | 4477 | :return: ExternalIdentity |
|
4474 | 4478 | """ |
|
4475 | 4479 | query = cls.query() |
|
4476 | 4480 | query = query.filter(cls.external_id == external_id) |
|
4477 | 4481 | query = query.filter(cls.provider_name == provider_name) |
|
4478 | 4482 | if local_user_id: |
|
4479 | 4483 | query = query.filter(cls.local_user_id == local_user_id) |
|
4480 | 4484 | return query.first() |
|
4481 | 4485 | |
|
4482 | 4486 | @classmethod |
|
4483 | 4487 | def user_by_external_id_and_provider(cls, external_id, provider_name): |
|
4484 | 4488 | """ |
|
4485 | 4489 | Returns User instance based on search params |
|
4486 | 4490 | |
|
4487 | 4491 | :param external_id: |
|
4488 | 4492 | :param provider_name: |
|
4489 | 4493 | :return: User |
|
4490 | 4494 | """ |
|
4491 | 4495 | query = User.query() |
|
4492 | 4496 | query = query.filter(cls.external_id == external_id) |
|
4493 | 4497 | query = query.filter(cls.provider_name == provider_name) |
|
4494 | 4498 | query = query.filter(User.user_id == cls.local_user_id) |
|
4495 | 4499 | return query.first() |
|
4496 | 4500 | |
|
4497 | 4501 | @classmethod |
|
4498 | 4502 | def by_local_user_id(cls, local_user_id): |
|
4499 | 4503 | """ |
|
4500 | 4504 | Returns all tokens for user |
|
4501 | 4505 | |
|
4502 | 4506 | :param local_user_id: |
|
4503 | 4507 | :return: ExternalIdentity |
|
4504 | 4508 | """ |
|
4505 | 4509 | query = cls.query() |
|
4506 | 4510 | query = query.filter(cls.local_user_id == local_user_id) |
|
4507 | 4511 | return query |
|
4508 | 4512 | |
|
4509 | 4513 | @classmethod |
|
4510 | 4514 | def load_provider_plugin(cls, plugin_id): |
|
4511 | 4515 | from rhodecode.authentication.base import loadplugin |
|
4512 | 4516 | _plugin_id = 'egg:rhodecode-enterprise-ee#{}'.format(plugin_id) |
|
4513 | 4517 | auth_plugin = loadplugin(_plugin_id) |
|
4514 | 4518 | return auth_plugin |
|
4515 | 4519 | |
|
4516 | 4520 | |
|
4517 | 4521 | class Integration(Base, BaseModel): |
|
4518 | 4522 | __tablename__ = 'integrations' |
|
4519 | 4523 | __table_args__ = ( |
|
4520 | 4524 | base_table_args |
|
4521 | 4525 | ) |
|
4522 | 4526 | |
|
4523 | 4527 | integration_id = Column('integration_id', Integer(), primary_key=True) |
|
4524 | 4528 | integration_type = Column('integration_type', String(255)) |
|
4525 | 4529 | enabled = Column('enabled', Boolean(), nullable=False) |
|
4526 | 4530 | name = Column('name', String(255), nullable=False) |
|
4527 | 4531 | child_repos_only = Column('child_repos_only', Boolean(), nullable=False, |
|
4528 | 4532 | default=False) |
|
4529 | 4533 | |
|
4530 | 4534 | settings = Column( |
|
4531 | 4535 | 'settings_json', MutationObj.as_mutable( |
|
4532 | 4536 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4533 | 4537 | repo_id = Column( |
|
4534 | 4538 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
4535 | 4539 | nullable=True, unique=None, default=None) |
|
4536 | 4540 | repo = relationship('Repository', lazy='joined') |
|
4537 | 4541 | |
|
4538 | 4542 | repo_group_id = Column( |
|
4539 | 4543 | 'repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
4540 | 4544 | nullable=True, unique=None, default=None) |
|
4541 | 4545 | repo_group = relationship('RepoGroup', lazy='joined') |
|
4542 | 4546 | |
|
4543 | 4547 | @property |
|
4544 | 4548 | def scope(self): |
|
4545 | 4549 | if self.repo: |
|
4546 | 4550 | return repr(self.repo) |
|
4547 | 4551 | if self.repo_group: |
|
4548 | 4552 | if self.child_repos_only: |
|
4549 | 4553 | return repr(self.repo_group) + ' (child repos only)' |
|
4550 | 4554 | else: |
|
4551 | 4555 | return repr(self.repo_group) + ' (recursive)' |
|
4552 | 4556 | if self.child_repos_only: |
|
4553 | 4557 | return 'root_repos' |
|
4554 | 4558 | return 'global' |
|
4555 | 4559 | |
|
4556 | 4560 | def __repr__(self): |
|
4557 | 4561 | return '<Integration(%r, %r)>' % (self.integration_type, self.scope) |
|
4558 | 4562 | |
|
4559 | 4563 | |
|
4560 | 4564 | class RepoReviewRuleUser(Base, BaseModel): |
|
4561 | 4565 | __tablename__ = 'repo_review_rules_users' |
|
4562 | 4566 | __table_args__ = ( |
|
4563 | 4567 | base_table_args |
|
4564 | 4568 | ) |
|
4565 | 4569 | |
|
4566 | 4570 | repo_review_rule_user_id = Column('repo_review_rule_user_id', Integer(), primary_key=True) |
|
4567 | 4571 | repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id')) |
|
4568 | 4572 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False) |
|
4569 | 4573 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4570 | 4574 | user = relationship('User') |
|
4571 | 4575 | |
|
4572 | 4576 | def rule_data(self): |
|
4573 | 4577 | return { |
|
4574 | 4578 | 'mandatory': self.mandatory |
|
4575 | 4579 | } |
|
4576 | 4580 | |
|
4577 | 4581 | |
|
4578 | 4582 | class RepoReviewRuleUserGroup(Base, BaseModel): |
|
4579 | 4583 | __tablename__ = 'repo_review_rules_users_groups' |
|
4580 | 4584 | __table_args__ = ( |
|
4581 | 4585 | base_table_args |
|
4582 | 4586 | ) |
|
4583 | 4587 | |
|
4584 | 4588 | VOTE_RULE_ALL = -1 |
|
4585 | 4589 | |
|
4586 | 4590 | repo_review_rule_users_group_id = Column('repo_review_rule_users_group_id', Integer(), primary_key=True) |
|
4587 | 4591 | repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id')) |
|
4588 | 4592 | users_group_id = Column("users_group_id", Integer(),ForeignKey('users_groups.users_group_id'), nullable=False) |
|
4589 | 4593 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4590 | 4594 | vote_rule = Column("vote_rule", Integer(), nullable=True, default=VOTE_RULE_ALL) |
|
4591 | 4595 | users_group = relationship('UserGroup') |
|
4592 | 4596 | |
|
4593 | 4597 | def rule_data(self): |
|
4594 | 4598 | return { |
|
4595 | 4599 | 'mandatory': self.mandatory, |
|
4596 | 4600 | 'vote_rule': self.vote_rule |
|
4597 | 4601 | } |
|
4598 | 4602 | |
|
4599 | 4603 | @property |
|
4600 | 4604 | def vote_rule_label(self): |
|
4601 | 4605 | if not self.vote_rule or self.vote_rule == self.VOTE_RULE_ALL: |
|
4602 | 4606 | return 'all must vote' |
|
4603 | 4607 | else: |
|
4604 | 4608 | return 'min. vote {}'.format(self.vote_rule) |
|
4605 | 4609 | |
|
4606 | 4610 | |
|
4607 | 4611 | class RepoReviewRule(Base, BaseModel): |
|
4608 | 4612 | __tablename__ = 'repo_review_rules' |
|
4609 | 4613 | __table_args__ = ( |
|
4610 | 4614 | base_table_args |
|
4611 | 4615 | ) |
|
4612 | 4616 | |
|
4613 | 4617 | repo_review_rule_id = Column( |
|
4614 | 4618 | 'repo_review_rule_id', Integer(), primary_key=True) |
|
4615 | 4619 | repo_id = Column( |
|
4616 | 4620 | "repo_id", Integer(), ForeignKey('repositories.repo_id')) |
|
4617 | 4621 | repo = relationship('Repository', backref='review_rules') |
|
4618 | 4622 | |
|
4619 | 4623 | review_rule_name = Column('review_rule_name', String(255)) |
|
4620 | 4624 | _branch_pattern = Column("branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4621 | 4625 | _target_branch_pattern = Column("target_branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4622 | 4626 | _file_pattern = Column("file_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4623 | 4627 | |
|
4624 | 4628 | use_authors_for_review = Column("use_authors_for_review", Boolean(), nullable=False, default=False) |
|
4625 | 4629 | forbid_author_to_review = Column("forbid_author_to_review", Boolean(), nullable=False, default=False) |
|
4626 | 4630 | forbid_commit_author_to_review = Column("forbid_commit_author_to_review", Boolean(), nullable=False, default=False) |
|
4627 | 4631 | forbid_adding_reviewers = Column("forbid_adding_reviewers", Boolean(), nullable=False, default=False) |
|
4628 | 4632 | |
|
4629 | 4633 | rule_users = relationship('RepoReviewRuleUser') |
|
4630 | 4634 | rule_user_groups = relationship('RepoReviewRuleUserGroup') |
|
4631 | 4635 | |
|
4632 | 4636 | def _validate_pattern(self, value): |
|
4633 | 4637 | re.compile('^' + glob2re(value) + '$') |
|
4634 | 4638 | |
|
4635 | 4639 | @hybrid_property |
|
4636 | 4640 | def source_branch_pattern(self): |
|
4637 | 4641 | return self._branch_pattern or '*' |
|
4638 | 4642 | |
|
4639 | 4643 | @source_branch_pattern.setter |
|
4640 | 4644 | def source_branch_pattern(self, value): |
|
4641 | 4645 | self._validate_pattern(value) |
|
4642 | 4646 | self._branch_pattern = value or '*' |
|
4643 | 4647 | |
|
4644 | 4648 | @hybrid_property |
|
4645 | 4649 | def target_branch_pattern(self): |
|
4646 | 4650 | return self._target_branch_pattern or '*' |
|
4647 | 4651 | |
|
4648 | 4652 | @target_branch_pattern.setter |
|
4649 | 4653 | def target_branch_pattern(self, value): |
|
4650 | 4654 | self._validate_pattern(value) |
|
4651 | 4655 | self._target_branch_pattern = value or '*' |
|
4652 | 4656 | |
|
4653 | 4657 | @hybrid_property |
|
4654 | 4658 | def file_pattern(self): |
|
4655 | 4659 | return self._file_pattern or '*' |
|
4656 | 4660 | |
|
4657 | 4661 | @file_pattern.setter |
|
4658 | 4662 | def file_pattern(self, value): |
|
4659 | 4663 | self._validate_pattern(value) |
|
4660 | 4664 | self._file_pattern = value or '*' |
|
4661 | 4665 | |
|
4662 | 4666 | def matches(self, source_branch, target_branch, files_changed): |
|
4663 | 4667 | """ |
|
4664 | 4668 | Check if this review rule matches a branch/files in a pull request |
|
4665 | 4669 | |
|
4666 | 4670 | :param source_branch: source branch name for the commit |
|
4667 | 4671 | :param target_branch: target branch name for the commit |
|
4668 | 4672 | :param files_changed: list of file paths changed in the pull request |
|
4669 | 4673 | """ |
|
4670 | 4674 | |
|
4671 | 4675 | source_branch = source_branch or '' |
|
4672 | 4676 | target_branch = target_branch or '' |
|
4673 | 4677 | files_changed = files_changed or [] |
|
4674 | 4678 | |
|
4675 | 4679 | branch_matches = True |
|
4676 | 4680 | if source_branch or target_branch: |
|
4677 | 4681 | if self.source_branch_pattern == '*': |
|
4678 | 4682 | source_branch_match = True |
|
4679 | 4683 | else: |
|
4680 | 4684 | if self.source_branch_pattern.startswith('re:'): |
|
4681 | 4685 | source_pattern = self.source_branch_pattern[3:] |
|
4682 | 4686 | else: |
|
4683 | 4687 | source_pattern = '^' + glob2re(self.source_branch_pattern) + '$' |
|
4684 | 4688 | source_branch_regex = re.compile(source_pattern) |
|
4685 | 4689 | source_branch_match = bool(source_branch_regex.search(source_branch)) |
|
4686 | 4690 | if self.target_branch_pattern == '*': |
|
4687 | 4691 | target_branch_match = True |
|
4688 | 4692 | else: |
|
4689 | 4693 | if self.target_branch_pattern.startswith('re:'): |
|
4690 | 4694 | target_pattern = self.target_branch_pattern[3:] |
|
4691 | 4695 | else: |
|
4692 | 4696 | target_pattern = '^' + glob2re(self.target_branch_pattern) + '$' |
|
4693 | 4697 | target_branch_regex = re.compile(target_pattern) |
|
4694 | 4698 | target_branch_match = bool(target_branch_regex.search(target_branch)) |
|
4695 | 4699 | |
|
4696 | 4700 | branch_matches = source_branch_match and target_branch_match |
|
4697 | 4701 | |
|
4698 | 4702 | files_matches = True |
|
4699 | 4703 | if self.file_pattern != '*': |
|
4700 | 4704 | files_matches = False |
|
4701 | 4705 | if self.file_pattern.startswith('re:'): |
|
4702 | 4706 | file_pattern = self.file_pattern[3:] |
|
4703 | 4707 | else: |
|
4704 | 4708 | file_pattern = glob2re(self.file_pattern) |
|
4705 | 4709 | file_regex = re.compile(file_pattern) |
|
4706 | 4710 | for filename in files_changed: |
|
4707 | 4711 | if file_regex.search(filename): |
|
4708 | 4712 | files_matches = True |
|
4709 | 4713 | break |
|
4710 | 4714 | |
|
4711 | 4715 | return branch_matches and files_matches |
|
4712 | 4716 | |
|
4713 | 4717 | @property |
|
4714 | 4718 | def review_users(self): |
|
4715 | 4719 | """ Returns the users which this rule applies to """ |
|
4716 | 4720 | |
|
4717 | 4721 | users = collections.OrderedDict() |
|
4718 | 4722 | |
|
4719 | 4723 | for rule_user in self.rule_users: |
|
4720 | 4724 | if rule_user.user.active: |
|
4721 | 4725 | if rule_user.user not in users: |
|
4722 | 4726 | users[rule_user.user.username] = { |
|
4723 | 4727 | 'user': rule_user.user, |
|
4724 | 4728 | 'source': 'user', |
|
4725 | 4729 | 'source_data': {}, |
|
4726 | 4730 | 'data': rule_user.rule_data() |
|
4727 | 4731 | } |
|
4728 | 4732 | |
|
4729 | 4733 | for rule_user_group in self.rule_user_groups: |
|
4730 | 4734 | source_data = { |
|
4731 | 4735 | 'user_group_id': rule_user_group.users_group.users_group_id, |
|
4732 | 4736 | 'name': rule_user_group.users_group.users_group_name, |
|
4733 | 4737 | 'members': len(rule_user_group.users_group.members) |
|
4734 | 4738 | } |
|
4735 | 4739 | for member in rule_user_group.users_group.members: |
|
4736 | 4740 | if member.user.active: |
|
4737 | 4741 | key = member.user.username |
|
4738 | 4742 | if key in users: |
|
4739 | 4743 | # skip this member as we have him already |
|
4740 | 4744 | # this prevents from override the "first" matched |
|
4741 | 4745 | # users with duplicates in multiple groups |
|
4742 | 4746 | continue |
|
4743 | 4747 | |
|
4744 | 4748 | users[key] = { |
|
4745 | 4749 | 'user': member.user, |
|
4746 | 4750 | 'source': 'user_group', |
|
4747 | 4751 | 'source_data': source_data, |
|
4748 | 4752 | 'data': rule_user_group.rule_data() |
|
4749 | 4753 | } |
|
4750 | 4754 | |
|
4751 | 4755 | return users |
|
4752 | 4756 | |
|
4753 | 4757 | def user_group_vote_rule(self, user_id): |
|
4754 | 4758 | |
|
4755 | 4759 | rules = [] |
|
4756 | 4760 | if not self.rule_user_groups: |
|
4757 | 4761 | return rules |
|
4758 | 4762 | |
|
4759 | 4763 | for user_group in self.rule_user_groups: |
|
4760 | 4764 | user_group_members = [x.user_id for x in user_group.users_group.members] |
|
4761 | 4765 | if user_id in user_group_members: |
|
4762 | 4766 | rules.append(user_group) |
|
4763 | 4767 | return rules |
|
4764 | 4768 | |
|
4765 | 4769 | def __repr__(self): |
|
4766 | 4770 | return '<RepoReviewerRule(id=%r, repo=%r)>' % ( |
|
4767 | 4771 | self.repo_review_rule_id, self.repo) |
|
4768 | 4772 | |
|
4769 | 4773 | |
|
4770 | 4774 | class ScheduleEntry(Base, BaseModel): |
|
4771 | 4775 | __tablename__ = 'schedule_entries' |
|
4772 | 4776 | __table_args__ = ( |
|
4773 | 4777 | UniqueConstraint('schedule_name', name='s_schedule_name_idx'), |
|
4774 | 4778 | UniqueConstraint('task_uid', name='s_task_uid_idx'), |
|
4775 | 4779 | base_table_args, |
|
4776 | 4780 | ) |
|
4777 | 4781 | |
|
4778 | 4782 | schedule_types = ['crontab', 'timedelta', 'integer'] |
|
4779 | 4783 | schedule_entry_id = Column('schedule_entry_id', Integer(), primary_key=True) |
|
4780 | 4784 | |
|
4781 | 4785 | schedule_name = Column("schedule_name", String(255), nullable=False, unique=None, default=None) |
|
4782 | 4786 | schedule_description = Column("schedule_description", String(10000), nullable=True, unique=None, default=None) |
|
4783 | 4787 | schedule_enabled = Column("schedule_enabled", Boolean(), nullable=False, unique=None, default=True) |
|
4784 | 4788 | |
|
4785 | 4789 | _schedule_type = Column("schedule_type", String(255), nullable=False, unique=None, default=None) |
|
4786 | 4790 | schedule_definition = Column('schedule_definition_json', MutationObj.as_mutable(JsonType(default=lambda: "", dialect_map=dict(mysql=LONGTEXT())))) |
|
4787 | 4791 | |
|
4788 | 4792 | schedule_last_run = Column('schedule_last_run', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
4789 | 4793 | schedule_total_run_count = Column('schedule_total_run_count', Integer(), nullable=True, unique=None, default=0) |
|
4790 | 4794 | |
|
4791 | 4795 | # task |
|
4792 | 4796 | task_uid = Column("task_uid", String(255), nullable=False, unique=None, default=None) |
|
4793 | 4797 | task_dot_notation = Column("task_dot_notation", String(4096), nullable=False, unique=None, default=None) |
|
4794 | 4798 | task_args = Column('task_args_json', MutationObj.as_mutable(JsonType(default=list, dialect_map=dict(mysql=LONGTEXT())))) |
|
4795 | 4799 | task_kwargs = Column('task_kwargs_json', MutationObj.as_mutable(JsonType(default=dict, dialect_map=dict(mysql=LONGTEXT())))) |
|
4796 | 4800 | |
|
4797 | 4801 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4798 | 4802 | updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
4799 | 4803 | |
|
4800 | 4804 | @hybrid_property |
|
4801 | 4805 | def schedule_type(self): |
|
4802 | 4806 | return self._schedule_type |
|
4803 | 4807 | |
|
4804 | 4808 | @schedule_type.setter |
|
4805 | 4809 | def schedule_type(self, val): |
|
4806 | 4810 | if val not in self.schedule_types: |
|
4807 | 4811 | raise ValueError('Value must be on of `{}` and got `{}`'.format( |
|
4808 | 4812 | val, self.schedule_type)) |
|
4809 | 4813 | |
|
4810 | 4814 | self._schedule_type = val |
|
4811 | 4815 | |
|
4812 | 4816 | @classmethod |
|
4813 | 4817 | def get_uid(cls, obj): |
|
4814 | 4818 | args = obj.task_args |
|
4815 | 4819 | kwargs = obj.task_kwargs |
|
4816 | 4820 | if isinstance(args, JsonRaw): |
|
4817 | 4821 | try: |
|
4818 | 4822 | args = json.loads(args) |
|
4819 | 4823 | except ValueError: |
|
4820 | 4824 | args = tuple() |
|
4821 | 4825 | |
|
4822 | 4826 | if isinstance(kwargs, JsonRaw): |
|
4823 | 4827 | try: |
|
4824 | 4828 | kwargs = json.loads(kwargs) |
|
4825 | 4829 | except ValueError: |
|
4826 | 4830 | kwargs = dict() |
|
4827 | 4831 | |
|
4828 | 4832 | dot_notation = obj.task_dot_notation |
|
4829 | 4833 | val = '.'.join(map(safe_str, [ |
|
4830 | 4834 | sorted(dot_notation), args, sorted(kwargs.items())])) |
|
4831 | 4835 | return hashlib.sha1(val).hexdigest() |
|
4832 | 4836 | |
|
4833 | 4837 | @classmethod |
|
4834 | 4838 | def get_by_schedule_name(cls, schedule_name): |
|
4835 | 4839 | return cls.query().filter(cls.schedule_name == schedule_name).scalar() |
|
4836 | 4840 | |
|
4837 | 4841 | @classmethod |
|
4838 | 4842 | def get_by_schedule_id(cls, schedule_id): |
|
4839 | 4843 | return cls.query().filter(cls.schedule_entry_id == schedule_id).scalar() |
|
4840 | 4844 | |
|
4841 | 4845 | @property |
|
4842 | 4846 | def task(self): |
|
4843 | 4847 | return self.task_dot_notation |
|
4844 | 4848 | |
|
4845 | 4849 | @property |
|
4846 | 4850 | def schedule(self): |
|
4847 | 4851 | from rhodecode.lib.celerylib.utils import raw_2_schedule |
|
4848 | 4852 | schedule = raw_2_schedule(self.schedule_definition, self.schedule_type) |
|
4849 | 4853 | return schedule |
|
4850 | 4854 | |
|
4851 | 4855 | @property |
|
4852 | 4856 | def args(self): |
|
4853 | 4857 | try: |
|
4854 | 4858 | return list(self.task_args or []) |
|
4855 | 4859 | except ValueError: |
|
4856 | 4860 | return list() |
|
4857 | 4861 | |
|
4858 | 4862 | @property |
|
4859 | 4863 | def kwargs(self): |
|
4860 | 4864 | try: |
|
4861 | 4865 | return dict(self.task_kwargs or {}) |
|
4862 | 4866 | except ValueError: |
|
4863 | 4867 | return dict() |
|
4864 | 4868 | |
|
4865 | 4869 | def _as_raw(self, val): |
|
4866 | 4870 | if hasattr(val, 'de_coerce'): |
|
4867 | 4871 | val = val.de_coerce() |
|
4868 | 4872 | if val: |
|
4869 | 4873 | val = json.dumps(val) |
|
4870 | 4874 | |
|
4871 | 4875 | return val |
|
4872 | 4876 | |
|
4873 | 4877 | @property |
|
4874 | 4878 | def schedule_definition_raw(self): |
|
4875 | 4879 | return self._as_raw(self.schedule_definition) |
|
4876 | 4880 | |
|
4877 | 4881 | @property |
|
4878 | 4882 | def args_raw(self): |
|
4879 | 4883 | return self._as_raw(self.task_args) |
|
4880 | 4884 | |
|
4881 | 4885 | @property |
|
4882 | 4886 | def kwargs_raw(self): |
|
4883 | 4887 | return self._as_raw(self.task_kwargs) |
|
4884 | 4888 | |
|
4885 | 4889 | def __repr__(self): |
|
4886 | 4890 | return '<DB:ScheduleEntry({}:{})>'.format( |
|
4887 | 4891 | self.schedule_entry_id, self.schedule_name) |
|
4888 | 4892 | |
|
4889 | 4893 | |
|
4890 | 4894 | @event.listens_for(ScheduleEntry, 'before_update') |
|
4891 | 4895 | def update_task_uid(mapper, connection, target): |
|
4892 | 4896 | target.task_uid = ScheduleEntry.get_uid(target) |
|
4893 | 4897 | |
|
4894 | 4898 | |
|
4895 | 4899 | @event.listens_for(ScheduleEntry, 'before_insert') |
|
4896 | 4900 | def set_task_uid(mapper, connection, target): |
|
4897 | 4901 | target.task_uid = ScheduleEntry.get_uid(target) |
|
4898 | 4902 | |
|
4899 | 4903 | |
|
4900 | 4904 | class _BaseBranchPerms(BaseModel): |
|
4901 | 4905 | @classmethod |
|
4902 | 4906 | def compute_hash(cls, value): |
|
4903 | 4907 | return sha1_safe(value) |
|
4904 | 4908 | |
|
4905 | 4909 | @hybrid_property |
|
4906 | 4910 | def branch_pattern(self): |
|
4907 | 4911 | return self._branch_pattern or '*' |
|
4908 | 4912 | |
|
4909 | 4913 | @hybrid_property |
|
4910 | 4914 | def branch_hash(self): |
|
4911 | 4915 | return self._branch_hash |
|
4912 | 4916 | |
|
4913 | 4917 | def _validate_glob(self, value): |
|
4914 | 4918 | re.compile('^' + glob2re(value) + '$') |
|
4915 | 4919 | |
|
4916 | 4920 | @branch_pattern.setter |
|
4917 | 4921 | def branch_pattern(self, value): |
|
4918 | 4922 | self._validate_glob(value) |
|
4919 | 4923 | self._branch_pattern = value or '*' |
|
4920 | 4924 | # set the Hash when setting the branch pattern |
|
4921 | 4925 | self._branch_hash = self.compute_hash(self._branch_pattern) |
|
4922 | 4926 | |
|
4923 | 4927 | def matches(self, branch): |
|
4924 | 4928 | """ |
|
4925 | 4929 | Check if this the branch matches entry |
|
4926 | 4930 | |
|
4927 | 4931 | :param branch: branch name for the commit |
|
4928 | 4932 | """ |
|
4929 | 4933 | |
|
4930 | 4934 | branch = branch or '' |
|
4931 | 4935 | |
|
4932 | 4936 | branch_matches = True |
|
4933 | 4937 | if branch: |
|
4934 | 4938 | branch_regex = re.compile('^' + glob2re(self.branch_pattern) + '$') |
|
4935 | 4939 | branch_matches = bool(branch_regex.search(branch)) |
|
4936 | 4940 | |
|
4937 | 4941 | return branch_matches |
|
4938 | 4942 | |
|
4939 | 4943 | |
|
4940 | 4944 | class UserToRepoBranchPermission(Base, _BaseBranchPerms): |
|
4941 | 4945 | __tablename__ = 'user_to_repo_branch_permissions' |
|
4942 | 4946 | __table_args__ = ( |
|
4943 | 4947 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
4944 | 4948 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True,} |
|
4945 | 4949 | ) |
|
4946 | 4950 | |
|
4947 | 4951 | branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True) |
|
4948 | 4952 | |
|
4949 | 4953 | repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
4950 | 4954 | repo = relationship('Repository', backref='user_branch_perms') |
|
4951 | 4955 | |
|
4952 | 4956 | permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
4953 | 4957 | permission = relationship('Permission') |
|
4954 | 4958 | |
|
4955 | 4959 | rule_to_perm_id = Column('rule_to_perm_id', Integer(), ForeignKey('repo_to_perm.repo_to_perm_id'), nullable=False, unique=None, default=None) |
|
4956 | 4960 | user_repo_to_perm = relationship('UserRepoToPerm') |
|
4957 | 4961 | |
|
4958 | 4962 | rule_order = Column('rule_order', Integer(), nullable=False) |
|
4959 | 4963 | _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob |
|
4960 | 4964 | _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql')) |
|
4961 | 4965 | |
|
4962 | 4966 | def __unicode__(self): |
|
4963 | 4967 | return u'<UserBranchPermission(%s => %r)>' % ( |
|
4964 | 4968 | self.user_repo_to_perm, self.branch_pattern) |
|
4965 | 4969 | |
|
4966 | 4970 | |
|
4967 | 4971 | class UserGroupToRepoBranchPermission(Base, _BaseBranchPerms): |
|
4968 | 4972 | __tablename__ = 'user_group_to_repo_branch_permissions' |
|
4969 | 4973 | __table_args__ = ( |
|
4970 | 4974 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
4971 | 4975 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True,} |
|
4972 | 4976 | ) |
|
4973 | 4977 | |
|
4974 | 4978 | branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True) |
|
4975 | 4979 | |
|
4976 | 4980 | repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
4977 | 4981 | repo = relationship('Repository', backref='user_group_branch_perms') |
|
4978 | 4982 | |
|
4979 | 4983 | permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
4980 | 4984 | permission = relationship('Permission') |
|
4981 | 4985 | |
|
4982 | 4986 | rule_to_perm_id = Column('rule_to_perm_id', Integer(), ForeignKey('users_group_repo_to_perm.users_group_to_perm_id'), nullable=False, unique=None, default=None) |
|
4983 | 4987 | user_group_repo_to_perm = relationship('UserGroupRepoToPerm') |
|
4984 | 4988 | |
|
4985 | 4989 | rule_order = Column('rule_order', Integer(), nullable=False) |
|
4986 | 4990 | _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob |
|
4987 | 4991 | _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql')) |
|
4988 | 4992 | |
|
4989 | 4993 | def __unicode__(self): |
|
4990 | 4994 | return u'<UserBranchPermission(%s => %r)>' % ( |
|
4991 | 4995 | self.user_group_repo_to_perm, self.branch_pattern) |
|
4992 | 4996 | |
|
4993 | 4997 | |
|
4994 | 4998 | class UserBookmark(Base, BaseModel): |
|
4995 | 4999 | __tablename__ = 'user_bookmarks' |
|
4996 | 5000 | __table_args__ = ( |
|
4997 | 5001 | UniqueConstraint('user_id', 'bookmark_repo_id'), |
|
4998 | 5002 | UniqueConstraint('user_id', 'bookmark_repo_group_id'), |
|
4999 | 5003 | UniqueConstraint('user_id', 'bookmark_position'), |
|
5000 | 5004 | base_table_args |
|
5001 | 5005 | ) |
|
5002 | 5006 | |
|
5003 | 5007 | user_bookmark_id = Column("user_bookmark_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
5004 | 5008 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
5005 | 5009 | position = Column("bookmark_position", Integer(), nullable=False) |
|
5006 | 5010 | title = Column("bookmark_title", String(255), nullable=True, unique=None, default=None) |
|
5007 | 5011 | redirect_url = Column("bookmark_redirect_url", String(10240), nullable=True, unique=None, default=None) |
|
5008 | 5012 | created_on = Column("created_on", DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
5009 | 5013 | |
|
5010 | 5014 | bookmark_repo_id = Column("bookmark_repo_id", Integer(), ForeignKey("repositories.repo_id"), nullable=True, unique=None, default=None) |
|
5011 | 5015 | bookmark_repo_group_id = Column("bookmark_repo_group_id", Integer(), ForeignKey("groups.group_id"), nullable=True, unique=None, default=None) |
|
5012 | 5016 | |
|
5013 | 5017 | user = relationship("User") |
|
5014 | 5018 | |
|
5015 | 5019 | repository = relationship("Repository") |
|
5016 | 5020 | repository_group = relationship("RepoGroup") |
|
5017 | 5021 | |
|
5018 | 5022 | @classmethod |
|
5019 | 5023 | def get_by_position_for_user(cls, position, user_id): |
|
5020 | 5024 | return cls.query() \ |
|
5021 | 5025 | .filter(UserBookmark.user_id == user_id) \ |
|
5022 | 5026 | .filter(UserBookmark.position == position).scalar() |
|
5023 | 5027 | |
|
5024 | 5028 | @classmethod |
|
5025 | 5029 | def get_bookmarks_for_user(cls, user_id): |
|
5026 | 5030 | return cls.query() \ |
|
5027 | 5031 | .filter(UserBookmark.user_id == user_id) \ |
|
5028 | 5032 | .options(joinedload(UserBookmark.repository)) \ |
|
5029 | 5033 | .options(joinedload(UserBookmark.repository_group)) \ |
|
5030 | 5034 | .order_by(UserBookmark.position.asc()) \ |
|
5031 | 5035 | .all() |
|
5032 | 5036 | |
|
5033 | 5037 | def __unicode__(self): |
|
5034 | 5038 | return u'<UserBookmark(%d @ %r)>' % (self.position, self.redirect_url) |
|
5035 | 5039 | |
|
5036 | 5040 | |
|
5037 | 5041 | class FileStore(Base, BaseModel): |
|
5038 | 5042 | __tablename__ = 'file_store' |
|
5039 | 5043 | __table_args__ = ( |
|
5040 | 5044 | base_table_args |
|
5041 | 5045 | ) |
|
5042 | 5046 | |
|
5043 | 5047 | file_store_id = Column('file_store_id', Integer(), primary_key=True) |
|
5044 | 5048 | file_uid = Column('file_uid', String(1024), nullable=False) |
|
5045 | 5049 | file_display_name = Column('file_display_name', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), nullable=True) |
|
5046 | 5050 | file_description = Column('file_description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=True) |
|
5047 | 5051 | file_org_name = Column('file_org_name', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=False) |
|
5048 | 5052 | |
|
5049 | 5053 | # sha256 hash |
|
5050 | 5054 | file_hash = Column('file_hash', String(512), nullable=False) |
|
5051 | 5055 | file_size = Column('file_size', Integer(), nullable=False) |
|
5052 | 5056 | |
|
5053 | 5057 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
5054 | 5058 | accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True) |
|
5055 | 5059 | accessed_count = Column('accessed_count', Integer(), default=0) |
|
5056 | 5060 | |
|
5057 | 5061 | enabled = Column('enabled', Boolean(), nullable=False, default=True) |
|
5058 | 5062 | |
|
5059 | 5063 | # if repo/repo_group reference is set, check for permissions |
|
5060 | 5064 | check_acl = Column('check_acl', Boolean(), nullable=False, default=True) |
|
5061 | 5065 | |
|
5062 | 5066 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
5063 | 5067 | upload_user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.user_id') |
|
5064 | 5068 | |
|
5065 | 5069 | # scope limited to user, which requester have access to |
|
5066 | 5070 | scope_user_id = Column( |
|
5067 | 5071 | 'scope_user_id', Integer(), ForeignKey('users.user_id'), |
|
5068 | 5072 | nullable=True, unique=None, default=None) |
|
5069 | 5073 | user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.scope_user_id') |
|
5070 | 5074 | |
|
5071 | 5075 | # scope limited to user group, which requester have access to |
|
5072 | 5076 | scope_user_group_id = Column( |
|
5073 | 5077 | 'scope_user_group_id', Integer(), ForeignKey('users_groups.users_group_id'), |
|
5074 | 5078 | nullable=True, unique=None, default=None) |
|
5075 | 5079 | user_group = relationship('UserGroup', lazy='joined') |
|
5076 | 5080 | |
|
5077 | 5081 | # scope limited to repo, which requester have access to |
|
5078 | 5082 | scope_repo_id = Column( |
|
5079 | 5083 | 'scope_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
5080 | 5084 | nullable=True, unique=None, default=None) |
|
5081 | 5085 | repo = relationship('Repository', lazy='joined') |
|
5082 | 5086 | |
|
5083 | 5087 | # scope limited to repo group, which requester have access to |
|
5084 | 5088 | scope_repo_group_id = Column( |
|
5085 | 5089 | 'scope_repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
5086 | 5090 | nullable=True, unique=None, default=None) |
|
5087 | 5091 | repo_group = relationship('RepoGroup', lazy='joined') |
|
5088 | 5092 | |
|
5089 | 5093 | @classmethod |
|
5090 | 5094 | def create(cls, file_uid, filename, file_hash, file_size, file_display_name='', |
|
5091 | 5095 | file_description='', enabled=True, check_acl=True, user_id=None, |
|
5092 | 5096 | scope_user_id=None, scope_repo_id=None, scope_repo_group_id=None): |
|
5093 | 5097 | |
|
5094 | 5098 | store_entry = FileStore() |
|
5095 | 5099 | store_entry.file_uid = file_uid |
|
5096 | 5100 | store_entry.file_display_name = file_display_name |
|
5097 | 5101 | store_entry.file_org_name = filename |
|
5098 | 5102 | store_entry.file_size = file_size |
|
5099 | 5103 | store_entry.file_hash = file_hash |
|
5100 | 5104 | store_entry.file_description = file_description |
|
5101 | 5105 | |
|
5102 | 5106 | store_entry.check_acl = check_acl |
|
5103 | 5107 | store_entry.enabled = enabled |
|
5104 | 5108 | |
|
5105 | 5109 | store_entry.user_id = user_id |
|
5106 | 5110 | store_entry.scope_user_id = scope_user_id |
|
5107 | 5111 | store_entry.scope_repo_id = scope_repo_id |
|
5108 | 5112 | store_entry.scope_repo_group_id = scope_repo_group_id |
|
5109 | 5113 | return store_entry |
|
5110 | 5114 | |
|
5111 | 5115 | @classmethod |
|
5112 | 5116 | def bump_access_counter(cls, file_uid, commit=True): |
|
5113 | 5117 | FileStore().query()\ |
|
5114 | 5118 | .filter(FileStore.file_uid == file_uid)\ |
|
5115 | 5119 | .update({FileStore.accessed_count: (FileStore.accessed_count + 1), |
|
5116 | 5120 | FileStore.accessed_on: datetime.datetime.now()}) |
|
5117 | 5121 | if commit: |
|
5118 | 5122 | Session().commit() |
|
5119 | 5123 | |
|
5120 | 5124 | def __repr__(self): |
|
5121 | 5125 | return '<FileStore({})>'.format(self.file_store_id) |
|
5122 | 5126 | |
|
5123 | 5127 | |
|
5124 | 5128 | class DbMigrateVersion(Base, BaseModel): |
|
5125 | 5129 | __tablename__ = 'db_migrate_version' |
|
5126 | 5130 | __table_args__ = ( |
|
5127 | 5131 | base_table_args, |
|
5128 | 5132 | ) |
|
5129 | 5133 | |
|
5130 | 5134 | repository_id = Column('repository_id', String(250), primary_key=True) |
|
5131 | 5135 | repository_path = Column('repository_path', Text) |
|
5132 | 5136 | version = Column('version', Integer) |
|
5133 | 5137 | |
|
5134 | 5138 | @classmethod |
|
5135 | 5139 | def set_version(cls, version): |
|
5136 | 5140 | """ |
|
5137 | 5141 | Helper for forcing a different version, usually for debugging purposes via ishell. |
|
5138 | 5142 | """ |
|
5139 | 5143 | ver = DbMigrateVersion.query().first() |
|
5140 | 5144 | ver.version = version |
|
5141 | 5145 | Session().commit() |
|
5142 | 5146 | |
|
5143 | 5147 | |
|
5144 | 5148 | class DbSession(Base, BaseModel): |
|
5145 | 5149 | __tablename__ = 'db_session' |
|
5146 | 5150 | __table_args__ = ( |
|
5147 | 5151 | base_table_args, |
|
5148 | 5152 | ) |
|
5149 | 5153 | |
|
5150 | 5154 | def __repr__(self): |
|
5151 | 5155 | return '<DB:DbSession({})>'.format(self.id) |
|
5152 | 5156 | |
|
5153 | 5157 | id = Column('id', Integer()) |
|
5154 | 5158 | namespace = Column('namespace', String(255), primary_key=True) |
|
5155 | 5159 | accessed = Column('accessed', DateTime, nullable=False) |
|
5156 | 5160 | created = Column('created', DateTime, nullable=False) |
|
5157 | 5161 | data = Column('data', PickleType, nullable=False) |
@@ -1,376 +1,378 b'' | |||
|
1 | 1 | |
|
2 | 2 | /****************************************************************************** |
|
3 | 3 | * * |
|
4 | 4 | * DO NOT CHANGE THIS FILE MANUALLY * |
|
5 | 5 | * * |
|
6 | 6 | * * |
|
7 | 7 | * This file is automatically generated when the app starts up with * |
|
8 | 8 | * generate_js_files = true * |
|
9 | 9 | * * |
|
10 | 10 | * To add a route here pass jsroute=True to the route definition in the app * |
|
11 | 11 | * * |
|
12 | 12 | ******************************************************************************/ |
|
13 | 13 | function registerRCRoutes() { |
|
14 | 14 | // routes registration |
|
15 | 15 | pyroutes.register('favicon', '/favicon.ico', []); |
|
16 | 16 | pyroutes.register('robots', '/robots.txt', []); |
|
17 | 17 | pyroutes.register('global_integrations_new', '/_admin/integrations/new', []); |
|
18 | 18 | pyroutes.register('global_integrations_home', '/_admin/integrations', []); |
|
19 | 19 | pyroutes.register('global_integrations_list', '/_admin/integrations/%(integration)s', ['integration']); |
|
20 | 20 | pyroutes.register('global_integrations_create', '/_admin/integrations/%(integration)s/new', ['integration']); |
|
21 | 21 | pyroutes.register('global_integrations_edit', '/_admin/integrations/%(integration)s/%(integration_id)s', ['integration', 'integration_id']); |
|
22 | 22 | pyroutes.register('repo_group_integrations_home', '/%(repo_group_name)s/_settings/integrations', ['repo_group_name']); |
|
23 | 23 | pyroutes.register('repo_group_integrations_new', '/%(repo_group_name)s/_settings/integrations/new', ['repo_group_name']); |
|
24 | 24 | pyroutes.register('repo_group_integrations_list', '/%(repo_group_name)s/_settings/integrations/%(integration)s', ['repo_group_name', 'integration']); |
|
25 | 25 | pyroutes.register('repo_group_integrations_create', '/%(repo_group_name)s/_settings/integrations/%(integration)s/new', ['repo_group_name', 'integration']); |
|
26 | 26 | pyroutes.register('repo_group_integrations_edit', '/%(repo_group_name)s/_settings/integrations/%(integration)s/%(integration_id)s', ['repo_group_name', 'integration', 'integration_id']); |
|
27 | 27 | pyroutes.register('repo_integrations_home', '/%(repo_name)s/settings/integrations', ['repo_name']); |
|
28 | 28 | pyroutes.register('repo_integrations_new', '/%(repo_name)s/settings/integrations/new', ['repo_name']); |
|
29 | 29 | pyroutes.register('repo_integrations_list', '/%(repo_name)s/settings/integrations/%(integration)s', ['repo_name', 'integration']); |
|
30 | 30 | pyroutes.register('repo_integrations_create', '/%(repo_name)s/settings/integrations/%(integration)s/new', ['repo_name', 'integration']); |
|
31 | 31 | pyroutes.register('repo_integrations_edit', '/%(repo_name)s/settings/integrations/%(integration)s/%(integration_id)s', ['repo_name', 'integration', 'integration_id']); |
|
32 | 32 | pyroutes.register('auth_home', '/_admin/auth*traverse', []); |
|
33 | 33 | pyroutes.register('ops_ping', '/_admin/ops/ping', []); |
|
34 | 34 | pyroutes.register('ops_error_test', '/_admin/ops/error', []); |
|
35 | 35 | pyroutes.register('ops_redirect_test', '/_admin/ops/redirect', []); |
|
36 | 36 | pyroutes.register('ops_ping_legacy', '/_admin/ping', []); |
|
37 | 37 | pyroutes.register('ops_error_test_legacy', '/_admin/error_test', []); |
|
38 | 38 | pyroutes.register('admin_home', '/_admin', []); |
|
39 | 39 | pyroutes.register('admin_audit_logs', '/_admin/audit_logs', []); |
|
40 | 40 | pyroutes.register('admin_audit_log_entry', '/_admin/audit_logs/%(audit_log_id)s', ['audit_log_id']); |
|
41 | 41 | pyroutes.register('pull_requests_global_0', '/_admin/pull_requests/%(pull_request_id)s', ['pull_request_id']); |
|
42 | 42 | pyroutes.register('pull_requests_global_1', '/_admin/pull-requests/%(pull_request_id)s', ['pull_request_id']); |
|
43 | 43 | pyroutes.register('pull_requests_global', '/_admin/pull-request/%(pull_request_id)s', ['pull_request_id']); |
|
44 | 44 | pyroutes.register('admin_settings_open_source', '/_admin/settings/open_source', []); |
|
45 | 45 | pyroutes.register('admin_settings_vcs_svn_generate_cfg', '/_admin/settings/vcs/svn_generate_cfg', []); |
|
46 | 46 | pyroutes.register('admin_settings_system', '/_admin/settings/system', []); |
|
47 | 47 | pyroutes.register('admin_settings_system_update', '/_admin/settings/system/updates', []); |
|
48 | 48 | pyroutes.register('admin_settings_exception_tracker', '/_admin/settings/exceptions', []); |
|
49 | 49 | pyroutes.register('admin_settings_exception_tracker_delete_all', '/_admin/settings/exceptions/delete', []); |
|
50 | 50 | pyroutes.register('admin_settings_exception_tracker_show', '/_admin/settings/exceptions/%(exception_id)s', ['exception_id']); |
|
51 | 51 | pyroutes.register('admin_settings_exception_tracker_delete', '/_admin/settings/exceptions/%(exception_id)s/delete', ['exception_id']); |
|
52 | 52 | pyroutes.register('admin_settings_sessions', '/_admin/settings/sessions', []); |
|
53 | 53 | pyroutes.register('admin_settings_sessions_cleanup', '/_admin/settings/sessions/cleanup', []); |
|
54 | 54 | pyroutes.register('admin_settings_process_management', '/_admin/settings/process_management', []); |
|
55 | 55 | pyroutes.register('admin_settings_process_management_data', '/_admin/settings/process_management/data', []); |
|
56 | 56 | pyroutes.register('admin_settings_process_management_signal', '/_admin/settings/process_management/signal', []); |
|
57 | 57 | pyroutes.register('admin_settings_process_management_master_signal', '/_admin/settings/process_management/master_signal', []); |
|
58 | 58 | pyroutes.register('admin_defaults_repositories', '/_admin/defaults/repositories', []); |
|
59 | 59 | pyroutes.register('admin_defaults_repositories_update', '/_admin/defaults/repositories/update', []); |
|
60 | 60 | pyroutes.register('admin_settings', '/_admin/settings', []); |
|
61 | 61 | pyroutes.register('admin_settings_update', '/_admin/settings/update', []); |
|
62 | 62 | pyroutes.register('admin_settings_global', '/_admin/settings/global', []); |
|
63 | 63 | pyroutes.register('admin_settings_global_update', '/_admin/settings/global/update', []); |
|
64 | 64 | pyroutes.register('admin_settings_vcs', '/_admin/settings/vcs', []); |
|
65 | 65 | pyroutes.register('admin_settings_vcs_update', '/_admin/settings/vcs/update', []); |
|
66 | 66 | pyroutes.register('admin_settings_vcs_svn_pattern_delete', '/_admin/settings/vcs/svn_pattern_delete', []); |
|
67 | 67 | pyroutes.register('admin_settings_mapping', '/_admin/settings/mapping', []); |
|
68 | 68 | pyroutes.register('admin_settings_mapping_update', '/_admin/settings/mapping/update', []); |
|
69 | 69 | pyroutes.register('admin_settings_visual', '/_admin/settings/visual', []); |
|
70 | 70 | pyroutes.register('admin_settings_visual_update', '/_admin/settings/visual/update', []); |
|
71 | 71 | pyroutes.register('admin_settings_issuetracker', '/_admin/settings/issue-tracker', []); |
|
72 | 72 | pyroutes.register('admin_settings_issuetracker_update', '/_admin/settings/issue-tracker/update', []); |
|
73 | 73 | pyroutes.register('admin_settings_issuetracker_test', '/_admin/settings/issue-tracker/test', []); |
|
74 | 74 | pyroutes.register('admin_settings_issuetracker_delete', '/_admin/settings/issue-tracker/delete', []); |
|
75 | 75 | pyroutes.register('admin_settings_email', '/_admin/settings/email', []); |
|
76 | 76 | pyroutes.register('admin_settings_email_update', '/_admin/settings/email/update', []); |
|
77 | 77 | pyroutes.register('admin_settings_hooks', '/_admin/settings/hooks', []); |
|
78 | 78 | pyroutes.register('admin_settings_hooks_update', '/_admin/settings/hooks/update', []); |
|
79 | 79 | pyroutes.register('admin_settings_hooks_delete', '/_admin/settings/hooks/delete', []); |
|
80 | 80 | pyroutes.register('admin_settings_search', '/_admin/settings/search', []); |
|
81 | 81 | pyroutes.register('admin_settings_labs', '/_admin/settings/labs', []); |
|
82 | 82 | pyroutes.register('admin_settings_labs_update', '/_admin/settings/labs/update', []); |
|
83 | 83 | pyroutes.register('admin_permissions_application', '/_admin/permissions/application', []); |
|
84 | 84 | pyroutes.register('admin_permissions_application_update', '/_admin/permissions/application/update', []); |
|
85 | 85 | pyroutes.register('admin_permissions_global', '/_admin/permissions/global', []); |
|
86 | 86 | pyroutes.register('admin_permissions_global_update', '/_admin/permissions/global/update', []); |
|
87 | 87 | pyroutes.register('admin_permissions_object', '/_admin/permissions/object', []); |
|
88 | 88 | pyroutes.register('admin_permissions_object_update', '/_admin/permissions/object/update', []); |
|
89 | 89 | pyroutes.register('admin_permissions_ips', '/_admin/permissions/ips', []); |
|
90 | 90 | pyroutes.register('admin_permissions_overview', '/_admin/permissions/overview', []); |
|
91 | 91 | pyroutes.register('admin_permissions_auth_token_access', '/_admin/permissions/auth_token_access', []); |
|
92 | 92 | pyroutes.register('admin_permissions_ssh_keys', '/_admin/permissions/ssh_keys', []); |
|
93 | 93 | pyroutes.register('admin_permissions_ssh_keys_data', '/_admin/permissions/ssh_keys/data', []); |
|
94 | 94 | pyroutes.register('admin_permissions_ssh_keys_update', '/_admin/permissions/ssh_keys/update', []); |
|
95 | 95 | pyroutes.register('users', '/_admin/users', []); |
|
96 | 96 | pyroutes.register('users_data', '/_admin/users_data', []); |
|
97 | 97 | pyroutes.register('users_create', '/_admin/users/create', []); |
|
98 | 98 | pyroutes.register('users_new', '/_admin/users/new', []); |
|
99 | 99 | pyroutes.register('user_edit', '/_admin/users/%(user_id)s/edit', ['user_id']); |
|
100 | 100 | pyroutes.register('user_edit_advanced', '/_admin/users/%(user_id)s/edit/advanced', ['user_id']); |
|
101 | 101 | pyroutes.register('user_edit_global_perms', '/_admin/users/%(user_id)s/edit/global_permissions', ['user_id']); |
|
102 | 102 | pyroutes.register('user_edit_global_perms_update', '/_admin/users/%(user_id)s/edit/global_permissions/update', ['user_id']); |
|
103 | 103 | pyroutes.register('user_update', '/_admin/users/%(user_id)s/update', ['user_id']); |
|
104 | 104 | pyroutes.register('user_delete', '/_admin/users/%(user_id)s/delete', ['user_id']); |
|
105 | 105 | pyroutes.register('user_enable_force_password_reset', '/_admin/users/%(user_id)s/password_reset_enable', ['user_id']); |
|
106 | 106 | pyroutes.register('user_disable_force_password_reset', '/_admin/users/%(user_id)s/password_reset_disable', ['user_id']); |
|
107 | 107 | pyroutes.register('user_create_personal_repo_group', '/_admin/users/%(user_id)s/create_repo_group', ['user_id']); |
|
108 | 108 | pyroutes.register('edit_user_auth_tokens_delete', '/_admin/users/%(user_id)s/edit/auth_tokens/delete', ['user_id']); |
|
109 | 109 | pyroutes.register('edit_user_ssh_keys', '/_admin/users/%(user_id)s/edit/ssh_keys', ['user_id']); |
|
110 | 110 | pyroutes.register('edit_user_ssh_keys_generate_keypair', '/_admin/users/%(user_id)s/edit/ssh_keys/generate', ['user_id']); |
|
111 | 111 | pyroutes.register('edit_user_ssh_keys_add', '/_admin/users/%(user_id)s/edit/ssh_keys/new', ['user_id']); |
|
112 | 112 | pyroutes.register('edit_user_ssh_keys_delete', '/_admin/users/%(user_id)s/edit/ssh_keys/delete', ['user_id']); |
|
113 | 113 | pyroutes.register('edit_user_emails', '/_admin/users/%(user_id)s/edit/emails', ['user_id']); |
|
114 | 114 | pyroutes.register('edit_user_emails_add', '/_admin/users/%(user_id)s/edit/emails/new', ['user_id']); |
|
115 | 115 | pyroutes.register('edit_user_emails_delete', '/_admin/users/%(user_id)s/edit/emails/delete', ['user_id']); |
|
116 | 116 | pyroutes.register('edit_user_ips', '/_admin/users/%(user_id)s/edit/ips', ['user_id']); |
|
117 | 117 | pyroutes.register('edit_user_ips_add', '/_admin/users/%(user_id)s/edit/ips/new', ['user_id']); |
|
118 | 118 | pyroutes.register('edit_user_ips_delete', '/_admin/users/%(user_id)s/edit/ips/delete', ['user_id']); |
|
119 | 119 | pyroutes.register('edit_user_perms_summary', '/_admin/users/%(user_id)s/edit/permissions_summary', ['user_id']); |
|
120 | 120 | pyroutes.register('edit_user_perms_summary_json', '/_admin/users/%(user_id)s/edit/permissions_summary/json', ['user_id']); |
|
121 | 121 | pyroutes.register('edit_user_groups_management', '/_admin/users/%(user_id)s/edit/groups_management', ['user_id']); |
|
122 | 122 | pyroutes.register('edit_user_groups_management_updates', '/_admin/users/%(user_id)s/edit/edit_user_groups_management/updates', ['user_id']); |
|
123 | 123 | pyroutes.register('edit_user_audit_logs', '/_admin/users/%(user_id)s/edit/audit', ['user_id']); |
|
124 | 124 | pyroutes.register('edit_user_caches', '/_admin/users/%(user_id)s/edit/caches', ['user_id']); |
|
125 | 125 | pyroutes.register('edit_user_caches_update', '/_admin/users/%(user_id)s/edit/caches/update', ['user_id']); |
|
126 | 126 | pyroutes.register('user_groups', '/_admin/user_groups', []); |
|
127 | 127 | pyroutes.register('user_groups_data', '/_admin/user_groups_data', []); |
|
128 | 128 | pyroutes.register('user_groups_new', '/_admin/user_groups/new', []); |
|
129 | 129 | pyroutes.register('user_groups_create', '/_admin/user_groups/create', []); |
|
130 | 130 | pyroutes.register('repos', '/_admin/repos', []); |
|
131 | 131 | pyroutes.register('repo_new', '/_admin/repos/new', []); |
|
132 | 132 | pyroutes.register('repo_create', '/_admin/repos/create', []); |
|
133 | 133 | pyroutes.register('repo_groups', '/_admin/repo_groups', []); |
|
134 | 134 | pyroutes.register('repo_groups_data', '/_admin/repo_groups_data', []); |
|
135 | 135 | pyroutes.register('repo_group_new', '/_admin/repo_group/new', []); |
|
136 | 136 | pyroutes.register('repo_group_create', '/_admin/repo_group/create', []); |
|
137 | 137 | pyroutes.register('channelstream_connect', '/_admin/channelstream/connect', []); |
|
138 | 138 | pyroutes.register('channelstream_subscribe', '/_admin/channelstream/subscribe', []); |
|
139 | 139 | pyroutes.register('channelstream_proxy', '/_channelstream', []); |
|
140 | 140 | pyroutes.register('upload_file', '/_file_store/upload', []); |
|
141 | 141 | pyroutes.register('download_file', '/_file_store/download/%(fid)s', ['fid']); |
|
142 | 142 | pyroutes.register('logout', '/_admin/logout', []); |
|
143 | 143 | pyroutes.register('reset_password', '/_admin/password_reset', []); |
|
144 | 144 | pyroutes.register('reset_password_confirmation', '/_admin/password_reset_confirmation', []); |
|
145 | 145 | pyroutes.register('home', '/', []); |
|
146 | 146 | pyroutes.register('user_autocomplete_data', '/_users', []); |
|
147 | 147 | pyroutes.register('user_group_autocomplete_data', '/_user_groups', []); |
|
148 | 148 | pyroutes.register('repo_list_data', '/_repos', []); |
|
149 | 149 | pyroutes.register('repo_group_list_data', '/_repo_groups', []); |
|
150 | 150 | pyroutes.register('goto_switcher_data', '/_goto_data', []); |
|
151 | 151 | pyroutes.register('markup_preview', '/_markup_preview', []); |
|
152 | 152 | pyroutes.register('file_preview', '/_file_preview', []); |
|
153 | 153 | pyroutes.register('store_user_session_value', '/_store_session_attr', []); |
|
154 | 154 | pyroutes.register('journal', '/_admin/journal', []); |
|
155 | 155 | pyroutes.register('journal_rss', '/_admin/journal/rss', []); |
|
156 | 156 | pyroutes.register('journal_atom', '/_admin/journal/atom', []); |
|
157 | 157 | pyroutes.register('journal_public', '/_admin/public_journal', []); |
|
158 | 158 | pyroutes.register('journal_public_atom', '/_admin/public_journal/atom', []); |
|
159 | 159 | pyroutes.register('journal_public_atom_old', '/_admin/public_journal_atom', []); |
|
160 | 160 | pyroutes.register('journal_public_rss', '/_admin/public_journal/rss', []); |
|
161 | 161 | pyroutes.register('journal_public_rss_old', '/_admin/public_journal_rss', []); |
|
162 | 162 | pyroutes.register('toggle_following', '/_admin/toggle_following', []); |
|
163 | 163 | pyroutes.register('repo_creating', '/%(repo_name)s/repo_creating', ['repo_name']); |
|
164 | 164 | pyroutes.register('repo_creating_check', '/%(repo_name)s/repo_creating_check', ['repo_name']); |
|
165 | 165 | pyroutes.register('repo_summary_explicit', '/%(repo_name)s/summary', ['repo_name']); |
|
166 | 166 | pyroutes.register('repo_summary_commits', '/%(repo_name)s/summary-commits', ['repo_name']); |
|
167 | 167 | pyroutes.register('repo_commit', '/%(repo_name)s/changeset/%(commit_id)s', ['repo_name', 'commit_id']); |
|
168 | 168 | pyroutes.register('repo_commit_children', '/%(repo_name)s/changeset_children/%(commit_id)s', ['repo_name', 'commit_id']); |
|
169 | 169 | pyroutes.register('repo_commit_parents', '/%(repo_name)s/changeset_parents/%(commit_id)s', ['repo_name', 'commit_id']); |
|
170 | 170 | pyroutes.register('repo_commit_raw', '/%(repo_name)s/changeset-diff/%(commit_id)s', ['repo_name', 'commit_id']); |
|
171 | 171 | pyroutes.register('repo_commit_patch', '/%(repo_name)s/changeset-patch/%(commit_id)s', ['repo_name', 'commit_id']); |
|
172 | 172 | pyroutes.register('repo_commit_download', '/%(repo_name)s/changeset-download/%(commit_id)s', ['repo_name', 'commit_id']); |
|
173 | 173 | pyroutes.register('repo_commit_data', '/%(repo_name)s/changeset-data/%(commit_id)s', ['repo_name', 'commit_id']); |
|
174 | 174 | pyroutes.register('repo_commit_comment_create', '/%(repo_name)s/changeset/%(commit_id)s/comment/create', ['repo_name', 'commit_id']); |
|
175 | 175 | pyroutes.register('repo_commit_comment_preview', '/%(repo_name)s/changeset/%(commit_id)s/comment/preview', ['repo_name', 'commit_id']); |
|
176 | 176 | pyroutes.register('repo_commit_comment_delete', '/%(repo_name)s/changeset/%(commit_id)s/comment/%(comment_id)s/delete', ['repo_name', 'commit_id', 'comment_id']); |
|
177 | 177 | pyroutes.register('repo_commit_raw_deprecated', '/%(repo_name)s/raw-changeset/%(commit_id)s', ['repo_name', 'commit_id']); |
|
178 | 178 | pyroutes.register('repo_archivefile', '/%(repo_name)s/archive/%(fname)s', ['repo_name', 'fname']); |
|
179 | 179 | pyroutes.register('repo_files_diff', '/%(repo_name)s/diff/%(f_path)s', ['repo_name', 'f_path']); |
|
180 | 180 | pyroutes.register('repo_files_diff_2way_redirect', '/%(repo_name)s/diff-2way/%(f_path)s', ['repo_name', 'f_path']); |
|
181 | 181 | pyroutes.register('repo_files', '/%(repo_name)s/files/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
182 | 182 | pyroutes.register('repo_files:default_path', '/%(repo_name)s/files/%(commit_id)s/', ['repo_name', 'commit_id']); |
|
183 | 183 | pyroutes.register('repo_files:default_commit', '/%(repo_name)s/files', ['repo_name']); |
|
184 | 184 | pyroutes.register('repo_files:rendered', '/%(repo_name)s/render/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
185 | 185 | pyroutes.register('repo_files:annotated', '/%(repo_name)s/annotate/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
186 | 186 | pyroutes.register('repo_files:annotated_previous', '/%(repo_name)s/annotate-previous/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
187 | 187 | pyroutes.register('repo_nodetree_full', '/%(repo_name)s/nodetree_full/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
188 | 188 | pyroutes.register('repo_nodetree_full:default_path', '/%(repo_name)s/nodetree_full/%(commit_id)s/', ['repo_name', 'commit_id']); |
|
189 | 189 | pyroutes.register('repo_files_nodelist', '/%(repo_name)s/nodelist/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
190 | 190 | pyroutes.register('repo_file_raw', '/%(repo_name)s/raw/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
191 | 191 | pyroutes.register('repo_file_download', '/%(repo_name)s/download/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
192 | 192 | pyroutes.register('repo_file_download:legacy', '/%(repo_name)s/rawfile/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
193 | 193 | pyroutes.register('repo_file_history', '/%(repo_name)s/history/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
194 | 194 | pyroutes.register('repo_file_authors', '/%(repo_name)s/authors/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
195 | 195 | pyroutes.register('repo_files_remove_file', '/%(repo_name)s/remove_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
196 | 196 | pyroutes.register('repo_files_delete_file', '/%(repo_name)s/delete_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
197 | 197 | pyroutes.register('repo_files_edit_file', '/%(repo_name)s/edit_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
198 | 198 | pyroutes.register('repo_files_update_file', '/%(repo_name)s/update_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
199 | 199 | pyroutes.register('repo_files_add_file', '/%(repo_name)s/add_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
200 | 200 | pyroutes.register('repo_files_upload_file', '/%(repo_name)s/upload_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
201 | 201 | pyroutes.register('repo_files_create_file', '/%(repo_name)s/create_file/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
202 | 202 | pyroutes.register('repo_refs_data', '/%(repo_name)s/refs-data', ['repo_name']); |
|
203 | 203 | pyroutes.register('repo_refs_changelog_data', '/%(repo_name)s/refs-data-changelog', ['repo_name']); |
|
204 | 204 | pyroutes.register('repo_stats', '/%(repo_name)s/repo_stats/%(commit_id)s', ['repo_name', 'commit_id']); |
|
205 | 205 | pyroutes.register('repo_commits', '/%(repo_name)s/commits', ['repo_name']); |
|
206 | 206 | pyroutes.register('repo_commits_file', '/%(repo_name)s/commits/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
207 | 207 | pyroutes.register('repo_commits_elements', '/%(repo_name)s/commits_elements', ['repo_name']); |
|
208 | 208 | pyroutes.register('repo_commits_elements_file', '/%(repo_name)s/commits_elements/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
209 | 209 | pyroutes.register('repo_changelog', '/%(repo_name)s/changelog', ['repo_name']); |
|
210 | 210 | pyroutes.register('repo_changelog_file', '/%(repo_name)s/changelog/%(commit_id)s/%(f_path)s', ['repo_name', 'commit_id', 'f_path']); |
|
211 | 211 | pyroutes.register('repo_compare_select', '/%(repo_name)s/compare', ['repo_name']); |
|
212 | 212 | pyroutes.register('repo_compare', '/%(repo_name)s/compare/%(source_ref_type)s@%(source_ref)s...%(target_ref_type)s@%(target_ref)s', ['repo_name', 'source_ref_type', 'source_ref', 'target_ref_type', 'target_ref']); |
|
213 | 213 | pyroutes.register('tags_home', '/%(repo_name)s/tags', ['repo_name']); |
|
214 | 214 | pyroutes.register('branches_home', '/%(repo_name)s/branches', ['repo_name']); |
|
215 | 215 | pyroutes.register('bookmarks_home', '/%(repo_name)s/bookmarks', ['repo_name']); |
|
216 | 216 | pyroutes.register('repo_fork_new', '/%(repo_name)s/fork', ['repo_name']); |
|
217 | 217 | pyroutes.register('repo_fork_create', '/%(repo_name)s/fork/create', ['repo_name']); |
|
218 | 218 | pyroutes.register('repo_forks_show_all', '/%(repo_name)s/forks', ['repo_name']); |
|
219 | 219 | pyroutes.register('repo_forks_data', '/%(repo_name)s/forks/data', ['repo_name']); |
|
220 | 220 | pyroutes.register('pullrequest_show', '/%(repo_name)s/pull-request/%(pull_request_id)s', ['repo_name', 'pull_request_id']); |
|
221 | 221 | pyroutes.register('pullrequest_show_all', '/%(repo_name)s/pull-request', ['repo_name']); |
|
222 | 222 | pyroutes.register('pullrequest_show_all_data', '/%(repo_name)s/pull-request-data', ['repo_name']); |
|
223 | 223 | pyroutes.register('pullrequest_repo_refs', '/%(repo_name)s/pull-request/refs/%(target_repo_name)s', ['repo_name', 'target_repo_name']); |
|
224 | 224 | pyroutes.register('pullrequest_repo_targets', '/%(repo_name)s/pull-request/repo-targets', ['repo_name']); |
|
225 | 225 | pyroutes.register('pullrequest_new', '/%(repo_name)s/pull-request/new', ['repo_name']); |
|
226 | 226 | pyroutes.register('pullrequest_create', '/%(repo_name)s/pull-request/create', ['repo_name']); |
|
227 | 227 | pyroutes.register('pullrequest_update', '/%(repo_name)s/pull-request/%(pull_request_id)s/update', ['repo_name', 'pull_request_id']); |
|
228 | 228 | pyroutes.register('pullrequest_merge', '/%(repo_name)s/pull-request/%(pull_request_id)s/merge', ['repo_name', 'pull_request_id']); |
|
229 | 229 | pyroutes.register('pullrequest_delete', '/%(repo_name)s/pull-request/%(pull_request_id)s/delete', ['repo_name', 'pull_request_id']); |
|
230 | 230 | pyroutes.register('pullrequest_comment_create', '/%(repo_name)s/pull-request/%(pull_request_id)s/comment', ['repo_name', 'pull_request_id']); |
|
231 | 231 | pyroutes.register('pullrequest_comment_delete', '/%(repo_name)s/pull-request/%(pull_request_id)s/comment/%(comment_id)s/delete', ['repo_name', 'pull_request_id', 'comment_id']); |
|
232 | 232 | pyroutes.register('edit_repo', '/%(repo_name)s/settings', ['repo_name']); |
|
233 | 233 | pyroutes.register('edit_repo_advanced', '/%(repo_name)s/settings/advanced', ['repo_name']); |
|
234 | 234 | pyroutes.register('edit_repo_advanced_archive', '/%(repo_name)s/settings/advanced/archive', ['repo_name']); |
|
235 | 235 | pyroutes.register('edit_repo_advanced_delete', '/%(repo_name)s/settings/advanced/delete', ['repo_name']); |
|
236 | 236 | pyroutes.register('edit_repo_advanced_locking', '/%(repo_name)s/settings/advanced/locking', ['repo_name']); |
|
237 | 237 | pyroutes.register('edit_repo_advanced_journal', '/%(repo_name)s/settings/advanced/journal', ['repo_name']); |
|
238 | 238 | pyroutes.register('edit_repo_advanced_fork', '/%(repo_name)s/settings/advanced/fork', ['repo_name']); |
|
239 | 239 | pyroutes.register('edit_repo_advanced_hooks', '/%(repo_name)s/settings/advanced/hooks', ['repo_name']); |
|
240 | 240 | pyroutes.register('edit_repo_caches', '/%(repo_name)s/settings/caches', ['repo_name']); |
|
241 | 241 | pyroutes.register('edit_repo_perms', '/%(repo_name)s/settings/permissions', ['repo_name']); |
|
242 | 242 | pyroutes.register('edit_repo_perms_set_private', '/%(repo_name)s/settings/permissions/set_private', ['repo_name']); |
|
243 | 243 | pyroutes.register('edit_repo_maintenance', '/%(repo_name)s/settings/maintenance', ['repo_name']); |
|
244 | 244 | pyroutes.register('edit_repo_maintenance_execute', '/%(repo_name)s/settings/maintenance/execute', ['repo_name']); |
|
245 | 245 | pyroutes.register('edit_repo_fields', '/%(repo_name)s/settings/fields', ['repo_name']); |
|
246 | 246 | pyroutes.register('edit_repo_fields_create', '/%(repo_name)s/settings/fields/create', ['repo_name']); |
|
247 | 247 | pyroutes.register('edit_repo_fields_delete', '/%(repo_name)s/settings/fields/%(field_id)s/delete', ['repo_name', 'field_id']); |
|
248 | 248 | pyroutes.register('repo_edit_toggle_locking', '/%(repo_name)s/settings/toggle_locking', ['repo_name']); |
|
249 | 249 | pyroutes.register('edit_repo_remote', '/%(repo_name)s/settings/remote', ['repo_name']); |
|
250 | 250 | pyroutes.register('edit_repo_remote_pull', '/%(repo_name)s/settings/remote/pull', ['repo_name']); |
|
251 | 251 | pyroutes.register('edit_repo_statistics', '/%(repo_name)s/settings/statistics', ['repo_name']); |
|
252 | 252 | pyroutes.register('edit_repo_statistics_reset', '/%(repo_name)s/settings/statistics/update', ['repo_name']); |
|
253 | 253 | pyroutes.register('edit_repo_issuetracker', '/%(repo_name)s/settings/issue_trackers', ['repo_name']); |
|
254 | 254 | pyroutes.register('edit_repo_issuetracker_test', '/%(repo_name)s/settings/issue_trackers/test', ['repo_name']); |
|
255 | 255 | pyroutes.register('edit_repo_issuetracker_delete', '/%(repo_name)s/settings/issue_trackers/delete', ['repo_name']); |
|
256 | 256 | pyroutes.register('edit_repo_issuetracker_update', '/%(repo_name)s/settings/issue_trackers/update', ['repo_name']); |
|
257 | 257 | pyroutes.register('edit_repo_vcs', '/%(repo_name)s/settings/vcs', ['repo_name']); |
|
258 | 258 | pyroutes.register('edit_repo_vcs_update', '/%(repo_name)s/settings/vcs/update', ['repo_name']); |
|
259 | 259 | pyroutes.register('edit_repo_vcs_svn_pattern_delete', '/%(repo_name)s/settings/vcs/svn_pattern/delete', ['repo_name']); |
|
260 | 260 | pyroutes.register('repo_reviewers', '/%(repo_name)s/settings/review/rules', ['repo_name']); |
|
261 | 261 | pyroutes.register('repo_default_reviewers_data', '/%(repo_name)s/settings/review/default-reviewers', ['repo_name']); |
|
262 | 262 | pyroutes.register('edit_repo_strip', '/%(repo_name)s/settings/strip', ['repo_name']); |
|
263 | 263 | pyroutes.register('strip_check', '/%(repo_name)s/settings/strip_check', ['repo_name']); |
|
264 | 264 | pyroutes.register('strip_execute', '/%(repo_name)s/settings/strip_execute', ['repo_name']); |
|
265 | 265 | pyroutes.register('edit_repo_audit_logs', '/%(repo_name)s/settings/audit_logs', ['repo_name']); |
|
266 |
pyroutes.register('rss_feed_home', '/%(repo_name)s/feed |
|
|
267 |
pyroutes.register('atom_feed_home', '/%(repo_name)s/feed |
|
|
266 | pyroutes.register('rss_feed_home', '/%(repo_name)s/feed-rss', ['repo_name']); | |
|
267 | pyroutes.register('atom_feed_home', '/%(repo_name)s/feed-atom', ['repo_name']); | |
|
268 | pyroutes.register('rss_feed_home_old', '/%(repo_name)s/feed/rss', ['repo_name']); | |
|
269 | pyroutes.register('atom_feed_home_old', '/%(repo_name)s/feed/atom', ['repo_name']); | |
|
268 | 270 | pyroutes.register('repo_summary', '/%(repo_name)s', ['repo_name']); |
|
269 | 271 | pyroutes.register('repo_summary_slash', '/%(repo_name)s/', ['repo_name']); |
|
270 | 272 | pyroutes.register('edit_repo_group', '/%(repo_group_name)s/_edit', ['repo_group_name']); |
|
271 | 273 | pyroutes.register('edit_repo_group_advanced', '/%(repo_group_name)s/_settings/advanced', ['repo_group_name']); |
|
272 | 274 | pyroutes.register('edit_repo_group_advanced_delete', '/%(repo_group_name)s/_settings/advanced/delete', ['repo_group_name']); |
|
273 | 275 | pyroutes.register('edit_repo_group_perms', '/%(repo_group_name)s/_settings/permissions', ['repo_group_name']); |
|
274 | 276 | pyroutes.register('edit_repo_group_perms_update', '/%(repo_group_name)s/_settings/permissions/update', ['repo_group_name']); |
|
275 | 277 | pyroutes.register('repo_group_home', '/%(repo_group_name)s', ['repo_group_name']); |
|
276 | 278 | pyroutes.register('repo_group_home_slash', '/%(repo_group_name)s/', ['repo_group_name']); |
|
277 | 279 | pyroutes.register('user_group_members_data', '/_admin/user_groups/%(user_group_id)s/members', ['user_group_id']); |
|
278 | 280 | pyroutes.register('edit_user_group_perms_summary', '/_admin/user_groups/%(user_group_id)s/edit/permissions_summary', ['user_group_id']); |
|
279 | 281 | pyroutes.register('edit_user_group_perms_summary_json', '/_admin/user_groups/%(user_group_id)s/edit/permissions_summary/json', ['user_group_id']); |
|
280 | 282 | pyroutes.register('edit_user_group', '/_admin/user_groups/%(user_group_id)s/edit', ['user_group_id']); |
|
281 | 283 | pyroutes.register('user_groups_update', '/_admin/user_groups/%(user_group_id)s/update', ['user_group_id']); |
|
282 | 284 | pyroutes.register('edit_user_group_global_perms', '/_admin/user_groups/%(user_group_id)s/edit/global_permissions', ['user_group_id']); |
|
283 | 285 | pyroutes.register('edit_user_group_global_perms_update', '/_admin/user_groups/%(user_group_id)s/edit/global_permissions/update', ['user_group_id']); |
|
284 | 286 | pyroutes.register('edit_user_group_perms', '/_admin/user_groups/%(user_group_id)s/edit/permissions', ['user_group_id']); |
|
285 | 287 | pyroutes.register('edit_user_group_perms_update', '/_admin/user_groups/%(user_group_id)s/edit/permissions/update', ['user_group_id']); |
|
286 | 288 | pyroutes.register('edit_user_group_advanced', '/_admin/user_groups/%(user_group_id)s/edit/advanced', ['user_group_id']); |
|
287 | 289 | pyroutes.register('edit_user_group_advanced_sync', '/_admin/user_groups/%(user_group_id)s/edit/advanced/sync', ['user_group_id']); |
|
288 | 290 | pyroutes.register('user_groups_delete', '/_admin/user_groups/%(user_group_id)s/delete', ['user_group_id']); |
|
289 | 291 | pyroutes.register('search', '/_admin/search', []); |
|
290 | 292 | pyroutes.register('search_repo', '/%(repo_name)s/_search', ['repo_name']); |
|
291 | 293 | pyroutes.register('search_repo_alt', '/%(repo_name)s/search', ['repo_name']); |
|
292 | 294 | pyroutes.register('search_repo_group', '/%(repo_group_name)s/_search', ['repo_group_name']); |
|
293 | 295 | pyroutes.register('user_profile', '/_profiles/%(username)s', ['username']); |
|
294 | 296 | pyroutes.register('user_group_profile', '/_profile_user_group/%(user_group_name)s', ['user_group_name']); |
|
295 | 297 | pyroutes.register('my_account_profile', '/_admin/my_account/profile', []); |
|
296 | 298 | pyroutes.register('my_account_edit', '/_admin/my_account/edit', []); |
|
297 | 299 | pyroutes.register('my_account_update', '/_admin/my_account/update', []); |
|
298 | 300 | pyroutes.register('my_account_password', '/_admin/my_account/password', []); |
|
299 | 301 | pyroutes.register('my_account_password_update', '/_admin/my_account/password/update', []); |
|
300 | 302 | pyroutes.register('my_account_auth_tokens_delete', '/_admin/my_account/auth_tokens/delete', []); |
|
301 | 303 | pyroutes.register('my_account_ssh_keys', '/_admin/my_account/ssh_keys', []); |
|
302 | 304 | pyroutes.register('my_account_ssh_keys_generate', '/_admin/my_account/ssh_keys/generate', []); |
|
303 | 305 | pyroutes.register('my_account_ssh_keys_add', '/_admin/my_account/ssh_keys/new', []); |
|
304 | 306 | pyroutes.register('my_account_ssh_keys_delete', '/_admin/my_account/ssh_keys/delete', []); |
|
305 | 307 | pyroutes.register('my_account_user_group_membership', '/_admin/my_account/user_group_membership', []); |
|
306 | 308 | pyroutes.register('my_account_emails', '/_admin/my_account/emails', []); |
|
307 | 309 | pyroutes.register('my_account_emails_add', '/_admin/my_account/emails/new', []); |
|
308 | 310 | pyroutes.register('my_account_emails_delete', '/_admin/my_account/emails/delete', []); |
|
309 | 311 | pyroutes.register('my_account_repos', '/_admin/my_account/repos', []); |
|
310 | 312 | pyroutes.register('my_account_watched', '/_admin/my_account/watched', []); |
|
311 | 313 | pyroutes.register('my_account_bookmarks', '/_admin/my_account/bookmarks', []); |
|
312 | 314 | pyroutes.register('my_account_bookmarks_update', '/_admin/my_account/bookmarks/update', []); |
|
313 | 315 | pyroutes.register('my_account_goto_bookmark', '/_admin/my_account/bookmark/%(bookmark_id)s', ['bookmark_id']); |
|
314 | 316 | pyroutes.register('my_account_perms', '/_admin/my_account/perms', []); |
|
315 | 317 | pyroutes.register('my_account_notifications', '/_admin/my_account/notifications', []); |
|
316 | 318 | pyroutes.register('my_account_notifications_toggle_visibility', '/_admin/my_account/toggle_visibility', []); |
|
317 | 319 | pyroutes.register('my_account_pullrequests', '/_admin/my_account/pull_requests', []); |
|
318 | 320 | pyroutes.register('my_account_pullrequests_data', '/_admin/my_account/pull_requests/data', []); |
|
319 | 321 | pyroutes.register('notifications_show_all', '/_admin/notifications', []); |
|
320 | 322 | pyroutes.register('notifications_mark_all_read', '/_admin/notifications/mark_all_read', []); |
|
321 | 323 | pyroutes.register('notifications_show', '/_admin/notifications/%(notification_id)s', ['notification_id']); |
|
322 | 324 | pyroutes.register('notifications_update', '/_admin/notifications/%(notification_id)s/update', ['notification_id']); |
|
323 | 325 | pyroutes.register('notifications_delete', '/_admin/notifications/%(notification_id)s/delete', ['notification_id']); |
|
324 | 326 | pyroutes.register('my_account_notifications_test_channelstream', '/_admin/my_account/test_channelstream', []); |
|
325 | 327 | pyroutes.register('gists_show', '/_admin/gists', []); |
|
326 | 328 | pyroutes.register('gists_new', '/_admin/gists/new', []); |
|
327 | 329 | pyroutes.register('gists_create', '/_admin/gists/create', []); |
|
328 | 330 | pyroutes.register('gist_show', '/_admin/gists/%(gist_id)s', ['gist_id']); |
|
329 | 331 | pyroutes.register('gist_delete', '/_admin/gists/%(gist_id)s/delete', ['gist_id']); |
|
330 | 332 | pyroutes.register('gist_edit', '/_admin/gists/%(gist_id)s/edit', ['gist_id']); |
|
331 | 333 | pyroutes.register('gist_edit_check_revision', '/_admin/gists/%(gist_id)s/edit/check_revision', ['gist_id']); |
|
332 | 334 | pyroutes.register('gist_update', '/_admin/gists/%(gist_id)s/update', ['gist_id']); |
|
333 | 335 | pyroutes.register('gist_show_rev', '/_admin/gists/%(gist_id)s/%(revision)s', ['gist_id', 'revision']); |
|
334 | 336 | pyroutes.register('gist_show_formatted', '/_admin/gists/%(gist_id)s/%(revision)s/%(format)s', ['gist_id', 'revision', 'format']); |
|
335 | 337 | pyroutes.register('gist_show_formatted_path', '/_admin/gists/%(gist_id)s/%(revision)s/%(format)s/%(f_path)s', ['gist_id', 'revision', 'format', 'f_path']); |
|
336 | 338 | pyroutes.register('debug_style_home', '/_admin/debug_style', []); |
|
337 | 339 | pyroutes.register('debug_style_template', '/_admin/debug_style/t/%(t_path)s', ['t_path']); |
|
338 | 340 | pyroutes.register('apiv2', '/_admin/api', []); |
|
339 | 341 | pyroutes.register('admin_settings_license', '/_admin/settings/license', []); |
|
340 | 342 | pyroutes.register('admin_settings_license_unlock', '/_admin/settings/license_unlock', []); |
|
341 | 343 | pyroutes.register('login', '/_admin/login', []); |
|
342 | 344 | pyroutes.register('register', '/_admin/register', []); |
|
343 | 345 | pyroutes.register('repo_reviewers_review_rule_new', '/%(repo_name)s/settings/review/rules/new', ['repo_name']); |
|
344 | 346 | pyroutes.register('repo_reviewers_review_rule_edit', '/%(repo_name)s/settings/review/rules/%(rule_id)s', ['repo_name', 'rule_id']); |
|
345 | 347 | pyroutes.register('repo_reviewers_review_rule_delete', '/%(repo_name)s/settings/review/rules/%(rule_id)s/delete', ['repo_name', 'rule_id']); |
|
346 | 348 | pyroutes.register('plugin_admin_chat', '/_admin/plugin_admin_chat/%(action)s', ['action']); |
|
347 | 349 | pyroutes.register('edit_user_auth_tokens', '/_admin/users/%(user_id)s/edit/auth_tokens', ['user_id']); |
|
348 | 350 | pyroutes.register('edit_user_auth_tokens_add', '/_admin/users/%(user_id)s/edit/auth_tokens/new', ['user_id']); |
|
349 | 351 | pyroutes.register('admin_settings_scheduler_show_tasks', '/_admin/settings/scheduler/_tasks', []); |
|
350 | 352 | pyroutes.register('admin_settings_scheduler_show_all', '/_admin/settings/scheduler', []); |
|
351 | 353 | pyroutes.register('admin_settings_scheduler_new', '/_admin/settings/scheduler/new', []); |
|
352 | 354 | pyroutes.register('admin_settings_scheduler_create', '/_admin/settings/scheduler/create', []); |
|
353 | 355 | pyroutes.register('admin_settings_scheduler_edit', '/_admin/settings/scheduler/%(schedule_id)s', ['schedule_id']); |
|
354 | 356 | pyroutes.register('admin_settings_scheduler_update', '/_admin/settings/scheduler/%(schedule_id)s/update', ['schedule_id']); |
|
355 | 357 | pyroutes.register('admin_settings_scheduler_delete', '/_admin/settings/scheduler/%(schedule_id)s/delete', ['schedule_id']); |
|
356 | 358 | pyroutes.register('admin_settings_scheduler_execute', '/_admin/settings/scheduler/%(schedule_id)s/execute', ['schedule_id']); |
|
357 | 359 | pyroutes.register('admin_settings_automation', '/_admin/settings/automation', []); |
|
358 | 360 | pyroutes.register('admin_settings_automation_update', '/_admin/settings/automation/%(entry_id)s/update', ['entry_id']); |
|
359 | 361 | pyroutes.register('admin_permissions_branch', '/_admin/permissions/branch', []); |
|
360 | 362 | pyroutes.register('admin_permissions_branch_update', '/_admin/permissions/branch/update', []); |
|
361 | 363 | pyroutes.register('my_account_auth_tokens', '/_admin/my_account/auth_tokens', []); |
|
362 | 364 | pyroutes.register('my_account_auth_tokens_add', '/_admin/my_account/auth_tokens/new', []); |
|
363 | 365 | pyroutes.register('my_account_external_identity', '/_admin/my_account/external-identity', []); |
|
364 | 366 | pyroutes.register('my_account_external_identity_delete', '/_admin/my_account/external-identity/delete', []); |
|
365 | 367 | pyroutes.register('repo_artifacts_list', '/%(repo_name)s/artifacts', ['repo_name']); |
|
366 | 368 | pyroutes.register('repo_artifacts_data', '/%(repo_name)s/artifacts_data', ['repo_name']); |
|
367 | 369 | pyroutes.register('repo_artifacts_new', '/%(repo_name)s/artifacts/new', ['repo_name']); |
|
368 | 370 | pyroutes.register('repo_artifacts_get', '/%(repo_name)s/artifacts/download/%(uid)s', ['repo_name', 'uid']); |
|
369 | 371 | pyroutes.register('repo_artifacts_store', '/%(repo_name)s/artifacts/store', ['repo_name']); |
|
370 | 372 | pyroutes.register('repo_artifacts_delete', '/%(repo_name)s/artifacts/delete/%(uid)s', ['repo_name', 'uid']); |
|
371 | 373 | pyroutes.register('repo_automation', '/%(repo_name)s/settings/automation', ['repo_name']); |
|
372 | 374 | pyroutes.register('repo_automation_update', '/%(repo_name)s/settings/automation/%(entry_id)s/update', ['repo_name', 'entry_id']); |
|
373 | 375 | pyroutes.register('edit_repo_remote_push', '/%(repo_name)s/settings/remote/push', ['repo_name']); |
|
374 | 376 | pyroutes.register('edit_repo_perms_branch', '/%(repo_name)s/settings/branch_permissions', ['repo_name']); |
|
375 | 377 | pyroutes.register('edit_repo_perms_branch_delete', '/%(repo_name)s/settings/branch_permissions/%(rule_id)s/delete', ['repo_name', 'rule_id']); |
|
376 | 378 | } |
@@ -1,974 +1,974 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <%inherit file="root.mako"/> |
|
3 | 3 | |
|
4 | 4 | <%include file="/ejs_templates/templates.html"/> |
|
5 | 5 | |
|
6 | 6 | <div class="outerwrapper"> |
|
7 | 7 | <!-- HEADER --> |
|
8 | 8 | <div class="header"> |
|
9 | 9 | <div id="header-inner" class="wrapper"> |
|
10 | 10 | <div id="logo"> |
|
11 | 11 | <div class="logo-wrapper"> |
|
12 | 12 | <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-60x60.png')}" alt="RhodeCode"/></a> |
|
13 | 13 | </div> |
|
14 | 14 | % if c.rhodecode_name: |
|
15 | 15 | <div class="branding"> |
|
16 | 16 | <a href="${h.route_path('home')}">${h.branding(c.rhodecode_name)}</a> |
|
17 | 17 | </div> |
|
18 | 18 | % endif |
|
19 | 19 | </div> |
|
20 | 20 | <!-- MENU BAR NAV --> |
|
21 | 21 | ${self.menu_bar_nav()} |
|
22 | 22 | <!-- END MENU BAR NAV --> |
|
23 | 23 | </div> |
|
24 | 24 | </div> |
|
25 | 25 | ${self.menu_bar_subnav()} |
|
26 | 26 | <!-- END HEADER --> |
|
27 | 27 | |
|
28 | 28 | <!-- CONTENT --> |
|
29 | 29 | <div id="content" class="wrapper"> |
|
30 | 30 | |
|
31 | 31 | <rhodecode-toast id="notifications"></rhodecode-toast> |
|
32 | 32 | |
|
33 | 33 | <div class="main"> |
|
34 | 34 | ${next.main()} |
|
35 | 35 | </div> |
|
36 | 36 | </div> |
|
37 | 37 | <!-- END CONTENT --> |
|
38 | 38 | |
|
39 | 39 | </div> |
|
40 | 40 | <!-- FOOTER --> |
|
41 | 41 | <div id="footer"> |
|
42 | 42 | <div id="footer-inner" class="title wrapper"> |
|
43 | 43 | <div> |
|
44 | 44 | <p class="footer-link-right"> |
|
45 | 45 | % if c.visual.show_version: |
|
46 | 46 | RhodeCode Enterprise ${c.rhodecode_version} ${c.rhodecode_edition} |
|
47 | 47 | % endif |
|
48 | 48 | © 2010-${h.datetime.today().year}, <a href="${h.route_url('rhodecode_official')}" target="_blank">RhodeCode GmbH</a>. All rights reserved. |
|
49 | 49 | % if c.visual.rhodecode_support_url: |
|
50 | 50 | <a href="${c.visual.rhodecode_support_url}" target="_blank">${_('Support')}</a> |
|
51 | 51 | % endif |
|
52 | 52 | </p> |
|
53 | 53 | <% sid = 'block' if request.GET.get('showrcid') else 'none' %> |
|
54 | 54 | <p class="server-instance" style="display:${sid}"> |
|
55 | 55 | ## display hidden instance ID if specially defined |
|
56 | 56 | % if c.rhodecode_instanceid: |
|
57 | 57 | ${_('RhodeCode instance id: {}').format(c.rhodecode_instanceid)} |
|
58 | 58 | % endif |
|
59 | 59 | </p> |
|
60 | 60 | </div> |
|
61 | 61 | </div> |
|
62 | 62 | </div> |
|
63 | 63 | |
|
64 | 64 | <!-- END FOOTER --> |
|
65 | 65 | |
|
66 | 66 | ### MAKO DEFS ### |
|
67 | 67 | |
|
68 | 68 | <%def name="menu_bar_subnav()"> |
|
69 | 69 | </%def> |
|
70 | 70 | |
|
71 | 71 | <%def name="breadcrumbs(class_='breadcrumbs')"> |
|
72 | 72 | <div class="${class_}"> |
|
73 | 73 | ${self.breadcrumbs_links()} |
|
74 | 74 | </div> |
|
75 | 75 | </%def> |
|
76 | 76 | |
|
77 | 77 | <%def name="admin_menu(active=None)"> |
|
78 | 78 | <% |
|
79 | 79 | def is_active(selected): |
|
80 | 80 | if selected == active: |
|
81 | 81 | return "active" |
|
82 | 82 | %> |
|
83 | 83 | |
|
84 | 84 | <div id="context-bar"> |
|
85 | 85 | <div class="wrapper"> |
|
86 | 86 | <div class="title"> |
|
87 | 87 | <div class="title-content"> |
|
88 | 88 | <div class="title-main"> |
|
89 | 89 | % if c.is_super_admin: |
|
90 | 90 | ${_('Super Admin Panel')} |
|
91 | 91 | % else: |
|
92 | 92 | ${_('Delegated Admin Panel')} |
|
93 | 93 | % endif |
|
94 | 94 | </div> |
|
95 | 95 | </div> |
|
96 | 96 | </div> |
|
97 | 97 | |
|
98 | 98 | <ul id="context-pages" class="navigation horizontal-list"> |
|
99 | 99 | |
|
100 | 100 | ## super admin case |
|
101 | 101 | % if c.is_super_admin: |
|
102 | 102 | <li class="${is_active('audit_logs')}"><a href="${h.route_path('admin_audit_logs')}">${_('Admin audit logs')}</a></li> |
|
103 | 103 | <li class="${is_active('repositories')}"><a href="${h.route_path('repos')}">${_('Repositories')}</a></li> |
|
104 | 104 | <li class="${is_active('repository_groups')}"><a href="${h.route_path('repo_groups')}">${_('Repository groups')}</a></li> |
|
105 | 105 | <li class="${is_active('users')}"><a href="${h.route_path('users')}">${_('Users')}</a></li> |
|
106 | 106 | <li class="${is_active('user_groups')}"><a href="${h.route_path('user_groups')}">${_('User groups')}</a></li> |
|
107 | 107 | <li class="${is_active('permissions')}"><a href="${h.route_path('admin_permissions_application')}">${_('Permissions')}</a></li> |
|
108 | 108 | <li class="${is_active('authentication')}"><a href="${h.route_path('auth_home', traverse='')}">${_('Authentication')}</a></li> |
|
109 | 109 | <li class="${is_active('integrations')}"><a href="${h.route_path('global_integrations_home')}">${_('Integrations')}</a></li> |
|
110 | 110 | <li class="${is_active('defaults')}"><a href="${h.route_path('admin_defaults_repositories')}">${_('Defaults')}</a></li> |
|
111 | 111 | <li class="${is_active('settings')}"><a href="${h.route_path('admin_settings')}">${_('Settings')}</a></li> |
|
112 | 112 | |
|
113 | 113 | ## delegated admin |
|
114 | 114 | % elif c.is_delegated_admin: |
|
115 | 115 | <% |
|
116 | 116 | repositories=c.auth_user.repositories_admin or c.can_create_repo |
|
117 | 117 | repository_groups=c.auth_user.repository_groups_admin or c.can_create_repo_group |
|
118 | 118 | user_groups=c.auth_user.user_groups_admin or c.can_create_user_group |
|
119 | 119 | %> |
|
120 | 120 | |
|
121 | 121 | %if repositories: |
|
122 | 122 | <li class="${is_active('repositories')} local-admin-repos"><a href="${h.route_path('repos')}">${_('Repositories')}</a></li> |
|
123 | 123 | %endif |
|
124 | 124 | %if repository_groups: |
|
125 | 125 | <li class="${is_active('repository_groups')} local-admin-repo-groups"><a href="${h.route_path('repo_groups')}">${_('Repository groups')}</a></li> |
|
126 | 126 | %endif |
|
127 | 127 | %if user_groups: |
|
128 | 128 | <li class="${is_active('user_groups')} local-admin-user-groups"><a href="${h.route_path('user_groups')}">${_('User groups')}</a></li> |
|
129 | 129 | %endif |
|
130 | 130 | % endif |
|
131 | 131 | </ul> |
|
132 | 132 | |
|
133 | 133 | </div> |
|
134 | 134 | <div class="clear"></div> |
|
135 | 135 | </div> |
|
136 | 136 | </%def> |
|
137 | 137 | |
|
138 | 138 | <%def name="dt_info_panel(elements)"> |
|
139 | 139 | <dl class="dl-horizontal"> |
|
140 | 140 | %for dt, dd, title, show_items in elements: |
|
141 | 141 | <dt>${dt}:</dt> |
|
142 | 142 | <dd title="${h.tooltip(title)}"> |
|
143 | 143 | %if callable(dd): |
|
144 | 144 | ## allow lazy evaluation of elements |
|
145 | 145 | ${dd()} |
|
146 | 146 | %else: |
|
147 | 147 | ${dd} |
|
148 | 148 | %endif |
|
149 | 149 | %if show_items: |
|
150 | 150 | <span class="btn-collapse" data-toggle="item-${h.md5_safe(dt)[:6]}-details">${_('Show More')} </span> |
|
151 | 151 | %endif |
|
152 | 152 | </dd> |
|
153 | 153 | |
|
154 | 154 | %if show_items: |
|
155 | 155 | <div class="collapsable-content" data-toggle="item-${h.md5_safe(dt)[:6]}-details" style="display: none"> |
|
156 | 156 | %for item in show_items: |
|
157 | 157 | <dt></dt> |
|
158 | 158 | <dd>${item}</dd> |
|
159 | 159 | %endfor |
|
160 | 160 | </div> |
|
161 | 161 | %endif |
|
162 | 162 | |
|
163 | 163 | %endfor |
|
164 | 164 | </dl> |
|
165 | 165 | </%def> |
|
166 | 166 | |
|
167 | 167 | <%def name="gravatar(email, size=16)"> |
|
168 | 168 | <% |
|
169 | 169 | if (size > 16): |
|
170 | 170 | gravatar_class = 'gravatar gravatar-large' |
|
171 | 171 | else: |
|
172 | 172 | gravatar_class = 'gravatar' |
|
173 | 173 | %> |
|
174 | 174 | <%doc> |
|
175 | 175 | TODO: johbo: For now we serve double size images to make it smooth |
|
176 | 176 | for retina. This is how it worked until now. Should be replaced |
|
177 | 177 | with a better solution at some point. |
|
178 | 178 | </%doc> |
|
179 | 179 | <img class="${gravatar_class}" src="${h.gravatar_url(email, size * 2)}" height="${size}" width="${size}"> |
|
180 | 180 | </%def> |
|
181 | 181 | |
|
182 | 182 | |
|
183 | 183 | <%def name="gravatar_with_user(contact, size=16, show_disabled=False)"> |
|
184 | 184 | <% email = h.email_or_none(contact) %> |
|
185 | 185 | <div class="rc-user tooltip" title="${h.tooltip(h.author_string(email))}"> |
|
186 | 186 | ${self.gravatar(email, size)} |
|
187 | 187 | <span class="${'user user-disabled' if show_disabled else 'user'}"> ${h.link_to_user(contact)}</span> |
|
188 | 188 | </div> |
|
189 | 189 | </%def> |
|
190 | 190 | |
|
191 | 191 | |
|
192 | 192 | <%def name="repo_page_title(repo_instance)"> |
|
193 | 193 | <div class="title-content repo-title"> |
|
194 | 194 | |
|
195 | 195 | <div class="title-main"> |
|
196 | 196 | ## SVN/HG/GIT icons |
|
197 | 197 | %if h.is_hg(repo_instance): |
|
198 | 198 | <i class="icon-hg"></i> |
|
199 | 199 | %endif |
|
200 | 200 | %if h.is_git(repo_instance): |
|
201 | 201 | <i class="icon-git"></i> |
|
202 | 202 | %endif |
|
203 | 203 | %if h.is_svn(repo_instance): |
|
204 | 204 | <i class="icon-svn"></i> |
|
205 | 205 | %endif |
|
206 | 206 | |
|
207 | 207 | ## public/private |
|
208 | 208 | %if repo_instance.private: |
|
209 | 209 | <i class="icon-repo-private"></i> |
|
210 | 210 | %else: |
|
211 | 211 | <i class="icon-repo-public"></i> |
|
212 | 212 | %endif |
|
213 | 213 | |
|
214 | 214 | ## repo name with group name |
|
215 | 215 | ${h.breadcrumb_repo_link(repo_instance)} |
|
216 | 216 | |
|
217 | 217 | ## Context Actions |
|
218 | 218 | <div class="pull-right"> |
|
219 | 219 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
220 |
<a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_ |
|
|
220 | <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a> | |
|
221 | 221 | |
|
222 | 222 | <a href="#WatchRepo" onclick="toggleFollowingRepo(this, templateContext.repo_id); return false" title="${_('Watch this Repository and actions on it in your personalized journal')}" class="btn btn-sm ${('watching' if c.repository_is_user_following else '')}"> |
|
223 | 223 | % if c.repository_is_user_following: |
|
224 | 224 | <i class="icon-eye-off"></i>${_('Unwatch')} |
|
225 | 225 | % else: |
|
226 | 226 | <i class="icon-eye"></i>${_('Watch')} |
|
227 | 227 | % endif |
|
228 | 228 | |
|
229 | 229 | </a> |
|
230 | 230 | %else: |
|
231 |
<a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_ |
|
|
231 | <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid)}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a> | |
|
232 | 232 | %endif |
|
233 | 233 | </div> |
|
234 | 234 | |
|
235 | 235 | </div> |
|
236 | 236 | |
|
237 | 237 | ## FORKED |
|
238 | 238 | %if repo_instance.fork: |
|
239 | 239 | <p class="discreet"> |
|
240 | 240 | <i class="icon-code-fork"></i> ${_('Fork of')} |
|
241 | 241 | ${h.link_to_if(c.has_origin_repo_read_perm,repo_instance.fork.repo_name, h.route_path('repo_summary', repo_name=repo_instance.fork.repo_name))} |
|
242 | 242 | </p> |
|
243 | 243 | %endif |
|
244 | 244 | |
|
245 | 245 | ## IMPORTED FROM REMOTE |
|
246 | 246 | %if repo_instance.clone_uri: |
|
247 | 247 | <p class="discreet"> |
|
248 | 248 | <i class="icon-code-fork"></i> ${_('Clone from')} |
|
249 | 249 | <a href="${h.safe_str(h.hide_credentials(repo_instance.clone_uri))}">${h.hide_credentials(repo_instance.clone_uri)}</a> |
|
250 | 250 | </p> |
|
251 | 251 | %endif |
|
252 | 252 | |
|
253 | 253 | ## LOCKING STATUS |
|
254 | 254 | %if repo_instance.locked[0]: |
|
255 | 255 | <p class="locking_locked discreet"> |
|
256 | 256 | <i class="icon-repo-lock"></i> |
|
257 | 257 | ${_('Repository locked by %(user)s') % {'user': h.person_by_id(repo_instance.locked[0])}} |
|
258 | 258 | </p> |
|
259 | 259 | %elif repo_instance.enable_locking: |
|
260 | 260 | <p class="locking_unlocked discreet"> |
|
261 | 261 | <i class="icon-repo-unlock"></i> |
|
262 | 262 | ${_('Repository not locked. Pull repository to lock it.')} |
|
263 | 263 | </p> |
|
264 | 264 | %endif |
|
265 | 265 | |
|
266 | 266 | </div> |
|
267 | 267 | </%def> |
|
268 | 268 | |
|
269 | 269 | <%def name="repo_menu(active=None)"> |
|
270 | 270 | <% |
|
271 | 271 | def is_active(selected): |
|
272 | 272 | if selected == active: |
|
273 | 273 | return "active" |
|
274 | 274 | %> |
|
275 | 275 | % if c.rhodecode_db_repo.archived: |
|
276 | 276 | <div class="alert alert-warning text-center"> |
|
277 | 277 | <strong>${_('This repository has been archived. It is now read-only.')}</strong> |
|
278 | 278 | </div> |
|
279 | 279 | % endif |
|
280 | 280 | |
|
281 | 281 | <!--- REPO CONTEXT BAR --> |
|
282 | 282 | <div id="context-bar"> |
|
283 | 283 | <div class="wrapper"> |
|
284 | 284 | |
|
285 | 285 | <div class="title"> |
|
286 | 286 | ${self.repo_page_title(c.rhodecode_db_repo)} |
|
287 | 287 | </div> |
|
288 | 288 | |
|
289 | 289 | <ul id="context-pages" class="navigation horizontal-list"> |
|
290 | 290 | <li class="${is_active('summary')}"><a class="menulink" href="${h.route_path('repo_summary', repo_name=c.repo_name)}"><div class="menulabel">${_('Summary')}</div></a></li> |
|
291 | 291 | <li class="${is_active('commits')}"><a class="menulink" href="${h.route_path('repo_commits', repo_name=c.repo_name)}"><div class="menulabel">${_('Commits')}</div></a></li> |
|
292 | 292 | <li class="${is_active('files')}"><a class="menulink" href="${h.route_path('repo_files', repo_name=c.repo_name, commit_id=c.rhodecode_db_repo.landing_rev[1], f_path='')}"><div class="menulabel">${_('Files')}</div></a></li> |
|
293 | 293 | <li class="${is_active('compare')}"><a class="menulink" href="${h.route_path('repo_compare_select',repo_name=c.repo_name)}"><div class="menulabel">${_('Compare')}</div></a></li> |
|
294 | 294 | |
|
295 | 295 | ## TODO: anderson: ideally it would have a function on the scm_instance "enable_pullrequest() and enable_fork()" |
|
296 | 296 | %if c.rhodecode_db_repo.repo_type in ['git','hg']: |
|
297 | 297 | <li class="${is_active('showpullrequest')}"> |
|
298 | 298 | <a class="menulink" href="${h.route_path('pullrequest_show_all', repo_name=c.repo_name)}" title="${h.tooltip(_('Show Pull Requests for %s') % c.repo_name)}"> |
|
299 | 299 | <div class="menulabel"> |
|
300 | 300 | %if c.repository_pull_requests == 1: |
|
301 | 301 | ${_('Pull Request')} ${c.repository_pull_requests} |
|
302 | 302 | %else: |
|
303 | 303 | ${_('Pull Requests')} ${c.repository_pull_requests} |
|
304 | 304 | %endif |
|
305 | 305 | </div> |
|
306 | 306 | </a> |
|
307 | 307 | </li> |
|
308 | 308 | %endif |
|
309 | 309 | |
|
310 | 310 | <li class="${is_active('artifacts')}"><a class="menulink" href="${h.route_path('repo_artifacts_list',repo_name=c.repo_name)}"><div class="menulabel">${_('Artifacts')} (BETA)</div></a></li> |
|
311 | 311 | |
|
312 | 312 | %if h.HasRepoPermissionAll('repository.admin')(c.repo_name): |
|
313 | 313 | <li class="${is_active('settings')}"><a class="menulink" href="${h.route_path('edit_repo',repo_name=c.repo_name)}"><div class="menulabel">${_('Repository Settings')}</div></a></li> |
|
314 | 314 | %endif |
|
315 | 315 | |
|
316 | 316 | ## determine if we have "any" option available |
|
317 | 317 | <% |
|
318 | 318 | can_lock = h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name) and c.rhodecode_db_repo.enable_locking |
|
319 | 319 | has_actions = (c.rhodecode_user.username != h.DEFAULT_USER and c.rhodecode_db_repo.repo_type in ['git','hg'] ) or can_lock |
|
320 | 320 | %> |
|
321 | 321 | <li class="${is_active('options')}"> |
|
322 | 322 | % if has_actions: |
|
323 | 323 | <a class="menulink dropdown"> |
|
324 | 324 | <div class="menulabel">${_('Options')}<div class="show_more"></div></div> |
|
325 | 325 | </a> |
|
326 | 326 | <ul class="submenu"> |
|
327 | 327 | <li><a href="${h.route_path('repo_fork_new',repo_name=c.repo_name)}">${_('Fork this repository')}</a></li> |
|
328 | 328 | <li><a href="${h.route_path('pullrequest_new',repo_name=c.repo_name)}">${_('Create Pull Request')}</a></li> |
|
329 | 329 | %if can_lock: |
|
330 | 330 | %if c.rhodecode_db_repo.locked[0]: |
|
331 | 331 | <li><a class="locking_del" href="${h.route_path('repo_edit_toggle_locking',repo_name=c.repo_name)}">${_('Unlock Repository')}</a></li> |
|
332 | 332 | %else: |
|
333 | 333 | <li><a class="locking_add" href="${h.route_path('repo_edit_toggle_locking',repo_name=c.repo_name)}">${_('Lock Repository')}</a></li> |
|
334 | 334 | %endif |
|
335 | 335 | %endif |
|
336 | 336 | </ul> |
|
337 | 337 | % else: |
|
338 | 338 | <a class="menulink disabled"> |
|
339 | 339 | <div class="menulabel">${_('Options')}<div class="show_more"></div></div> |
|
340 | 340 | </a> |
|
341 | 341 | % endif |
|
342 | 342 | </li> |
|
343 | 343 | |
|
344 | 344 | </ul> |
|
345 | 345 | </div> |
|
346 | 346 | <div class="clear"></div> |
|
347 | 347 | </div> |
|
348 | 348 | |
|
349 | 349 | <!--- REPO END CONTEXT BAR --> |
|
350 | 350 | |
|
351 | 351 | </%def> |
|
352 | 352 | |
|
353 | 353 | <%def name="repo_group_page_title(repo_group_instance)"> |
|
354 | 354 | <div class="title-content"> |
|
355 | 355 | <div class="title-main"> |
|
356 | 356 | ## Repository Group icon |
|
357 | 357 | <i class="icon-repo-group"></i> |
|
358 | 358 | |
|
359 | 359 | ## repo name with group name |
|
360 | 360 | ${h.breadcrumb_repo_group_link(repo_group_instance)} |
|
361 | 361 | </div> |
|
362 | 362 | |
|
363 | 363 | <%namespace name="dt" file="/data_table/_dt_elements.mako"/> |
|
364 | 364 | <div class="repo-group-desc discreet"> |
|
365 | 365 | ${dt.repo_group_desc(repo_group_instance.description_safe, repo_group_instance.personal, c.visual.stylify_metatags)} |
|
366 | 366 | </div> |
|
367 | 367 | |
|
368 | 368 | </div> |
|
369 | 369 | </%def> |
|
370 | 370 | |
|
371 | 371 | <%def name="repo_group_menu(active=None)"> |
|
372 | 372 | <% |
|
373 | 373 | def is_active(selected): |
|
374 | 374 | if selected == active: |
|
375 | 375 | return "active" |
|
376 | 376 | |
|
377 | 377 | gr_name = c.repo_group.group_name if c.repo_group else None |
|
378 | 378 | # create repositories with write permission on group is set to true |
|
379 | 379 | create_on_write = h.HasPermissionAny('hg.create.write_on_repogroup.true')() |
|
380 | 380 | group_admin = h.HasRepoGroupPermissionAny('group.admin')(gr_name, 'group admin index page') |
|
381 | 381 | group_write = h.HasRepoGroupPermissionAny('group.write')(gr_name, 'can write into group index page') |
|
382 | 382 | |
|
383 | 383 | %> |
|
384 | 384 | |
|
385 | 385 | <!--- REPO GROUP CONTEXT BAR --> |
|
386 | 386 | <div id="context-bar"> |
|
387 | 387 | <div class="wrapper"> |
|
388 | 388 | <div class="title"> |
|
389 | 389 | ${self.repo_group_page_title(c.repo_group)} |
|
390 | 390 | </div> |
|
391 | 391 | |
|
392 | 392 | <ul id="context-pages" class="navigation horizontal-list"> |
|
393 | 393 | <li class="${is_active('home')}"><a class="menulink" href="${h.route_path('repo_group_home', repo_group_name=c.repo_group.group_name)}"><div class="menulabel">${_('Group Home')}</div></a></li> |
|
394 | 394 | % if c.is_super_admin or group_admin: |
|
395 | 395 | <li class="${is_active('settings')}"><a class="menulink" href="${h.route_path('edit_repo_group',repo_group_name=c.repo_group.group_name)}" title="${_('You have admin right to this group, and can edit it')}"><div class="menulabel">${_('Group Settings')}</div></a></li> |
|
396 | 396 | % endif |
|
397 | 397 | ## determine if we have "any" option available |
|
398 | 398 | <% |
|
399 | 399 | can_create_repos = c.is_super_admin or group_admin or (group_write and create_on_write) |
|
400 | 400 | can_create_repo_groups = c.is_super_admin or group_admin |
|
401 | 401 | has_actions = can_create_repos or can_create_repo_groups |
|
402 | 402 | %> |
|
403 | 403 | <li class="${is_active('options')}"> |
|
404 | 404 | % if has_actions: |
|
405 | 405 | <a class="menulink dropdown"> |
|
406 | 406 | <div class="menulabel">${_('Options')} <div class="show_more"></div></div> |
|
407 | 407 | </a> |
|
408 | 408 | <ul class="submenu"> |
|
409 | 409 | %if can_create_repos: |
|
410 | 410 | <li><a href="${h.route_path('repo_new',_query=dict(parent_group=c.repo_group.group_id))}">${_('Add Repository')}</a></li> |
|
411 | 411 | %endif |
|
412 | 412 | %if can_create_repo_groups: |
|
413 | 413 | <li><a href="${h.route_path('repo_group_new',_query=dict(parent_group=c.repo_group.group_id))}">${_(u'Add Repository Group')}</a></li> |
|
414 | 414 | %endif |
|
415 | 415 | </ul> |
|
416 | 416 | % else: |
|
417 | 417 | <a class="menulink disabled"> |
|
418 | 418 | <div class="menulabel">${_('Options')} <div class="show_more"></div></div> |
|
419 | 419 | </a> |
|
420 | 420 | % endif |
|
421 | 421 | </li> |
|
422 | 422 | </ul> |
|
423 | 423 | </div> |
|
424 | 424 | <div class="clear"></div> |
|
425 | 425 | </div> |
|
426 | 426 | |
|
427 | 427 | <!--- REPO GROUP CONTEXT BAR --> |
|
428 | 428 | |
|
429 | 429 | </%def> |
|
430 | 430 | |
|
431 | 431 | |
|
432 | 432 | <%def name="usermenu(active=False)"> |
|
433 | 433 | ## USER MENU |
|
434 | 434 | <li id="quick_login_li" class="${'active' if active else ''}"> |
|
435 | 435 | % if c.rhodecode_user.username == h.DEFAULT_USER: |
|
436 | 436 | <a id="quick_login_link" class="menulink childs" href="${h.route_path('login', _query={'came_from': h.current_route_path(request)})}"> |
|
437 | 437 | ${gravatar(c.rhodecode_user.email, 20)} |
|
438 | 438 | <span class="user"> |
|
439 | 439 | <span>${_('Sign in')}</span> |
|
440 | 440 | </span> |
|
441 | 441 | </a> |
|
442 | 442 | % else: |
|
443 | 443 | ## logged in user |
|
444 | 444 | <a id="quick_login_link" class="menulink childs"> |
|
445 | 445 | ${gravatar(c.rhodecode_user.email, 20)} |
|
446 | 446 | <span class="user"> |
|
447 | 447 | <span class="menu_link_user">${c.rhodecode_user.username}</span> |
|
448 | 448 | <div class="show_more"></div> |
|
449 | 449 | </span> |
|
450 | 450 | </a> |
|
451 | 451 | ## subnav with menu for logged in user |
|
452 | 452 | <div class="user-menu submenu"> |
|
453 | 453 | <div id="quick_login"> |
|
454 | 454 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
455 | 455 | <div class=""> |
|
456 | 456 | <div class="big_gravatar">${gravatar(c.rhodecode_user.email, 48)}</div> |
|
457 | 457 | <div class="full_name">${c.rhodecode_user.full_name_or_username}</div> |
|
458 | 458 | <div class="email">${c.rhodecode_user.email}</div> |
|
459 | 459 | </div> |
|
460 | 460 | <div class=""> |
|
461 | 461 | <ol class="links"> |
|
462 | 462 | <li>${h.link_to(_(u'My account'),h.route_path('my_account_profile'))}</li> |
|
463 | 463 | % if c.rhodecode_user.personal_repo_group: |
|
464 | 464 | <li>${h.link_to(_(u'My personal group'), h.route_path('repo_group_home', repo_group_name=c.rhodecode_user.personal_repo_group.group_name))}</li> |
|
465 | 465 | % endif |
|
466 | 466 | <li>${h.link_to(_(u'Pull Requests'), h.route_path('my_account_pullrequests'))}</li> |
|
467 | 467 | ## bookmark-items |
|
468 | 468 | <li class="bookmark-items"> |
|
469 | 469 | ${_('Bookmarks')} |
|
470 | 470 | <div class="pull-right"> |
|
471 | 471 | <a href="${h.route_path('my_account_bookmarks')}">${_('Manage')}</a> |
|
472 | 472 | </div> |
|
473 | 473 | </li> |
|
474 | 474 | % if not c.bookmark_items: |
|
475 | 475 | <li> |
|
476 | 476 | <a href="${h.route_path('my_account_bookmarks')}">${_('No Bookmarks yet.')}</a> |
|
477 | 477 | </li> |
|
478 | 478 | % endif |
|
479 | 479 | % for item in c.bookmark_items: |
|
480 | 480 | <li> |
|
481 | 481 | % if item.repository: |
|
482 | 482 | <div> |
|
483 | 483 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> |
|
484 | 484 | <code>${item.position}</code> |
|
485 | 485 | % if item.repository.repo_type == 'hg': |
|
486 | 486 | <i class="icon-hg" title="${_('Repository')}" style="font-size: 16px"></i> |
|
487 | 487 | % elif item.repository.repo_type == 'git': |
|
488 | 488 | <i class="icon-git" title="${_('Repository')}" style="font-size: 16px"></i> |
|
489 | 489 | % elif item.repository.repo_type == 'svn': |
|
490 | 490 | <i class="icon-svn" title="${_('Repository')}" style="font-size: 16px"></i> |
|
491 | 491 | % endif |
|
492 | 492 | ${(item.title or h.shorter(item.repository.repo_name, 30))} |
|
493 | 493 | </a> |
|
494 | 494 | </div> |
|
495 | 495 | % elif item.repository_group: |
|
496 | 496 | <div> |
|
497 | 497 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> |
|
498 | 498 | <code>${item.position}</code> |
|
499 | 499 | <i class="icon-repo-group" title="${_('Repository group')}" style="font-size: 14px"></i> |
|
500 | 500 | ${(item.title or h.shorter(item.repository_group.group_name, 30))} |
|
501 | 501 | </a> |
|
502 | 502 | </div> |
|
503 | 503 | % else: |
|
504 | 504 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> |
|
505 | 505 | <code>${item.position}</code> |
|
506 | 506 | ${item.title} |
|
507 | 507 | </a> |
|
508 | 508 | % endif |
|
509 | 509 | </li> |
|
510 | 510 | % endfor |
|
511 | 511 | |
|
512 | 512 | <li class="logout"> |
|
513 | 513 | ${h.secure_form(h.route_path('logout'), request=request)} |
|
514 | 514 | ${h.submit('log_out', _(u'Sign Out'),class_="btn btn-primary")} |
|
515 | 515 | ${h.end_form()} |
|
516 | 516 | </li> |
|
517 | 517 | </ol> |
|
518 | 518 | </div> |
|
519 | 519 | %endif |
|
520 | 520 | </div> |
|
521 | 521 | </div> |
|
522 | 522 | ## unread counter |
|
523 | 523 | <div class="pill_container"> |
|
524 | 524 | <a class="menu_link_notifications ${'empty' if c.unread_notifications == 0 else ''}" href="${h.route_path('notifications_show_all')}">${c.unread_notifications}</a> |
|
525 | 525 | </div> |
|
526 | 526 | % endif |
|
527 | 527 | </li> |
|
528 | 528 | </%def> |
|
529 | 529 | |
|
530 | 530 | <%def name="menu_items(active=None)"> |
|
531 | 531 | <% |
|
532 | 532 | def is_active(selected): |
|
533 | 533 | if selected == active: |
|
534 | 534 | return "active" |
|
535 | 535 | return "" |
|
536 | 536 | %> |
|
537 | 537 | |
|
538 | 538 | <ul id="quick" class="main_nav navigation horizontal-list"> |
|
539 | 539 | ## notice box for important system messages |
|
540 | 540 | <li style="display: none"> |
|
541 | 541 | <a class="notice-box" href="#openNotice" onclick="showNoticeBox(); return false"> |
|
542 | 542 | <div class="menulabel-notice" > |
|
543 | 543 | 0 |
|
544 | 544 | </div> |
|
545 | 545 | </a> |
|
546 | 546 | </li> |
|
547 | 547 | |
|
548 | 548 | ## Main filter |
|
549 | 549 | <li> |
|
550 | 550 | <div class="menulabel main_filter_box"> |
|
551 | 551 | <div class="main_filter_input_box"> |
|
552 | 552 | <ul class="searchItems"> |
|
553 | 553 | |
|
554 | 554 | % if c.template_context['search_context']['repo_id']: |
|
555 | 555 | <li class="searchTag searchTagFilter searchTagHidable" > |
|
556 | 556 | ##<a href="${h.route_path('search_repo',repo_name=c.template_context['search_context']['repo_name'])}"> |
|
557 | 557 | <span class="tag"> |
|
558 | 558 | This repo |
|
559 | 559 | <a href="#removeGoToFilter" onclick="removeGoToFilter(); return false"><i class="icon-cancel-circled"></i></a> |
|
560 | 560 | </span> |
|
561 | 561 | ##</a> |
|
562 | 562 | </li> |
|
563 | 563 | % elif c.template_context['search_context']['repo_group_id']: |
|
564 | 564 | <li class="searchTag searchTagFilter searchTagHidable"> |
|
565 | 565 | ##<a href="${h.route_path('search_repo_group',repo_group_name=c.template_context['search_context']['repo_group_name'])}"> |
|
566 | 566 | <span class="tag"> |
|
567 | 567 | This group |
|
568 | 568 | <a href="#removeGoToFilter" onclick="removeGoToFilter(); return false"><i class="icon-cancel-circled"></i></a> |
|
569 | 569 | </span> |
|
570 | 570 | ##</a> |
|
571 | 571 | </li> |
|
572 | 572 | % endif |
|
573 | 573 | |
|
574 | 574 | <li class="searchTagInput"> |
|
575 | 575 | <input class="main_filter_input" id="main_filter" size="25" type="text" name="main_filter" placeholder="${_('search / go to...')}" value="" /> |
|
576 | 576 | </li> |
|
577 | 577 | <li class="searchTag searchTagHelp"> |
|
578 | 578 | <a href="#showFilterHelp" onclick="showMainFilterBox(); return false">?</a> |
|
579 | 579 | </li> |
|
580 | 580 | </ul> |
|
581 | 581 | </div> |
|
582 | 582 | </div> |
|
583 | 583 | |
|
584 | 584 | <div id="main_filter_help" style="display: none"> |
|
585 | 585 | - Use '/' key to quickly access this field. |
|
586 | 586 | |
|
587 | 587 | - Enter a name of repository, or repository group for quick search. |
|
588 | 588 | |
|
589 | 589 | - Prefix query to allow special search: |
|
590 | 590 | |
|
591 | 591 | user:admin, to search for usernames, always global |
|
592 | 592 | |
|
593 | 593 | user_group:devops, to search for user groups, always global |
|
594 | 594 | |
|
595 | 595 | commit:efced4, to search for commits, scoped to repositories or groups |
|
596 | 596 | |
|
597 | 597 | file:models.py, to search for file paths, scoped to repositories or groups |
|
598 | 598 | |
|
599 | 599 | % if c.template_context['search_context']['repo_id']: |
|
600 | 600 | For advanced full text search visit: <a href="${h.route_path('search_repo',repo_name=c.template_context['search_context']['repo_name'])}">repository search</a> |
|
601 | 601 | % elif c.template_context['search_context']['repo_group_id']: |
|
602 | 602 | For advanced full text search visit: <a href="${h.route_path('search_repo_group',repo_group_name=c.template_context['search_context']['repo_group_name'])}">repository group search</a> |
|
603 | 603 | % else: |
|
604 | 604 | For advanced full text search visit: <a href="${h.route_path('search')}">global search</a> |
|
605 | 605 | % endif |
|
606 | 606 | </div> |
|
607 | 607 | </li> |
|
608 | 608 | |
|
609 | 609 | ## ROOT MENU |
|
610 | 610 | <li class="${is_active('home')}"> |
|
611 | 611 | <a class="menulink" title="${_('Home')}" href="${h.route_path('home')}"> |
|
612 | 612 | <div class="menulabel">${_('Home')}</div> |
|
613 | 613 | </a> |
|
614 | 614 | </li> |
|
615 | 615 | |
|
616 | 616 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
617 | 617 | <li class="${is_active('journal')}"> |
|
618 | 618 | <a class="menulink" title="${_('Show activity journal')}" href="${h.route_path('journal')}"> |
|
619 | 619 | <div class="menulabel">${_('Journal')}</div> |
|
620 | 620 | </a> |
|
621 | 621 | </li> |
|
622 | 622 | %else: |
|
623 | 623 | <li class="${is_active('journal')}"> |
|
624 | 624 | <a class="menulink" title="${_('Show Public activity journal')}" href="${h.route_path('journal_public')}"> |
|
625 | 625 | <div class="menulabel">${_('Public journal')}</div> |
|
626 | 626 | </a> |
|
627 | 627 | </li> |
|
628 | 628 | %endif |
|
629 | 629 | |
|
630 | 630 | <li class="${is_active('gists')}"> |
|
631 | 631 | <a class="menulink childs" title="${_('Show Gists')}" href="${h.route_path('gists_show')}"> |
|
632 | 632 | <div class="menulabel">${_('Gists')}</div> |
|
633 | 633 | </a> |
|
634 | 634 | </li> |
|
635 | 635 | |
|
636 | 636 | % if c.is_super_admin or c.is_delegated_admin: |
|
637 | 637 | <li class="${is_active('admin')}"> |
|
638 | 638 | <a class="menulink childs" title="${_('Admin settings')}" href="${h.route_path('admin_home')}"> |
|
639 | 639 | <div class="menulabel">${_('Admin')} </div> |
|
640 | 640 | </a> |
|
641 | 641 | </li> |
|
642 | 642 | % endif |
|
643 | 643 | |
|
644 | 644 | ## render extra user menu |
|
645 | 645 | ${usermenu(active=(active=='my_account'))} |
|
646 | 646 | |
|
647 | 647 | % if c.debug_style: |
|
648 | 648 | <li> |
|
649 | 649 | <a class="menulink" title="${_('Style')}" href="${h.route_path('debug_style_home')}"> |
|
650 | 650 | <div class="menulabel">${_('[Style]')}</div> |
|
651 | 651 | </a> |
|
652 | 652 | </li> |
|
653 | 653 | % endif |
|
654 | 654 | </ul> |
|
655 | 655 | |
|
656 | 656 | <script type="text/javascript"> |
|
657 | 657 | var visualShowPublicIcon = "${c.visual.show_public_icon}" == "True"; |
|
658 | 658 | |
|
659 | 659 | var formatRepoResult = function(result, container, query, escapeMarkup) { |
|
660 | 660 | return function(data, escapeMarkup) { |
|
661 | 661 | if (!data.repo_id){ |
|
662 | 662 | return data.text; // optgroup text Repositories |
|
663 | 663 | } |
|
664 | 664 | |
|
665 | 665 | var tmpl = ''; |
|
666 | 666 | var repoType = data['repo_type']; |
|
667 | 667 | var repoName = data['text']; |
|
668 | 668 | |
|
669 | 669 | if(data && data.type == 'repo'){ |
|
670 | 670 | if(repoType === 'hg'){ |
|
671 | 671 | tmpl += '<i class="icon-hg"></i> '; |
|
672 | 672 | } |
|
673 | 673 | else if(repoType === 'git'){ |
|
674 | 674 | tmpl += '<i class="icon-git"></i> '; |
|
675 | 675 | } |
|
676 | 676 | else if(repoType === 'svn'){ |
|
677 | 677 | tmpl += '<i class="icon-svn"></i> '; |
|
678 | 678 | } |
|
679 | 679 | if(data['private']){ |
|
680 | 680 | tmpl += '<i class="icon-lock" ></i> '; |
|
681 | 681 | } |
|
682 | 682 | else if(visualShowPublicIcon){ |
|
683 | 683 | tmpl += '<i class="icon-unlock-alt"></i> '; |
|
684 | 684 | } |
|
685 | 685 | } |
|
686 | 686 | tmpl += escapeMarkup(repoName); |
|
687 | 687 | return tmpl; |
|
688 | 688 | |
|
689 | 689 | }(result, escapeMarkup); |
|
690 | 690 | }; |
|
691 | 691 | |
|
692 | 692 | var formatRepoGroupResult = function(result, container, query, escapeMarkup) { |
|
693 | 693 | return function(data, escapeMarkup) { |
|
694 | 694 | if (!data.repo_group_id){ |
|
695 | 695 | return data.text; // optgroup text Repositories |
|
696 | 696 | } |
|
697 | 697 | |
|
698 | 698 | var tmpl = ''; |
|
699 | 699 | var repoGroupName = data['text']; |
|
700 | 700 | |
|
701 | 701 | if(data){ |
|
702 | 702 | |
|
703 | 703 | tmpl += '<i class="icon-repo-group"></i> '; |
|
704 | 704 | |
|
705 | 705 | } |
|
706 | 706 | tmpl += escapeMarkup(repoGroupName); |
|
707 | 707 | return tmpl; |
|
708 | 708 | |
|
709 | 709 | }(result, escapeMarkup); |
|
710 | 710 | }; |
|
711 | 711 | |
|
712 | 712 | var escapeRegExChars = function (value) { |
|
713 | 713 | return value.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); |
|
714 | 714 | }; |
|
715 | 715 | |
|
716 | 716 | var getRepoIcon = function(repo_type) { |
|
717 | 717 | if (repo_type === 'hg') { |
|
718 | 718 | return '<i class="icon-hg"></i> '; |
|
719 | 719 | } |
|
720 | 720 | else if (repo_type === 'git') { |
|
721 | 721 | return '<i class="icon-git"></i> '; |
|
722 | 722 | } |
|
723 | 723 | else if (repo_type === 'svn') { |
|
724 | 724 | return '<i class="icon-svn"></i> '; |
|
725 | 725 | } |
|
726 | 726 | return '' |
|
727 | 727 | }; |
|
728 | 728 | |
|
729 | 729 | var autocompleteMainFilterFormatResult = function (data, value, org_formatter) { |
|
730 | 730 | |
|
731 | 731 | if (value.split(':').length === 2) { |
|
732 | 732 | value = value.split(':')[1] |
|
733 | 733 | } |
|
734 | 734 | |
|
735 | 735 | var searchType = data['type']; |
|
736 | 736 | var searchSubType = data['subtype']; |
|
737 | 737 | var valueDisplay = data['value_display']; |
|
738 | 738 | |
|
739 | 739 | var pattern = '(' + escapeRegExChars(value) + ')'; |
|
740 | 740 | |
|
741 | 741 | valueDisplay = Select2.util.escapeMarkup(valueDisplay); |
|
742 | 742 | |
|
743 | 743 | // highlight match |
|
744 | 744 | if (searchType != 'text') { |
|
745 | 745 | valueDisplay = valueDisplay.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>'); |
|
746 | 746 | } |
|
747 | 747 | |
|
748 | 748 | var icon = ''; |
|
749 | 749 | |
|
750 | 750 | if (searchType === 'hint') { |
|
751 | 751 | icon += '<i class="icon-repo-group"></i> '; |
|
752 | 752 | } |
|
753 | 753 | // full text search/hints |
|
754 | 754 | else if (searchType === 'search') { |
|
755 | 755 | icon += '<i class="icon-more"></i> '; |
|
756 | 756 | if (searchSubType !== undefined && searchSubType == 'repo') { |
|
757 | 757 | valueDisplay += '<div class="pull-right tag">repository</div>'; |
|
758 | 758 | } |
|
759 | 759 | else if (searchSubType !== undefined && searchSubType == 'repo_group') { |
|
760 | 760 | valueDisplay += '<div class="pull-right tag">repo group</div>'; |
|
761 | 761 | } |
|
762 | 762 | } |
|
763 | 763 | // repository |
|
764 | 764 | else if (searchType === 'repo') { |
|
765 | 765 | |
|
766 | 766 | var repoIcon = getRepoIcon(data['repo_type']); |
|
767 | 767 | icon += repoIcon; |
|
768 | 768 | |
|
769 | 769 | if (data['private']) { |
|
770 | 770 | icon += '<i class="icon-lock" ></i> '; |
|
771 | 771 | } |
|
772 | 772 | else if (visualShowPublicIcon) { |
|
773 | 773 | icon += '<i class="icon-unlock-alt"></i> '; |
|
774 | 774 | } |
|
775 | 775 | } |
|
776 | 776 | // repository groups |
|
777 | 777 | else if (searchType === 'repo_group') { |
|
778 | 778 | icon += '<i class="icon-repo-group"></i> '; |
|
779 | 779 | } |
|
780 | 780 | // user group |
|
781 | 781 | else if (searchType === 'user_group') { |
|
782 | 782 | icon += '<i class="icon-group"></i> '; |
|
783 | 783 | } |
|
784 | 784 | // user |
|
785 | 785 | else if (searchType === 'user') { |
|
786 | 786 | icon += '<img class="gravatar" src="{0}"/>'.format(data['icon_link']); |
|
787 | 787 | } |
|
788 | 788 | // commit |
|
789 | 789 | else if (searchType === 'commit') { |
|
790 | 790 | var repo_data = data['repo_data']; |
|
791 | 791 | var repoIcon = getRepoIcon(repo_data['repository_type']); |
|
792 | 792 | if (repoIcon) { |
|
793 | 793 | icon += repoIcon; |
|
794 | 794 | } else { |
|
795 | 795 | icon += '<i class="icon-tag"></i>'; |
|
796 | 796 | } |
|
797 | 797 | } |
|
798 | 798 | // file |
|
799 | 799 | else if (searchType === 'file') { |
|
800 | 800 | var repo_data = data['repo_data']; |
|
801 | 801 | var repoIcon = getRepoIcon(repo_data['repository_type']); |
|
802 | 802 | if (repoIcon) { |
|
803 | 803 | icon += repoIcon; |
|
804 | 804 | } else { |
|
805 | 805 | icon += '<i class="icon-tag"></i>'; |
|
806 | 806 | } |
|
807 | 807 | } |
|
808 | 808 | // generic text |
|
809 | 809 | else if (searchType === 'text') { |
|
810 | 810 | icon = ''; |
|
811 | 811 | } |
|
812 | 812 | |
|
813 | 813 | var tmpl = '<div class="ac-container-wrap">{0}{1}</div>'; |
|
814 | 814 | return tmpl.format(icon, valueDisplay); |
|
815 | 815 | }; |
|
816 | 816 | |
|
817 | 817 | var handleSelect = function(element, suggestion) { |
|
818 | 818 | if (suggestion.type === "hint") { |
|
819 | 819 | // we skip action |
|
820 | 820 | $('#main_filter').focus(); |
|
821 | 821 | } |
|
822 | 822 | else if (suggestion.type === "text") { |
|
823 | 823 | // we skip action |
|
824 | 824 | $('#main_filter').focus(); |
|
825 | 825 | |
|
826 | 826 | } else { |
|
827 | 827 | window.location = suggestion['url']; |
|
828 | 828 | } |
|
829 | 829 | }; |
|
830 | 830 | |
|
831 | 831 | var autocompleteMainFilterResult = function (suggestion, originalQuery, queryLowerCase) { |
|
832 | 832 | if (queryLowerCase.split(':').length === 2) { |
|
833 | 833 | queryLowerCase = queryLowerCase.split(':')[1] |
|
834 | 834 | } |
|
835 | 835 | if (suggestion.type === "text") { |
|
836 | 836 | // special case we don't want to "skip" display for |
|
837 | 837 | return true |
|
838 | 838 | } |
|
839 | 839 | return suggestion.value_display.toLowerCase().indexOf(queryLowerCase) !== -1; |
|
840 | 840 | }; |
|
841 | 841 | |
|
842 | 842 | var cleanContext = { |
|
843 | 843 | repo_view_type: null, |
|
844 | 844 | |
|
845 | 845 | repo_id: null, |
|
846 | 846 | repo_name: "", |
|
847 | 847 | |
|
848 | 848 | repo_group_id: null, |
|
849 | 849 | repo_group_name: null |
|
850 | 850 | }; |
|
851 | 851 | var removeGoToFilter = function () { |
|
852 | 852 | $('.searchTagHidable').hide(); |
|
853 | 853 | $('#main_filter').autocomplete( |
|
854 | 854 | 'setOptions', {params:{search_context: cleanContext}}); |
|
855 | 855 | }; |
|
856 | 856 | |
|
857 | 857 | $('#main_filter').autocomplete({ |
|
858 | 858 | serviceUrl: pyroutes.url('goto_switcher_data'), |
|
859 | 859 | params: { |
|
860 | 860 | "search_context": templateContext.search_context |
|
861 | 861 | }, |
|
862 | 862 | minChars:2, |
|
863 | 863 | maxHeight:400, |
|
864 | 864 | deferRequestBy: 300, //miliseconds |
|
865 | 865 | tabDisabled: true, |
|
866 | 866 | autoSelectFirst: false, |
|
867 | 867 | containerClass: 'autocomplete-qfilter-suggestions', |
|
868 | 868 | formatResult: autocompleteMainFilterFormatResult, |
|
869 | 869 | lookupFilter: autocompleteMainFilterResult, |
|
870 | 870 | onSelect: function (element, suggestion) { |
|
871 | 871 | handleSelect(element, suggestion); |
|
872 | 872 | return false; |
|
873 | 873 | }, |
|
874 | 874 | onSearchError: function (element, query, jqXHR, textStatus, errorThrown) { |
|
875 | 875 | if (jqXHR !== 'abort') { |
|
876 | 876 | alert("Error during search.\nError code: {0}".format(textStatus)); |
|
877 | 877 | window.location = ''; |
|
878 | 878 | } |
|
879 | 879 | } |
|
880 | 880 | }); |
|
881 | 881 | |
|
882 | 882 | showMainFilterBox = function () { |
|
883 | 883 | $('#main_filter_help').toggle(); |
|
884 | 884 | }; |
|
885 | 885 | |
|
886 | 886 | $('#main_filter').on('keydown.autocomplete', function (e) { |
|
887 | 887 | |
|
888 | 888 | var BACKSPACE = 8; |
|
889 | 889 | var el = $(e.currentTarget); |
|
890 | 890 | if(e.which === BACKSPACE){ |
|
891 | 891 | var inputVal = el.val(); |
|
892 | 892 | if (inputVal === ""){ |
|
893 | 893 | removeGoToFilter() |
|
894 | 894 | } |
|
895 | 895 | } |
|
896 | 896 | }); |
|
897 | 897 | |
|
898 | 898 | </script> |
|
899 | 899 | <script src="${h.asset('js/rhodecode/base/keyboard-bindings.js', ver=c.rhodecode_version_hash)}"></script> |
|
900 | 900 | </%def> |
|
901 | 901 | |
|
902 | 902 | <div class="modal" id="help_kb" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> |
|
903 | 903 | <div class="modal-dialog"> |
|
904 | 904 | <div class="modal-content"> |
|
905 | 905 | <div class="modal-header"> |
|
906 | 906 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
|
907 | 907 | <h4 class="modal-title" id="myModalLabel">${_('Keyboard shortcuts')}</h4> |
|
908 | 908 | </div> |
|
909 | 909 | <div class="modal-body"> |
|
910 | 910 | <div class="block-left"> |
|
911 | 911 | <table class="keyboard-mappings"> |
|
912 | 912 | <tbody> |
|
913 | 913 | <tr> |
|
914 | 914 | <th></th> |
|
915 | 915 | <th>${_('Site-wide shortcuts')}</th> |
|
916 | 916 | </tr> |
|
917 | 917 | <% |
|
918 | 918 | elems = [ |
|
919 | 919 | ('/', 'Use quick search box'), |
|
920 | 920 | ('g h', 'Goto home page'), |
|
921 | 921 | ('g g', 'Goto my private gists page'), |
|
922 | 922 | ('g G', 'Goto my public gists page'), |
|
923 | 923 | ('g 0-9', 'Goto bookmarked items from 0-9'), |
|
924 | 924 | ('n r', 'New repository page'), |
|
925 | 925 | ('n g', 'New gist page'), |
|
926 | 926 | ] |
|
927 | 927 | %> |
|
928 | 928 | %for key, desc in elems: |
|
929 | 929 | <tr> |
|
930 | 930 | <td class="keys"> |
|
931 | 931 | <span class="key tag">${key}</span> |
|
932 | 932 | </td> |
|
933 | 933 | <td>${desc}</td> |
|
934 | 934 | </tr> |
|
935 | 935 | %endfor |
|
936 | 936 | </tbody> |
|
937 | 937 | </table> |
|
938 | 938 | </div> |
|
939 | 939 | <div class="block-left"> |
|
940 | 940 | <table class="keyboard-mappings"> |
|
941 | 941 | <tbody> |
|
942 | 942 | <tr> |
|
943 | 943 | <th></th> |
|
944 | 944 | <th>${_('Repositories')}</th> |
|
945 | 945 | </tr> |
|
946 | 946 | <% |
|
947 | 947 | elems = [ |
|
948 | 948 | ('g s', 'Goto summary page'), |
|
949 | 949 | ('g c', 'Goto changelog page'), |
|
950 | 950 | ('g f', 'Goto files page'), |
|
951 | 951 | ('g F', 'Goto files page with file search activated'), |
|
952 | 952 | ('g p', 'Goto pull requests page'), |
|
953 | 953 | ('g o', 'Goto repository settings'), |
|
954 | 954 | ('g O', 'Goto repository permissions settings'), |
|
955 | 955 | ] |
|
956 | 956 | %> |
|
957 | 957 | %for key, desc in elems: |
|
958 | 958 | <tr> |
|
959 | 959 | <td class="keys"> |
|
960 | 960 | <span class="key tag">${key}</span> |
|
961 | 961 | </td> |
|
962 | 962 | <td>${desc}</td> |
|
963 | 963 | </tr> |
|
964 | 964 | %endfor |
|
965 | 965 | </tbody> |
|
966 | 966 | </table> |
|
967 | 967 | </div> |
|
968 | 968 | </div> |
|
969 | 969 | <div class="modal-footer"> |
|
970 | 970 | </div> |
|
971 | 971 | </div><!-- /.modal-content --> |
|
972 | 972 | </div><!-- /.modal-dialog --> |
|
973 | 973 | </div><!-- /.modal --> |
|
974 | 974 |
@@ -1,28 +1,28 b'' | |||
|
1 | 1 | <%inherit file="/base/base.mako"/> |
|
2 | 2 | |
|
3 | 3 | <%def name="title()"> |
|
4 | 4 | ## represents page title |
|
5 |
${_(' |
|
|
5 | ${_('{} Summary').format(c.repo_name)} | |
|
6 | 6 | %if c.rhodecode_name: |
|
7 | 7 | · ${h.branding(c.rhodecode_name)} |
|
8 | 8 | %endif |
|
9 | 9 | </%def> |
|
10 | 10 | |
|
11 | 11 | |
|
12 | 12 | <%def name="head_extra()"> |
|
13 |
<link href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_ |
|
|
14 |
<link href="${h.route_path('rss_feed_home', repo_name=c.rhodecode_db_repo.repo_ |
|
|
13 | <link href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s ATOM feed') % c.repo_name)}" type="application/atom+xml" /> | |
|
14 | <link href="${h.route_path('rss_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s RSS feed') % c.repo_name)}" type="application/rss+xml" /> | |
|
15 | 15 | </%def> |
|
16 | 16 | |
|
17 | 17 | |
|
18 | 18 | <%def name="menu_bar_nav()"> |
|
19 | 19 | ${self.menu_items(active='repositories')} |
|
20 | 20 | </%def> |
|
21 | 21 | |
|
22 | 22 | |
|
23 | 23 | <%def name="breadcrumbs_links()"></%def> |
|
24 | 24 | |
|
25 | 25 | |
|
26 | 26 | <%def name="main()"> |
|
27 | 27 | ${next.main()} |
|
28 | 28 | </%def> |
General Comments 0
You need to be logged in to leave comments.
Login now