Show More
@@ -1,1479 +1,1493 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2011-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 logging |
|
22 | 22 | import collections |
|
23 | 23 | |
|
24 | 24 | import formencode |
|
25 | 25 | import formencode.htmlfill |
|
26 | 26 | import peppercorn |
|
27 | 27 | from pyramid.httpexceptions import ( |
|
28 | 28 | HTTPFound, HTTPNotFound, HTTPForbidden, HTTPBadRequest) |
|
29 | 29 | from pyramid.view import view_config |
|
30 | 30 | from pyramid.renderers import render |
|
31 | 31 | |
|
32 | 32 | from rhodecode.apps._base import RepoAppView, DataGridAppView |
|
33 | 33 | |
|
34 | 34 | from rhodecode.lib import helpers as h, diffs, codeblocks, channelstream |
|
35 | 35 | from rhodecode.lib.base import vcs_operation_context |
|
36 | 36 | from rhodecode.lib.diffs import load_cached_diff, cache_diff, diff_cache_exist |
|
37 | 37 | from rhodecode.lib.ext_json import json |
|
38 | 38 | from rhodecode.lib.auth import ( |
|
39 | 39 | LoginRequired, HasRepoPermissionAny, HasRepoPermissionAnyDecorator, |
|
40 | 40 | NotAnonymous, CSRFRequired) |
|
41 | 41 | from rhodecode.lib.utils2 import str2bool, safe_str, safe_unicode |
|
42 | 42 | from rhodecode.lib.vcs.backends.base import EmptyCommit, UpdateFailureReason |
|
43 | 43 | from rhodecode.lib.vcs.exceptions import (CommitDoesNotExistError, |
|
44 | 44 | RepositoryRequirementError, EmptyRepositoryError) |
|
45 | 45 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
46 | 46 | from rhodecode.model.comment import CommentsModel |
|
47 | 47 | from rhodecode.model.db import (func, or_, PullRequest, PullRequestVersion, |
|
48 | 48 | ChangesetComment, ChangesetStatus, Repository) |
|
49 | 49 | from rhodecode.model.forms import PullRequestForm |
|
50 | 50 | from rhodecode.model.meta import Session |
|
51 | 51 | from rhodecode.model.pull_request import PullRequestModel, MergeCheck |
|
52 | 52 | from rhodecode.model.scm import ScmModel |
|
53 | 53 | |
|
54 | 54 | log = logging.getLogger(__name__) |
|
55 | 55 | |
|
56 | 56 | |
|
57 | 57 | class RepoPullRequestsView(RepoAppView, DataGridAppView): |
|
58 | 58 | |
|
59 | 59 | def load_default_context(self): |
|
60 | 60 | c = self._get_local_tmpl_context(include_app_defaults=True) |
|
61 | 61 | c.REVIEW_STATUS_APPROVED = ChangesetStatus.STATUS_APPROVED |
|
62 | 62 | c.REVIEW_STATUS_REJECTED = ChangesetStatus.STATUS_REJECTED |
|
63 | 63 | # backward compat., we use for OLD PRs a plain renderer |
|
64 | 64 | c.renderer = 'plain' |
|
65 | 65 | return c |
|
66 | 66 | |
|
67 | 67 | def _get_pull_requests_list( |
|
68 | 68 | self, repo_name, source, filter_type, opened_by, statuses): |
|
69 | 69 | |
|
70 | 70 | draw, start, limit = self._extract_chunk(self.request) |
|
71 | 71 | search_q, order_by, order_dir = self._extract_ordering(self.request) |
|
72 | 72 | _render = self.request.get_partial_renderer( |
|
73 | 73 | 'rhodecode:templates/data_table/_dt_elements.mako') |
|
74 | 74 | |
|
75 | 75 | # pagination |
|
76 | 76 | |
|
77 | 77 | if filter_type == 'awaiting_review': |
|
78 | 78 | pull_requests = PullRequestModel().get_awaiting_review( |
|
79 | 79 | repo_name, search_q=search_q, source=source, opened_by=opened_by, |
|
80 | 80 | statuses=statuses, offset=start, length=limit, |
|
81 | 81 | order_by=order_by, order_dir=order_dir) |
|
82 | 82 | pull_requests_total_count = PullRequestModel().count_awaiting_review( |
|
83 | 83 | repo_name, search_q=search_q, source=source, statuses=statuses, |
|
84 | 84 | opened_by=opened_by) |
|
85 | 85 | elif filter_type == 'awaiting_my_review': |
|
86 | 86 | pull_requests = PullRequestModel().get_awaiting_my_review( |
|
87 | 87 | repo_name, search_q=search_q, source=source, opened_by=opened_by, |
|
88 | 88 | user_id=self._rhodecode_user.user_id, statuses=statuses, |
|
89 | 89 | offset=start, length=limit, order_by=order_by, |
|
90 | 90 | order_dir=order_dir) |
|
91 | 91 | pull_requests_total_count = PullRequestModel().count_awaiting_my_review( |
|
92 | 92 | repo_name, search_q=search_q, source=source, user_id=self._rhodecode_user.user_id, |
|
93 | 93 | statuses=statuses, opened_by=opened_by) |
|
94 | 94 | else: |
|
95 | 95 | pull_requests = PullRequestModel().get_all( |
|
96 | 96 | repo_name, search_q=search_q, source=source, opened_by=opened_by, |
|
97 | 97 | statuses=statuses, offset=start, length=limit, |
|
98 | 98 | order_by=order_by, order_dir=order_dir) |
|
99 | 99 | pull_requests_total_count = PullRequestModel().count_all( |
|
100 | 100 | repo_name, search_q=search_q, source=source, statuses=statuses, |
|
101 | 101 | opened_by=opened_by) |
|
102 | 102 | |
|
103 | 103 | data = [] |
|
104 | 104 | comments_model = CommentsModel() |
|
105 | 105 | for pr in pull_requests: |
|
106 | 106 | comments = comments_model.get_all_comments( |
|
107 | 107 | self.db_repo.repo_id, pull_request=pr) |
|
108 | 108 | |
|
109 | 109 | data.append({ |
|
110 | 110 | 'name': _render('pullrequest_name', |
|
111 | 111 | pr.pull_request_id, pr.pull_request_state, |
|
112 | 112 | pr.work_in_progress, pr.target_repo.repo_name), |
|
113 | 113 | 'name_raw': pr.pull_request_id, |
|
114 | 114 | 'status': _render('pullrequest_status', |
|
115 | 115 | pr.calculated_review_status()), |
|
116 | 116 | 'title': _render('pullrequest_title', pr.title, pr.description), |
|
117 | 117 | 'description': h.escape(pr.description), |
|
118 | 118 | 'updated_on': _render('pullrequest_updated_on', |
|
119 | 119 | h.datetime_to_time(pr.updated_on)), |
|
120 | 120 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), |
|
121 | 121 | 'created_on': _render('pullrequest_updated_on', |
|
122 | 122 | h.datetime_to_time(pr.created_on)), |
|
123 | 123 | 'created_on_raw': h.datetime_to_time(pr.created_on), |
|
124 | 124 | 'state': pr.pull_request_state, |
|
125 | 125 | 'author': _render('pullrequest_author', |
|
126 | 126 | pr.author.full_contact, ), |
|
127 | 127 | 'author_raw': pr.author.full_name, |
|
128 | 128 | 'comments': _render('pullrequest_comments', len(comments)), |
|
129 | 129 | 'comments_raw': len(comments), |
|
130 | 130 | 'closed': pr.is_closed(), |
|
131 | 131 | }) |
|
132 | 132 | |
|
133 | 133 | data = ({ |
|
134 | 134 | 'draw': draw, |
|
135 | 135 | 'data': data, |
|
136 | 136 | 'recordsTotal': pull_requests_total_count, |
|
137 | 137 | 'recordsFiltered': pull_requests_total_count, |
|
138 | 138 | }) |
|
139 | 139 | return data |
|
140 | 140 | |
|
141 | 141 | @LoginRequired() |
|
142 | 142 | @HasRepoPermissionAnyDecorator( |
|
143 | 143 | 'repository.read', 'repository.write', 'repository.admin') |
|
144 | 144 | @view_config( |
|
145 | 145 | route_name='pullrequest_show_all', request_method='GET', |
|
146 | 146 | renderer='rhodecode:templates/pullrequests/pullrequests.mako') |
|
147 | 147 | def pull_request_list(self): |
|
148 | 148 | c = self.load_default_context() |
|
149 | 149 | |
|
150 | 150 | req_get = self.request.GET |
|
151 | 151 | c.source = str2bool(req_get.get('source')) |
|
152 | 152 | c.closed = str2bool(req_get.get('closed')) |
|
153 | 153 | c.my = str2bool(req_get.get('my')) |
|
154 | 154 | c.awaiting_review = str2bool(req_get.get('awaiting_review')) |
|
155 | 155 | c.awaiting_my_review = str2bool(req_get.get('awaiting_my_review')) |
|
156 | 156 | |
|
157 | 157 | c.active = 'open' |
|
158 | 158 | if c.my: |
|
159 | 159 | c.active = 'my' |
|
160 | 160 | if c.closed: |
|
161 | 161 | c.active = 'closed' |
|
162 | 162 | if c.awaiting_review and not c.source: |
|
163 | 163 | c.active = 'awaiting' |
|
164 | 164 | if c.source and not c.awaiting_review: |
|
165 | 165 | c.active = 'source' |
|
166 | 166 | if c.awaiting_my_review: |
|
167 | 167 | c.active = 'awaiting_my' |
|
168 | 168 | |
|
169 | 169 | return self._get_template_context(c) |
|
170 | 170 | |
|
171 | 171 | @LoginRequired() |
|
172 | 172 | @HasRepoPermissionAnyDecorator( |
|
173 | 173 | 'repository.read', 'repository.write', 'repository.admin') |
|
174 | 174 | @view_config( |
|
175 | 175 | route_name='pullrequest_show_all_data', request_method='GET', |
|
176 | 176 | renderer='json_ext', xhr=True) |
|
177 | 177 | def pull_request_list_data(self): |
|
178 | 178 | self.load_default_context() |
|
179 | 179 | |
|
180 | 180 | # additional filters |
|
181 | 181 | req_get = self.request.GET |
|
182 | 182 | source = str2bool(req_get.get('source')) |
|
183 | 183 | closed = str2bool(req_get.get('closed')) |
|
184 | 184 | my = str2bool(req_get.get('my')) |
|
185 | 185 | awaiting_review = str2bool(req_get.get('awaiting_review')) |
|
186 | 186 | awaiting_my_review = str2bool(req_get.get('awaiting_my_review')) |
|
187 | 187 | |
|
188 | 188 | filter_type = 'awaiting_review' if awaiting_review \ |
|
189 | 189 | else 'awaiting_my_review' if awaiting_my_review \ |
|
190 | 190 | else None |
|
191 | 191 | |
|
192 | 192 | opened_by = None |
|
193 | 193 | if my: |
|
194 | 194 | opened_by = [self._rhodecode_user.user_id] |
|
195 | 195 | |
|
196 | 196 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] |
|
197 | 197 | if closed: |
|
198 | 198 | statuses = [PullRequest.STATUS_CLOSED] |
|
199 | 199 | |
|
200 | 200 | data = self._get_pull_requests_list( |
|
201 | 201 | repo_name=self.db_repo_name, source=source, |
|
202 | 202 | filter_type=filter_type, opened_by=opened_by, statuses=statuses) |
|
203 | 203 | |
|
204 | 204 | return data |
|
205 | 205 | |
|
206 | 206 | def _is_diff_cache_enabled(self, target_repo): |
|
207 | 207 | caching_enabled = self._get_general_setting( |
|
208 | 208 | target_repo, 'rhodecode_diff_cache') |
|
209 | 209 | log.debug('Diff caching enabled: %s', caching_enabled) |
|
210 | 210 | return caching_enabled |
|
211 | 211 | |
|
212 | 212 | def _get_diffset(self, source_repo_name, source_repo, |
|
213 | 213 | source_ref_id, target_ref_id, |
|
214 | 214 | target_commit, source_commit, diff_limit, file_limit, |
|
215 | 215 | fulldiff, hide_whitespace_changes, diff_context): |
|
216 | 216 | |
|
217 | 217 | vcs_diff = PullRequestModel().get_diff( |
|
218 | 218 | source_repo, source_ref_id, target_ref_id, |
|
219 | 219 | hide_whitespace_changes, diff_context) |
|
220 | 220 | |
|
221 | 221 | diff_processor = diffs.DiffProcessor( |
|
222 | 222 | vcs_diff, format='newdiff', diff_limit=diff_limit, |
|
223 | 223 | file_limit=file_limit, show_full_diff=fulldiff) |
|
224 | 224 | |
|
225 | 225 | _parsed = diff_processor.prepare() |
|
226 | 226 | |
|
227 | 227 | diffset = codeblocks.DiffSet( |
|
228 | 228 | repo_name=self.db_repo_name, |
|
229 | 229 | source_repo_name=source_repo_name, |
|
230 | 230 | source_node_getter=codeblocks.diffset_node_getter(target_commit), |
|
231 | 231 | target_node_getter=codeblocks.diffset_node_getter(source_commit), |
|
232 | 232 | ) |
|
233 | 233 | diffset = self.path_filter.render_patchset_filtered( |
|
234 | 234 | diffset, _parsed, target_commit.raw_id, source_commit.raw_id) |
|
235 | 235 | |
|
236 | 236 | return diffset |
|
237 | 237 | |
|
238 | 238 | def _get_range_diffset(self, source_scm, source_repo, |
|
239 | 239 | commit1, commit2, diff_limit, file_limit, |
|
240 | 240 | fulldiff, hide_whitespace_changes, diff_context): |
|
241 | 241 | vcs_diff = source_scm.get_diff( |
|
242 | 242 | commit1, commit2, |
|
243 | 243 | ignore_whitespace=hide_whitespace_changes, |
|
244 | 244 | context=diff_context) |
|
245 | 245 | |
|
246 | 246 | diff_processor = diffs.DiffProcessor( |
|
247 | 247 | vcs_diff, format='newdiff', diff_limit=diff_limit, |
|
248 | 248 | file_limit=file_limit, show_full_diff=fulldiff) |
|
249 | 249 | |
|
250 | 250 | _parsed = diff_processor.prepare() |
|
251 | 251 | |
|
252 | 252 | diffset = codeblocks.DiffSet( |
|
253 | 253 | repo_name=source_repo.repo_name, |
|
254 | 254 | source_node_getter=codeblocks.diffset_node_getter(commit1), |
|
255 | 255 | target_node_getter=codeblocks.diffset_node_getter(commit2)) |
|
256 | 256 | |
|
257 | 257 | diffset = self.path_filter.render_patchset_filtered( |
|
258 | 258 | diffset, _parsed, commit1.raw_id, commit2.raw_id) |
|
259 | 259 | |
|
260 | 260 | return diffset |
|
261 | 261 | |
|
262 | 262 | @LoginRequired() |
|
263 | 263 | @HasRepoPermissionAnyDecorator( |
|
264 | 264 | 'repository.read', 'repository.write', 'repository.admin') |
|
265 | 265 | @view_config( |
|
266 | 266 | route_name='pullrequest_show', request_method='GET', |
|
267 | 267 | renderer='rhodecode:templates/pullrequests/pullrequest_show.mako') |
|
268 | 268 | def pull_request_show(self): |
|
269 | 269 | _ = self.request.translate |
|
270 | 270 | c = self.load_default_context() |
|
271 | 271 | |
|
272 | 272 | pull_request = PullRequest.get_or_404( |
|
273 | 273 | self.request.matchdict['pull_request_id']) |
|
274 | 274 | pull_request_id = pull_request.pull_request_id |
|
275 | 275 | |
|
276 | 276 | c.state_progressing = pull_request.is_state_changing() |
|
277 | 277 | |
|
278 | _new_state = { | |
|
279 | 'created': PullRequest.STATE_CREATED, | |
|
280 | }.get(self.request.GET.get('force_state')) | |
|
281 | if c.is_super_admin and _new_state: | |
|
282 | with pull_request.set_state(PullRequest.STATE_UPDATING, final_state=_new_state): | |
|
283 | h.flash( | |
|
284 | _('Pull Request state was force changed to `{}`').format(_new_state), | |
|
285 | category='success') | |
|
286 | Session().commit() | |
|
287 | ||
|
288 | raise HTTPFound(h.route_path( | |
|
289 | 'pullrequest_show', repo_name=self.db_repo_name, | |
|
290 | pull_request_id=pull_request_id)) | |
|
291 | ||
|
278 | 292 | version = self.request.GET.get('version') |
|
279 | 293 | from_version = self.request.GET.get('from_version') or version |
|
280 | 294 | merge_checks = self.request.GET.get('merge_checks') |
|
281 | 295 | c.fulldiff = str2bool(self.request.GET.get('fulldiff')) |
|
282 | 296 | |
|
283 | 297 | # fetch global flags of ignore ws or context lines |
|
284 | 298 | diff_context = diffs.get_diff_context(self.request) |
|
285 | 299 | hide_whitespace_changes = diffs.get_diff_whitespace_flag(self.request) |
|
286 | 300 | |
|
287 | 301 | force_refresh = str2bool(self.request.GET.get('force_refresh')) |
|
288 | 302 | |
|
289 | 303 | (pull_request_latest, |
|
290 | 304 | pull_request_at_ver, |
|
291 | 305 | pull_request_display_obj, |
|
292 | 306 | at_version) = PullRequestModel().get_pr_version( |
|
293 | 307 | pull_request_id, version=version) |
|
294 | 308 | pr_closed = pull_request_latest.is_closed() |
|
295 | 309 | |
|
296 | 310 | if pr_closed and (version or from_version): |
|
297 | 311 | # not allow to browse versions |
|
298 | 312 | raise HTTPFound(h.route_path( |
|
299 | 313 | 'pullrequest_show', repo_name=self.db_repo_name, |
|
300 | 314 | pull_request_id=pull_request_id)) |
|
301 | 315 | |
|
302 | 316 | versions = pull_request_display_obj.versions() |
|
303 | 317 | # used to store per-commit range diffs |
|
304 | 318 | c.changes = collections.OrderedDict() |
|
305 | 319 | c.range_diff_on = self.request.GET.get('range-diff') == "1" |
|
306 | 320 | |
|
307 | 321 | c.at_version = at_version |
|
308 | 322 | c.at_version_num = (at_version |
|
309 | 323 | if at_version and at_version != 'latest' |
|
310 | 324 | else None) |
|
311 | 325 | c.at_version_pos = ChangesetComment.get_index_from_version( |
|
312 | 326 | c.at_version_num, versions) |
|
313 | 327 | |
|
314 | 328 | (prev_pull_request_latest, |
|
315 | 329 | prev_pull_request_at_ver, |
|
316 | 330 | prev_pull_request_display_obj, |
|
317 | 331 | prev_at_version) = PullRequestModel().get_pr_version( |
|
318 | 332 | pull_request_id, version=from_version) |
|
319 | 333 | |
|
320 | 334 | c.from_version = prev_at_version |
|
321 | 335 | c.from_version_num = (prev_at_version |
|
322 | 336 | if prev_at_version and prev_at_version != 'latest' |
|
323 | 337 | else None) |
|
324 | 338 | c.from_version_pos = ChangesetComment.get_index_from_version( |
|
325 | 339 | c.from_version_num, versions) |
|
326 | 340 | |
|
327 | 341 | # define if we're in COMPARE mode or VIEW at version mode |
|
328 | 342 | compare = at_version != prev_at_version |
|
329 | 343 | |
|
330 | 344 | # pull_requests repo_name we opened it against |
|
331 | 345 | # ie. target_repo must match |
|
332 | 346 | if self.db_repo_name != pull_request_at_ver.target_repo.repo_name: |
|
333 | 347 | raise HTTPNotFound() |
|
334 | 348 | |
|
335 | 349 | c.shadow_clone_url = PullRequestModel().get_shadow_clone_url( |
|
336 | 350 | pull_request_at_ver) |
|
337 | 351 | |
|
338 | 352 | c.pull_request = pull_request_display_obj |
|
339 | 353 | c.renderer = pull_request_at_ver.description_renderer or c.renderer |
|
340 | 354 | c.pull_request_latest = pull_request_latest |
|
341 | 355 | |
|
342 | 356 | if compare or (at_version and not at_version == 'latest'): |
|
343 | 357 | c.allowed_to_change_status = False |
|
344 | 358 | c.allowed_to_update = False |
|
345 | 359 | c.allowed_to_merge = False |
|
346 | 360 | c.allowed_to_delete = False |
|
347 | 361 | c.allowed_to_comment = False |
|
348 | 362 | c.allowed_to_close = False |
|
349 | 363 | else: |
|
350 | 364 | can_change_status = PullRequestModel().check_user_change_status( |
|
351 | 365 | pull_request_at_ver, self._rhodecode_user) |
|
352 | 366 | c.allowed_to_change_status = can_change_status and not pr_closed |
|
353 | 367 | |
|
354 | 368 | c.allowed_to_update = PullRequestModel().check_user_update( |
|
355 | 369 | pull_request_latest, self._rhodecode_user) and not pr_closed |
|
356 | 370 | c.allowed_to_merge = PullRequestModel().check_user_merge( |
|
357 | 371 | pull_request_latest, self._rhodecode_user) and not pr_closed |
|
358 | 372 | c.allowed_to_delete = PullRequestModel().check_user_delete( |
|
359 | 373 | pull_request_latest, self._rhodecode_user) and not pr_closed |
|
360 | 374 | c.allowed_to_comment = not pr_closed |
|
361 | 375 | c.allowed_to_close = c.allowed_to_merge and not pr_closed |
|
362 | 376 | |
|
363 | 377 | c.forbid_adding_reviewers = False |
|
364 | 378 | c.forbid_author_to_review = False |
|
365 | 379 | c.forbid_commit_author_to_review = False |
|
366 | 380 | |
|
367 | 381 | if pull_request_latest.reviewer_data and \ |
|
368 | 382 | 'rules' in pull_request_latest.reviewer_data: |
|
369 | 383 | rules = pull_request_latest.reviewer_data['rules'] or {} |
|
370 | 384 | try: |
|
371 | 385 | c.forbid_adding_reviewers = rules.get( |
|
372 | 386 | 'forbid_adding_reviewers') |
|
373 | 387 | c.forbid_author_to_review = rules.get( |
|
374 | 388 | 'forbid_author_to_review') |
|
375 | 389 | c.forbid_commit_author_to_review = rules.get( |
|
376 | 390 | 'forbid_commit_author_to_review') |
|
377 | 391 | except Exception: |
|
378 | 392 | pass |
|
379 | 393 | |
|
380 | 394 | # check merge capabilities |
|
381 | 395 | _merge_check = MergeCheck.validate( |
|
382 | 396 | pull_request_latest, auth_user=self._rhodecode_user, |
|
383 | 397 | translator=self.request.translate, |
|
384 | 398 | force_shadow_repo_refresh=force_refresh) |
|
385 | 399 | c.pr_merge_errors = _merge_check.error_details |
|
386 | 400 | c.pr_merge_possible = not _merge_check.failed |
|
387 | 401 | c.pr_merge_message = _merge_check.merge_msg |
|
388 | 402 | |
|
389 | 403 | c.pr_merge_info = MergeCheck.get_merge_conditions( |
|
390 | 404 | pull_request_latest, translator=self.request.translate) |
|
391 | 405 | |
|
392 | 406 | c.pull_request_review_status = _merge_check.review_status |
|
393 | 407 | if merge_checks: |
|
394 | 408 | self.request.override_renderer = \ |
|
395 | 409 | 'rhodecode:templates/pullrequests/pullrequest_merge_checks.mako' |
|
396 | 410 | return self._get_template_context(c) |
|
397 | 411 | |
|
398 | 412 | comments_model = CommentsModel() |
|
399 | 413 | |
|
400 | 414 | # reviewers and statuses |
|
401 | 415 | c.pull_request_reviewers = pull_request_at_ver.reviewers_statuses() |
|
402 | 416 | allowed_reviewers = [x[0].user_id for x in c.pull_request_reviewers] |
|
403 | 417 | |
|
404 | 418 | # GENERAL COMMENTS with versions # |
|
405 | 419 | q = comments_model._all_general_comments_of_pull_request(pull_request_latest) |
|
406 | 420 | q = q.order_by(ChangesetComment.comment_id.asc()) |
|
407 | 421 | general_comments = q |
|
408 | 422 | |
|
409 | 423 | # pick comments we want to render at current version |
|
410 | 424 | c.comment_versions = comments_model.aggregate_comments( |
|
411 | 425 | general_comments, versions, c.at_version_num) |
|
412 | 426 | c.comments = c.comment_versions[c.at_version_num]['until'] |
|
413 | 427 | |
|
414 | 428 | # INLINE COMMENTS with versions # |
|
415 | 429 | q = comments_model._all_inline_comments_of_pull_request(pull_request_latest) |
|
416 | 430 | q = q.order_by(ChangesetComment.comment_id.asc()) |
|
417 | 431 | inline_comments = q |
|
418 | 432 | |
|
419 | 433 | c.inline_versions = comments_model.aggregate_comments( |
|
420 | 434 | inline_comments, versions, c.at_version_num, inline=True) |
|
421 | 435 | |
|
422 | 436 | # TODOs |
|
423 | 437 | c.unresolved_comments = CommentsModel() \ |
|
424 | 438 | .get_pull_request_unresolved_todos(pull_request) |
|
425 | 439 | c.resolved_comments = CommentsModel() \ |
|
426 | 440 | .get_pull_request_resolved_todos(pull_request) |
|
427 | 441 | |
|
428 | 442 | # inject latest version |
|
429 | 443 | latest_ver = PullRequest.get_pr_display_object( |
|
430 | 444 | pull_request_latest, pull_request_latest) |
|
431 | 445 | |
|
432 | 446 | c.versions = versions + [latest_ver] |
|
433 | 447 | |
|
434 | 448 | # if we use version, then do not show later comments |
|
435 | 449 | # than current version |
|
436 | 450 | display_inline_comments = collections.defaultdict( |
|
437 | 451 | lambda: collections.defaultdict(list)) |
|
438 | 452 | for co in inline_comments: |
|
439 | 453 | if c.at_version_num: |
|
440 | 454 | # pick comments that are at least UPTO given version, so we |
|
441 | 455 | # don't render comments for higher version |
|
442 | 456 | should_render = co.pull_request_version_id and \ |
|
443 | 457 | co.pull_request_version_id <= c.at_version_num |
|
444 | 458 | else: |
|
445 | 459 | # showing all, for 'latest' |
|
446 | 460 | should_render = True |
|
447 | 461 | |
|
448 | 462 | if should_render: |
|
449 | 463 | display_inline_comments[co.f_path][co.line_no].append(co) |
|
450 | 464 | |
|
451 | 465 | # load diff data into template context, if we use compare mode then |
|
452 | 466 | # diff is calculated based on changes between versions of PR |
|
453 | 467 | |
|
454 | 468 | source_repo = pull_request_at_ver.source_repo |
|
455 | 469 | source_ref_id = pull_request_at_ver.source_ref_parts.commit_id |
|
456 | 470 | |
|
457 | 471 | target_repo = pull_request_at_ver.target_repo |
|
458 | 472 | target_ref_id = pull_request_at_ver.target_ref_parts.commit_id |
|
459 | 473 | |
|
460 | 474 | if compare: |
|
461 | 475 | # in compare switch the diff base to latest commit from prev version |
|
462 | 476 | target_ref_id = prev_pull_request_display_obj.revisions[0] |
|
463 | 477 | |
|
464 | 478 | # despite opening commits for bookmarks/branches/tags, we always |
|
465 | 479 | # convert this to rev to prevent changes after bookmark or branch change |
|
466 | 480 | c.source_ref_type = 'rev' |
|
467 | 481 | c.source_ref = source_ref_id |
|
468 | 482 | |
|
469 | 483 | c.target_ref_type = 'rev' |
|
470 | 484 | c.target_ref = target_ref_id |
|
471 | 485 | |
|
472 | 486 | c.source_repo = source_repo |
|
473 | 487 | c.target_repo = target_repo |
|
474 | 488 | |
|
475 | 489 | c.commit_ranges = [] |
|
476 | 490 | source_commit = EmptyCommit() |
|
477 | 491 | target_commit = EmptyCommit() |
|
478 | 492 | c.missing_requirements = False |
|
479 | 493 | |
|
480 | 494 | source_scm = source_repo.scm_instance() |
|
481 | 495 | target_scm = target_repo.scm_instance() |
|
482 | 496 | |
|
483 | 497 | shadow_scm = None |
|
484 | 498 | try: |
|
485 | 499 | shadow_scm = pull_request_latest.get_shadow_repo() |
|
486 | 500 | except Exception: |
|
487 | 501 | log.debug('Failed to get shadow repo', exc_info=True) |
|
488 | 502 | # try first the existing source_repo, and then shadow |
|
489 | 503 | # repo if we can obtain one |
|
490 | 504 | commits_source_repo = source_scm |
|
491 | 505 | if shadow_scm: |
|
492 | 506 | commits_source_repo = shadow_scm |
|
493 | 507 | |
|
494 | 508 | c.commits_source_repo = commits_source_repo |
|
495 | 509 | c.ancestor = None # set it to None, to hide it from PR view |
|
496 | 510 | |
|
497 | 511 | # empty version means latest, so we keep this to prevent |
|
498 | 512 | # double caching |
|
499 | 513 | version_normalized = version or 'latest' |
|
500 | 514 | from_version_normalized = from_version or 'latest' |
|
501 | 515 | |
|
502 | 516 | cache_path = self.rhodecode_vcs_repo.get_create_shadow_cache_pr_path(target_repo) |
|
503 | 517 | cache_file_path = diff_cache_exist( |
|
504 | 518 | cache_path, 'pull_request', pull_request_id, version_normalized, |
|
505 | 519 | from_version_normalized, source_ref_id, target_ref_id, |
|
506 | 520 | hide_whitespace_changes, diff_context, c.fulldiff) |
|
507 | 521 | |
|
508 | 522 | caching_enabled = self._is_diff_cache_enabled(c.target_repo) |
|
509 | 523 | force_recache = self.get_recache_flag() |
|
510 | 524 | |
|
511 | 525 | cached_diff = None |
|
512 | 526 | if caching_enabled: |
|
513 | 527 | cached_diff = load_cached_diff(cache_file_path) |
|
514 | 528 | |
|
515 | 529 | has_proper_commit_cache = ( |
|
516 | 530 | cached_diff and cached_diff.get('commits') |
|
517 | 531 | and len(cached_diff.get('commits', [])) == 5 |
|
518 | 532 | and cached_diff.get('commits')[0] |
|
519 | 533 | and cached_diff.get('commits')[3]) |
|
520 | 534 | |
|
521 | 535 | if not force_recache and not c.range_diff_on and has_proper_commit_cache: |
|
522 | 536 | diff_commit_cache = \ |
|
523 | 537 | (ancestor_commit, commit_cache, missing_requirements, |
|
524 | 538 | source_commit, target_commit) = cached_diff['commits'] |
|
525 | 539 | else: |
|
526 | 540 | diff_commit_cache = \ |
|
527 | 541 | (ancestor_commit, commit_cache, missing_requirements, |
|
528 | 542 | source_commit, target_commit) = self.get_commits( |
|
529 | 543 | commits_source_repo, |
|
530 | 544 | pull_request_at_ver, |
|
531 | 545 | source_commit, |
|
532 | 546 | source_ref_id, |
|
533 | 547 | source_scm, |
|
534 | 548 | target_commit, |
|
535 | 549 | target_ref_id, |
|
536 | 550 | target_scm) |
|
537 | 551 | |
|
538 | 552 | # register our commit range |
|
539 | 553 | for comm in commit_cache.values(): |
|
540 | 554 | c.commit_ranges.append(comm) |
|
541 | 555 | |
|
542 | 556 | c.missing_requirements = missing_requirements |
|
543 | 557 | c.ancestor_commit = ancestor_commit |
|
544 | 558 | c.statuses = source_repo.statuses( |
|
545 | 559 | [x.raw_id for x in c.commit_ranges]) |
|
546 | 560 | |
|
547 | 561 | # auto collapse if we have more than limit |
|
548 | 562 | collapse_limit = diffs.DiffProcessor._collapse_commits_over |
|
549 | 563 | c.collapse_all_commits = len(c.commit_ranges) > collapse_limit |
|
550 | 564 | c.compare_mode = compare |
|
551 | 565 | |
|
552 | 566 | # diff_limit is the old behavior, will cut off the whole diff |
|
553 | 567 | # if the limit is applied otherwise will just hide the |
|
554 | 568 | # big files from the front-end |
|
555 | 569 | diff_limit = c.visual.cut_off_limit_diff |
|
556 | 570 | file_limit = c.visual.cut_off_limit_file |
|
557 | 571 | |
|
558 | 572 | c.missing_commits = False |
|
559 | 573 | if (c.missing_requirements |
|
560 | 574 | or isinstance(source_commit, EmptyCommit) |
|
561 | 575 | or source_commit == target_commit): |
|
562 | 576 | |
|
563 | 577 | c.missing_commits = True |
|
564 | 578 | else: |
|
565 | 579 | c.inline_comments = display_inline_comments |
|
566 | 580 | |
|
567 | 581 | has_proper_diff_cache = cached_diff and cached_diff.get('commits') |
|
568 | 582 | if not force_recache and has_proper_diff_cache: |
|
569 | 583 | c.diffset = cached_diff['diff'] |
|
570 | 584 | (ancestor_commit, commit_cache, missing_requirements, |
|
571 | 585 | source_commit, target_commit) = cached_diff['commits'] |
|
572 | 586 | else: |
|
573 | 587 | c.diffset = self._get_diffset( |
|
574 | 588 | c.source_repo.repo_name, commits_source_repo, |
|
575 | 589 | source_ref_id, target_ref_id, |
|
576 | 590 | target_commit, source_commit, |
|
577 | 591 | diff_limit, file_limit, c.fulldiff, |
|
578 | 592 | hide_whitespace_changes, diff_context) |
|
579 | 593 | |
|
580 | 594 | # save cached diff |
|
581 | 595 | if caching_enabled: |
|
582 | 596 | cache_diff(cache_file_path, c.diffset, diff_commit_cache) |
|
583 | 597 | |
|
584 | 598 | c.limited_diff = c.diffset.limited_diff |
|
585 | 599 | |
|
586 | 600 | # calculate removed files that are bound to comments |
|
587 | 601 | comment_deleted_files = [ |
|
588 | 602 | fname for fname in display_inline_comments |
|
589 | 603 | if fname not in c.diffset.file_stats] |
|
590 | 604 | |
|
591 | 605 | c.deleted_files_comments = collections.defaultdict(dict) |
|
592 | 606 | for fname, per_line_comments in display_inline_comments.items(): |
|
593 | 607 | if fname in comment_deleted_files: |
|
594 | 608 | c.deleted_files_comments[fname]['stats'] = 0 |
|
595 | 609 | c.deleted_files_comments[fname]['comments'] = list() |
|
596 | 610 | for lno, comments in per_line_comments.items(): |
|
597 | 611 | c.deleted_files_comments[fname]['comments'].extend(comments) |
|
598 | 612 | |
|
599 | 613 | # maybe calculate the range diff |
|
600 | 614 | if c.range_diff_on: |
|
601 | 615 | # TODO(marcink): set whitespace/context |
|
602 | 616 | context_lcl = 3 |
|
603 | 617 | ign_whitespace_lcl = False |
|
604 | 618 | |
|
605 | 619 | for commit in c.commit_ranges: |
|
606 | 620 | commit2 = commit |
|
607 | 621 | commit1 = commit.first_parent |
|
608 | 622 | |
|
609 | 623 | range_diff_cache_file_path = diff_cache_exist( |
|
610 | 624 | cache_path, 'diff', commit.raw_id, |
|
611 | 625 | ign_whitespace_lcl, context_lcl, c.fulldiff) |
|
612 | 626 | |
|
613 | 627 | cached_diff = None |
|
614 | 628 | if caching_enabled: |
|
615 | 629 | cached_diff = load_cached_diff(range_diff_cache_file_path) |
|
616 | 630 | |
|
617 | 631 | has_proper_diff_cache = cached_diff and cached_diff.get('diff') |
|
618 | 632 | if not force_recache and has_proper_diff_cache: |
|
619 | 633 | diffset = cached_diff['diff'] |
|
620 | 634 | else: |
|
621 | 635 | diffset = self._get_range_diffset( |
|
622 | 636 | commits_source_repo, source_repo, |
|
623 | 637 | commit1, commit2, diff_limit, file_limit, |
|
624 | 638 | c.fulldiff, ign_whitespace_lcl, context_lcl |
|
625 | 639 | ) |
|
626 | 640 | |
|
627 | 641 | # save cached diff |
|
628 | 642 | if caching_enabled: |
|
629 | 643 | cache_diff(range_diff_cache_file_path, diffset, None) |
|
630 | 644 | |
|
631 | 645 | c.changes[commit.raw_id] = diffset |
|
632 | 646 | |
|
633 | 647 | # this is a hack to properly display links, when creating PR, the |
|
634 | 648 | # compare view and others uses different notation, and |
|
635 | 649 | # compare_commits.mako renders links based on the target_repo. |
|
636 | 650 | # We need to swap that here to generate it properly on the html side |
|
637 | 651 | c.target_repo = c.source_repo |
|
638 | 652 | |
|
639 | 653 | c.commit_statuses = ChangesetStatus.STATUSES |
|
640 | 654 | |
|
641 | 655 | c.show_version_changes = not pr_closed |
|
642 | 656 | if c.show_version_changes: |
|
643 | 657 | cur_obj = pull_request_at_ver |
|
644 | 658 | prev_obj = prev_pull_request_at_ver |
|
645 | 659 | |
|
646 | 660 | old_commit_ids = prev_obj.revisions |
|
647 | 661 | new_commit_ids = cur_obj.revisions |
|
648 | 662 | commit_changes = PullRequestModel()._calculate_commit_id_changes( |
|
649 | 663 | old_commit_ids, new_commit_ids) |
|
650 | 664 | c.commit_changes_summary = commit_changes |
|
651 | 665 | |
|
652 | 666 | # calculate the diff for commits between versions |
|
653 | 667 | c.commit_changes = [] |
|
654 | 668 | mark = lambda cs, fw: list( |
|
655 | 669 | h.itertools.izip_longest([], cs, fillvalue=fw)) |
|
656 | 670 | for c_type, raw_id in mark(commit_changes.added, 'a') \ |
|
657 | 671 | + mark(commit_changes.removed, 'r') \ |
|
658 | 672 | + mark(commit_changes.common, 'c'): |
|
659 | 673 | |
|
660 | 674 | if raw_id in commit_cache: |
|
661 | 675 | commit = commit_cache[raw_id] |
|
662 | 676 | else: |
|
663 | 677 | try: |
|
664 | 678 | commit = commits_source_repo.get_commit(raw_id) |
|
665 | 679 | except CommitDoesNotExistError: |
|
666 | 680 | # in case we fail extracting still use "dummy" commit |
|
667 | 681 | # for display in commit diff |
|
668 | 682 | commit = h.AttributeDict( |
|
669 | 683 | {'raw_id': raw_id, |
|
670 | 684 | 'message': 'EMPTY or MISSING COMMIT'}) |
|
671 | 685 | c.commit_changes.append([c_type, commit]) |
|
672 | 686 | |
|
673 | 687 | # current user review statuses for each version |
|
674 | 688 | c.review_versions = {} |
|
675 | 689 | if self._rhodecode_user.user_id in allowed_reviewers: |
|
676 | 690 | for co in general_comments: |
|
677 | 691 | if co.author.user_id == self._rhodecode_user.user_id: |
|
678 | 692 | status = co.status_change |
|
679 | 693 | if status: |
|
680 | 694 | _ver_pr = status[0].comment.pull_request_version_id |
|
681 | 695 | c.review_versions[_ver_pr] = status[0] |
|
682 | 696 | |
|
683 | 697 | return self._get_template_context(c) |
|
684 | 698 | |
|
685 | 699 | def get_commits( |
|
686 | 700 | self, commits_source_repo, pull_request_at_ver, source_commit, |
|
687 | 701 | source_ref_id, source_scm, target_commit, target_ref_id, target_scm): |
|
688 | 702 | commit_cache = collections.OrderedDict() |
|
689 | 703 | missing_requirements = False |
|
690 | 704 | try: |
|
691 | 705 | pre_load = ["author", "date", "message", "branch", "parents"] |
|
692 | 706 | show_revs = pull_request_at_ver.revisions |
|
693 | 707 | for rev in show_revs: |
|
694 | 708 | comm = commits_source_repo.get_commit( |
|
695 | 709 | commit_id=rev, pre_load=pre_load) |
|
696 | 710 | commit_cache[comm.raw_id] = comm |
|
697 | 711 | |
|
698 | 712 | # Order here matters, we first need to get target, and then |
|
699 | 713 | # the source |
|
700 | 714 | target_commit = commits_source_repo.get_commit( |
|
701 | 715 | commit_id=safe_str(target_ref_id)) |
|
702 | 716 | |
|
703 | 717 | source_commit = commits_source_repo.get_commit( |
|
704 | 718 | commit_id=safe_str(source_ref_id)) |
|
705 | 719 | except CommitDoesNotExistError: |
|
706 | 720 | log.warning( |
|
707 | 721 | 'Failed to get commit from `{}` repo'.format( |
|
708 | 722 | commits_source_repo), exc_info=True) |
|
709 | 723 | except RepositoryRequirementError: |
|
710 | 724 | log.warning( |
|
711 | 725 | 'Failed to get all required data from repo', exc_info=True) |
|
712 | 726 | missing_requirements = True |
|
713 | 727 | ancestor_commit = None |
|
714 | 728 | try: |
|
715 | 729 | ancestor_id = source_scm.get_common_ancestor( |
|
716 | 730 | source_commit.raw_id, target_commit.raw_id, target_scm) |
|
717 | 731 | ancestor_commit = source_scm.get_commit(ancestor_id) |
|
718 | 732 | except Exception: |
|
719 | 733 | ancestor_commit = None |
|
720 | 734 | return ancestor_commit, commit_cache, missing_requirements, source_commit, target_commit |
|
721 | 735 | |
|
722 | 736 | def assure_not_empty_repo(self): |
|
723 | 737 | _ = self.request.translate |
|
724 | 738 | |
|
725 | 739 | try: |
|
726 | 740 | self.db_repo.scm_instance().get_commit() |
|
727 | 741 | except EmptyRepositoryError: |
|
728 | 742 | h.flash(h.literal(_('There are no commits yet')), |
|
729 | 743 | category='warning') |
|
730 | 744 | raise HTTPFound( |
|
731 | 745 | h.route_path('repo_summary', repo_name=self.db_repo.repo_name)) |
|
732 | 746 | |
|
733 | 747 | @LoginRequired() |
|
734 | 748 | @NotAnonymous() |
|
735 | 749 | @HasRepoPermissionAnyDecorator( |
|
736 | 750 | 'repository.read', 'repository.write', 'repository.admin') |
|
737 | 751 | @view_config( |
|
738 | 752 | route_name='pullrequest_new', request_method='GET', |
|
739 | 753 | renderer='rhodecode:templates/pullrequests/pullrequest.mako') |
|
740 | 754 | def pull_request_new(self): |
|
741 | 755 | _ = self.request.translate |
|
742 | 756 | c = self.load_default_context() |
|
743 | 757 | |
|
744 | 758 | self.assure_not_empty_repo() |
|
745 | 759 | source_repo = self.db_repo |
|
746 | 760 | |
|
747 | 761 | commit_id = self.request.GET.get('commit') |
|
748 | 762 | branch_ref = self.request.GET.get('branch') |
|
749 | 763 | bookmark_ref = self.request.GET.get('bookmark') |
|
750 | 764 | |
|
751 | 765 | try: |
|
752 | 766 | source_repo_data = PullRequestModel().generate_repo_data( |
|
753 | 767 | source_repo, commit_id=commit_id, |
|
754 | 768 | branch=branch_ref, bookmark=bookmark_ref, |
|
755 | 769 | translator=self.request.translate) |
|
756 | 770 | except CommitDoesNotExistError as e: |
|
757 | 771 | log.exception(e) |
|
758 | 772 | h.flash(_('Commit does not exist'), 'error') |
|
759 | 773 | raise HTTPFound( |
|
760 | 774 | h.route_path('pullrequest_new', repo_name=source_repo.repo_name)) |
|
761 | 775 | |
|
762 | 776 | default_target_repo = source_repo |
|
763 | 777 | |
|
764 | 778 | if source_repo.parent and c.has_origin_repo_read_perm: |
|
765 | 779 | parent_vcs_obj = source_repo.parent.scm_instance() |
|
766 | 780 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): |
|
767 | 781 | # change default if we have a parent repo |
|
768 | 782 | default_target_repo = source_repo.parent |
|
769 | 783 | |
|
770 | 784 | target_repo_data = PullRequestModel().generate_repo_data( |
|
771 | 785 | default_target_repo, translator=self.request.translate) |
|
772 | 786 | |
|
773 | 787 | selected_source_ref = source_repo_data['refs']['selected_ref'] |
|
774 | 788 | title_source_ref = '' |
|
775 | 789 | if selected_source_ref: |
|
776 | 790 | title_source_ref = selected_source_ref.split(':', 2)[1] |
|
777 | 791 | c.default_title = PullRequestModel().generate_pullrequest_title( |
|
778 | 792 | source=source_repo.repo_name, |
|
779 | 793 | source_ref=title_source_ref, |
|
780 | 794 | target=default_target_repo.repo_name |
|
781 | 795 | ) |
|
782 | 796 | |
|
783 | 797 | c.default_repo_data = { |
|
784 | 798 | 'source_repo_name': source_repo.repo_name, |
|
785 | 799 | 'source_refs_json': json.dumps(source_repo_data), |
|
786 | 800 | 'target_repo_name': default_target_repo.repo_name, |
|
787 | 801 | 'target_refs_json': json.dumps(target_repo_data), |
|
788 | 802 | } |
|
789 | 803 | c.default_source_ref = selected_source_ref |
|
790 | 804 | |
|
791 | 805 | return self._get_template_context(c) |
|
792 | 806 | |
|
793 | 807 | @LoginRequired() |
|
794 | 808 | @NotAnonymous() |
|
795 | 809 | @HasRepoPermissionAnyDecorator( |
|
796 | 810 | 'repository.read', 'repository.write', 'repository.admin') |
|
797 | 811 | @view_config( |
|
798 | 812 | route_name='pullrequest_repo_refs', request_method='GET', |
|
799 | 813 | renderer='json_ext', xhr=True) |
|
800 | 814 | def pull_request_repo_refs(self): |
|
801 | 815 | self.load_default_context() |
|
802 | 816 | target_repo_name = self.request.matchdict['target_repo_name'] |
|
803 | 817 | repo = Repository.get_by_repo_name(target_repo_name) |
|
804 | 818 | if not repo: |
|
805 | 819 | raise HTTPNotFound() |
|
806 | 820 | |
|
807 | 821 | target_perm = HasRepoPermissionAny( |
|
808 | 822 | 'repository.read', 'repository.write', 'repository.admin')( |
|
809 | 823 | target_repo_name) |
|
810 | 824 | if not target_perm: |
|
811 | 825 | raise HTTPNotFound() |
|
812 | 826 | |
|
813 | 827 | return PullRequestModel().generate_repo_data( |
|
814 | 828 | repo, translator=self.request.translate) |
|
815 | 829 | |
|
816 | 830 | @LoginRequired() |
|
817 | 831 | @NotAnonymous() |
|
818 | 832 | @HasRepoPermissionAnyDecorator( |
|
819 | 833 | 'repository.read', 'repository.write', 'repository.admin') |
|
820 | 834 | @view_config( |
|
821 | 835 | route_name='pullrequest_repo_targets', request_method='GET', |
|
822 | 836 | renderer='json_ext', xhr=True) |
|
823 | 837 | def pullrequest_repo_targets(self): |
|
824 | 838 | _ = self.request.translate |
|
825 | 839 | filter_query = self.request.GET.get('query') |
|
826 | 840 | |
|
827 | 841 | # get the parents |
|
828 | 842 | parent_target_repos = [] |
|
829 | 843 | if self.db_repo.parent: |
|
830 | 844 | parents_query = Repository.query() \ |
|
831 | 845 | .order_by(func.length(Repository.repo_name)) \ |
|
832 | 846 | .filter(Repository.fork_id == self.db_repo.parent.repo_id) |
|
833 | 847 | |
|
834 | 848 | if filter_query: |
|
835 | 849 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) |
|
836 | 850 | parents_query = parents_query.filter( |
|
837 | 851 | Repository.repo_name.ilike(ilike_expression)) |
|
838 | 852 | parents = parents_query.limit(20).all() |
|
839 | 853 | |
|
840 | 854 | for parent in parents: |
|
841 | 855 | parent_vcs_obj = parent.scm_instance() |
|
842 | 856 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): |
|
843 | 857 | parent_target_repos.append(parent) |
|
844 | 858 | |
|
845 | 859 | # get other forks, and repo itself |
|
846 | 860 | query = Repository.query() \ |
|
847 | 861 | .order_by(func.length(Repository.repo_name)) \ |
|
848 | 862 | .filter( |
|
849 | 863 | or_(Repository.repo_id == self.db_repo.repo_id, # repo itself |
|
850 | 864 | Repository.fork_id == self.db_repo.repo_id) # forks of this repo |
|
851 | 865 | ) \ |
|
852 | 866 | .filter(~Repository.repo_id.in_([x.repo_id for x in parent_target_repos])) |
|
853 | 867 | |
|
854 | 868 | if filter_query: |
|
855 | 869 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) |
|
856 | 870 | query = query.filter(Repository.repo_name.ilike(ilike_expression)) |
|
857 | 871 | |
|
858 | 872 | limit = max(20 - len(parent_target_repos), 5) # not less then 5 |
|
859 | 873 | target_repos = query.limit(limit).all() |
|
860 | 874 | |
|
861 | 875 | all_target_repos = target_repos + parent_target_repos |
|
862 | 876 | |
|
863 | 877 | repos = [] |
|
864 | 878 | # This checks permissions to the repositories |
|
865 | 879 | for obj in ScmModel().get_repos(all_target_repos): |
|
866 | 880 | repos.append({ |
|
867 | 881 | 'id': obj['name'], |
|
868 | 882 | 'text': obj['name'], |
|
869 | 883 | 'type': 'repo', |
|
870 | 884 | 'repo_id': obj['dbrepo']['repo_id'], |
|
871 | 885 | 'repo_type': obj['dbrepo']['repo_type'], |
|
872 | 886 | 'private': obj['dbrepo']['private'], |
|
873 | 887 | |
|
874 | 888 | }) |
|
875 | 889 | |
|
876 | 890 | data = { |
|
877 | 891 | 'more': False, |
|
878 | 892 | 'results': [{ |
|
879 | 893 | 'text': _('Repositories'), |
|
880 | 894 | 'children': repos |
|
881 | 895 | }] if repos else [] |
|
882 | 896 | } |
|
883 | 897 | return data |
|
884 | 898 | |
|
885 | 899 | @LoginRequired() |
|
886 | 900 | @NotAnonymous() |
|
887 | 901 | @HasRepoPermissionAnyDecorator( |
|
888 | 902 | 'repository.read', 'repository.write', 'repository.admin') |
|
889 | 903 | @CSRFRequired() |
|
890 | 904 | @view_config( |
|
891 | 905 | route_name='pullrequest_create', request_method='POST', |
|
892 | 906 | renderer=None) |
|
893 | 907 | def pull_request_create(self): |
|
894 | 908 | _ = self.request.translate |
|
895 | 909 | self.assure_not_empty_repo() |
|
896 | 910 | self.load_default_context() |
|
897 | 911 | |
|
898 | 912 | controls = peppercorn.parse(self.request.POST.items()) |
|
899 | 913 | |
|
900 | 914 | try: |
|
901 | 915 | form = PullRequestForm( |
|
902 | 916 | self.request.translate, self.db_repo.repo_id)() |
|
903 | 917 | _form = form.to_python(controls) |
|
904 | 918 | except formencode.Invalid as errors: |
|
905 | 919 | if errors.error_dict.get('revisions'): |
|
906 | 920 | msg = 'Revisions: %s' % errors.error_dict['revisions'] |
|
907 | 921 | elif errors.error_dict.get('pullrequest_title'): |
|
908 | 922 | msg = errors.error_dict.get('pullrequest_title') |
|
909 | 923 | else: |
|
910 | 924 | msg = _('Error creating pull request: {}').format(errors) |
|
911 | 925 | log.exception(msg) |
|
912 | 926 | h.flash(msg, 'error') |
|
913 | 927 | |
|
914 | 928 | # would rather just go back to form ... |
|
915 | 929 | raise HTTPFound( |
|
916 | 930 | h.route_path('pullrequest_new', repo_name=self.db_repo_name)) |
|
917 | 931 | |
|
918 | 932 | source_repo = _form['source_repo'] |
|
919 | 933 | source_ref = _form['source_ref'] |
|
920 | 934 | target_repo = _form['target_repo'] |
|
921 | 935 | target_ref = _form['target_ref'] |
|
922 | 936 | commit_ids = _form['revisions'][::-1] |
|
923 | 937 | |
|
924 | 938 | # find the ancestor for this pr |
|
925 | 939 | source_db_repo = Repository.get_by_repo_name(_form['source_repo']) |
|
926 | 940 | target_db_repo = Repository.get_by_repo_name(_form['target_repo']) |
|
927 | 941 | |
|
928 | 942 | if not (source_db_repo or target_db_repo): |
|
929 | 943 | h.flash(_('source_repo or target repo not found'), category='error') |
|
930 | 944 | raise HTTPFound( |
|
931 | 945 | h.route_path('pullrequest_new', repo_name=self.db_repo_name)) |
|
932 | 946 | |
|
933 | 947 | # re-check permissions again here |
|
934 | 948 | # source_repo we must have read permissions |
|
935 | 949 | |
|
936 | 950 | source_perm = HasRepoPermissionAny( |
|
937 | 951 | 'repository.read', 'repository.write', 'repository.admin')( |
|
938 | 952 | source_db_repo.repo_name) |
|
939 | 953 | if not source_perm: |
|
940 | 954 | msg = _('Not Enough permissions to source repo `{}`.'.format( |
|
941 | 955 | source_db_repo.repo_name)) |
|
942 | 956 | h.flash(msg, category='error') |
|
943 | 957 | # copy the args back to redirect |
|
944 | 958 | org_query = self.request.GET.mixed() |
|
945 | 959 | raise HTTPFound( |
|
946 | 960 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, |
|
947 | 961 | _query=org_query)) |
|
948 | 962 | |
|
949 | 963 | # target repo we must have read permissions, and also later on |
|
950 | 964 | # we want to check branch permissions here |
|
951 | 965 | target_perm = HasRepoPermissionAny( |
|
952 | 966 | 'repository.read', 'repository.write', 'repository.admin')( |
|
953 | 967 | target_db_repo.repo_name) |
|
954 | 968 | if not target_perm: |
|
955 | 969 | msg = _('Not Enough permissions to target repo `{}`.'.format( |
|
956 | 970 | target_db_repo.repo_name)) |
|
957 | 971 | h.flash(msg, category='error') |
|
958 | 972 | # copy the args back to redirect |
|
959 | 973 | org_query = self.request.GET.mixed() |
|
960 | 974 | raise HTTPFound( |
|
961 | 975 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, |
|
962 | 976 | _query=org_query)) |
|
963 | 977 | |
|
964 | 978 | source_scm = source_db_repo.scm_instance() |
|
965 | 979 | target_scm = target_db_repo.scm_instance() |
|
966 | 980 | |
|
967 | 981 | source_commit = source_scm.get_commit(source_ref.split(':')[-1]) |
|
968 | 982 | target_commit = target_scm.get_commit(target_ref.split(':')[-1]) |
|
969 | 983 | |
|
970 | 984 | ancestor = source_scm.get_common_ancestor( |
|
971 | 985 | source_commit.raw_id, target_commit.raw_id, target_scm) |
|
972 | 986 | |
|
973 | 987 | # recalculate target ref based on ancestor |
|
974 | 988 | target_ref_type, target_ref_name, __ = _form['target_ref'].split(':') |
|
975 | 989 | target_ref = ':'.join((target_ref_type, target_ref_name, ancestor)) |
|
976 | 990 | |
|
977 | 991 | get_default_reviewers_data, validate_default_reviewers = \ |
|
978 | 992 | PullRequestModel().get_reviewer_functions() |
|
979 | 993 | |
|
980 | 994 | # recalculate reviewers logic, to make sure we can validate this |
|
981 | 995 | reviewer_rules = get_default_reviewers_data( |
|
982 | 996 | self._rhodecode_db_user, source_db_repo, |
|
983 | 997 | source_commit, target_db_repo, target_commit) |
|
984 | 998 | |
|
985 | 999 | given_reviewers = _form['review_members'] |
|
986 | 1000 | reviewers = validate_default_reviewers( |
|
987 | 1001 | given_reviewers, reviewer_rules) |
|
988 | 1002 | |
|
989 | 1003 | pullrequest_title = _form['pullrequest_title'] |
|
990 | 1004 | title_source_ref = source_ref.split(':', 2)[1] |
|
991 | 1005 | if not pullrequest_title: |
|
992 | 1006 | pullrequest_title = PullRequestModel().generate_pullrequest_title( |
|
993 | 1007 | source=source_repo, |
|
994 | 1008 | source_ref=title_source_ref, |
|
995 | 1009 | target=target_repo |
|
996 | 1010 | ) |
|
997 | 1011 | |
|
998 | 1012 | description = _form['pullrequest_desc'] |
|
999 | 1013 | description_renderer = _form['description_renderer'] |
|
1000 | 1014 | |
|
1001 | 1015 | try: |
|
1002 | 1016 | pull_request = PullRequestModel().create( |
|
1003 | 1017 | created_by=self._rhodecode_user.user_id, |
|
1004 | 1018 | source_repo=source_repo, |
|
1005 | 1019 | source_ref=source_ref, |
|
1006 | 1020 | target_repo=target_repo, |
|
1007 | 1021 | target_ref=target_ref, |
|
1008 | 1022 | revisions=commit_ids, |
|
1009 | 1023 | reviewers=reviewers, |
|
1010 | 1024 | title=pullrequest_title, |
|
1011 | 1025 | description=description, |
|
1012 | 1026 | description_renderer=description_renderer, |
|
1013 | 1027 | reviewer_data=reviewer_rules, |
|
1014 | 1028 | auth_user=self._rhodecode_user |
|
1015 | 1029 | ) |
|
1016 | 1030 | Session().commit() |
|
1017 | 1031 | |
|
1018 | 1032 | h.flash(_('Successfully opened new pull request'), |
|
1019 | 1033 | category='success') |
|
1020 | 1034 | except Exception: |
|
1021 | 1035 | msg = _('Error occurred during creation of this pull request.') |
|
1022 | 1036 | log.exception(msg) |
|
1023 | 1037 | h.flash(msg, category='error') |
|
1024 | 1038 | |
|
1025 | 1039 | # copy the args back to redirect |
|
1026 | 1040 | org_query = self.request.GET.mixed() |
|
1027 | 1041 | raise HTTPFound( |
|
1028 | 1042 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, |
|
1029 | 1043 | _query=org_query)) |
|
1030 | 1044 | |
|
1031 | 1045 | raise HTTPFound( |
|
1032 | 1046 | h.route_path('pullrequest_show', repo_name=target_repo, |
|
1033 | 1047 | pull_request_id=pull_request.pull_request_id)) |
|
1034 | 1048 | |
|
1035 | 1049 | @LoginRequired() |
|
1036 | 1050 | @NotAnonymous() |
|
1037 | 1051 | @HasRepoPermissionAnyDecorator( |
|
1038 | 1052 | 'repository.read', 'repository.write', 'repository.admin') |
|
1039 | 1053 | @CSRFRequired() |
|
1040 | 1054 | @view_config( |
|
1041 | 1055 | route_name='pullrequest_update', request_method='POST', |
|
1042 | 1056 | renderer='json_ext') |
|
1043 | 1057 | def pull_request_update(self): |
|
1044 | 1058 | pull_request = PullRequest.get_or_404( |
|
1045 | 1059 | self.request.matchdict['pull_request_id']) |
|
1046 | 1060 | _ = self.request.translate |
|
1047 | 1061 | |
|
1048 | 1062 | self.load_default_context() |
|
1049 | 1063 | redirect_url = None |
|
1050 | 1064 | |
|
1051 | 1065 | if pull_request.is_closed(): |
|
1052 | 1066 | log.debug('update: forbidden because pull request is closed') |
|
1053 | 1067 | msg = _(u'Cannot update closed pull requests.') |
|
1054 | 1068 | h.flash(msg, category='error') |
|
1055 | 1069 | return {'response': True, |
|
1056 | 1070 | 'redirect_url': redirect_url} |
|
1057 | 1071 | |
|
1058 | 1072 | is_state_changing = pull_request.is_state_changing() |
|
1059 | 1073 | |
|
1060 | 1074 | # only owner or admin can update it |
|
1061 | 1075 | allowed_to_update = PullRequestModel().check_user_update( |
|
1062 | 1076 | pull_request, self._rhodecode_user) |
|
1063 | 1077 | if allowed_to_update: |
|
1064 | 1078 | controls = peppercorn.parse(self.request.POST.items()) |
|
1065 | 1079 | force_refresh = str2bool(self.request.POST.get('force_refresh')) |
|
1066 | 1080 | |
|
1067 | 1081 | if 'review_members' in controls: |
|
1068 | 1082 | self._update_reviewers( |
|
1069 | 1083 | pull_request, controls['review_members'], |
|
1070 | 1084 | pull_request.reviewer_data) |
|
1071 | 1085 | elif str2bool(self.request.POST.get('update_commits', 'false')): |
|
1072 | 1086 | if is_state_changing: |
|
1073 | 1087 | log.debug('commits update: forbidden because pull request is in state %s', |
|
1074 | 1088 | pull_request.pull_request_state) |
|
1075 | 1089 | msg = _(u'Cannot update pull requests commits in state other than `{}`. ' |
|
1076 | 1090 | u'Current state is: `{}`').format( |
|
1077 | 1091 | PullRequest.STATE_CREATED, pull_request.pull_request_state) |
|
1078 | 1092 | h.flash(msg, category='error') |
|
1079 | 1093 | return {'response': True, |
|
1080 | 1094 | 'redirect_url': redirect_url} |
|
1081 | 1095 | |
|
1082 | 1096 | self._update_commits(pull_request) |
|
1083 | 1097 | if force_refresh: |
|
1084 | 1098 | redirect_url = h.route_path( |
|
1085 | 1099 | 'pullrequest_show', repo_name=self.db_repo_name, |
|
1086 | 1100 | pull_request_id=pull_request.pull_request_id, |
|
1087 | 1101 | _query={"force_refresh": 1}) |
|
1088 | 1102 | elif str2bool(self.request.POST.get('edit_pull_request', 'false')): |
|
1089 | 1103 | self._edit_pull_request(pull_request) |
|
1090 | 1104 | else: |
|
1091 | 1105 | raise HTTPBadRequest() |
|
1092 | 1106 | |
|
1093 | 1107 | return {'response': True, |
|
1094 | 1108 | 'redirect_url': redirect_url} |
|
1095 | 1109 | raise HTTPForbidden() |
|
1096 | 1110 | |
|
1097 | 1111 | def _edit_pull_request(self, pull_request): |
|
1098 | 1112 | _ = self.request.translate |
|
1099 | 1113 | |
|
1100 | 1114 | try: |
|
1101 | 1115 | PullRequestModel().edit( |
|
1102 | 1116 | pull_request, |
|
1103 | 1117 | self.request.POST.get('title'), |
|
1104 | 1118 | self.request.POST.get('description'), |
|
1105 | 1119 | self.request.POST.get('description_renderer'), |
|
1106 | 1120 | self._rhodecode_user) |
|
1107 | 1121 | except ValueError: |
|
1108 | 1122 | msg = _(u'Cannot update closed pull requests.') |
|
1109 | 1123 | h.flash(msg, category='error') |
|
1110 | 1124 | return |
|
1111 | 1125 | else: |
|
1112 | 1126 | Session().commit() |
|
1113 | 1127 | |
|
1114 | 1128 | msg = _(u'Pull request title & description updated.') |
|
1115 | 1129 | h.flash(msg, category='success') |
|
1116 | 1130 | return |
|
1117 | 1131 | |
|
1118 | 1132 | def _update_commits(self, pull_request): |
|
1119 | 1133 | _ = self.request.translate |
|
1120 | 1134 | |
|
1121 | 1135 | with pull_request.set_state(PullRequest.STATE_UPDATING): |
|
1122 | 1136 | resp = PullRequestModel().update_commits( |
|
1123 | 1137 | pull_request, self._rhodecode_db_user) |
|
1124 | 1138 | |
|
1125 | 1139 | if resp.executed: |
|
1126 | 1140 | |
|
1127 | 1141 | if resp.target_changed and resp.source_changed: |
|
1128 | 1142 | changed = 'target and source repositories' |
|
1129 | 1143 | elif resp.target_changed and not resp.source_changed: |
|
1130 | 1144 | changed = 'target repository' |
|
1131 | 1145 | elif not resp.target_changed and resp.source_changed: |
|
1132 | 1146 | changed = 'source repository' |
|
1133 | 1147 | else: |
|
1134 | 1148 | changed = 'nothing' |
|
1135 | 1149 | |
|
1136 | 1150 | msg = _(u'Pull request updated to "{source_commit_id}" with ' |
|
1137 | 1151 | u'{count_added} added, {count_removed} removed commits. ' |
|
1138 | 1152 | u'Source of changes: {change_source}') |
|
1139 | 1153 | msg = msg.format( |
|
1140 | 1154 | source_commit_id=pull_request.source_ref_parts.commit_id, |
|
1141 | 1155 | count_added=len(resp.changes.added), |
|
1142 | 1156 | count_removed=len(resp.changes.removed), |
|
1143 | 1157 | change_source=changed) |
|
1144 | 1158 | h.flash(msg, category='success') |
|
1145 | 1159 | |
|
1146 | 1160 | channel = '/repo${}$/pr/{}'.format( |
|
1147 | 1161 | pull_request.target_repo.repo_name, pull_request.pull_request_id) |
|
1148 | 1162 | message = msg + ( |
|
1149 | 1163 | ' - <a onclick="window.location.reload()">' |
|
1150 | 1164 | '<strong>{}</strong></a>'.format(_('Reload page'))) |
|
1151 | 1165 | channelstream.post_message( |
|
1152 | 1166 | channel, message, self._rhodecode_user.username, |
|
1153 | 1167 | registry=self.request.registry) |
|
1154 | 1168 | else: |
|
1155 | 1169 | msg = PullRequestModel.UPDATE_STATUS_MESSAGES[resp.reason] |
|
1156 | 1170 | warning_reasons = [ |
|
1157 | 1171 | UpdateFailureReason.NO_CHANGE, |
|
1158 | 1172 | UpdateFailureReason.WRONG_REF_TYPE, |
|
1159 | 1173 | ] |
|
1160 | 1174 | category = 'warning' if resp.reason in warning_reasons else 'error' |
|
1161 | 1175 | h.flash(msg, category=category) |
|
1162 | 1176 | |
|
1163 | 1177 | @LoginRequired() |
|
1164 | 1178 | @NotAnonymous() |
|
1165 | 1179 | @HasRepoPermissionAnyDecorator( |
|
1166 | 1180 | 'repository.read', 'repository.write', 'repository.admin') |
|
1167 | 1181 | @CSRFRequired() |
|
1168 | 1182 | @view_config( |
|
1169 | 1183 | route_name='pullrequest_merge', request_method='POST', |
|
1170 | 1184 | renderer='json_ext') |
|
1171 | 1185 | def pull_request_merge(self): |
|
1172 | 1186 | """ |
|
1173 | 1187 | Merge will perform a server-side merge of the specified |
|
1174 | 1188 | pull request, if the pull request is approved and mergeable. |
|
1175 | 1189 | After successful merging, the pull request is automatically |
|
1176 | 1190 | closed, with a relevant comment. |
|
1177 | 1191 | """ |
|
1178 | 1192 | pull_request = PullRequest.get_or_404( |
|
1179 | 1193 | self.request.matchdict['pull_request_id']) |
|
1180 | 1194 | _ = self.request.translate |
|
1181 | 1195 | |
|
1182 | 1196 | if pull_request.is_state_changing(): |
|
1183 | 1197 | log.debug('show: forbidden because pull request is in state %s', |
|
1184 | 1198 | pull_request.pull_request_state) |
|
1185 | 1199 | msg = _(u'Cannot merge pull requests in state other than `{}`. ' |
|
1186 | 1200 | u'Current state is: `{}`').format(PullRequest.STATE_CREATED, |
|
1187 | 1201 | pull_request.pull_request_state) |
|
1188 | 1202 | h.flash(msg, category='error') |
|
1189 | 1203 | raise HTTPFound( |
|
1190 | 1204 | h.route_path('pullrequest_show', |
|
1191 | 1205 | repo_name=pull_request.target_repo.repo_name, |
|
1192 | 1206 | pull_request_id=pull_request.pull_request_id)) |
|
1193 | 1207 | |
|
1194 | 1208 | self.load_default_context() |
|
1195 | 1209 | |
|
1196 | 1210 | with pull_request.set_state(PullRequest.STATE_UPDATING): |
|
1197 | 1211 | check = MergeCheck.validate( |
|
1198 | 1212 | pull_request, auth_user=self._rhodecode_user, |
|
1199 | 1213 | translator=self.request.translate) |
|
1200 | 1214 | merge_possible = not check.failed |
|
1201 | 1215 | |
|
1202 | 1216 | for err_type, error_msg in check.errors: |
|
1203 | 1217 | h.flash(error_msg, category=err_type) |
|
1204 | 1218 | |
|
1205 | 1219 | if merge_possible: |
|
1206 | 1220 | log.debug("Pre-conditions checked, trying to merge.") |
|
1207 | 1221 | extras = vcs_operation_context( |
|
1208 | 1222 | self.request.environ, repo_name=pull_request.target_repo.repo_name, |
|
1209 | 1223 | username=self._rhodecode_db_user.username, action='push', |
|
1210 | 1224 | scm=pull_request.target_repo.repo_type) |
|
1211 | 1225 | with pull_request.set_state(PullRequest.STATE_UPDATING): |
|
1212 | 1226 | self._merge_pull_request( |
|
1213 | 1227 | pull_request, self._rhodecode_db_user, extras) |
|
1214 | 1228 | else: |
|
1215 | 1229 | log.debug("Pre-conditions failed, NOT merging.") |
|
1216 | 1230 | |
|
1217 | 1231 | raise HTTPFound( |
|
1218 | 1232 | h.route_path('pullrequest_show', |
|
1219 | 1233 | repo_name=pull_request.target_repo.repo_name, |
|
1220 | 1234 | pull_request_id=pull_request.pull_request_id)) |
|
1221 | 1235 | |
|
1222 | 1236 | def _merge_pull_request(self, pull_request, user, extras): |
|
1223 | 1237 | _ = self.request.translate |
|
1224 | 1238 | merge_resp = PullRequestModel().merge_repo(pull_request, user, extras=extras) |
|
1225 | 1239 | |
|
1226 | 1240 | if merge_resp.executed: |
|
1227 | 1241 | log.debug("The merge was successful, closing the pull request.") |
|
1228 | 1242 | PullRequestModel().close_pull_request( |
|
1229 | 1243 | pull_request.pull_request_id, user) |
|
1230 | 1244 | Session().commit() |
|
1231 | 1245 | msg = _('Pull request was successfully merged and closed.') |
|
1232 | 1246 | h.flash(msg, category='success') |
|
1233 | 1247 | else: |
|
1234 | 1248 | log.debug( |
|
1235 | 1249 | "The merge was not successful. Merge response: %s", merge_resp) |
|
1236 | 1250 | msg = merge_resp.merge_status_message |
|
1237 | 1251 | h.flash(msg, category='error') |
|
1238 | 1252 | |
|
1239 | 1253 | def _update_reviewers(self, pull_request, review_members, reviewer_rules): |
|
1240 | 1254 | _ = self.request.translate |
|
1241 | 1255 | |
|
1242 | 1256 | get_default_reviewers_data, validate_default_reviewers = \ |
|
1243 | 1257 | PullRequestModel().get_reviewer_functions() |
|
1244 | 1258 | |
|
1245 | 1259 | try: |
|
1246 | 1260 | reviewers = validate_default_reviewers(review_members, reviewer_rules) |
|
1247 | 1261 | except ValueError as e: |
|
1248 | 1262 | log.error('Reviewers Validation: {}'.format(e)) |
|
1249 | 1263 | h.flash(e, category='error') |
|
1250 | 1264 | return |
|
1251 | 1265 | |
|
1252 | 1266 | old_calculated_status = pull_request.calculated_review_status() |
|
1253 | 1267 | PullRequestModel().update_reviewers( |
|
1254 | 1268 | pull_request, reviewers, self._rhodecode_user) |
|
1255 | 1269 | h.flash(_('Pull request reviewers updated.'), category='success') |
|
1256 | 1270 | Session().commit() |
|
1257 | 1271 | |
|
1258 | 1272 | # trigger status changed if change in reviewers changes the status |
|
1259 | 1273 | calculated_status = pull_request.calculated_review_status() |
|
1260 | 1274 | if old_calculated_status != calculated_status: |
|
1261 | 1275 | PullRequestModel().trigger_pull_request_hook( |
|
1262 | 1276 | pull_request, self._rhodecode_user, 'review_status_change', |
|
1263 | 1277 | data={'status': calculated_status}) |
|
1264 | 1278 | |
|
1265 | 1279 | @LoginRequired() |
|
1266 | 1280 | @NotAnonymous() |
|
1267 | 1281 | @HasRepoPermissionAnyDecorator( |
|
1268 | 1282 | 'repository.read', 'repository.write', 'repository.admin') |
|
1269 | 1283 | @CSRFRequired() |
|
1270 | 1284 | @view_config( |
|
1271 | 1285 | route_name='pullrequest_delete', request_method='POST', |
|
1272 | 1286 | renderer='json_ext') |
|
1273 | 1287 | def pull_request_delete(self): |
|
1274 | 1288 | _ = self.request.translate |
|
1275 | 1289 | |
|
1276 | 1290 | pull_request = PullRequest.get_or_404( |
|
1277 | 1291 | self.request.matchdict['pull_request_id']) |
|
1278 | 1292 | self.load_default_context() |
|
1279 | 1293 | |
|
1280 | 1294 | pr_closed = pull_request.is_closed() |
|
1281 | 1295 | allowed_to_delete = PullRequestModel().check_user_delete( |
|
1282 | 1296 | pull_request, self._rhodecode_user) and not pr_closed |
|
1283 | 1297 | |
|
1284 | 1298 | # only owner can delete it ! |
|
1285 | 1299 | if allowed_to_delete: |
|
1286 | 1300 | PullRequestModel().delete(pull_request, self._rhodecode_user) |
|
1287 | 1301 | Session().commit() |
|
1288 | 1302 | h.flash(_('Successfully deleted pull request'), |
|
1289 | 1303 | category='success') |
|
1290 | 1304 | raise HTTPFound(h.route_path('pullrequest_show_all', |
|
1291 | 1305 | repo_name=self.db_repo_name)) |
|
1292 | 1306 | |
|
1293 | 1307 | log.warning('user %s tried to delete pull request without access', |
|
1294 | 1308 | self._rhodecode_user) |
|
1295 | 1309 | raise HTTPNotFound() |
|
1296 | 1310 | |
|
1297 | 1311 | @LoginRequired() |
|
1298 | 1312 | @NotAnonymous() |
|
1299 | 1313 | @HasRepoPermissionAnyDecorator( |
|
1300 | 1314 | 'repository.read', 'repository.write', 'repository.admin') |
|
1301 | 1315 | @CSRFRequired() |
|
1302 | 1316 | @view_config( |
|
1303 | 1317 | route_name='pullrequest_comment_create', request_method='POST', |
|
1304 | 1318 | renderer='json_ext') |
|
1305 | 1319 | def pull_request_comment_create(self): |
|
1306 | 1320 | _ = self.request.translate |
|
1307 | 1321 | |
|
1308 | 1322 | pull_request = PullRequest.get_or_404( |
|
1309 | 1323 | self.request.matchdict['pull_request_id']) |
|
1310 | 1324 | pull_request_id = pull_request.pull_request_id |
|
1311 | 1325 | |
|
1312 | 1326 | if pull_request.is_closed(): |
|
1313 | 1327 | log.debug('comment: forbidden because pull request is closed') |
|
1314 | 1328 | raise HTTPForbidden() |
|
1315 | 1329 | |
|
1316 | 1330 | allowed_to_comment = PullRequestModel().check_user_comment( |
|
1317 | 1331 | pull_request, self._rhodecode_user) |
|
1318 | 1332 | if not allowed_to_comment: |
|
1319 | 1333 | log.debug( |
|
1320 | 1334 | 'comment: forbidden because pull request is from forbidden repo') |
|
1321 | 1335 | raise HTTPForbidden() |
|
1322 | 1336 | |
|
1323 | 1337 | c = self.load_default_context() |
|
1324 | 1338 | |
|
1325 | 1339 | status = self.request.POST.get('changeset_status', None) |
|
1326 | 1340 | text = self.request.POST.get('text') |
|
1327 | 1341 | comment_type = self.request.POST.get('comment_type') |
|
1328 | 1342 | resolves_comment_id = self.request.POST.get('resolves_comment_id', None) |
|
1329 | 1343 | close_pull_request = self.request.POST.get('close_pull_request') |
|
1330 | 1344 | |
|
1331 | 1345 | # the logic here should work like following, if we submit close |
|
1332 | 1346 | # pr comment, use `close_pull_request_with_comment` function |
|
1333 | 1347 | # else handle regular comment logic |
|
1334 | 1348 | |
|
1335 | 1349 | if close_pull_request: |
|
1336 | 1350 | # only owner or admin or person with write permissions |
|
1337 | 1351 | allowed_to_close = PullRequestModel().check_user_update( |
|
1338 | 1352 | pull_request, self._rhodecode_user) |
|
1339 | 1353 | if not allowed_to_close: |
|
1340 | 1354 | log.debug('comment: forbidden because not allowed to close ' |
|
1341 | 1355 | 'pull request %s', pull_request_id) |
|
1342 | 1356 | raise HTTPForbidden() |
|
1343 | 1357 | |
|
1344 | 1358 | # This also triggers `review_status_change` |
|
1345 | 1359 | comment, status = PullRequestModel().close_pull_request_with_comment( |
|
1346 | 1360 | pull_request, self._rhodecode_user, self.db_repo, message=text, |
|
1347 | 1361 | auth_user=self._rhodecode_user) |
|
1348 | 1362 | Session().flush() |
|
1349 | 1363 | |
|
1350 | 1364 | PullRequestModel().trigger_pull_request_hook( |
|
1351 | 1365 | pull_request, self._rhodecode_user, 'comment', |
|
1352 | 1366 | data={'comment': comment}) |
|
1353 | 1367 | |
|
1354 | 1368 | else: |
|
1355 | 1369 | # regular comment case, could be inline, or one with status. |
|
1356 | 1370 | # for that one we check also permissions |
|
1357 | 1371 | |
|
1358 | 1372 | allowed_to_change_status = PullRequestModel().check_user_change_status( |
|
1359 | 1373 | pull_request, self._rhodecode_user) |
|
1360 | 1374 | |
|
1361 | 1375 | if status and allowed_to_change_status: |
|
1362 | 1376 | message = (_('Status change %(transition_icon)s %(status)s') |
|
1363 | 1377 | % {'transition_icon': '>', |
|
1364 | 1378 | 'status': ChangesetStatus.get_status_lbl(status)}) |
|
1365 | 1379 | text = text or message |
|
1366 | 1380 | |
|
1367 | 1381 | comment = CommentsModel().create( |
|
1368 | 1382 | text=text, |
|
1369 | 1383 | repo=self.db_repo.repo_id, |
|
1370 | 1384 | user=self._rhodecode_user.user_id, |
|
1371 | 1385 | pull_request=pull_request, |
|
1372 | 1386 | f_path=self.request.POST.get('f_path'), |
|
1373 | 1387 | line_no=self.request.POST.get('line'), |
|
1374 | 1388 | status_change=(ChangesetStatus.get_status_lbl(status) |
|
1375 | 1389 | if status and allowed_to_change_status else None), |
|
1376 | 1390 | status_change_type=(status |
|
1377 | 1391 | if status and allowed_to_change_status else None), |
|
1378 | 1392 | comment_type=comment_type, |
|
1379 | 1393 | resolves_comment_id=resolves_comment_id, |
|
1380 | 1394 | auth_user=self._rhodecode_user |
|
1381 | 1395 | ) |
|
1382 | 1396 | |
|
1383 | 1397 | if allowed_to_change_status: |
|
1384 | 1398 | # calculate old status before we change it |
|
1385 | 1399 | old_calculated_status = pull_request.calculated_review_status() |
|
1386 | 1400 | |
|
1387 | 1401 | # get status if set ! |
|
1388 | 1402 | if status: |
|
1389 | 1403 | ChangesetStatusModel().set_status( |
|
1390 | 1404 | self.db_repo.repo_id, |
|
1391 | 1405 | status, |
|
1392 | 1406 | self._rhodecode_user.user_id, |
|
1393 | 1407 | comment, |
|
1394 | 1408 | pull_request=pull_request |
|
1395 | 1409 | ) |
|
1396 | 1410 | |
|
1397 | 1411 | Session().flush() |
|
1398 | 1412 | # this is somehow required to get access to some relationship |
|
1399 | 1413 | # loaded on comment |
|
1400 | 1414 | Session().refresh(comment) |
|
1401 | 1415 | |
|
1402 | 1416 | PullRequestModel().trigger_pull_request_hook( |
|
1403 | 1417 | pull_request, self._rhodecode_user, 'comment', |
|
1404 | 1418 | data={'comment': comment}) |
|
1405 | 1419 | |
|
1406 | 1420 | # we now calculate the status of pull request, and based on that |
|
1407 | 1421 | # calculation we set the commits status |
|
1408 | 1422 | calculated_status = pull_request.calculated_review_status() |
|
1409 | 1423 | if old_calculated_status != calculated_status: |
|
1410 | 1424 | PullRequestModel().trigger_pull_request_hook( |
|
1411 | 1425 | pull_request, self._rhodecode_user, 'review_status_change', |
|
1412 | 1426 | data={'status': calculated_status}) |
|
1413 | 1427 | |
|
1414 | 1428 | Session().commit() |
|
1415 | 1429 | |
|
1416 | 1430 | data = { |
|
1417 | 1431 | 'target_id': h.safeid(h.safe_unicode( |
|
1418 | 1432 | self.request.POST.get('f_path'))), |
|
1419 | 1433 | } |
|
1420 | 1434 | if comment: |
|
1421 | 1435 | c.co = comment |
|
1422 | 1436 | rendered_comment = render( |
|
1423 | 1437 | 'rhodecode:templates/changeset/changeset_comment_block.mako', |
|
1424 | 1438 | self._get_template_context(c), self.request) |
|
1425 | 1439 | |
|
1426 | 1440 | data.update(comment.get_dict()) |
|
1427 | 1441 | data.update({'rendered_text': rendered_comment}) |
|
1428 | 1442 | |
|
1429 | 1443 | return data |
|
1430 | 1444 | |
|
1431 | 1445 | @LoginRequired() |
|
1432 | 1446 | @NotAnonymous() |
|
1433 | 1447 | @HasRepoPermissionAnyDecorator( |
|
1434 | 1448 | 'repository.read', 'repository.write', 'repository.admin') |
|
1435 | 1449 | @CSRFRequired() |
|
1436 | 1450 | @view_config( |
|
1437 | 1451 | route_name='pullrequest_comment_delete', request_method='POST', |
|
1438 | 1452 | renderer='json_ext') |
|
1439 | 1453 | def pull_request_comment_delete(self): |
|
1440 | 1454 | pull_request = PullRequest.get_or_404( |
|
1441 | 1455 | self.request.matchdict['pull_request_id']) |
|
1442 | 1456 | |
|
1443 | 1457 | comment = ChangesetComment.get_or_404( |
|
1444 | 1458 | self.request.matchdict['comment_id']) |
|
1445 | 1459 | comment_id = comment.comment_id |
|
1446 | 1460 | |
|
1447 | 1461 | if pull_request.is_closed(): |
|
1448 | 1462 | log.debug('comment: forbidden because pull request is closed') |
|
1449 | 1463 | raise HTTPForbidden() |
|
1450 | 1464 | |
|
1451 | 1465 | if not comment: |
|
1452 | 1466 | log.debug('Comment with id:%s not found, skipping', comment_id) |
|
1453 | 1467 | # comment already deleted in another call probably |
|
1454 | 1468 | return True |
|
1455 | 1469 | |
|
1456 | 1470 | if comment.pull_request.is_closed(): |
|
1457 | 1471 | # don't allow deleting comments on closed pull request |
|
1458 | 1472 | raise HTTPForbidden() |
|
1459 | 1473 | |
|
1460 | 1474 | is_repo_admin = h.HasRepoPermissionAny('repository.admin')(self.db_repo_name) |
|
1461 | 1475 | super_admin = h.HasPermissionAny('hg.admin')() |
|
1462 | 1476 | comment_owner = comment.author.user_id == self._rhodecode_user.user_id |
|
1463 | 1477 | is_repo_comment = comment.repo.repo_name == self.db_repo_name |
|
1464 | 1478 | comment_repo_admin = is_repo_admin and is_repo_comment |
|
1465 | 1479 | |
|
1466 | 1480 | if super_admin or comment_owner or comment_repo_admin: |
|
1467 | 1481 | old_calculated_status = comment.pull_request.calculated_review_status() |
|
1468 | 1482 | CommentsModel().delete(comment=comment, auth_user=self._rhodecode_user) |
|
1469 | 1483 | Session().commit() |
|
1470 | 1484 | calculated_status = comment.pull_request.calculated_review_status() |
|
1471 | 1485 | if old_calculated_status != calculated_status: |
|
1472 | 1486 | PullRequestModel().trigger_pull_request_hook( |
|
1473 | 1487 | comment.pull_request, self._rhodecode_user, 'review_status_change', |
|
1474 | 1488 | data={'status': calculated_status}) |
|
1475 | 1489 | return True |
|
1476 | 1490 | else: |
|
1477 | 1491 | log.warning('No permissions for user %s to delete comment_id: %s', |
|
1478 | 1492 | self._rhodecode_db_user, comment_id) |
|
1479 | 1493 | raise HTTPNotFound() |
@@ -1,5510 +1,5511 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 uuid |
|
33 | 33 | import warnings |
|
34 | 34 | import ipaddress |
|
35 | 35 | import functools |
|
36 | 36 | import traceback |
|
37 | 37 | import collections |
|
38 | 38 | |
|
39 | 39 | from sqlalchemy import ( |
|
40 | 40 | or_, and_, not_, func, cast, TypeDecorator, event, |
|
41 | 41 | Index, Sequence, UniqueConstraint, ForeignKey, CheckConstraint, Column, |
|
42 | 42 | Boolean, String, Unicode, UnicodeText, DateTime, Integer, LargeBinary, |
|
43 | 43 | Text, Float, PickleType, BigInteger) |
|
44 | 44 | from sqlalchemy.sql.expression import true, false, case |
|
45 | 45 | from sqlalchemy.sql.functions import coalesce, count # pragma: no cover |
|
46 | 46 | from sqlalchemy.orm import ( |
|
47 | 47 | relationship, joinedload, class_mapper, validates, aliased) |
|
48 | 48 | from sqlalchemy.ext.declarative import declared_attr |
|
49 | 49 | from sqlalchemy.ext.hybrid import hybrid_property |
|
50 | 50 | from sqlalchemy.exc import IntegrityError # pragma: no cover |
|
51 | 51 | from sqlalchemy.dialects.mysql import LONGTEXT |
|
52 | 52 | from zope.cachedescriptors.property import Lazy as LazyProperty |
|
53 | 53 | from pyramid import compat |
|
54 | 54 | from pyramid.threadlocal import get_current_request |
|
55 | 55 | from webhelpers2.text import remove_formatting |
|
56 | 56 | |
|
57 | 57 | from rhodecode.translation import _ |
|
58 | 58 | from rhodecode.lib.vcs import get_vcs_instance, VCSError |
|
59 | 59 | from rhodecode.lib.vcs.backends.base import EmptyCommit, Reference |
|
60 | 60 | from rhodecode.lib.utils2 import ( |
|
61 | 61 | str2bool, safe_str, get_commit_safe, safe_unicode, sha1_safe, |
|
62 | 62 | time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict, |
|
63 | 63 | glob2re, StrictAttributeDict, cleaned_uri, datetime_to_time, OrderedDefaultDict) |
|
64 | 64 | from rhodecode.lib.jsonalchemy import MutationObj, MutationList, JsonType, \ |
|
65 | 65 | JsonRaw |
|
66 | 66 | from rhodecode.lib.ext_json import json |
|
67 | 67 | from rhodecode.lib.caching_query import FromCache |
|
68 | 68 | from rhodecode.lib.encrypt import AESCipher, validate_and_get_enc_data |
|
69 | 69 | from rhodecode.lib.encrypt2 import Encryptor |
|
70 | 70 | from rhodecode.lib.exceptions import ( |
|
71 | 71 | ArtifactMetadataDuplicate, ArtifactMetadataBadValueType) |
|
72 | 72 | from rhodecode.model.meta import Base, Session |
|
73 | 73 | |
|
74 | 74 | URL_SEP = '/' |
|
75 | 75 | log = logging.getLogger(__name__) |
|
76 | 76 | |
|
77 | 77 | # ============================================================================= |
|
78 | 78 | # BASE CLASSES |
|
79 | 79 | # ============================================================================= |
|
80 | 80 | |
|
81 | 81 | # this is propagated from .ini file rhodecode.encrypted_values.secret or |
|
82 | 82 | # beaker.session.secret if first is not set. |
|
83 | 83 | # and initialized at environment.py |
|
84 | 84 | ENCRYPTION_KEY = None |
|
85 | 85 | |
|
86 | 86 | # used to sort permissions by types, '#' used here is not allowed to be in |
|
87 | 87 | # usernames, and it's very early in sorted string.printable table. |
|
88 | 88 | PERMISSION_TYPE_SORT = { |
|
89 | 89 | 'admin': '####', |
|
90 | 90 | 'write': '###', |
|
91 | 91 | 'read': '##', |
|
92 | 92 | 'none': '#', |
|
93 | 93 | } |
|
94 | 94 | |
|
95 | 95 | |
|
96 | 96 | def display_user_sort(obj): |
|
97 | 97 | """ |
|
98 | 98 | Sort function used to sort permissions in .permissions() function of |
|
99 | 99 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
100 | 100 | of all other resources |
|
101 | 101 | """ |
|
102 | 102 | |
|
103 | 103 | if obj.username == User.DEFAULT_USER: |
|
104 | 104 | return '#####' |
|
105 | 105 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
106 | 106 | return prefix + obj.username |
|
107 | 107 | |
|
108 | 108 | |
|
109 | 109 | def display_user_group_sort(obj): |
|
110 | 110 | """ |
|
111 | 111 | Sort function used to sort permissions in .permissions() function of |
|
112 | 112 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
113 | 113 | of all other resources |
|
114 | 114 | """ |
|
115 | 115 | |
|
116 | 116 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
117 | 117 | return prefix + obj.users_group_name |
|
118 | 118 | |
|
119 | 119 | |
|
120 | 120 | def _hash_key(k): |
|
121 | 121 | return sha1_safe(k) |
|
122 | 122 | |
|
123 | 123 | |
|
124 | 124 | def in_filter_generator(qry, items, limit=500): |
|
125 | 125 | """ |
|
126 | 126 | Splits IN() into multiple with OR |
|
127 | 127 | e.g.:: |
|
128 | 128 | cnt = Repository.query().filter( |
|
129 | 129 | or_( |
|
130 | 130 | *in_filter_generator(Repository.repo_id, range(100000)) |
|
131 | 131 | )).count() |
|
132 | 132 | """ |
|
133 | 133 | if not items: |
|
134 | 134 | # empty list will cause empty query which might cause security issues |
|
135 | 135 | # this can lead to hidden unpleasant results |
|
136 | 136 | items = [-1] |
|
137 | 137 | |
|
138 | 138 | parts = [] |
|
139 | 139 | for chunk in xrange(0, len(items), limit): |
|
140 | 140 | parts.append( |
|
141 | 141 | qry.in_(items[chunk: chunk + limit]) |
|
142 | 142 | ) |
|
143 | 143 | |
|
144 | 144 | return parts |
|
145 | 145 | |
|
146 | 146 | |
|
147 | 147 | base_table_args = { |
|
148 | 148 | 'extend_existing': True, |
|
149 | 149 | 'mysql_engine': 'InnoDB', |
|
150 | 150 | 'mysql_charset': 'utf8', |
|
151 | 151 | 'sqlite_autoincrement': True |
|
152 | 152 | } |
|
153 | 153 | |
|
154 | 154 | |
|
155 | 155 | class EncryptedTextValue(TypeDecorator): |
|
156 | 156 | """ |
|
157 | 157 | Special column for encrypted long text data, use like:: |
|
158 | 158 | |
|
159 | 159 | value = Column("encrypted_value", EncryptedValue(), nullable=False) |
|
160 | 160 | |
|
161 | 161 | This column is intelligent so if value is in unencrypted form it return |
|
162 | 162 | unencrypted form, but on save it always encrypts |
|
163 | 163 | """ |
|
164 | 164 | impl = Text |
|
165 | 165 | |
|
166 | 166 | def process_bind_param(self, value, dialect): |
|
167 | 167 | """ |
|
168 | 168 | Setter for storing value |
|
169 | 169 | """ |
|
170 | 170 | import rhodecode |
|
171 | 171 | if not value: |
|
172 | 172 | return value |
|
173 | 173 | |
|
174 | 174 | # protect against double encrypting if values is already encrypted |
|
175 | 175 | if value.startswith('enc$aes$') \ |
|
176 | 176 | or value.startswith('enc$aes_hmac$') \ |
|
177 | 177 | or value.startswith('enc2$'): |
|
178 | 178 | raise ValueError('value needs to be in unencrypted format, ' |
|
179 | 179 | 'ie. not starting with enc$ or enc2$') |
|
180 | 180 | |
|
181 | 181 | algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes' |
|
182 | 182 | if algo == 'aes': |
|
183 | 183 | return 'enc$aes_hmac$%s' % AESCipher(ENCRYPTION_KEY, hmac=True).encrypt(value) |
|
184 | 184 | elif algo == 'fernet': |
|
185 | 185 | return Encryptor(ENCRYPTION_KEY).encrypt(value) |
|
186 | 186 | else: |
|
187 | 187 | ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo)) |
|
188 | 188 | |
|
189 | 189 | def process_result_value(self, value, dialect): |
|
190 | 190 | """ |
|
191 | 191 | Getter for retrieving value |
|
192 | 192 | """ |
|
193 | 193 | |
|
194 | 194 | import rhodecode |
|
195 | 195 | if not value: |
|
196 | 196 | return value |
|
197 | 197 | |
|
198 | 198 | algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes' |
|
199 | 199 | enc_strict_mode = str2bool(rhodecode.CONFIG.get('rhodecode.encrypted_values.strict') or True) |
|
200 | 200 | if algo == 'aes': |
|
201 | 201 | decrypted_data = validate_and_get_enc_data(value, ENCRYPTION_KEY, enc_strict_mode) |
|
202 | 202 | elif algo == 'fernet': |
|
203 | 203 | return Encryptor(ENCRYPTION_KEY).decrypt(value) |
|
204 | 204 | else: |
|
205 | 205 | ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo)) |
|
206 | 206 | return decrypted_data |
|
207 | 207 | |
|
208 | 208 | |
|
209 | 209 | class BaseModel(object): |
|
210 | 210 | """ |
|
211 | 211 | Base Model for all classes |
|
212 | 212 | """ |
|
213 | 213 | |
|
214 | 214 | @classmethod |
|
215 | 215 | def _get_keys(cls): |
|
216 | 216 | """return column names for this model """ |
|
217 | 217 | return class_mapper(cls).c.keys() |
|
218 | 218 | |
|
219 | 219 | def get_dict(self): |
|
220 | 220 | """ |
|
221 | 221 | return dict with keys and values corresponding |
|
222 | 222 | to this model data """ |
|
223 | 223 | |
|
224 | 224 | d = {} |
|
225 | 225 | for k in self._get_keys(): |
|
226 | 226 | d[k] = getattr(self, k) |
|
227 | 227 | |
|
228 | 228 | # also use __json__() if present to get additional fields |
|
229 | 229 | _json_attr = getattr(self, '__json__', None) |
|
230 | 230 | if _json_attr: |
|
231 | 231 | # update with attributes from __json__ |
|
232 | 232 | if callable(_json_attr): |
|
233 | 233 | _json_attr = _json_attr() |
|
234 | 234 | for k, val in _json_attr.iteritems(): |
|
235 | 235 | d[k] = val |
|
236 | 236 | return d |
|
237 | 237 | |
|
238 | 238 | def get_appstruct(self): |
|
239 | 239 | """return list with keys and values tuples corresponding |
|
240 | 240 | to this model data """ |
|
241 | 241 | |
|
242 | 242 | lst = [] |
|
243 | 243 | for k in self._get_keys(): |
|
244 | 244 | lst.append((k, getattr(self, k),)) |
|
245 | 245 | return lst |
|
246 | 246 | |
|
247 | 247 | def populate_obj(self, populate_dict): |
|
248 | 248 | """populate model with data from given populate_dict""" |
|
249 | 249 | |
|
250 | 250 | for k in self._get_keys(): |
|
251 | 251 | if k in populate_dict: |
|
252 | 252 | setattr(self, k, populate_dict[k]) |
|
253 | 253 | |
|
254 | 254 | @classmethod |
|
255 | 255 | def query(cls): |
|
256 | 256 | return Session().query(cls) |
|
257 | 257 | |
|
258 | 258 | @classmethod |
|
259 | 259 | def get(cls, id_): |
|
260 | 260 | if id_: |
|
261 | 261 | return cls.query().get(id_) |
|
262 | 262 | |
|
263 | 263 | @classmethod |
|
264 | 264 | def get_or_404(cls, id_): |
|
265 | 265 | from pyramid.httpexceptions import HTTPNotFound |
|
266 | 266 | |
|
267 | 267 | try: |
|
268 | 268 | id_ = int(id_) |
|
269 | 269 | except (TypeError, ValueError): |
|
270 | 270 | raise HTTPNotFound() |
|
271 | 271 | |
|
272 | 272 | res = cls.query().get(id_) |
|
273 | 273 | if not res: |
|
274 | 274 | raise HTTPNotFound() |
|
275 | 275 | return res |
|
276 | 276 | |
|
277 | 277 | @classmethod |
|
278 | 278 | def getAll(cls): |
|
279 | 279 | # deprecated and left for backward compatibility |
|
280 | 280 | return cls.get_all() |
|
281 | 281 | |
|
282 | 282 | @classmethod |
|
283 | 283 | def get_all(cls): |
|
284 | 284 | return cls.query().all() |
|
285 | 285 | |
|
286 | 286 | @classmethod |
|
287 | 287 | def delete(cls, id_): |
|
288 | 288 | obj = cls.query().get(id_) |
|
289 | 289 | Session().delete(obj) |
|
290 | 290 | |
|
291 | 291 | @classmethod |
|
292 | 292 | def identity_cache(cls, session, attr_name, value): |
|
293 | 293 | exist_in_session = [] |
|
294 | 294 | for (item_cls, pkey), instance in session.identity_map.items(): |
|
295 | 295 | if cls == item_cls and getattr(instance, attr_name) == value: |
|
296 | 296 | exist_in_session.append(instance) |
|
297 | 297 | if exist_in_session: |
|
298 | 298 | if len(exist_in_session) == 1: |
|
299 | 299 | return exist_in_session[0] |
|
300 | 300 | log.exception( |
|
301 | 301 | 'multiple objects with attr %s and ' |
|
302 | 302 | 'value %s found with same name: %r', |
|
303 | 303 | attr_name, value, exist_in_session) |
|
304 | 304 | |
|
305 | 305 | def __repr__(self): |
|
306 | 306 | if hasattr(self, '__unicode__'): |
|
307 | 307 | # python repr needs to return str |
|
308 | 308 | try: |
|
309 | 309 | return safe_str(self.__unicode__()) |
|
310 | 310 | except UnicodeDecodeError: |
|
311 | 311 | pass |
|
312 | 312 | return '<DB:%s>' % (self.__class__.__name__) |
|
313 | 313 | |
|
314 | 314 | |
|
315 | 315 | class RhodeCodeSetting(Base, BaseModel): |
|
316 | 316 | __tablename__ = 'rhodecode_settings' |
|
317 | 317 | __table_args__ = ( |
|
318 | 318 | UniqueConstraint('app_settings_name'), |
|
319 | 319 | base_table_args |
|
320 | 320 | ) |
|
321 | 321 | |
|
322 | 322 | SETTINGS_TYPES = { |
|
323 | 323 | 'str': safe_str, |
|
324 | 324 | 'int': safe_int, |
|
325 | 325 | 'unicode': safe_unicode, |
|
326 | 326 | 'bool': str2bool, |
|
327 | 327 | 'list': functools.partial(aslist, sep=',') |
|
328 | 328 | } |
|
329 | 329 | DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' |
|
330 | 330 | GLOBAL_CONF_KEY = 'app_settings' |
|
331 | 331 | |
|
332 | 332 | app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
333 | 333 | app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None) |
|
334 | 334 | _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None) |
|
335 | 335 | _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None) |
|
336 | 336 | |
|
337 | 337 | def __init__(self, key='', val='', type='unicode'): |
|
338 | 338 | self.app_settings_name = key |
|
339 | 339 | self.app_settings_type = type |
|
340 | 340 | self.app_settings_value = val |
|
341 | 341 | |
|
342 | 342 | @validates('_app_settings_value') |
|
343 | 343 | def validate_settings_value(self, key, val): |
|
344 | 344 | assert type(val) == unicode |
|
345 | 345 | return val |
|
346 | 346 | |
|
347 | 347 | @hybrid_property |
|
348 | 348 | def app_settings_value(self): |
|
349 | 349 | v = self._app_settings_value |
|
350 | 350 | _type = self.app_settings_type |
|
351 | 351 | if _type: |
|
352 | 352 | _type = self.app_settings_type.split('.')[0] |
|
353 | 353 | # decode the encrypted value |
|
354 | 354 | if 'encrypted' in self.app_settings_type: |
|
355 | 355 | cipher = EncryptedTextValue() |
|
356 | 356 | v = safe_unicode(cipher.process_result_value(v, None)) |
|
357 | 357 | |
|
358 | 358 | converter = self.SETTINGS_TYPES.get(_type) or \ |
|
359 | 359 | self.SETTINGS_TYPES['unicode'] |
|
360 | 360 | return converter(v) |
|
361 | 361 | |
|
362 | 362 | @app_settings_value.setter |
|
363 | 363 | def app_settings_value(self, val): |
|
364 | 364 | """ |
|
365 | 365 | Setter that will always make sure we use unicode in app_settings_value |
|
366 | 366 | |
|
367 | 367 | :param val: |
|
368 | 368 | """ |
|
369 | 369 | val = safe_unicode(val) |
|
370 | 370 | # encode the encrypted value |
|
371 | 371 | if 'encrypted' in self.app_settings_type: |
|
372 | 372 | cipher = EncryptedTextValue() |
|
373 | 373 | val = safe_unicode(cipher.process_bind_param(val, None)) |
|
374 | 374 | self._app_settings_value = val |
|
375 | 375 | |
|
376 | 376 | @hybrid_property |
|
377 | 377 | def app_settings_type(self): |
|
378 | 378 | return self._app_settings_type |
|
379 | 379 | |
|
380 | 380 | @app_settings_type.setter |
|
381 | 381 | def app_settings_type(self, val): |
|
382 | 382 | if val.split('.')[0] not in self.SETTINGS_TYPES: |
|
383 | 383 | raise Exception('type must be one of %s got %s' |
|
384 | 384 | % (self.SETTINGS_TYPES.keys(), val)) |
|
385 | 385 | self._app_settings_type = val |
|
386 | 386 | |
|
387 | 387 | @classmethod |
|
388 | 388 | def get_by_prefix(cls, prefix): |
|
389 | 389 | return RhodeCodeSetting.query()\ |
|
390 | 390 | .filter(RhodeCodeSetting.app_settings_name.startswith(prefix))\ |
|
391 | 391 | .all() |
|
392 | 392 | |
|
393 | 393 | def __unicode__(self): |
|
394 | 394 | return u"<%s('%s:%s[%s]')>" % ( |
|
395 | 395 | self.__class__.__name__, |
|
396 | 396 | self.app_settings_name, self.app_settings_value, |
|
397 | 397 | self.app_settings_type |
|
398 | 398 | ) |
|
399 | 399 | |
|
400 | 400 | |
|
401 | 401 | class RhodeCodeUi(Base, BaseModel): |
|
402 | 402 | __tablename__ = 'rhodecode_ui' |
|
403 | 403 | __table_args__ = ( |
|
404 | 404 | UniqueConstraint('ui_key'), |
|
405 | 405 | base_table_args |
|
406 | 406 | ) |
|
407 | 407 | |
|
408 | 408 | HOOK_REPO_SIZE = 'changegroup.repo_size' |
|
409 | 409 | # HG |
|
410 | 410 | HOOK_PRE_PULL = 'preoutgoing.pre_pull' |
|
411 | 411 | HOOK_PULL = 'outgoing.pull_logger' |
|
412 | 412 | HOOK_PRE_PUSH = 'prechangegroup.pre_push' |
|
413 | 413 | HOOK_PRETX_PUSH = 'pretxnchangegroup.pre_push' |
|
414 | 414 | HOOK_PUSH = 'changegroup.push_logger' |
|
415 | 415 | HOOK_PUSH_KEY = 'pushkey.key_push' |
|
416 | 416 | |
|
417 | 417 | HOOKS_BUILTIN = [ |
|
418 | 418 | HOOK_PRE_PULL, |
|
419 | 419 | HOOK_PULL, |
|
420 | 420 | HOOK_PRE_PUSH, |
|
421 | 421 | HOOK_PRETX_PUSH, |
|
422 | 422 | HOOK_PUSH, |
|
423 | 423 | HOOK_PUSH_KEY, |
|
424 | 424 | ] |
|
425 | 425 | |
|
426 | 426 | # TODO: johbo: Unify way how hooks are configured for git and hg, |
|
427 | 427 | # git part is currently hardcoded. |
|
428 | 428 | |
|
429 | 429 | # SVN PATTERNS |
|
430 | 430 | SVN_BRANCH_ID = 'vcs_svn_branch' |
|
431 | 431 | SVN_TAG_ID = 'vcs_svn_tag' |
|
432 | 432 | |
|
433 | 433 | ui_id = Column( |
|
434 | 434 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
435 | 435 | primary_key=True) |
|
436 | 436 | ui_section = Column( |
|
437 | 437 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
438 | 438 | ui_key = Column( |
|
439 | 439 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
440 | 440 | ui_value = Column( |
|
441 | 441 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
442 | 442 | ui_active = Column( |
|
443 | 443 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
444 | 444 | |
|
445 | 445 | def __repr__(self): |
|
446 | 446 | return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section, |
|
447 | 447 | self.ui_key, self.ui_value) |
|
448 | 448 | |
|
449 | 449 | |
|
450 | 450 | class RepoRhodeCodeSetting(Base, BaseModel): |
|
451 | 451 | __tablename__ = 'repo_rhodecode_settings' |
|
452 | 452 | __table_args__ = ( |
|
453 | 453 | UniqueConstraint( |
|
454 | 454 | 'app_settings_name', 'repository_id', |
|
455 | 455 | name='uq_repo_rhodecode_setting_name_repo_id'), |
|
456 | 456 | base_table_args |
|
457 | 457 | ) |
|
458 | 458 | |
|
459 | 459 | repository_id = Column( |
|
460 | 460 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
461 | 461 | nullable=False) |
|
462 | 462 | app_settings_id = Column( |
|
463 | 463 | "app_settings_id", Integer(), nullable=False, unique=True, |
|
464 | 464 | default=None, primary_key=True) |
|
465 | 465 | app_settings_name = Column( |
|
466 | 466 | "app_settings_name", String(255), nullable=True, unique=None, |
|
467 | 467 | default=None) |
|
468 | 468 | _app_settings_value = Column( |
|
469 | 469 | "app_settings_value", String(4096), nullable=True, unique=None, |
|
470 | 470 | default=None) |
|
471 | 471 | _app_settings_type = Column( |
|
472 | 472 | "app_settings_type", String(255), nullable=True, unique=None, |
|
473 | 473 | default=None) |
|
474 | 474 | |
|
475 | 475 | repository = relationship('Repository') |
|
476 | 476 | |
|
477 | 477 | def __init__(self, repository_id, key='', val='', type='unicode'): |
|
478 | 478 | self.repository_id = repository_id |
|
479 | 479 | self.app_settings_name = key |
|
480 | 480 | self.app_settings_type = type |
|
481 | 481 | self.app_settings_value = val |
|
482 | 482 | |
|
483 | 483 | @validates('_app_settings_value') |
|
484 | 484 | def validate_settings_value(self, key, val): |
|
485 | 485 | assert type(val) == unicode |
|
486 | 486 | return val |
|
487 | 487 | |
|
488 | 488 | @hybrid_property |
|
489 | 489 | def app_settings_value(self): |
|
490 | 490 | v = self._app_settings_value |
|
491 | 491 | type_ = self.app_settings_type |
|
492 | 492 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
493 | 493 | converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode'] |
|
494 | 494 | return converter(v) |
|
495 | 495 | |
|
496 | 496 | @app_settings_value.setter |
|
497 | 497 | def app_settings_value(self, val): |
|
498 | 498 | """ |
|
499 | 499 | Setter that will always make sure we use unicode in app_settings_value |
|
500 | 500 | |
|
501 | 501 | :param val: |
|
502 | 502 | """ |
|
503 | 503 | self._app_settings_value = safe_unicode(val) |
|
504 | 504 | |
|
505 | 505 | @hybrid_property |
|
506 | 506 | def app_settings_type(self): |
|
507 | 507 | return self._app_settings_type |
|
508 | 508 | |
|
509 | 509 | @app_settings_type.setter |
|
510 | 510 | def app_settings_type(self, val): |
|
511 | 511 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
512 | 512 | if val not in SETTINGS_TYPES: |
|
513 | 513 | raise Exception('type must be one of %s got %s' |
|
514 | 514 | % (SETTINGS_TYPES.keys(), val)) |
|
515 | 515 | self._app_settings_type = val |
|
516 | 516 | |
|
517 | 517 | def __unicode__(self): |
|
518 | 518 | return u"<%s('%s:%s:%s[%s]')>" % ( |
|
519 | 519 | self.__class__.__name__, self.repository.repo_name, |
|
520 | 520 | self.app_settings_name, self.app_settings_value, |
|
521 | 521 | self.app_settings_type |
|
522 | 522 | ) |
|
523 | 523 | |
|
524 | 524 | |
|
525 | 525 | class RepoRhodeCodeUi(Base, BaseModel): |
|
526 | 526 | __tablename__ = 'repo_rhodecode_ui' |
|
527 | 527 | __table_args__ = ( |
|
528 | 528 | UniqueConstraint( |
|
529 | 529 | 'repository_id', 'ui_section', 'ui_key', |
|
530 | 530 | name='uq_repo_rhodecode_ui_repository_id_section_key'), |
|
531 | 531 | base_table_args |
|
532 | 532 | ) |
|
533 | 533 | |
|
534 | 534 | repository_id = Column( |
|
535 | 535 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
536 | 536 | nullable=False) |
|
537 | 537 | ui_id = Column( |
|
538 | 538 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
539 | 539 | primary_key=True) |
|
540 | 540 | ui_section = Column( |
|
541 | 541 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
542 | 542 | ui_key = Column( |
|
543 | 543 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
544 | 544 | ui_value = Column( |
|
545 | 545 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
546 | 546 | ui_active = Column( |
|
547 | 547 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
548 | 548 | |
|
549 | 549 | repository = relationship('Repository') |
|
550 | 550 | |
|
551 | 551 | def __repr__(self): |
|
552 | 552 | return '<%s[%s:%s]%s=>%s]>' % ( |
|
553 | 553 | self.__class__.__name__, self.repository.repo_name, |
|
554 | 554 | self.ui_section, self.ui_key, self.ui_value) |
|
555 | 555 | |
|
556 | 556 | |
|
557 | 557 | class User(Base, BaseModel): |
|
558 | 558 | __tablename__ = 'users' |
|
559 | 559 | __table_args__ = ( |
|
560 | 560 | UniqueConstraint('username'), UniqueConstraint('email'), |
|
561 | 561 | Index('u_username_idx', 'username'), |
|
562 | 562 | Index('u_email_idx', 'email'), |
|
563 | 563 | base_table_args |
|
564 | 564 | ) |
|
565 | 565 | |
|
566 | 566 | DEFAULT_USER = 'default' |
|
567 | 567 | DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org' |
|
568 | 568 | DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}' |
|
569 | 569 | |
|
570 | 570 | user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
571 | 571 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
572 | 572 | password = Column("password", String(255), nullable=True, unique=None, default=None) |
|
573 | 573 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
574 | 574 | admin = Column("admin", Boolean(), nullable=True, unique=None, default=False) |
|
575 | 575 | name = Column("firstname", String(255), nullable=True, unique=None, default=None) |
|
576 | 576 | lastname = Column("lastname", String(255), nullable=True, unique=None, default=None) |
|
577 | 577 | _email = Column("email", String(255), nullable=True, unique=None, default=None) |
|
578 | 578 | last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
579 | 579 | last_activity = Column('last_activity', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
580 | 580 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
581 | 581 | |
|
582 | 582 | extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None) |
|
583 | 583 | extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None) |
|
584 | 584 | _api_key = Column("api_key", String(255), nullable=True, unique=None, default=None) |
|
585 | 585 | inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
586 | 586 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
587 | 587 | _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data |
|
588 | 588 | |
|
589 | 589 | user_log = relationship('UserLog') |
|
590 | 590 | user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all, delete-orphan') |
|
591 | 591 | |
|
592 | 592 | repositories = relationship('Repository') |
|
593 | 593 | repository_groups = relationship('RepoGroup') |
|
594 | 594 | user_groups = relationship('UserGroup') |
|
595 | 595 | |
|
596 | 596 | user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all') |
|
597 | 597 | followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all') |
|
598 | 598 | |
|
599 | 599 | repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all, delete-orphan') |
|
600 | 600 | repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all, delete-orphan') |
|
601 | 601 | user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all, delete-orphan') |
|
602 | 602 | |
|
603 | 603 | group_member = relationship('UserGroupMember', cascade='all') |
|
604 | 604 | |
|
605 | 605 | notifications = relationship('UserNotification', cascade='all') |
|
606 | 606 | # notifications assigned to this user |
|
607 | 607 | user_created_notifications = relationship('Notification', cascade='all') |
|
608 | 608 | # comments created by this user |
|
609 | 609 | user_comments = relationship('ChangesetComment', cascade='all') |
|
610 | 610 | # user profile extra info |
|
611 | 611 | user_emails = relationship('UserEmailMap', cascade='all') |
|
612 | 612 | user_ip_map = relationship('UserIpMap', cascade='all') |
|
613 | 613 | user_auth_tokens = relationship('UserApiKeys', cascade='all') |
|
614 | 614 | user_ssh_keys = relationship('UserSshKeys', cascade='all') |
|
615 | 615 | |
|
616 | 616 | # gists |
|
617 | 617 | user_gists = relationship('Gist', cascade='all') |
|
618 | 618 | # user pull requests |
|
619 | 619 | user_pull_requests = relationship('PullRequest', cascade='all') |
|
620 | 620 | # external identities |
|
621 | 621 | external_identities = relationship( |
|
622 | 622 | 'ExternalIdentity', |
|
623 | 623 | primaryjoin="User.user_id==ExternalIdentity.local_user_id", |
|
624 | 624 | cascade='all') |
|
625 | 625 | # review rules |
|
626 | 626 | user_review_rules = relationship('RepoReviewRuleUser', cascade='all') |
|
627 | 627 | |
|
628 | 628 | # artifacts owned |
|
629 | 629 | artifacts = relationship('FileStore', primaryjoin='FileStore.user_id==User.user_id') |
|
630 | 630 | |
|
631 | 631 | # no cascade, set NULL |
|
632 | 632 | scope_artifacts = relationship('FileStore', primaryjoin='FileStore.scope_user_id==User.user_id') |
|
633 | 633 | |
|
634 | 634 | def __unicode__(self): |
|
635 | 635 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
636 | 636 | self.user_id, self.username) |
|
637 | 637 | |
|
638 | 638 | @hybrid_property |
|
639 | 639 | def email(self): |
|
640 | 640 | return self._email |
|
641 | 641 | |
|
642 | 642 | @email.setter |
|
643 | 643 | def email(self, val): |
|
644 | 644 | self._email = val.lower() if val else None |
|
645 | 645 | |
|
646 | 646 | @hybrid_property |
|
647 | 647 | def first_name(self): |
|
648 | 648 | from rhodecode.lib import helpers as h |
|
649 | 649 | if self.name: |
|
650 | 650 | return h.escape(self.name) |
|
651 | 651 | return self.name |
|
652 | 652 | |
|
653 | 653 | @hybrid_property |
|
654 | 654 | def last_name(self): |
|
655 | 655 | from rhodecode.lib import helpers as h |
|
656 | 656 | if self.lastname: |
|
657 | 657 | return h.escape(self.lastname) |
|
658 | 658 | return self.lastname |
|
659 | 659 | |
|
660 | 660 | @hybrid_property |
|
661 | 661 | def api_key(self): |
|
662 | 662 | """ |
|
663 | 663 | Fetch if exist an auth-token with role ALL connected to this user |
|
664 | 664 | """ |
|
665 | 665 | user_auth_token = UserApiKeys.query()\ |
|
666 | 666 | .filter(UserApiKeys.user_id == self.user_id)\ |
|
667 | 667 | .filter(or_(UserApiKeys.expires == -1, |
|
668 | 668 | UserApiKeys.expires >= time.time()))\ |
|
669 | 669 | .filter(UserApiKeys.role == UserApiKeys.ROLE_ALL).first() |
|
670 | 670 | if user_auth_token: |
|
671 | 671 | user_auth_token = user_auth_token.api_key |
|
672 | 672 | |
|
673 | 673 | return user_auth_token |
|
674 | 674 | |
|
675 | 675 | @api_key.setter |
|
676 | 676 | def api_key(self, val): |
|
677 | 677 | # don't allow to set API key this is deprecated for now |
|
678 | 678 | self._api_key = None |
|
679 | 679 | |
|
680 | 680 | @property |
|
681 | 681 | def reviewer_pull_requests(self): |
|
682 | 682 | return PullRequestReviewers.query() \ |
|
683 | 683 | .options(joinedload(PullRequestReviewers.pull_request)) \ |
|
684 | 684 | .filter(PullRequestReviewers.user_id == self.user_id) \ |
|
685 | 685 | .all() |
|
686 | 686 | |
|
687 | 687 | @property |
|
688 | 688 | def firstname(self): |
|
689 | 689 | # alias for future |
|
690 | 690 | return self.name |
|
691 | 691 | |
|
692 | 692 | @property |
|
693 | 693 | def emails(self): |
|
694 | 694 | other = UserEmailMap.query()\ |
|
695 | 695 | .filter(UserEmailMap.user == self) \ |
|
696 | 696 | .order_by(UserEmailMap.email_id.asc()) \ |
|
697 | 697 | .all() |
|
698 | 698 | return [self.email] + [x.email for x in other] |
|
699 | 699 | |
|
700 | 700 | def emails_cached(self): |
|
701 | 701 | emails = UserEmailMap.query()\ |
|
702 | 702 | .filter(UserEmailMap.user == self) \ |
|
703 | 703 | .order_by(UserEmailMap.email_id.asc()) |
|
704 | 704 | |
|
705 | 705 | emails = emails.options( |
|
706 | 706 | FromCache("sql_cache_short", "get_user_{}_emails".format(self.user_id)) |
|
707 | 707 | ) |
|
708 | 708 | |
|
709 | 709 | return [self.email] + [x.email for x in emails] |
|
710 | 710 | |
|
711 | 711 | @property |
|
712 | 712 | def auth_tokens(self): |
|
713 | 713 | auth_tokens = self.get_auth_tokens() |
|
714 | 714 | return [x.api_key for x in auth_tokens] |
|
715 | 715 | |
|
716 | 716 | def get_auth_tokens(self): |
|
717 | 717 | return UserApiKeys.query()\ |
|
718 | 718 | .filter(UserApiKeys.user == self)\ |
|
719 | 719 | .order_by(UserApiKeys.user_api_key_id.asc())\ |
|
720 | 720 | .all() |
|
721 | 721 | |
|
722 | 722 | @LazyProperty |
|
723 | 723 | def feed_token(self): |
|
724 | 724 | return self.get_feed_token() |
|
725 | 725 | |
|
726 | 726 | def get_feed_token(self, cache=True): |
|
727 | 727 | feed_tokens = UserApiKeys.query()\ |
|
728 | 728 | .filter(UserApiKeys.user == self)\ |
|
729 | 729 | .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED) |
|
730 | 730 | if cache: |
|
731 | 731 | feed_tokens = feed_tokens.options( |
|
732 | 732 | FromCache("sql_cache_short", "get_user_feed_token_%s" % self.user_id)) |
|
733 | 733 | |
|
734 | 734 | feed_tokens = feed_tokens.all() |
|
735 | 735 | if feed_tokens: |
|
736 | 736 | return feed_tokens[0].api_key |
|
737 | 737 | return 'NO_FEED_TOKEN_AVAILABLE' |
|
738 | 738 | |
|
739 | 739 | @LazyProperty |
|
740 | 740 | def artifact_token(self): |
|
741 | 741 | return self.get_artifact_token() |
|
742 | 742 | |
|
743 | 743 | def get_artifact_token(self, cache=True): |
|
744 | 744 | artifacts_tokens = UserApiKeys.query()\ |
|
745 | 745 | .filter(UserApiKeys.user == self)\ |
|
746 | 746 | .filter(UserApiKeys.role == UserApiKeys.ROLE_ARTIFACT_DOWNLOAD) |
|
747 | 747 | if cache: |
|
748 | 748 | artifacts_tokens = artifacts_tokens.options( |
|
749 | 749 | FromCache("sql_cache_short", "get_user_artifact_token_%s" % self.user_id)) |
|
750 | 750 | |
|
751 | 751 | artifacts_tokens = artifacts_tokens.all() |
|
752 | 752 | if artifacts_tokens: |
|
753 | 753 | return artifacts_tokens[0].api_key |
|
754 | 754 | return 'NO_ARTIFACT_TOKEN_AVAILABLE' |
|
755 | 755 | |
|
756 | 756 | @classmethod |
|
757 | 757 | def get(cls, user_id, cache=False): |
|
758 | 758 | if not user_id: |
|
759 | 759 | return |
|
760 | 760 | |
|
761 | 761 | user = cls.query() |
|
762 | 762 | if cache: |
|
763 | 763 | user = user.options( |
|
764 | 764 | FromCache("sql_cache_short", "get_users_%s" % user_id)) |
|
765 | 765 | return user.get(user_id) |
|
766 | 766 | |
|
767 | 767 | @classmethod |
|
768 | 768 | def extra_valid_auth_tokens(cls, user, role=None): |
|
769 | 769 | tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\ |
|
770 | 770 | .filter(or_(UserApiKeys.expires == -1, |
|
771 | 771 | UserApiKeys.expires >= time.time())) |
|
772 | 772 | if role: |
|
773 | 773 | tokens = tokens.filter(or_(UserApiKeys.role == role, |
|
774 | 774 | UserApiKeys.role == UserApiKeys.ROLE_ALL)) |
|
775 | 775 | return tokens.all() |
|
776 | 776 | |
|
777 | 777 | def authenticate_by_token(self, auth_token, roles=None, scope_repo_id=None): |
|
778 | 778 | from rhodecode.lib import auth |
|
779 | 779 | |
|
780 | 780 | log.debug('Trying to authenticate user: %s via auth-token, ' |
|
781 | 781 | 'and roles: %s', self, roles) |
|
782 | 782 | |
|
783 | 783 | if not auth_token: |
|
784 | 784 | return False |
|
785 | 785 | |
|
786 | 786 | roles = (roles or []) + [UserApiKeys.ROLE_ALL] |
|
787 | 787 | tokens_q = UserApiKeys.query()\ |
|
788 | 788 | .filter(UserApiKeys.user_id == self.user_id)\ |
|
789 | 789 | .filter(or_(UserApiKeys.expires == -1, |
|
790 | 790 | UserApiKeys.expires >= time.time())) |
|
791 | 791 | |
|
792 | 792 | tokens_q = tokens_q.filter(UserApiKeys.role.in_(roles)) |
|
793 | 793 | |
|
794 | 794 | crypto_backend = auth.crypto_backend() |
|
795 | 795 | enc_token_map = {} |
|
796 | 796 | plain_token_map = {} |
|
797 | 797 | for token in tokens_q: |
|
798 | 798 | if token.api_key.startswith(crypto_backend.ENC_PREF): |
|
799 | 799 | enc_token_map[token.api_key] = token |
|
800 | 800 | else: |
|
801 | 801 | plain_token_map[token.api_key] = token |
|
802 | 802 | log.debug( |
|
803 | 803 | 'Found %s plain and %s encrypted tokens to check for authentication for this user', |
|
804 | 804 | len(plain_token_map), len(enc_token_map)) |
|
805 | 805 | |
|
806 | 806 | # plain token match comes first |
|
807 | 807 | match = plain_token_map.get(auth_token) |
|
808 | 808 | |
|
809 | 809 | # check encrypted tokens now |
|
810 | 810 | if not match: |
|
811 | 811 | for token_hash, token in enc_token_map.items(): |
|
812 | 812 | # NOTE(marcink): this is expensive to calculate, but most secure |
|
813 | 813 | if crypto_backend.hash_check(auth_token, token_hash): |
|
814 | 814 | match = token |
|
815 | 815 | break |
|
816 | 816 | |
|
817 | 817 | if match: |
|
818 | 818 | log.debug('Found matching token %s', match) |
|
819 | 819 | if match.repo_id: |
|
820 | 820 | log.debug('Found scope, checking for scope match of token %s', match) |
|
821 | 821 | if match.repo_id == scope_repo_id: |
|
822 | 822 | return True |
|
823 | 823 | else: |
|
824 | 824 | log.debug( |
|
825 | 825 | 'AUTH_TOKEN: scope mismatch, token has a set repo scope: %s, ' |
|
826 | 826 | 'and calling scope is:%s, skipping further checks', |
|
827 | 827 | match.repo, scope_repo_id) |
|
828 | 828 | return False |
|
829 | 829 | else: |
|
830 | 830 | return True |
|
831 | 831 | |
|
832 | 832 | return False |
|
833 | 833 | |
|
834 | 834 | @property |
|
835 | 835 | def ip_addresses(self): |
|
836 | 836 | ret = UserIpMap.query().filter(UserIpMap.user == self).all() |
|
837 | 837 | return [x.ip_addr for x in ret] |
|
838 | 838 | |
|
839 | 839 | @property |
|
840 | 840 | def username_and_name(self): |
|
841 | 841 | return '%s (%s %s)' % (self.username, self.first_name, self.last_name) |
|
842 | 842 | |
|
843 | 843 | @property |
|
844 | 844 | def username_or_name_or_email(self): |
|
845 | 845 | full_name = self.full_name if self.full_name is not ' ' else None |
|
846 | 846 | return self.username or full_name or self.email |
|
847 | 847 | |
|
848 | 848 | @property |
|
849 | 849 | def full_name(self): |
|
850 | 850 | return '%s %s' % (self.first_name, self.last_name) |
|
851 | 851 | |
|
852 | 852 | @property |
|
853 | 853 | def full_name_or_username(self): |
|
854 | 854 | return ('%s %s' % (self.first_name, self.last_name) |
|
855 | 855 | if (self.first_name and self.last_name) else self.username) |
|
856 | 856 | |
|
857 | 857 | @property |
|
858 | 858 | def full_contact(self): |
|
859 | 859 | return '%s %s <%s>' % (self.first_name, self.last_name, self.email) |
|
860 | 860 | |
|
861 | 861 | @property |
|
862 | 862 | def short_contact(self): |
|
863 | 863 | return '%s %s' % (self.first_name, self.last_name) |
|
864 | 864 | |
|
865 | 865 | @property |
|
866 | 866 | def is_admin(self): |
|
867 | 867 | return self.admin |
|
868 | 868 | |
|
869 | 869 | @property |
|
870 | 870 | def language(self): |
|
871 | 871 | return self.user_data.get('language') |
|
872 | 872 | |
|
873 | 873 | def AuthUser(self, **kwargs): |
|
874 | 874 | """ |
|
875 | 875 | Returns instance of AuthUser for this user |
|
876 | 876 | """ |
|
877 | 877 | from rhodecode.lib.auth import AuthUser |
|
878 | 878 | return AuthUser(user_id=self.user_id, username=self.username, **kwargs) |
|
879 | 879 | |
|
880 | 880 | @hybrid_property |
|
881 | 881 | def user_data(self): |
|
882 | 882 | if not self._user_data: |
|
883 | 883 | return {} |
|
884 | 884 | |
|
885 | 885 | try: |
|
886 | 886 | return json.loads(self._user_data) |
|
887 | 887 | except TypeError: |
|
888 | 888 | return {} |
|
889 | 889 | |
|
890 | 890 | @user_data.setter |
|
891 | 891 | def user_data(self, val): |
|
892 | 892 | if not isinstance(val, dict): |
|
893 | 893 | raise Exception('user_data must be dict, got %s' % type(val)) |
|
894 | 894 | try: |
|
895 | 895 | self._user_data = json.dumps(val) |
|
896 | 896 | except Exception: |
|
897 | 897 | log.error(traceback.format_exc()) |
|
898 | 898 | |
|
899 | 899 | @classmethod |
|
900 | 900 | def get_by_username(cls, username, case_insensitive=False, |
|
901 | 901 | cache=False, identity_cache=False): |
|
902 | 902 | session = Session() |
|
903 | 903 | |
|
904 | 904 | if case_insensitive: |
|
905 | 905 | q = cls.query().filter( |
|
906 | 906 | func.lower(cls.username) == func.lower(username)) |
|
907 | 907 | else: |
|
908 | 908 | q = cls.query().filter(cls.username == username) |
|
909 | 909 | |
|
910 | 910 | if cache: |
|
911 | 911 | if identity_cache: |
|
912 | 912 | val = cls.identity_cache(session, 'username', username) |
|
913 | 913 | if val: |
|
914 | 914 | return val |
|
915 | 915 | else: |
|
916 | 916 | cache_key = "get_user_by_name_%s" % _hash_key(username) |
|
917 | 917 | q = q.options( |
|
918 | 918 | FromCache("sql_cache_short", cache_key)) |
|
919 | 919 | |
|
920 | 920 | return q.scalar() |
|
921 | 921 | |
|
922 | 922 | @classmethod |
|
923 | 923 | def get_by_auth_token(cls, auth_token, cache=False): |
|
924 | 924 | q = UserApiKeys.query()\ |
|
925 | 925 | .filter(UserApiKeys.api_key == auth_token)\ |
|
926 | 926 | .filter(or_(UserApiKeys.expires == -1, |
|
927 | 927 | UserApiKeys.expires >= time.time())) |
|
928 | 928 | if cache: |
|
929 | 929 | q = q.options( |
|
930 | 930 | FromCache("sql_cache_short", "get_auth_token_%s" % auth_token)) |
|
931 | 931 | |
|
932 | 932 | match = q.first() |
|
933 | 933 | if match: |
|
934 | 934 | return match.user |
|
935 | 935 | |
|
936 | 936 | @classmethod |
|
937 | 937 | def get_by_email(cls, email, case_insensitive=False, cache=False): |
|
938 | 938 | |
|
939 | 939 | if case_insensitive: |
|
940 | 940 | q = cls.query().filter(func.lower(cls.email) == func.lower(email)) |
|
941 | 941 | |
|
942 | 942 | else: |
|
943 | 943 | q = cls.query().filter(cls.email == email) |
|
944 | 944 | |
|
945 | 945 | email_key = _hash_key(email) |
|
946 | 946 | if cache: |
|
947 | 947 | q = q.options( |
|
948 | 948 | FromCache("sql_cache_short", "get_email_key_%s" % email_key)) |
|
949 | 949 | |
|
950 | 950 | ret = q.scalar() |
|
951 | 951 | if ret is None: |
|
952 | 952 | q = UserEmailMap.query() |
|
953 | 953 | # try fetching in alternate email map |
|
954 | 954 | if case_insensitive: |
|
955 | 955 | q = q.filter(func.lower(UserEmailMap.email) == func.lower(email)) |
|
956 | 956 | else: |
|
957 | 957 | q = q.filter(UserEmailMap.email == email) |
|
958 | 958 | q = q.options(joinedload(UserEmailMap.user)) |
|
959 | 959 | if cache: |
|
960 | 960 | q = q.options( |
|
961 | 961 | FromCache("sql_cache_short", "get_email_map_key_%s" % email_key)) |
|
962 | 962 | ret = getattr(q.scalar(), 'user', None) |
|
963 | 963 | |
|
964 | 964 | return ret |
|
965 | 965 | |
|
966 | 966 | @classmethod |
|
967 | 967 | def get_from_cs_author(cls, author): |
|
968 | 968 | """ |
|
969 | 969 | Tries to get User objects out of commit author string |
|
970 | 970 | |
|
971 | 971 | :param author: |
|
972 | 972 | """ |
|
973 | 973 | from rhodecode.lib.helpers import email, author_name |
|
974 | 974 | # Valid email in the attribute passed, see if they're in the system |
|
975 | 975 | _email = email(author) |
|
976 | 976 | if _email: |
|
977 | 977 | user = cls.get_by_email(_email, case_insensitive=True) |
|
978 | 978 | if user: |
|
979 | 979 | return user |
|
980 | 980 | # Maybe we can match by username? |
|
981 | 981 | _author = author_name(author) |
|
982 | 982 | user = cls.get_by_username(_author, case_insensitive=True) |
|
983 | 983 | if user: |
|
984 | 984 | return user |
|
985 | 985 | |
|
986 | 986 | def update_userdata(self, **kwargs): |
|
987 | 987 | usr = self |
|
988 | 988 | old = usr.user_data |
|
989 | 989 | old.update(**kwargs) |
|
990 | 990 | usr.user_data = old |
|
991 | 991 | Session().add(usr) |
|
992 | 992 | log.debug('updated userdata with %s', kwargs) |
|
993 | 993 | |
|
994 | 994 | def update_lastlogin(self): |
|
995 | 995 | """Update user lastlogin""" |
|
996 | 996 | self.last_login = datetime.datetime.now() |
|
997 | 997 | Session().add(self) |
|
998 | 998 | log.debug('updated user %s lastlogin', self.username) |
|
999 | 999 | |
|
1000 | 1000 | def update_password(self, new_password): |
|
1001 | 1001 | from rhodecode.lib.auth import get_crypt_password |
|
1002 | 1002 | |
|
1003 | 1003 | self.password = get_crypt_password(new_password) |
|
1004 | 1004 | Session().add(self) |
|
1005 | 1005 | |
|
1006 | 1006 | @classmethod |
|
1007 | 1007 | def get_first_super_admin(cls): |
|
1008 | 1008 | user = User.query()\ |
|
1009 | 1009 | .filter(User.admin == true()) \ |
|
1010 | 1010 | .order_by(User.user_id.asc()) \ |
|
1011 | 1011 | .first() |
|
1012 | 1012 | |
|
1013 | 1013 | if user is None: |
|
1014 | 1014 | raise Exception('FATAL: Missing administrative account!') |
|
1015 | 1015 | return user |
|
1016 | 1016 | |
|
1017 | 1017 | @classmethod |
|
1018 | 1018 | def get_all_super_admins(cls, only_active=False): |
|
1019 | 1019 | """ |
|
1020 | 1020 | Returns all admin accounts sorted by username |
|
1021 | 1021 | """ |
|
1022 | 1022 | qry = User.query().filter(User.admin == true()).order_by(User.username.asc()) |
|
1023 | 1023 | if only_active: |
|
1024 | 1024 | qry = qry.filter(User.active == true()) |
|
1025 | 1025 | return qry.all() |
|
1026 | 1026 | |
|
1027 | 1027 | @classmethod |
|
1028 | 1028 | def get_all_user_ids(cls, only_active=True): |
|
1029 | 1029 | """ |
|
1030 | 1030 | Returns all users IDs |
|
1031 | 1031 | """ |
|
1032 | 1032 | qry = Session().query(User.user_id) |
|
1033 | 1033 | |
|
1034 | 1034 | if only_active: |
|
1035 | 1035 | qry = qry.filter(User.active == true()) |
|
1036 | 1036 | return [x.user_id for x in qry] |
|
1037 | 1037 | |
|
1038 | 1038 | @classmethod |
|
1039 | 1039 | def get_default_user(cls, cache=False, refresh=False): |
|
1040 | 1040 | user = User.get_by_username(User.DEFAULT_USER, cache=cache) |
|
1041 | 1041 | if user is None: |
|
1042 | 1042 | raise Exception('FATAL: Missing default account!') |
|
1043 | 1043 | if refresh: |
|
1044 | 1044 | # The default user might be based on outdated state which |
|
1045 | 1045 | # has been loaded from the cache. |
|
1046 | 1046 | # A call to refresh() ensures that the |
|
1047 | 1047 | # latest state from the database is used. |
|
1048 | 1048 | Session().refresh(user) |
|
1049 | 1049 | return user |
|
1050 | 1050 | |
|
1051 | 1051 | def _get_default_perms(self, user, suffix=''): |
|
1052 | 1052 | from rhodecode.model.permission import PermissionModel |
|
1053 | 1053 | return PermissionModel().get_default_perms(user.user_perms, suffix) |
|
1054 | 1054 | |
|
1055 | 1055 | def get_default_perms(self, suffix=''): |
|
1056 | 1056 | return self._get_default_perms(self, suffix) |
|
1057 | 1057 | |
|
1058 | 1058 | def get_api_data(self, include_secrets=False, details='full'): |
|
1059 | 1059 | """ |
|
1060 | 1060 | Common function for generating user related data for API |
|
1061 | 1061 | |
|
1062 | 1062 | :param include_secrets: By default secrets in the API data will be replaced |
|
1063 | 1063 | by a placeholder value to prevent exposing this data by accident. In case |
|
1064 | 1064 | this data shall be exposed, set this flag to ``True``. |
|
1065 | 1065 | |
|
1066 | 1066 | :param details: details can be 'basic|full' basic gives only a subset of |
|
1067 | 1067 | the available user information that includes user_id, name and emails. |
|
1068 | 1068 | """ |
|
1069 | 1069 | user = self |
|
1070 | 1070 | user_data = self.user_data |
|
1071 | 1071 | data = { |
|
1072 | 1072 | 'user_id': user.user_id, |
|
1073 | 1073 | 'username': user.username, |
|
1074 | 1074 | 'firstname': user.name, |
|
1075 | 1075 | 'lastname': user.lastname, |
|
1076 | 1076 | 'description': user.description, |
|
1077 | 1077 | 'email': user.email, |
|
1078 | 1078 | 'emails': user.emails, |
|
1079 | 1079 | } |
|
1080 | 1080 | if details == 'basic': |
|
1081 | 1081 | return data |
|
1082 | 1082 | |
|
1083 | 1083 | auth_token_length = 40 |
|
1084 | 1084 | auth_token_replacement = '*' * auth_token_length |
|
1085 | 1085 | |
|
1086 | 1086 | extras = { |
|
1087 | 1087 | 'auth_tokens': [auth_token_replacement], |
|
1088 | 1088 | 'active': user.active, |
|
1089 | 1089 | 'admin': user.admin, |
|
1090 | 1090 | 'extern_type': user.extern_type, |
|
1091 | 1091 | 'extern_name': user.extern_name, |
|
1092 | 1092 | 'last_login': user.last_login, |
|
1093 | 1093 | 'last_activity': user.last_activity, |
|
1094 | 1094 | 'ip_addresses': user.ip_addresses, |
|
1095 | 1095 | 'language': user_data.get('language') |
|
1096 | 1096 | } |
|
1097 | 1097 | data.update(extras) |
|
1098 | 1098 | |
|
1099 | 1099 | if include_secrets: |
|
1100 | 1100 | data['auth_tokens'] = user.auth_tokens |
|
1101 | 1101 | return data |
|
1102 | 1102 | |
|
1103 | 1103 | def __json__(self): |
|
1104 | 1104 | data = { |
|
1105 | 1105 | 'full_name': self.full_name, |
|
1106 | 1106 | 'full_name_or_username': self.full_name_or_username, |
|
1107 | 1107 | 'short_contact': self.short_contact, |
|
1108 | 1108 | 'full_contact': self.full_contact, |
|
1109 | 1109 | } |
|
1110 | 1110 | data.update(self.get_api_data()) |
|
1111 | 1111 | return data |
|
1112 | 1112 | |
|
1113 | 1113 | |
|
1114 | 1114 | class UserApiKeys(Base, BaseModel): |
|
1115 | 1115 | __tablename__ = 'user_api_keys' |
|
1116 | 1116 | __table_args__ = ( |
|
1117 | 1117 | Index('uak_api_key_idx', 'api_key'), |
|
1118 | 1118 | Index('uak_api_key_expires_idx', 'api_key', 'expires'), |
|
1119 | 1119 | base_table_args |
|
1120 | 1120 | ) |
|
1121 | 1121 | __mapper_args__ = {} |
|
1122 | 1122 | |
|
1123 | 1123 | # ApiKey role |
|
1124 | 1124 | ROLE_ALL = 'token_role_all' |
|
1125 | 1125 | ROLE_HTTP = 'token_role_http' |
|
1126 | 1126 | ROLE_VCS = 'token_role_vcs' |
|
1127 | 1127 | ROLE_API = 'token_role_api' |
|
1128 | 1128 | ROLE_FEED = 'token_role_feed' |
|
1129 | 1129 | ROLE_ARTIFACT_DOWNLOAD = 'role_artifact_download' |
|
1130 | 1130 | ROLE_PASSWORD_RESET = 'token_password_reset' |
|
1131 | 1131 | |
|
1132 | 1132 | ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED, ROLE_ARTIFACT_DOWNLOAD] |
|
1133 | 1133 | |
|
1134 | 1134 | user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1135 | 1135 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1136 | 1136 | api_key = Column("api_key", String(255), nullable=False, unique=True) |
|
1137 | 1137 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
1138 | 1138 | expires = Column('expires', Float(53), nullable=False) |
|
1139 | 1139 | role = Column('role', String(255), nullable=True) |
|
1140 | 1140 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1141 | 1141 | |
|
1142 | 1142 | # scope columns |
|
1143 | 1143 | repo_id = Column( |
|
1144 | 1144 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
1145 | 1145 | nullable=True, unique=None, default=None) |
|
1146 | 1146 | repo = relationship('Repository', lazy='joined') |
|
1147 | 1147 | |
|
1148 | 1148 | repo_group_id = Column( |
|
1149 | 1149 | 'repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
1150 | 1150 | nullable=True, unique=None, default=None) |
|
1151 | 1151 | repo_group = relationship('RepoGroup', lazy='joined') |
|
1152 | 1152 | |
|
1153 | 1153 | user = relationship('User', lazy='joined') |
|
1154 | 1154 | |
|
1155 | 1155 | def __unicode__(self): |
|
1156 | 1156 | return u"<%s('%s')>" % (self.__class__.__name__, self.role) |
|
1157 | 1157 | |
|
1158 | 1158 | def __json__(self): |
|
1159 | 1159 | data = { |
|
1160 | 1160 | 'auth_token': self.api_key, |
|
1161 | 1161 | 'role': self.role, |
|
1162 | 1162 | 'scope': self.scope_humanized, |
|
1163 | 1163 | 'expired': self.expired |
|
1164 | 1164 | } |
|
1165 | 1165 | return data |
|
1166 | 1166 | |
|
1167 | 1167 | def get_api_data(self, include_secrets=False): |
|
1168 | 1168 | data = self.__json__() |
|
1169 | 1169 | if include_secrets: |
|
1170 | 1170 | return data |
|
1171 | 1171 | else: |
|
1172 | 1172 | data['auth_token'] = self.token_obfuscated |
|
1173 | 1173 | return data |
|
1174 | 1174 | |
|
1175 | 1175 | @hybrid_property |
|
1176 | 1176 | def description_safe(self): |
|
1177 | 1177 | from rhodecode.lib import helpers as h |
|
1178 | 1178 | return h.escape(self.description) |
|
1179 | 1179 | |
|
1180 | 1180 | @property |
|
1181 | 1181 | def expired(self): |
|
1182 | 1182 | if self.expires == -1: |
|
1183 | 1183 | return False |
|
1184 | 1184 | return time.time() > self.expires |
|
1185 | 1185 | |
|
1186 | 1186 | @classmethod |
|
1187 | 1187 | def _get_role_name(cls, role): |
|
1188 | 1188 | return { |
|
1189 | 1189 | cls.ROLE_ALL: _('all'), |
|
1190 | 1190 | cls.ROLE_HTTP: _('http/web interface'), |
|
1191 | 1191 | cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'), |
|
1192 | 1192 | cls.ROLE_API: _('api calls'), |
|
1193 | 1193 | cls.ROLE_FEED: _('feed access'), |
|
1194 | 1194 | cls.ROLE_ARTIFACT_DOWNLOAD: _('artifacts downloads'), |
|
1195 | 1195 | }.get(role, role) |
|
1196 | 1196 | |
|
1197 | 1197 | @property |
|
1198 | 1198 | def role_humanized(self): |
|
1199 | 1199 | return self._get_role_name(self.role) |
|
1200 | 1200 | |
|
1201 | 1201 | def _get_scope(self): |
|
1202 | 1202 | if self.repo: |
|
1203 | 1203 | return 'Repository: {}'.format(self.repo.repo_name) |
|
1204 | 1204 | if self.repo_group: |
|
1205 | 1205 | return 'RepositoryGroup: {} (recursive)'.format(self.repo_group.group_name) |
|
1206 | 1206 | return 'Global' |
|
1207 | 1207 | |
|
1208 | 1208 | @property |
|
1209 | 1209 | def scope_humanized(self): |
|
1210 | 1210 | return self._get_scope() |
|
1211 | 1211 | |
|
1212 | 1212 | @property |
|
1213 | 1213 | def token_obfuscated(self): |
|
1214 | 1214 | if self.api_key: |
|
1215 | 1215 | return self.api_key[:4] + "****" |
|
1216 | 1216 | |
|
1217 | 1217 | |
|
1218 | 1218 | class UserEmailMap(Base, BaseModel): |
|
1219 | 1219 | __tablename__ = 'user_email_map' |
|
1220 | 1220 | __table_args__ = ( |
|
1221 | 1221 | Index('uem_email_idx', 'email'), |
|
1222 | 1222 | UniqueConstraint('email'), |
|
1223 | 1223 | base_table_args |
|
1224 | 1224 | ) |
|
1225 | 1225 | __mapper_args__ = {} |
|
1226 | 1226 | |
|
1227 | 1227 | email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1228 | 1228 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1229 | 1229 | _email = Column("email", String(255), nullable=True, unique=False, default=None) |
|
1230 | 1230 | user = relationship('User', lazy='joined') |
|
1231 | 1231 | |
|
1232 | 1232 | @validates('_email') |
|
1233 | 1233 | def validate_email(self, key, email): |
|
1234 | 1234 | # check if this email is not main one |
|
1235 | 1235 | main_email = Session().query(User).filter(User.email == email).scalar() |
|
1236 | 1236 | if main_email is not None: |
|
1237 | 1237 | raise AttributeError('email %s is present is user table' % email) |
|
1238 | 1238 | return email |
|
1239 | 1239 | |
|
1240 | 1240 | @hybrid_property |
|
1241 | 1241 | def email(self): |
|
1242 | 1242 | return self._email |
|
1243 | 1243 | |
|
1244 | 1244 | @email.setter |
|
1245 | 1245 | def email(self, val): |
|
1246 | 1246 | self._email = val.lower() if val else None |
|
1247 | 1247 | |
|
1248 | 1248 | |
|
1249 | 1249 | class UserIpMap(Base, BaseModel): |
|
1250 | 1250 | __tablename__ = 'user_ip_map' |
|
1251 | 1251 | __table_args__ = ( |
|
1252 | 1252 | UniqueConstraint('user_id', 'ip_addr'), |
|
1253 | 1253 | base_table_args |
|
1254 | 1254 | ) |
|
1255 | 1255 | __mapper_args__ = {} |
|
1256 | 1256 | |
|
1257 | 1257 | ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1258 | 1258 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1259 | 1259 | ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None) |
|
1260 | 1260 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
1261 | 1261 | description = Column("description", String(10000), nullable=True, unique=None, default=None) |
|
1262 | 1262 | user = relationship('User', lazy='joined') |
|
1263 | 1263 | |
|
1264 | 1264 | @hybrid_property |
|
1265 | 1265 | def description_safe(self): |
|
1266 | 1266 | from rhodecode.lib import helpers as h |
|
1267 | 1267 | return h.escape(self.description) |
|
1268 | 1268 | |
|
1269 | 1269 | @classmethod |
|
1270 | 1270 | def _get_ip_range(cls, ip_addr): |
|
1271 | 1271 | net = ipaddress.ip_network(safe_unicode(ip_addr), strict=False) |
|
1272 | 1272 | return [str(net.network_address), str(net.broadcast_address)] |
|
1273 | 1273 | |
|
1274 | 1274 | def __json__(self): |
|
1275 | 1275 | return { |
|
1276 | 1276 | 'ip_addr': self.ip_addr, |
|
1277 | 1277 | 'ip_range': self._get_ip_range(self.ip_addr), |
|
1278 | 1278 | } |
|
1279 | 1279 | |
|
1280 | 1280 | def __unicode__(self): |
|
1281 | 1281 | return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__, |
|
1282 | 1282 | self.user_id, self.ip_addr) |
|
1283 | 1283 | |
|
1284 | 1284 | |
|
1285 | 1285 | class UserSshKeys(Base, BaseModel): |
|
1286 | 1286 | __tablename__ = 'user_ssh_keys' |
|
1287 | 1287 | __table_args__ = ( |
|
1288 | 1288 | Index('usk_ssh_key_fingerprint_idx', 'ssh_key_fingerprint'), |
|
1289 | 1289 | |
|
1290 | 1290 | UniqueConstraint('ssh_key_fingerprint'), |
|
1291 | 1291 | |
|
1292 | 1292 | base_table_args |
|
1293 | 1293 | ) |
|
1294 | 1294 | __mapper_args__ = {} |
|
1295 | 1295 | |
|
1296 | 1296 | ssh_key_id = Column('ssh_key_id', Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1297 | 1297 | ssh_key_data = Column('ssh_key_data', String(10240), nullable=False, unique=None, default=None) |
|
1298 | 1298 | ssh_key_fingerprint = Column('ssh_key_fingerprint', String(255), nullable=False, unique=None, default=None) |
|
1299 | 1299 | |
|
1300 | 1300 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
1301 | 1301 | |
|
1302 | 1302 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1303 | 1303 | accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True, default=None) |
|
1304 | 1304 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1305 | 1305 | |
|
1306 | 1306 | user = relationship('User', lazy='joined') |
|
1307 | 1307 | |
|
1308 | 1308 | def __json__(self): |
|
1309 | 1309 | data = { |
|
1310 | 1310 | 'ssh_fingerprint': self.ssh_key_fingerprint, |
|
1311 | 1311 | 'description': self.description, |
|
1312 | 1312 | 'created_on': self.created_on |
|
1313 | 1313 | } |
|
1314 | 1314 | return data |
|
1315 | 1315 | |
|
1316 | 1316 | def get_api_data(self): |
|
1317 | 1317 | data = self.__json__() |
|
1318 | 1318 | return data |
|
1319 | 1319 | |
|
1320 | 1320 | |
|
1321 | 1321 | class UserLog(Base, BaseModel): |
|
1322 | 1322 | __tablename__ = 'user_logs' |
|
1323 | 1323 | __table_args__ = ( |
|
1324 | 1324 | base_table_args, |
|
1325 | 1325 | ) |
|
1326 | 1326 | |
|
1327 | 1327 | VERSION_1 = 'v1' |
|
1328 | 1328 | VERSION_2 = 'v2' |
|
1329 | 1329 | VERSIONS = [VERSION_1, VERSION_2] |
|
1330 | 1330 | |
|
1331 | 1331 | user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1332 | 1332 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id',ondelete='SET NULL'), nullable=True, unique=None, default=None) |
|
1333 | 1333 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
1334 | 1334 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id', ondelete='SET NULL'), nullable=True, unique=None, default=None) |
|
1335 | 1335 | repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None) |
|
1336 | 1336 | user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None) |
|
1337 | 1337 | action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None) |
|
1338 | 1338 | action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
1339 | 1339 | |
|
1340 | 1340 | version = Column("version", String(255), nullable=True, default=VERSION_1) |
|
1341 | 1341 | user_data = Column('user_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT())))) |
|
1342 | 1342 | action_data = Column('action_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT())))) |
|
1343 | 1343 | |
|
1344 | 1344 | def __unicode__(self): |
|
1345 | 1345 | return u"<%s('id:%s:%s')>" % ( |
|
1346 | 1346 | self.__class__.__name__, self.repository_name, self.action) |
|
1347 | 1347 | |
|
1348 | 1348 | def __json__(self): |
|
1349 | 1349 | return { |
|
1350 | 1350 | 'user_id': self.user_id, |
|
1351 | 1351 | 'username': self.username, |
|
1352 | 1352 | 'repository_id': self.repository_id, |
|
1353 | 1353 | 'repository_name': self.repository_name, |
|
1354 | 1354 | 'user_ip': self.user_ip, |
|
1355 | 1355 | 'action_date': self.action_date, |
|
1356 | 1356 | 'action': self.action, |
|
1357 | 1357 | } |
|
1358 | 1358 | |
|
1359 | 1359 | @hybrid_property |
|
1360 | 1360 | def entry_id(self): |
|
1361 | 1361 | return self.user_log_id |
|
1362 | 1362 | |
|
1363 | 1363 | @property |
|
1364 | 1364 | def action_as_day(self): |
|
1365 | 1365 | return datetime.date(*self.action_date.timetuple()[:3]) |
|
1366 | 1366 | |
|
1367 | 1367 | user = relationship('User') |
|
1368 | 1368 | repository = relationship('Repository', cascade='') |
|
1369 | 1369 | |
|
1370 | 1370 | |
|
1371 | 1371 | class UserGroup(Base, BaseModel): |
|
1372 | 1372 | __tablename__ = 'users_groups' |
|
1373 | 1373 | __table_args__ = ( |
|
1374 | 1374 | base_table_args, |
|
1375 | 1375 | ) |
|
1376 | 1376 | |
|
1377 | 1377 | users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1378 | 1378 | users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None) |
|
1379 | 1379 | user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None) |
|
1380 | 1380 | users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None) |
|
1381 | 1381 | inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
1382 | 1382 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
1383 | 1383 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1384 | 1384 | _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data |
|
1385 | 1385 | |
|
1386 | 1386 | members = relationship('UserGroupMember', cascade="all, delete-orphan", lazy="joined") |
|
1387 | 1387 | users_group_to_perm = relationship('UserGroupToPerm', cascade='all') |
|
1388 | 1388 | users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1389 | 1389 | users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
1390 | 1390 | user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all') |
|
1391 | 1391 | user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all') |
|
1392 | 1392 | |
|
1393 | 1393 | user_group_review_rules = relationship('RepoReviewRuleUserGroup', cascade='all') |
|
1394 | 1394 | user = relationship('User', primaryjoin="User.user_id==UserGroup.user_id") |
|
1395 | 1395 | |
|
1396 | 1396 | @classmethod |
|
1397 | 1397 | def _load_group_data(cls, column): |
|
1398 | 1398 | if not column: |
|
1399 | 1399 | return {} |
|
1400 | 1400 | |
|
1401 | 1401 | try: |
|
1402 | 1402 | return json.loads(column) or {} |
|
1403 | 1403 | except TypeError: |
|
1404 | 1404 | return {} |
|
1405 | 1405 | |
|
1406 | 1406 | @hybrid_property |
|
1407 | 1407 | def description_safe(self): |
|
1408 | 1408 | from rhodecode.lib import helpers as h |
|
1409 | 1409 | return h.escape(self.user_group_description) |
|
1410 | 1410 | |
|
1411 | 1411 | @hybrid_property |
|
1412 | 1412 | def group_data(self): |
|
1413 | 1413 | return self._load_group_data(self._group_data) |
|
1414 | 1414 | |
|
1415 | 1415 | @group_data.expression |
|
1416 | 1416 | def group_data(self, **kwargs): |
|
1417 | 1417 | return self._group_data |
|
1418 | 1418 | |
|
1419 | 1419 | @group_data.setter |
|
1420 | 1420 | def group_data(self, val): |
|
1421 | 1421 | try: |
|
1422 | 1422 | self._group_data = json.dumps(val) |
|
1423 | 1423 | except Exception: |
|
1424 | 1424 | log.error(traceback.format_exc()) |
|
1425 | 1425 | |
|
1426 | 1426 | @classmethod |
|
1427 | 1427 | def _load_sync(cls, group_data): |
|
1428 | 1428 | if group_data: |
|
1429 | 1429 | return group_data.get('extern_type') |
|
1430 | 1430 | |
|
1431 | 1431 | @property |
|
1432 | 1432 | def sync(self): |
|
1433 | 1433 | return self._load_sync(self.group_data) |
|
1434 | 1434 | |
|
1435 | 1435 | def __unicode__(self): |
|
1436 | 1436 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
1437 | 1437 | self.users_group_id, |
|
1438 | 1438 | self.users_group_name) |
|
1439 | 1439 | |
|
1440 | 1440 | @classmethod |
|
1441 | 1441 | def get_by_group_name(cls, group_name, cache=False, |
|
1442 | 1442 | case_insensitive=False): |
|
1443 | 1443 | if case_insensitive: |
|
1444 | 1444 | q = cls.query().filter(func.lower(cls.users_group_name) == |
|
1445 | 1445 | func.lower(group_name)) |
|
1446 | 1446 | |
|
1447 | 1447 | else: |
|
1448 | 1448 | q = cls.query().filter(cls.users_group_name == group_name) |
|
1449 | 1449 | if cache: |
|
1450 | 1450 | q = q.options( |
|
1451 | 1451 | FromCache("sql_cache_short", "get_group_%s" % _hash_key(group_name))) |
|
1452 | 1452 | return q.scalar() |
|
1453 | 1453 | |
|
1454 | 1454 | @classmethod |
|
1455 | 1455 | def get(cls, user_group_id, cache=False): |
|
1456 | 1456 | if not user_group_id: |
|
1457 | 1457 | return |
|
1458 | 1458 | |
|
1459 | 1459 | user_group = cls.query() |
|
1460 | 1460 | if cache: |
|
1461 | 1461 | user_group = user_group.options( |
|
1462 | 1462 | FromCache("sql_cache_short", "get_users_group_%s" % user_group_id)) |
|
1463 | 1463 | return user_group.get(user_group_id) |
|
1464 | 1464 | |
|
1465 | 1465 | def permissions(self, with_admins=True, with_owner=True, |
|
1466 | 1466 | expand_from_user_groups=False): |
|
1467 | 1467 | """ |
|
1468 | 1468 | Permissions for user groups |
|
1469 | 1469 | """ |
|
1470 | 1470 | _admin_perm = 'usergroup.admin' |
|
1471 | 1471 | |
|
1472 | 1472 | owner_row = [] |
|
1473 | 1473 | if with_owner: |
|
1474 | 1474 | usr = AttributeDict(self.user.get_dict()) |
|
1475 | 1475 | usr.owner_row = True |
|
1476 | 1476 | usr.permission = _admin_perm |
|
1477 | 1477 | owner_row.append(usr) |
|
1478 | 1478 | |
|
1479 | 1479 | super_admin_ids = [] |
|
1480 | 1480 | super_admin_rows = [] |
|
1481 | 1481 | if with_admins: |
|
1482 | 1482 | for usr in User.get_all_super_admins(): |
|
1483 | 1483 | super_admin_ids.append(usr.user_id) |
|
1484 | 1484 | # if this admin is also owner, don't double the record |
|
1485 | 1485 | if usr.user_id == owner_row[0].user_id: |
|
1486 | 1486 | owner_row[0].admin_row = True |
|
1487 | 1487 | else: |
|
1488 | 1488 | usr = AttributeDict(usr.get_dict()) |
|
1489 | 1489 | usr.admin_row = True |
|
1490 | 1490 | usr.permission = _admin_perm |
|
1491 | 1491 | super_admin_rows.append(usr) |
|
1492 | 1492 | |
|
1493 | 1493 | q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self) |
|
1494 | 1494 | q = q.options(joinedload(UserUserGroupToPerm.user_group), |
|
1495 | 1495 | joinedload(UserUserGroupToPerm.user), |
|
1496 | 1496 | joinedload(UserUserGroupToPerm.permission),) |
|
1497 | 1497 | |
|
1498 | 1498 | # get owners and admins and permissions. We do a trick of re-writing |
|
1499 | 1499 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1500 | 1500 | # has a global reference and changing one object propagates to all |
|
1501 | 1501 | # others. This means if admin is also an owner admin_row that change |
|
1502 | 1502 | # would propagate to both objects |
|
1503 | 1503 | perm_rows = [] |
|
1504 | 1504 | for _usr in q.all(): |
|
1505 | 1505 | usr = AttributeDict(_usr.user.get_dict()) |
|
1506 | 1506 | # if this user is also owner/admin, mark as duplicate record |
|
1507 | 1507 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
1508 | 1508 | usr.duplicate_perm = True |
|
1509 | 1509 | usr.permission = _usr.permission.permission_name |
|
1510 | 1510 | perm_rows.append(usr) |
|
1511 | 1511 | |
|
1512 | 1512 | # filter the perm rows by 'default' first and then sort them by |
|
1513 | 1513 | # admin,write,read,none permissions sorted again alphabetically in |
|
1514 | 1514 | # each group |
|
1515 | 1515 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
1516 | 1516 | |
|
1517 | 1517 | user_groups_rows = [] |
|
1518 | 1518 | if expand_from_user_groups: |
|
1519 | 1519 | for ug in self.permission_user_groups(with_members=True): |
|
1520 | 1520 | for user_data in ug.members: |
|
1521 | 1521 | user_groups_rows.append(user_data) |
|
1522 | 1522 | |
|
1523 | 1523 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
1524 | 1524 | |
|
1525 | 1525 | def permission_user_groups(self, with_members=False): |
|
1526 | 1526 | q = UserGroupUserGroupToPerm.query()\ |
|
1527 | 1527 | .filter(UserGroupUserGroupToPerm.target_user_group == self) |
|
1528 | 1528 | q = q.options(joinedload(UserGroupUserGroupToPerm.user_group), |
|
1529 | 1529 | joinedload(UserGroupUserGroupToPerm.target_user_group), |
|
1530 | 1530 | joinedload(UserGroupUserGroupToPerm.permission),) |
|
1531 | 1531 | |
|
1532 | 1532 | perm_rows = [] |
|
1533 | 1533 | for _user_group in q.all(): |
|
1534 | 1534 | entry = AttributeDict(_user_group.user_group.get_dict()) |
|
1535 | 1535 | entry.permission = _user_group.permission.permission_name |
|
1536 | 1536 | if with_members: |
|
1537 | 1537 | entry.members = [x.user.get_dict() |
|
1538 | 1538 | for x in _user_group.user_group.members] |
|
1539 | 1539 | perm_rows.append(entry) |
|
1540 | 1540 | |
|
1541 | 1541 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
1542 | 1542 | return perm_rows |
|
1543 | 1543 | |
|
1544 | 1544 | def _get_default_perms(self, user_group, suffix=''): |
|
1545 | 1545 | from rhodecode.model.permission import PermissionModel |
|
1546 | 1546 | return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix) |
|
1547 | 1547 | |
|
1548 | 1548 | def get_default_perms(self, suffix=''): |
|
1549 | 1549 | return self._get_default_perms(self, suffix) |
|
1550 | 1550 | |
|
1551 | 1551 | def get_api_data(self, with_group_members=True, include_secrets=False): |
|
1552 | 1552 | """ |
|
1553 | 1553 | :param include_secrets: See :meth:`User.get_api_data`, this parameter is |
|
1554 | 1554 | basically forwarded. |
|
1555 | 1555 | |
|
1556 | 1556 | """ |
|
1557 | 1557 | user_group = self |
|
1558 | 1558 | data = { |
|
1559 | 1559 | 'users_group_id': user_group.users_group_id, |
|
1560 | 1560 | 'group_name': user_group.users_group_name, |
|
1561 | 1561 | 'group_description': user_group.user_group_description, |
|
1562 | 1562 | 'active': user_group.users_group_active, |
|
1563 | 1563 | 'owner': user_group.user.username, |
|
1564 | 1564 | 'sync': user_group.sync, |
|
1565 | 1565 | 'owner_email': user_group.user.email, |
|
1566 | 1566 | } |
|
1567 | 1567 | |
|
1568 | 1568 | if with_group_members: |
|
1569 | 1569 | users = [] |
|
1570 | 1570 | for user in user_group.members: |
|
1571 | 1571 | user = user.user |
|
1572 | 1572 | users.append(user.get_api_data(include_secrets=include_secrets)) |
|
1573 | 1573 | data['users'] = users |
|
1574 | 1574 | |
|
1575 | 1575 | return data |
|
1576 | 1576 | |
|
1577 | 1577 | |
|
1578 | 1578 | class UserGroupMember(Base, BaseModel): |
|
1579 | 1579 | __tablename__ = 'users_groups_members' |
|
1580 | 1580 | __table_args__ = ( |
|
1581 | 1581 | base_table_args, |
|
1582 | 1582 | ) |
|
1583 | 1583 | |
|
1584 | 1584 | users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1585 | 1585 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
1586 | 1586 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
1587 | 1587 | |
|
1588 | 1588 | user = relationship('User', lazy='joined') |
|
1589 | 1589 | users_group = relationship('UserGroup') |
|
1590 | 1590 | |
|
1591 | 1591 | def __init__(self, gr_id='', u_id=''): |
|
1592 | 1592 | self.users_group_id = gr_id |
|
1593 | 1593 | self.user_id = u_id |
|
1594 | 1594 | |
|
1595 | 1595 | |
|
1596 | 1596 | class RepositoryField(Base, BaseModel): |
|
1597 | 1597 | __tablename__ = 'repositories_fields' |
|
1598 | 1598 | __table_args__ = ( |
|
1599 | 1599 | UniqueConstraint('repository_id', 'field_key'), # no-multi field |
|
1600 | 1600 | base_table_args, |
|
1601 | 1601 | ) |
|
1602 | 1602 | |
|
1603 | 1603 | PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields |
|
1604 | 1604 | |
|
1605 | 1605 | repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1606 | 1606 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
1607 | 1607 | field_key = Column("field_key", String(250)) |
|
1608 | 1608 | field_label = Column("field_label", String(1024), nullable=False) |
|
1609 | 1609 | field_value = Column("field_value", String(10000), nullable=False) |
|
1610 | 1610 | field_desc = Column("field_desc", String(1024), nullable=False) |
|
1611 | 1611 | field_type = Column("field_type", String(255), nullable=False, unique=None) |
|
1612 | 1612 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1613 | 1613 | |
|
1614 | 1614 | repository = relationship('Repository') |
|
1615 | 1615 | |
|
1616 | 1616 | @property |
|
1617 | 1617 | def field_key_prefixed(self): |
|
1618 | 1618 | return 'ex_%s' % self.field_key |
|
1619 | 1619 | |
|
1620 | 1620 | @classmethod |
|
1621 | 1621 | def un_prefix_key(cls, key): |
|
1622 | 1622 | if key.startswith(cls.PREFIX): |
|
1623 | 1623 | return key[len(cls.PREFIX):] |
|
1624 | 1624 | return key |
|
1625 | 1625 | |
|
1626 | 1626 | @classmethod |
|
1627 | 1627 | def get_by_key_name(cls, key, repo): |
|
1628 | 1628 | row = cls.query()\ |
|
1629 | 1629 | .filter(cls.repository == repo)\ |
|
1630 | 1630 | .filter(cls.field_key == key).scalar() |
|
1631 | 1631 | return row |
|
1632 | 1632 | |
|
1633 | 1633 | |
|
1634 | 1634 | class Repository(Base, BaseModel): |
|
1635 | 1635 | __tablename__ = 'repositories' |
|
1636 | 1636 | __table_args__ = ( |
|
1637 | 1637 | Index('r_repo_name_idx', 'repo_name', mysql_length=255), |
|
1638 | 1638 | base_table_args, |
|
1639 | 1639 | ) |
|
1640 | 1640 | DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}' |
|
1641 | 1641 | DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}' |
|
1642 | 1642 | DEFAULT_CLONE_URI_SSH = 'ssh://{sys_user}@{hostname}/{repo}' |
|
1643 | 1643 | |
|
1644 | 1644 | STATE_CREATED = 'repo_state_created' |
|
1645 | 1645 | STATE_PENDING = 'repo_state_pending' |
|
1646 | 1646 | STATE_ERROR = 'repo_state_error' |
|
1647 | 1647 | |
|
1648 | 1648 | LOCK_AUTOMATIC = 'lock_auto' |
|
1649 | 1649 | LOCK_API = 'lock_api' |
|
1650 | 1650 | LOCK_WEB = 'lock_web' |
|
1651 | 1651 | LOCK_PULL = 'lock_pull' |
|
1652 | 1652 | |
|
1653 | 1653 | NAME_SEP = URL_SEP |
|
1654 | 1654 | |
|
1655 | 1655 | repo_id = Column( |
|
1656 | 1656 | "repo_id", Integer(), nullable=False, unique=True, default=None, |
|
1657 | 1657 | primary_key=True) |
|
1658 | 1658 | _repo_name = Column( |
|
1659 | 1659 | "repo_name", Text(), nullable=False, default=None) |
|
1660 | 1660 | repo_name_hash = Column( |
|
1661 | 1661 | "repo_name_hash", String(255), nullable=False, unique=True) |
|
1662 | 1662 | repo_state = Column("repo_state", String(255), nullable=True) |
|
1663 | 1663 | |
|
1664 | 1664 | clone_uri = Column( |
|
1665 | 1665 | "clone_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1666 | 1666 | default=None) |
|
1667 | 1667 | push_uri = Column( |
|
1668 | 1668 | "push_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1669 | 1669 | default=None) |
|
1670 | 1670 | repo_type = Column( |
|
1671 | 1671 | "repo_type", String(255), nullable=False, unique=False, default=None) |
|
1672 | 1672 | user_id = Column( |
|
1673 | 1673 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
1674 | 1674 | unique=False, default=None) |
|
1675 | 1675 | private = Column( |
|
1676 | 1676 | "private", Boolean(), nullable=True, unique=None, default=None) |
|
1677 | 1677 | archived = Column( |
|
1678 | 1678 | "archived", Boolean(), nullable=True, unique=None, default=None) |
|
1679 | 1679 | enable_statistics = Column( |
|
1680 | 1680 | "statistics", Boolean(), nullable=True, unique=None, default=True) |
|
1681 | 1681 | enable_downloads = Column( |
|
1682 | 1682 | "downloads", Boolean(), nullable=True, unique=None, default=True) |
|
1683 | 1683 | description = Column( |
|
1684 | 1684 | "description", String(10000), nullable=True, unique=None, default=None) |
|
1685 | 1685 | created_on = Column( |
|
1686 | 1686 | 'created_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1687 | 1687 | default=datetime.datetime.now) |
|
1688 | 1688 | updated_on = Column( |
|
1689 | 1689 | 'updated_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1690 | 1690 | default=datetime.datetime.now) |
|
1691 | 1691 | _landing_revision = Column( |
|
1692 | 1692 | "landing_revision", String(255), nullable=False, unique=False, |
|
1693 | 1693 | default=None) |
|
1694 | 1694 | enable_locking = Column( |
|
1695 | 1695 | "enable_locking", Boolean(), nullable=False, unique=None, |
|
1696 | 1696 | default=False) |
|
1697 | 1697 | _locked = Column( |
|
1698 | 1698 | "locked", String(255), nullable=True, unique=False, default=None) |
|
1699 | 1699 | _changeset_cache = Column( |
|
1700 | 1700 | "changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
1701 | 1701 | |
|
1702 | 1702 | fork_id = Column( |
|
1703 | 1703 | "fork_id", Integer(), ForeignKey('repositories.repo_id'), |
|
1704 | 1704 | nullable=True, unique=False, default=None) |
|
1705 | 1705 | group_id = Column( |
|
1706 | 1706 | "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True, |
|
1707 | 1707 | unique=False, default=None) |
|
1708 | 1708 | |
|
1709 | 1709 | user = relationship('User', lazy='joined') |
|
1710 | 1710 | fork = relationship('Repository', remote_side=repo_id, lazy='joined') |
|
1711 | 1711 | group = relationship('RepoGroup', lazy='joined') |
|
1712 | 1712 | repo_to_perm = relationship( |
|
1713 | 1713 | 'UserRepoToPerm', cascade='all', |
|
1714 | 1714 | order_by='UserRepoToPerm.repo_to_perm_id') |
|
1715 | 1715 | users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1716 | 1716 | stats = relationship('Statistics', cascade='all', uselist=False) |
|
1717 | 1717 | |
|
1718 | 1718 | followers = relationship( |
|
1719 | 1719 | 'UserFollowing', |
|
1720 | 1720 | primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id', |
|
1721 | 1721 | cascade='all') |
|
1722 | 1722 | extra_fields = relationship( |
|
1723 | 1723 | 'RepositoryField', cascade="all, delete-orphan") |
|
1724 | 1724 | logs = relationship('UserLog') |
|
1725 | 1725 | comments = relationship( |
|
1726 | 1726 | 'ChangesetComment', cascade="all, delete-orphan") |
|
1727 | 1727 | pull_requests_source = relationship( |
|
1728 | 1728 | 'PullRequest', |
|
1729 | 1729 | primaryjoin='PullRequest.source_repo_id==Repository.repo_id', |
|
1730 | 1730 | cascade="all, delete-orphan") |
|
1731 | 1731 | pull_requests_target = relationship( |
|
1732 | 1732 | 'PullRequest', |
|
1733 | 1733 | primaryjoin='PullRequest.target_repo_id==Repository.repo_id', |
|
1734 | 1734 | cascade="all, delete-orphan") |
|
1735 | 1735 | ui = relationship('RepoRhodeCodeUi', cascade="all") |
|
1736 | 1736 | settings = relationship('RepoRhodeCodeSetting', cascade="all") |
|
1737 | 1737 | integrations = relationship('Integration', cascade="all, delete-orphan") |
|
1738 | 1738 | |
|
1739 | 1739 | scoped_tokens = relationship('UserApiKeys', cascade="all") |
|
1740 | 1740 | |
|
1741 | 1741 | # no cascade, set NULL |
|
1742 | 1742 | artifacts = relationship('FileStore', primaryjoin='FileStore.scope_repo_id==Repository.repo_id') |
|
1743 | 1743 | |
|
1744 | 1744 | def __unicode__(self): |
|
1745 | 1745 | return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id, |
|
1746 | 1746 | safe_unicode(self.repo_name)) |
|
1747 | 1747 | |
|
1748 | 1748 | @hybrid_property |
|
1749 | 1749 | def description_safe(self): |
|
1750 | 1750 | from rhodecode.lib import helpers as h |
|
1751 | 1751 | return h.escape(self.description) |
|
1752 | 1752 | |
|
1753 | 1753 | @hybrid_property |
|
1754 | 1754 | def landing_rev(self): |
|
1755 | 1755 | # always should return [rev_type, rev] |
|
1756 | 1756 | if self._landing_revision: |
|
1757 | 1757 | _rev_info = self._landing_revision.split(':') |
|
1758 | 1758 | if len(_rev_info) < 2: |
|
1759 | 1759 | _rev_info.insert(0, 'rev') |
|
1760 | 1760 | return [_rev_info[0], _rev_info[1]] |
|
1761 | 1761 | return [None, None] |
|
1762 | 1762 | |
|
1763 | 1763 | @landing_rev.setter |
|
1764 | 1764 | def landing_rev(self, val): |
|
1765 | 1765 | if ':' not in val: |
|
1766 | 1766 | raise ValueError('value must be delimited with `:` and consist ' |
|
1767 | 1767 | 'of <rev_type>:<rev>, got %s instead' % val) |
|
1768 | 1768 | self._landing_revision = val |
|
1769 | 1769 | |
|
1770 | 1770 | @hybrid_property |
|
1771 | 1771 | def locked(self): |
|
1772 | 1772 | if self._locked: |
|
1773 | 1773 | user_id, timelocked, reason = self._locked.split(':') |
|
1774 | 1774 | lock_values = int(user_id), timelocked, reason |
|
1775 | 1775 | else: |
|
1776 | 1776 | lock_values = [None, None, None] |
|
1777 | 1777 | return lock_values |
|
1778 | 1778 | |
|
1779 | 1779 | @locked.setter |
|
1780 | 1780 | def locked(self, val): |
|
1781 | 1781 | if val and isinstance(val, (list, tuple)): |
|
1782 | 1782 | self._locked = ':'.join(map(str, val)) |
|
1783 | 1783 | else: |
|
1784 | 1784 | self._locked = None |
|
1785 | 1785 | |
|
1786 | 1786 | @classmethod |
|
1787 | 1787 | def _load_changeset_cache(cls, repo_id, changeset_cache_raw): |
|
1788 | 1788 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
1789 | 1789 | dummy = EmptyCommit().__json__() |
|
1790 | 1790 | if not changeset_cache_raw: |
|
1791 | 1791 | dummy['source_repo_id'] = repo_id |
|
1792 | 1792 | return json.loads(json.dumps(dummy)) |
|
1793 | 1793 | |
|
1794 | 1794 | try: |
|
1795 | 1795 | return json.loads(changeset_cache_raw) |
|
1796 | 1796 | except TypeError: |
|
1797 | 1797 | return dummy |
|
1798 | 1798 | except Exception: |
|
1799 | 1799 | log.error(traceback.format_exc()) |
|
1800 | 1800 | return dummy |
|
1801 | 1801 | |
|
1802 | 1802 | @hybrid_property |
|
1803 | 1803 | def changeset_cache(self): |
|
1804 | 1804 | return self._load_changeset_cache(self.repo_id, self._changeset_cache) |
|
1805 | 1805 | |
|
1806 | 1806 | @changeset_cache.setter |
|
1807 | 1807 | def changeset_cache(self, val): |
|
1808 | 1808 | try: |
|
1809 | 1809 | self._changeset_cache = json.dumps(val) |
|
1810 | 1810 | except Exception: |
|
1811 | 1811 | log.error(traceback.format_exc()) |
|
1812 | 1812 | |
|
1813 | 1813 | @hybrid_property |
|
1814 | 1814 | def repo_name(self): |
|
1815 | 1815 | return self._repo_name |
|
1816 | 1816 | |
|
1817 | 1817 | @repo_name.setter |
|
1818 | 1818 | def repo_name(self, value): |
|
1819 | 1819 | self._repo_name = value |
|
1820 | 1820 | self.repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest() |
|
1821 | 1821 | |
|
1822 | 1822 | @classmethod |
|
1823 | 1823 | def normalize_repo_name(cls, repo_name): |
|
1824 | 1824 | """ |
|
1825 | 1825 | Normalizes os specific repo_name to the format internally stored inside |
|
1826 | 1826 | database using URL_SEP |
|
1827 | 1827 | |
|
1828 | 1828 | :param cls: |
|
1829 | 1829 | :param repo_name: |
|
1830 | 1830 | """ |
|
1831 | 1831 | return cls.NAME_SEP.join(repo_name.split(os.sep)) |
|
1832 | 1832 | |
|
1833 | 1833 | @classmethod |
|
1834 | 1834 | def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False): |
|
1835 | 1835 | session = Session() |
|
1836 | 1836 | q = session.query(cls).filter(cls.repo_name == repo_name) |
|
1837 | 1837 | |
|
1838 | 1838 | if cache: |
|
1839 | 1839 | if identity_cache: |
|
1840 | 1840 | val = cls.identity_cache(session, 'repo_name', repo_name) |
|
1841 | 1841 | if val: |
|
1842 | 1842 | return val |
|
1843 | 1843 | else: |
|
1844 | 1844 | cache_key = "get_repo_by_name_%s" % _hash_key(repo_name) |
|
1845 | 1845 | q = q.options( |
|
1846 | 1846 | FromCache("sql_cache_short", cache_key)) |
|
1847 | 1847 | |
|
1848 | 1848 | return q.scalar() |
|
1849 | 1849 | |
|
1850 | 1850 | @classmethod |
|
1851 | 1851 | def get_by_id_or_repo_name(cls, repoid): |
|
1852 | 1852 | if isinstance(repoid, (int, long)): |
|
1853 | 1853 | try: |
|
1854 | 1854 | repo = cls.get(repoid) |
|
1855 | 1855 | except ValueError: |
|
1856 | 1856 | repo = None |
|
1857 | 1857 | else: |
|
1858 | 1858 | repo = cls.get_by_repo_name(repoid) |
|
1859 | 1859 | return repo |
|
1860 | 1860 | |
|
1861 | 1861 | @classmethod |
|
1862 | 1862 | def get_by_full_path(cls, repo_full_path): |
|
1863 | 1863 | repo_name = repo_full_path.split(cls.base_path(), 1)[-1] |
|
1864 | 1864 | repo_name = cls.normalize_repo_name(repo_name) |
|
1865 | 1865 | return cls.get_by_repo_name(repo_name.strip(URL_SEP)) |
|
1866 | 1866 | |
|
1867 | 1867 | @classmethod |
|
1868 | 1868 | def get_repo_forks(cls, repo_id): |
|
1869 | 1869 | return cls.query().filter(Repository.fork_id == repo_id) |
|
1870 | 1870 | |
|
1871 | 1871 | @classmethod |
|
1872 | 1872 | def base_path(cls): |
|
1873 | 1873 | """ |
|
1874 | 1874 | Returns base path when all repos are stored |
|
1875 | 1875 | |
|
1876 | 1876 | :param cls: |
|
1877 | 1877 | """ |
|
1878 | 1878 | q = Session().query(RhodeCodeUi)\ |
|
1879 | 1879 | .filter(RhodeCodeUi.ui_key == cls.NAME_SEP) |
|
1880 | 1880 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1881 | 1881 | return q.one().ui_value |
|
1882 | 1882 | |
|
1883 | 1883 | @classmethod |
|
1884 | 1884 | def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None), |
|
1885 | 1885 | case_insensitive=True, archived=False): |
|
1886 | 1886 | q = Repository.query() |
|
1887 | 1887 | |
|
1888 | 1888 | if not archived: |
|
1889 | 1889 | q = q.filter(Repository.archived.isnot(true())) |
|
1890 | 1890 | |
|
1891 | 1891 | if not isinstance(user_id, Optional): |
|
1892 | 1892 | q = q.filter(Repository.user_id == user_id) |
|
1893 | 1893 | |
|
1894 | 1894 | if not isinstance(group_id, Optional): |
|
1895 | 1895 | q = q.filter(Repository.group_id == group_id) |
|
1896 | 1896 | |
|
1897 | 1897 | if case_insensitive: |
|
1898 | 1898 | q = q.order_by(func.lower(Repository.repo_name)) |
|
1899 | 1899 | else: |
|
1900 | 1900 | q = q.order_by(Repository.repo_name) |
|
1901 | 1901 | |
|
1902 | 1902 | return q.all() |
|
1903 | 1903 | |
|
1904 | 1904 | @property |
|
1905 | 1905 | def repo_uid(self): |
|
1906 | 1906 | return '_{}'.format(self.repo_id) |
|
1907 | 1907 | |
|
1908 | 1908 | @property |
|
1909 | 1909 | def forks(self): |
|
1910 | 1910 | """ |
|
1911 | 1911 | Return forks of this repo |
|
1912 | 1912 | """ |
|
1913 | 1913 | return Repository.get_repo_forks(self.repo_id) |
|
1914 | 1914 | |
|
1915 | 1915 | @property |
|
1916 | 1916 | def parent(self): |
|
1917 | 1917 | """ |
|
1918 | 1918 | Returns fork parent |
|
1919 | 1919 | """ |
|
1920 | 1920 | return self.fork |
|
1921 | 1921 | |
|
1922 | 1922 | @property |
|
1923 | 1923 | def just_name(self): |
|
1924 | 1924 | return self.repo_name.split(self.NAME_SEP)[-1] |
|
1925 | 1925 | |
|
1926 | 1926 | @property |
|
1927 | 1927 | def groups_with_parents(self): |
|
1928 | 1928 | groups = [] |
|
1929 | 1929 | if self.group is None: |
|
1930 | 1930 | return groups |
|
1931 | 1931 | |
|
1932 | 1932 | cur_gr = self.group |
|
1933 | 1933 | groups.insert(0, cur_gr) |
|
1934 | 1934 | while 1: |
|
1935 | 1935 | gr = getattr(cur_gr, 'parent_group', None) |
|
1936 | 1936 | cur_gr = cur_gr.parent_group |
|
1937 | 1937 | if gr is None: |
|
1938 | 1938 | break |
|
1939 | 1939 | groups.insert(0, gr) |
|
1940 | 1940 | |
|
1941 | 1941 | return groups |
|
1942 | 1942 | |
|
1943 | 1943 | @property |
|
1944 | 1944 | def groups_and_repo(self): |
|
1945 | 1945 | return self.groups_with_parents, self |
|
1946 | 1946 | |
|
1947 | 1947 | @LazyProperty |
|
1948 | 1948 | def repo_path(self): |
|
1949 | 1949 | """ |
|
1950 | 1950 | Returns base full path for that repository means where it actually |
|
1951 | 1951 | exists on a filesystem |
|
1952 | 1952 | """ |
|
1953 | 1953 | q = Session().query(RhodeCodeUi).filter( |
|
1954 | 1954 | RhodeCodeUi.ui_key == self.NAME_SEP) |
|
1955 | 1955 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1956 | 1956 | return q.one().ui_value |
|
1957 | 1957 | |
|
1958 | 1958 | @property |
|
1959 | 1959 | def repo_full_path(self): |
|
1960 | 1960 | p = [self.repo_path] |
|
1961 | 1961 | # we need to split the name by / since this is how we store the |
|
1962 | 1962 | # names in the database, but that eventually needs to be converted |
|
1963 | 1963 | # into a valid system path |
|
1964 | 1964 | p += self.repo_name.split(self.NAME_SEP) |
|
1965 | 1965 | return os.path.join(*map(safe_unicode, p)) |
|
1966 | 1966 | |
|
1967 | 1967 | @property |
|
1968 | 1968 | def cache_keys(self): |
|
1969 | 1969 | """ |
|
1970 | 1970 | Returns associated cache keys for that repo |
|
1971 | 1971 | """ |
|
1972 | 1972 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
1973 | 1973 | repo_id=self.repo_id) |
|
1974 | 1974 | return CacheKey.query()\ |
|
1975 | 1975 | .filter(CacheKey.cache_args == invalidation_namespace)\ |
|
1976 | 1976 | .order_by(CacheKey.cache_key)\ |
|
1977 | 1977 | .all() |
|
1978 | 1978 | |
|
1979 | 1979 | @property |
|
1980 | 1980 | def cached_diffs_relative_dir(self): |
|
1981 | 1981 | """ |
|
1982 | 1982 | Return a relative to the repository store path of cached diffs |
|
1983 | 1983 | used for safe display for users, who shouldn't know the absolute store |
|
1984 | 1984 | path |
|
1985 | 1985 | """ |
|
1986 | 1986 | return os.path.join( |
|
1987 | 1987 | os.path.dirname(self.repo_name), |
|
1988 | 1988 | self.cached_diffs_dir.split(os.path.sep)[-1]) |
|
1989 | 1989 | |
|
1990 | 1990 | @property |
|
1991 | 1991 | def cached_diffs_dir(self): |
|
1992 | 1992 | path = self.repo_full_path |
|
1993 | 1993 | return os.path.join( |
|
1994 | 1994 | os.path.dirname(path), |
|
1995 | 1995 | '.__shadow_diff_cache_repo_{}'.format(self.repo_id)) |
|
1996 | 1996 | |
|
1997 | 1997 | def cached_diffs(self): |
|
1998 | 1998 | diff_cache_dir = self.cached_diffs_dir |
|
1999 | 1999 | if os.path.isdir(diff_cache_dir): |
|
2000 | 2000 | return os.listdir(diff_cache_dir) |
|
2001 | 2001 | return [] |
|
2002 | 2002 | |
|
2003 | 2003 | def shadow_repos(self): |
|
2004 | 2004 | shadow_repos_pattern = '.__shadow_repo_{}'.format(self.repo_id) |
|
2005 | 2005 | return [ |
|
2006 | 2006 | x for x in os.listdir(os.path.dirname(self.repo_full_path)) |
|
2007 | 2007 | if x.startswith(shadow_repos_pattern)] |
|
2008 | 2008 | |
|
2009 | 2009 | def get_new_name(self, repo_name): |
|
2010 | 2010 | """ |
|
2011 | 2011 | returns new full repository name based on assigned group and new new |
|
2012 | 2012 | |
|
2013 | 2013 | :param group_name: |
|
2014 | 2014 | """ |
|
2015 | 2015 | path_prefix = self.group.full_path_splitted if self.group else [] |
|
2016 | 2016 | return self.NAME_SEP.join(path_prefix + [repo_name]) |
|
2017 | 2017 | |
|
2018 | 2018 | @property |
|
2019 | 2019 | def _config(self): |
|
2020 | 2020 | """ |
|
2021 | 2021 | Returns db based config object. |
|
2022 | 2022 | """ |
|
2023 | 2023 | from rhodecode.lib.utils import make_db_config |
|
2024 | 2024 | return make_db_config(clear_session=False, repo=self) |
|
2025 | 2025 | |
|
2026 | 2026 | def permissions(self, with_admins=True, with_owner=True, |
|
2027 | 2027 | expand_from_user_groups=False): |
|
2028 | 2028 | """ |
|
2029 | 2029 | Permissions for repositories |
|
2030 | 2030 | """ |
|
2031 | 2031 | _admin_perm = 'repository.admin' |
|
2032 | 2032 | |
|
2033 | 2033 | owner_row = [] |
|
2034 | 2034 | if with_owner: |
|
2035 | 2035 | usr = AttributeDict(self.user.get_dict()) |
|
2036 | 2036 | usr.owner_row = True |
|
2037 | 2037 | usr.permission = _admin_perm |
|
2038 | 2038 | usr.permission_id = None |
|
2039 | 2039 | owner_row.append(usr) |
|
2040 | 2040 | |
|
2041 | 2041 | super_admin_ids = [] |
|
2042 | 2042 | super_admin_rows = [] |
|
2043 | 2043 | if with_admins: |
|
2044 | 2044 | for usr in User.get_all_super_admins(): |
|
2045 | 2045 | super_admin_ids.append(usr.user_id) |
|
2046 | 2046 | # if this admin is also owner, don't double the record |
|
2047 | 2047 | if usr.user_id == owner_row[0].user_id: |
|
2048 | 2048 | owner_row[0].admin_row = True |
|
2049 | 2049 | else: |
|
2050 | 2050 | usr = AttributeDict(usr.get_dict()) |
|
2051 | 2051 | usr.admin_row = True |
|
2052 | 2052 | usr.permission = _admin_perm |
|
2053 | 2053 | usr.permission_id = None |
|
2054 | 2054 | super_admin_rows.append(usr) |
|
2055 | 2055 | |
|
2056 | 2056 | q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self) |
|
2057 | 2057 | q = q.options(joinedload(UserRepoToPerm.repository), |
|
2058 | 2058 | joinedload(UserRepoToPerm.user), |
|
2059 | 2059 | joinedload(UserRepoToPerm.permission),) |
|
2060 | 2060 | |
|
2061 | 2061 | # get owners and admins and permissions. We do a trick of re-writing |
|
2062 | 2062 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
2063 | 2063 | # has a global reference and changing one object propagates to all |
|
2064 | 2064 | # others. This means if admin is also an owner admin_row that change |
|
2065 | 2065 | # would propagate to both objects |
|
2066 | 2066 | perm_rows = [] |
|
2067 | 2067 | for _usr in q.all(): |
|
2068 | 2068 | usr = AttributeDict(_usr.user.get_dict()) |
|
2069 | 2069 | # if this user is also owner/admin, mark as duplicate record |
|
2070 | 2070 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
2071 | 2071 | usr.duplicate_perm = True |
|
2072 | 2072 | # also check if this permission is maybe used by branch_permissions |
|
2073 | 2073 | if _usr.branch_perm_entry: |
|
2074 | 2074 | usr.branch_rules = [x.branch_rule_id for x in _usr.branch_perm_entry] |
|
2075 | 2075 | |
|
2076 | 2076 | usr.permission = _usr.permission.permission_name |
|
2077 | 2077 | usr.permission_id = _usr.repo_to_perm_id |
|
2078 | 2078 | perm_rows.append(usr) |
|
2079 | 2079 | |
|
2080 | 2080 | # filter the perm rows by 'default' first and then sort them by |
|
2081 | 2081 | # admin,write,read,none permissions sorted again alphabetically in |
|
2082 | 2082 | # each group |
|
2083 | 2083 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
2084 | 2084 | |
|
2085 | 2085 | user_groups_rows = [] |
|
2086 | 2086 | if expand_from_user_groups: |
|
2087 | 2087 | for ug in self.permission_user_groups(with_members=True): |
|
2088 | 2088 | for user_data in ug.members: |
|
2089 | 2089 | user_groups_rows.append(user_data) |
|
2090 | 2090 | |
|
2091 | 2091 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
2092 | 2092 | |
|
2093 | 2093 | def permission_user_groups(self, with_members=True): |
|
2094 | 2094 | q = UserGroupRepoToPerm.query()\ |
|
2095 | 2095 | .filter(UserGroupRepoToPerm.repository == self) |
|
2096 | 2096 | q = q.options(joinedload(UserGroupRepoToPerm.repository), |
|
2097 | 2097 | joinedload(UserGroupRepoToPerm.users_group), |
|
2098 | 2098 | joinedload(UserGroupRepoToPerm.permission),) |
|
2099 | 2099 | |
|
2100 | 2100 | perm_rows = [] |
|
2101 | 2101 | for _user_group in q.all(): |
|
2102 | 2102 | entry = AttributeDict(_user_group.users_group.get_dict()) |
|
2103 | 2103 | entry.permission = _user_group.permission.permission_name |
|
2104 | 2104 | if with_members: |
|
2105 | 2105 | entry.members = [x.user.get_dict() |
|
2106 | 2106 | for x in _user_group.users_group.members] |
|
2107 | 2107 | perm_rows.append(entry) |
|
2108 | 2108 | |
|
2109 | 2109 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
2110 | 2110 | return perm_rows |
|
2111 | 2111 | |
|
2112 | 2112 | def get_api_data(self, include_secrets=False): |
|
2113 | 2113 | """ |
|
2114 | 2114 | Common function for generating repo api data |
|
2115 | 2115 | |
|
2116 | 2116 | :param include_secrets: See :meth:`User.get_api_data`. |
|
2117 | 2117 | |
|
2118 | 2118 | """ |
|
2119 | 2119 | # TODO: mikhail: Here there is an anti-pattern, we probably need to |
|
2120 | 2120 | # move this methods on models level. |
|
2121 | 2121 | from rhodecode.model.settings import SettingsModel |
|
2122 | 2122 | from rhodecode.model.repo import RepoModel |
|
2123 | 2123 | |
|
2124 | 2124 | repo = self |
|
2125 | 2125 | _user_id, _time, _reason = self.locked |
|
2126 | 2126 | |
|
2127 | 2127 | data = { |
|
2128 | 2128 | 'repo_id': repo.repo_id, |
|
2129 | 2129 | 'repo_name': repo.repo_name, |
|
2130 | 2130 | 'repo_type': repo.repo_type, |
|
2131 | 2131 | 'clone_uri': repo.clone_uri or '', |
|
2132 | 2132 | 'push_uri': repo.push_uri or '', |
|
2133 | 2133 | 'url': RepoModel().get_url(self), |
|
2134 | 2134 | 'private': repo.private, |
|
2135 | 2135 | 'created_on': repo.created_on, |
|
2136 | 2136 | 'description': repo.description_safe, |
|
2137 | 2137 | 'landing_rev': repo.landing_rev, |
|
2138 | 2138 | 'owner': repo.user.username, |
|
2139 | 2139 | 'fork_of': repo.fork.repo_name if repo.fork else None, |
|
2140 | 2140 | 'fork_of_id': repo.fork.repo_id if repo.fork else None, |
|
2141 | 2141 | 'enable_statistics': repo.enable_statistics, |
|
2142 | 2142 | 'enable_locking': repo.enable_locking, |
|
2143 | 2143 | 'enable_downloads': repo.enable_downloads, |
|
2144 | 2144 | 'last_changeset': repo.changeset_cache, |
|
2145 | 2145 | 'locked_by': User.get(_user_id).get_api_data( |
|
2146 | 2146 | include_secrets=include_secrets) if _user_id else None, |
|
2147 | 2147 | 'locked_date': time_to_datetime(_time) if _time else None, |
|
2148 | 2148 | 'lock_reason': _reason if _reason else None, |
|
2149 | 2149 | } |
|
2150 | 2150 | |
|
2151 | 2151 | # TODO: mikhail: should be per-repo settings here |
|
2152 | 2152 | rc_config = SettingsModel().get_all_settings() |
|
2153 | 2153 | repository_fields = str2bool( |
|
2154 | 2154 | rc_config.get('rhodecode_repository_fields')) |
|
2155 | 2155 | if repository_fields: |
|
2156 | 2156 | for f in self.extra_fields: |
|
2157 | 2157 | data[f.field_key_prefixed] = f.field_value |
|
2158 | 2158 | |
|
2159 | 2159 | return data |
|
2160 | 2160 | |
|
2161 | 2161 | @classmethod |
|
2162 | 2162 | def lock(cls, repo, user_id, lock_time=None, lock_reason=None): |
|
2163 | 2163 | if not lock_time: |
|
2164 | 2164 | lock_time = time.time() |
|
2165 | 2165 | if not lock_reason: |
|
2166 | 2166 | lock_reason = cls.LOCK_AUTOMATIC |
|
2167 | 2167 | repo.locked = [user_id, lock_time, lock_reason] |
|
2168 | 2168 | Session().add(repo) |
|
2169 | 2169 | Session().commit() |
|
2170 | 2170 | |
|
2171 | 2171 | @classmethod |
|
2172 | 2172 | def unlock(cls, repo): |
|
2173 | 2173 | repo.locked = None |
|
2174 | 2174 | Session().add(repo) |
|
2175 | 2175 | Session().commit() |
|
2176 | 2176 | |
|
2177 | 2177 | @classmethod |
|
2178 | 2178 | def getlock(cls, repo): |
|
2179 | 2179 | return repo.locked |
|
2180 | 2180 | |
|
2181 | 2181 | def is_user_lock(self, user_id): |
|
2182 | 2182 | if self.lock[0]: |
|
2183 | 2183 | lock_user_id = safe_int(self.lock[0]) |
|
2184 | 2184 | user_id = safe_int(user_id) |
|
2185 | 2185 | # both are ints, and they are equal |
|
2186 | 2186 | return all([lock_user_id, user_id]) and lock_user_id == user_id |
|
2187 | 2187 | |
|
2188 | 2188 | return False |
|
2189 | 2189 | |
|
2190 | 2190 | def get_locking_state(self, action, user_id, only_when_enabled=True): |
|
2191 | 2191 | """ |
|
2192 | 2192 | Checks locking on this repository, if locking is enabled and lock is |
|
2193 | 2193 | present returns a tuple of make_lock, locked, locked_by. |
|
2194 | 2194 | make_lock can have 3 states None (do nothing) True, make lock |
|
2195 | 2195 | False release lock, This value is later propagated to hooks, which |
|
2196 | 2196 | do the locking. Think about this as signals passed to hooks what to do. |
|
2197 | 2197 | |
|
2198 | 2198 | """ |
|
2199 | 2199 | # TODO: johbo: This is part of the business logic and should be moved |
|
2200 | 2200 | # into the RepositoryModel. |
|
2201 | 2201 | |
|
2202 | 2202 | if action not in ('push', 'pull'): |
|
2203 | 2203 | raise ValueError("Invalid action value: %s" % repr(action)) |
|
2204 | 2204 | |
|
2205 | 2205 | # defines if locked error should be thrown to user |
|
2206 | 2206 | currently_locked = False |
|
2207 | 2207 | # defines if new lock should be made, tri-state |
|
2208 | 2208 | make_lock = None |
|
2209 | 2209 | repo = self |
|
2210 | 2210 | user = User.get(user_id) |
|
2211 | 2211 | |
|
2212 | 2212 | lock_info = repo.locked |
|
2213 | 2213 | |
|
2214 | 2214 | if repo and (repo.enable_locking or not only_when_enabled): |
|
2215 | 2215 | if action == 'push': |
|
2216 | 2216 | # check if it's already locked !, if it is compare users |
|
2217 | 2217 | locked_by_user_id = lock_info[0] |
|
2218 | 2218 | if user.user_id == locked_by_user_id: |
|
2219 | 2219 | log.debug( |
|
2220 | 2220 | 'Got `push` action from user %s, now unlocking', user) |
|
2221 | 2221 | # unlock if we have push from user who locked |
|
2222 | 2222 | make_lock = False |
|
2223 | 2223 | else: |
|
2224 | 2224 | # we're not the same user who locked, ban with |
|
2225 | 2225 | # code defined in settings (default is 423 HTTP Locked) ! |
|
2226 | 2226 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
2227 | 2227 | currently_locked = True |
|
2228 | 2228 | elif action == 'pull': |
|
2229 | 2229 | # [0] user [1] date |
|
2230 | 2230 | if lock_info[0] and lock_info[1]: |
|
2231 | 2231 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
2232 | 2232 | currently_locked = True |
|
2233 | 2233 | else: |
|
2234 | 2234 | log.debug('Setting lock on repo %s by %s', repo, user) |
|
2235 | 2235 | make_lock = True |
|
2236 | 2236 | |
|
2237 | 2237 | else: |
|
2238 | 2238 | log.debug('Repository %s do not have locking enabled', repo) |
|
2239 | 2239 | |
|
2240 | 2240 | log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s', |
|
2241 | 2241 | make_lock, currently_locked, lock_info) |
|
2242 | 2242 | |
|
2243 | 2243 | from rhodecode.lib.auth import HasRepoPermissionAny |
|
2244 | 2244 | perm_check = HasRepoPermissionAny('repository.write', 'repository.admin') |
|
2245 | 2245 | if make_lock and not perm_check(repo_name=repo.repo_name, user=user): |
|
2246 | 2246 | # if we don't have at least write permission we cannot make a lock |
|
2247 | 2247 | log.debug('lock state reset back to FALSE due to lack ' |
|
2248 | 2248 | 'of at least read permission') |
|
2249 | 2249 | make_lock = False |
|
2250 | 2250 | |
|
2251 | 2251 | return make_lock, currently_locked, lock_info |
|
2252 | 2252 | |
|
2253 | 2253 | @property |
|
2254 | 2254 | def last_commit_cache_update_diff(self): |
|
2255 | 2255 | return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0) |
|
2256 | 2256 | |
|
2257 | 2257 | @classmethod |
|
2258 | 2258 | def _load_commit_change(cls, last_commit_cache): |
|
2259 | 2259 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2260 | 2260 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2261 | 2261 | date_latest = last_commit_cache.get('date', empty_date) |
|
2262 | 2262 | try: |
|
2263 | 2263 | return parse_datetime(date_latest) |
|
2264 | 2264 | except Exception: |
|
2265 | 2265 | return empty_date |
|
2266 | 2266 | |
|
2267 | 2267 | @property |
|
2268 | 2268 | def last_commit_change(self): |
|
2269 | 2269 | return self._load_commit_change(self.changeset_cache) |
|
2270 | 2270 | |
|
2271 | 2271 | @property |
|
2272 | 2272 | def last_db_change(self): |
|
2273 | 2273 | return self.updated_on |
|
2274 | 2274 | |
|
2275 | 2275 | @property |
|
2276 | 2276 | def clone_uri_hidden(self): |
|
2277 | 2277 | clone_uri = self.clone_uri |
|
2278 | 2278 | if clone_uri: |
|
2279 | 2279 | import urlobject |
|
2280 | 2280 | url_obj = urlobject.URLObject(cleaned_uri(clone_uri)) |
|
2281 | 2281 | if url_obj.password: |
|
2282 | 2282 | clone_uri = url_obj.with_password('*****') |
|
2283 | 2283 | return clone_uri |
|
2284 | 2284 | |
|
2285 | 2285 | @property |
|
2286 | 2286 | def push_uri_hidden(self): |
|
2287 | 2287 | push_uri = self.push_uri |
|
2288 | 2288 | if push_uri: |
|
2289 | 2289 | import urlobject |
|
2290 | 2290 | url_obj = urlobject.URLObject(cleaned_uri(push_uri)) |
|
2291 | 2291 | if url_obj.password: |
|
2292 | 2292 | push_uri = url_obj.with_password('*****') |
|
2293 | 2293 | return push_uri |
|
2294 | 2294 | |
|
2295 | 2295 | def clone_url(self, **override): |
|
2296 | 2296 | from rhodecode.model.settings import SettingsModel |
|
2297 | 2297 | |
|
2298 | 2298 | uri_tmpl = None |
|
2299 | 2299 | if 'with_id' in override: |
|
2300 | 2300 | uri_tmpl = self.DEFAULT_CLONE_URI_ID |
|
2301 | 2301 | del override['with_id'] |
|
2302 | 2302 | |
|
2303 | 2303 | if 'uri_tmpl' in override: |
|
2304 | 2304 | uri_tmpl = override['uri_tmpl'] |
|
2305 | 2305 | del override['uri_tmpl'] |
|
2306 | 2306 | |
|
2307 | 2307 | ssh = False |
|
2308 | 2308 | if 'ssh' in override: |
|
2309 | 2309 | ssh = True |
|
2310 | 2310 | del override['ssh'] |
|
2311 | 2311 | |
|
2312 | 2312 | # we didn't override our tmpl from **overrides |
|
2313 | 2313 | request = get_current_request() |
|
2314 | 2314 | if not uri_tmpl: |
|
2315 | 2315 | if hasattr(request, 'call_context') and hasattr(request.call_context, 'rc_config'): |
|
2316 | 2316 | rc_config = request.call_context.rc_config |
|
2317 | 2317 | else: |
|
2318 | 2318 | rc_config = SettingsModel().get_all_settings(cache=True) |
|
2319 | 2319 | |
|
2320 | 2320 | if ssh: |
|
2321 | 2321 | uri_tmpl = rc_config.get( |
|
2322 | 2322 | 'rhodecode_clone_uri_ssh_tmpl') or self.DEFAULT_CLONE_URI_SSH |
|
2323 | 2323 | |
|
2324 | 2324 | else: |
|
2325 | 2325 | uri_tmpl = rc_config.get( |
|
2326 | 2326 | 'rhodecode_clone_uri_tmpl') or self.DEFAULT_CLONE_URI |
|
2327 | 2327 | |
|
2328 | 2328 | return get_clone_url(request=request, |
|
2329 | 2329 | uri_tmpl=uri_tmpl, |
|
2330 | 2330 | repo_name=self.repo_name, |
|
2331 | 2331 | repo_id=self.repo_id, |
|
2332 | 2332 | repo_type=self.repo_type, |
|
2333 | 2333 | **override) |
|
2334 | 2334 | |
|
2335 | 2335 | def set_state(self, state): |
|
2336 | 2336 | self.repo_state = state |
|
2337 | 2337 | Session().add(self) |
|
2338 | 2338 | #========================================================================== |
|
2339 | 2339 | # SCM PROPERTIES |
|
2340 | 2340 | #========================================================================== |
|
2341 | 2341 | |
|
2342 | 2342 | def get_commit(self, commit_id=None, commit_idx=None, pre_load=None): |
|
2343 | 2343 | return get_commit_safe( |
|
2344 | 2344 | self.scm_instance(), commit_id, commit_idx, pre_load=pre_load) |
|
2345 | 2345 | |
|
2346 | 2346 | def get_changeset(self, rev=None, pre_load=None): |
|
2347 | 2347 | warnings.warn("Use get_commit", DeprecationWarning) |
|
2348 | 2348 | commit_id = None |
|
2349 | 2349 | commit_idx = None |
|
2350 | 2350 | if isinstance(rev, compat.string_types): |
|
2351 | 2351 | commit_id = rev |
|
2352 | 2352 | else: |
|
2353 | 2353 | commit_idx = rev |
|
2354 | 2354 | return self.get_commit(commit_id=commit_id, commit_idx=commit_idx, |
|
2355 | 2355 | pre_load=pre_load) |
|
2356 | 2356 | |
|
2357 | 2357 | def get_landing_commit(self): |
|
2358 | 2358 | """ |
|
2359 | 2359 | Returns landing commit, or if that doesn't exist returns the tip |
|
2360 | 2360 | """ |
|
2361 | 2361 | _rev_type, _rev = self.landing_rev |
|
2362 | 2362 | commit = self.get_commit(_rev) |
|
2363 | 2363 | if isinstance(commit, EmptyCommit): |
|
2364 | 2364 | return self.get_commit() |
|
2365 | 2365 | return commit |
|
2366 | 2366 | |
|
2367 | 2367 | def flush_commit_cache(self): |
|
2368 | 2368 | self.update_commit_cache(cs_cache={'raw_id':'0'}) |
|
2369 | 2369 | self.update_commit_cache() |
|
2370 | 2370 | |
|
2371 | 2371 | def update_commit_cache(self, cs_cache=None, config=None): |
|
2372 | 2372 | """ |
|
2373 | 2373 | Update cache of last commit for repository |
|
2374 | 2374 | cache_keys should be:: |
|
2375 | 2375 | |
|
2376 | 2376 | source_repo_id |
|
2377 | 2377 | short_id |
|
2378 | 2378 | raw_id |
|
2379 | 2379 | revision |
|
2380 | 2380 | parents |
|
2381 | 2381 | message |
|
2382 | 2382 | date |
|
2383 | 2383 | author |
|
2384 | 2384 | updated_on |
|
2385 | 2385 | |
|
2386 | 2386 | """ |
|
2387 | 2387 | from rhodecode.lib.vcs.backends.base import BaseChangeset |
|
2388 | 2388 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2389 | 2389 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2390 | 2390 | |
|
2391 | 2391 | if cs_cache is None: |
|
2392 | 2392 | # use no-cache version here |
|
2393 | 2393 | try: |
|
2394 | 2394 | scm_repo = self.scm_instance(cache=False, config=config) |
|
2395 | 2395 | except VCSError: |
|
2396 | 2396 | scm_repo = None |
|
2397 | 2397 | empty = scm_repo is None or scm_repo.is_empty() |
|
2398 | 2398 | |
|
2399 | 2399 | if not empty: |
|
2400 | 2400 | cs_cache = scm_repo.get_commit( |
|
2401 | 2401 | pre_load=["author", "date", "message", "parents", "branch"]) |
|
2402 | 2402 | else: |
|
2403 | 2403 | cs_cache = EmptyCommit() |
|
2404 | 2404 | |
|
2405 | 2405 | if isinstance(cs_cache, BaseChangeset): |
|
2406 | 2406 | cs_cache = cs_cache.__json__() |
|
2407 | 2407 | |
|
2408 | 2408 | def is_outdated(new_cs_cache): |
|
2409 | 2409 | if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or |
|
2410 | 2410 | new_cs_cache['revision'] != self.changeset_cache['revision']): |
|
2411 | 2411 | return True |
|
2412 | 2412 | return False |
|
2413 | 2413 | |
|
2414 | 2414 | # check if we have maybe already latest cached revision |
|
2415 | 2415 | if is_outdated(cs_cache) or not self.changeset_cache: |
|
2416 | 2416 | _current_datetime = datetime.datetime.utcnow() |
|
2417 | 2417 | last_change = cs_cache.get('date') or _current_datetime |
|
2418 | 2418 | # we check if last update is newer than the new value |
|
2419 | 2419 | # if yes, we use the current timestamp instead. Imagine you get |
|
2420 | 2420 | # old commit pushed 1y ago, we'd set last update 1y to ago. |
|
2421 | 2421 | last_change_timestamp = datetime_to_time(last_change) |
|
2422 | 2422 | current_timestamp = datetime_to_time(last_change) |
|
2423 | 2423 | if last_change_timestamp > current_timestamp and not empty: |
|
2424 | 2424 | cs_cache['date'] = _current_datetime |
|
2425 | 2425 | |
|
2426 | 2426 | _date_latest = parse_datetime(cs_cache.get('date') or empty_date) |
|
2427 | 2427 | cs_cache['updated_on'] = time.time() |
|
2428 | 2428 | self.changeset_cache = cs_cache |
|
2429 | 2429 | self.updated_on = last_change |
|
2430 | 2430 | Session().add(self) |
|
2431 | 2431 | Session().commit() |
|
2432 | 2432 | |
|
2433 | 2433 | else: |
|
2434 | 2434 | if empty: |
|
2435 | 2435 | cs_cache = EmptyCommit().__json__() |
|
2436 | 2436 | else: |
|
2437 | 2437 | cs_cache = self.changeset_cache |
|
2438 | 2438 | |
|
2439 | 2439 | _date_latest = parse_datetime(cs_cache.get('date') or empty_date) |
|
2440 | 2440 | |
|
2441 | 2441 | cs_cache['updated_on'] = time.time() |
|
2442 | 2442 | self.changeset_cache = cs_cache |
|
2443 | 2443 | self.updated_on = _date_latest |
|
2444 | 2444 | Session().add(self) |
|
2445 | 2445 | Session().commit() |
|
2446 | 2446 | |
|
2447 | 2447 | log.debug('updated repo `%s` with new commit cache %s, and last update_date: %s', |
|
2448 | 2448 | self.repo_name, cs_cache, _date_latest) |
|
2449 | 2449 | |
|
2450 | 2450 | @property |
|
2451 | 2451 | def tip(self): |
|
2452 | 2452 | return self.get_commit('tip') |
|
2453 | 2453 | |
|
2454 | 2454 | @property |
|
2455 | 2455 | def author(self): |
|
2456 | 2456 | return self.tip.author |
|
2457 | 2457 | |
|
2458 | 2458 | @property |
|
2459 | 2459 | def last_change(self): |
|
2460 | 2460 | return self.scm_instance().last_change |
|
2461 | 2461 | |
|
2462 | 2462 | def get_comments(self, revisions=None): |
|
2463 | 2463 | """ |
|
2464 | 2464 | Returns comments for this repository grouped by revisions |
|
2465 | 2465 | |
|
2466 | 2466 | :param revisions: filter query by revisions only |
|
2467 | 2467 | """ |
|
2468 | 2468 | cmts = ChangesetComment.query()\ |
|
2469 | 2469 | .filter(ChangesetComment.repo == self) |
|
2470 | 2470 | if revisions: |
|
2471 | 2471 | cmts = cmts.filter(ChangesetComment.revision.in_(revisions)) |
|
2472 | 2472 | grouped = collections.defaultdict(list) |
|
2473 | 2473 | for cmt in cmts.all(): |
|
2474 | 2474 | grouped[cmt.revision].append(cmt) |
|
2475 | 2475 | return grouped |
|
2476 | 2476 | |
|
2477 | 2477 | def statuses(self, revisions=None): |
|
2478 | 2478 | """ |
|
2479 | 2479 | Returns statuses for this repository |
|
2480 | 2480 | |
|
2481 | 2481 | :param revisions: list of revisions to get statuses for |
|
2482 | 2482 | """ |
|
2483 | 2483 | statuses = ChangesetStatus.query()\ |
|
2484 | 2484 | .filter(ChangesetStatus.repo == self)\ |
|
2485 | 2485 | .filter(ChangesetStatus.version == 0) |
|
2486 | 2486 | |
|
2487 | 2487 | if revisions: |
|
2488 | 2488 | # Try doing the filtering in chunks to avoid hitting limits |
|
2489 | 2489 | size = 500 |
|
2490 | 2490 | status_results = [] |
|
2491 | 2491 | for chunk in xrange(0, len(revisions), size): |
|
2492 | 2492 | status_results += statuses.filter( |
|
2493 | 2493 | ChangesetStatus.revision.in_( |
|
2494 | 2494 | revisions[chunk: chunk+size]) |
|
2495 | 2495 | ).all() |
|
2496 | 2496 | else: |
|
2497 | 2497 | status_results = statuses.all() |
|
2498 | 2498 | |
|
2499 | 2499 | grouped = {} |
|
2500 | 2500 | |
|
2501 | 2501 | # maybe we have open new pullrequest without a status? |
|
2502 | 2502 | stat = ChangesetStatus.STATUS_UNDER_REVIEW |
|
2503 | 2503 | status_lbl = ChangesetStatus.get_status_lbl(stat) |
|
2504 | 2504 | for pr in PullRequest.query().filter(PullRequest.source_repo == self).all(): |
|
2505 | 2505 | for rev in pr.revisions: |
|
2506 | 2506 | pr_id = pr.pull_request_id |
|
2507 | 2507 | pr_repo = pr.target_repo.repo_name |
|
2508 | 2508 | grouped[rev] = [stat, status_lbl, pr_id, pr_repo] |
|
2509 | 2509 | |
|
2510 | 2510 | for stat in status_results: |
|
2511 | 2511 | pr_id = pr_repo = None |
|
2512 | 2512 | if stat.pull_request: |
|
2513 | 2513 | pr_id = stat.pull_request.pull_request_id |
|
2514 | 2514 | pr_repo = stat.pull_request.target_repo.repo_name |
|
2515 | 2515 | grouped[stat.revision] = [str(stat.status), stat.status_lbl, |
|
2516 | 2516 | pr_id, pr_repo] |
|
2517 | 2517 | return grouped |
|
2518 | 2518 | |
|
2519 | 2519 | # ========================================================================== |
|
2520 | 2520 | # SCM CACHE INSTANCE |
|
2521 | 2521 | # ========================================================================== |
|
2522 | 2522 | |
|
2523 | 2523 | def scm_instance(self, **kwargs): |
|
2524 | 2524 | import rhodecode |
|
2525 | 2525 | |
|
2526 | 2526 | # Passing a config will not hit the cache currently only used |
|
2527 | 2527 | # for repo2dbmapper |
|
2528 | 2528 | config = kwargs.pop('config', None) |
|
2529 | 2529 | cache = kwargs.pop('cache', None) |
|
2530 | 2530 | vcs_full_cache = kwargs.pop('vcs_full_cache', None) |
|
2531 | 2531 | if vcs_full_cache is not None: |
|
2532 | 2532 | # allows override global config |
|
2533 | 2533 | full_cache = vcs_full_cache |
|
2534 | 2534 | else: |
|
2535 | 2535 | full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache')) |
|
2536 | 2536 | # if cache is NOT defined use default global, else we have a full |
|
2537 | 2537 | # control over cache behaviour |
|
2538 | 2538 | if cache is None and full_cache and not config: |
|
2539 | 2539 | log.debug('Initializing pure cached instance for %s', self.repo_path) |
|
2540 | 2540 | return self._get_instance_cached() |
|
2541 | 2541 | |
|
2542 | 2542 | # cache here is sent to the "vcs server" |
|
2543 | 2543 | return self._get_instance(cache=bool(cache), config=config) |
|
2544 | 2544 | |
|
2545 | 2545 | def _get_instance_cached(self): |
|
2546 | 2546 | from rhodecode.lib import rc_cache |
|
2547 | 2547 | |
|
2548 | 2548 | cache_namespace_uid = 'cache_repo_instance.{}'.format(self.repo_id) |
|
2549 | 2549 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
2550 | 2550 | repo_id=self.repo_id) |
|
2551 | 2551 | region = rc_cache.get_or_create_region('cache_repo_longterm', cache_namespace_uid) |
|
2552 | 2552 | |
|
2553 | 2553 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid) |
|
2554 | 2554 | def get_instance_cached(repo_id, context_id, _cache_state_uid): |
|
2555 | 2555 | return self._get_instance(repo_state_uid=_cache_state_uid) |
|
2556 | 2556 | |
|
2557 | 2557 | # we must use thread scoped cache here, |
|
2558 | 2558 | # because each thread of gevent needs it's own not shared connection and cache |
|
2559 | 2559 | # we also alter `args` so the cache key is individual for every green thread. |
|
2560 | 2560 | inv_context_manager = rc_cache.InvalidationContext( |
|
2561 | 2561 | uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace, |
|
2562 | 2562 | thread_scoped=True) |
|
2563 | 2563 | with inv_context_manager as invalidation_context: |
|
2564 | 2564 | cache_state_uid = invalidation_context.cache_data['cache_state_uid'] |
|
2565 | 2565 | args = (self.repo_id, inv_context_manager.cache_key, cache_state_uid) |
|
2566 | 2566 | |
|
2567 | 2567 | # re-compute and store cache if we get invalidate signal |
|
2568 | 2568 | if invalidation_context.should_invalidate(): |
|
2569 | 2569 | instance = get_instance_cached.refresh(*args) |
|
2570 | 2570 | else: |
|
2571 | 2571 | instance = get_instance_cached(*args) |
|
2572 | 2572 | |
|
2573 | 2573 | log.debug('Repo instance fetched in %.4fs', inv_context_manager.compute_time) |
|
2574 | 2574 | return instance |
|
2575 | 2575 | |
|
2576 | 2576 | def _get_instance(self, cache=True, config=None, repo_state_uid=None): |
|
2577 | 2577 | log.debug('Initializing %s instance `%s` with cache flag set to: %s', |
|
2578 | 2578 | self.repo_type, self.repo_path, cache) |
|
2579 | 2579 | config = config or self._config |
|
2580 | 2580 | custom_wire = { |
|
2581 | 2581 | 'cache': cache, # controls the vcs.remote cache |
|
2582 | 2582 | 'repo_state_uid': repo_state_uid |
|
2583 | 2583 | } |
|
2584 | 2584 | repo = get_vcs_instance( |
|
2585 | 2585 | repo_path=safe_str(self.repo_full_path), |
|
2586 | 2586 | config=config, |
|
2587 | 2587 | with_wire=custom_wire, |
|
2588 | 2588 | create=False, |
|
2589 | 2589 | _vcs_alias=self.repo_type) |
|
2590 | 2590 | if repo is not None: |
|
2591 | 2591 | repo.count() # cache rebuild |
|
2592 | 2592 | return repo |
|
2593 | 2593 | |
|
2594 | 2594 | def get_shadow_repository_path(self, workspace_id): |
|
2595 | 2595 | from rhodecode.lib.vcs.backends.base import BaseRepository |
|
2596 | 2596 | shadow_repo_path = BaseRepository._get_shadow_repository_path( |
|
2597 | 2597 | self.repo_full_path, self.repo_id, workspace_id) |
|
2598 | 2598 | return shadow_repo_path |
|
2599 | 2599 | |
|
2600 | 2600 | def __json__(self): |
|
2601 | 2601 | return {'landing_rev': self.landing_rev} |
|
2602 | 2602 | |
|
2603 | 2603 | def get_dict(self): |
|
2604 | 2604 | |
|
2605 | 2605 | # Since we transformed `repo_name` to a hybrid property, we need to |
|
2606 | 2606 | # keep compatibility with the code which uses `repo_name` field. |
|
2607 | 2607 | |
|
2608 | 2608 | result = super(Repository, self).get_dict() |
|
2609 | 2609 | result['repo_name'] = result.pop('_repo_name', None) |
|
2610 | 2610 | return result |
|
2611 | 2611 | |
|
2612 | 2612 | |
|
2613 | 2613 | class RepoGroup(Base, BaseModel): |
|
2614 | 2614 | __tablename__ = 'groups' |
|
2615 | 2615 | __table_args__ = ( |
|
2616 | 2616 | UniqueConstraint('group_name', 'group_parent_id'), |
|
2617 | 2617 | base_table_args, |
|
2618 | 2618 | ) |
|
2619 | 2619 | __mapper_args__ = {'order_by': 'group_name'} |
|
2620 | 2620 | |
|
2621 | 2621 | CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups |
|
2622 | 2622 | |
|
2623 | 2623 | group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2624 | 2624 | _group_name = Column("group_name", String(255), nullable=False, unique=True, default=None) |
|
2625 | 2625 | group_name_hash = Column("repo_group_name_hash", String(1024), nullable=False, unique=False) |
|
2626 | 2626 | group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None) |
|
2627 | 2627 | group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None) |
|
2628 | 2628 | enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False) |
|
2629 | 2629 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
2630 | 2630 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
2631 | 2631 | updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
2632 | 2632 | personal = Column('personal', Boolean(), nullable=True, unique=None, default=None) |
|
2633 | 2633 | _changeset_cache = Column("changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
2634 | 2634 | |
|
2635 | 2635 | repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id') |
|
2636 | 2636 | users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
2637 | 2637 | parent_group = relationship('RepoGroup', remote_side=group_id) |
|
2638 | 2638 | user = relationship('User') |
|
2639 | 2639 | integrations = relationship('Integration', cascade="all, delete-orphan") |
|
2640 | 2640 | |
|
2641 | 2641 | # no cascade, set NULL |
|
2642 | 2642 | scope_artifacts = relationship('FileStore', primaryjoin='FileStore.scope_repo_group_id==RepoGroup.group_id') |
|
2643 | 2643 | |
|
2644 | 2644 | def __init__(self, group_name='', parent_group=None): |
|
2645 | 2645 | self.group_name = group_name |
|
2646 | 2646 | self.parent_group = parent_group |
|
2647 | 2647 | |
|
2648 | 2648 | def __unicode__(self): |
|
2649 | 2649 | return u"<%s('id:%s:%s')>" % ( |
|
2650 | 2650 | self.__class__.__name__, self.group_id, self.group_name) |
|
2651 | 2651 | |
|
2652 | 2652 | @hybrid_property |
|
2653 | 2653 | def group_name(self): |
|
2654 | 2654 | return self._group_name |
|
2655 | 2655 | |
|
2656 | 2656 | @group_name.setter |
|
2657 | 2657 | def group_name(self, value): |
|
2658 | 2658 | self._group_name = value |
|
2659 | 2659 | self.group_name_hash = self.hash_repo_group_name(value) |
|
2660 | 2660 | |
|
2661 | 2661 | @classmethod |
|
2662 | 2662 | def _load_changeset_cache(cls, repo_id, changeset_cache_raw): |
|
2663 | 2663 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
2664 | 2664 | dummy = EmptyCommit().__json__() |
|
2665 | 2665 | if not changeset_cache_raw: |
|
2666 | 2666 | dummy['source_repo_id'] = repo_id |
|
2667 | 2667 | return json.loads(json.dumps(dummy)) |
|
2668 | 2668 | |
|
2669 | 2669 | try: |
|
2670 | 2670 | return json.loads(changeset_cache_raw) |
|
2671 | 2671 | except TypeError: |
|
2672 | 2672 | return dummy |
|
2673 | 2673 | except Exception: |
|
2674 | 2674 | log.error(traceback.format_exc()) |
|
2675 | 2675 | return dummy |
|
2676 | 2676 | |
|
2677 | 2677 | @hybrid_property |
|
2678 | 2678 | def changeset_cache(self): |
|
2679 | 2679 | return self._load_changeset_cache('', self._changeset_cache) |
|
2680 | 2680 | |
|
2681 | 2681 | @changeset_cache.setter |
|
2682 | 2682 | def changeset_cache(self, val): |
|
2683 | 2683 | try: |
|
2684 | 2684 | self._changeset_cache = json.dumps(val) |
|
2685 | 2685 | except Exception: |
|
2686 | 2686 | log.error(traceback.format_exc()) |
|
2687 | 2687 | |
|
2688 | 2688 | @validates('group_parent_id') |
|
2689 | 2689 | def validate_group_parent_id(self, key, val): |
|
2690 | 2690 | """ |
|
2691 | 2691 | Check cycle references for a parent group to self |
|
2692 | 2692 | """ |
|
2693 | 2693 | if self.group_id and val: |
|
2694 | 2694 | assert val != self.group_id |
|
2695 | 2695 | |
|
2696 | 2696 | return val |
|
2697 | 2697 | |
|
2698 | 2698 | @hybrid_property |
|
2699 | 2699 | def description_safe(self): |
|
2700 | 2700 | from rhodecode.lib import helpers as h |
|
2701 | 2701 | return h.escape(self.group_description) |
|
2702 | 2702 | |
|
2703 | 2703 | @classmethod |
|
2704 | 2704 | def hash_repo_group_name(cls, repo_group_name): |
|
2705 | 2705 | val = remove_formatting(repo_group_name) |
|
2706 | 2706 | val = safe_str(val).lower() |
|
2707 | 2707 | chars = [] |
|
2708 | 2708 | for c in val: |
|
2709 | 2709 | if c not in string.ascii_letters: |
|
2710 | 2710 | c = str(ord(c)) |
|
2711 | 2711 | chars.append(c) |
|
2712 | 2712 | |
|
2713 | 2713 | return ''.join(chars) |
|
2714 | 2714 | |
|
2715 | 2715 | @classmethod |
|
2716 | 2716 | def _generate_choice(cls, repo_group): |
|
2717 | 2717 | from webhelpers2.html import literal as _literal |
|
2718 | 2718 | _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k)) |
|
2719 | 2719 | return repo_group.group_id, _name(repo_group.full_path_splitted) |
|
2720 | 2720 | |
|
2721 | 2721 | @classmethod |
|
2722 | 2722 | def groups_choices(cls, groups=None, show_empty_group=True): |
|
2723 | 2723 | if not groups: |
|
2724 | 2724 | groups = cls.query().all() |
|
2725 | 2725 | |
|
2726 | 2726 | repo_groups = [] |
|
2727 | 2727 | if show_empty_group: |
|
2728 | 2728 | repo_groups = [(-1, u'-- %s --' % _('No parent'))] |
|
2729 | 2729 | |
|
2730 | 2730 | repo_groups.extend([cls._generate_choice(x) for x in groups]) |
|
2731 | 2731 | |
|
2732 | 2732 | repo_groups = sorted( |
|
2733 | 2733 | repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0]) |
|
2734 | 2734 | return repo_groups |
|
2735 | 2735 | |
|
2736 | 2736 | @classmethod |
|
2737 | 2737 | def url_sep(cls): |
|
2738 | 2738 | return URL_SEP |
|
2739 | 2739 | |
|
2740 | 2740 | @classmethod |
|
2741 | 2741 | def get_by_group_name(cls, group_name, cache=False, case_insensitive=False): |
|
2742 | 2742 | if case_insensitive: |
|
2743 | 2743 | gr = cls.query().filter(func.lower(cls.group_name) |
|
2744 | 2744 | == func.lower(group_name)) |
|
2745 | 2745 | else: |
|
2746 | 2746 | gr = cls.query().filter(cls.group_name == group_name) |
|
2747 | 2747 | if cache: |
|
2748 | 2748 | name_key = _hash_key(group_name) |
|
2749 | 2749 | gr = gr.options( |
|
2750 | 2750 | FromCache("sql_cache_short", "get_group_%s" % name_key)) |
|
2751 | 2751 | return gr.scalar() |
|
2752 | 2752 | |
|
2753 | 2753 | @classmethod |
|
2754 | 2754 | def get_user_personal_repo_group(cls, user_id): |
|
2755 | 2755 | user = User.get(user_id) |
|
2756 | 2756 | if user.username == User.DEFAULT_USER: |
|
2757 | 2757 | return None |
|
2758 | 2758 | |
|
2759 | 2759 | return cls.query()\ |
|
2760 | 2760 | .filter(cls.personal == true()) \ |
|
2761 | 2761 | .filter(cls.user == user) \ |
|
2762 | 2762 | .order_by(cls.group_id.asc()) \ |
|
2763 | 2763 | .first() |
|
2764 | 2764 | |
|
2765 | 2765 | @classmethod |
|
2766 | 2766 | def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None), |
|
2767 | 2767 | case_insensitive=True): |
|
2768 | 2768 | q = RepoGroup.query() |
|
2769 | 2769 | |
|
2770 | 2770 | if not isinstance(user_id, Optional): |
|
2771 | 2771 | q = q.filter(RepoGroup.user_id == user_id) |
|
2772 | 2772 | |
|
2773 | 2773 | if not isinstance(group_id, Optional): |
|
2774 | 2774 | q = q.filter(RepoGroup.group_parent_id == group_id) |
|
2775 | 2775 | |
|
2776 | 2776 | if case_insensitive: |
|
2777 | 2777 | q = q.order_by(func.lower(RepoGroup.group_name)) |
|
2778 | 2778 | else: |
|
2779 | 2779 | q = q.order_by(RepoGroup.group_name) |
|
2780 | 2780 | return q.all() |
|
2781 | 2781 | |
|
2782 | 2782 | @property |
|
2783 | 2783 | def parents(self, parents_recursion_limit=10): |
|
2784 | 2784 | groups = [] |
|
2785 | 2785 | if self.parent_group is None: |
|
2786 | 2786 | return groups |
|
2787 | 2787 | cur_gr = self.parent_group |
|
2788 | 2788 | groups.insert(0, cur_gr) |
|
2789 | 2789 | cnt = 0 |
|
2790 | 2790 | while 1: |
|
2791 | 2791 | cnt += 1 |
|
2792 | 2792 | gr = getattr(cur_gr, 'parent_group', None) |
|
2793 | 2793 | cur_gr = cur_gr.parent_group |
|
2794 | 2794 | if gr is None: |
|
2795 | 2795 | break |
|
2796 | 2796 | if cnt == parents_recursion_limit: |
|
2797 | 2797 | # this will prevent accidental infinit loops |
|
2798 | 2798 | log.error('more than %s parents found for group %s, stopping ' |
|
2799 | 2799 | 'recursive parent fetching', parents_recursion_limit, self) |
|
2800 | 2800 | break |
|
2801 | 2801 | |
|
2802 | 2802 | groups.insert(0, gr) |
|
2803 | 2803 | return groups |
|
2804 | 2804 | |
|
2805 | 2805 | @property |
|
2806 | 2806 | def last_commit_cache_update_diff(self): |
|
2807 | 2807 | return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0) |
|
2808 | 2808 | |
|
2809 | 2809 | @classmethod |
|
2810 | 2810 | def _load_commit_change(cls, last_commit_cache): |
|
2811 | 2811 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2812 | 2812 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2813 | 2813 | date_latest = last_commit_cache.get('date', empty_date) |
|
2814 | 2814 | try: |
|
2815 | 2815 | return parse_datetime(date_latest) |
|
2816 | 2816 | except Exception: |
|
2817 | 2817 | return empty_date |
|
2818 | 2818 | |
|
2819 | 2819 | @property |
|
2820 | 2820 | def last_commit_change(self): |
|
2821 | 2821 | return self._load_commit_change(self.changeset_cache) |
|
2822 | 2822 | |
|
2823 | 2823 | @property |
|
2824 | 2824 | def last_db_change(self): |
|
2825 | 2825 | return self.updated_on |
|
2826 | 2826 | |
|
2827 | 2827 | @property |
|
2828 | 2828 | def children(self): |
|
2829 | 2829 | return RepoGroup.query().filter(RepoGroup.parent_group == self) |
|
2830 | 2830 | |
|
2831 | 2831 | @property |
|
2832 | 2832 | def name(self): |
|
2833 | 2833 | return self.group_name.split(RepoGroup.url_sep())[-1] |
|
2834 | 2834 | |
|
2835 | 2835 | @property |
|
2836 | 2836 | def full_path(self): |
|
2837 | 2837 | return self.group_name |
|
2838 | 2838 | |
|
2839 | 2839 | @property |
|
2840 | 2840 | def full_path_splitted(self): |
|
2841 | 2841 | return self.group_name.split(RepoGroup.url_sep()) |
|
2842 | 2842 | |
|
2843 | 2843 | @property |
|
2844 | 2844 | def repositories(self): |
|
2845 | 2845 | return Repository.query()\ |
|
2846 | 2846 | .filter(Repository.group == self)\ |
|
2847 | 2847 | .order_by(Repository.repo_name) |
|
2848 | 2848 | |
|
2849 | 2849 | @property |
|
2850 | 2850 | def repositories_recursive_count(self): |
|
2851 | 2851 | cnt = self.repositories.count() |
|
2852 | 2852 | |
|
2853 | 2853 | def children_count(group): |
|
2854 | 2854 | cnt = 0 |
|
2855 | 2855 | for child in group.children: |
|
2856 | 2856 | cnt += child.repositories.count() |
|
2857 | 2857 | cnt += children_count(child) |
|
2858 | 2858 | return cnt |
|
2859 | 2859 | |
|
2860 | 2860 | return cnt + children_count(self) |
|
2861 | 2861 | |
|
2862 | 2862 | def _recursive_objects(self, include_repos=True, include_groups=True): |
|
2863 | 2863 | all_ = [] |
|
2864 | 2864 | |
|
2865 | 2865 | def _get_members(root_gr): |
|
2866 | 2866 | if include_repos: |
|
2867 | 2867 | for r in root_gr.repositories: |
|
2868 | 2868 | all_.append(r) |
|
2869 | 2869 | childs = root_gr.children.all() |
|
2870 | 2870 | if childs: |
|
2871 | 2871 | for gr in childs: |
|
2872 | 2872 | if include_groups: |
|
2873 | 2873 | all_.append(gr) |
|
2874 | 2874 | _get_members(gr) |
|
2875 | 2875 | |
|
2876 | 2876 | root_group = [] |
|
2877 | 2877 | if include_groups: |
|
2878 | 2878 | root_group = [self] |
|
2879 | 2879 | |
|
2880 | 2880 | _get_members(self) |
|
2881 | 2881 | return root_group + all_ |
|
2882 | 2882 | |
|
2883 | 2883 | def recursive_groups_and_repos(self): |
|
2884 | 2884 | """ |
|
2885 | 2885 | Recursive return all groups, with repositories in those groups |
|
2886 | 2886 | """ |
|
2887 | 2887 | return self._recursive_objects() |
|
2888 | 2888 | |
|
2889 | 2889 | def recursive_groups(self): |
|
2890 | 2890 | """ |
|
2891 | 2891 | Returns all children groups for this group including children of children |
|
2892 | 2892 | """ |
|
2893 | 2893 | return self._recursive_objects(include_repos=False) |
|
2894 | 2894 | |
|
2895 | 2895 | def recursive_repos(self): |
|
2896 | 2896 | """ |
|
2897 | 2897 | Returns all children repositories for this group |
|
2898 | 2898 | """ |
|
2899 | 2899 | return self._recursive_objects(include_groups=False) |
|
2900 | 2900 | |
|
2901 | 2901 | def get_new_name(self, group_name): |
|
2902 | 2902 | """ |
|
2903 | 2903 | returns new full group name based on parent and new name |
|
2904 | 2904 | |
|
2905 | 2905 | :param group_name: |
|
2906 | 2906 | """ |
|
2907 | 2907 | path_prefix = (self.parent_group.full_path_splitted if |
|
2908 | 2908 | self.parent_group else []) |
|
2909 | 2909 | return RepoGroup.url_sep().join(path_prefix + [group_name]) |
|
2910 | 2910 | |
|
2911 | 2911 | def update_commit_cache(self, config=None): |
|
2912 | 2912 | """ |
|
2913 | 2913 | Update cache of last commit for newest repository inside this repository group. |
|
2914 | 2914 | cache_keys should be:: |
|
2915 | 2915 | |
|
2916 | 2916 | source_repo_id |
|
2917 | 2917 | short_id |
|
2918 | 2918 | raw_id |
|
2919 | 2919 | revision |
|
2920 | 2920 | parents |
|
2921 | 2921 | message |
|
2922 | 2922 | date |
|
2923 | 2923 | author |
|
2924 | 2924 | |
|
2925 | 2925 | """ |
|
2926 | 2926 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2927 | 2927 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2928 | 2928 | |
|
2929 | 2929 | def repo_groups_and_repos(root_gr): |
|
2930 | 2930 | for _repo in root_gr.repositories: |
|
2931 | 2931 | yield _repo |
|
2932 | 2932 | for child_group in root_gr.children.all(): |
|
2933 | 2933 | yield child_group |
|
2934 | 2934 | |
|
2935 | 2935 | latest_repo_cs_cache = {} |
|
2936 | 2936 | for obj in repo_groups_and_repos(self): |
|
2937 | 2937 | repo_cs_cache = obj.changeset_cache |
|
2938 | 2938 | date_latest = latest_repo_cs_cache.get('date', empty_date) |
|
2939 | 2939 | date_current = repo_cs_cache.get('date', empty_date) |
|
2940 | 2940 | current_timestamp = datetime_to_time(parse_datetime(date_latest)) |
|
2941 | 2941 | if current_timestamp < datetime_to_time(parse_datetime(date_current)): |
|
2942 | 2942 | latest_repo_cs_cache = repo_cs_cache |
|
2943 | 2943 | if hasattr(obj, 'repo_id'): |
|
2944 | 2944 | latest_repo_cs_cache['source_repo_id'] = obj.repo_id |
|
2945 | 2945 | else: |
|
2946 | 2946 | latest_repo_cs_cache['source_repo_id'] = repo_cs_cache.get('source_repo_id') |
|
2947 | 2947 | |
|
2948 | 2948 | _date_latest = parse_datetime(latest_repo_cs_cache.get('date') or empty_date) |
|
2949 | 2949 | |
|
2950 | 2950 | latest_repo_cs_cache['updated_on'] = time.time() |
|
2951 | 2951 | self.changeset_cache = latest_repo_cs_cache |
|
2952 | 2952 | self.updated_on = _date_latest |
|
2953 | 2953 | Session().add(self) |
|
2954 | 2954 | Session().commit() |
|
2955 | 2955 | |
|
2956 | 2956 | log.debug('updated repo group `%s` with new commit cache %s, and last update_date: %s', |
|
2957 | 2957 | self.group_name, latest_repo_cs_cache, _date_latest) |
|
2958 | 2958 | |
|
2959 | 2959 | def permissions(self, with_admins=True, with_owner=True, |
|
2960 | 2960 | expand_from_user_groups=False): |
|
2961 | 2961 | """ |
|
2962 | 2962 | Permissions for repository groups |
|
2963 | 2963 | """ |
|
2964 | 2964 | _admin_perm = 'group.admin' |
|
2965 | 2965 | |
|
2966 | 2966 | owner_row = [] |
|
2967 | 2967 | if with_owner: |
|
2968 | 2968 | usr = AttributeDict(self.user.get_dict()) |
|
2969 | 2969 | usr.owner_row = True |
|
2970 | 2970 | usr.permission = _admin_perm |
|
2971 | 2971 | owner_row.append(usr) |
|
2972 | 2972 | |
|
2973 | 2973 | super_admin_ids = [] |
|
2974 | 2974 | super_admin_rows = [] |
|
2975 | 2975 | if with_admins: |
|
2976 | 2976 | for usr in User.get_all_super_admins(): |
|
2977 | 2977 | super_admin_ids.append(usr.user_id) |
|
2978 | 2978 | # if this admin is also owner, don't double the record |
|
2979 | 2979 | if usr.user_id == owner_row[0].user_id: |
|
2980 | 2980 | owner_row[0].admin_row = True |
|
2981 | 2981 | else: |
|
2982 | 2982 | usr = AttributeDict(usr.get_dict()) |
|
2983 | 2983 | usr.admin_row = True |
|
2984 | 2984 | usr.permission = _admin_perm |
|
2985 | 2985 | super_admin_rows.append(usr) |
|
2986 | 2986 | |
|
2987 | 2987 | q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self) |
|
2988 | 2988 | q = q.options(joinedload(UserRepoGroupToPerm.group), |
|
2989 | 2989 | joinedload(UserRepoGroupToPerm.user), |
|
2990 | 2990 | joinedload(UserRepoGroupToPerm.permission),) |
|
2991 | 2991 | |
|
2992 | 2992 | # get owners and admins and permissions. We do a trick of re-writing |
|
2993 | 2993 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
2994 | 2994 | # has a global reference and changing one object propagates to all |
|
2995 | 2995 | # others. This means if admin is also an owner admin_row that change |
|
2996 | 2996 | # would propagate to both objects |
|
2997 | 2997 | perm_rows = [] |
|
2998 | 2998 | for _usr in q.all(): |
|
2999 | 2999 | usr = AttributeDict(_usr.user.get_dict()) |
|
3000 | 3000 | # if this user is also owner/admin, mark as duplicate record |
|
3001 | 3001 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
3002 | 3002 | usr.duplicate_perm = True |
|
3003 | 3003 | usr.permission = _usr.permission.permission_name |
|
3004 | 3004 | perm_rows.append(usr) |
|
3005 | 3005 | |
|
3006 | 3006 | # filter the perm rows by 'default' first and then sort them by |
|
3007 | 3007 | # admin,write,read,none permissions sorted again alphabetically in |
|
3008 | 3008 | # each group |
|
3009 | 3009 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
3010 | 3010 | |
|
3011 | 3011 | user_groups_rows = [] |
|
3012 | 3012 | if expand_from_user_groups: |
|
3013 | 3013 | for ug in self.permission_user_groups(with_members=True): |
|
3014 | 3014 | for user_data in ug.members: |
|
3015 | 3015 | user_groups_rows.append(user_data) |
|
3016 | 3016 | |
|
3017 | 3017 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
3018 | 3018 | |
|
3019 | 3019 | def permission_user_groups(self, with_members=False): |
|
3020 | 3020 | q = UserGroupRepoGroupToPerm.query()\ |
|
3021 | 3021 | .filter(UserGroupRepoGroupToPerm.group == self) |
|
3022 | 3022 | q = q.options(joinedload(UserGroupRepoGroupToPerm.group), |
|
3023 | 3023 | joinedload(UserGroupRepoGroupToPerm.users_group), |
|
3024 | 3024 | joinedload(UserGroupRepoGroupToPerm.permission),) |
|
3025 | 3025 | |
|
3026 | 3026 | perm_rows = [] |
|
3027 | 3027 | for _user_group in q.all(): |
|
3028 | 3028 | entry = AttributeDict(_user_group.users_group.get_dict()) |
|
3029 | 3029 | entry.permission = _user_group.permission.permission_name |
|
3030 | 3030 | if with_members: |
|
3031 | 3031 | entry.members = [x.user.get_dict() |
|
3032 | 3032 | for x in _user_group.users_group.members] |
|
3033 | 3033 | perm_rows.append(entry) |
|
3034 | 3034 | |
|
3035 | 3035 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
3036 | 3036 | return perm_rows |
|
3037 | 3037 | |
|
3038 | 3038 | def get_api_data(self): |
|
3039 | 3039 | """ |
|
3040 | 3040 | Common function for generating api data |
|
3041 | 3041 | |
|
3042 | 3042 | """ |
|
3043 | 3043 | group = self |
|
3044 | 3044 | data = { |
|
3045 | 3045 | 'group_id': group.group_id, |
|
3046 | 3046 | 'group_name': group.group_name, |
|
3047 | 3047 | 'group_description': group.description_safe, |
|
3048 | 3048 | 'parent_group': group.parent_group.group_name if group.parent_group else None, |
|
3049 | 3049 | 'repositories': [x.repo_name for x in group.repositories], |
|
3050 | 3050 | 'owner': group.user.username, |
|
3051 | 3051 | } |
|
3052 | 3052 | return data |
|
3053 | 3053 | |
|
3054 | 3054 | def get_dict(self): |
|
3055 | 3055 | # Since we transformed `group_name` to a hybrid property, we need to |
|
3056 | 3056 | # keep compatibility with the code which uses `group_name` field. |
|
3057 | 3057 | result = super(RepoGroup, self).get_dict() |
|
3058 | 3058 | result['group_name'] = result.pop('_group_name', None) |
|
3059 | 3059 | return result |
|
3060 | 3060 | |
|
3061 | 3061 | |
|
3062 | 3062 | class Permission(Base, BaseModel): |
|
3063 | 3063 | __tablename__ = 'permissions' |
|
3064 | 3064 | __table_args__ = ( |
|
3065 | 3065 | Index('p_perm_name_idx', 'permission_name'), |
|
3066 | 3066 | base_table_args, |
|
3067 | 3067 | ) |
|
3068 | 3068 | |
|
3069 | 3069 | PERMS = [ |
|
3070 | 3070 | ('hg.admin', _('RhodeCode Super Administrator')), |
|
3071 | 3071 | |
|
3072 | 3072 | ('repository.none', _('Repository no access')), |
|
3073 | 3073 | ('repository.read', _('Repository read access')), |
|
3074 | 3074 | ('repository.write', _('Repository write access')), |
|
3075 | 3075 | ('repository.admin', _('Repository admin access')), |
|
3076 | 3076 | |
|
3077 | 3077 | ('group.none', _('Repository group no access')), |
|
3078 | 3078 | ('group.read', _('Repository group read access')), |
|
3079 | 3079 | ('group.write', _('Repository group write access')), |
|
3080 | 3080 | ('group.admin', _('Repository group admin access')), |
|
3081 | 3081 | |
|
3082 | 3082 | ('usergroup.none', _('User group no access')), |
|
3083 | 3083 | ('usergroup.read', _('User group read access')), |
|
3084 | 3084 | ('usergroup.write', _('User group write access')), |
|
3085 | 3085 | ('usergroup.admin', _('User group admin access')), |
|
3086 | 3086 | |
|
3087 | 3087 | ('branch.none', _('Branch no permissions')), |
|
3088 | 3088 | ('branch.merge', _('Branch access by web merge')), |
|
3089 | 3089 | ('branch.push', _('Branch access by push')), |
|
3090 | 3090 | ('branch.push_force', _('Branch access by push with force')), |
|
3091 | 3091 | |
|
3092 | 3092 | ('hg.repogroup.create.false', _('Repository Group creation disabled')), |
|
3093 | 3093 | ('hg.repogroup.create.true', _('Repository Group creation enabled')), |
|
3094 | 3094 | |
|
3095 | 3095 | ('hg.usergroup.create.false', _('User Group creation disabled')), |
|
3096 | 3096 | ('hg.usergroup.create.true', _('User Group creation enabled')), |
|
3097 | 3097 | |
|
3098 | 3098 | ('hg.create.none', _('Repository creation disabled')), |
|
3099 | 3099 | ('hg.create.repository', _('Repository creation enabled')), |
|
3100 | 3100 | ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')), |
|
3101 | 3101 | ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')), |
|
3102 | 3102 | |
|
3103 | 3103 | ('hg.fork.none', _('Repository forking disabled')), |
|
3104 | 3104 | ('hg.fork.repository', _('Repository forking enabled')), |
|
3105 | 3105 | |
|
3106 | 3106 | ('hg.register.none', _('Registration disabled')), |
|
3107 | 3107 | ('hg.register.manual_activate', _('User Registration with manual account activation')), |
|
3108 | 3108 | ('hg.register.auto_activate', _('User Registration with automatic account activation')), |
|
3109 | 3109 | |
|
3110 | 3110 | ('hg.password_reset.enabled', _('Password reset enabled')), |
|
3111 | 3111 | ('hg.password_reset.hidden', _('Password reset hidden')), |
|
3112 | 3112 | ('hg.password_reset.disabled', _('Password reset disabled')), |
|
3113 | 3113 | |
|
3114 | 3114 | ('hg.extern_activate.manual', _('Manual activation of external account')), |
|
3115 | 3115 | ('hg.extern_activate.auto', _('Automatic activation of external account')), |
|
3116 | 3116 | |
|
3117 | 3117 | ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')), |
|
3118 | 3118 | ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')), |
|
3119 | 3119 | ] |
|
3120 | 3120 | |
|
3121 | 3121 | # definition of system default permissions for DEFAULT user, created on |
|
3122 | 3122 | # system setup |
|
3123 | 3123 | DEFAULT_USER_PERMISSIONS = [ |
|
3124 | 3124 | # object perms |
|
3125 | 3125 | 'repository.read', |
|
3126 | 3126 | 'group.read', |
|
3127 | 3127 | 'usergroup.read', |
|
3128 | 3128 | # branch, for backward compat we need same value as before so forced pushed |
|
3129 | 3129 | 'branch.push_force', |
|
3130 | 3130 | # global |
|
3131 | 3131 | 'hg.create.repository', |
|
3132 | 3132 | 'hg.repogroup.create.false', |
|
3133 | 3133 | 'hg.usergroup.create.false', |
|
3134 | 3134 | 'hg.create.write_on_repogroup.true', |
|
3135 | 3135 | 'hg.fork.repository', |
|
3136 | 3136 | 'hg.register.manual_activate', |
|
3137 | 3137 | 'hg.password_reset.enabled', |
|
3138 | 3138 | 'hg.extern_activate.auto', |
|
3139 | 3139 | 'hg.inherit_default_perms.true', |
|
3140 | 3140 | ] |
|
3141 | 3141 | |
|
3142 | 3142 | # defines which permissions are more important higher the more important |
|
3143 | 3143 | # Weight defines which permissions are more important. |
|
3144 | 3144 | # The higher number the more important. |
|
3145 | 3145 | PERM_WEIGHTS = { |
|
3146 | 3146 | 'repository.none': 0, |
|
3147 | 3147 | 'repository.read': 1, |
|
3148 | 3148 | 'repository.write': 3, |
|
3149 | 3149 | 'repository.admin': 4, |
|
3150 | 3150 | |
|
3151 | 3151 | 'group.none': 0, |
|
3152 | 3152 | 'group.read': 1, |
|
3153 | 3153 | 'group.write': 3, |
|
3154 | 3154 | 'group.admin': 4, |
|
3155 | 3155 | |
|
3156 | 3156 | 'usergroup.none': 0, |
|
3157 | 3157 | 'usergroup.read': 1, |
|
3158 | 3158 | 'usergroup.write': 3, |
|
3159 | 3159 | 'usergroup.admin': 4, |
|
3160 | 3160 | |
|
3161 | 3161 | 'branch.none': 0, |
|
3162 | 3162 | 'branch.merge': 1, |
|
3163 | 3163 | 'branch.push': 3, |
|
3164 | 3164 | 'branch.push_force': 4, |
|
3165 | 3165 | |
|
3166 | 3166 | 'hg.repogroup.create.false': 0, |
|
3167 | 3167 | 'hg.repogroup.create.true': 1, |
|
3168 | 3168 | |
|
3169 | 3169 | 'hg.usergroup.create.false': 0, |
|
3170 | 3170 | 'hg.usergroup.create.true': 1, |
|
3171 | 3171 | |
|
3172 | 3172 | 'hg.fork.none': 0, |
|
3173 | 3173 | 'hg.fork.repository': 1, |
|
3174 | 3174 | 'hg.create.none': 0, |
|
3175 | 3175 | 'hg.create.repository': 1 |
|
3176 | 3176 | } |
|
3177 | 3177 | |
|
3178 | 3178 | permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3179 | 3179 | permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None) |
|
3180 | 3180 | permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None) |
|
3181 | 3181 | |
|
3182 | 3182 | def __unicode__(self): |
|
3183 | 3183 | return u"<%s('%s:%s')>" % ( |
|
3184 | 3184 | self.__class__.__name__, self.permission_id, self.permission_name |
|
3185 | 3185 | ) |
|
3186 | 3186 | |
|
3187 | 3187 | @classmethod |
|
3188 | 3188 | def get_by_key(cls, key): |
|
3189 | 3189 | return cls.query().filter(cls.permission_name == key).scalar() |
|
3190 | 3190 | |
|
3191 | 3191 | @classmethod |
|
3192 | 3192 | def get_default_repo_perms(cls, user_id, repo_id=None): |
|
3193 | 3193 | q = Session().query(UserRepoToPerm, Repository, Permission)\ |
|
3194 | 3194 | .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\ |
|
3195 | 3195 | .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\ |
|
3196 | 3196 | .filter(UserRepoToPerm.user_id == user_id) |
|
3197 | 3197 | if repo_id: |
|
3198 | 3198 | q = q.filter(UserRepoToPerm.repository_id == repo_id) |
|
3199 | 3199 | return q.all() |
|
3200 | 3200 | |
|
3201 | 3201 | @classmethod |
|
3202 | 3202 | def get_default_repo_branch_perms(cls, user_id, repo_id=None): |
|
3203 | 3203 | q = Session().query(UserToRepoBranchPermission, UserRepoToPerm, Permission) \ |
|
3204 | 3204 | .join( |
|
3205 | 3205 | Permission, |
|
3206 | 3206 | UserToRepoBranchPermission.permission_id == Permission.permission_id) \ |
|
3207 | 3207 | .join( |
|
3208 | 3208 | UserRepoToPerm, |
|
3209 | 3209 | UserToRepoBranchPermission.rule_to_perm_id == UserRepoToPerm.repo_to_perm_id) \ |
|
3210 | 3210 | .filter(UserRepoToPerm.user_id == user_id) |
|
3211 | 3211 | |
|
3212 | 3212 | if repo_id: |
|
3213 | 3213 | q = q.filter(UserToRepoBranchPermission.repository_id == repo_id) |
|
3214 | 3214 | return q.order_by(UserToRepoBranchPermission.rule_order).all() |
|
3215 | 3215 | |
|
3216 | 3216 | @classmethod |
|
3217 | 3217 | def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None): |
|
3218 | 3218 | q = Session().query(UserGroupRepoToPerm, Repository, Permission)\ |
|
3219 | 3219 | .join( |
|
3220 | 3220 | Permission, |
|
3221 | 3221 | UserGroupRepoToPerm.permission_id == Permission.permission_id)\ |
|
3222 | 3222 | .join( |
|
3223 | 3223 | Repository, |
|
3224 | 3224 | UserGroupRepoToPerm.repository_id == Repository.repo_id)\ |
|
3225 | 3225 | .join( |
|
3226 | 3226 | UserGroup, |
|
3227 | 3227 | UserGroupRepoToPerm.users_group_id == |
|
3228 | 3228 | UserGroup.users_group_id)\ |
|
3229 | 3229 | .join( |
|
3230 | 3230 | UserGroupMember, |
|
3231 | 3231 | UserGroupRepoToPerm.users_group_id == |
|
3232 | 3232 | UserGroupMember.users_group_id)\ |
|
3233 | 3233 | .filter( |
|
3234 | 3234 | UserGroupMember.user_id == user_id, |
|
3235 | 3235 | UserGroup.users_group_active == true()) |
|
3236 | 3236 | if repo_id: |
|
3237 | 3237 | q = q.filter(UserGroupRepoToPerm.repository_id == repo_id) |
|
3238 | 3238 | return q.all() |
|
3239 | 3239 | |
|
3240 | 3240 | @classmethod |
|
3241 | 3241 | def get_default_repo_branch_perms_from_user_group(cls, user_id, repo_id=None): |
|
3242 | 3242 | q = Session().query(UserGroupToRepoBranchPermission, UserGroupRepoToPerm, Permission) \ |
|
3243 | 3243 | .join( |
|
3244 | 3244 | Permission, |
|
3245 | 3245 | UserGroupToRepoBranchPermission.permission_id == Permission.permission_id) \ |
|
3246 | 3246 | .join( |
|
3247 | 3247 | UserGroupRepoToPerm, |
|
3248 | 3248 | UserGroupToRepoBranchPermission.rule_to_perm_id == UserGroupRepoToPerm.users_group_to_perm_id) \ |
|
3249 | 3249 | .join( |
|
3250 | 3250 | UserGroup, |
|
3251 | 3251 | UserGroupRepoToPerm.users_group_id == UserGroup.users_group_id) \ |
|
3252 | 3252 | .join( |
|
3253 | 3253 | UserGroupMember, |
|
3254 | 3254 | UserGroupRepoToPerm.users_group_id == UserGroupMember.users_group_id) \ |
|
3255 | 3255 | .filter( |
|
3256 | 3256 | UserGroupMember.user_id == user_id, |
|
3257 | 3257 | UserGroup.users_group_active == true()) |
|
3258 | 3258 | |
|
3259 | 3259 | if repo_id: |
|
3260 | 3260 | q = q.filter(UserGroupToRepoBranchPermission.repository_id == repo_id) |
|
3261 | 3261 | return q.order_by(UserGroupToRepoBranchPermission.rule_order).all() |
|
3262 | 3262 | |
|
3263 | 3263 | @classmethod |
|
3264 | 3264 | def get_default_group_perms(cls, user_id, repo_group_id=None): |
|
3265 | 3265 | q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\ |
|
3266 | 3266 | .join( |
|
3267 | 3267 | Permission, |
|
3268 | 3268 | UserRepoGroupToPerm.permission_id == Permission.permission_id)\ |
|
3269 | 3269 | .join( |
|
3270 | 3270 | RepoGroup, |
|
3271 | 3271 | UserRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
3272 | 3272 | .filter(UserRepoGroupToPerm.user_id == user_id) |
|
3273 | 3273 | if repo_group_id: |
|
3274 | 3274 | q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id) |
|
3275 | 3275 | return q.all() |
|
3276 | 3276 | |
|
3277 | 3277 | @classmethod |
|
3278 | 3278 | def get_default_group_perms_from_user_group( |
|
3279 | 3279 | cls, user_id, repo_group_id=None): |
|
3280 | 3280 | q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\ |
|
3281 | 3281 | .join( |
|
3282 | 3282 | Permission, |
|
3283 | 3283 | UserGroupRepoGroupToPerm.permission_id == |
|
3284 | 3284 | Permission.permission_id)\ |
|
3285 | 3285 | .join( |
|
3286 | 3286 | RepoGroup, |
|
3287 | 3287 | UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
3288 | 3288 | .join( |
|
3289 | 3289 | UserGroup, |
|
3290 | 3290 | UserGroupRepoGroupToPerm.users_group_id == |
|
3291 | 3291 | UserGroup.users_group_id)\ |
|
3292 | 3292 | .join( |
|
3293 | 3293 | UserGroupMember, |
|
3294 | 3294 | UserGroupRepoGroupToPerm.users_group_id == |
|
3295 | 3295 | UserGroupMember.users_group_id)\ |
|
3296 | 3296 | .filter( |
|
3297 | 3297 | UserGroupMember.user_id == user_id, |
|
3298 | 3298 | UserGroup.users_group_active == true()) |
|
3299 | 3299 | if repo_group_id: |
|
3300 | 3300 | q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id) |
|
3301 | 3301 | return q.all() |
|
3302 | 3302 | |
|
3303 | 3303 | @classmethod |
|
3304 | 3304 | def get_default_user_group_perms(cls, user_id, user_group_id=None): |
|
3305 | 3305 | q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\ |
|
3306 | 3306 | .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\ |
|
3307 | 3307 | .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\ |
|
3308 | 3308 | .filter(UserUserGroupToPerm.user_id == user_id) |
|
3309 | 3309 | if user_group_id: |
|
3310 | 3310 | q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id) |
|
3311 | 3311 | return q.all() |
|
3312 | 3312 | |
|
3313 | 3313 | @classmethod |
|
3314 | 3314 | def get_default_user_group_perms_from_user_group( |
|
3315 | 3315 | cls, user_id, user_group_id=None): |
|
3316 | 3316 | TargetUserGroup = aliased(UserGroup, name='target_user_group') |
|
3317 | 3317 | q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\ |
|
3318 | 3318 | .join( |
|
3319 | 3319 | Permission, |
|
3320 | 3320 | UserGroupUserGroupToPerm.permission_id == |
|
3321 | 3321 | Permission.permission_id)\ |
|
3322 | 3322 | .join( |
|
3323 | 3323 | TargetUserGroup, |
|
3324 | 3324 | UserGroupUserGroupToPerm.target_user_group_id == |
|
3325 | 3325 | TargetUserGroup.users_group_id)\ |
|
3326 | 3326 | .join( |
|
3327 | 3327 | UserGroup, |
|
3328 | 3328 | UserGroupUserGroupToPerm.user_group_id == |
|
3329 | 3329 | UserGroup.users_group_id)\ |
|
3330 | 3330 | .join( |
|
3331 | 3331 | UserGroupMember, |
|
3332 | 3332 | UserGroupUserGroupToPerm.user_group_id == |
|
3333 | 3333 | UserGroupMember.users_group_id)\ |
|
3334 | 3334 | .filter( |
|
3335 | 3335 | UserGroupMember.user_id == user_id, |
|
3336 | 3336 | UserGroup.users_group_active == true()) |
|
3337 | 3337 | if user_group_id: |
|
3338 | 3338 | q = q.filter( |
|
3339 | 3339 | UserGroupUserGroupToPerm.user_group_id == user_group_id) |
|
3340 | 3340 | |
|
3341 | 3341 | return q.all() |
|
3342 | 3342 | |
|
3343 | 3343 | |
|
3344 | 3344 | class UserRepoToPerm(Base, BaseModel): |
|
3345 | 3345 | __tablename__ = 'repo_to_perm' |
|
3346 | 3346 | __table_args__ = ( |
|
3347 | 3347 | UniqueConstraint('user_id', 'repository_id', 'permission_id'), |
|
3348 | 3348 | base_table_args |
|
3349 | 3349 | ) |
|
3350 | 3350 | |
|
3351 | 3351 | repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3352 | 3352 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3353 | 3353 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3354 | 3354 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
3355 | 3355 | |
|
3356 | 3356 | user = relationship('User') |
|
3357 | 3357 | repository = relationship('Repository') |
|
3358 | 3358 | permission = relationship('Permission') |
|
3359 | 3359 | |
|
3360 | 3360 | branch_perm_entry = relationship('UserToRepoBranchPermission', cascade="all, delete-orphan", lazy='joined') |
|
3361 | 3361 | |
|
3362 | 3362 | @classmethod |
|
3363 | 3363 | def create(cls, user, repository, permission): |
|
3364 | 3364 | n = cls() |
|
3365 | 3365 | n.user = user |
|
3366 | 3366 | n.repository = repository |
|
3367 | 3367 | n.permission = permission |
|
3368 | 3368 | Session().add(n) |
|
3369 | 3369 | return n |
|
3370 | 3370 | |
|
3371 | 3371 | def __unicode__(self): |
|
3372 | 3372 | return u'<%s => %s >' % (self.user, self.repository) |
|
3373 | 3373 | |
|
3374 | 3374 | |
|
3375 | 3375 | class UserUserGroupToPerm(Base, BaseModel): |
|
3376 | 3376 | __tablename__ = 'user_user_group_to_perm' |
|
3377 | 3377 | __table_args__ = ( |
|
3378 | 3378 | UniqueConstraint('user_id', 'user_group_id', 'permission_id'), |
|
3379 | 3379 | base_table_args |
|
3380 | 3380 | ) |
|
3381 | 3381 | |
|
3382 | 3382 | user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3383 | 3383 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3384 | 3384 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3385 | 3385 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3386 | 3386 | |
|
3387 | 3387 | user = relationship('User') |
|
3388 | 3388 | user_group = relationship('UserGroup') |
|
3389 | 3389 | permission = relationship('Permission') |
|
3390 | 3390 | |
|
3391 | 3391 | @classmethod |
|
3392 | 3392 | def create(cls, user, user_group, permission): |
|
3393 | 3393 | n = cls() |
|
3394 | 3394 | n.user = user |
|
3395 | 3395 | n.user_group = user_group |
|
3396 | 3396 | n.permission = permission |
|
3397 | 3397 | Session().add(n) |
|
3398 | 3398 | return n |
|
3399 | 3399 | |
|
3400 | 3400 | def __unicode__(self): |
|
3401 | 3401 | return u'<%s => %s >' % (self.user, self.user_group) |
|
3402 | 3402 | |
|
3403 | 3403 | |
|
3404 | 3404 | class UserToPerm(Base, BaseModel): |
|
3405 | 3405 | __tablename__ = 'user_to_perm' |
|
3406 | 3406 | __table_args__ = ( |
|
3407 | 3407 | UniqueConstraint('user_id', 'permission_id'), |
|
3408 | 3408 | base_table_args |
|
3409 | 3409 | ) |
|
3410 | 3410 | |
|
3411 | 3411 | user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3412 | 3412 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3413 | 3413 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3414 | 3414 | |
|
3415 | 3415 | user = relationship('User') |
|
3416 | 3416 | permission = relationship('Permission', lazy='joined') |
|
3417 | 3417 | |
|
3418 | 3418 | def __unicode__(self): |
|
3419 | 3419 | return u'<%s => %s >' % (self.user, self.permission) |
|
3420 | 3420 | |
|
3421 | 3421 | |
|
3422 | 3422 | class UserGroupRepoToPerm(Base, BaseModel): |
|
3423 | 3423 | __tablename__ = 'users_group_repo_to_perm' |
|
3424 | 3424 | __table_args__ = ( |
|
3425 | 3425 | UniqueConstraint('repository_id', 'users_group_id', 'permission_id'), |
|
3426 | 3426 | base_table_args |
|
3427 | 3427 | ) |
|
3428 | 3428 | |
|
3429 | 3429 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3430 | 3430 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3431 | 3431 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3432 | 3432 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
3433 | 3433 | |
|
3434 | 3434 | users_group = relationship('UserGroup') |
|
3435 | 3435 | permission = relationship('Permission') |
|
3436 | 3436 | repository = relationship('Repository') |
|
3437 | 3437 | user_group_branch_perms = relationship('UserGroupToRepoBranchPermission', cascade='all') |
|
3438 | 3438 | |
|
3439 | 3439 | @classmethod |
|
3440 | 3440 | def create(cls, users_group, repository, permission): |
|
3441 | 3441 | n = cls() |
|
3442 | 3442 | n.users_group = users_group |
|
3443 | 3443 | n.repository = repository |
|
3444 | 3444 | n.permission = permission |
|
3445 | 3445 | Session().add(n) |
|
3446 | 3446 | return n |
|
3447 | 3447 | |
|
3448 | 3448 | def __unicode__(self): |
|
3449 | 3449 | return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository) |
|
3450 | 3450 | |
|
3451 | 3451 | |
|
3452 | 3452 | class UserGroupUserGroupToPerm(Base, BaseModel): |
|
3453 | 3453 | __tablename__ = 'user_group_user_group_to_perm' |
|
3454 | 3454 | __table_args__ = ( |
|
3455 | 3455 | UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'), |
|
3456 | 3456 | CheckConstraint('target_user_group_id != user_group_id'), |
|
3457 | 3457 | base_table_args |
|
3458 | 3458 | ) |
|
3459 | 3459 | |
|
3460 | 3460 | 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) |
|
3461 | 3461 | target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3462 | 3462 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3463 | 3463 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3464 | 3464 | |
|
3465 | 3465 | target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id') |
|
3466 | 3466 | user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id') |
|
3467 | 3467 | permission = relationship('Permission') |
|
3468 | 3468 | |
|
3469 | 3469 | @classmethod |
|
3470 | 3470 | def create(cls, target_user_group, user_group, permission): |
|
3471 | 3471 | n = cls() |
|
3472 | 3472 | n.target_user_group = target_user_group |
|
3473 | 3473 | n.user_group = user_group |
|
3474 | 3474 | n.permission = permission |
|
3475 | 3475 | Session().add(n) |
|
3476 | 3476 | return n |
|
3477 | 3477 | |
|
3478 | 3478 | def __unicode__(self): |
|
3479 | 3479 | return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group) |
|
3480 | 3480 | |
|
3481 | 3481 | |
|
3482 | 3482 | class UserGroupToPerm(Base, BaseModel): |
|
3483 | 3483 | __tablename__ = 'users_group_to_perm' |
|
3484 | 3484 | __table_args__ = ( |
|
3485 | 3485 | UniqueConstraint('users_group_id', 'permission_id',), |
|
3486 | 3486 | base_table_args |
|
3487 | 3487 | ) |
|
3488 | 3488 | |
|
3489 | 3489 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3490 | 3490 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3491 | 3491 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3492 | 3492 | |
|
3493 | 3493 | users_group = relationship('UserGroup') |
|
3494 | 3494 | permission = relationship('Permission') |
|
3495 | 3495 | |
|
3496 | 3496 | |
|
3497 | 3497 | class UserRepoGroupToPerm(Base, BaseModel): |
|
3498 | 3498 | __tablename__ = 'user_repo_group_to_perm' |
|
3499 | 3499 | __table_args__ = ( |
|
3500 | 3500 | UniqueConstraint('user_id', 'group_id', 'permission_id'), |
|
3501 | 3501 | base_table_args |
|
3502 | 3502 | ) |
|
3503 | 3503 | |
|
3504 | 3504 | group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3505 | 3505 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3506 | 3506 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
3507 | 3507 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3508 | 3508 | |
|
3509 | 3509 | user = relationship('User') |
|
3510 | 3510 | group = relationship('RepoGroup') |
|
3511 | 3511 | permission = relationship('Permission') |
|
3512 | 3512 | |
|
3513 | 3513 | @classmethod |
|
3514 | 3514 | def create(cls, user, repository_group, permission): |
|
3515 | 3515 | n = cls() |
|
3516 | 3516 | n.user = user |
|
3517 | 3517 | n.group = repository_group |
|
3518 | 3518 | n.permission = permission |
|
3519 | 3519 | Session().add(n) |
|
3520 | 3520 | return n |
|
3521 | 3521 | |
|
3522 | 3522 | |
|
3523 | 3523 | class UserGroupRepoGroupToPerm(Base, BaseModel): |
|
3524 | 3524 | __tablename__ = 'users_group_repo_group_to_perm' |
|
3525 | 3525 | __table_args__ = ( |
|
3526 | 3526 | UniqueConstraint('users_group_id', 'group_id'), |
|
3527 | 3527 | base_table_args |
|
3528 | 3528 | ) |
|
3529 | 3529 | |
|
3530 | 3530 | 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) |
|
3531 | 3531 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3532 | 3532 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
3533 | 3533 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3534 | 3534 | |
|
3535 | 3535 | users_group = relationship('UserGroup') |
|
3536 | 3536 | permission = relationship('Permission') |
|
3537 | 3537 | group = relationship('RepoGroup') |
|
3538 | 3538 | |
|
3539 | 3539 | @classmethod |
|
3540 | 3540 | def create(cls, user_group, repository_group, permission): |
|
3541 | 3541 | n = cls() |
|
3542 | 3542 | n.users_group = user_group |
|
3543 | 3543 | n.group = repository_group |
|
3544 | 3544 | n.permission = permission |
|
3545 | 3545 | Session().add(n) |
|
3546 | 3546 | return n |
|
3547 | 3547 | |
|
3548 | 3548 | def __unicode__(self): |
|
3549 | 3549 | return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group) |
|
3550 | 3550 | |
|
3551 | 3551 | |
|
3552 | 3552 | class Statistics(Base, BaseModel): |
|
3553 | 3553 | __tablename__ = 'statistics' |
|
3554 | 3554 | __table_args__ = ( |
|
3555 | 3555 | base_table_args |
|
3556 | 3556 | ) |
|
3557 | 3557 | |
|
3558 | 3558 | stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3559 | 3559 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None) |
|
3560 | 3560 | stat_on_revision = Column("stat_on_revision", Integer(), nullable=False) |
|
3561 | 3561 | commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data |
|
3562 | 3562 | commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data |
|
3563 | 3563 | languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data |
|
3564 | 3564 | |
|
3565 | 3565 | repository = relationship('Repository', single_parent=True) |
|
3566 | 3566 | |
|
3567 | 3567 | |
|
3568 | 3568 | class UserFollowing(Base, BaseModel): |
|
3569 | 3569 | __tablename__ = 'user_followings' |
|
3570 | 3570 | __table_args__ = ( |
|
3571 | 3571 | UniqueConstraint('user_id', 'follows_repository_id'), |
|
3572 | 3572 | UniqueConstraint('user_id', 'follows_user_id'), |
|
3573 | 3573 | base_table_args |
|
3574 | 3574 | ) |
|
3575 | 3575 | |
|
3576 | 3576 | user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3577 | 3577 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3578 | 3578 | follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None) |
|
3579 | 3579 | follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
3580 | 3580 | follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
3581 | 3581 | |
|
3582 | 3582 | user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id') |
|
3583 | 3583 | |
|
3584 | 3584 | follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id') |
|
3585 | 3585 | follows_repository = relationship('Repository', order_by='Repository.repo_name') |
|
3586 | 3586 | |
|
3587 | 3587 | @classmethod |
|
3588 | 3588 | def get_repo_followers(cls, repo_id): |
|
3589 | 3589 | return cls.query().filter(cls.follows_repo_id == repo_id) |
|
3590 | 3590 | |
|
3591 | 3591 | |
|
3592 | 3592 | class CacheKey(Base, BaseModel): |
|
3593 | 3593 | __tablename__ = 'cache_invalidation' |
|
3594 | 3594 | __table_args__ = ( |
|
3595 | 3595 | UniqueConstraint('cache_key'), |
|
3596 | 3596 | Index('key_idx', 'cache_key'), |
|
3597 | 3597 | base_table_args, |
|
3598 | 3598 | ) |
|
3599 | 3599 | |
|
3600 | 3600 | CACHE_TYPE_FEED = 'FEED' |
|
3601 | 3601 | |
|
3602 | 3602 | # namespaces used to register process/thread aware caches |
|
3603 | 3603 | REPO_INVALIDATION_NAMESPACE = 'repo_cache:{repo_id}' |
|
3604 | 3604 | SETTINGS_INVALIDATION_NAMESPACE = 'system_settings' |
|
3605 | 3605 | |
|
3606 | 3606 | cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3607 | 3607 | cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None) |
|
3608 | 3608 | cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None) |
|
3609 | 3609 | cache_state_uid = Column("cache_state_uid", String(255), nullable=True, unique=None, default=None) |
|
3610 | 3610 | cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False) |
|
3611 | 3611 | |
|
3612 | 3612 | def __init__(self, cache_key, cache_args='', cache_state_uid=None): |
|
3613 | 3613 | self.cache_key = cache_key |
|
3614 | 3614 | self.cache_args = cache_args |
|
3615 | 3615 | self.cache_active = False |
|
3616 | 3616 | # first key should be same for all entries, since all workers should share it |
|
3617 | 3617 | self.cache_state_uid = cache_state_uid or self.generate_new_state_uid() |
|
3618 | 3618 | |
|
3619 | 3619 | def __unicode__(self): |
|
3620 | 3620 | return u"<%s('%s:%s[%s]')>" % ( |
|
3621 | 3621 | self.__class__.__name__, |
|
3622 | 3622 | self.cache_id, self.cache_key, self.cache_active) |
|
3623 | 3623 | |
|
3624 | 3624 | def _cache_key_partition(self): |
|
3625 | 3625 | prefix, repo_name, suffix = self.cache_key.partition(self.cache_args) |
|
3626 | 3626 | return prefix, repo_name, suffix |
|
3627 | 3627 | |
|
3628 | 3628 | def get_prefix(self): |
|
3629 | 3629 | """ |
|
3630 | 3630 | Try to extract prefix from existing cache key. The key could consist |
|
3631 | 3631 | of prefix, repo_name, suffix |
|
3632 | 3632 | """ |
|
3633 | 3633 | # this returns prefix, repo_name, suffix |
|
3634 | 3634 | return self._cache_key_partition()[0] |
|
3635 | 3635 | |
|
3636 | 3636 | def get_suffix(self): |
|
3637 | 3637 | """ |
|
3638 | 3638 | get suffix that might have been used in _get_cache_key to |
|
3639 | 3639 | generate self.cache_key. Only used for informational purposes |
|
3640 | 3640 | in repo_edit.mako. |
|
3641 | 3641 | """ |
|
3642 | 3642 | # prefix, repo_name, suffix |
|
3643 | 3643 | return self._cache_key_partition()[2] |
|
3644 | 3644 | |
|
3645 | 3645 | @classmethod |
|
3646 | 3646 | def generate_new_state_uid(cls, based_on=None): |
|
3647 | 3647 | if based_on: |
|
3648 | 3648 | return str(uuid.uuid5(uuid.NAMESPACE_URL, safe_str(based_on))) |
|
3649 | 3649 | else: |
|
3650 | 3650 | return str(uuid.uuid4()) |
|
3651 | 3651 | |
|
3652 | 3652 | @classmethod |
|
3653 | 3653 | def delete_all_cache(cls): |
|
3654 | 3654 | """ |
|
3655 | 3655 | Delete all cache keys from database. |
|
3656 | 3656 | Should only be run when all instances are down and all entries |
|
3657 | 3657 | thus stale. |
|
3658 | 3658 | """ |
|
3659 | 3659 | cls.query().delete() |
|
3660 | 3660 | Session().commit() |
|
3661 | 3661 | |
|
3662 | 3662 | @classmethod |
|
3663 | 3663 | def set_invalidate(cls, cache_uid, delete=False): |
|
3664 | 3664 | """ |
|
3665 | 3665 | Mark all caches of a repo as invalid in the database. |
|
3666 | 3666 | """ |
|
3667 | 3667 | |
|
3668 | 3668 | try: |
|
3669 | 3669 | qry = Session().query(cls).filter(cls.cache_args == cache_uid) |
|
3670 | 3670 | if delete: |
|
3671 | 3671 | qry.delete() |
|
3672 | 3672 | log.debug('cache objects deleted for cache args %s', |
|
3673 | 3673 | safe_str(cache_uid)) |
|
3674 | 3674 | else: |
|
3675 | 3675 | qry.update({"cache_active": False, |
|
3676 | 3676 | "cache_state_uid": cls.generate_new_state_uid()}) |
|
3677 | 3677 | log.debug('cache objects marked as invalid for cache args %s', |
|
3678 | 3678 | safe_str(cache_uid)) |
|
3679 | 3679 | |
|
3680 | 3680 | Session().commit() |
|
3681 | 3681 | except Exception: |
|
3682 | 3682 | log.exception( |
|
3683 | 3683 | 'Cache key invalidation failed for cache args %s', |
|
3684 | 3684 | safe_str(cache_uid)) |
|
3685 | 3685 | Session().rollback() |
|
3686 | 3686 | |
|
3687 | 3687 | @classmethod |
|
3688 | 3688 | def get_active_cache(cls, cache_key): |
|
3689 | 3689 | inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar() |
|
3690 | 3690 | if inv_obj: |
|
3691 | 3691 | return inv_obj |
|
3692 | 3692 | return None |
|
3693 | 3693 | |
|
3694 | 3694 | @classmethod |
|
3695 | 3695 | def get_namespace_map(cls, namespace): |
|
3696 | 3696 | return { |
|
3697 | 3697 | x.cache_key: x |
|
3698 | 3698 | for x in cls.query().filter(cls.cache_args == namespace)} |
|
3699 | 3699 | |
|
3700 | 3700 | |
|
3701 | 3701 | class ChangesetComment(Base, BaseModel): |
|
3702 | 3702 | __tablename__ = 'changeset_comments' |
|
3703 | 3703 | __table_args__ = ( |
|
3704 | 3704 | Index('cc_revision_idx', 'revision'), |
|
3705 | 3705 | base_table_args, |
|
3706 | 3706 | ) |
|
3707 | 3707 | |
|
3708 | 3708 | COMMENT_OUTDATED = u'comment_outdated' |
|
3709 | 3709 | COMMENT_TYPE_NOTE = u'note' |
|
3710 | 3710 | COMMENT_TYPE_TODO = u'todo' |
|
3711 | 3711 | COMMENT_TYPES = [COMMENT_TYPE_NOTE, COMMENT_TYPE_TODO] |
|
3712 | 3712 | |
|
3713 | 3713 | comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True) |
|
3714 | 3714 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
3715 | 3715 | revision = Column('revision', String(40), nullable=True) |
|
3716 | 3716 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
3717 | 3717 | pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True) |
|
3718 | 3718 | line_no = Column('line_no', Unicode(10), nullable=True) |
|
3719 | 3719 | hl_lines = Column('hl_lines', Unicode(512), nullable=True) |
|
3720 | 3720 | f_path = Column('f_path', Unicode(1000), nullable=True) |
|
3721 | 3721 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
3722 | 3722 | text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False) |
|
3723 | 3723 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3724 | 3724 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3725 | 3725 | renderer = Column('renderer', Unicode(64), nullable=True) |
|
3726 | 3726 | display_state = Column('display_state', Unicode(128), nullable=True) |
|
3727 | 3727 | |
|
3728 | 3728 | comment_type = Column('comment_type', Unicode(128), nullable=True, default=COMMENT_TYPE_NOTE) |
|
3729 | 3729 | resolved_comment_id = Column('resolved_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'), nullable=True) |
|
3730 | 3730 | |
|
3731 | 3731 | resolved_comment = relationship('ChangesetComment', remote_side=comment_id, back_populates='resolved_by') |
|
3732 | 3732 | resolved_by = relationship('ChangesetComment', back_populates='resolved_comment') |
|
3733 | 3733 | |
|
3734 | 3734 | author = relationship('User', lazy='joined') |
|
3735 | 3735 | repo = relationship('Repository') |
|
3736 | 3736 | status_change = relationship('ChangesetStatus', cascade="all, delete-orphan", lazy='joined') |
|
3737 | 3737 | pull_request = relationship('PullRequest', lazy='joined') |
|
3738 | 3738 | pull_request_version = relationship('PullRequestVersion') |
|
3739 | 3739 | |
|
3740 | 3740 | @classmethod |
|
3741 | 3741 | def get_users(cls, revision=None, pull_request_id=None): |
|
3742 | 3742 | """ |
|
3743 | 3743 | Returns user associated with this ChangesetComment. ie those |
|
3744 | 3744 | who actually commented |
|
3745 | 3745 | |
|
3746 | 3746 | :param cls: |
|
3747 | 3747 | :param revision: |
|
3748 | 3748 | """ |
|
3749 | 3749 | q = Session().query(User)\ |
|
3750 | 3750 | .join(ChangesetComment.author) |
|
3751 | 3751 | if revision: |
|
3752 | 3752 | q = q.filter(cls.revision == revision) |
|
3753 | 3753 | elif pull_request_id: |
|
3754 | 3754 | q = q.filter(cls.pull_request_id == pull_request_id) |
|
3755 | 3755 | return q.all() |
|
3756 | 3756 | |
|
3757 | 3757 | @classmethod |
|
3758 | 3758 | def get_index_from_version(cls, pr_version, versions): |
|
3759 | 3759 | num_versions = [x.pull_request_version_id for x in versions] |
|
3760 | 3760 | try: |
|
3761 | 3761 | return num_versions.index(pr_version) +1 |
|
3762 | 3762 | except (IndexError, ValueError): |
|
3763 | 3763 | return |
|
3764 | 3764 | |
|
3765 | 3765 | @property |
|
3766 | 3766 | def outdated(self): |
|
3767 | 3767 | return self.display_state == self.COMMENT_OUTDATED |
|
3768 | 3768 | |
|
3769 | 3769 | def outdated_at_version(self, version): |
|
3770 | 3770 | """ |
|
3771 | 3771 | Checks if comment is outdated for given pull request version |
|
3772 | 3772 | """ |
|
3773 | 3773 | return self.outdated and self.pull_request_version_id != version |
|
3774 | 3774 | |
|
3775 | 3775 | def older_than_version(self, version): |
|
3776 | 3776 | """ |
|
3777 | 3777 | Checks if comment is made from previous version than given |
|
3778 | 3778 | """ |
|
3779 | 3779 | if version is None: |
|
3780 | 3780 | return self.pull_request_version_id is not None |
|
3781 | 3781 | |
|
3782 | 3782 | return self.pull_request_version_id < version |
|
3783 | 3783 | |
|
3784 | 3784 | @property |
|
3785 | 3785 | def resolved(self): |
|
3786 | 3786 | return self.resolved_by[0] if self.resolved_by else None |
|
3787 | 3787 | |
|
3788 | 3788 | @property |
|
3789 | 3789 | def is_todo(self): |
|
3790 | 3790 | return self.comment_type == self.COMMENT_TYPE_TODO |
|
3791 | 3791 | |
|
3792 | 3792 | @property |
|
3793 | 3793 | def is_inline(self): |
|
3794 | 3794 | return self.line_no and self.f_path |
|
3795 | 3795 | |
|
3796 | 3796 | def get_index_version(self, versions): |
|
3797 | 3797 | return self.get_index_from_version( |
|
3798 | 3798 | self.pull_request_version_id, versions) |
|
3799 | 3799 | |
|
3800 | 3800 | def __repr__(self): |
|
3801 | 3801 | if self.comment_id: |
|
3802 | 3802 | return '<DB:Comment #%s>' % self.comment_id |
|
3803 | 3803 | else: |
|
3804 | 3804 | return '<DB:Comment at %#x>' % id(self) |
|
3805 | 3805 | |
|
3806 | 3806 | def get_api_data(self): |
|
3807 | 3807 | comment = self |
|
3808 | 3808 | data = { |
|
3809 | 3809 | 'comment_id': comment.comment_id, |
|
3810 | 3810 | 'comment_type': comment.comment_type, |
|
3811 | 3811 | 'comment_text': comment.text, |
|
3812 | 3812 | 'comment_status': comment.status_change, |
|
3813 | 3813 | 'comment_f_path': comment.f_path, |
|
3814 | 3814 | 'comment_lineno': comment.line_no, |
|
3815 | 3815 | 'comment_author': comment.author, |
|
3816 | 3816 | 'comment_created_on': comment.created_on, |
|
3817 | 3817 | 'comment_resolved_by': self.resolved |
|
3818 | 3818 | } |
|
3819 | 3819 | return data |
|
3820 | 3820 | |
|
3821 | 3821 | def __json__(self): |
|
3822 | 3822 | data = dict() |
|
3823 | 3823 | data.update(self.get_api_data()) |
|
3824 | 3824 | return data |
|
3825 | 3825 | |
|
3826 | 3826 | |
|
3827 | 3827 | class ChangesetStatus(Base, BaseModel): |
|
3828 | 3828 | __tablename__ = 'changeset_statuses' |
|
3829 | 3829 | __table_args__ = ( |
|
3830 | 3830 | Index('cs_revision_idx', 'revision'), |
|
3831 | 3831 | Index('cs_version_idx', 'version'), |
|
3832 | 3832 | UniqueConstraint('repo_id', 'revision', 'version'), |
|
3833 | 3833 | base_table_args |
|
3834 | 3834 | ) |
|
3835 | 3835 | |
|
3836 | 3836 | STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed' |
|
3837 | 3837 | STATUS_APPROVED = 'approved' |
|
3838 | 3838 | STATUS_REJECTED = 'rejected' |
|
3839 | 3839 | STATUS_UNDER_REVIEW = 'under_review' |
|
3840 | 3840 | |
|
3841 | 3841 | STATUSES = [ |
|
3842 | 3842 | (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default |
|
3843 | 3843 | (STATUS_APPROVED, _("Approved")), |
|
3844 | 3844 | (STATUS_REJECTED, _("Rejected")), |
|
3845 | 3845 | (STATUS_UNDER_REVIEW, _("Under Review")), |
|
3846 | 3846 | ] |
|
3847 | 3847 | |
|
3848 | 3848 | changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True) |
|
3849 | 3849 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
3850 | 3850 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None) |
|
3851 | 3851 | revision = Column('revision', String(40), nullable=False) |
|
3852 | 3852 | status = Column('status', String(128), nullable=False, default=DEFAULT) |
|
3853 | 3853 | changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id')) |
|
3854 | 3854 | modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now) |
|
3855 | 3855 | version = Column('version', Integer(), nullable=False, default=0) |
|
3856 | 3856 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
3857 | 3857 | |
|
3858 | 3858 | author = relationship('User', lazy='joined') |
|
3859 | 3859 | repo = relationship('Repository') |
|
3860 | 3860 | comment = relationship('ChangesetComment', lazy='joined') |
|
3861 | 3861 | pull_request = relationship('PullRequest', lazy='joined') |
|
3862 | 3862 | |
|
3863 | 3863 | def __unicode__(self): |
|
3864 | 3864 | return u"<%s('%s[v%s]:%s')>" % ( |
|
3865 | 3865 | self.__class__.__name__, |
|
3866 | 3866 | self.status, self.version, self.author |
|
3867 | 3867 | ) |
|
3868 | 3868 | |
|
3869 | 3869 | @classmethod |
|
3870 | 3870 | def get_status_lbl(cls, value): |
|
3871 | 3871 | return dict(cls.STATUSES).get(value) |
|
3872 | 3872 | |
|
3873 | 3873 | @property |
|
3874 | 3874 | def status_lbl(self): |
|
3875 | 3875 | return ChangesetStatus.get_status_lbl(self.status) |
|
3876 | 3876 | |
|
3877 | 3877 | def get_api_data(self): |
|
3878 | 3878 | status = self |
|
3879 | 3879 | data = { |
|
3880 | 3880 | 'status_id': status.changeset_status_id, |
|
3881 | 3881 | 'status': status.status, |
|
3882 | 3882 | } |
|
3883 | 3883 | return data |
|
3884 | 3884 | |
|
3885 | 3885 | def __json__(self): |
|
3886 | 3886 | data = dict() |
|
3887 | 3887 | data.update(self.get_api_data()) |
|
3888 | 3888 | return data |
|
3889 | 3889 | |
|
3890 | 3890 | |
|
3891 | 3891 | class _SetState(object): |
|
3892 | 3892 | """ |
|
3893 | 3893 | Context processor allowing changing state for sensitive operation such as |
|
3894 | 3894 | pull request update or merge |
|
3895 | 3895 | """ |
|
3896 | 3896 | |
|
3897 | 3897 | def __init__(self, pull_request, pr_state, back_state=None): |
|
3898 | 3898 | self._pr = pull_request |
|
3899 | 3899 | self._org_state = back_state or pull_request.pull_request_state |
|
3900 | 3900 | self._pr_state = pr_state |
|
3901 | 3901 | self._current_state = None |
|
3902 | 3902 | |
|
3903 | 3903 | def __enter__(self): |
|
3904 | log.debug('StateLock: entering set state context, setting state to: `%s`', | |
|
3905 | self._pr_state) | |
|
3904 | log.debug('StateLock: entering set state context of pr %s, setting state to: `%s`', | |
|
3905 | self._pr, self._pr_state) | |
|
3906 | 3906 | self.set_pr_state(self._pr_state) |
|
3907 | 3907 | return self |
|
3908 | 3908 | |
|
3909 | 3909 | def __exit__(self, exc_type, exc_val, exc_tb): |
|
3910 | 3910 | if exc_val is not None: |
|
3911 | 3911 | log.error(traceback.format_exc(exc_tb)) |
|
3912 | 3912 | return None |
|
3913 | 3913 | |
|
3914 | 3914 | self.set_pr_state(self._org_state) |
|
3915 | log.debug('StateLock: exiting set state context, setting state to: `%s`', | |
|
3916 | self._org_state) | |
|
3915 | log.debug('StateLock: exiting set state context of pr %s, setting state to: `%s`', | |
|
3916 | self._pr, self._org_state) | |
|
3917 | ||
|
3917 | 3918 | @property |
|
3918 | 3919 | def state(self): |
|
3919 | 3920 | return self._current_state |
|
3920 | 3921 | |
|
3921 | 3922 | def set_pr_state(self, pr_state): |
|
3922 | 3923 | try: |
|
3923 | 3924 | self._pr.pull_request_state = pr_state |
|
3924 | 3925 | Session().add(self._pr) |
|
3925 | 3926 | Session().commit() |
|
3926 | 3927 | self._current_state = pr_state |
|
3927 | 3928 | except Exception: |
|
3928 | 3929 | log.exception('Failed to set PullRequest %s state to %s', self._pr, pr_state) |
|
3929 | 3930 | raise |
|
3930 | 3931 | |
|
3931 | 3932 | |
|
3932 | 3933 | class _PullRequestBase(BaseModel): |
|
3933 | 3934 | """ |
|
3934 | 3935 | Common attributes of pull request and version entries. |
|
3935 | 3936 | """ |
|
3936 | 3937 | |
|
3937 | 3938 | # .status values |
|
3938 | 3939 | STATUS_NEW = u'new' |
|
3939 | 3940 | STATUS_OPEN = u'open' |
|
3940 | 3941 | STATUS_CLOSED = u'closed' |
|
3941 | 3942 | |
|
3942 | 3943 | # available states |
|
3943 | 3944 | STATE_CREATING = u'creating' |
|
3944 | 3945 | STATE_UPDATING = u'updating' |
|
3945 | 3946 | STATE_MERGING = u'merging' |
|
3946 | 3947 | STATE_CREATED = u'created' |
|
3947 | 3948 | |
|
3948 | 3949 | title = Column('title', Unicode(255), nullable=True) |
|
3949 | 3950 | description = Column( |
|
3950 | 3951 | 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), |
|
3951 | 3952 | nullable=True) |
|
3952 | 3953 | description_renderer = Column('description_renderer', Unicode(64), nullable=True) |
|
3953 | 3954 | |
|
3954 | 3955 | # new/open/closed status of pull request (not approve/reject/etc) |
|
3955 | 3956 | status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW) |
|
3956 | 3957 | created_on = Column( |
|
3957 | 3958 | 'created_on', DateTime(timezone=False), nullable=False, |
|
3958 | 3959 | default=datetime.datetime.now) |
|
3959 | 3960 | updated_on = Column( |
|
3960 | 3961 | 'updated_on', DateTime(timezone=False), nullable=False, |
|
3961 | 3962 | default=datetime.datetime.now) |
|
3962 | 3963 | |
|
3963 | 3964 | pull_request_state = Column("pull_request_state", String(255), nullable=True) |
|
3964 | 3965 | |
|
3965 | 3966 | @declared_attr |
|
3966 | 3967 | def user_id(cls): |
|
3967 | 3968 | return Column( |
|
3968 | 3969 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
3969 | 3970 | unique=None) |
|
3970 | 3971 | |
|
3971 | 3972 | # 500 revisions max |
|
3972 | 3973 | _revisions = Column( |
|
3973 | 3974 | 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql')) |
|
3974 | 3975 | |
|
3975 | 3976 | @declared_attr |
|
3976 | 3977 | def source_repo_id(cls): |
|
3977 | 3978 | # TODO: dan: rename column to source_repo_id |
|
3978 | 3979 | return Column( |
|
3979 | 3980 | 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3980 | 3981 | nullable=False) |
|
3981 | 3982 | |
|
3982 | 3983 | _source_ref = Column('org_ref', Unicode(255), nullable=False) |
|
3983 | 3984 | |
|
3984 | 3985 | @hybrid_property |
|
3985 | 3986 | def source_ref(self): |
|
3986 | 3987 | return self._source_ref |
|
3987 | 3988 | |
|
3988 | 3989 | @source_ref.setter |
|
3989 | 3990 | def source_ref(self, val): |
|
3990 | 3991 | parts = (val or '').split(':') |
|
3991 | 3992 | if len(parts) != 3: |
|
3992 | 3993 | raise ValueError( |
|
3993 | 3994 | 'Invalid reference format given: {}, expected X:Y:Z'.format(val)) |
|
3994 | 3995 | self._source_ref = safe_unicode(val) |
|
3995 | 3996 | |
|
3996 | 3997 | _target_ref = Column('other_ref', Unicode(255), nullable=False) |
|
3997 | 3998 | |
|
3998 | 3999 | @hybrid_property |
|
3999 | 4000 | def target_ref(self): |
|
4000 | 4001 | return self._target_ref |
|
4001 | 4002 | |
|
4002 | 4003 | @target_ref.setter |
|
4003 | 4004 | def target_ref(self, val): |
|
4004 | 4005 | parts = (val or '').split(':') |
|
4005 | 4006 | if len(parts) != 3: |
|
4006 | 4007 | raise ValueError( |
|
4007 | 4008 | 'Invalid reference format given: {}, expected X:Y:Z'.format(val)) |
|
4008 | 4009 | self._target_ref = safe_unicode(val) |
|
4009 | 4010 | |
|
4010 | 4011 | @declared_attr |
|
4011 | 4012 | def target_repo_id(cls): |
|
4012 | 4013 | # TODO: dan: rename column to target_repo_id |
|
4013 | 4014 | return Column( |
|
4014 | 4015 | 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
4015 | 4016 | nullable=False) |
|
4016 | 4017 | |
|
4017 | 4018 | _shadow_merge_ref = Column('shadow_merge_ref', Unicode(255), nullable=True) |
|
4018 | 4019 | |
|
4019 | 4020 | # TODO: dan: rename column to last_merge_source_rev |
|
4020 | 4021 | _last_merge_source_rev = Column( |
|
4021 | 4022 | 'last_merge_org_rev', String(40), nullable=True) |
|
4022 | 4023 | # TODO: dan: rename column to last_merge_target_rev |
|
4023 | 4024 | _last_merge_target_rev = Column( |
|
4024 | 4025 | 'last_merge_other_rev', String(40), nullable=True) |
|
4025 | 4026 | _last_merge_status = Column('merge_status', Integer(), nullable=True) |
|
4026 | 4027 | merge_rev = Column('merge_rev', String(40), nullable=True) |
|
4027 | 4028 | |
|
4028 | 4029 | reviewer_data = Column( |
|
4029 | 4030 | 'reviewer_data_json', MutationObj.as_mutable( |
|
4030 | 4031 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4031 | 4032 | |
|
4032 | 4033 | @property |
|
4033 | 4034 | def reviewer_data_json(self): |
|
4034 | 4035 | return json.dumps(self.reviewer_data) |
|
4035 | 4036 | |
|
4036 | 4037 | @property |
|
4037 | 4038 | def work_in_progress(self): |
|
4038 | 4039 | """checks if pull request is work in progress by checking the title""" |
|
4039 | 4040 | title = self.title.upper() |
|
4040 | 4041 | if re.match(r'^(\[WIP\]\s*|WIP:\s*|WIP\s+)', title): |
|
4041 | 4042 | return True |
|
4042 | 4043 | return False |
|
4043 | 4044 | |
|
4044 | 4045 | @hybrid_property |
|
4045 | 4046 | def description_safe(self): |
|
4046 | 4047 | from rhodecode.lib import helpers as h |
|
4047 | 4048 | return h.escape(self.description) |
|
4048 | 4049 | |
|
4049 | 4050 | @hybrid_property |
|
4050 | 4051 | def revisions(self): |
|
4051 | 4052 | return self._revisions.split(':') if self._revisions else [] |
|
4052 | 4053 | |
|
4053 | 4054 | @revisions.setter |
|
4054 | 4055 | def revisions(self, val): |
|
4055 | 4056 | self._revisions = u':'.join(val) |
|
4056 | 4057 | |
|
4057 | 4058 | @hybrid_property |
|
4058 | 4059 | def last_merge_status(self): |
|
4059 | 4060 | return safe_int(self._last_merge_status) |
|
4060 | 4061 | |
|
4061 | 4062 | @last_merge_status.setter |
|
4062 | 4063 | def last_merge_status(self, val): |
|
4063 | 4064 | self._last_merge_status = val |
|
4064 | 4065 | |
|
4065 | 4066 | @declared_attr |
|
4066 | 4067 | def author(cls): |
|
4067 | 4068 | return relationship('User', lazy='joined') |
|
4068 | 4069 | |
|
4069 | 4070 | @declared_attr |
|
4070 | 4071 | def source_repo(cls): |
|
4071 | 4072 | return relationship( |
|
4072 | 4073 | 'Repository', |
|
4073 | 4074 | primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__) |
|
4074 | 4075 | |
|
4075 | 4076 | @property |
|
4076 | 4077 | def source_ref_parts(self): |
|
4077 | 4078 | return self.unicode_to_reference(self.source_ref) |
|
4078 | 4079 | |
|
4079 | 4080 | @declared_attr |
|
4080 | 4081 | def target_repo(cls): |
|
4081 | 4082 | return relationship( |
|
4082 | 4083 | 'Repository', |
|
4083 | 4084 | primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__) |
|
4084 | 4085 | |
|
4085 | 4086 | @property |
|
4086 | 4087 | def target_ref_parts(self): |
|
4087 | 4088 | return self.unicode_to_reference(self.target_ref) |
|
4088 | 4089 | |
|
4089 | 4090 | @property |
|
4090 | 4091 | def shadow_merge_ref(self): |
|
4091 | 4092 | return self.unicode_to_reference(self._shadow_merge_ref) |
|
4092 | 4093 | |
|
4093 | 4094 | @shadow_merge_ref.setter |
|
4094 | 4095 | def shadow_merge_ref(self, ref): |
|
4095 | 4096 | self._shadow_merge_ref = self.reference_to_unicode(ref) |
|
4096 | 4097 | |
|
4097 | 4098 | @staticmethod |
|
4098 | 4099 | def unicode_to_reference(raw): |
|
4099 | 4100 | """ |
|
4100 | 4101 | Convert a unicode (or string) to a reference object. |
|
4101 | 4102 | If unicode evaluates to False it returns None. |
|
4102 | 4103 | """ |
|
4103 | 4104 | if raw: |
|
4104 | 4105 | refs = raw.split(':') |
|
4105 | 4106 | return Reference(*refs) |
|
4106 | 4107 | else: |
|
4107 | 4108 | return None |
|
4108 | 4109 | |
|
4109 | 4110 | @staticmethod |
|
4110 | 4111 | def reference_to_unicode(ref): |
|
4111 | 4112 | """ |
|
4112 | 4113 | Convert a reference object to unicode. |
|
4113 | 4114 | If reference is None it returns None. |
|
4114 | 4115 | """ |
|
4115 | 4116 | if ref: |
|
4116 | 4117 | return u':'.join(ref) |
|
4117 | 4118 | else: |
|
4118 | 4119 | return None |
|
4119 | 4120 | |
|
4120 | 4121 | def get_api_data(self, with_merge_state=True): |
|
4121 | 4122 | from rhodecode.model.pull_request import PullRequestModel |
|
4122 | 4123 | |
|
4123 | 4124 | pull_request = self |
|
4124 | 4125 | if with_merge_state: |
|
4125 | 4126 | merge_status = PullRequestModel().merge_status(pull_request) |
|
4126 | 4127 | merge_state = { |
|
4127 | 4128 | 'status': merge_status[0], |
|
4128 | 4129 | 'message': safe_unicode(merge_status[1]), |
|
4129 | 4130 | } |
|
4130 | 4131 | else: |
|
4131 | 4132 | merge_state = {'status': 'not_available', |
|
4132 | 4133 | 'message': 'not_available'} |
|
4133 | 4134 | |
|
4134 | 4135 | merge_data = { |
|
4135 | 4136 | 'clone_url': PullRequestModel().get_shadow_clone_url(pull_request), |
|
4136 | 4137 | 'reference': ( |
|
4137 | 4138 | pull_request.shadow_merge_ref._asdict() |
|
4138 | 4139 | if pull_request.shadow_merge_ref else None), |
|
4139 | 4140 | } |
|
4140 | 4141 | |
|
4141 | 4142 | data = { |
|
4142 | 4143 | 'pull_request_id': pull_request.pull_request_id, |
|
4143 | 4144 | 'url': PullRequestModel().get_url(pull_request), |
|
4144 | 4145 | 'title': pull_request.title, |
|
4145 | 4146 | 'description': pull_request.description, |
|
4146 | 4147 | 'status': pull_request.status, |
|
4147 | 4148 | 'state': pull_request.pull_request_state, |
|
4148 | 4149 | 'created_on': pull_request.created_on, |
|
4149 | 4150 | 'updated_on': pull_request.updated_on, |
|
4150 | 4151 | 'commit_ids': pull_request.revisions, |
|
4151 | 4152 | 'review_status': pull_request.calculated_review_status(), |
|
4152 | 4153 | 'mergeable': merge_state, |
|
4153 | 4154 | 'source': { |
|
4154 | 4155 | 'clone_url': pull_request.source_repo.clone_url(), |
|
4155 | 4156 | 'repository': pull_request.source_repo.repo_name, |
|
4156 | 4157 | 'reference': { |
|
4157 | 4158 | 'name': pull_request.source_ref_parts.name, |
|
4158 | 4159 | 'type': pull_request.source_ref_parts.type, |
|
4159 | 4160 | 'commit_id': pull_request.source_ref_parts.commit_id, |
|
4160 | 4161 | }, |
|
4161 | 4162 | }, |
|
4162 | 4163 | 'target': { |
|
4163 | 4164 | 'clone_url': pull_request.target_repo.clone_url(), |
|
4164 | 4165 | 'repository': pull_request.target_repo.repo_name, |
|
4165 | 4166 | 'reference': { |
|
4166 | 4167 | 'name': pull_request.target_ref_parts.name, |
|
4167 | 4168 | 'type': pull_request.target_ref_parts.type, |
|
4168 | 4169 | 'commit_id': pull_request.target_ref_parts.commit_id, |
|
4169 | 4170 | }, |
|
4170 | 4171 | }, |
|
4171 | 4172 | 'merge': merge_data, |
|
4172 | 4173 | 'author': pull_request.author.get_api_data(include_secrets=False, |
|
4173 | 4174 | details='basic'), |
|
4174 | 4175 | 'reviewers': [ |
|
4175 | 4176 | { |
|
4176 | 4177 | 'user': reviewer.get_api_data(include_secrets=False, |
|
4177 | 4178 | details='basic'), |
|
4178 | 4179 | 'reasons': reasons, |
|
4179 | 4180 | 'review_status': st[0][1].status if st else 'not_reviewed', |
|
4180 | 4181 | } |
|
4181 | 4182 | for obj, reviewer, reasons, mandatory, st in |
|
4182 | 4183 | pull_request.reviewers_statuses() |
|
4183 | 4184 | ] |
|
4184 | 4185 | } |
|
4185 | 4186 | |
|
4186 | 4187 | return data |
|
4187 | 4188 | |
|
4188 | 4189 | def set_state(self, pull_request_state, final_state=None): |
|
4189 | 4190 | """ |
|
4190 | 4191 | # goes from initial state to updating to initial state. |
|
4191 | 4192 | # initial state can be changed by specifying back_state= |
|
4192 | 4193 | with pull_request_obj.set_state(PullRequest.STATE_UPDATING): |
|
4193 | 4194 | pull_request.merge() |
|
4194 | 4195 | |
|
4195 | 4196 | :param pull_request_state: |
|
4196 | 4197 | :param final_state: |
|
4197 | 4198 | |
|
4198 | 4199 | """ |
|
4199 | 4200 | |
|
4200 | 4201 | return _SetState(self, pull_request_state, back_state=final_state) |
|
4201 | 4202 | |
|
4202 | 4203 | |
|
4203 | 4204 | class PullRequest(Base, _PullRequestBase): |
|
4204 | 4205 | __tablename__ = 'pull_requests' |
|
4205 | 4206 | __table_args__ = ( |
|
4206 | 4207 | base_table_args, |
|
4207 | 4208 | ) |
|
4208 | 4209 | |
|
4209 | 4210 | pull_request_id = Column( |
|
4210 | 4211 | 'pull_request_id', Integer(), nullable=False, primary_key=True) |
|
4211 | 4212 | |
|
4212 | 4213 | def __repr__(self): |
|
4213 | 4214 | if self.pull_request_id: |
|
4214 | 4215 | return '<DB:PullRequest #%s>' % self.pull_request_id |
|
4215 | 4216 | else: |
|
4216 | 4217 | return '<DB:PullRequest at %#x>' % id(self) |
|
4217 | 4218 | |
|
4218 | 4219 | reviewers = relationship('PullRequestReviewers', cascade="all, delete-orphan") |
|
4219 | 4220 | statuses = relationship('ChangesetStatus', cascade="all, delete-orphan") |
|
4220 | 4221 | comments = relationship('ChangesetComment', cascade="all, delete-orphan") |
|
4221 | 4222 | versions = relationship('PullRequestVersion', cascade="all, delete-orphan", |
|
4222 | 4223 | lazy='dynamic') |
|
4223 | 4224 | |
|
4224 | 4225 | @classmethod |
|
4225 | 4226 | def get_pr_display_object(cls, pull_request_obj, org_pull_request_obj, |
|
4226 | 4227 | internal_methods=None): |
|
4227 | 4228 | |
|
4228 | 4229 | class PullRequestDisplay(object): |
|
4229 | 4230 | """ |
|
4230 | 4231 | Special object wrapper for showing PullRequest data via Versions |
|
4231 | 4232 | It mimics PR object as close as possible. This is read only object |
|
4232 | 4233 | just for display |
|
4233 | 4234 | """ |
|
4234 | 4235 | |
|
4235 | 4236 | def __init__(self, attrs, internal=None): |
|
4236 | 4237 | self.attrs = attrs |
|
4237 | 4238 | # internal have priority over the given ones via attrs |
|
4238 | 4239 | self.internal = internal or ['versions'] |
|
4239 | 4240 | |
|
4240 | 4241 | def __getattr__(self, item): |
|
4241 | 4242 | if item in self.internal: |
|
4242 | 4243 | return getattr(self, item) |
|
4243 | 4244 | try: |
|
4244 | 4245 | return self.attrs[item] |
|
4245 | 4246 | except KeyError: |
|
4246 | 4247 | raise AttributeError( |
|
4247 | 4248 | '%s object has no attribute %s' % (self, item)) |
|
4248 | 4249 | |
|
4249 | 4250 | def __repr__(self): |
|
4250 | 4251 | return '<DB:PullRequestDisplay #%s>' % self.attrs.get('pull_request_id') |
|
4251 | 4252 | |
|
4252 | 4253 | def versions(self): |
|
4253 | 4254 | return pull_request_obj.versions.order_by( |
|
4254 | 4255 | PullRequestVersion.pull_request_version_id).all() |
|
4255 | 4256 | |
|
4256 | 4257 | def is_closed(self): |
|
4257 | 4258 | return pull_request_obj.is_closed() |
|
4258 | 4259 | |
|
4259 | 4260 | def is_state_changing(self): |
|
4260 | 4261 | return pull_request_obj.is_state_changing() |
|
4261 | 4262 | |
|
4262 | 4263 | @property |
|
4263 | 4264 | def pull_request_version_id(self): |
|
4264 | 4265 | return getattr(pull_request_obj, 'pull_request_version_id', None) |
|
4265 | 4266 | |
|
4266 | 4267 | attrs = StrictAttributeDict(pull_request_obj.get_api_data(with_merge_state=False)) |
|
4267 | 4268 | |
|
4268 | 4269 | attrs.author = StrictAttributeDict( |
|
4269 | 4270 | pull_request_obj.author.get_api_data()) |
|
4270 | 4271 | if pull_request_obj.target_repo: |
|
4271 | 4272 | attrs.target_repo = StrictAttributeDict( |
|
4272 | 4273 | pull_request_obj.target_repo.get_api_data()) |
|
4273 | 4274 | attrs.target_repo.clone_url = pull_request_obj.target_repo.clone_url |
|
4274 | 4275 | |
|
4275 | 4276 | if pull_request_obj.source_repo: |
|
4276 | 4277 | attrs.source_repo = StrictAttributeDict( |
|
4277 | 4278 | pull_request_obj.source_repo.get_api_data()) |
|
4278 | 4279 | attrs.source_repo.clone_url = pull_request_obj.source_repo.clone_url |
|
4279 | 4280 | |
|
4280 | 4281 | attrs.source_ref_parts = pull_request_obj.source_ref_parts |
|
4281 | 4282 | attrs.target_ref_parts = pull_request_obj.target_ref_parts |
|
4282 | 4283 | attrs.revisions = pull_request_obj.revisions |
|
4283 | 4284 | |
|
4284 | 4285 | attrs.shadow_merge_ref = org_pull_request_obj.shadow_merge_ref |
|
4285 | 4286 | attrs.reviewer_data = org_pull_request_obj.reviewer_data |
|
4286 | 4287 | attrs.reviewer_data_json = org_pull_request_obj.reviewer_data_json |
|
4287 | 4288 | |
|
4288 | 4289 | return PullRequestDisplay(attrs, internal=internal_methods) |
|
4289 | 4290 | |
|
4290 | 4291 | def is_closed(self): |
|
4291 | 4292 | return self.status == self.STATUS_CLOSED |
|
4292 | 4293 | |
|
4293 | 4294 | def is_state_changing(self): |
|
4294 | 4295 | return self.pull_request_state != PullRequest.STATE_CREATED |
|
4295 | 4296 | |
|
4296 | 4297 | def __json__(self): |
|
4297 | 4298 | return { |
|
4298 | 4299 | 'revisions': self.revisions, |
|
4299 | 4300 | 'versions': self.versions_count |
|
4300 | 4301 | } |
|
4301 | 4302 | |
|
4302 | 4303 | def calculated_review_status(self): |
|
4303 | 4304 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
4304 | 4305 | return ChangesetStatusModel().calculated_review_status(self) |
|
4305 | 4306 | |
|
4306 | 4307 | def reviewers_statuses(self): |
|
4307 | 4308 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
4308 | 4309 | return ChangesetStatusModel().reviewers_statuses(self) |
|
4309 | 4310 | |
|
4310 | 4311 | @property |
|
4311 | 4312 | def workspace_id(self): |
|
4312 | 4313 | from rhodecode.model.pull_request import PullRequestModel |
|
4313 | 4314 | return PullRequestModel()._workspace_id(self) |
|
4314 | 4315 | |
|
4315 | 4316 | def get_shadow_repo(self): |
|
4316 | 4317 | workspace_id = self.workspace_id |
|
4317 | 4318 | shadow_repository_path = self.target_repo.get_shadow_repository_path(workspace_id) |
|
4318 | 4319 | if os.path.isdir(shadow_repository_path): |
|
4319 | 4320 | vcs_obj = self.target_repo.scm_instance() |
|
4320 | 4321 | return vcs_obj.get_shadow_instance(shadow_repository_path) |
|
4321 | 4322 | |
|
4322 | 4323 | @property |
|
4323 | 4324 | def versions_count(self): |
|
4324 | 4325 | """ |
|
4325 | 4326 | return number of versions this PR have, e.g a PR that once been |
|
4326 | 4327 | updated will have 2 versions |
|
4327 | 4328 | """ |
|
4328 | 4329 | return self.versions.count() + 1 |
|
4329 | 4330 | |
|
4330 | 4331 | |
|
4331 | 4332 | class PullRequestVersion(Base, _PullRequestBase): |
|
4332 | 4333 | __tablename__ = 'pull_request_versions' |
|
4333 | 4334 | __table_args__ = ( |
|
4334 | 4335 | base_table_args, |
|
4335 | 4336 | ) |
|
4336 | 4337 | |
|
4337 | 4338 | pull_request_version_id = Column( |
|
4338 | 4339 | 'pull_request_version_id', Integer(), nullable=False, primary_key=True) |
|
4339 | 4340 | pull_request_id = Column( |
|
4340 | 4341 | 'pull_request_id', Integer(), |
|
4341 | 4342 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
4342 | 4343 | pull_request = relationship('PullRequest') |
|
4343 | 4344 | |
|
4344 | 4345 | def __repr__(self): |
|
4345 | 4346 | if self.pull_request_version_id: |
|
4346 | 4347 | return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id |
|
4347 | 4348 | else: |
|
4348 | 4349 | return '<DB:PullRequestVersion at %#x>' % id(self) |
|
4349 | 4350 | |
|
4350 | 4351 | @property |
|
4351 | 4352 | def reviewers(self): |
|
4352 | 4353 | return self.pull_request.reviewers |
|
4353 | 4354 | |
|
4354 | 4355 | @property |
|
4355 | 4356 | def versions(self): |
|
4356 | 4357 | return self.pull_request.versions |
|
4357 | 4358 | |
|
4358 | 4359 | def is_closed(self): |
|
4359 | 4360 | # calculate from original |
|
4360 | 4361 | return self.pull_request.status == self.STATUS_CLOSED |
|
4361 | 4362 | |
|
4362 | 4363 | def is_state_changing(self): |
|
4363 | 4364 | return self.pull_request.pull_request_state != PullRequest.STATE_CREATED |
|
4364 | 4365 | |
|
4365 | 4366 | def calculated_review_status(self): |
|
4366 | 4367 | return self.pull_request.calculated_review_status() |
|
4367 | 4368 | |
|
4368 | 4369 | def reviewers_statuses(self): |
|
4369 | 4370 | return self.pull_request.reviewers_statuses() |
|
4370 | 4371 | |
|
4371 | 4372 | |
|
4372 | 4373 | class PullRequestReviewers(Base, BaseModel): |
|
4373 | 4374 | __tablename__ = 'pull_request_reviewers' |
|
4374 | 4375 | __table_args__ = ( |
|
4375 | 4376 | base_table_args, |
|
4376 | 4377 | ) |
|
4377 | 4378 | |
|
4378 | 4379 | @hybrid_property |
|
4379 | 4380 | def reasons(self): |
|
4380 | 4381 | if not self._reasons: |
|
4381 | 4382 | return [] |
|
4382 | 4383 | return self._reasons |
|
4383 | 4384 | |
|
4384 | 4385 | @reasons.setter |
|
4385 | 4386 | def reasons(self, val): |
|
4386 | 4387 | val = val or [] |
|
4387 | 4388 | if any(not isinstance(x, compat.string_types) for x in val): |
|
4388 | 4389 | raise Exception('invalid reasons type, must be list of strings') |
|
4389 | 4390 | self._reasons = val |
|
4390 | 4391 | |
|
4391 | 4392 | pull_requests_reviewers_id = Column( |
|
4392 | 4393 | 'pull_requests_reviewers_id', Integer(), nullable=False, |
|
4393 | 4394 | primary_key=True) |
|
4394 | 4395 | pull_request_id = Column( |
|
4395 | 4396 | "pull_request_id", Integer(), |
|
4396 | 4397 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
4397 | 4398 | user_id = Column( |
|
4398 | 4399 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4399 | 4400 | _reasons = Column( |
|
4400 | 4401 | 'reason', MutationList.as_mutable( |
|
4401 | 4402 | JsonType('list', dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4402 | 4403 | |
|
4403 | 4404 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4404 | 4405 | user = relationship('User') |
|
4405 | 4406 | pull_request = relationship('PullRequest') |
|
4406 | 4407 | |
|
4407 | 4408 | rule_data = Column( |
|
4408 | 4409 | 'rule_data_json', |
|
4409 | 4410 | JsonType(dialect_map=dict(mysql=UnicodeText(16384)))) |
|
4410 | 4411 | |
|
4411 | 4412 | def rule_user_group_data(self): |
|
4412 | 4413 | """ |
|
4413 | 4414 | Returns the voting user group rule data for this reviewer |
|
4414 | 4415 | """ |
|
4415 | 4416 | |
|
4416 | 4417 | if self.rule_data and 'vote_rule' in self.rule_data: |
|
4417 | 4418 | user_group_data = {} |
|
4418 | 4419 | if 'rule_user_group_entry_id' in self.rule_data: |
|
4419 | 4420 | # means a group with voting rules ! |
|
4420 | 4421 | user_group_data['id'] = self.rule_data['rule_user_group_entry_id'] |
|
4421 | 4422 | user_group_data['name'] = self.rule_data['rule_name'] |
|
4422 | 4423 | user_group_data['vote_rule'] = self.rule_data['vote_rule'] |
|
4423 | 4424 | |
|
4424 | 4425 | return user_group_data |
|
4425 | 4426 | |
|
4426 | 4427 | def __unicode__(self): |
|
4427 | 4428 | return u"<%s('id:%s')>" % (self.__class__.__name__, |
|
4428 | 4429 | self.pull_requests_reviewers_id) |
|
4429 | 4430 | |
|
4430 | 4431 | |
|
4431 | 4432 | class Notification(Base, BaseModel): |
|
4432 | 4433 | __tablename__ = 'notifications' |
|
4433 | 4434 | __table_args__ = ( |
|
4434 | 4435 | Index('notification_type_idx', 'type'), |
|
4435 | 4436 | base_table_args, |
|
4436 | 4437 | ) |
|
4437 | 4438 | |
|
4438 | 4439 | TYPE_CHANGESET_COMMENT = u'cs_comment' |
|
4439 | 4440 | TYPE_MESSAGE = u'message' |
|
4440 | 4441 | TYPE_MENTION = u'mention' |
|
4441 | 4442 | TYPE_REGISTRATION = u'registration' |
|
4442 | 4443 | TYPE_PULL_REQUEST = u'pull_request' |
|
4443 | 4444 | TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment' |
|
4444 | 4445 | TYPE_PULL_REQUEST_UPDATE = u'pull_request_update' |
|
4445 | 4446 | |
|
4446 | 4447 | notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True) |
|
4447 | 4448 | subject = Column('subject', Unicode(512), nullable=True) |
|
4448 | 4449 | body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True) |
|
4449 | 4450 | created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4450 | 4451 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4451 | 4452 | type_ = Column('type', Unicode(255)) |
|
4452 | 4453 | |
|
4453 | 4454 | created_by_user = relationship('User') |
|
4454 | 4455 | notifications_to_users = relationship('UserNotification', lazy='joined', |
|
4455 | 4456 | cascade="all, delete-orphan") |
|
4456 | 4457 | |
|
4457 | 4458 | @property |
|
4458 | 4459 | def recipients(self): |
|
4459 | 4460 | return [x.user for x in UserNotification.query()\ |
|
4460 | 4461 | .filter(UserNotification.notification == self)\ |
|
4461 | 4462 | .order_by(UserNotification.user_id.asc()).all()] |
|
4462 | 4463 | |
|
4463 | 4464 | @classmethod |
|
4464 | 4465 | def create(cls, created_by, subject, body, recipients, type_=None): |
|
4465 | 4466 | if type_ is None: |
|
4466 | 4467 | type_ = Notification.TYPE_MESSAGE |
|
4467 | 4468 | |
|
4468 | 4469 | notification = cls() |
|
4469 | 4470 | notification.created_by_user = created_by |
|
4470 | 4471 | notification.subject = subject |
|
4471 | 4472 | notification.body = body |
|
4472 | 4473 | notification.type_ = type_ |
|
4473 | 4474 | notification.created_on = datetime.datetime.now() |
|
4474 | 4475 | |
|
4475 | 4476 | # For each recipient link the created notification to his account |
|
4476 | 4477 | for u in recipients: |
|
4477 | 4478 | assoc = UserNotification() |
|
4478 | 4479 | assoc.user_id = u.user_id |
|
4479 | 4480 | assoc.notification = notification |
|
4480 | 4481 | |
|
4481 | 4482 | # if created_by is inside recipients mark his notification |
|
4482 | 4483 | # as read |
|
4483 | 4484 | if u.user_id == created_by.user_id: |
|
4484 | 4485 | assoc.read = True |
|
4485 | 4486 | Session().add(assoc) |
|
4486 | 4487 | |
|
4487 | 4488 | Session().add(notification) |
|
4488 | 4489 | |
|
4489 | 4490 | return notification |
|
4490 | 4491 | |
|
4491 | 4492 | |
|
4492 | 4493 | class UserNotification(Base, BaseModel): |
|
4493 | 4494 | __tablename__ = 'user_to_notification' |
|
4494 | 4495 | __table_args__ = ( |
|
4495 | 4496 | UniqueConstraint('user_id', 'notification_id'), |
|
4496 | 4497 | base_table_args |
|
4497 | 4498 | ) |
|
4498 | 4499 | |
|
4499 | 4500 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
4500 | 4501 | notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True) |
|
4501 | 4502 | read = Column('read', Boolean, default=False) |
|
4502 | 4503 | sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None) |
|
4503 | 4504 | |
|
4504 | 4505 | user = relationship('User', lazy="joined") |
|
4505 | 4506 | notification = relationship('Notification', lazy="joined", |
|
4506 | 4507 | order_by=lambda: Notification.created_on.desc(),) |
|
4507 | 4508 | |
|
4508 | 4509 | def mark_as_read(self): |
|
4509 | 4510 | self.read = True |
|
4510 | 4511 | Session().add(self) |
|
4511 | 4512 | |
|
4512 | 4513 | |
|
4513 | 4514 | class Gist(Base, BaseModel): |
|
4514 | 4515 | __tablename__ = 'gists' |
|
4515 | 4516 | __table_args__ = ( |
|
4516 | 4517 | Index('g_gist_access_id_idx', 'gist_access_id'), |
|
4517 | 4518 | Index('g_created_on_idx', 'created_on'), |
|
4518 | 4519 | base_table_args |
|
4519 | 4520 | ) |
|
4520 | 4521 | |
|
4521 | 4522 | GIST_PUBLIC = u'public' |
|
4522 | 4523 | GIST_PRIVATE = u'private' |
|
4523 | 4524 | DEFAULT_FILENAME = u'gistfile1.txt' |
|
4524 | 4525 | |
|
4525 | 4526 | ACL_LEVEL_PUBLIC = u'acl_public' |
|
4526 | 4527 | ACL_LEVEL_PRIVATE = u'acl_private' |
|
4527 | 4528 | |
|
4528 | 4529 | gist_id = Column('gist_id', Integer(), primary_key=True) |
|
4529 | 4530 | gist_access_id = Column('gist_access_id', Unicode(250)) |
|
4530 | 4531 | gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
4531 | 4532 | gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4532 | 4533 | gist_expires = Column('gist_expires', Float(53), nullable=False) |
|
4533 | 4534 | gist_type = Column('gist_type', Unicode(128), nullable=False) |
|
4534 | 4535 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4535 | 4536 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4536 | 4537 | acl_level = Column('acl_level', Unicode(128), nullable=True) |
|
4537 | 4538 | |
|
4538 | 4539 | owner = relationship('User') |
|
4539 | 4540 | |
|
4540 | 4541 | def __repr__(self): |
|
4541 | 4542 | return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id) |
|
4542 | 4543 | |
|
4543 | 4544 | @hybrid_property |
|
4544 | 4545 | def description_safe(self): |
|
4545 | 4546 | from rhodecode.lib import helpers as h |
|
4546 | 4547 | return h.escape(self.gist_description) |
|
4547 | 4548 | |
|
4548 | 4549 | @classmethod |
|
4549 | 4550 | def get_or_404(cls, id_): |
|
4550 | 4551 | from pyramid.httpexceptions import HTTPNotFound |
|
4551 | 4552 | |
|
4552 | 4553 | res = cls.query().filter(cls.gist_access_id == id_).scalar() |
|
4553 | 4554 | if not res: |
|
4554 | 4555 | raise HTTPNotFound() |
|
4555 | 4556 | return res |
|
4556 | 4557 | |
|
4557 | 4558 | @classmethod |
|
4558 | 4559 | def get_by_access_id(cls, gist_access_id): |
|
4559 | 4560 | return cls.query().filter(cls.gist_access_id == gist_access_id).scalar() |
|
4560 | 4561 | |
|
4561 | 4562 | def gist_url(self): |
|
4562 | 4563 | from rhodecode.model.gist import GistModel |
|
4563 | 4564 | return GistModel().get_url(self) |
|
4564 | 4565 | |
|
4565 | 4566 | @classmethod |
|
4566 | 4567 | def base_path(cls): |
|
4567 | 4568 | """ |
|
4568 | 4569 | Returns base path when all gists are stored |
|
4569 | 4570 | |
|
4570 | 4571 | :param cls: |
|
4571 | 4572 | """ |
|
4572 | 4573 | from rhodecode.model.gist import GIST_STORE_LOC |
|
4573 | 4574 | q = Session().query(RhodeCodeUi)\ |
|
4574 | 4575 | .filter(RhodeCodeUi.ui_key == URL_SEP) |
|
4575 | 4576 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
4576 | 4577 | return os.path.join(q.one().ui_value, GIST_STORE_LOC) |
|
4577 | 4578 | |
|
4578 | 4579 | def get_api_data(self): |
|
4579 | 4580 | """ |
|
4580 | 4581 | Common function for generating gist related data for API |
|
4581 | 4582 | """ |
|
4582 | 4583 | gist = self |
|
4583 | 4584 | data = { |
|
4584 | 4585 | 'gist_id': gist.gist_id, |
|
4585 | 4586 | 'type': gist.gist_type, |
|
4586 | 4587 | 'access_id': gist.gist_access_id, |
|
4587 | 4588 | 'description': gist.gist_description, |
|
4588 | 4589 | 'url': gist.gist_url(), |
|
4589 | 4590 | 'expires': gist.gist_expires, |
|
4590 | 4591 | 'created_on': gist.created_on, |
|
4591 | 4592 | 'modified_at': gist.modified_at, |
|
4592 | 4593 | 'content': None, |
|
4593 | 4594 | 'acl_level': gist.acl_level, |
|
4594 | 4595 | } |
|
4595 | 4596 | return data |
|
4596 | 4597 | |
|
4597 | 4598 | def __json__(self): |
|
4598 | 4599 | data = dict( |
|
4599 | 4600 | ) |
|
4600 | 4601 | data.update(self.get_api_data()) |
|
4601 | 4602 | return data |
|
4602 | 4603 | # SCM functions |
|
4603 | 4604 | |
|
4604 | 4605 | def scm_instance(self, **kwargs): |
|
4605 | 4606 | """ |
|
4606 | 4607 | Get an instance of VCS Repository |
|
4607 | 4608 | |
|
4608 | 4609 | :param kwargs: |
|
4609 | 4610 | """ |
|
4610 | 4611 | from rhodecode.model.gist import GistModel |
|
4611 | 4612 | full_repo_path = os.path.join(self.base_path(), self.gist_access_id) |
|
4612 | 4613 | return get_vcs_instance( |
|
4613 | 4614 | repo_path=safe_str(full_repo_path), create=False, |
|
4614 | 4615 | _vcs_alias=GistModel.vcs_backend) |
|
4615 | 4616 | |
|
4616 | 4617 | |
|
4617 | 4618 | class ExternalIdentity(Base, BaseModel): |
|
4618 | 4619 | __tablename__ = 'external_identities' |
|
4619 | 4620 | __table_args__ = ( |
|
4620 | 4621 | Index('local_user_id_idx', 'local_user_id'), |
|
4621 | 4622 | Index('external_id_idx', 'external_id'), |
|
4622 | 4623 | base_table_args |
|
4623 | 4624 | ) |
|
4624 | 4625 | |
|
4625 | 4626 | external_id = Column('external_id', Unicode(255), default=u'', primary_key=True) |
|
4626 | 4627 | external_username = Column('external_username', Unicode(1024), default=u'') |
|
4627 | 4628 | local_user_id = Column('local_user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
4628 | 4629 | provider_name = Column('provider_name', Unicode(255), default=u'', primary_key=True) |
|
4629 | 4630 | access_token = Column('access_token', String(1024), default=u'') |
|
4630 | 4631 | alt_token = Column('alt_token', String(1024), default=u'') |
|
4631 | 4632 | token_secret = Column('token_secret', String(1024), default=u'') |
|
4632 | 4633 | |
|
4633 | 4634 | @classmethod |
|
4634 | 4635 | def by_external_id_and_provider(cls, external_id, provider_name, local_user_id=None): |
|
4635 | 4636 | """ |
|
4636 | 4637 | Returns ExternalIdentity instance based on search params |
|
4637 | 4638 | |
|
4638 | 4639 | :param external_id: |
|
4639 | 4640 | :param provider_name: |
|
4640 | 4641 | :return: ExternalIdentity |
|
4641 | 4642 | """ |
|
4642 | 4643 | query = cls.query() |
|
4643 | 4644 | query = query.filter(cls.external_id == external_id) |
|
4644 | 4645 | query = query.filter(cls.provider_name == provider_name) |
|
4645 | 4646 | if local_user_id: |
|
4646 | 4647 | query = query.filter(cls.local_user_id == local_user_id) |
|
4647 | 4648 | return query.first() |
|
4648 | 4649 | |
|
4649 | 4650 | @classmethod |
|
4650 | 4651 | def user_by_external_id_and_provider(cls, external_id, provider_name): |
|
4651 | 4652 | """ |
|
4652 | 4653 | Returns User instance based on search params |
|
4653 | 4654 | |
|
4654 | 4655 | :param external_id: |
|
4655 | 4656 | :param provider_name: |
|
4656 | 4657 | :return: User |
|
4657 | 4658 | """ |
|
4658 | 4659 | query = User.query() |
|
4659 | 4660 | query = query.filter(cls.external_id == external_id) |
|
4660 | 4661 | query = query.filter(cls.provider_name == provider_name) |
|
4661 | 4662 | query = query.filter(User.user_id == cls.local_user_id) |
|
4662 | 4663 | return query.first() |
|
4663 | 4664 | |
|
4664 | 4665 | @classmethod |
|
4665 | 4666 | def by_local_user_id(cls, local_user_id): |
|
4666 | 4667 | """ |
|
4667 | 4668 | Returns all tokens for user |
|
4668 | 4669 | |
|
4669 | 4670 | :param local_user_id: |
|
4670 | 4671 | :return: ExternalIdentity |
|
4671 | 4672 | """ |
|
4672 | 4673 | query = cls.query() |
|
4673 | 4674 | query = query.filter(cls.local_user_id == local_user_id) |
|
4674 | 4675 | return query |
|
4675 | 4676 | |
|
4676 | 4677 | @classmethod |
|
4677 | 4678 | def load_provider_plugin(cls, plugin_id): |
|
4678 | 4679 | from rhodecode.authentication.base import loadplugin |
|
4679 | 4680 | _plugin_id = 'egg:rhodecode-enterprise-ee#{}'.format(plugin_id) |
|
4680 | 4681 | auth_plugin = loadplugin(_plugin_id) |
|
4681 | 4682 | return auth_plugin |
|
4682 | 4683 | |
|
4683 | 4684 | |
|
4684 | 4685 | class Integration(Base, BaseModel): |
|
4685 | 4686 | __tablename__ = 'integrations' |
|
4686 | 4687 | __table_args__ = ( |
|
4687 | 4688 | base_table_args |
|
4688 | 4689 | ) |
|
4689 | 4690 | |
|
4690 | 4691 | integration_id = Column('integration_id', Integer(), primary_key=True) |
|
4691 | 4692 | integration_type = Column('integration_type', String(255)) |
|
4692 | 4693 | enabled = Column('enabled', Boolean(), nullable=False) |
|
4693 | 4694 | name = Column('name', String(255), nullable=False) |
|
4694 | 4695 | child_repos_only = Column('child_repos_only', Boolean(), nullable=False, |
|
4695 | 4696 | default=False) |
|
4696 | 4697 | |
|
4697 | 4698 | settings = Column( |
|
4698 | 4699 | 'settings_json', MutationObj.as_mutable( |
|
4699 | 4700 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4700 | 4701 | repo_id = Column( |
|
4701 | 4702 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
4702 | 4703 | nullable=True, unique=None, default=None) |
|
4703 | 4704 | repo = relationship('Repository', lazy='joined') |
|
4704 | 4705 | |
|
4705 | 4706 | repo_group_id = Column( |
|
4706 | 4707 | 'repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
4707 | 4708 | nullable=True, unique=None, default=None) |
|
4708 | 4709 | repo_group = relationship('RepoGroup', lazy='joined') |
|
4709 | 4710 | |
|
4710 | 4711 | @property |
|
4711 | 4712 | def scope(self): |
|
4712 | 4713 | if self.repo: |
|
4713 | 4714 | return repr(self.repo) |
|
4714 | 4715 | if self.repo_group: |
|
4715 | 4716 | if self.child_repos_only: |
|
4716 | 4717 | return repr(self.repo_group) + ' (child repos only)' |
|
4717 | 4718 | else: |
|
4718 | 4719 | return repr(self.repo_group) + ' (recursive)' |
|
4719 | 4720 | if self.child_repos_only: |
|
4720 | 4721 | return 'root_repos' |
|
4721 | 4722 | return 'global' |
|
4722 | 4723 | |
|
4723 | 4724 | def __repr__(self): |
|
4724 | 4725 | return '<Integration(%r, %r)>' % (self.integration_type, self.scope) |
|
4725 | 4726 | |
|
4726 | 4727 | |
|
4727 | 4728 | class RepoReviewRuleUser(Base, BaseModel): |
|
4728 | 4729 | __tablename__ = 'repo_review_rules_users' |
|
4729 | 4730 | __table_args__ = ( |
|
4730 | 4731 | base_table_args |
|
4731 | 4732 | ) |
|
4732 | 4733 | |
|
4733 | 4734 | repo_review_rule_user_id = Column('repo_review_rule_user_id', Integer(), primary_key=True) |
|
4734 | 4735 | repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id')) |
|
4735 | 4736 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False) |
|
4736 | 4737 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4737 | 4738 | user = relationship('User') |
|
4738 | 4739 | |
|
4739 | 4740 | def rule_data(self): |
|
4740 | 4741 | return { |
|
4741 | 4742 | 'mandatory': self.mandatory |
|
4742 | 4743 | } |
|
4743 | 4744 | |
|
4744 | 4745 | |
|
4745 | 4746 | class RepoReviewRuleUserGroup(Base, BaseModel): |
|
4746 | 4747 | __tablename__ = 'repo_review_rules_users_groups' |
|
4747 | 4748 | __table_args__ = ( |
|
4748 | 4749 | base_table_args |
|
4749 | 4750 | ) |
|
4750 | 4751 | |
|
4751 | 4752 | VOTE_RULE_ALL = -1 |
|
4752 | 4753 | |
|
4753 | 4754 | repo_review_rule_users_group_id = Column('repo_review_rule_users_group_id', Integer(), primary_key=True) |
|
4754 | 4755 | repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id')) |
|
4755 | 4756 | users_group_id = Column("users_group_id", Integer(),ForeignKey('users_groups.users_group_id'), nullable=False) |
|
4756 | 4757 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4757 | 4758 | vote_rule = Column("vote_rule", Integer(), nullable=True, default=VOTE_RULE_ALL) |
|
4758 | 4759 | users_group = relationship('UserGroup') |
|
4759 | 4760 | |
|
4760 | 4761 | def rule_data(self): |
|
4761 | 4762 | return { |
|
4762 | 4763 | 'mandatory': self.mandatory, |
|
4763 | 4764 | 'vote_rule': self.vote_rule |
|
4764 | 4765 | } |
|
4765 | 4766 | |
|
4766 | 4767 | @property |
|
4767 | 4768 | def vote_rule_label(self): |
|
4768 | 4769 | if not self.vote_rule or self.vote_rule == self.VOTE_RULE_ALL: |
|
4769 | 4770 | return 'all must vote' |
|
4770 | 4771 | else: |
|
4771 | 4772 | return 'min. vote {}'.format(self.vote_rule) |
|
4772 | 4773 | |
|
4773 | 4774 | |
|
4774 | 4775 | class RepoReviewRule(Base, BaseModel): |
|
4775 | 4776 | __tablename__ = 'repo_review_rules' |
|
4776 | 4777 | __table_args__ = ( |
|
4777 | 4778 | base_table_args |
|
4778 | 4779 | ) |
|
4779 | 4780 | |
|
4780 | 4781 | repo_review_rule_id = Column( |
|
4781 | 4782 | 'repo_review_rule_id', Integer(), primary_key=True) |
|
4782 | 4783 | repo_id = Column( |
|
4783 | 4784 | "repo_id", Integer(), ForeignKey('repositories.repo_id')) |
|
4784 | 4785 | repo = relationship('Repository', backref='review_rules') |
|
4785 | 4786 | |
|
4786 | 4787 | review_rule_name = Column('review_rule_name', String(255)) |
|
4787 | 4788 | _branch_pattern = Column("branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4788 | 4789 | _target_branch_pattern = Column("target_branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4789 | 4790 | _file_pattern = Column("file_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4790 | 4791 | |
|
4791 | 4792 | use_authors_for_review = Column("use_authors_for_review", Boolean(), nullable=False, default=False) |
|
4792 | 4793 | forbid_author_to_review = Column("forbid_author_to_review", Boolean(), nullable=False, default=False) |
|
4793 | 4794 | forbid_commit_author_to_review = Column("forbid_commit_author_to_review", Boolean(), nullable=False, default=False) |
|
4794 | 4795 | forbid_adding_reviewers = Column("forbid_adding_reviewers", Boolean(), nullable=False, default=False) |
|
4795 | 4796 | |
|
4796 | 4797 | rule_users = relationship('RepoReviewRuleUser') |
|
4797 | 4798 | rule_user_groups = relationship('RepoReviewRuleUserGroup') |
|
4798 | 4799 | |
|
4799 | 4800 | def _validate_pattern(self, value): |
|
4800 | 4801 | re.compile('^' + glob2re(value) + '$') |
|
4801 | 4802 | |
|
4802 | 4803 | @hybrid_property |
|
4803 | 4804 | def source_branch_pattern(self): |
|
4804 | 4805 | return self._branch_pattern or '*' |
|
4805 | 4806 | |
|
4806 | 4807 | @source_branch_pattern.setter |
|
4807 | 4808 | def source_branch_pattern(self, value): |
|
4808 | 4809 | self._validate_pattern(value) |
|
4809 | 4810 | self._branch_pattern = value or '*' |
|
4810 | 4811 | |
|
4811 | 4812 | @hybrid_property |
|
4812 | 4813 | def target_branch_pattern(self): |
|
4813 | 4814 | return self._target_branch_pattern or '*' |
|
4814 | 4815 | |
|
4815 | 4816 | @target_branch_pattern.setter |
|
4816 | 4817 | def target_branch_pattern(self, value): |
|
4817 | 4818 | self._validate_pattern(value) |
|
4818 | 4819 | self._target_branch_pattern = value or '*' |
|
4819 | 4820 | |
|
4820 | 4821 | @hybrid_property |
|
4821 | 4822 | def file_pattern(self): |
|
4822 | 4823 | return self._file_pattern or '*' |
|
4823 | 4824 | |
|
4824 | 4825 | @file_pattern.setter |
|
4825 | 4826 | def file_pattern(self, value): |
|
4826 | 4827 | self._validate_pattern(value) |
|
4827 | 4828 | self._file_pattern = value or '*' |
|
4828 | 4829 | |
|
4829 | 4830 | def matches(self, source_branch, target_branch, files_changed): |
|
4830 | 4831 | """ |
|
4831 | 4832 | Check if this review rule matches a branch/files in a pull request |
|
4832 | 4833 | |
|
4833 | 4834 | :param source_branch: source branch name for the commit |
|
4834 | 4835 | :param target_branch: target branch name for the commit |
|
4835 | 4836 | :param files_changed: list of file paths changed in the pull request |
|
4836 | 4837 | """ |
|
4837 | 4838 | |
|
4838 | 4839 | source_branch = source_branch or '' |
|
4839 | 4840 | target_branch = target_branch or '' |
|
4840 | 4841 | files_changed = files_changed or [] |
|
4841 | 4842 | |
|
4842 | 4843 | branch_matches = True |
|
4843 | 4844 | if source_branch or target_branch: |
|
4844 | 4845 | if self.source_branch_pattern == '*': |
|
4845 | 4846 | source_branch_match = True |
|
4846 | 4847 | else: |
|
4847 | 4848 | if self.source_branch_pattern.startswith('re:'): |
|
4848 | 4849 | source_pattern = self.source_branch_pattern[3:] |
|
4849 | 4850 | else: |
|
4850 | 4851 | source_pattern = '^' + glob2re(self.source_branch_pattern) + '$' |
|
4851 | 4852 | source_branch_regex = re.compile(source_pattern) |
|
4852 | 4853 | source_branch_match = bool(source_branch_regex.search(source_branch)) |
|
4853 | 4854 | if self.target_branch_pattern == '*': |
|
4854 | 4855 | target_branch_match = True |
|
4855 | 4856 | else: |
|
4856 | 4857 | if self.target_branch_pattern.startswith('re:'): |
|
4857 | 4858 | target_pattern = self.target_branch_pattern[3:] |
|
4858 | 4859 | else: |
|
4859 | 4860 | target_pattern = '^' + glob2re(self.target_branch_pattern) + '$' |
|
4860 | 4861 | target_branch_regex = re.compile(target_pattern) |
|
4861 | 4862 | target_branch_match = bool(target_branch_regex.search(target_branch)) |
|
4862 | 4863 | |
|
4863 | 4864 | branch_matches = source_branch_match and target_branch_match |
|
4864 | 4865 | |
|
4865 | 4866 | files_matches = True |
|
4866 | 4867 | if self.file_pattern != '*': |
|
4867 | 4868 | files_matches = False |
|
4868 | 4869 | if self.file_pattern.startswith('re:'): |
|
4869 | 4870 | file_pattern = self.file_pattern[3:] |
|
4870 | 4871 | else: |
|
4871 | 4872 | file_pattern = glob2re(self.file_pattern) |
|
4872 | 4873 | file_regex = re.compile(file_pattern) |
|
4873 | 4874 | for filename in files_changed: |
|
4874 | 4875 | if file_regex.search(filename): |
|
4875 | 4876 | files_matches = True |
|
4876 | 4877 | break |
|
4877 | 4878 | |
|
4878 | 4879 | return branch_matches and files_matches |
|
4879 | 4880 | |
|
4880 | 4881 | @property |
|
4881 | 4882 | def review_users(self): |
|
4882 | 4883 | """ Returns the users which this rule applies to """ |
|
4883 | 4884 | |
|
4884 | 4885 | users = collections.OrderedDict() |
|
4885 | 4886 | |
|
4886 | 4887 | for rule_user in self.rule_users: |
|
4887 | 4888 | if rule_user.user.active: |
|
4888 | 4889 | if rule_user.user not in users: |
|
4889 | 4890 | users[rule_user.user.username] = { |
|
4890 | 4891 | 'user': rule_user.user, |
|
4891 | 4892 | 'source': 'user', |
|
4892 | 4893 | 'source_data': {}, |
|
4893 | 4894 | 'data': rule_user.rule_data() |
|
4894 | 4895 | } |
|
4895 | 4896 | |
|
4896 | 4897 | for rule_user_group in self.rule_user_groups: |
|
4897 | 4898 | source_data = { |
|
4898 | 4899 | 'user_group_id': rule_user_group.users_group.users_group_id, |
|
4899 | 4900 | 'name': rule_user_group.users_group.users_group_name, |
|
4900 | 4901 | 'members': len(rule_user_group.users_group.members) |
|
4901 | 4902 | } |
|
4902 | 4903 | for member in rule_user_group.users_group.members: |
|
4903 | 4904 | if member.user.active: |
|
4904 | 4905 | key = member.user.username |
|
4905 | 4906 | if key in users: |
|
4906 | 4907 | # skip this member as we have him already |
|
4907 | 4908 | # this prevents from override the "first" matched |
|
4908 | 4909 | # users with duplicates in multiple groups |
|
4909 | 4910 | continue |
|
4910 | 4911 | |
|
4911 | 4912 | users[key] = { |
|
4912 | 4913 | 'user': member.user, |
|
4913 | 4914 | 'source': 'user_group', |
|
4914 | 4915 | 'source_data': source_data, |
|
4915 | 4916 | 'data': rule_user_group.rule_data() |
|
4916 | 4917 | } |
|
4917 | 4918 | |
|
4918 | 4919 | return users |
|
4919 | 4920 | |
|
4920 | 4921 | def user_group_vote_rule(self, user_id): |
|
4921 | 4922 | |
|
4922 | 4923 | rules = [] |
|
4923 | 4924 | if not self.rule_user_groups: |
|
4924 | 4925 | return rules |
|
4925 | 4926 | |
|
4926 | 4927 | for user_group in self.rule_user_groups: |
|
4927 | 4928 | user_group_members = [x.user_id for x in user_group.users_group.members] |
|
4928 | 4929 | if user_id in user_group_members: |
|
4929 | 4930 | rules.append(user_group) |
|
4930 | 4931 | return rules |
|
4931 | 4932 | |
|
4932 | 4933 | def __repr__(self): |
|
4933 | 4934 | return '<RepoReviewerRule(id=%r, repo=%r)>' % ( |
|
4934 | 4935 | self.repo_review_rule_id, self.repo) |
|
4935 | 4936 | |
|
4936 | 4937 | |
|
4937 | 4938 | class ScheduleEntry(Base, BaseModel): |
|
4938 | 4939 | __tablename__ = 'schedule_entries' |
|
4939 | 4940 | __table_args__ = ( |
|
4940 | 4941 | UniqueConstraint('schedule_name', name='s_schedule_name_idx'), |
|
4941 | 4942 | UniqueConstraint('task_uid', name='s_task_uid_idx'), |
|
4942 | 4943 | base_table_args, |
|
4943 | 4944 | ) |
|
4944 | 4945 | |
|
4945 | 4946 | schedule_types = ['crontab', 'timedelta', 'integer'] |
|
4946 | 4947 | schedule_entry_id = Column('schedule_entry_id', Integer(), primary_key=True) |
|
4947 | 4948 | |
|
4948 | 4949 | schedule_name = Column("schedule_name", String(255), nullable=False, unique=None, default=None) |
|
4949 | 4950 | schedule_description = Column("schedule_description", String(10000), nullable=True, unique=None, default=None) |
|
4950 | 4951 | schedule_enabled = Column("schedule_enabled", Boolean(), nullable=False, unique=None, default=True) |
|
4951 | 4952 | |
|
4952 | 4953 | _schedule_type = Column("schedule_type", String(255), nullable=False, unique=None, default=None) |
|
4953 | 4954 | schedule_definition = Column('schedule_definition_json', MutationObj.as_mutable(JsonType(default=lambda: "", dialect_map=dict(mysql=LONGTEXT())))) |
|
4954 | 4955 | |
|
4955 | 4956 | schedule_last_run = Column('schedule_last_run', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
4956 | 4957 | schedule_total_run_count = Column('schedule_total_run_count', Integer(), nullable=True, unique=None, default=0) |
|
4957 | 4958 | |
|
4958 | 4959 | # task |
|
4959 | 4960 | task_uid = Column("task_uid", String(255), nullable=False, unique=None, default=None) |
|
4960 | 4961 | task_dot_notation = Column("task_dot_notation", String(4096), nullable=False, unique=None, default=None) |
|
4961 | 4962 | task_args = Column('task_args_json', MutationObj.as_mutable(JsonType(default=list, dialect_map=dict(mysql=LONGTEXT())))) |
|
4962 | 4963 | task_kwargs = Column('task_kwargs_json', MutationObj.as_mutable(JsonType(default=dict, dialect_map=dict(mysql=LONGTEXT())))) |
|
4963 | 4964 | |
|
4964 | 4965 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4965 | 4966 | updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
4966 | 4967 | |
|
4967 | 4968 | @hybrid_property |
|
4968 | 4969 | def schedule_type(self): |
|
4969 | 4970 | return self._schedule_type |
|
4970 | 4971 | |
|
4971 | 4972 | @schedule_type.setter |
|
4972 | 4973 | def schedule_type(self, val): |
|
4973 | 4974 | if val not in self.schedule_types: |
|
4974 | 4975 | raise ValueError('Value must be on of `{}` and got `{}`'.format( |
|
4975 | 4976 | val, self.schedule_type)) |
|
4976 | 4977 | |
|
4977 | 4978 | self._schedule_type = val |
|
4978 | 4979 | |
|
4979 | 4980 | @classmethod |
|
4980 | 4981 | def get_uid(cls, obj): |
|
4981 | 4982 | args = obj.task_args |
|
4982 | 4983 | kwargs = obj.task_kwargs |
|
4983 | 4984 | if isinstance(args, JsonRaw): |
|
4984 | 4985 | try: |
|
4985 | 4986 | args = json.loads(args) |
|
4986 | 4987 | except ValueError: |
|
4987 | 4988 | args = tuple() |
|
4988 | 4989 | |
|
4989 | 4990 | if isinstance(kwargs, JsonRaw): |
|
4990 | 4991 | try: |
|
4991 | 4992 | kwargs = json.loads(kwargs) |
|
4992 | 4993 | except ValueError: |
|
4993 | 4994 | kwargs = dict() |
|
4994 | 4995 | |
|
4995 | 4996 | dot_notation = obj.task_dot_notation |
|
4996 | 4997 | val = '.'.join(map(safe_str, [ |
|
4997 | 4998 | sorted(dot_notation), args, sorted(kwargs.items())])) |
|
4998 | 4999 | return hashlib.sha1(val).hexdigest() |
|
4999 | 5000 | |
|
5000 | 5001 | @classmethod |
|
5001 | 5002 | def get_by_schedule_name(cls, schedule_name): |
|
5002 | 5003 | return cls.query().filter(cls.schedule_name == schedule_name).scalar() |
|
5003 | 5004 | |
|
5004 | 5005 | @classmethod |
|
5005 | 5006 | def get_by_schedule_id(cls, schedule_id): |
|
5006 | 5007 | return cls.query().filter(cls.schedule_entry_id == schedule_id).scalar() |
|
5007 | 5008 | |
|
5008 | 5009 | @property |
|
5009 | 5010 | def task(self): |
|
5010 | 5011 | return self.task_dot_notation |
|
5011 | 5012 | |
|
5012 | 5013 | @property |
|
5013 | 5014 | def schedule(self): |
|
5014 | 5015 | from rhodecode.lib.celerylib.utils import raw_2_schedule |
|
5015 | 5016 | schedule = raw_2_schedule(self.schedule_definition, self.schedule_type) |
|
5016 | 5017 | return schedule |
|
5017 | 5018 | |
|
5018 | 5019 | @property |
|
5019 | 5020 | def args(self): |
|
5020 | 5021 | try: |
|
5021 | 5022 | return list(self.task_args or []) |
|
5022 | 5023 | except ValueError: |
|
5023 | 5024 | return list() |
|
5024 | 5025 | |
|
5025 | 5026 | @property |
|
5026 | 5027 | def kwargs(self): |
|
5027 | 5028 | try: |
|
5028 | 5029 | return dict(self.task_kwargs or {}) |
|
5029 | 5030 | except ValueError: |
|
5030 | 5031 | return dict() |
|
5031 | 5032 | |
|
5032 | 5033 | def _as_raw(self, val): |
|
5033 | 5034 | if hasattr(val, 'de_coerce'): |
|
5034 | 5035 | val = val.de_coerce() |
|
5035 | 5036 | if val: |
|
5036 | 5037 | val = json.dumps(val) |
|
5037 | 5038 | |
|
5038 | 5039 | return val |
|
5039 | 5040 | |
|
5040 | 5041 | @property |
|
5041 | 5042 | def schedule_definition_raw(self): |
|
5042 | 5043 | return self._as_raw(self.schedule_definition) |
|
5043 | 5044 | |
|
5044 | 5045 | @property |
|
5045 | 5046 | def args_raw(self): |
|
5046 | 5047 | return self._as_raw(self.task_args) |
|
5047 | 5048 | |
|
5048 | 5049 | @property |
|
5049 | 5050 | def kwargs_raw(self): |
|
5050 | 5051 | return self._as_raw(self.task_kwargs) |
|
5051 | 5052 | |
|
5052 | 5053 | def __repr__(self): |
|
5053 | 5054 | return '<DB:ScheduleEntry({}:{})>'.format( |
|
5054 | 5055 | self.schedule_entry_id, self.schedule_name) |
|
5055 | 5056 | |
|
5056 | 5057 | |
|
5057 | 5058 | @event.listens_for(ScheduleEntry, 'before_update') |
|
5058 | 5059 | def update_task_uid(mapper, connection, target): |
|
5059 | 5060 | target.task_uid = ScheduleEntry.get_uid(target) |
|
5060 | 5061 | |
|
5061 | 5062 | |
|
5062 | 5063 | @event.listens_for(ScheduleEntry, 'before_insert') |
|
5063 | 5064 | def set_task_uid(mapper, connection, target): |
|
5064 | 5065 | target.task_uid = ScheduleEntry.get_uid(target) |
|
5065 | 5066 | |
|
5066 | 5067 | |
|
5067 | 5068 | class _BaseBranchPerms(BaseModel): |
|
5068 | 5069 | @classmethod |
|
5069 | 5070 | def compute_hash(cls, value): |
|
5070 | 5071 | return sha1_safe(value) |
|
5071 | 5072 | |
|
5072 | 5073 | @hybrid_property |
|
5073 | 5074 | def branch_pattern(self): |
|
5074 | 5075 | return self._branch_pattern or '*' |
|
5075 | 5076 | |
|
5076 | 5077 | @hybrid_property |
|
5077 | 5078 | def branch_hash(self): |
|
5078 | 5079 | return self._branch_hash |
|
5079 | 5080 | |
|
5080 | 5081 | def _validate_glob(self, value): |
|
5081 | 5082 | re.compile('^' + glob2re(value) + '$') |
|
5082 | 5083 | |
|
5083 | 5084 | @branch_pattern.setter |
|
5084 | 5085 | def branch_pattern(self, value): |
|
5085 | 5086 | self._validate_glob(value) |
|
5086 | 5087 | self._branch_pattern = value or '*' |
|
5087 | 5088 | # set the Hash when setting the branch pattern |
|
5088 | 5089 | self._branch_hash = self.compute_hash(self._branch_pattern) |
|
5089 | 5090 | |
|
5090 | 5091 | def matches(self, branch): |
|
5091 | 5092 | """ |
|
5092 | 5093 | Check if this the branch matches entry |
|
5093 | 5094 | |
|
5094 | 5095 | :param branch: branch name for the commit |
|
5095 | 5096 | """ |
|
5096 | 5097 | |
|
5097 | 5098 | branch = branch or '' |
|
5098 | 5099 | |
|
5099 | 5100 | branch_matches = True |
|
5100 | 5101 | if branch: |
|
5101 | 5102 | branch_regex = re.compile('^' + glob2re(self.branch_pattern) + '$') |
|
5102 | 5103 | branch_matches = bool(branch_regex.search(branch)) |
|
5103 | 5104 | |
|
5104 | 5105 | return branch_matches |
|
5105 | 5106 | |
|
5106 | 5107 | |
|
5107 | 5108 | class UserToRepoBranchPermission(Base, _BaseBranchPerms): |
|
5108 | 5109 | __tablename__ = 'user_to_repo_branch_permissions' |
|
5109 | 5110 | __table_args__ = ( |
|
5110 | 5111 | base_table_args |
|
5111 | 5112 | ) |
|
5112 | 5113 | |
|
5113 | 5114 | branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True) |
|
5114 | 5115 | |
|
5115 | 5116 | repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
5116 | 5117 | repo = relationship('Repository', backref='user_branch_perms') |
|
5117 | 5118 | |
|
5118 | 5119 | permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
5119 | 5120 | permission = relationship('Permission') |
|
5120 | 5121 | |
|
5121 | 5122 | rule_to_perm_id = Column('rule_to_perm_id', Integer(), ForeignKey('repo_to_perm.repo_to_perm_id'), nullable=False, unique=None, default=None) |
|
5122 | 5123 | user_repo_to_perm = relationship('UserRepoToPerm') |
|
5123 | 5124 | |
|
5124 | 5125 | rule_order = Column('rule_order', Integer(), nullable=False) |
|
5125 | 5126 | _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob |
|
5126 | 5127 | _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql')) |
|
5127 | 5128 | |
|
5128 | 5129 | def __unicode__(self): |
|
5129 | 5130 | return u'<UserBranchPermission(%s => %r)>' % ( |
|
5130 | 5131 | self.user_repo_to_perm, self.branch_pattern) |
|
5131 | 5132 | |
|
5132 | 5133 | |
|
5133 | 5134 | class UserGroupToRepoBranchPermission(Base, _BaseBranchPerms): |
|
5134 | 5135 | __tablename__ = 'user_group_to_repo_branch_permissions' |
|
5135 | 5136 | __table_args__ = ( |
|
5136 | 5137 | base_table_args |
|
5137 | 5138 | ) |
|
5138 | 5139 | |
|
5139 | 5140 | branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True) |
|
5140 | 5141 | |
|
5141 | 5142 | repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
5142 | 5143 | repo = relationship('Repository', backref='user_group_branch_perms') |
|
5143 | 5144 | |
|
5144 | 5145 | permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
5145 | 5146 | permission = relationship('Permission') |
|
5146 | 5147 | |
|
5147 | 5148 | 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) |
|
5148 | 5149 | user_group_repo_to_perm = relationship('UserGroupRepoToPerm') |
|
5149 | 5150 | |
|
5150 | 5151 | rule_order = Column('rule_order', Integer(), nullable=False) |
|
5151 | 5152 | _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob |
|
5152 | 5153 | _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql')) |
|
5153 | 5154 | |
|
5154 | 5155 | def __unicode__(self): |
|
5155 | 5156 | return u'<UserBranchPermission(%s => %r)>' % ( |
|
5156 | 5157 | self.user_group_repo_to_perm, self.branch_pattern) |
|
5157 | 5158 | |
|
5158 | 5159 | |
|
5159 | 5160 | class UserBookmark(Base, BaseModel): |
|
5160 | 5161 | __tablename__ = 'user_bookmarks' |
|
5161 | 5162 | __table_args__ = ( |
|
5162 | 5163 | UniqueConstraint('user_id', 'bookmark_repo_id'), |
|
5163 | 5164 | UniqueConstraint('user_id', 'bookmark_repo_group_id'), |
|
5164 | 5165 | UniqueConstraint('user_id', 'bookmark_position'), |
|
5165 | 5166 | base_table_args |
|
5166 | 5167 | ) |
|
5167 | 5168 | |
|
5168 | 5169 | user_bookmark_id = Column("user_bookmark_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
5169 | 5170 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
5170 | 5171 | position = Column("bookmark_position", Integer(), nullable=False) |
|
5171 | 5172 | title = Column("bookmark_title", String(255), nullable=True, unique=None, default=None) |
|
5172 | 5173 | redirect_url = Column("bookmark_redirect_url", String(10240), nullable=True, unique=None, default=None) |
|
5173 | 5174 | created_on = Column("created_on", DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
5174 | 5175 | |
|
5175 | 5176 | bookmark_repo_id = Column("bookmark_repo_id", Integer(), ForeignKey("repositories.repo_id"), nullable=True, unique=None, default=None) |
|
5176 | 5177 | bookmark_repo_group_id = Column("bookmark_repo_group_id", Integer(), ForeignKey("groups.group_id"), nullable=True, unique=None, default=None) |
|
5177 | 5178 | |
|
5178 | 5179 | user = relationship("User") |
|
5179 | 5180 | |
|
5180 | 5181 | repository = relationship("Repository") |
|
5181 | 5182 | repository_group = relationship("RepoGroup") |
|
5182 | 5183 | |
|
5183 | 5184 | @classmethod |
|
5184 | 5185 | def get_by_position_for_user(cls, position, user_id): |
|
5185 | 5186 | return cls.query() \ |
|
5186 | 5187 | .filter(UserBookmark.user_id == user_id) \ |
|
5187 | 5188 | .filter(UserBookmark.position == position).scalar() |
|
5188 | 5189 | |
|
5189 | 5190 | @classmethod |
|
5190 | 5191 | def get_bookmarks_for_user(cls, user_id, cache=True): |
|
5191 | 5192 | bookmarks = cls.query() \ |
|
5192 | 5193 | .filter(UserBookmark.user_id == user_id) \ |
|
5193 | 5194 | .options(joinedload(UserBookmark.repository)) \ |
|
5194 | 5195 | .options(joinedload(UserBookmark.repository_group)) \ |
|
5195 | 5196 | .order_by(UserBookmark.position.asc()) |
|
5196 | 5197 | |
|
5197 | 5198 | if cache: |
|
5198 | 5199 | bookmarks = bookmarks.options( |
|
5199 | 5200 | FromCache("sql_cache_short", "get_user_{}_bookmarks".format(user_id)) |
|
5200 | 5201 | ) |
|
5201 | 5202 | |
|
5202 | 5203 | return bookmarks.all() |
|
5203 | 5204 | |
|
5204 | 5205 | def __unicode__(self): |
|
5205 | 5206 | return u'<UserBookmark(%s @ %r)>' % (self.position, self.redirect_url) |
|
5206 | 5207 | |
|
5207 | 5208 | |
|
5208 | 5209 | class FileStore(Base, BaseModel): |
|
5209 | 5210 | __tablename__ = 'file_store' |
|
5210 | 5211 | __table_args__ = ( |
|
5211 | 5212 | base_table_args |
|
5212 | 5213 | ) |
|
5213 | 5214 | |
|
5214 | 5215 | file_store_id = Column('file_store_id', Integer(), primary_key=True) |
|
5215 | 5216 | file_uid = Column('file_uid', String(1024), nullable=False) |
|
5216 | 5217 | file_display_name = Column('file_display_name', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), nullable=True) |
|
5217 | 5218 | file_description = Column('file_description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=True) |
|
5218 | 5219 | file_org_name = Column('file_org_name', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=False) |
|
5219 | 5220 | |
|
5220 | 5221 | # sha256 hash |
|
5221 | 5222 | file_hash = Column('file_hash', String(512), nullable=False) |
|
5222 | 5223 | file_size = Column('file_size', BigInteger(), nullable=False) |
|
5223 | 5224 | |
|
5224 | 5225 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
5225 | 5226 | accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True) |
|
5226 | 5227 | accessed_count = Column('accessed_count', Integer(), default=0) |
|
5227 | 5228 | |
|
5228 | 5229 | enabled = Column('enabled', Boolean(), nullable=False, default=True) |
|
5229 | 5230 | |
|
5230 | 5231 | # if repo/repo_group reference is set, check for permissions |
|
5231 | 5232 | check_acl = Column('check_acl', Boolean(), nullable=False, default=True) |
|
5232 | 5233 | |
|
5233 | 5234 | # hidden defines an attachment that should be hidden from showing in artifact listing |
|
5234 | 5235 | hidden = Column('hidden', Boolean(), nullable=False, default=False) |
|
5235 | 5236 | |
|
5236 | 5237 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
5237 | 5238 | upload_user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.user_id') |
|
5238 | 5239 | |
|
5239 | 5240 | file_metadata = relationship('FileStoreMetadata', lazy='joined') |
|
5240 | 5241 | |
|
5241 | 5242 | # scope limited to user, which requester have access to |
|
5242 | 5243 | scope_user_id = Column( |
|
5243 | 5244 | 'scope_user_id', Integer(), ForeignKey('users.user_id'), |
|
5244 | 5245 | nullable=True, unique=None, default=None) |
|
5245 | 5246 | user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.scope_user_id') |
|
5246 | 5247 | |
|
5247 | 5248 | # scope limited to user group, which requester have access to |
|
5248 | 5249 | scope_user_group_id = Column( |
|
5249 | 5250 | 'scope_user_group_id', Integer(), ForeignKey('users_groups.users_group_id'), |
|
5250 | 5251 | nullable=True, unique=None, default=None) |
|
5251 | 5252 | user_group = relationship('UserGroup', lazy='joined') |
|
5252 | 5253 | |
|
5253 | 5254 | # scope limited to repo, which requester have access to |
|
5254 | 5255 | scope_repo_id = Column( |
|
5255 | 5256 | 'scope_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
5256 | 5257 | nullable=True, unique=None, default=None) |
|
5257 | 5258 | repo = relationship('Repository', lazy='joined') |
|
5258 | 5259 | |
|
5259 | 5260 | # scope limited to repo group, which requester have access to |
|
5260 | 5261 | scope_repo_group_id = Column( |
|
5261 | 5262 | 'scope_repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
5262 | 5263 | nullable=True, unique=None, default=None) |
|
5263 | 5264 | repo_group = relationship('RepoGroup', lazy='joined') |
|
5264 | 5265 | |
|
5265 | 5266 | @classmethod |
|
5266 | 5267 | def get_by_store_uid(cls, file_store_uid): |
|
5267 | 5268 | return FileStore.query().filter(FileStore.file_uid == file_store_uid).scalar() |
|
5268 | 5269 | |
|
5269 | 5270 | @classmethod |
|
5270 | 5271 | def create(cls, file_uid, filename, file_hash, file_size, file_display_name='', |
|
5271 | 5272 | file_description='', enabled=True, hidden=False, check_acl=True, |
|
5272 | 5273 | user_id=None, scope_user_id=None, scope_repo_id=None, scope_repo_group_id=None): |
|
5273 | 5274 | |
|
5274 | 5275 | store_entry = FileStore() |
|
5275 | 5276 | store_entry.file_uid = file_uid |
|
5276 | 5277 | store_entry.file_display_name = file_display_name |
|
5277 | 5278 | store_entry.file_org_name = filename |
|
5278 | 5279 | store_entry.file_size = file_size |
|
5279 | 5280 | store_entry.file_hash = file_hash |
|
5280 | 5281 | store_entry.file_description = file_description |
|
5281 | 5282 | |
|
5282 | 5283 | store_entry.check_acl = check_acl |
|
5283 | 5284 | store_entry.enabled = enabled |
|
5284 | 5285 | store_entry.hidden = hidden |
|
5285 | 5286 | |
|
5286 | 5287 | store_entry.user_id = user_id |
|
5287 | 5288 | store_entry.scope_user_id = scope_user_id |
|
5288 | 5289 | store_entry.scope_repo_id = scope_repo_id |
|
5289 | 5290 | store_entry.scope_repo_group_id = scope_repo_group_id |
|
5290 | 5291 | |
|
5291 | 5292 | return store_entry |
|
5292 | 5293 | |
|
5293 | 5294 | @classmethod |
|
5294 | 5295 | def store_metadata(cls, file_store_id, args, commit=True): |
|
5295 | 5296 | file_store = FileStore.get(file_store_id) |
|
5296 | 5297 | if file_store is None: |
|
5297 | 5298 | return |
|
5298 | 5299 | |
|
5299 | 5300 | for section, key, value, value_type in args: |
|
5300 | 5301 | has_key = FileStoreMetadata().query() \ |
|
5301 | 5302 | .filter(FileStoreMetadata.file_store_id == file_store.file_store_id) \ |
|
5302 | 5303 | .filter(FileStoreMetadata.file_store_meta_section == section) \ |
|
5303 | 5304 | .filter(FileStoreMetadata.file_store_meta_key == key) \ |
|
5304 | 5305 | .scalar() |
|
5305 | 5306 | if has_key: |
|
5306 | 5307 | msg = 'key `{}` already defined under section `{}` for this file.'\ |
|
5307 | 5308 | .format(key, section) |
|
5308 | 5309 | raise ArtifactMetadataDuplicate(msg, err_section=section, err_key=key) |
|
5309 | 5310 | |
|
5310 | 5311 | # NOTE(marcink): raises ArtifactMetadataBadValueType |
|
5311 | 5312 | FileStoreMetadata.valid_value_type(value_type) |
|
5312 | 5313 | |
|
5313 | 5314 | meta_entry = FileStoreMetadata() |
|
5314 | 5315 | meta_entry.file_store = file_store |
|
5315 | 5316 | meta_entry.file_store_meta_section = section |
|
5316 | 5317 | meta_entry.file_store_meta_key = key |
|
5317 | 5318 | meta_entry.file_store_meta_value_type = value_type |
|
5318 | 5319 | meta_entry.file_store_meta_value = value |
|
5319 | 5320 | |
|
5320 | 5321 | Session().add(meta_entry) |
|
5321 | 5322 | |
|
5322 | 5323 | try: |
|
5323 | 5324 | if commit: |
|
5324 | 5325 | Session().commit() |
|
5325 | 5326 | except IntegrityError: |
|
5326 | 5327 | Session().rollback() |
|
5327 | 5328 | raise ArtifactMetadataDuplicate('Duplicate section/key found for this file.') |
|
5328 | 5329 | |
|
5329 | 5330 | @classmethod |
|
5330 | 5331 | def bump_access_counter(cls, file_uid, commit=True): |
|
5331 | 5332 | FileStore().query()\ |
|
5332 | 5333 | .filter(FileStore.file_uid == file_uid)\ |
|
5333 | 5334 | .update({FileStore.accessed_count: (FileStore.accessed_count + 1), |
|
5334 | 5335 | FileStore.accessed_on: datetime.datetime.now()}) |
|
5335 | 5336 | if commit: |
|
5336 | 5337 | Session().commit() |
|
5337 | 5338 | |
|
5338 | 5339 | def __json__(self): |
|
5339 | 5340 | data = { |
|
5340 | 5341 | 'filename': self.file_display_name, |
|
5341 | 5342 | 'filename_org': self.file_org_name, |
|
5342 | 5343 | 'file_uid': self.file_uid, |
|
5343 | 5344 | 'description': self.file_description, |
|
5344 | 5345 | 'hidden': self.hidden, |
|
5345 | 5346 | 'size': self.file_size, |
|
5346 | 5347 | 'created_on': self.created_on, |
|
5347 | 5348 | 'uploaded_by': self.upload_user.get_api_data(details='basic'), |
|
5348 | 5349 | 'downloaded_times': self.accessed_count, |
|
5349 | 5350 | 'sha256': self.file_hash, |
|
5350 | 5351 | 'metadata': self.file_metadata, |
|
5351 | 5352 | } |
|
5352 | 5353 | |
|
5353 | 5354 | return data |
|
5354 | 5355 | |
|
5355 | 5356 | def __repr__(self): |
|
5356 | 5357 | return '<FileStore({})>'.format(self.file_store_id) |
|
5357 | 5358 | |
|
5358 | 5359 | |
|
5359 | 5360 | class FileStoreMetadata(Base, BaseModel): |
|
5360 | 5361 | __tablename__ = 'file_store_metadata' |
|
5361 | 5362 | __table_args__ = ( |
|
5362 | 5363 | UniqueConstraint('file_store_id', 'file_store_meta_section_hash', 'file_store_meta_key_hash'), |
|
5363 | 5364 | Index('file_store_meta_section_idx', 'file_store_meta_section', mysql_length=255), |
|
5364 | 5365 | Index('file_store_meta_key_idx', 'file_store_meta_key', mysql_length=255), |
|
5365 | 5366 | base_table_args |
|
5366 | 5367 | ) |
|
5367 | 5368 | SETTINGS_TYPES = { |
|
5368 | 5369 | 'str': safe_str, |
|
5369 | 5370 | 'int': safe_int, |
|
5370 | 5371 | 'unicode': safe_unicode, |
|
5371 | 5372 | 'bool': str2bool, |
|
5372 | 5373 | 'list': functools.partial(aslist, sep=',') |
|
5373 | 5374 | } |
|
5374 | 5375 | |
|
5375 | 5376 | file_store_meta_id = Column( |
|
5376 | 5377 | "file_store_meta_id", Integer(), nullable=False, unique=True, default=None, |
|
5377 | 5378 | primary_key=True) |
|
5378 | 5379 | _file_store_meta_section = Column( |
|
5379 | 5380 | "file_store_meta_section", UnicodeText().with_variant(UnicodeText(1024), 'mysql'), |
|
5380 | 5381 | nullable=True, unique=None, default=None) |
|
5381 | 5382 | _file_store_meta_section_hash = Column( |
|
5382 | 5383 | "file_store_meta_section_hash", String(255), |
|
5383 | 5384 | nullable=True, unique=None, default=None) |
|
5384 | 5385 | _file_store_meta_key = Column( |
|
5385 | 5386 | "file_store_meta_key", UnicodeText().with_variant(UnicodeText(1024), 'mysql'), |
|
5386 | 5387 | nullable=True, unique=None, default=None) |
|
5387 | 5388 | _file_store_meta_key_hash = Column( |
|
5388 | 5389 | "file_store_meta_key_hash", String(255), nullable=True, unique=None, default=None) |
|
5389 | 5390 | _file_store_meta_value = Column( |
|
5390 | 5391 | "file_store_meta_value", UnicodeText().with_variant(UnicodeText(20480), 'mysql'), |
|
5391 | 5392 | nullable=True, unique=None, default=None) |
|
5392 | 5393 | _file_store_meta_value_type = Column( |
|
5393 | 5394 | "file_store_meta_value_type", String(255), nullable=True, unique=None, |
|
5394 | 5395 | default='unicode') |
|
5395 | 5396 | |
|
5396 | 5397 | file_store_id = Column( |
|
5397 | 5398 | 'file_store_id', Integer(), ForeignKey('file_store.file_store_id'), |
|
5398 | 5399 | nullable=True, unique=None, default=None) |
|
5399 | 5400 | |
|
5400 | 5401 | file_store = relationship('FileStore', lazy='joined') |
|
5401 | 5402 | |
|
5402 | 5403 | @classmethod |
|
5403 | 5404 | def valid_value_type(cls, value): |
|
5404 | 5405 | if value.split('.')[0] not in cls.SETTINGS_TYPES: |
|
5405 | 5406 | raise ArtifactMetadataBadValueType( |
|
5406 | 5407 | 'value_type must be one of %s got %s' % (cls.SETTINGS_TYPES.keys(), value)) |
|
5407 | 5408 | |
|
5408 | 5409 | @hybrid_property |
|
5409 | 5410 | def file_store_meta_section(self): |
|
5410 | 5411 | return self._file_store_meta_section |
|
5411 | 5412 | |
|
5412 | 5413 | @file_store_meta_section.setter |
|
5413 | 5414 | def file_store_meta_section(self, value): |
|
5414 | 5415 | self._file_store_meta_section = value |
|
5415 | 5416 | self._file_store_meta_section_hash = _hash_key(value) |
|
5416 | 5417 | |
|
5417 | 5418 | @hybrid_property |
|
5418 | 5419 | def file_store_meta_key(self): |
|
5419 | 5420 | return self._file_store_meta_key |
|
5420 | 5421 | |
|
5421 | 5422 | @file_store_meta_key.setter |
|
5422 | 5423 | def file_store_meta_key(self, value): |
|
5423 | 5424 | self._file_store_meta_key = value |
|
5424 | 5425 | self._file_store_meta_key_hash = _hash_key(value) |
|
5425 | 5426 | |
|
5426 | 5427 | @hybrid_property |
|
5427 | 5428 | def file_store_meta_value(self): |
|
5428 | 5429 | val = self._file_store_meta_value |
|
5429 | 5430 | |
|
5430 | 5431 | if self._file_store_meta_value_type: |
|
5431 | 5432 | # e.g unicode.encrypted == unicode |
|
5432 | 5433 | _type = self._file_store_meta_value_type.split('.')[0] |
|
5433 | 5434 | # decode the encrypted value if it's encrypted field type |
|
5434 | 5435 | if '.encrypted' in self._file_store_meta_value_type: |
|
5435 | 5436 | cipher = EncryptedTextValue() |
|
5436 | 5437 | val = safe_unicode(cipher.process_result_value(val, None)) |
|
5437 | 5438 | # do final type conversion |
|
5438 | 5439 | converter = self.SETTINGS_TYPES.get(_type) or self.SETTINGS_TYPES['unicode'] |
|
5439 | 5440 | val = converter(val) |
|
5440 | 5441 | |
|
5441 | 5442 | return val |
|
5442 | 5443 | |
|
5443 | 5444 | @file_store_meta_value.setter |
|
5444 | 5445 | def file_store_meta_value(self, val): |
|
5445 | 5446 | val = safe_unicode(val) |
|
5446 | 5447 | # encode the encrypted value |
|
5447 | 5448 | if '.encrypted' in self.file_store_meta_value_type: |
|
5448 | 5449 | cipher = EncryptedTextValue() |
|
5449 | 5450 | val = safe_unicode(cipher.process_bind_param(val, None)) |
|
5450 | 5451 | self._file_store_meta_value = val |
|
5451 | 5452 | |
|
5452 | 5453 | @hybrid_property |
|
5453 | 5454 | def file_store_meta_value_type(self): |
|
5454 | 5455 | return self._file_store_meta_value_type |
|
5455 | 5456 | |
|
5456 | 5457 | @file_store_meta_value_type.setter |
|
5457 | 5458 | def file_store_meta_value_type(self, val): |
|
5458 | 5459 | # e.g unicode.encrypted |
|
5459 | 5460 | self.valid_value_type(val) |
|
5460 | 5461 | self._file_store_meta_value_type = val |
|
5461 | 5462 | |
|
5462 | 5463 | def __json__(self): |
|
5463 | 5464 | data = { |
|
5464 | 5465 | 'artifact': self.file_store.file_uid, |
|
5465 | 5466 | 'section': self.file_store_meta_section, |
|
5466 | 5467 | 'key': self.file_store_meta_key, |
|
5467 | 5468 | 'value': self.file_store_meta_value, |
|
5468 | 5469 | } |
|
5469 | 5470 | |
|
5470 | 5471 | return data |
|
5471 | 5472 | |
|
5472 | 5473 | def __repr__(self): |
|
5473 | 5474 | return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.file_store_meta_section, |
|
5474 | 5475 | self.file_store_meta_key, self.file_store_meta_value) |
|
5475 | 5476 | |
|
5476 | 5477 | |
|
5477 | 5478 | class DbMigrateVersion(Base, BaseModel): |
|
5478 | 5479 | __tablename__ = 'db_migrate_version' |
|
5479 | 5480 | __table_args__ = ( |
|
5480 | 5481 | base_table_args, |
|
5481 | 5482 | ) |
|
5482 | 5483 | |
|
5483 | 5484 | repository_id = Column('repository_id', String(250), primary_key=True) |
|
5484 | 5485 | repository_path = Column('repository_path', Text) |
|
5485 | 5486 | version = Column('version', Integer) |
|
5486 | 5487 | |
|
5487 | 5488 | @classmethod |
|
5488 | 5489 | def set_version(cls, version): |
|
5489 | 5490 | """ |
|
5490 | 5491 | Helper for forcing a different version, usually for debugging purposes via ishell. |
|
5491 | 5492 | """ |
|
5492 | 5493 | ver = DbMigrateVersion.query().first() |
|
5493 | 5494 | ver.version = version |
|
5494 | 5495 | Session().commit() |
|
5495 | 5496 | |
|
5496 | 5497 | |
|
5497 | 5498 | class DbSession(Base, BaseModel): |
|
5498 | 5499 | __tablename__ = 'db_session' |
|
5499 | 5500 | __table_args__ = ( |
|
5500 | 5501 | base_table_args, |
|
5501 | 5502 | ) |
|
5502 | 5503 | |
|
5503 | 5504 | def __repr__(self): |
|
5504 | 5505 | return '<DB:DbSession({})>'.format(self.id) |
|
5505 | 5506 | |
|
5506 | 5507 | id = Column('id', Integer()) |
|
5507 | 5508 | namespace = Column('namespace', String(255), primary_key=True) |
|
5508 | 5509 | accessed = Column('accessed', DateTime, nullable=False) |
|
5509 | 5510 | created = Column('created', DateTime, nullable=False) |
|
5510 | 5511 | data = Column('data', PickleType, nullable=False) |
@@ -1,907 +1,912 b'' | |||
|
1 | 1 | <%inherit file="/base/base.mako"/> |
|
2 | 2 | <%namespace name="base" file="/base/base.mako"/> |
|
3 | 3 | <%namespace name="dt" file="/data_table/_dt_elements.mako"/> |
|
4 | 4 | |
|
5 | 5 | <%def name="title()"> |
|
6 | 6 | ${_('{} Pull Request !{}').format(c.repo_name, c.pull_request.pull_request_id)} |
|
7 | 7 | %if c.rhodecode_name: |
|
8 | 8 | · ${h.branding(c.rhodecode_name)} |
|
9 | 9 | %endif |
|
10 | 10 | </%def> |
|
11 | 11 | |
|
12 | 12 | <%def name="breadcrumbs_links()"> |
|
13 | 13 | |
|
14 | 14 | <div id="pr-title"> |
|
15 | 15 | % if c.pull_request.is_closed(): |
|
16 | 16 | <span class="pr-title-closed-tag tag">${_('Closed')}</span> |
|
17 | 17 | % endif |
|
18 | 18 | <input class="pr-title-input large disabled" disabled="disabled" name="pullrequest_title" type="text" value="${c.pull_request.title}"> |
|
19 | 19 | </div> |
|
20 | 20 | <div id="pr-title-edit" class="input" style="display: none;"> |
|
21 | 21 | <input class="pr-title-input large" id="pr-title-input" name="pullrequest_title" type="text" value="${c.pull_request.title}"> |
|
22 | 22 | </div> |
|
23 | 23 | </%def> |
|
24 | 24 | |
|
25 | 25 | <%def name="menu_bar_nav()"> |
|
26 | 26 | ${self.menu_items(active='repositories')} |
|
27 | 27 | </%def> |
|
28 | 28 | |
|
29 | 29 | <%def name="menu_bar_subnav()"> |
|
30 | 30 | ${self.repo_menu(active='showpullrequest')} |
|
31 | 31 | </%def> |
|
32 | 32 | |
|
33 | 33 | <%def name="main()"> |
|
34 | 34 | |
|
35 | 35 | <script type="text/javascript"> |
|
36 | 36 | // TODO: marcink switch this to pyroutes |
|
37 | 37 | AJAX_COMMENT_DELETE_URL = "${h.route_path('pullrequest_comment_delete',repo_name=c.repo_name,pull_request_id=c.pull_request.pull_request_id,comment_id='__COMMENT_ID__')}"; |
|
38 | 38 | templateContext.pull_request_data.pull_request_id = ${c.pull_request.pull_request_id}; |
|
39 | 39 | </script> |
|
40 | 40 | |
|
41 | 41 | <div class="box"> |
|
42 | 42 | |
|
43 | 43 | ${self.breadcrumbs()} |
|
44 | 44 | |
|
45 | 45 | <div class="box pr-summary"> |
|
46 | 46 | |
|
47 | 47 | <div class="summary-details block-left"> |
|
48 | 48 | <% summary = lambda n:{False:'summary-short'}.get(n) %> |
|
49 | 49 | <div class="pr-details-title"> |
|
50 | 50 | <div class="pull-left"> |
|
51 | 51 | <a href="${h.route_path('pull_requests_global', pull_request_id=c.pull_request.pull_request_id)}">${_('Pull request !{}').format(c.pull_request.pull_request_id)}</a> |
|
52 | 52 | ${_('Created on')} |
|
53 | 53 | <span class="tooltip" title="${_('Last updated on')} ${h.format_date(c.pull_request.updated_on)}">${h.format_date(c.pull_request.created_on)},</span> |
|
54 | 54 | <span class="pr-details-title-author-pref">${_('by')}</span> |
|
55 | 55 | </div> |
|
56 | 56 | |
|
57 | 57 | <div class="pull-left"> |
|
58 | 58 | ${self.gravatar_with_user(c.pull_request.author.email, 16, tooltip=True)} |
|
59 | 59 | </div> |
|
60 | 60 | |
|
61 | 61 | %if c.allowed_to_update: |
|
62 | 62 | <div class="pull-right"> |
|
63 | 63 | <div id="edit_pull_request" class="action_button pr-save" style="display: none;">${_('Update title & description')}</div> |
|
64 | 64 | <div id="delete_pullrequest" class="action_button pr-save ${('' if c.allowed_to_delete else 'disabled' )}" style="display: none;"> |
|
65 | 65 | % if c.allowed_to_delete: |
|
66 | 66 | ${h.secure_form(h.route_path('pullrequest_delete', repo_name=c.pull_request.target_repo.repo_name, pull_request_id=c.pull_request.pull_request_id), request=request)} |
|
67 | 67 | ${h.submit('remove_%s' % c.pull_request.pull_request_id, _('Delete pull request'), |
|
68 | 68 | class_="btn btn-link btn-danger no-margin",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")} |
|
69 | 69 | ${h.end_form()} |
|
70 | 70 | % else: |
|
71 | 71 | <span class="tooltip" title="${_('Not allowed to delete this pull request')}">${_('Delete pull request')}</span> |
|
72 | 72 | % endif |
|
73 | 73 | </div> |
|
74 | 74 | <div id="open_edit_pullrequest" class="action_button">${_('Edit')}</div> |
|
75 | 75 | <div id="close_edit_pullrequest" class="action_button" style="display: none;">${_('Cancel')}</div> |
|
76 | 76 | </div> |
|
77 | 77 | |
|
78 | 78 | %endif |
|
79 | 79 | </div> |
|
80 | 80 | |
|
81 | 81 | <div id="pr-desc" class="input" title="${_('Rendered using {} renderer').format(c.renderer)}"> |
|
82 | 82 | ${h.render(c.pull_request.description, renderer=c.renderer, repo_name=c.repo_name)} |
|
83 | 83 | </div> |
|
84 | 84 | |
|
85 | 85 | <div id="pr-desc-edit" class="input textarea" style="display: none;"> |
|
86 | 86 | <input id="pr-renderer-input" type="hidden" name="description_renderer" value="${c.visual.default_renderer}"> |
|
87 | 87 | ${dt.markup_form('pr-description-input', form_text=c.pull_request.description)} |
|
88 | 88 | </div> |
|
89 | 89 | |
|
90 | 90 | <div id="summary" class="fields pr-details-content"> |
|
91 | 91 | |
|
92 | 92 | ## review |
|
93 | 93 | <div class="field"> |
|
94 | 94 | <div class="label-pr-detail"> |
|
95 | 95 | <label>${_('Review status')}:</label> |
|
96 | 96 | </div> |
|
97 | 97 | <div class="input"> |
|
98 | 98 | %if c.pull_request_review_status: |
|
99 | 99 | <div class="tag status-tag-${c.pull_request_review_status}"> |
|
100 | 100 | <i class="icon-circle review-status-${c.pull_request_review_status}"></i> |
|
101 | 101 | <span class="changeset-status-lbl"> |
|
102 | 102 | %if c.pull_request.is_closed(): |
|
103 | 103 | ${_('Closed')}, |
|
104 | 104 | %endif |
|
105 | 105 | |
|
106 | 106 | ${h.commit_status_lbl(c.pull_request_review_status)} |
|
107 | 107 | |
|
108 | 108 | </span> |
|
109 | 109 | </div> |
|
110 | 110 | - ${_ungettext('calculated based on {} reviewer vote', 'calculated based on {} reviewers votes', len(c.pull_request_reviewers)).format(len(c.pull_request_reviewers))} |
|
111 | 111 | %endif |
|
112 | 112 | </div> |
|
113 | 113 | </div> |
|
114 | 114 | |
|
115 | 115 | ## source |
|
116 | 116 | <div class="field"> |
|
117 | 117 | <div class="label-pr-detail"> |
|
118 | 118 | <label>${_('Commit flow')}:</label> |
|
119 | 119 | </div> |
|
120 | 120 | <div class="input"> |
|
121 | 121 | <div class="pr-commit-flow"> |
|
122 | 122 | ## Source |
|
123 | 123 | %if c.pull_request.source_ref_parts.type == 'branch': |
|
124 | 124 | <a href="${h.route_path('repo_commits', repo_name=c.pull_request.source_repo.repo_name, _query=dict(branch=c.pull_request.source_ref_parts.name))}"><code class="pr-source-info">${c.pull_request.source_ref_parts.type}:${c.pull_request.source_ref_parts.name}</code></a> |
|
125 | 125 | %else: |
|
126 | 126 | <code class="pr-source-info">${'{}:{}'.format(c.pull_request.source_ref_parts.type, c.pull_request.source_ref_parts.name)}</code> |
|
127 | 127 | %endif |
|
128 | 128 | ${_('of')} <a href="${h.route_path('repo_summary', repo_name=c.pull_request.source_repo.repo_name)}">${c.pull_request.source_repo.repo_name}</a> |
|
129 | 129 | → |
|
130 | 130 | ## Target |
|
131 | 131 | %if c.pull_request.target_ref_parts.type == 'branch': |
|
132 | 132 | <a href="${h.route_path('repo_commits', repo_name=c.pull_request.target_repo.repo_name, _query=dict(branch=c.pull_request.target_ref_parts.name))}"><code class="pr-target-info">${c.pull_request.target_ref_parts.type}:${c.pull_request.target_ref_parts.name}</code></a> |
|
133 | 133 | %else: |
|
134 | 134 | <code class="pr-target-info">${'{}:{}'.format(c.pull_request.target_ref_parts.type, c.pull_request.target_ref_parts.name)}</code> |
|
135 | 135 | %endif |
|
136 | 136 | |
|
137 | 137 | ${_('of')} <a href="${h.route_path('repo_summary', repo_name=c.pull_request.target_repo.repo_name)}">${c.pull_request.target_repo.repo_name}</a> |
|
138 | 138 | |
|
139 | 139 | <a class="source-details-action" href="#expand-source-details" onclick="return versionController.toggleElement(this, '.source-details')" data-toggle-on='<i class="icon-angle-down">more details</i>' data-toggle-off='<i class="icon-angle-up">less details</i>'> |
|
140 | 140 | <i class="icon-angle-down">more details</i> |
|
141 | 141 | </a> |
|
142 | 142 | |
|
143 | 143 | </div> |
|
144 | 144 | |
|
145 | 145 | <div class="source-details" style="display: none"> |
|
146 | 146 | |
|
147 | 147 | <ul> |
|
148 | 148 | |
|
149 | 149 | ## common ancestor |
|
150 | 150 | <li> |
|
151 | 151 | ${_('Common ancestor')}: |
|
152 | 152 | % if c.ancestor_commit: |
|
153 | 153 | <a href="${h.route_path('repo_commit', repo_name=c.target_repo.repo_name, commit_id=c.ancestor_commit.raw_id)}">${h.show_id(c.ancestor_commit)}</a> |
|
154 | 154 | % else: |
|
155 | 155 | ${_('not available')} |
|
156 | 156 | % endif |
|
157 | 157 | </li> |
|
158 | 158 | |
|
159 | 159 | ## pull url |
|
160 | 160 | <li> |
|
161 | 161 | %if h.is_hg(c.pull_request.source_repo): |
|
162 | 162 | <% clone_url = 'hg pull -r {} {}'.format(h.short_id(c.source_ref), c.pull_request.source_repo.clone_url()) %> |
|
163 | 163 | %elif h.is_git(c.pull_request.source_repo): |
|
164 | 164 | <% clone_url = 'git pull {} {}'.format(c.pull_request.source_repo.clone_url(), c.pull_request.source_ref_parts.name) %> |
|
165 | 165 | %endif |
|
166 | 166 | |
|
167 | 167 | <span>${_('Pull changes from source')}</span>: <input type="text" class="input-monospace pr-pullinfo" value="${clone_url}" readonly="readonly"> |
|
168 | 168 | <i class="tooltip icon-clipboard clipboard-action pull-right pr-pullinfo-copy" data-clipboard-text="${clone_url}" title="${_('Copy the pull url')}"></i> |
|
169 | 169 | </li> |
|
170 | 170 | |
|
171 | 171 | ## Shadow repo |
|
172 | 172 | <li> |
|
173 | 173 | % if not c.pull_request.is_closed() and c.pull_request.shadow_merge_ref: |
|
174 | 174 | %if h.is_hg(c.pull_request.target_repo): |
|
175 | 175 | <% clone_url = 'hg clone --update {} {} pull-request-{}'.format(c.pull_request.shadow_merge_ref.name, c.shadow_clone_url, c.pull_request.pull_request_id) %> |
|
176 | 176 | %elif h.is_git(c.pull_request.target_repo): |
|
177 | 177 | <% clone_url = 'git clone --branch {} {} pull-request-{}'.format(c.pull_request.shadow_merge_ref.name, c.shadow_clone_url, c.pull_request.pull_request_id) %> |
|
178 | 178 | %endif |
|
179 | 179 | |
|
180 | 180 | <span class="tooltip" title="${_('Clone repository in its merged state using shadow repository')}">${_('Clone from shadow repository')}</span>: <input type="text" class="input-monospace pr-mergeinfo" value="${clone_url}" readonly="readonly"> |
|
181 | 181 | <i class="tooltip icon-clipboard clipboard-action pull-right pr-mergeinfo-copy" data-clipboard-text="${clone_url}" title="${_('Copy the clone url')}"></i> |
|
182 | 182 | |
|
183 | 183 | % else: |
|
184 | 184 | <div class=""> |
|
185 | 185 | ${_('Shadow repository data not available')}. |
|
186 | 186 | </div> |
|
187 | 187 | % endif |
|
188 | 188 | </li> |
|
189 | 189 | |
|
190 | 190 | </ul> |
|
191 | 191 | |
|
192 | 192 | </div> |
|
193 | 193 | |
|
194 | 194 | </div> |
|
195 | 195 | |
|
196 | 196 | </div> |
|
197 | 197 | |
|
198 | 198 | ## versions |
|
199 | 199 | <div class="field"> |
|
200 | 200 | <div class="label-pr-detail"> |
|
201 | 201 | <label>${_('Versions')}:</label> |
|
202 | 202 | </div> |
|
203 | 203 | |
|
204 | 204 | <% outdated_comm_count_ver = len(c.inline_versions[None]['outdated']) %> |
|
205 | 205 | <% general_outdated_comm_count_ver = len(c.comment_versions[None]['outdated']) %> |
|
206 | 206 | |
|
207 | 207 | <div class="pr-versions"> |
|
208 | 208 | % if c.show_version_changes: |
|
209 | 209 | <% outdated_comm_count_ver = len(c.inline_versions[c.at_version_num]['outdated']) %> |
|
210 | 210 | <% general_outdated_comm_count_ver = len(c.comment_versions[c.at_version_num]['outdated']) %> |
|
211 | 211 | ${_ungettext('{} version available for this pull request, ', '{} versions available for this pull request, ', len(c.versions)).format(len(c.versions))} |
|
212 | 212 | <a id="show-pr-versions" onclick="return versionController.toggleVersionView(this)" href="#show-pr-versions" |
|
213 | 213 | data-toggle-on="${_('show versions')}." |
|
214 | 214 | data-toggle-off="${_('hide versions')}."> |
|
215 | 215 | ${_('show versions')}. |
|
216 | 216 | </a> |
|
217 | 217 | <table> |
|
218 | 218 | ## SHOW ALL VERSIONS OF PR |
|
219 | 219 | <% ver_pr = None %> |
|
220 | 220 | |
|
221 | 221 | % for data in reversed(list(enumerate(c.versions, 1))): |
|
222 | 222 | <% ver_pos = data[0] %> |
|
223 | 223 | <% ver = data[1] %> |
|
224 | 224 | <% ver_pr = ver.pull_request_version_id %> |
|
225 | 225 | <% display_row = '' if c.at_version and (c.at_version_num == ver_pr or c.from_version_num == ver_pr) else 'none' %> |
|
226 | 226 | |
|
227 | 227 | <tr class="version-pr" style="display: ${display_row}"> |
|
228 | 228 | <td> |
|
229 | 229 | <code> |
|
230 | 230 | <a href="${request.current_route_path(_query=dict(version=ver_pr or 'latest'))}">v${ver_pos}</a> |
|
231 | 231 | </code> |
|
232 | 232 | </td> |
|
233 | 233 | <td> |
|
234 | 234 | <input ${('checked="checked"' if c.from_version_num == ver_pr else '')} class="compare-radio-button" type="radio" name="ver_source" value="${ver_pr or 'latest'}" data-ver-pos="${ver_pos}"/> |
|
235 | 235 | <input ${('checked="checked"' if c.at_version_num == ver_pr else '')} class="compare-radio-button" type="radio" name="ver_target" value="${ver_pr or 'latest'}" data-ver-pos="${ver_pos}"/> |
|
236 | 236 | </td> |
|
237 | 237 | <td> |
|
238 | 238 | <% review_status = c.review_versions[ver_pr].status if ver_pr in c.review_versions else 'not_reviewed' %> |
|
239 | 239 | <i class="tooltip icon-circle review-status-${review_status}" title="${_('Your review status at this version')}"></i> |
|
240 | 240 | |
|
241 | 241 | </td> |
|
242 | 242 | <td> |
|
243 | 243 | % if c.at_version_num != ver_pr: |
|
244 | 244 | <i class="tooltip icon-comment" title="${_('Comments from pull request version v{0}').format(ver_pos)}"></i> |
|
245 | 245 | <code> |
|
246 | 246 | General:${len(c.comment_versions[ver_pr]['at'])} / Inline:${len(c.inline_versions[ver_pr]['at'])} |
|
247 | 247 | </code> |
|
248 | 248 | % endif |
|
249 | 249 | </td> |
|
250 | 250 | <td> |
|
251 | 251 | ##<code>${ver.source_ref_parts.commit_id[:6]}</code> |
|
252 | 252 | </td> |
|
253 | 253 | <td> |
|
254 | 254 | <code>${h.age_component(ver.updated_on, time_is_local=True, tooltip=False)}</code> |
|
255 | 255 | </td> |
|
256 | 256 | </tr> |
|
257 | 257 | % endfor |
|
258 | 258 | |
|
259 | 259 | <tr> |
|
260 | 260 | <td colspan="6"> |
|
261 | 261 | <button id="show-version-diff" onclick="return versionController.showVersionDiff()" class="btn btn-sm" style="display: none" |
|
262 | 262 | data-label-text-locked="${_('select versions to show changes')}" |
|
263 | 263 | data-label-text-diff="${_('show changes between versions')}" |
|
264 | 264 | data-label-text-show="${_('show pull request for this version')}" |
|
265 | 265 | > |
|
266 | 266 | ${_('select versions to show changes')} |
|
267 | 267 | </button> |
|
268 | 268 | </td> |
|
269 | 269 | </tr> |
|
270 | 270 | </table> |
|
271 | 271 | % else: |
|
272 | 272 | <div> |
|
273 | 273 | ${_('Pull request versions not available')}. |
|
274 | 274 | </div> |
|
275 | 275 | % endif |
|
276 | 276 | </div> |
|
277 | 277 | </div> |
|
278 | 278 | |
|
279 | 279 | </div> |
|
280 | 280 | |
|
281 | 281 | </div> |
|
282 | 282 | |
|
283 | 283 | ## REVIEW RULES |
|
284 | 284 | <div id="review_rules" style="display: none" class="reviewers-title block-right"> |
|
285 | 285 | <div class="pr-details-title"> |
|
286 | 286 | ${_('Reviewer rules')} |
|
287 | 287 | %if c.allowed_to_update: |
|
288 | 288 | <span id="close_edit_reviewers" class="block-right action_button last-item" style="display: none;">${_('Close')}</span> |
|
289 | 289 | %endif |
|
290 | 290 | </div> |
|
291 | 291 | <div class="pr-reviewer-rules"> |
|
292 | 292 | ## review rules will be appended here, by default reviewers logic |
|
293 | 293 | </div> |
|
294 | 294 | <input id="review_data" type="hidden" name="review_data" value=""> |
|
295 | 295 | </div> |
|
296 | 296 | |
|
297 | 297 | ## REVIEWERS |
|
298 | 298 | <div class="reviewers-title block-right"> |
|
299 | 299 | <div class="pr-details-title"> |
|
300 | 300 | ${_('Pull request reviewers')} |
|
301 | 301 | %if c.allowed_to_update: |
|
302 | 302 | <span id="open_edit_reviewers" class="block-right action_button last-item">${_('Edit')}</span> |
|
303 | 303 | %endif |
|
304 | 304 | </div> |
|
305 | 305 | </div> |
|
306 | 306 | <div id="reviewers" class="block-right pr-details-content reviewers"> |
|
307 | 307 | |
|
308 | 308 | ## members redering block |
|
309 | 309 | <input type="hidden" name="__start__" value="review_members:sequence"> |
|
310 | 310 | <ul id="review_members" class="group_members"> |
|
311 | 311 | |
|
312 | 312 | % for review_obj, member, reasons, mandatory, status in c.pull_request_reviewers: |
|
313 | 313 | <script> |
|
314 | 314 | var member = ${h.json.dumps(h.reviewer_as_json(member, reasons=reasons, mandatory=mandatory, user_group=review_obj.rule_user_group_data()))|n}; |
|
315 | 315 | var status = "${(status[0][1].status if status else 'not_reviewed')}"; |
|
316 | 316 | var status_lbl = "${h.commit_status_lbl(status[0][1].status if status else 'not_reviewed')}"; |
|
317 | 317 | var allowed_to_update = ${h.json.dumps(c.allowed_to_update)}; |
|
318 | 318 | |
|
319 | 319 | var entry = renderTemplate('reviewMemberEntry', { |
|
320 | 320 | 'member': member, |
|
321 | 321 | 'mandatory': member.mandatory, |
|
322 | 322 | 'reasons': member.reasons, |
|
323 | 323 | 'allowed_to_update': allowed_to_update, |
|
324 | 324 | 'review_status': status, |
|
325 | 325 | 'review_status_label': status_lbl, |
|
326 | 326 | 'user_group': member.user_group, |
|
327 | 327 | 'create': false |
|
328 | 328 | }); |
|
329 | 329 | $('#review_members').append(entry) |
|
330 | 330 | </script> |
|
331 | 331 | |
|
332 | 332 | % endfor |
|
333 | 333 | |
|
334 | 334 | </ul> |
|
335 | 335 | |
|
336 | 336 | <input type="hidden" name="__end__" value="review_members:sequence"> |
|
337 | 337 | ## end members redering block |
|
338 | 338 | |
|
339 | 339 | %if not c.pull_request.is_closed(): |
|
340 | 340 | <div id="add_reviewer" class="ac" style="display: none;"> |
|
341 | 341 | %if c.allowed_to_update: |
|
342 | 342 | % if not c.forbid_adding_reviewers: |
|
343 | 343 | <div id="add_reviewer_input" class="reviewer_ac"> |
|
344 | 344 | ${h.text('user', class_='ac-input', placeholder=_('Add reviewer or reviewer group'))} |
|
345 | 345 | <div id="reviewers_container"></div> |
|
346 | 346 | </div> |
|
347 | 347 | % endif |
|
348 | 348 | <div class="pull-right"> |
|
349 | 349 | <button id="update_pull_request" class="btn btn-small no-margin">${_('Save Changes')}</button> |
|
350 | 350 | </div> |
|
351 | 351 | %endif |
|
352 | 352 | </div> |
|
353 | 353 | %endif |
|
354 | 354 | </div> |
|
355 | 355 | |
|
356 | 356 | ## TODOs will be listed here |
|
357 | 357 | <div class="reviewers-title block-right"> |
|
358 | 358 | <div class="pr-details-title"> |
|
359 | 359 | ## Only show unresolved, that is only what matters |
|
360 | 360 | TODO Comments - ${len(c.unresolved_comments)} / ${(len(c.unresolved_comments) + len(c.resolved_comments))} |
|
361 | 361 | |
|
362 | 362 | % if not c.at_version: |
|
363 | 363 | % if c.resolved_comments: |
|
364 | 364 | <span class="block-right action_button last-item noselect" onclick="$('.unresolved-todo-text').toggle(); return versionController.toggleElement(this, '.unresolved-todo');" data-toggle-on="Show resolved" data-toggle-off="Hide resolved">Show resolved</span> |
|
365 | 365 | % else: |
|
366 | 366 | <span class="block-right last-item noselect">Show resolved</span> |
|
367 | 367 | % endif |
|
368 | 368 | % endif |
|
369 | 369 | </div> |
|
370 | 370 | </div> |
|
371 | 371 | <div class="block-right pr-details-content reviewers"> |
|
372 | 372 | |
|
373 | 373 | <table class="todo-table"> |
|
374 | 374 | <% |
|
375 | 375 | def sorter(entry): |
|
376 | 376 | user_id = entry.author.user_id |
|
377 | 377 | resolved = '1' if entry.resolved else '0' |
|
378 | 378 | if user_id == c.rhodecode_user.user_id: |
|
379 | 379 | # own comments first |
|
380 | 380 | user_id = 0 |
|
381 | 381 | return '{}_{}_{}'.format(resolved, user_id, str(entry.comment_id).zfill(100)) |
|
382 | 382 | %> |
|
383 | 383 | |
|
384 | 384 | % if c.at_version: |
|
385 | 385 | <tr> |
|
386 | 386 | <td class="unresolved-todo-text">${_('unresolved TODOs unavailable in this view')}.</td> |
|
387 | 387 | </tr> |
|
388 | 388 | % else: |
|
389 | 389 | % for todo_comment in sorted(c.unresolved_comments + c.resolved_comments, key=sorter): |
|
390 | 390 | <% resolved = todo_comment.resolved %> |
|
391 | 391 | % if inline: |
|
392 | 392 | <% outdated_at_ver = todo_comment.outdated_at_version(getattr(c, 'at_version_num', None)) %> |
|
393 | 393 | % else: |
|
394 | 394 | <% outdated_at_ver = todo_comment.older_than_version(getattr(c, 'at_version_num', None)) %> |
|
395 | 395 | % endif |
|
396 | 396 | |
|
397 | 397 | <tr ${('class="unresolved-todo" style="display: none"' if resolved else '') |n}> |
|
398 | 398 | |
|
399 | 399 | <td class="td-todo-number"> |
|
400 | 400 | % if resolved: |
|
401 | 401 | <a class="permalink todo-resolved tooltip" title="${_('Resolved by comment #{}').format(todo_comment.resolved.comment_id)}" href="#comment-${todo_comment.comment_id}" onclick="return Rhodecode.comments.scrollToComment($('#comment-${todo_comment.comment_id}'), 0, ${h.json.dumps(outdated_at_ver)})"> |
|
402 | 402 | <i class="icon-flag-filled"></i> ${todo_comment.comment_id}</a> |
|
403 | 403 | % else: |
|
404 | 404 | <a class="permalink" href="#comment-${todo_comment.comment_id}" onclick="return Rhodecode.comments.scrollToComment($('#comment-${todo_comment.comment_id}'), 0, ${h.json.dumps(outdated_at_ver)})"> |
|
405 | 405 | <i class="icon-flag-filled"></i> ${todo_comment.comment_id}</a> |
|
406 | 406 | % endif |
|
407 | 407 | </td> |
|
408 | 408 | <td class="td-todo-gravatar"> |
|
409 | 409 | ${base.gravatar(todo_comment.author.email, 16, user=todo_comment.author, tooltip=True, extra_class=['no-margin'])} |
|
410 | 410 | </td> |
|
411 | 411 | <td class="todo-comment-text-wrapper"> |
|
412 | 412 | <div class="todo-comment-text"> |
|
413 | 413 | <code>${h.chop_at_smart(todo_comment.text, '\n', suffix_if_chopped='...')}</code> |
|
414 | 414 | </div> |
|
415 | 415 | </td> |
|
416 | 416 | |
|
417 | 417 | </tr> |
|
418 | 418 | % endfor |
|
419 | 419 | |
|
420 | 420 | % if len(c.unresolved_comments) == 0: |
|
421 | 421 | <tr> |
|
422 | 422 | <td class="unresolved-todo-text">${_('No unresolved TODOs')}.</td> |
|
423 | 423 | </tr> |
|
424 | 424 | % endif |
|
425 | 425 | |
|
426 | 426 | % endif |
|
427 | 427 | |
|
428 | 428 | </table> |
|
429 | 429 | |
|
430 | 430 | </div> |
|
431 | 431 | </div> |
|
432 | 432 | |
|
433 | 433 | </div> |
|
434 | 434 | |
|
435 | 435 | <div class="box"> |
|
436 | 436 | |
|
437 | 437 | % if c.state_progressing: |
|
438 | 438 | |
|
439 | 439 | <h2 style="text-align: center"> |
|
440 | 440 | ${_('Cannot show diff when pull request state is changing. Current progress state')}: <span class="tag tag-merge-state-${c.pull_request.state}">${c.pull_request.state}</span> |
|
441 | ||
|
442 | % if c.is_super_admin: | |
|
443 | <br/> | |
|
444 | If you think this is an error try <a href="${h.current_route_path(request, force_state='created')}">forced state reset</a> to <span class="tag tag-merge-state-created">created</span> state. | |
|
445 | % endif | |
|
441 | 446 | </h2> |
|
442 | 447 | |
|
443 | 448 | % else: |
|
444 | 449 | |
|
445 | 450 | ## Diffs rendered here |
|
446 | 451 | <div class="table" > |
|
447 | 452 | <div id="changeset_compare_view_content"> |
|
448 | 453 | ##CS |
|
449 | 454 | % if c.missing_requirements: |
|
450 | 455 | <div class="box"> |
|
451 | 456 | <div class="alert alert-warning"> |
|
452 | 457 | <div> |
|
453 | 458 | <strong>${_('Missing requirements:')}</strong> |
|
454 | 459 | ${_('These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled.')} |
|
455 | 460 | </div> |
|
456 | 461 | </div> |
|
457 | 462 | </div> |
|
458 | 463 | % elif c.missing_commits: |
|
459 | 464 | <div class="box"> |
|
460 | 465 | <div class="alert alert-warning"> |
|
461 | 466 | <div> |
|
462 | 467 | <strong>${_('Missing commits')}:</strong> |
|
463 | 468 | ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')} |
|
464 | 469 | ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')} |
|
465 | 470 | ${_('Consider doing a {force_refresh_url} in case you think this is an error.').format(force_refresh_url=h.link_to('force refresh', h.current_route_path(request, force_refresh='1')))|n} |
|
466 | 471 | </div> |
|
467 | 472 | </div> |
|
468 | 473 | </div> |
|
469 | 474 | % endif |
|
470 | 475 | |
|
471 | 476 | <div class="compare_view_commits_title"> |
|
472 | 477 | % if not c.compare_mode: |
|
473 | 478 | |
|
474 | 479 | % if c.at_version_pos: |
|
475 | 480 | <h4> |
|
476 | 481 | ${_('Showing changes at v%d, commenting is disabled.') % c.at_version_pos} |
|
477 | 482 | </h4> |
|
478 | 483 | % endif |
|
479 | 484 | |
|
480 | 485 | <div class="pull-left"> |
|
481 | 486 | <div class="btn-group"> |
|
482 | 487 | <a class="${('collapsed' if c.collapse_all_commits else '')}" href="#expand-commits" onclick="toggleCommitExpand(this); return false" data-toggle-commits-cnt=${len(c.commit_ranges)} > |
|
483 | 488 | % if c.collapse_all_commits: |
|
484 | 489 | <i class="icon-plus-squared-alt icon-no-margin"></i> |
|
485 | 490 | ${_ungettext('Expand {} commit', 'Expand {} commits', len(c.commit_ranges)).format(len(c.commit_ranges))} |
|
486 | 491 | % else: |
|
487 | 492 | <i class="icon-minus-squared-alt icon-no-margin"></i> |
|
488 | 493 | ${_ungettext('Collapse {} commit', 'Collapse {} commits', len(c.commit_ranges)).format(len(c.commit_ranges))} |
|
489 | 494 | % endif |
|
490 | 495 | </a> |
|
491 | 496 | </div> |
|
492 | 497 | </div> |
|
493 | 498 | |
|
494 | 499 | <div class="pull-right"> |
|
495 | 500 | % if c.allowed_to_update and not c.pull_request.is_closed(): |
|
496 | 501 | |
|
497 | 502 | <div class="btn-group btn-group-actions"> |
|
498 | 503 | <a id="update_commits" class="btn btn-primary no-margin" onclick="updateController.updateCommits(this); return false"> |
|
499 | 504 | ${_('Update commits')} |
|
500 | 505 | </a> |
|
501 | 506 | |
|
502 | 507 | <a id="update_commits_switcher" class="tooltip btn btn-primary" style="margin-left: -1px" data-toggle="dropdown" aria-pressed="false" role="button" title="${_('more update options')}"> |
|
503 | 508 | <i class="icon-down"></i> |
|
504 | 509 | </a> |
|
505 | 510 | |
|
506 | 511 | <div class="btn-action-switcher-container" id="update-commits-switcher"> |
|
507 | 512 | <ul class="btn-action-switcher" role="menu"> |
|
508 | 513 | <li> |
|
509 | 514 | <a href="#forceUpdate" onclick="updateController.forceUpdateCommits(this); return false"> |
|
510 | 515 | ${_('Force update commits')} |
|
511 | 516 | </a> |
|
512 | 517 | <div class="action-help-block"> |
|
513 | 518 | ${_('Update commits and force refresh this pull request.')} |
|
514 | 519 | </div> |
|
515 | 520 | </li> |
|
516 | 521 | </ul> |
|
517 | 522 | </div> |
|
518 | 523 | </div> |
|
519 | 524 | |
|
520 | 525 | % else: |
|
521 | 526 | <a class="tooltip btn disabled pull-right" disabled="disabled" title="${_('Update is disabled for current view')}">${_('Update commits')}</a> |
|
522 | 527 | % endif |
|
523 | 528 | |
|
524 | 529 | </div> |
|
525 | 530 | % endif |
|
526 | 531 | </div> |
|
527 | 532 | |
|
528 | 533 | % if not c.missing_commits: |
|
529 | 534 | % if c.compare_mode: |
|
530 | 535 | % if c.at_version: |
|
531 | 536 | <h4> |
|
532 | 537 | ${_('Commits and changes between v{ver_from} and {ver_to} of this pull request, commenting is disabled').format(ver_from=c.from_version_pos, ver_to=c.at_version_pos if c.at_version_pos else 'latest')}: |
|
533 | 538 | </h4> |
|
534 | 539 | |
|
535 | 540 | <div class="subtitle-compare"> |
|
536 | 541 | ${_('commits added: {}, removed: {}').format(len(c.commit_changes_summary.added), len(c.commit_changes_summary.removed))} |
|
537 | 542 | </div> |
|
538 | 543 | |
|
539 | 544 | <div class="container"> |
|
540 | 545 | <table class="rctable compare_view_commits"> |
|
541 | 546 | <tr> |
|
542 | 547 | <th></th> |
|
543 | 548 | <th>${_('Time')}</th> |
|
544 | 549 | <th>${_('Author')}</th> |
|
545 | 550 | <th>${_('Commit')}</th> |
|
546 | 551 | <th></th> |
|
547 | 552 | <th>${_('Description')}</th> |
|
548 | 553 | </tr> |
|
549 | 554 | |
|
550 | 555 | % for c_type, commit in c.commit_changes: |
|
551 | 556 | % if c_type in ['a', 'r']: |
|
552 | 557 | <% |
|
553 | 558 | if c_type == 'a': |
|
554 | 559 | cc_title = _('Commit added in displayed changes') |
|
555 | 560 | elif c_type == 'r': |
|
556 | 561 | cc_title = _('Commit removed in displayed changes') |
|
557 | 562 | else: |
|
558 | 563 | cc_title = '' |
|
559 | 564 | %> |
|
560 | 565 | <tr id="row-${commit.raw_id}" commit_id="${commit.raw_id}" class="compare_select"> |
|
561 | 566 | <td> |
|
562 | 567 | <div class="commit-change-indicator color-${c_type}-border"> |
|
563 | 568 | <div class="commit-change-content color-${c_type} tooltip" title="${h.tooltip(cc_title)}"> |
|
564 | 569 | ${c_type.upper()} |
|
565 | 570 | </div> |
|
566 | 571 | </div> |
|
567 | 572 | </td> |
|
568 | 573 | <td class="td-time"> |
|
569 | 574 | ${h.age_component(commit.date)} |
|
570 | 575 | </td> |
|
571 | 576 | <td class="td-user"> |
|
572 | 577 | ${base.gravatar_with_user(commit.author, 16, tooltip=True)} |
|
573 | 578 | </td> |
|
574 | 579 | <td class="td-hash"> |
|
575 | 580 | <code> |
|
576 | 581 | <a href="${h.route_path('repo_commit', repo_name=c.target_repo.repo_name, commit_id=commit.raw_id)}"> |
|
577 | 582 | r${commit.idx}:${h.short_id(commit.raw_id)} |
|
578 | 583 | </a> |
|
579 | 584 | ${h.hidden('revisions', commit.raw_id)} |
|
580 | 585 | </code> |
|
581 | 586 | </td> |
|
582 | 587 | <td class="td-message expand_commit" data-commit-id="${commit.raw_id}" title="${_( 'Expand commit message')}" onclick="commitsController.expandCommit(this); return false"> |
|
583 | 588 | <i class="icon-expand-linked"></i> |
|
584 | 589 | </td> |
|
585 | 590 | <td class="mid td-description"> |
|
586 | 591 | <div class="log-container truncate-wrap"> |
|
587 | 592 | <div class="message truncate" id="c-${commit.raw_id}" data-message-raw="${commit.message}">${h.urlify_commit_message(commit.message, c.repo_name)}</div> |
|
588 | 593 | </div> |
|
589 | 594 | </td> |
|
590 | 595 | </tr> |
|
591 | 596 | % endif |
|
592 | 597 | % endfor |
|
593 | 598 | </table> |
|
594 | 599 | </div> |
|
595 | 600 | |
|
596 | 601 | % endif |
|
597 | 602 | |
|
598 | 603 | % else: |
|
599 | 604 | <%include file="/compare/compare_commits.mako" /> |
|
600 | 605 | % endif |
|
601 | 606 | |
|
602 | 607 | <div class="cs_files"> |
|
603 | 608 | <%namespace name="cbdiffs" file="/codeblocks/diffs.mako"/> |
|
604 | 609 | % if c.at_version: |
|
605 | 610 | <% c.inline_cnt = len(c.inline_versions[c.at_version_num]['display']) %> |
|
606 | 611 | <% c.comments = c.comment_versions[c.at_version_num]['display'] %> |
|
607 | 612 | % else: |
|
608 | 613 | <% c.inline_cnt = len(c.inline_versions[c.at_version_num]['until']) %> |
|
609 | 614 | <% c.comments = c.comment_versions[c.at_version_num]['until'] %> |
|
610 | 615 | % endif |
|
611 | 616 | |
|
612 | 617 | <% |
|
613 | 618 | pr_menu_data = { |
|
614 | 619 | 'outdated_comm_count_ver': outdated_comm_count_ver |
|
615 | 620 | } |
|
616 | 621 | %> |
|
617 | 622 | |
|
618 | 623 | ${cbdiffs.render_diffset_menu(c.diffset, range_diff_on=c.range_diff_on)} |
|
619 | 624 | |
|
620 | 625 | % if c.range_diff_on: |
|
621 | 626 | % for commit in c.commit_ranges: |
|
622 | 627 | ${cbdiffs.render_diffset( |
|
623 | 628 | c.changes[commit.raw_id], |
|
624 | 629 | commit=commit, use_comments=True, |
|
625 | 630 | collapse_when_files_over=5, |
|
626 | 631 | disable_new_comments=True, |
|
627 | 632 | deleted_files_comments=c.deleted_files_comments, |
|
628 | 633 | inline_comments=c.inline_comments, |
|
629 | 634 | pull_request_menu=pr_menu_data, show_todos=False)} |
|
630 | 635 | % endfor |
|
631 | 636 | % else: |
|
632 | 637 | ${cbdiffs.render_diffset( |
|
633 | 638 | c.diffset, use_comments=True, |
|
634 | 639 | collapse_when_files_over=30, |
|
635 | 640 | disable_new_comments=not c.allowed_to_comment, |
|
636 | 641 | deleted_files_comments=c.deleted_files_comments, |
|
637 | 642 | inline_comments=c.inline_comments, |
|
638 | 643 | pull_request_menu=pr_menu_data, show_todos=False)} |
|
639 | 644 | % endif |
|
640 | 645 | |
|
641 | 646 | </div> |
|
642 | 647 | % else: |
|
643 | 648 | ## skipping commits we need to clear the view for missing commits |
|
644 | 649 | <div style="clear:both;"></div> |
|
645 | 650 | % endif |
|
646 | 651 | |
|
647 | 652 | </div> |
|
648 | 653 | </div> |
|
649 | 654 | |
|
650 | 655 | ## template for inline comment form |
|
651 | 656 | <%namespace name="comment" file="/changeset/changeset_file_comment.mako"/> |
|
652 | 657 | |
|
653 | 658 | ## comments heading with count |
|
654 | 659 | <div class="comments-heading"> |
|
655 | 660 | <i class="icon-comment"></i> |
|
656 | 661 | ${_('Comments')} ${len(c.comments)} |
|
657 | 662 | </div> |
|
658 | 663 | |
|
659 | 664 | ## render general comments |
|
660 | 665 | <div id="comment-tr-show"> |
|
661 | 666 | % if general_outdated_comm_count_ver: |
|
662 | 667 | <div class="info-box"> |
|
663 | 668 | % if general_outdated_comm_count_ver == 1: |
|
664 | 669 | ${_('there is {num} general comment from older versions').format(num=general_outdated_comm_count_ver)}, |
|
665 | 670 | <a href="#show-hidden-comments" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show it')}</a> |
|
666 | 671 | % else: |
|
667 | 672 | ${_('there are {num} general comments from older versions').format(num=general_outdated_comm_count_ver)}, |
|
668 | 673 | <a href="#show-hidden-comments" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show them')}</a> |
|
669 | 674 | % endif |
|
670 | 675 | </div> |
|
671 | 676 | % endif |
|
672 | 677 | </div> |
|
673 | 678 | |
|
674 | 679 | ${comment.generate_comments(c.comments, include_pull_request=True, is_pull_request=True)} |
|
675 | 680 | |
|
676 | 681 | % if not c.pull_request.is_closed(): |
|
677 | 682 | ## main comment form and it status |
|
678 | 683 | ${comment.comments(h.route_path('pullrequest_comment_create', repo_name=c.repo_name, |
|
679 | 684 | pull_request_id=c.pull_request.pull_request_id), |
|
680 | 685 | c.pull_request_review_status, |
|
681 | 686 | is_pull_request=True, change_status=c.allowed_to_change_status)} |
|
682 | 687 | |
|
683 | 688 | ## merge status, and merge action |
|
684 | 689 | <div class="pull-request-merge"> |
|
685 | 690 | <%include file="/pullrequests/pullrequest_merge_checks.mako"/> |
|
686 | 691 | </div> |
|
687 | 692 | |
|
688 | 693 | %endif |
|
689 | 694 | |
|
690 | 695 | % endif |
|
691 | 696 | </div> |
|
692 | 697 | |
|
693 | 698 | <script type="text/javascript"> |
|
694 | 699 | |
|
695 | 700 | versionController = new VersionController(); |
|
696 | 701 | versionController.init(); |
|
697 | 702 | |
|
698 | 703 | reviewersController = new ReviewersController(); |
|
699 | 704 | commitsController = new CommitsController(); |
|
700 | 705 | |
|
701 | 706 | updateController = new UpdatePrController(); |
|
702 | 707 | |
|
703 | 708 | $(function () { |
|
704 | 709 | |
|
705 | 710 | // custom code mirror |
|
706 | 711 | var codeMirrorInstance = $('#pr-description-input').get(0).MarkupForm.cm; |
|
707 | 712 | |
|
708 | 713 | var PRDetails = { |
|
709 | 714 | editButton: $('#open_edit_pullrequest'), |
|
710 | 715 | closeButton: $('#close_edit_pullrequest'), |
|
711 | 716 | deleteButton: $('#delete_pullrequest'), |
|
712 | 717 | viewFields: $('#pr-desc, #pr-title'), |
|
713 | 718 | editFields: $('#pr-desc-edit, #pr-title-edit, .pr-save'), |
|
714 | 719 | |
|
715 | 720 | init: function () { |
|
716 | 721 | var that = this; |
|
717 | 722 | this.editButton.on('click', function (e) { |
|
718 | 723 | that.edit(); |
|
719 | 724 | }); |
|
720 | 725 | this.closeButton.on('click', function (e) { |
|
721 | 726 | that.view(); |
|
722 | 727 | }); |
|
723 | 728 | }, |
|
724 | 729 | |
|
725 | 730 | edit: function (event) { |
|
726 | 731 | this.viewFields.hide(); |
|
727 | 732 | this.editButton.hide(); |
|
728 | 733 | this.deleteButton.hide(); |
|
729 | 734 | this.closeButton.show(); |
|
730 | 735 | this.editFields.show(); |
|
731 | 736 | codeMirrorInstance.refresh(); |
|
732 | 737 | }, |
|
733 | 738 | |
|
734 | 739 | view: function (event) { |
|
735 | 740 | this.editButton.show(); |
|
736 | 741 | this.deleteButton.show(); |
|
737 | 742 | this.editFields.hide(); |
|
738 | 743 | this.closeButton.hide(); |
|
739 | 744 | this.viewFields.show(); |
|
740 | 745 | } |
|
741 | 746 | }; |
|
742 | 747 | |
|
743 | 748 | var ReviewersPanel = { |
|
744 | 749 | editButton: $('#open_edit_reviewers'), |
|
745 | 750 | closeButton: $('#close_edit_reviewers'), |
|
746 | 751 | addButton: $('#add_reviewer'), |
|
747 | 752 | removeButtons: $('.reviewer_member_remove,.reviewer_member_mandatory_remove'), |
|
748 | 753 | |
|
749 | 754 | init: function () { |
|
750 | 755 | var self = this; |
|
751 | 756 | this.editButton.on('click', function (e) { |
|
752 | 757 | self.edit(); |
|
753 | 758 | }); |
|
754 | 759 | this.closeButton.on('click', function (e) { |
|
755 | 760 | self.close(); |
|
756 | 761 | }); |
|
757 | 762 | }, |
|
758 | 763 | |
|
759 | 764 | edit: function (event) { |
|
760 | 765 | this.editButton.hide(); |
|
761 | 766 | this.closeButton.show(); |
|
762 | 767 | this.addButton.show(); |
|
763 | 768 | this.removeButtons.css('visibility', 'visible'); |
|
764 | 769 | // review rules |
|
765 | 770 | reviewersController.loadReviewRules( |
|
766 | 771 | ${c.pull_request.reviewer_data_json | n}); |
|
767 | 772 | }, |
|
768 | 773 | |
|
769 | 774 | close: function (event) { |
|
770 | 775 | this.editButton.show(); |
|
771 | 776 | this.closeButton.hide(); |
|
772 | 777 | this.addButton.hide(); |
|
773 | 778 | this.removeButtons.css('visibility', 'hidden'); |
|
774 | 779 | // hide review rules |
|
775 | 780 | reviewersController.hideReviewRules() |
|
776 | 781 | } |
|
777 | 782 | }; |
|
778 | 783 | |
|
779 | 784 | PRDetails.init(); |
|
780 | 785 | ReviewersPanel.init(); |
|
781 | 786 | |
|
782 | 787 | showOutdated = function (self) { |
|
783 | 788 | $('.comment-inline.comment-outdated').show(); |
|
784 | 789 | $('.filediff-outdated').show(); |
|
785 | 790 | $('.showOutdatedComments').hide(); |
|
786 | 791 | $('.hideOutdatedComments').show(); |
|
787 | 792 | }; |
|
788 | 793 | |
|
789 | 794 | hideOutdated = function (self) { |
|
790 | 795 | $('.comment-inline.comment-outdated').hide(); |
|
791 | 796 | $('.filediff-outdated').hide(); |
|
792 | 797 | $('.hideOutdatedComments').hide(); |
|
793 | 798 | $('.showOutdatedComments').show(); |
|
794 | 799 | }; |
|
795 | 800 | |
|
796 | 801 | refreshMergeChecks = function () { |
|
797 | 802 | var loadUrl = "${request.current_route_path(_query=dict(merge_checks=1))}"; |
|
798 | 803 | $('.pull-request-merge').css('opacity', 0.3); |
|
799 | 804 | $('.action-buttons-extra').css('opacity', 0.3); |
|
800 | 805 | |
|
801 | 806 | $('.pull-request-merge').load( |
|
802 | 807 | loadUrl, function () { |
|
803 | 808 | $('.pull-request-merge').css('opacity', 1); |
|
804 | 809 | |
|
805 | 810 | $('.action-buttons-extra').css('opacity', 1); |
|
806 | 811 | } |
|
807 | 812 | ); |
|
808 | 813 | }; |
|
809 | 814 | |
|
810 | 815 | closePullRequest = function (status) { |
|
811 | 816 | if (!confirm(_gettext('Are you sure to close this pull request without merging?'))) { |
|
812 | 817 | return false; |
|
813 | 818 | } |
|
814 | 819 | // inject closing flag |
|
815 | 820 | $('.action-buttons-extra').append('<input type="hidden" class="close-pr-input" id="close_pull_request" value="1">'); |
|
816 | 821 | $(generalCommentForm.statusChange).select2("val", status).trigger('change'); |
|
817 | 822 | $(generalCommentForm.submitForm).submit(); |
|
818 | 823 | }; |
|
819 | 824 | |
|
820 | 825 | $('#show-outdated-comments').on('click', function (e) { |
|
821 | 826 | var button = $(this); |
|
822 | 827 | var outdated = $('.comment-outdated'); |
|
823 | 828 | |
|
824 | 829 | if (button.html() === "(Show)") { |
|
825 | 830 | button.html("(Hide)"); |
|
826 | 831 | outdated.show(); |
|
827 | 832 | } else { |
|
828 | 833 | button.html("(Show)"); |
|
829 | 834 | outdated.hide(); |
|
830 | 835 | } |
|
831 | 836 | }); |
|
832 | 837 | |
|
833 | 838 | $('.show-inline-comments').on('change', function (e) { |
|
834 | 839 | var show = 'none'; |
|
835 | 840 | var target = e.currentTarget; |
|
836 | 841 | if (target.checked) { |
|
837 | 842 | show = '' |
|
838 | 843 | } |
|
839 | 844 | var boxid = $(target).attr('id_for'); |
|
840 | 845 | var comments = $('#{0} .inline-comments'.format(boxid)); |
|
841 | 846 | var fn_display = function (idx) { |
|
842 | 847 | $(this).css('display', show); |
|
843 | 848 | }; |
|
844 | 849 | $(comments).each(fn_display); |
|
845 | 850 | var btns = $('#{0} .inline-comments-button'.format(boxid)); |
|
846 | 851 | $(btns).each(fn_display); |
|
847 | 852 | }); |
|
848 | 853 | |
|
849 | 854 | $('#merge_pull_request_form').submit(function () { |
|
850 | 855 | if (!$('#merge_pull_request').attr('disabled')) { |
|
851 | 856 | $('#merge_pull_request').attr('disabled', 'disabled'); |
|
852 | 857 | } |
|
853 | 858 | return true; |
|
854 | 859 | }); |
|
855 | 860 | |
|
856 | 861 | $('#edit_pull_request').on('click', function (e) { |
|
857 | 862 | var title = $('#pr-title-input').val(); |
|
858 | 863 | var description = codeMirrorInstance.getValue(); |
|
859 | 864 | var renderer = $('#pr-renderer-input').val(); |
|
860 | 865 | editPullRequest( |
|
861 | 866 | "${c.repo_name}", "${c.pull_request.pull_request_id}", |
|
862 | 867 | title, description, renderer); |
|
863 | 868 | }); |
|
864 | 869 | |
|
865 | 870 | $('#update_pull_request').on('click', function (e) { |
|
866 | 871 | $(this).attr('disabled', 'disabled'); |
|
867 | 872 | $(this).addClass('disabled'); |
|
868 | 873 | $(this).html(_gettext('Saving...')); |
|
869 | 874 | reviewersController.updateReviewers( |
|
870 | 875 | "${c.repo_name}", "${c.pull_request.pull_request_id}"); |
|
871 | 876 | }); |
|
872 | 877 | |
|
873 | 878 | |
|
874 | 879 | // fixing issue with caches on firefox |
|
875 | 880 | $('#update_commits').removeAttr("disabled"); |
|
876 | 881 | |
|
877 | 882 | $('.show-inline-comments').on('click', function (e) { |
|
878 | 883 | var boxid = $(this).attr('data-comment-id'); |
|
879 | 884 | var button = $(this); |
|
880 | 885 | |
|
881 | 886 | if (button.hasClass("comments-visible")) { |
|
882 | 887 | $('#{0} .inline-comments'.format(boxid)).each(function (index) { |
|
883 | 888 | $(this).hide(); |
|
884 | 889 | }); |
|
885 | 890 | button.removeClass("comments-visible"); |
|
886 | 891 | } else { |
|
887 | 892 | $('#{0} .inline-comments'.format(boxid)).each(function (index) { |
|
888 | 893 | $(this).show(); |
|
889 | 894 | }); |
|
890 | 895 | button.addClass("comments-visible"); |
|
891 | 896 | } |
|
892 | 897 | }); |
|
893 | 898 | |
|
894 | 899 | // register submit callback on commentForm form to track TODOs |
|
895 | 900 | window.commentFormGlobalSubmitSuccessCallback = function () { |
|
896 | 901 | refreshMergeChecks(); |
|
897 | 902 | }; |
|
898 | 903 | |
|
899 | 904 | ReviewerAutoComplete('#user'); |
|
900 | 905 | |
|
901 | 906 | }) |
|
902 | 907 | |
|
903 | 908 | </script> |
|
904 | 909 | |
|
905 | 910 | </div> |
|
906 | 911 | |
|
907 | 912 | </%def> |
General Comments 0
You need to be logged in to leave comments.
Login now