##// END OF EJS Templates
repositories: use remote function to check if repo is empty...
marcink -
r3723:267daa27 new-ui
parent child Browse files
Show More
@@ -1,725 +1,728 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2016-2019 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 import time
22 22 import logging
23 23 import operator
24 24
25 25 from pyramid import compat
26 26 from pyramid.httpexceptions import HTTPFound, HTTPForbidden, HTTPBadRequest
27 27
28 28 from rhodecode.lib import helpers as h, diffs
29 29 from rhodecode.lib.utils2 import (
30 30 StrictAttributeDict, str2bool, safe_int, datetime_to_time, safe_unicode)
31 31 from rhodecode.lib.vcs.exceptions import RepositoryRequirementError
32 32 from rhodecode.model import repo
33 33 from rhodecode.model import repo_group
34 34 from rhodecode.model import user_group
35 35 from rhodecode.model import user
36 36 from rhodecode.model.db import User
37 37 from rhodecode.model.scm import ScmModel
38 38 from rhodecode.model.settings import VcsSettingsModel
39 39
40 40 log = logging.getLogger(__name__)
41 41
42 42
43 43 ADMIN_PREFIX = '/_admin'
44 44 STATIC_FILE_PREFIX = '/_static'
45 45
46 46 URL_NAME_REQUIREMENTS = {
47 47 # group name can have a slash in them, but they must not end with a slash
48 48 'group_name': r'.*?[^/]',
49 49 'repo_group_name': r'.*?[^/]',
50 50 # repo names can have a slash in them, but they must not end with a slash
51 51 'repo_name': r'.*?[^/]',
52 52 # file path eats up everything at the end
53 53 'f_path': r'.*',
54 54 # reference types
55 55 'source_ref_type': '(branch|book|tag|rev|\%\(source_ref_type\)s)',
56 56 'target_ref_type': '(branch|book|tag|rev|\%\(target_ref_type\)s)',
57 57 }
58 58
59 59
60 60 def add_route_with_slash(config,name, pattern, **kw):
61 61 config.add_route(name, pattern, **kw)
62 62 if not pattern.endswith('/'):
63 63 config.add_route(name + '_slash', pattern + '/', **kw)
64 64
65 65
66 66 def add_route_requirements(route_path, requirements=None):
67 67 """
68 68 Adds regex requirements to pyramid routes using a mapping dict
69 69 e.g::
70 70 add_route_requirements('{repo_name}/settings')
71 71 """
72 72 requirements = requirements or URL_NAME_REQUIREMENTS
73 73 for key, regex in requirements.items():
74 74 route_path = route_path.replace('{%s}' % key, '{%s:%s}' % (key, regex))
75 75 return route_path
76 76
77 77
78 78 def get_format_ref_id(repo):
79 79 """Returns a `repo` specific reference formatter function"""
80 80 if h.is_svn(repo):
81 81 return _format_ref_id_svn
82 82 else:
83 83 return _format_ref_id
84 84
85 85
86 86 def _format_ref_id(name, raw_id):
87 87 """Default formatting of a given reference `name`"""
88 88 return name
89 89
90 90
91 91 def _format_ref_id_svn(name, raw_id):
92 92 """Special way of formatting a reference for Subversion including path"""
93 93 return '%s@%s' % (name, raw_id)
94 94
95 95
96 96 class TemplateArgs(StrictAttributeDict):
97 97 pass
98 98
99 99
100 100 class BaseAppView(object):
101 101
102 102 def __init__(self, context, request):
103 103 self.request = request
104 104 self.context = context
105 105 self.session = request.session
106 106 if not hasattr(request, 'user'):
107 107 # NOTE(marcink): edge case, we ended up in matched route
108 108 # but probably of web-app context, e.g API CALL/VCS CALL
109 109 if hasattr(request, 'vcs_call') or hasattr(request, 'rpc_method'):
110 110 log.warning('Unable to process request `%s` in this scope', request)
111 111 raise HTTPBadRequest()
112 112
113 113 self._rhodecode_user = request.user # auth user
114 114 self._rhodecode_db_user = self._rhodecode_user.get_instance()
115 115 self._maybe_needs_password_change(
116 116 request.matched_route.name, self._rhodecode_db_user)
117 117
118 118 def _maybe_needs_password_change(self, view_name, user_obj):
119 119 log.debug('Checking if user %s needs password change on view %s',
120 120 user_obj, view_name)
121 121 skip_user_views = [
122 122 'logout', 'login',
123 123 'my_account_password', 'my_account_password_update'
124 124 ]
125 125
126 126 if not user_obj:
127 127 return
128 128
129 129 if user_obj.username == User.DEFAULT_USER:
130 130 return
131 131
132 132 now = time.time()
133 133 should_change = user_obj.user_data.get('force_password_change')
134 134 change_after = safe_int(should_change) or 0
135 135 if should_change and now > change_after:
136 136 log.debug('User %s requires password change', user_obj)
137 137 h.flash('You are required to change your password', 'warning',
138 138 ignore_duplicate=True)
139 139
140 140 if view_name not in skip_user_views:
141 141 raise HTTPFound(
142 142 self.request.route_path('my_account_password'))
143 143
144 144 def _log_creation_exception(self, e, repo_name):
145 145 _ = self.request.translate
146 146 reason = None
147 147 if len(e.args) == 2:
148 148 reason = e.args[1]
149 149
150 150 if reason == 'INVALID_CERTIFICATE':
151 151 log.exception(
152 152 'Exception creating a repository: invalid certificate')
153 153 msg = (_('Error creating repository %s: invalid certificate')
154 154 % repo_name)
155 155 else:
156 156 log.exception("Exception creating a repository")
157 157 msg = (_('Error creating repository %s')
158 158 % repo_name)
159 159 return msg
160 160
161 161 def _get_local_tmpl_context(self, include_app_defaults=True):
162 162 c = TemplateArgs()
163 163 c.auth_user = self.request.user
164 164 # TODO(marcink): migrate the usage of c.rhodecode_user to c.auth_user
165 165 c.rhodecode_user = self.request.user
166 166
167 167 if include_app_defaults:
168 168 from rhodecode.lib.base import attach_context_attributes
169 169 attach_context_attributes(c, self.request, self.request.user.user_id)
170 170
171 171 c.is_super_admin = c.auth_user.is_admin
172 172
173 173 c.can_create_repo = c.is_super_admin
174 174 c.can_create_repo_group = c.is_super_admin
175 175 c.can_create_user_group = c.is_super_admin
176 176
177 177 c.is_delegated_admin = False
178 178
179 179 if not c.auth_user.is_default and not c.is_super_admin:
180 180 c.can_create_repo = h.HasPermissionAny('hg.create.repository')(
181 181 user=self.request.user)
182 182 repositories = c.auth_user.repositories_admin or c.can_create_repo
183 183
184 184 c.can_create_repo_group = h.HasPermissionAny('hg.repogroup.create.true')(
185 185 user=self.request.user)
186 186 repository_groups = c.auth_user.repository_groups_admin or c.can_create_repo_group
187 187
188 188 c.can_create_user_group = h.HasPermissionAny('hg.usergroup.create.true')(
189 189 user=self.request.user)
190 190 user_groups = c.auth_user.user_groups_admin or c.can_create_user_group
191 191 # delegated admin can create, or manage some objects
192 192 c.is_delegated_admin = repositories or repository_groups or user_groups
193 193 return c
194 194
195 195 def _get_template_context(self, tmpl_args, **kwargs):
196 196
197 197 local_tmpl_args = {
198 198 'defaults': {},
199 199 'errors': {},
200 200 'c': tmpl_args
201 201 }
202 202 local_tmpl_args.update(kwargs)
203 203 return local_tmpl_args
204 204
205 205 def load_default_context(self):
206 206 """
207 207 example:
208 208
209 209 def load_default_context(self):
210 210 c = self._get_local_tmpl_context()
211 211 c.custom_var = 'foobar'
212 212
213 213 return c
214 214 """
215 215 raise NotImplementedError('Needs implementation in view class')
216 216
217 217
218 218 class RepoAppView(BaseAppView):
219 219
220 220 def __init__(self, context, request):
221 221 super(RepoAppView, self).__init__(context, request)
222 222 self.db_repo = request.db_repo
223 223 self.db_repo_name = self.db_repo.repo_name
224 224 self.db_repo_pull_requests = ScmModel().get_pull_requests(self.db_repo)
225 225
226 226 def _handle_missing_requirements(self, error):
227 227 log.error(
228 228 'Requirements are missing for repository %s: %s',
229 229 self.db_repo_name, safe_unicode(error))
230 230
231 231 def _get_local_tmpl_context(self, include_app_defaults=True):
232 232 _ = self.request.translate
233 233 c = super(RepoAppView, self)._get_local_tmpl_context(
234 234 include_app_defaults=include_app_defaults)
235 235
236 236 # register common vars for this type of view
237 237 c.rhodecode_db_repo = self.db_repo
238 238 c.repo_name = self.db_repo_name
239 239 c.repository_pull_requests = self.db_repo_pull_requests
240 240 c.repository_is_user_following = ScmModel().is_following_repo(
241 241 self.db_repo_name, self._rhodecode_user.user_id)
242 242 self.path_filter = PathFilter(None)
243 243
244 244 c.repository_requirements_missing = {}
245 245 try:
246 246 self.rhodecode_vcs_repo = self.db_repo.scm_instance()
247 if self.rhodecode_vcs_repo:
247 # NOTE(marcink):
248 # comparison to None since if it's an object __bool__ is expensive to
249 # calculate
250 if self.rhodecode_vcs_repo is not None:
248 251 path_perms = self.rhodecode_vcs_repo.get_path_permissions(
249 252 c.auth_user.username)
250 253 self.path_filter = PathFilter(path_perms)
251 254 except RepositoryRequirementError as e:
252 255 c.repository_requirements_missing = {'error': str(e)}
253 256 self._handle_missing_requirements(e)
254 257 self.rhodecode_vcs_repo = None
255 258
256 259 c.path_filter = self.path_filter # used by atom_feed_entry.mako
257 260
258 261 if self.rhodecode_vcs_repo is None:
259 262 # unable to fetch this repo as vcs instance, report back to user
260 263 h.flash(_(
261 264 "The repository `%(repo_name)s` cannot be loaded in filesystem. "
262 265 "Please check if it exist, or is not damaged.") %
263 266 {'repo_name': c.repo_name},
264 267 category='error', ignore_duplicate=True)
265 268 if c.repository_requirements_missing:
266 269 route = self.request.matched_route.name
267 270 if route.startswith(('edit_repo', 'repo_summary')):
268 271 # allow summary and edit repo on missing requirements
269 272 return c
270 273
271 274 raise HTTPFound(
272 275 h.route_path('repo_summary', repo_name=self.db_repo_name))
273 276
274 277 else: # redirect if we don't show missing requirements
275 278 raise HTTPFound(h.route_path('home'))
276 279
277 280 c.has_origin_repo_read_perm = False
278 281 if self.db_repo.fork:
279 282 c.has_origin_repo_read_perm = h.HasRepoPermissionAny(
280 283 'repository.write', 'repository.read', 'repository.admin')(
281 284 self.db_repo.fork.repo_name, 'summary fork link')
282 285
283 286 return c
284 287
285 288 def _get_f_path_unchecked(self, matchdict, default=None):
286 289 """
287 290 Should only be used by redirects, everything else should call _get_f_path
288 291 """
289 292 f_path = matchdict.get('f_path')
290 293 if f_path:
291 294 # fix for multiple initial slashes that causes errors for GIT
292 295 return f_path.lstrip('/')
293 296
294 297 return default
295 298
296 299 def _get_f_path(self, matchdict, default=None):
297 300 f_path_match = self._get_f_path_unchecked(matchdict, default)
298 301 return self.path_filter.assert_path_permissions(f_path_match)
299 302
300 303 def _get_general_setting(self, target_repo, settings_key, default=False):
301 304 settings_model = VcsSettingsModel(repo=target_repo)
302 305 settings = settings_model.get_general_settings()
303 306 return settings.get(settings_key, default)
304 307
305 308 def get_recache_flag(self):
306 309 for flag_name in ['force_recache', 'force-recache', 'no-cache']:
307 310 flag_val = self.request.GET.get(flag_name)
308 311 if str2bool(flag_val):
309 312 return True
310 313 return False
311 314
312 315
313 316 class PathFilter(object):
314 317
315 318 # Expects and instance of BasePathPermissionChecker or None
316 319 def __init__(self, permission_checker):
317 320 self.permission_checker = permission_checker
318 321
319 322 def assert_path_permissions(self, path):
320 323 if path and self.permission_checker and not self.permission_checker.has_access(path):
321 324 raise HTTPForbidden()
322 325 return path
323 326
324 327 def filter_patchset(self, patchset):
325 328 if not self.permission_checker or not patchset:
326 329 return patchset, False
327 330 had_filtered = False
328 331 filtered_patchset = []
329 332 for patch in patchset:
330 333 filename = patch.get('filename', None)
331 334 if not filename or self.permission_checker.has_access(filename):
332 335 filtered_patchset.append(patch)
333 336 else:
334 337 had_filtered = True
335 338 if had_filtered:
336 339 if isinstance(patchset, diffs.LimitedDiffContainer):
337 340 filtered_patchset = diffs.LimitedDiffContainer(patchset.diff_limit, patchset.cur_diff_size, filtered_patchset)
338 341 return filtered_patchset, True
339 342 else:
340 343 return patchset, False
341 344
342 345 def render_patchset_filtered(self, diffset, patchset, source_ref=None, target_ref=None):
343 346 filtered_patchset, has_hidden_changes = self.filter_patchset(patchset)
344 347 result = diffset.render_patchset(
345 348 filtered_patchset, source_ref=source_ref, target_ref=target_ref)
346 349 result.has_hidden_changes = has_hidden_changes
347 350 return result
348 351
349 352 def get_raw_patch(self, diff_processor):
350 353 if self.permission_checker is None:
351 354 return diff_processor.as_raw()
352 355 elif self.permission_checker.has_full_access:
353 356 return diff_processor.as_raw()
354 357 else:
355 358 return '# Repository has user-specific filters, raw patch generation is disabled.'
356 359
357 360 @property
358 361 def is_enabled(self):
359 362 return self.permission_checker is not None
360 363
361 364
362 365 class RepoGroupAppView(BaseAppView):
363 366 def __init__(self, context, request):
364 367 super(RepoGroupAppView, self).__init__(context, request)
365 368 self.db_repo_group = request.db_repo_group
366 369 self.db_repo_group_name = self.db_repo_group.group_name
367 370
368 371 def _get_local_tmpl_context(self, include_app_defaults=True):
369 372 _ = self.request.translate
370 373 c = super(RepoGroupAppView, self)._get_local_tmpl_context(
371 374 include_app_defaults=include_app_defaults)
372 375 c.repo_group = self.db_repo_group
373 376 return c
374 377
375 378 def _revoke_perms_on_yourself(self, form_result):
376 379 _updates = filter(lambda u: self._rhodecode_user.user_id == int(u[0]),
377 380 form_result['perm_updates'])
378 381 _additions = filter(lambda u: self._rhodecode_user.user_id == int(u[0]),
379 382 form_result['perm_additions'])
380 383 _deletions = filter(lambda u: self._rhodecode_user.user_id == int(u[0]),
381 384 form_result['perm_deletions'])
382 385 admin_perm = 'group.admin'
383 386 if _updates and _updates[0][1] != admin_perm or \
384 387 _additions and _additions[0][1] != admin_perm or \
385 388 _deletions and _deletions[0][1] != admin_perm:
386 389 return True
387 390 return False
388 391
389 392
390 393 class UserGroupAppView(BaseAppView):
391 394 def __init__(self, context, request):
392 395 super(UserGroupAppView, self).__init__(context, request)
393 396 self.db_user_group = request.db_user_group
394 397 self.db_user_group_name = self.db_user_group.users_group_name
395 398
396 399
397 400 class UserAppView(BaseAppView):
398 401 def __init__(self, context, request):
399 402 super(UserAppView, self).__init__(context, request)
400 403 self.db_user = request.db_user
401 404 self.db_user_id = self.db_user.user_id
402 405
403 406 _ = self.request.translate
404 407 if not request.db_user_supports_default:
405 408 if self.db_user.username == User.DEFAULT_USER:
406 409 h.flash(_("Editing user `{}` is disabled.".format(
407 410 User.DEFAULT_USER)), category='warning')
408 411 raise HTTPFound(h.route_path('users'))
409 412
410 413
411 414 class DataGridAppView(object):
412 415 """
413 416 Common class to have re-usable grid rendering components
414 417 """
415 418
416 419 def _extract_ordering(self, request, column_map=None):
417 420 column_map = column_map or {}
418 421 column_index = safe_int(request.GET.get('order[0][column]'))
419 422 order_dir = request.GET.get(
420 423 'order[0][dir]', 'desc')
421 424 order_by = request.GET.get(
422 425 'columns[%s][data][sort]' % column_index, 'name_raw')
423 426
424 427 # translate datatable to DB columns
425 428 order_by = column_map.get(order_by) or order_by
426 429
427 430 search_q = request.GET.get('search[value]')
428 431 return search_q, order_by, order_dir
429 432
430 433 def _extract_chunk(self, request):
431 434 start = safe_int(request.GET.get('start'), 0)
432 435 length = safe_int(request.GET.get('length'), 25)
433 436 draw = safe_int(request.GET.get('draw'))
434 437 return draw, start, length
435 438
436 439 def _get_order_col(self, order_by, model):
437 440 if isinstance(order_by, compat.string_types):
438 441 try:
439 442 return operator.attrgetter(order_by)(model)
440 443 except AttributeError:
441 444 return None
442 445 else:
443 446 return order_by
444 447
445 448
446 449 class BaseReferencesView(RepoAppView):
447 450 """
448 451 Base for reference view for branches, tags and bookmarks.
449 452 """
450 453 def load_default_context(self):
451 454 c = self._get_local_tmpl_context()
452 455
453 456
454 457 return c
455 458
456 459 def load_refs_context(self, ref_items, partials_template):
457 460 _render = self.request.get_partial_renderer(partials_template)
458 461 pre_load = ["author", "date", "message"]
459 462
460 463 is_svn = h.is_svn(self.rhodecode_vcs_repo)
461 464 is_hg = h.is_hg(self.rhodecode_vcs_repo)
462 465
463 466 format_ref_id = get_format_ref_id(self.rhodecode_vcs_repo)
464 467
465 468 closed_refs = {}
466 469 if is_hg:
467 470 closed_refs = self.rhodecode_vcs_repo.branches_closed
468 471
469 472 data = []
470 473 for ref_name, commit_id in ref_items:
471 474 commit = self.rhodecode_vcs_repo.get_commit(
472 475 commit_id=commit_id, pre_load=pre_load)
473 476 closed = ref_name in closed_refs
474 477
475 478 # TODO: johbo: Unify generation of reference links
476 479 use_commit_id = '/' in ref_name or is_svn
477 480
478 481 if use_commit_id:
479 482 files_url = h.route_path(
480 483 'repo_files',
481 484 repo_name=self.db_repo_name,
482 485 f_path=ref_name if is_svn else '',
483 486 commit_id=commit_id)
484 487
485 488 else:
486 489 files_url = h.route_path(
487 490 'repo_files',
488 491 repo_name=self.db_repo_name,
489 492 f_path=ref_name if is_svn else '',
490 493 commit_id=ref_name,
491 494 _query=dict(at=ref_name))
492 495
493 496 data.append({
494 497 "name": _render('name', ref_name, files_url, closed),
495 498 "name_raw": ref_name,
496 499 "date": _render('date', commit.date),
497 500 "date_raw": datetime_to_time(commit.date),
498 501 "author": _render('author', commit.author),
499 502 "commit": _render(
500 503 'commit', commit.message, commit.raw_id, commit.idx),
501 504 "commit_raw": commit.idx,
502 505 "compare": _render(
503 506 'compare', format_ref_id(ref_name, commit.raw_id)),
504 507 })
505 508
506 509 return data
507 510
508 511
509 512 class RepoRoutePredicate(object):
510 513 def __init__(self, val, config):
511 514 self.val = val
512 515
513 516 def text(self):
514 517 return 'repo_route = %s' % self.val
515 518
516 519 phash = text
517 520
518 521 def __call__(self, info, request):
519 522 if hasattr(request, 'vcs_call'):
520 523 # skip vcs calls
521 524 return
522 525
523 526 repo_name = info['match']['repo_name']
524 527 repo_model = repo.RepoModel()
525 528
526 529 by_name_match = repo_model.get_by_repo_name(repo_name, cache=False)
527 530
528 531 def redirect_if_creating(route_info, db_repo):
529 532 skip_views = ['edit_repo_advanced_delete']
530 533 route = route_info['route']
531 534 # we should skip delete view so we can actually "remove" repositories
532 535 # if they get stuck in creating state.
533 536 if route.name in skip_views:
534 537 return
535 538
536 539 if db_repo.repo_state in [repo.Repository.STATE_PENDING]:
537 540 repo_creating_url = request.route_path(
538 541 'repo_creating', repo_name=db_repo.repo_name)
539 542 raise HTTPFound(repo_creating_url)
540 543
541 544 if by_name_match:
542 545 # register this as request object we can re-use later
543 546 request.db_repo = by_name_match
544 547 redirect_if_creating(info, by_name_match)
545 548 return True
546 549
547 550 by_id_match = repo_model.get_repo_by_id(repo_name)
548 551 if by_id_match:
549 552 request.db_repo = by_id_match
550 553 redirect_if_creating(info, by_id_match)
551 554 return True
552 555
553 556 return False
554 557
555 558
556 559 class RepoForbidArchivedRoutePredicate(object):
557 560 def __init__(self, val, config):
558 561 self.val = val
559 562
560 563 def text(self):
561 564 return 'repo_forbid_archived = %s' % self.val
562 565
563 566 phash = text
564 567
565 568 def __call__(self, info, request):
566 569 _ = request.translate
567 570 rhodecode_db_repo = request.db_repo
568 571
569 572 log.debug(
570 573 '%s checking if archived flag for repo for %s',
571 574 self.__class__.__name__, rhodecode_db_repo.repo_name)
572 575
573 576 if rhodecode_db_repo.archived:
574 577 log.warning('Current view is not supported for archived repo:%s',
575 578 rhodecode_db_repo.repo_name)
576 579
577 580 h.flash(
578 581 h.literal(_('Action not supported for archived repository.')),
579 582 category='warning')
580 583 summary_url = request.route_path(
581 584 'repo_summary', repo_name=rhodecode_db_repo.repo_name)
582 585 raise HTTPFound(summary_url)
583 586 return True
584 587
585 588
586 589 class RepoTypeRoutePredicate(object):
587 590 def __init__(self, val, config):
588 591 self.val = val or ['hg', 'git', 'svn']
589 592
590 593 def text(self):
591 594 return 'repo_accepted_type = %s' % self.val
592 595
593 596 phash = text
594 597
595 598 def __call__(self, info, request):
596 599 if hasattr(request, 'vcs_call'):
597 600 # skip vcs calls
598 601 return
599 602
600 603 rhodecode_db_repo = request.db_repo
601 604
602 605 log.debug(
603 606 '%s checking repo type for %s in %s',
604 607 self.__class__.__name__, rhodecode_db_repo.repo_type, self.val)
605 608
606 609 if rhodecode_db_repo.repo_type in self.val:
607 610 return True
608 611 else:
609 612 log.warning('Current view is not supported for repo type:%s',
610 613 rhodecode_db_repo.repo_type)
611 614 return False
612 615
613 616
614 617 class RepoGroupRoutePredicate(object):
615 618 def __init__(self, val, config):
616 619 self.val = val
617 620
618 621 def text(self):
619 622 return 'repo_group_route = %s' % self.val
620 623
621 624 phash = text
622 625
623 626 def __call__(self, info, request):
624 627 if hasattr(request, 'vcs_call'):
625 628 # skip vcs calls
626 629 return
627 630
628 631 repo_group_name = info['match']['repo_group_name']
629 632 repo_group_model = repo_group.RepoGroupModel()
630 633 by_name_match = repo_group_model.get_by_group_name(repo_group_name, cache=False)
631 634
632 635 if by_name_match:
633 636 # register this as request object we can re-use later
634 637 request.db_repo_group = by_name_match
635 638 return True
636 639
637 640 return False
638 641
639 642
640 643 class UserGroupRoutePredicate(object):
641 644 def __init__(self, val, config):
642 645 self.val = val
643 646
644 647 def text(self):
645 648 return 'user_group_route = %s' % self.val
646 649
647 650 phash = text
648 651
649 652 def __call__(self, info, request):
650 653 if hasattr(request, 'vcs_call'):
651 654 # skip vcs calls
652 655 return
653 656
654 657 user_group_id = info['match']['user_group_id']
655 658 user_group_model = user_group.UserGroup()
656 659 by_id_match = user_group_model.get(user_group_id, cache=False)
657 660
658 661 if by_id_match:
659 662 # register this as request object we can re-use later
660 663 request.db_user_group = by_id_match
661 664 return True
662 665
663 666 return False
664 667
665 668
666 669 class UserRoutePredicateBase(object):
667 670 supports_default = None
668 671
669 672 def __init__(self, val, config):
670 673 self.val = val
671 674
672 675 def text(self):
673 676 raise NotImplementedError()
674 677
675 678 def __call__(self, info, request):
676 679 if hasattr(request, 'vcs_call'):
677 680 # skip vcs calls
678 681 return
679 682
680 683 user_id = info['match']['user_id']
681 684 user_model = user.User()
682 685 by_id_match = user_model.get(user_id, cache=False)
683 686
684 687 if by_id_match:
685 688 # register this as request object we can re-use later
686 689 request.db_user = by_id_match
687 690 request.db_user_supports_default = self.supports_default
688 691 return True
689 692
690 693 return False
691 694
692 695
693 696 class UserRoutePredicate(UserRoutePredicateBase):
694 697 supports_default = False
695 698
696 699 def text(self):
697 700 return 'user_route = %s' % self.val
698 701
699 702 phash = text
700 703
701 704
702 705 class UserRouteWithDefaultPredicate(UserRoutePredicateBase):
703 706 supports_default = True
704 707
705 708 def text(self):
706 709 return 'user_with_default_route = %s' % self.val
707 710
708 711 phash = text
709 712
710 713
711 714 def includeme(config):
712 715 config.add_route_predicate(
713 716 'repo_route', RepoRoutePredicate)
714 717 config.add_route_predicate(
715 718 'repo_accepted_types', RepoTypeRoutePredicate)
716 719 config.add_route_predicate(
717 720 'repo_forbid_when_archived', RepoForbidArchivedRoutePredicate)
718 721 config.add_route_predicate(
719 722 'repo_group_route', RepoGroupRoutePredicate)
720 723 config.add_route_predicate(
721 724 'user_group_route', UserGroupRoutePredicate)
722 725 config.add_route_predicate(
723 726 'user_route_with_default', UserRouteWithDefaultPredicate)
724 727 config.add_route_predicate(
725 728 'user_route', UserRoutePredicate)
@@ -1,1851 +1,1851 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2014-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 Base module for all VCS systems
23 23 """
24 24 import os
25 25 import re
26 26 import time
27 27 import shutil
28 28 import datetime
29 29 import fnmatch
30 30 import itertools
31 31 import logging
32 32 import collections
33 33 import warnings
34 34
35 35 from zope.cachedescriptors.property import Lazy as LazyProperty
36 36 from pyramid import compat
37 37
38 38 from rhodecode.translation import lazy_ugettext
39 39 from rhodecode.lib.utils2 import safe_str, safe_unicode
40 40 from rhodecode.lib.vcs import connection
41 41 from rhodecode.lib.vcs.utils import author_name, author_email
42 42 from rhodecode.lib.vcs.conf import settings
43 43 from rhodecode.lib.vcs.exceptions import (
44 44 CommitError, EmptyRepositoryError, NodeAlreadyAddedError,
45 45 NodeAlreadyChangedError, NodeAlreadyExistsError, NodeAlreadyRemovedError,
46 46 NodeDoesNotExistError, NodeNotChangedError, VCSError,
47 47 ImproperArchiveTypeError, BranchDoesNotExistError, CommitDoesNotExistError,
48 48 RepositoryError)
49 49
50 50
51 51 log = logging.getLogger(__name__)
52 52
53 53
54 54 FILEMODE_DEFAULT = 0o100644
55 55 FILEMODE_EXECUTABLE = 0o100755
56 56
57 57 Reference = collections.namedtuple('Reference', ('type', 'name', 'commit_id'))
58 58
59 59
60 60 class MergeFailureReason(object):
61 61 """
62 62 Enumeration with all the reasons why the server side merge could fail.
63 63
64 64 DO NOT change the number of the reasons, as they may be stored in the
65 65 database.
66 66
67 67 Changing the name of a reason is acceptable and encouraged to deprecate old
68 68 reasons.
69 69 """
70 70
71 71 # Everything went well.
72 72 NONE = 0
73 73
74 74 # An unexpected exception was raised. Check the logs for more details.
75 75 UNKNOWN = 1
76 76
77 77 # The merge was not successful, there are conflicts.
78 78 MERGE_FAILED = 2
79 79
80 80 # The merge succeeded but we could not push it to the target repository.
81 81 PUSH_FAILED = 3
82 82
83 83 # The specified target is not a head in the target repository.
84 84 TARGET_IS_NOT_HEAD = 4
85 85
86 86 # The source repository contains more branches than the target. Pushing
87 87 # the merge will create additional branches in the target.
88 88 HG_SOURCE_HAS_MORE_BRANCHES = 5
89 89
90 90 # The target reference has multiple heads. That does not allow to correctly
91 91 # identify the target location. This could only happen for mercurial
92 92 # branches.
93 93 HG_TARGET_HAS_MULTIPLE_HEADS = 6
94 94
95 95 # The target repository is locked
96 96 TARGET_IS_LOCKED = 7
97 97
98 98 # Deprecated, use MISSING_TARGET_REF or MISSING_SOURCE_REF instead.
99 99 # A involved commit could not be found.
100 100 _DEPRECATED_MISSING_COMMIT = 8
101 101
102 102 # The target repo reference is missing.
103 103 MISSING_TARGET_REF = 9
104 104
105 105 # The source repo reference is missing.
106 106 MISSING_SOURCE_REF = 10
107 107
108 108 # The merge was not successful, there are conflicts related to sub
109 109 # repositories.
110 110 SUBREPO_MERGE_FAILED = 11
111 111
112 112
113 113 class UpdateFailureReason(object):
114 114 """
115 115 Enumeration with all the reasons why the pull request update could fail.
116 116
117 117 DO NOT change the number of the reasons, as they may be stored in the
118 118 database.
119 119
120 120 Changing the name of a reason is acceptable and encouraged to deprecate old
121 121 reasons.
122 122 """
123 123
124 124 # Everything went well.
125 125 NONE = 0
126 126
127 127 # An unexpected exception was raised. Check the logs for more details.
128 128 UNKNOWN = 1
129 129
130 130 # The pull request is up to date.
131 131 NO_CHANGE = 2
132 132
133 133 # The pull request has a reference type that is not supported for update.
134 134 WRONG_REF_TYPE = 3
135 135
136 136 # Update failed because the target reference is missing.
137 137 MISSING_TARGET_REF = 4
138 138
139 139 # Update failed because the source reference is missing.
140 140 MISSING_SOURCE_REF = 5
141 141
142 142
143 143 class MergeResponse(object):
144 144
145 145 # uses .format(**metadata) for variables
146 146 MERGE_STATUS_MESSAGES = {
147 147 MergeFailureReason.NONE: lazy_ugettext(
148 148 u'This pull request can be automatically merged.'),
149 149 MergeFailureReason.UNKNOWN: lazy_ugettext(
150 150 u'This pull request cannot be merged because of an unhandled exception. '
151 151 u'{exception}'),
152 152 MergeFailureReason.MERGE_FAILED: lazy_ugettext(
153 153 u'This pull request cannot be merged because of merge conflicts.'),
154 154 MergeFailureReason.PUSH_FAILED: lazy_ugettext(
155 155 u'This pull request could not be merged because push to '
156 156 u'target:`{target}@{merge_commit}` failed.'),
157 157 MergeFailureReason.TARGET_IS_NOT_HEAD: lazy_ugettext(
158 158 u'This pull request cannot be merged because the target '
159 159 u'`{target_ref.name}` is not a head.'),
160 160 MergeFailureReason.HG_SOURCE_HAS_MORE_BRANCHES: lazy_ugettext(
161 161 u'This pull request cannot be merged because the source contains '
162 162 u'more branches than the target.'),
163 163 MergeFailureReason.HG_TARGET_HAS_MULTIPLE_HEADS: lazy_ugettext(
164 164 u'This pull request cannot be merged because the target `{target_ref.name}` '
165 165 u'has multiple heads: `{heads}`.'),
166 166 MergeFailureReason.TARGET_IS_LOCKED: lazy_ugettext(
167 167 u'This pull request cannot be merged because the target repository is '
168 168 u'locked by {locked_by}.'),
169 169
170 170 MergeFailureReason.MISSING_TARGET_REF: lazy_ugettext(
171 171 u'This pull request cannot be merged because the target '
172 172 u'reference `{target_ref.name}` is missing.'),
173 173 MergeFailureReason.MISSING_SOURCE_REF: lazy_ugettext(
174 174 u'This pull request cannot be merged because the source '
175 175 u'reference `{source_ref.name}` is missing.'),
176 176 MergeFailureReason.SUBREPO_MERGE_FAILED: lazy_ugettext(
177 177 u'This pull request cannot be merged because of conflicts related '
178 178 u'to sub repositories.'),
179 179
180 180 # Deprecations
181 181 MergeFailureReason._DEPRECATED_MISSING_COMMIT: lazy_ugettext(
182 182 u'This pull request cannot be merged because the target or the '
183 183 u'source reference is missing.'),
184 184
185 185 }
186 186
187 187 def __init__(self, possible, executed, merge_ref, failure_reason, metadata=None):
188 188 self.possible = possible
189 189 self.executed = executed
190 190 self.merge_ref = merge_ref
191 191 self.failure_reason = failure_reason
192 192 self.metadata = metadata or {}
193 193
194 194 def __repr__(self):
195 195 return '<MergeResponse:{} {}>'.format(self.label, self.failure_reason)
196 196
197 197 def __eq__(self, other):
198 198 same_instance = isinstance(other, self.__class__)
199 199 return same_instance \
200 200 and self.possible == other.possible \
201 201 and self.executed == other.executed \
202 202 and self.failure_reason == other.failure_reason
203 203
204 204 @property
205 205 def label(self):
206 206 label_dict = dict((v, k) for k, v in MergeFailureReason.__dict__.items() if
207 207 not k.startswith('_'))
208 208 return label_dict.get(self.failure_reason)
209 209
210 210 @property
211 211 def merge_status_message(self):
212 212 """
213 213 Return a human friendly error message for the given merge status code.
214 214 """
215 215 msg = safe_unicode(self.MERGE_STATUS_MESSAGES[self.failure_reason])
216 216 try:
217 217 return msg.format(**self.metadata)
218 218 except Exception:
219 219 log.exception('Failed to format %s message', self)
220 220 return msg
221 221
222 222 def asdict(self):
223 223 data = {}
224 224 for k in ['possible', 'executed', 'merge_ref', 'failure_reason',
225 225 'merge_status_message']:
226 226 data[k] = getattr(self, k)
227 227 return data
228 228
229 229
230 230 class BaseRepository(object):
231 231 """
232 232 Base Repository for final backends
233 233
234 234 .. attribute:: DEFAULT_BRANCH_NAME
235 235
236 236 name of default branch (i.e. "trunk" for svn, "master" for git etc.
237 237
238 238 .. attribute:: commit_ids
239 239
240 240 list of all available commit ids, in ascending order
241 241
242 242 .. attribute:: path
243 243
244 244 absolute path to the repository
245 245
246 246 .. attribute:: bookmarks
247 247
248 248 Mapping from name to :term:`Commit ID` of the bookmark. Empty in case
249 249 there are no bookmarks or the backend implementation does not support
250 250 bookmarks.
251 251
252 252 .. attribute:: tags
253 253
254 254 Mapping from name to :term:`Commit ID` of the tag.
255 255
256 256 """
257 257
258 258 DEFAULT_BRANCH_NAME = None
259 259 DEFAULT_CONTACT = u"Unknown"
260 260 DEFAULT_DESCRIPTION = u"unknown"
261 261 EMPTY_COMMIT_ID = '0' * 40
262 262
263 263 path = None
264 264
265 265 def __init__(self, repo_path, config=None, create=False, **kwargs):
266 266 """
267 267 Initializes repository. Raises RepositoryError if repository could
268 268 not be find at the given ``repo_path`` or directory at ``repo_path``
269 269 exists and ``create`` is set to True.
270 270
271 271 :param repo_path: local path of the repository
272 272 :param config: repository configuration
273 273 :param create=False: if set to True, would try to create repository.
274 274 :param src_url=None: if set, should be proper url from which repository
275 275 would be cloned; requires ``create`` parameter to be set to True -
276 276 raises RepositoryError if src_url is set and create evaluates to
277 277 False
278 278 """
279 279 raise NotImplementedError
280 280
281 281 def __repr__(self):
282 282 return '<%s at %s>' % (self.__class__.__name__, self.path)
283 283
284 284 def __len__(self):
285 285 return self.count()
286 286
287 287 def __eq__(self, other):
288 288 same_instance = isinstance(other, self.__class__)
289 289 return same_instance and other.path == self.path
290 290
291 291 def __ne__(self, other):
292 292 return not self.__eq__(other)
293 293
294 294 def get_create_shadow_cache_pr_path(self, db_repo):
295 295 path = db_repo.cached_diffs_dir
296 296 if not os.path.exists(path):
297 297 os.makedirs(path, 0o755)
298 298 return path
299 299
300 300 @classmethod
301 301 def get_default_config(cls, default=None):
302 302 config = Config()
303 303 if default and isinstance(default, list):
304 304 for section, key, val in default:
305 305 config.set(section, key, val)
306 306 return config
307 307
308 308 @LazyProperty
309 309 def _remote(self):
310 310 raise NotImplementedError
311 311
312 312 def _heads(self, branch=None):
313 313 return []
314 314
315 315 @LazyProperty
316 316 def EMPTY_COMMIT(self):
317 317 return EmptyCommit(self.EMPTY_COMMIT_ID)
318 318
319 319 @LazyProperty
320 320 def alias(self):
321 321 for k, v in settings.BACKENDS.items():
322 322 if v.split('.')[-1] == str(self.__class__.__name__):
323 323 return k
324 324
325 325 @LazyProperty
326 326 def name(self):
327 327 return safe_unicode(os.path.basename(self.path))
328 328
329 329 @LazyProperty
330 330 def description(self):
331 331 raise NotImplementedError
332 332
333 333 def refs(self):
334 334 """
335 335 returns a `dict` with branches, bookmarks, tags, and closed_branches
336 336 for this repository
337 337 """
338 338 return dict(
339 339 branches=self.branches,
340 340 branches_closed=self.branches_closed,
341 341 tags=self.tags,
342 342 bookmarks=self.bookmarks
343 343 )
344 344
345 345 @LazyProperty
346 346 def branches(self):
347 347 """
348 348 A `dict` which maps branch names to commit ids.
349 349 """
350 350 raise NotImplementedError
351 351
352 352 @LazyProperty
353 353 def branches_closed(self):
354 354 """
355 355 A `dict` which maps tags names to commit ids.
356 356 """
357 357 raise NotImplementedError
358 358
359 359 @LazyProperty
360 360 def bookmarks(self):
361 361 """
362 362 A `dict` which maps tags names to commit ids.
363 363 """
364 364 raise NotImplementedError
365 365
366 366 @LazyProperty
367 367 def tags(self):
368 368 """
369 369 A `dict` which maps tags names to commit ids.
370 370 """
371 371 raise NotImplementedError
372 372
373 373 @LazyProperty
374 374 def size(self):
375 375 """
376 376 Returns combined size in bytes for all repository files
377 377 """
378 378 tip = self.get_commit()
379 379 return tip.size
380 380
381 381 def size_at_commit(self, commit_id):
382 382 commit = self.get_commit(commit_id)
383 383 return commit.size
384 384
385 385 def is_empty(self):
386 return not bool(self.commit_ids)
386 return self._remote.is_empty()
387 387
388 388 @staticmethod
389 389 def check_url(url, config):
390 390 """
391 391 Function will check given url and try to verify if it's a valid
392 392 link.
393 393 """
394 394 raise NotImplementedError
395 395
396 396 @staticmethod
397 397 def is_valid_repository(path):
398 398 """
399 399 Check if given `path` contains a valid repository of this backend
400 400 """
401 401 raise NotImplementedError
402 402
403 403 # ==========================================================================
404 404 # COMMITS
405 405 # ==========================================================================
406 406
407 407 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None, translate_tag=None):
408 408 """
409 409 Returns instance of `BaseCommit` class. If `commit_id` and `commit_idx`
410 410 are both None, most recent commit is returned.
411 411
412 412 :param pre_load: Optional. List of commit attributes to load.
413 413
414 414 :raises ``EmptyRepositoryError``: if there are no commits
415 415 """
416 416 raise NotImplementedError
417 417
418 418 def __iter__(self):
419 419 for commit_id in self.commit_ids:
420 420 yield self.get_commit(commit_id=commit_id)
421 421
422 422 def get_commits(
423 423 self, start_id=None, end_id=None, start_date=None, end_date=None,
424 424 branch_name=None, show_hidden=False, pre_load=None, translate_tags=None):
425 425 """
426 426 Returns iterator of `BaseCommit` objects from start to end
427 427 not inclusive. This should behave just like a list, ie. end is not
428 428 inclusive.
429 429
430 430 :param start_id: None or str, must be a valid commit id
431 431 :param end_id: None or str, must be a valid commit id
432 432 :param start_date:
433 433 :param end_date:
434 434 :param branch_name:
435 435 :param show_hidden:
436 436 :param pre_load:
437 437 :param translate_tags:
438 438 """
439 439 raise NotImplementedError
440 440
441 441 def __getitem__(self, key):
442 442 """
443 443 Allows index based access to the commit objects of this repository.
444 444 """
445 445 pre_load = ["author", "branch", "date", "message", "parents"]
446 446 if isinstance(key, slice):
447 447 return self._get_range(key, pre_load)
448 448 return self.get_commit(commit_idx=key, pre_load=pre_load)
449 449
450 450 def _get_range(self, slice_obj, pre_load):
451 451 for commit_id in self.commit_ids.__getitem__(slice_obj):
452 452 yield self.get_commit(commit_id=commit_id, pre_load=pre_load)
453 453
454 454 def count(self):
455 455 return len(self.commit_ids)
456 456
457 457 def tag(self, name, user, commit_id=None, message=None, date=None, **opts):
458 458 """
459 459 Creates and returns a tag for the given ``commit_id``.
460 460
461 461 :param name: name for new tag
462 462 :param user: full username, i.e.: "Joe Doe <joe.doe@example.com>"
463 463 :param commit_id: commit id for which new tag would be created
464 464 :param message: message of the tag's commit
465 465 :param date: date of tag's commit
466 466
467 467 :raises TagAlreadyExistError: if tag with same name already exists
468 468 """
469 469 raise NotImplementedError
470 470
471 471 def remove_tag(self, name, user, message=None, date=None):
472 472 """
473 473 Removes tag with the given ``name``.
474 474
475 475 :param name: name of the tag to be removed
476 476 :param user: full username, i.e.: "Joe Doe <joe.doe@example.com>"
477 477 :param message: message of the tag's removal commit
478 478 :param date: date of tag's removal commit
479 479
480 480 :raises TagDoesNotExistError: if tag with given name does not exists
481 481 """
482 482 raise NotImplementedError
483 483
484 484 def get_diff(
485 485 self, commit1, commit2, path=None, ignore_whitespace=False,
486 486 context=3, path1=None):
487 487 """
488 488 Returns (git like) *diff*, as plain text. Shows changes introduced by
489 489 `commit2` since `commit1`.
490 490
491 491 :param commit1: Entry point from which diff is shown. Can be
492 492 ``self.EMPTY_COMMIT`` - in this case, patch showing all
493 493 the changes since empty state of the repository until `commit2`
494 494 :param commit2: Until which commit changes should be shown.
495 495 :param path: Can be set to a path of a file to create a diff of that
496 496 file. If `path1` is also set, this value is only associated to
497 497 `commit2`.
498 498 :param ignore_whitespace: If set to ``True``, would not show whitespace
499 499 changes. Defaults to ``False``.
500 500 :param context: How many lines before/after changed lines should be
501 501 shown. Defaults to ``3``.
502 502 :param path1: Can be set to a path to associate with `commit1`. This
503 503 parameter works only for backends which support diff generation for
504 504 different paths. Other backends will raise a `ValueError` if `path1`
505 505 is set and has a different value than `path`.
506 506 :param file_path: filter this diff by given path pattern
507 507 """
508 508 raise NotImplementedError
509 509
510 510 def strip(self, commit_id, branch=None):
511 511 """
512 512 Strip given commit_id from the repository
513 513 """
514 514 raise NotImplementedError
515 515
516 516 def get_common_ancestor(self, commit_id1, commit_id2, repo2):
517 517 """
518 518 Return a latest common ancestor commit if one exists for this repo
519 519 `commit_id1` vs `commit_id2` from `repo2`.
520 520
521 521 :param commit_id1: Commit it from this repository to use as a
522 522 target for the comparison.
523 523 :param commit_id2: Source commit id to use for comparison.
524 524 :param repo2: Source repository to use for comparison.
525 525 """
526 526 raise NotImplementedError
527 527
528 528 def compare(self, commit_id1, commit_id2, repo2, merge, pre_load=None):
529 529 """
530 530 Compare this repository's revision `commit_id1` with `commit_id2`.
531 531
532 532 Returns a tuple(commits, ancestor) that would be merged from
533 533 `commit_id2`. Doing a normal compare (``merge=False``), ``None``
534 534 will be returned as ancestor.
535 535
536 536 :param commit_id1: Commit it from this repository to use as a
537 537 target for the comparison.
538 538 :param commit_id2: Source commit id to use for comparison.
539 539 :param repo2: Source repository to use for comparison.
540 540 :param merge: If set to ``True`` will do a merge compare which also
541 541 returns the common ancestor.
542 542 :param pre_load: Optional. List of commit attributes to load.
543 543 """
544 544 raise NotImplementedError
545 545
546 546 def merge(self, repo_id, workspace_id, target_ref, source_repo, source_ref,
547 547 user_name='', user_email='', message='', dry_run=False,
548 548 use_rebase=False, close_branch=False):
549 549 """
550 550 Merge the revisions specified in `source_ref` from `source_repo`
551 551 onto the `target_ref` of this repository.
552 552
553 553 `source_ref` and `target_ref` are named tupls with the following
554 554 fields `type`, `name` and `commit_id`.
555 555
556 556 Returns a MergeResponse named tuple with the following fields
557 557 'possible', 'executed', 'source_commit', 'target_commit',
558 558 'merge_commit'.
559 559
560 560 :param repo_id: `repo_id` target repo id.
561 561 :param workspace_id: `workspace_id` unique identifier.
562 562 :param target_ref: `target_ref` points to the commit on top of which
563 563 the `source_ref` should be merged.
564 564 :param source_repo: The repository that contains the commits to be
565 565 merged.
566 566 :param source_ref: `source_ref` points to the topmost commit from
567 567 the `source_repo` which should be merged.
568 568 :param user_name: Merge commit `user_name`.
569 569 :param user_email: Merge commit `user_email`.
570 570 :param message: Merge commit `message`.
571 571 :param dry_run: If `True` the merge will not take place.
572 572 :param use_rebase: If `True` commits from the source will be rebased
573 573 on top of the target instead of being merged.
574 574 :param close_branch: If `True` branch will be close before merging it
575 575 """
576 576 if dry_run:
577 577 message = message or settings.MERGE_DRY_RUN_MESSAGE
578 578 user_email = user_email or settings.MERGE_DRY_RUN_EMAIL
579 579 user_name = user_name or settings.MERGE_DRY_RUN_USER
580 580 else:
581 581 if not user_name:
582 582 raise ValueError('user_name cannot be empty')
583 583 if not user_email:
584 584 raise ValueError('user_email cannot be empty')
585 585 if not message:
586 586 raise ValueError('message cannot be empty')
587 587
588 588 try:
589 589 return self._merge_repo(
590 590 repo_id, workspace_id, target_ref, source_repo,
591 591 source_ref, message, user_name, user_email, dry_run=dry_run,
592 592 use_rebase=use_rebase, close_branch=close_branch)
593 593 except RepositoryError as exc:
594 594 log.exception('Unexpected failure when running merge, dry-run=%s', dry_run)
595 595 return MergeResponse(
596 596 False, False, None, MergeFailureReason.UNKNOWN,
597 597 metadata={'exception': str(exc)})
598 598
599 599 def _merge_repo(self, repo_id, workspace_id, target_ref,
600 600 source_repo, source_ref, merge_message,
601 601 merger_name, merger_email, dry_run=False,
602 602 use_rebase=False, close_branch=False):
603 603 """Internal implementation of merge."""
604 604 raise NotImplementedError
605 605
606 606 def _maybe_prepare_merge_workspace(
607 607 self, repo_id, workspace_id, target_ref, source_ref):
608 608 """
609 609 Create the merge workspace.
610 610
611 611 :param workspace_id: `workspace_id` unique identifier.
612 612 """
613 613 raise NotImplementedError
614 614
615 615 def _get_legacy_shadow_repository_path(self, workspace_id):
616 616 """
617 617 Legacy version that was used before. We still need it for
618 618 backward compat
619 619 """
620 620 return os.path.join(
621 621 os.path.dirname(self.path),
622 622 '.__shadow_%s_%s' % (os.path.basename(self.path), workspace_id))
623 623
624 624 def _get_shadow_repository_path(self, repo_id, workspace_id):
625 625 # The name of the shadow repository must start with '.', so it is
626 626 # skipped by 'rhodecode.lib.utils.get_filesystem_repos'.
627 627 legacy_repository_path = self._get_legacy_shadow_repository_path(workspace_id)
628 628 if os.path.exists(legacy_repository_path):
629 629 return legacy_repository_path
630 630 else:
631 631 return os.path.join(
632 632 os.path.dirname(self.path),
633 633 '.__shadow_repo_%s_%s' % (repo_id, workspace_id))
634 634
635 635 def cleanup_merge_workspace(self, repo_id, workspace_id):
636 636 """
637 637 Remove merge workspace.
638 638
639 639 This function MUST not fail in case there is no workspace associated to
640 640 the given `workspace_id`.
641 641
642 642 :param workspace_id: `workspace_id` unique identifier.
643 643 """
644 644 shadow_repository_path = self._get_shadow_repository_path(repo_id, workspace_id)
645 645 shadow_repository_path_del = '{}.{}.delete'.format(
646 646 shadow_repository_path, time.time())
647 647
648 648 # move the shadow repo, so it never conflicts with the one used.
649 649 # we use this method because shutil.rmtree had some edge case problems
650 650 # removing symlinked repositories
651 651 if not os.path.isdir(shadow_repository_path):
652 652 return
653 653
654 654 shutil.move(shadow_repository_path, shadow_repository_path_del)
655 655 try:
656 656 shutil.rmtree(shadow_repository_path_del, ignore_errors=False)
657 657 except Exception:
658 658 log.exception('Failed to gracefully remove shadow repo under %s',
659 659 shadow_repository_path_del)
660 660 shutil.rmtree(shadow_repository_path_del, ignore_errors=True)
661 661
662 662 # ========== #
663 663 # COMMIT API #
664 664 # ========== #
665 665
666 666 @LazyProperty
667 667 def in_memory_commit(self):
668 668 """
669 669 Returns :class:`InMemoryCommit` object for this repository.
670 670 """
671 671 raise NotImplementedError
672 672
673 673 # ======================== #
674 674 # UTILITIES FOR SUBCLASSES #
675 675 # ======================== #
676 676
677 677 def _validate_diff_commits(self, commit1, commit2):
678 678 """
679 679 Validates that the given commits are related to this repository.
680 680
681 681 Intended as a utility for sub classes to have a consistent validation
682 682 of input parameters in methods like :meth:`get_diff`.
683 683 """
684 684 self._validate_commit(commit1)
685 685 self._validate_commit(commit2)
686 686 if (isinstance(commit1, EmptyCommit) and
687 687 isinstance(commit2, EmptyCommit)):
688 688 raise ValueError("Cannot compare two empty commits")
689 689
690 690 def _validate_commit(self, commit):
691 691 if not isinstance(commit, BaseCommit):
692 692 raise TypeError(
693 693 "%s is not of type BaseCommit" % repr(commit))
694 694 if commit.repository != self and not isinstance(commit, EmptyCommit):
695 695 raise ValueError(
696 696 "Commit %s must be a valid commit from this repository %s, "
697 697 "related to this repository instead %s." %
698 698 (commit, self, commit.repository))
699 699
700 700 def _validate_commit_id(self, commit_id):
701 701 if not isinstance(commit_id, compat.string_types):
702 702 raise TypeError("commit_id must be a string value")
703 703
704 704 def _validate_commit_idx(self, commit_idx):
705 705 if not isinstance(commit_idx, (int, long)):
706 706 raise TypeError("commit_idx must be a numeric value")
707 707
708 708 def _validate_branch_name(self, branch_name):
709 709 if branch_name and branch_name not in self.branches_all:
710 710 msg = ("Branch %s not found in %s" % (branch_name, self))
711 711 raise BranchDoesNotExistError(msg)
712 712
713 713 #
714 714 # Supporting deprecated API parts
715 715 # TODO: johbo: consider to move this into a mixin
716 716 #
717 717
718 718 @property
719 719 def EMPTY_CHANGESET(self):
720 720 warnings.warn(
721 721 "Use EMPTY_COMMIT or EMPTY_COMMIT_ID instead", DeprecationWarning)
722 722 return self.EMPTY_COMMIT_ID
723 723
724 724 @property
725 725 def revisions(self):
726 726 warnings.warn("Use commits attribute instead", DeprecationWarning)
727 727 return self.commit_ids
728 728
729 729 @revisions.setter
730 730 def revisions(self, value):
731 731 warnings.warn("Use commits attribute instead", DeprecationWarning)
732 732 self.commit_ids = value
733 733
734 734 def get_changeset(self, revision=None, pre_load=None):
735 735 warnings.warn("Use get_commit instead", DeprecationWarning)
736 736 commit_id = None
737 737 commit_idx = None
738 738 if isinstance(revision, compat.string_types):
739 739 commit_id = revision
740 740 else:
741 741 commit_idx = revision
742 742 return self.get_commit(
743 743 commit_id=commit_id, commit_idx=commit_idx, pre_load=pre_load)
744 744
745 745 def get_changesets(
746 746 self, start=None, end=None, start_date=None, end_date=None,
747 747 branch_name=None, pre_load=None):
748 748 warnings.warn("Use get_commits instead", DeprecationWarning)
749 749 start_id = self._revision_to_commit(start)
750 750 end_id = self._revision_to_commit(end)
751 751 return self.get_commits(
752 752 start_id=start_id, end_id=end_id, start_date=start_date,
753 753 end_date=end_date, branch_name=branch_name, pre_load=pre_load)
754 754
755 755 def _revision_to_commit(self, revision):
756 756 """
757 757 Translates a revision to a commit_id
758 758
759 759 Helps to support the old changeset based API which allows to use
760 760 commit ids and commit indices interchangeable.
761 761 """
762 762 if revision is None:
763 763 return revision
764 764
765 765 if isinstance(revision, compat.string_types):
766 766 commit_id = revision
767 767 else:
768 768 commit_id = self.commit_ids[revision]
769 769 return commit_id
770 770
771 771 @property
772 772 def in_memory_changeset(self):
773 773 warnings.warn("Use in_memory_commit instead", DeprecationWarning)
774 774 return self.in_memory_commit
775 775
776 776 def get_path_permissions(self, username):
777 777 """
778 778 Returns a path permission checker or None if not supported
779 779
780 780 :param username: session user name
781 781 :return: an instance of BasePathPermissionChecker or None
782 782 """
783 783 return None
784 784
785 785 def install_hooks(self, force=False):
786 786 return self._remote.install_hooks(force)
787 787
788 788 def get_hooks_info(self):
789 789 return self._remote.get_hooks_info()
790 790
791 791
792 792 class BaseCommit(object):
793 793 """
794 794 Each backend should implement it's commit representation.
795 795
796 796 **Attributes**
797 797
798 798 ``repository``
799 799 repository object within which commit exists
800 800
801 801 ``id``
802 802 The commit id, may be ``raw_id`` or i.e. for mercurial's tip
803 803 just ``tip``.
804 804
805 805 ``raw_id``
806 806 raw commit representation (i.e. full 40 length sha for git
807 807 backend)
808 808
809 809 ``short_id``
810 810 shortened (if apply) version of ``raw_id``; it would be simple
811 811 shortcut for ``raw_id[:12]`` for git/mercurial backends or same
812 812 as ``raw_id`` for subversion
813 813
814 814 ``idx``
815 815 commit index
816 816
817 817 ``files``
818 818 list of ``FileNode`` (``Node`` with NodeKind.FILE) objects
819 819
820 820 ``dirs``
821 821 list of ``DirNode`` (``Node`` with NodeKind.DIR) objects
822 822
823 823 ``nodes``
824 824 combined list of ``Node`` objects
825 825
826 826 ``author``
827 827 author of the commit, as unicode
828 828
829 829 ``message``
830 830 message of the commit, as unicode
831 831
832 832 ``parents``
833 833 list of parent commits
834 834
835 835 """
836 836
837 837 branch = None
838 838 """
839 839 Depending on the backend this should be set to the branch name of the
840 840 commit. Backends not supporting branches on commits should leave this
841 841 value as ``None``.
842 842 """
843 843
844 844 _ARCHIVE_PREFIX_TEMPLATE = b'{repo_name}-{short_id}'
845 845 """
846 846 This template is used to generate a default prefix for repository archives
847 847 if no prefix has been specified.
848 848 """
849 849
850 850 def __str__(self):
851 851 return '<%s at %s:%s>' % (
852 852 self.__class__.__name__, self.idx, self.short_id)
853 853
854 854 def __repr__(self):
855 855 return self.__str__()
856 856
857 857 def __unicode__(self):
858 858 return u'%s:%s' % (self.idx, self.short_id)
859 859
860 860 def __eq__(self, other):
861 861 same_instance = isinstance(other, self.__class__)
862 862 return same_instance and self.raw_id == other.raw_id
863 863
864 864 def __json__(self):
865 865 parents = []
866 866 try:
867 867 for parent in self.parents:
868 868 parents.append({'raw_id': parent.raw_id})
869 869 except NotImplementedError:
870 870 # empty commit doesn't have parents implemented
871 871 pass
872 872
873 873 return {
874 874 'short_id': self.short_id,
875 875 'raw_id': self.raw_id,
876 876 'revision': self.idx,
877 877 'message': self.message,
878 878 'date': self.date,
879 879 'author': self.author,
880 880 'parents': parents,
881 881 'branch': self.branch
882 882 }
883 883
884 884 def __getstate__(self):
885 885 d = self.__dict__.copy()
886 886 d.pop('_remote', None)
887 887 d.pop('repository', None)
888 888 return d
889 889
890 890 def _get_refs(self):
891 891 return {
892 892 'branches': [self.branch] if self.branch else [],
893 893 'bookmarks': getattr(self, 'bookmarks', []),
894 894 'tags': self.tags
895 895 }
896 896
897 897 @LazyProperty
898 898 def last(self):
899 899 """
900 900 ``True`` if this is last commit in repository, ``False``
901 901 otherwise; trying to access this attribute while there is no
902 902 commits would raise `EmptyRepositoryError`
903 903 """
904 904 if self.repository is None:
905 905 raise CommitError("Cannot check if it's most recent commit")
906 906 return self.raw_id == self.repository.commit_ids[-1]
907 907
908 908 @LazyProperty
909 909 def parents(self):
910 910 """
911 911 Returns list of parent commits.
912 912 """
913 913 raise NotImplementedError
914 914
915 915 @LazyProperty
916 916 def first_parent(self):
917 917 """
918 918 Returns list of parent commits.
919 919 """
920 920 return self.parents[0] if self.parents else EmptyCommit()
921 921
922 922 @property
923 923 def merge(self):
924 924 """
925 925 Returns boolean if commit is a merge.
926 926 """
927 927 return len(self.parents) > 1
928 928
929 929 @LazyProperty
930 930 def children(self):
931 931 """
932 932 Returns list of child commits.
933 933 """
934 934 raise NotImplementedError
935 935
936 936 @LazyProperty
937 937 def id(self):
938 938 """
939 939 Returns string identifying this commit.
940 940 """
941 941 raise NotImplementedError
942 942
943 943 @LazyProperty
944 944 def raw_id(self):
945 945 """
946 946 Returns raw string identifying this commit.
947 947 """
948 948 raise NotImplementedError
949 949
950 950 @LazyProperty
951 951 def short_id(self):
952 952 """
953 953 Returns shortened version of ``raw_id`` attribute, as string,
954 954 identifying this commit, useful for presentation to users.
955 955 """
956 956 raise NotImplementedError
957 957
958 958 @LazyProperty
959 959 def idx(self):
960 960 """
961 961 Returns integer identifying this commit.
962 962 """
963 963 raise NotImplementedError
964 964
965 965 @LazyProperty
966 966 def committer(self):
967 967 """
968 968 Returns committer for this commit
969 969 """
970 970 raise NotImplementedError
971 971
972 972 @LazyProperty
973 973 def committer_name(self):
974 974 """
975 975 Returns committer name for this commit
976 976 """
977 977
978 978 return author_name(self.committer)
979 979
980 980 @LazyProperty
981 981 def committer_email(self):
982 982 """
983 983 Returns committer email address for this commit
984 984 """
985 985
986 986 return author_email(self.committer)
987 987
988 988 @LazyProperty
989 989 def author(self):
990 990 """
991 991 Returns author for this commit
992 992 """
993 993
994 994 raise NotImplementedError
995 995
996 996 @LazyProperty
997 997 def author_name(self):
998 998 """
999 999 Returns author name for this commit
1000 1000 """
1001 1001
1002 1002 return author_name(self.author)
1003 1003
1004 1004 @LazyProperty
1005 1005 def author_email(self):
1006 1006 """
1007 1007 Returns author email address for this commit
1008 1008 """
1009 1009
1010 1010 return author_email(self.author)
1011 1011
1012 1012 def get_file_mode(self, path):
1013 1013 """
1014 1014 Returns stat mode of the file at `path`.
1015 1015 """
1016 1016 raise NotImplementedError
1017 1017
1018 1018 def is_link(self, path):
1019 1019 """
1020 1020 Returns ``True`` if given `path` is a symlink
1021 1021 """
1022 1022 raise NotImplementedError
1023 1023
1024 1024 def get_file_content(self, path):
1025 1025 """
1026 1026 Returns content of the file at the given `path`.
1027 1027 """
1028 1028 raise NotImplementedError
1029 1029
1030 1030 def get_file_size(self, path):
1031 1031 """
1032 1032 Returns size of the file at the given `path`.
1033 1033 """
1034 1034 raise NotImplementedError
1035 1035
1036 1036 def get_path_commit(self, path, pre_load=None):
1037 1037 """
1038 1038 Returns last commit of the file at the given `path`.
1039 1039
1040 1040 :param pre_load: Optional. List of commit attributes to load.
1041 1041 """
1042 1042 commits = self.get_path_history(path, limit=1, pre_load=pre_load)
1043 1043 if not commits:
1044 1044 raise RepositoryError(
1045 1045 'Failed to fetch history for path {}. '
1046 1046 'Please check if such path exists in your repository'.format(
1047 1047 path))
1048 1048 return commits[0]
1049 1049
1050 1050 def get_path_history(self, path, limit=None, pre_load=None):
1051 1051 """
1052 1052 Returns history of file as reversed list of :class:`BaseCommit`
1053 1053 objects for which file at given `path` has been modified.
1054 1054
1055 1055 :param limit: Optional. Allows to limit the size of the returned
1056 1056 history. This is intended as a hint to the underlying backend, so
1057 1057 that it can apply optimizations depending on the limit.
1058 1058 :param pre_load: Optional. List of commit attributes to load.
1059 1059 """
1060 1060 raise NotImplementedError
1061 1061
1062 1062 def get_file_annotate(self, path, pre_load=None):
1063 1063 """
1064 1064 Returns a generator of four element tuples with
1065 1065 lineno, sha, commit lazy loader and line
1066 1066
1067 1067 :param pre_load: Optional. List of commit attributes to load.
1068 1068 """
1069 1069 raise NotImplementedError
1070 1070
1071 1071 def get_nodes(self, path):
1072 1072 """
1073 1073 Returns combined ``DirNode`` and ``FileNode`` objects list representing
1074 1074 state of commit at the given ``path``.
1075 1075
1076 1076 :raises ``CommitError``: if node at the given ``path`` is not
1077 1077 instance of ``DirNode``
1078 1078 """
1079 1079 raise NotImplementedError
1080 1080
1081 1081 def get_node(self, path):
1082 1082 """
1083 1083 Returns ``Node`` object from the given ``path``.
1084 1084
1085 1085 :raises ``NodeDoesNotExistError``: if there is no node at the given
1086 1086 ``path``
1087 1087 """
1088 1088 raise NotImplementedError
1089 1089
1090 1090 def get_largefile_node(self, path):
1091 1091 """
1092 1092 Returns the path to largefile from Mercurial/Git-lfs storage.
1093 1093 or None if it's not a largefile node
1094 1094 """
1095 1095 return None
1096 1096
1097 1097 def archive_repo(self, archive_dest_path, kind='tgz', subrepos=None,
1098 1098 prefix=None, write_metadata=False, mtime=None, archive_at_path='/'):
1099 1099 """
1100 1100 Creates an archive containing the contents of the repository.
1101 1101
1102 1102 :param archive_dest_path: path to the file which to create the archive.
1103 1103 :param kind: one of following: ``"tbz2"``, ``"tgz"``, ``"zip"``.
1104 1104 :param prefix: name of root directory in archive.
1105 1105 Default is repository name and commit's short_id joined with dash:
1106 1106 ``"{repo_name}-{short_id}"``.
1107 1107 :param write_metadata: write a metadata file into archive.
1108 1108 :param mtime: custom modification time for archive creation, defaults
1109 1109 to time.time() if not given.
1110 1110 :param archive_at_path: pack files at this path (default '/')
1111 1111
1112 1112 :raise VCSError: If prefix has a problem.
1113 1113 """
1114 1114 allowed_kinds = settings.ARCHIVE_SPECS.keys()
1115 1115 if kind not in allowed_kinds:
1116 1116 raise ImproperArchiveTypeError(
1117 1117 'Archive kind (%s) not supported use one of %s' %
1118 1118 (kind, allowed_kinds))
1119 1119
1120 1120 prefix = self._validate_archive_prefix(prefix)
1121 1121
1122 1122 mtime = mtime or time.mktime(self.date.timetuple())
1123 1123
1124 1124 file_info = []
1125 1125 cur_rev = self.repository.get_commit(commit_id=self.raw_id)
1126 1126 for _r, _d, files in cur_rev.walk(archive_at_path):
1127 1127 for f in files:
1128 1128 f_path = os.path.join(prefix, f.path)
1129 1129 file_info.append(
1130 1130 (f_path, f.mode, f.is_link(), f.raw_bytes))
1131 1131
1132 1132 if write_metadata:
1133 1133 metadata = [
1134 1134 ('repo_name', self.repository.name),
1135 1135 ('commit_id', self.raw_id),
1136 1136 ('rev', self.raw_id),
1137 1137 ('create_time', mtime),
1138 1138 ('branch', self.branch),
1139 1139 ('tags', ','.join(self.tags)),
1140 1140 ]
1141 1141 meta = ["%s:%s" % (f_name, value) for f_name, value in metadata]
1142 1142 file_info.append(('.archival.txt', 0o644, False, '\n'.join(meta)))
1143 1143
1144 1144 connection.Hg.archive_repo(archive_dest_path, mtime, file_info, kind)
1145 1145
1146 1146 def _validate_archive_prefix(self, prefix):
1147 1147 if prefix is None:
1148 1148 prefix = self._ARCHIVE_PREFIX_TEMPLATE.format(
1149 1149 repo_name=safe_str(self.repository.name),
1150 1150 short_id=self.short_id)
1151 1151 elif not isinstance(prefix, str):
1152 1152 raise ValueError("prefix not a bytes object: %s" % repr(prefix))
1153 1153 elif prefix.startswith('/'):
1154 1154 raise VCSError("Prefix cannot start with leading slash")
1155 1155 elif prefix.strip() == '':
1156 1156 raise VCSError("Prefix cannot be empty")
1157 1157 return prefix
1158 1158
1159 1159 @LazyProperty
1160 1160 def root(self):
1161 1161 """
1162 1162 Returns ``RootNode`` object for this commit.
1163 1163 """
1164 1164 return self.get_node('')
1165 1165
1166 1166 def next(self, branch=None):
1167 1167 """
1168 1168 Returns next commit from current, if branch is gives it will return
1169 1169 next commit belonging to this branch
1170 1170
1171 1171 :param branch: show commits within the given named branch
1172 1172 """
1173 1173 indexes = xrange(self.idx + 1, self.repository.count())
1174 1174 return self._find_next(indexes, branch)
1175 1175
1176 1176 def prev(self, branch=None):
1177 1177 """
1178 1178 Returns previous commit from current, if branch is gives it will
1179 1179 return previous commit belonging to this branch
1180 1180
1181 1181 :param branch: show commit within the given named branch
1182 1182 """
1183 1183 indexes = xrange(self.idx - 1, -1, -1)
1184 1184 return self._find_next(indexes, branch)
1185 1185
1186 1186 def _find_next(self, indexes, branch=None):
1187 1187 if branch and self.branch != branch:
1188 1188 raise VCSError('Branch option used on commit not belonging '
1189 1189 'to that branch')
1190 1190
1191 1191 for next_idx in indexes:
1192 1192 commit = self.repository.get_commit(commit_idx=next_idx)
1193 1193 if branch and branch != commit.branch:
1194 1194 continue
1195 1195 return commit
1196 1196 raise CommitDoesNotExistError
1197 1197
1198 1198 def diff(self, ignore_whitespace=True, context=3):
1199 1199 """
1200 1200 Returns a `Diff` object representing the change made by this commit.
1201 1201 """
1202 1202 parent = self.first_parent
1203 1203 diff = self.repository.get_diff(
1204 1204 parent, self,
1205 1205 ignore_whitespace=ignore_whitespace,
1206 1206 context=context)
1207 1207 return diff
1208 1208
1209 1209 @LazyProperty
1210 1210 def added(self):
1211 1211 """
1212 1212 Returns list of added ``FileNode`` objects.
1213 1213 """
1214 1214 raise NotImplementedError
1215 1215
1216 1216 @LazyProperty
1217 1217 def changed(self):
1218 1218 """
1219 1219 Returns list of modified ``FileNode`` objects.
1220 1220 """
1221 1221 raise NotImplementedError
1222 1222
1223 1223 @LazyProperty
1224 1224 def removed(self):
1225 1225 """
1226 1226 Returns list of removed ``FileNode`` objects.
1227 1227 """
1228 1228 raise NotImplementedError
1229 1229
1230 1230 @LazyProperty
1231 1231 def size(self):
1232 1232 """
1233 1233 Returns total number of bytes from contents of all filenodes.
1234 1234 """
1235 1235 return sum((node.size for node in self.get_filenodes_generator()))
1236 1236
1237 1237 def walk(self, topurl=''):
1238 1238 """
1239 1239 Similar to os.walk method. Insted of filesystem it walks through
1240 1240 commit starting at given ``topurl``. Returns generator of tuples
1241 1241 (topnode, dirnodes, filenodes).
1242 1242 """
1243 1243 topnode = self.get_node(topurl)
1244 1244 if not topnode.is_dir():
1245 1245 return
1246 1246 yield (topnode, topnode.dirs, topnode.files)
1247 1247 for dirnode in topnode.dirs:
1248 1248 for tup in self.walk(dirnode.path):
1249 1249 yield tup
1250 1250
1251 1251 def get_filenodes_generator(self):
1252 1252 """
1253 1253 Returns generator that yields *all* file nodes.
1254 1254 """
1255 1255 for topnode, dirs, files in self.walk():
1256 1256 for node in files:
1257 1257 yield node
1258 1258
1259 1259 #
1260 1260 # Utilities for sub classes to support consistent behavior
1261 1261 #
1262 1262
1263 1263 def no_node_at_path(self, path):
1264 1264 return NodeDoesNotExistError(
1265 1265 u"There is no file nor directory at the given path: "
1266 1266 u"`%s` at commit %s" % (safe_unicode(path), self.short_id))
1267 1267
1268 1268 def _fix_path(self, path):
1269 1269 """
1270 1270 Paths are stored without trailing slash so we need to get rid off it if
1271 1271 needed.
1272 1272 """
1273 1273 return path.rstrip('/')
1274 1274
1275 1275 #
1276 1276 # Deprecated API based on changesets
1277 1277 #
1278 1278
1279 1279 @property
1280 1280 def revision(self):
1281 1281 warnings.warn("Use idx instead", DeprecationWarning)
1282 1282 return self.idx
1283 1283
1284 1284 @revision.setter
1285 1285 def revision(self, value):
1286 1286 warnings.warn("Use idx instead", DeprecationWarning)
1287 1287 self.idx = value
1288 1288
1289 1289 def get_file_changeset(self, path):
1290 1290 warnings.warn("Use get_path_commit instead", DeprecationWarning)
1291 1291 return self.get_path_commit(path)
1292 1292
1293 1293
1294 1294 class BaseChangesetClass(type):
1295 1295
1296 1296 def __instancecheck__(self, instance):
1297 1297 return isinstance(instance, BaseCommit)
1298 1298
1299 1299
1300 1300 class BaseChangeset(BaseCommit):
1301 1301
1302 1302 __metaclass__ = BaseChangesetClass
1303 1303
1304 1304 def __new__(cls, *args, **kwargs):
1305 1305 warnings.warn(
1306 1306 "Use BaseCommit instead of BaseChangeset", DeprecationWarning)
1307 1307 return super(BaseChangeset, cls).__new__(cls, *args, **kwargs)
1308 1308
1309 1309
1310 1310 class BaseInMemoryCommit(object):
1311 1311 """
1312 1312 Represents differences between repository's state (most recent head) and
1313 1313 changes made *in place*.
1314 1314
1315 1315 **Attributes**
1316 1316
1317 1317 ``repository``
1318 1318 repository object for this in-memory-commit
1319 1319
1320 1320 ``added``
1321 1321 list of ``FileNode`` objects marked as *added*
1322 1322
1323 1323 ``changed``
1324 1324 list of ``FileNode`` objects marked as *changed*
1325 1325
1326 1326 ``removed``
1327 1327 list of ``FileNode`` or ``RemovedFileNode`` objects marked to be
1328 1328 *removed*
1329 1329
1330 1330 ``parents``
1331 1331 list of :class:`BaseCommit` instances representing parents of
1332 1332 in-memory commit. Should always be 2-element sequence.
1333 1333
1334 1334 """
1335 1335
1336 1336 def __init__(self, repository):
1337 1337 self.repository = repository
1338 1338 self.added = []
1339 1339 self.changed = []
1340 1340 self.removed = []
1341 1341 self.parents = []
1342 1342
1343 1343 def add(self, *filenodes):
1344 1344 """
1345 1345 Marks given ``FileNode`` objects as *to be committed*.
1346 1346
1347 1347 :raises ``NodeAlreadyExistsError``: if node with same path exists at
1348 1348 latest commit
1349 1349 :raises ``NodeAlreadyAddedError``: if node with same path is already
1350 1350 marked as *added*
1351 1351 """
1352 1352 # Check if not already marked as *added* first
1353 1353 for node in filenodes:
1354 1354 if node.path in (n.path for n in self.added):
1355 1355 raise NodeAlreadyAddedError(
1356 1356 "Such FileNode %s is already marked for addition"
1357 1357 % node.path)
1358 1358 for node in filenodes:
1359 1359 self.added.append(node)
1360 1360
1361 1361 def change(self, *filenodes):
1362 1362 """
1363 1363 Marks given ``FileNode`` objects to be *changed* in next commit.
1364 1364
1365 1365 :raises ``EmptyRepositoryError``: if there are no commits yet
1366 1366 :raises ``NodeAlreadyExistsError``: if node with same path is already
1367 1367 marked to be *changed*
1368 1368 :raises ``NodeAlreadyRemovedError``: if node with same path is already
1369 1369 marked to be *removed*
1370 1370 :raises ``NodeDoesNotExistError``: if node doesn't exist in latest
1371 1371 commit
1372 1372 :raises ``NodeNotChangedError``: if node hasn't really be changed
1373 1373 """
1374 1374 for node in filenodes:
1375 1375 if node.path in (n.path for n in self.removed):
1376 1376 raise NodeAlreadyRemovedError(
1377 1377 "Node at %s is already marked as removed" % node.path)
1378 1378 try:
1379 1379 self.repository.get_commit()
1380 1380 except EmptyRepositoryError:
1381 1381 raise EmptyRepositoryError(
1382 1382 "Nothing to change - try to *add* new nodes rather than "
1383 1383 "changing them")
1384 1384 for node in filenodes:
1385 1385 if node.path in (n.path for n in self.changed):
1386 1386 raise NodeAlreadyChangedError(
1387 1387 "Node at '%s' is already marked as changed" % node.path)
1388 1388 self.changed.append(node)
1389 1389
1390 1390 def remove(self, *filenodes):
1391 1391 """
1392 1392 Marks given ``FileNode`` (or ``RemovedFileNode``) objects to be
1393 1393 *removed* in next commit.
1394 1394
1395 1395 :raises ``NodeAlreadyRemovedError``: if node has been already marked to
1396 1396 be *removed*
1397 1397 :raises ``NodeAlreadyChangedError``: if node has been already marked to
1398 1398 be *changed*
1399 1399 """
1400 1400 for node in filenodes:
1401 1401 if node.path in (n.path for n in self.removed):
1402 1402 raise NodeAlreadyRemovedError(
1403 1403 "Node is already marked to for removal at %s" % node.path)
1404 1404 if node.path in (n.path for n in self.changed):
1405 1405 raise NodeAlreadyChangedError(
1406 1406 "Node is already marked to be changed at %s" % node.path)
1407 1407 # We only mark node as *removed* - real removal is done by
1408 1408 # commit method
1409 1409 self.removed.append(node)
1410 1410
1411 1411 def reset(self):
1412 1412 """
1413 1413 Resets this instance to initial state (cleans ``added``, ``changed``
1414 1414 and ``removed`` lists).
1415 1415 """
1416 1416 self.added = []
1417 1417 self.changed = []
1418 1418 self.removed = []
1419 1419 self.parents = []
1420 1420
1421 1421 def get_ipaths(self):
1422 1422 """
1423 1423 Returns generator of paths from nodes marked as added, changed or
1424 1424 removed.
1425 1425 """
1426 1426 for node in itertools.chain(self.added, self.changed, self.removed):
1427 1427 yield node.path
1428 1428
1429 1429 def get_paths(self):
1430 1430 """
1431 1431 Returns list of paths from nodes marked as added, changed or removed.
1432 1432 """
1433 1433 return list(self.get_ipaths())
1434 1434
1435 1435 def check_integrity(self, parents=None):
1436 1436 """
1437 1437 Checks in-memory commit's integrity. Also, sets parents if not
1438 1438 already set.
1439 1439
1440 1440 :raises CommitError: if any error occurs (i.e.
1441 1441 ``NodeDoesNotExistError``).
1442 1442 """
1443 1443 if not self.parents:
1444 1444 parents = parents or []
1445 1445 if len(parents) == 0:
1446 1446 try:
1447 1447 parents = [self.repository.get_commit(), None]
1448 1448 except EmptyRepositoryError:
1449 1449 parents = [None, None]
1450 1450 elif len(parents) == 1:
1451 1451 parents += [None]
1452 1452 self.parents = parents
1453 1453
1454 1454 # Local parents, only if not None
1455 1455 parents = [p for p in self.parents if p]
1456 1456
1457 1457 # Check nodes marked as added
1458 1458 for p in parents:
1459 1459 for node in self.added:
1460 1460 try:
1461 1461 p.get_node(node.path)
1462 1462 except NodeDoesNotExistError:
1463 1463 pass
1464 1464 else:
1465 1465 raise NodeAlreadyExistsError(
1466 1466 "Node `%s` already exists at %s" % (node.path, p))
1467 1467
1468 1468 # Check nodes marked as changed
1469 1469 missing = set(self.changed)
1470 1470 not_changed = set(self.changed)
1471 1471 if self.changed and not parents:
1472 1472 raise NodeDoesNotExistError(str(self.changed[0].path))
1473 1473 for p in parents:
1474 1474 for node in self.changed:
1475 1475 try:
1476 1476 old = p.get_node(node.path)
1477 1477 missing.remove(node)
1478 1478 # if content actually changed, remove node from not_changed
1479 1479 if old.content != node.content:
1480 1480 not_changed.remove(node)
1481 1481 except NodeDoesNotExistError:
1482 1482 pass
1483 1483 if self.changed and missing:
1484 1484 raise NodeDoesNotExistError(
1485 1485 "Node `%s` marked as modified but missing in parents: %s"
1486 1486 % (node.path, parents))
1487 1487
1488 1488 if self.changed and not_changed:
1489 1489 raise NodeNotChangedError(
1490 1490 "Node `%s` wasn't actually changed (parents: %s)"
1491 1491 % (not_changed.pop().path, parents))
1492 1492
1493 1493 # Check nodes marked as removed
1494 1494 if self.removed and not parents:
1495 1495 raise NodeDoesNotExistError(
1496 1496 "Cannot remove node at %s as there "
1497 1497 "were no parents specified" % self.removed[0].path)
1498 1498 really_removed = set()
1499 1499 for p in parents:
1500 1500 for node in self.removed:
1501 1501 try:
1502 1502 p.get_node(node.path)
1503 1503 really_removed.add(node)
1504 1504 except CommitError:
1505 1505 pass
1506 1506 not_removed = set(self.removed) - really_removed
1507 1507 if not_removed:
1508 1508 # TODO: johbo: This code branch does not seem to be covered
1509 1509 raise NodeDoesNotExistError(
1510 1510 "Cannot remove node at %s from "
1511 1511 "following parents: %s" % (not_removed, parents))
1512 1512
1513 1513 def commit(
1514 1514 self, message, author, parents=None, branch=None, date=None,
1515 1515 **kwargs):
1516 1516 """
1517 1517 Performs in-memory commit (doesn't check workdir in any way) and
1518 1518 returns newly created :class:`BaseCommit`. Updates repository's
1519 1519 attribute `commits`.
1520 1520
1521 1521 .. note::
1522 1522
1523 1523 While overriding this method each backend's should call
1524 1524 ``self.check_integrity(parents)`` in the first place.
1525 1525
1526 1526 :param message: message of the commit
1527 1527 :param author: full username, i.e. "Joe Doe <joe.doe@example.com>"
1528 1528 :param parents: single parent or sequence of parents from which commit
1529 1529 would be derived
1530 1530 :param date: ``datetime.datetime`` instance. Defaults to
1531 1531 ``datetime.datetime.now()``.
1532 1532 :param branch: branch name, as string. If none given, default backend's
1533 1533 branch would be used.
1534 1534
1535 1535 :raises ``CommitError``: if any error occurs while committing
1536 1536 """
1537 1537 raise NotImplementedError
1538 1538
1539 1539
1540 1540 class BaseInMemoryChangesetClass(type):
1541 1541
1542 1542 def __instancecheck__(self, instance):
1543 1543 return isinstance(instance, BaseInMemoryCommit)
1544 1544
1545 1545
1546 1546 class BaseInMemoryChangeset(BaseInMemoryCommit):
1547 1547
1548 1548 __metaclass__ = BaseInMemoryChangesetClass
1549 1549
1550 1550 def __new__(cls, *args, **kwargs):
1551 1551 warnings.warn(
1552 1552 "Use BaseCommit instead of BaseInMemoryCommit", DeprecationWarning)
1553 1553 return super(BaseInMemoryChangeset, cls).__new__(cls, *args, **kwargs)
1554 1554
1555 1555
1556 1556 class EmptyCommit(BaseCommit):
1557 1557 """
1558 1558 An dummy empty commit. It's possible to pass hash when creating
1559 1559 an EmptyCommit
1560 1560 """
1561 1561
1562 1562 def __init__(
1563 1563 self, commit_id='0' * 40, repo=None, alias=None, idx=-1,
1564 1564 message='', author='', date=None):
1565 1565 self._empty_commit_id = commit_id
1566 1566 # TODO: johbo: Solve idx parameter, default value does not make
1567 1567 # too much sense
1568 1568 self.idx = idx
1569 1569 self.message = message
1570 1570 self.author = author
1571 1571 self.date = date or datetime.datetime.fromtimestamp(0)
1572 1572 self.repository = repo
1573 1573 self.alias = alias
1574 1574
1575 1575 @LazyProperty
1576 1576 def raw_id(self):
1577 1577 """
1578 1578 Returns raw string identifying this commit, useful for web
1579 1579 representation.
1580 1580 """
1581 1581
1582 1582 return self._empty_commit_id
1583 1583
1584 1584 @LazyProperty
1585 1585 def branch(self):
1586 1586 if self.alias:
1587 1587 from rhodecode.lib.vcs.backends import get_backend
1588 1588 return get_backend(self.alias).DEFAULT_BRANCH_NAME
1589 1589
1590 1590 @LazyProperty
1591 1591 def short_id(self):
1592 1592 return self.raw_id[:12]
1593 1593
1594 1594 @LazyProperty
1595 1595 def id(self):
1596 1596 return self.raw_id
1597 1597
1598 1598 def get_path_commit(self, path):
1599 1599 return self
1600 1600
1601 1601 def get_file_content(self, path):
1602 1602 return u''
1603 1603
1604 1604 def get_file_size(self, path):
1605 1605 return 0
1606 1606
1607 1607
1608 1608 class EmptyChangesetClass(type):
1609 1609
1610 1610 def __instancecheck__(self, instance):
1611 1611 return isinstance(instance, EmptyCommit)
1612 1612
1613 1613
1614 1614 class EmptyChangeset(EmptyCommit):
1615 1615
1616 1616 __metaclass__ = EmptyChangesetClass
1617 1617
1618 1618 def __new__(cls, *args, **kwargs):
1619 1619 warnings.warn(
1620 1620 "Use EmptyCommit instead of EmptyChangeset", DeprecationWarning)
1621 1621 return super(EmptyCommit, cls).__new__(cls, *args, **kwargs)
1622 1622
1623 1623 def __init__(self, cs='0' * 40, repo=None, requested_revision=None,
1624 1624 alias=None, revision=-1, message='', author='', date=None):
1625 1625 if requested_revision is not None:
1626 1626 warnings.warn(
1627 1627 "Parameter requested_revision not supported anymore",
1628 1628 DeprecationWarning)
1629 1629 super(EmptyChangeset, self).__init__(
1630 1630 commit_id=cs, repo=repo, alias=alias, idx=revision,
1631 1631 message=message, author=author, date=date)
1632 1632
1633 1633 @property
1634 1634 def revision(self):
1635 1635 warnings.warn("Use idx instead", DeprecationWarning)
1636 1636 return self.idx
1637 1637
1638 1638 @revision.setter
1639 1639 def revision(self, value):
1640 1640 warnings.warn("Use idx instead", DeprecationWarning)
1641 1641 self.idx = value
1642 1642
1643 1643
1644 1644 class EmptyRepository(BaseRepository):
1645 1645 def __init__(self, repo_path=None, config=None, create=False, **kwargs):
1646 1646 pass
1647 1647
1648 1648 def get_diff(self, *args, **kwargs):
1649 1649 from rhodecode.lib.vcs.backends.git.diff import GitDiff
1650 1650 return GitDiff('')
1651 1651
1652 1652
1653 1653 class CollectionGenerator(object):
1654 1654
1655 1655 def __init__(self, repo, commit_ids, collection_size=None, pre_load=None, translate_tag=None):
1656 1656 self.repo = repo
1657 1657 self.commit_ids = commit_ids
1658 1658 # TODO: (oliver) this isn't currently hooked up
1659 1659 self.collection_size = None
1660 1660 self.pre_load = pre_load
1661 1661 self.translate_tag = translate_tag
1662 1662
1663 1663 def __len__(self):
1664 1664 if self.collection_size is not None:
1665 1665 return self.collection_size
1666 1666 return self.commit_ids.__len__()
1667 1667
1668 1668 def __iter__(self):
1669 1669 for commit_id in self.commit_ids:
1670 1670 # TODO: johbo: Mercurial passes in commit indices or commit ids
1671 1671 yield self._commit_factory(commit_id)
1672 1672
1673 1673 def _commit_factory(self, commit_id):
1674 1674 """
1675 1675 Allows backends to override the way commits are generated.
1676 1676 """
1677 1677 return self.repo.get_commit(
1678 1678 commit_id=commit_id, pre_load=self.pre_load,
1679 1679 translate_tag=self.translate_tag)
1680 1680
1681 1681 def __getslice__(self, i, j):
1682 1682 """
1683 1683 Returns an iterator of sliced repository
1684 1684 """
1685 1685 commit_ids = self.commit_ids[i:j]
1686 1686 return self.__class__(
1687 1687 self.repo, commit_ids, pre_load=self.pre_load,
1688 1688 translate_tag=self.translate_tag)
1689 1689
1690 1690 def __repr__(self):
1691 1691 return '<CollectionGenerator[len:%s]>' % (self.__len__())
1692 1692
1693 1693
1694 1694 class Config(object):
1695 1695 """
1696 1696 Represents the configuration for a repository.
1697 1697
1698 1698 The API is inspired by :class:`ConfigParser.ConfigParser` from the
1699 1699 standard library. It implements only the needed subset.
1700 1700 """
1701 1701
1702 1702 def __init__(self):
1703 1703 self._values = {}
1704 1704
1705 1705 def copy(self):
1706 1706 clone = Config()
1707 1707 for section, values in self._values.items():
1708 1708 clone._values[section] = values.copy()
1709 1709 return clone
1710 1710
1711 1711 def __repr__(self):
1712 1712 return '<Config(%s sections) at %s>' % (
1713 1713 len(self._values), hex(id(self)))
1714 1714
1715 1715 def items(self, section):
1716 1716 return self._values.get(section, {}).iteritems()
1717 1717
1718 1718 def get(self, section, option):
1719 1719 return self._values.get(section, {}).get(option)
1720 1720
1721 1721 def set(self, section, option, value):
1722 1722 section_values = self._values.setdefault(section, {})
1723 1723 section_values[option] = value
1724 1724
1725 1725 def clear_section(self, section):
1726 1726 self._values[section] = {}
1727 1727
1728 1728 def serialize(self):
1729 1729 """
1730 1730 Creates a list of three tuples (section, key, value) representing
1731 1731 this config object.
1732 1732 """
1733 1733 items = []
1734 1734 for section in self._values:
1735 1735 for option, value in self._values[section].items():
1736 1736 items.append(
1737 1737 (safe_str(section), safe_str(option), safe_str(value)))
1738 1738 return items
1739 1739
1740 1740
1741 1741 class Diff(object):
1742 1742 """
1743 1743 Represents a diff result from a repository backend.
1744 1744
1745 1745 Subclasses have to provide a backend specific value for
1746 1746 :attr:`_header_re` and :attr:`_meta_re`.
1747 1747 """
1748 1748 _meta_re = None
1749 1749 _header_re = None
1750 1750
1751 1751 def __init__(self, raw_diff):
1752 1752 self.raw = raw_diff
1753 1753
1754 1754 def chunks(self):
1755 1755 """
1756 1756 split the diff in chunks of separate --git a/file b/file chunks
1757 1757 to make diffs consistent we must prepend with \n, and make sure
1758 1758 we can detect last chunk as this was also has special rule
1759 1759 """
1760 1760
1761 1761 diff_parts = ('\n' + self.raw).split('\ndiff --git')
1762 1762 header = diff_parts[0]
1763 1763
1764 1764 if self._meta_re:
1765 1765 match = self._meta_re.match(header)
1766 1766
1767 1767 chunks = diff_parts[1:]
1768 1768 total_chunks = len(chunks)
1769 1769
1770 1770 return (
1771 1771 DiffChunk(chunk, self, cur_chunk == total_chunks)
1772 1772 for cur_chunk, chunk in enumerate(chunks, start=1))
1773 1773
1774 1774
1775 1775 class DiffChunk(object):
1776 1776
1777 1777 def __init__(self, chunk, diff, last_chunk):
1778 1778 self._diff = diff
1779 1779
1780 1780 # since we split by \ndiff --git that part is lost from original diff
1781 1781 # we need to re-apply it at the end, EXCEPT ! if it's last chunk
1782 1782 if not last_chunk:
1783 1783 chunk += '\n'
1784 1784
1785 1785 match = self._diff._header_re.match(chunk)
1786 1786 self.header = match.groupdict()
1787 1787 self.diff = chunk[match.end():]
1788 1788 self.raw = chunk
1789 1789
1790 1790
1791 1791 class BasePathPermissionChecker(object):
1792 1792
1793 1793 @staticmethod
1794 1794 def create_from_patterns(includes, excludes):
1795 1795 if includes and '*' in includes and not excludes:
1796 1796 return AllPathPermissionChecker()
1797 1797 elif excludes and '*' in excludes:
1798 1798 return NonePathPermissionChecker()
1799 1799 else:
1800 1800 return PatternPathPermissionChecker(includes, excludes)
1801 1801
1802 1802 @property
1803 1803 def has_full_access(self):
1804 1804 raise NotImplemented()
1805 1805
1806 1806 def has_access(self, path):
1807 1807 raise NotImplemented()
1808 1808
1809 1809
1810 1810 class AllPathPermissionChecker(BasePathPermissionChecker):
1811 1811
1812 1812 @property
1813 1813 def has_full_access(self):
1814 1814 return True
1815 1815
1816 1816 def has_access(self, path):
1817 1817 return True
1818 1818
1819 1819
1820 1820 class NonePathPermissionChecker(BasePathPermissionChecker):
1821 1821
1822 1822 @property
1823 1823 def has_full_access(self):
1824 1824 return False
1825 1825
1826 1826 def has_access(self, path):
1827 1827 return False
1828 1828
1829 1829
1830 1830 class PatternPathPermissionChecker(BasePathPermissionChecker):
1831 1831
1832 1832 def __init__(self, includes, excludes):
1833 1833 self.includes = includes
1834 1834 self.excludes = excludes
1835 1835 self.includes_re = [] if not includes else [
1836 1836 re.compile(fnmatch.translate(pattern)) for pattern in includes]
1837 1837 self.excludes_re = [] if not excludes else [
1838 1838 re.compile(fnmatch.translate(pattern)) for pattern in excludes]
1839 1839
1840 1840 @property
1841 1841 def has_full_access(self):
1842 1842 return '*' in self.includes and not self.excludes
1843 1843
1844 1844 def has_access(self, path):
1845 1845 for regex in self.excludes_re:
1846 1846 if regex.match(path):
1847 1847 return False
1848 1848 for regex in self.includes_re:
1849 1849 if regex.match(path):
1850 1850 return True
1851 1851 return False
@@ -1,5149 +1,5149 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2010-2019 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 """
22 22 Database Models for RhodeCode Enterprise
23 23 """
24 24
25 25 import re
26 26 import os
27 27 import time
28 28 import string
29 29 import hashlib
30 30 import logging
31 31 import datetime
32 32 import warnings
33 33 import ipaddress
34 34 import functools
35 35 import traceback
36 36 import collections
37 37
38 38 from sqlalchemy import (
39 39 or_, and_, not_, func, TypeDecorator, event,
40 40 Index, Sequence, UniqueConstraint, ForeignKey, CheckConstraint, Column,
41 41 Boolean, String, Unicode, UnicodeText, DateTime, Integer, LargeBinary,
42 42 Text, Float, PickleType)
43 43 from sqlalchemy.sql.expression import true, false, case
44 44 from sqlalchemy.sql.functions import coalesce, count # pragma: no cover
45 45 from sqlalchemy.orm import (
46 46 relationship, joinedload, class_mapper, validates, aliased)
47 47 from sqlalchemy.ext.declarative import declared_attr
48 48 from sqlalchemy.ext.hybrid import hybrid_property
49 49 from sqlalchemy.exc import IntegrityError # pragma: no cover
50 50 from sqlalchemy.dialects.mysql import LONGTEXT
51 51 from zope.cachedescriptors.property import Lazy as LazyProperty
52 52 from pyramid import compat
53 53 from pyramid.threadlocal import get_current_request
54 54 from webhelpers.text import collapse, remove_formatting
55 55
56 56 from rhodecode.translation import _
57 57 from rhodecode.lib.vcs import get_vcs_instance
58 58 from rhodecode.lib.vcs.backends.base import EmptyCommit, Reference
59 59 from rhodecode.lib.utils2 import (
60 60 str2bool, safe_str, get_commit_safe, safe_unicode, sha1_safe,
61 61 time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict,
62 62 glob2re, StrictAttributeDict, cleaned_uri, datetime_to_time, OrderedDefaultDict)
63 63 from rhodecode.lib.jsonalchemy import MutationObj, MutationList, JsonType, \
64 64 JsonRaw
65 65 from rhodecode.lib.ext_json import json
66 66 from rhodecode.lib.caching_query import FromCache
67 67 from rhodecode.lib.encrypt import AESCipher, validate_and_get_enc_data
68 68 from rhodecode.lib.encrypt2 import Encryptor
69 69 from rhodecode.model.meta import Base, Session
70 70
71 71 URL_SEP = '/'
72 72 log = logging.getLogger(__name__)
73 73
74 74 # =============================================================================
75 75 # BASE CLASSES
76 76 # =============================================================================
77 77
78 78 # this is propagated from .ini file rhodecode.encrypted_values.secret or
79 79 # beaker.session.secret if first is not set.
80 80 # and initialized at environment.py
81 81 ENCRYPTION_KEY = None
82 82
83 83 # used to sort permissions by types, '#' used here is not allowed to be in
84 84 # usernames, and it's very early in sorted string.printable table.
85 85 PERMISSION_TYPE_SORT = {
86 86 'admin': '####',
87 87 'write': '###',
88 88 'read': '##',
89 89 'none': '#',
90 90 }
91 91
92 92
93 93 def display_user_sort(obj):
94 94 """
95 95 Sort function used to sort permissions in .permissions() function of
96 96 Repository, RepoGroup, UserGroup. Also it put the default user in front
97 97 of all other resources
98 98 """
99 99
100 100 if obj.username == User.DEFAULT_USER:
101 101 return '#####'
102 102 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
103 103 return prefix + obj.username
104 104
105 105
106 106 def display_user_group_sort(obj):
107 107 """
108 108 Sort function used to sort permissions in .permissions() function of
109 109 Repository, RepoGroup, UserGroup. Also it put the default user in front
110 110 of all other resources
111 111 """
112 112
113 113 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
114 114 return prefix + obj.users_group_name
115 115
116 116
117 117 def _hash_key(k):
118 118 return sha1_safe(k)
119 119
120 120
121 121 def in_filter_generator(qry, items, limit=500):
122 122 """
123 123 Splits IN() into multiple with OR
124 124 e.g.::
125 125 cnt = Repository.query().filter(
126 126 or_(
127 127 *in_filter_generator(Repository.repo_id, range(100000))
128 128 )).count()
129 129 """
130 130 if not items:
131 131 # empty list will cause empty query which might cause security issues
132 132 # this can lead to hidden unpleasant results
133 133 items = [-1]
134 134
135 135 parts = []
136 136 for chunk in xrange(0, len(items), limit):
137 137 parts.append(
138 138 qry.in_(items[chunk: chunk + limit])
139 139 )
140 140
141 141 return parts
142 142
143 143
144 144 base_table_args = {
145 145 'extend_existing': True,
146 146 'mysql_engine': 'InnoDB',
147 147 'mysql_charset': 'utf8',
148 148 'sqlite_autoincrement': True
149 149 }
150 150
151 151
152 152 class EncryptedTextValue(TypeDecorator):
153 153 """
154 154 Special column for encrypted long text data, use like::
155 155
156 156 value = Column("encrypted_value", EncryptedValue(), nullable=False)
157 157
158 158 This column is intelligent so if value is in unencrypted form it return
159 159 unencrypted form, but on save it always encrypts
160 160 """
161 161 impl = Text
162 162
163 163 def process_bind_param(self, value, dialect):
164 164 """
165 165 Setter for storing value
166 166 """
167 167 import rhodecode
168 168 if not value:
169 169 return value
170 170
171 171 # protect against double encrypting if values is already encrypted
172 172 if value.startswith('enc$aes$') \
173 173 or value.startswith('enc$aes_hmac$') \
174 174 or value.startswith('enc2$'):
175 175 raise ValueError('value needs to be in unencrypted format, '
176 176 'ie. not starting with enc$ or enc2$')
177 177
178 178 algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes'
179 179 if algo == 'aes':
180 180 return 'enc$aes_hmac$%s' % AESCipher(ENCRYPTION_KEY, hmac=True).encrypt(value)
181 181 elif algo == 'fernet':
182 182 return Encryptor(ENCRYPTION_KEY).encrypt(value)
183 183 else:
184 184 ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo))
185 185
186 186 def process_result_value(self, value, dialect):
187 187 """
188 188 Getter for retrieving value
189 189 """
190 190
191 191 import rhodecode
192 192 if not value:
193 193 return value
194 194
195 195 algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes'
196 196 enc_strict_mode = str2bool(rhodecode.CONFIG.get('rhodecode.encrypted_values.strict') or True)
197 197 if algo == 'aes':
198 198 decrypted_data = validate_and_get_enc_data(value, ENCRYPTION_KEY, enc_strict_mode)
199 199 elif algo == 'fernet':
200 200 return Encryptor(ENCRYPTION_KEY).decrypt(value)
201 201 else:
202 202 ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo))
203 203 return decrypted_data
204 204
205 205
206 206 class BaseModel(object):
207 207 """
208 208 Base Model for all classes
209 209 """
210 210
211 211 @classmethod
212 212 def _get_keys(cls):
213 213 """return column names for this model """
214 214 return class_mapper(cls).c.keys()
215 215
216 216 def get_dict(self):
217 217 """
218 218 return dict with keys and values corresponding
219 219 to this model data """
220 220
221 221 d = {}
222 222 for k in self._get_keys():
223 223 d[k] = getattr(self, k)
224 224
225 225 # also use __json__() if present to get additional fields
226 226 _json_attr = getattr(self, '__json__', None)
227 227 if _json_attr:
228 228 # update with attributes from __json__
229 229 if callable(_json_attr):
230 230 _json_attr = _json_attr()
231 231 for k, val in _json_attr.iteritems():
232 232 d[k] = val
233 233 return d
234 234
235 235 def get_appstruct(self):
236 236 """return list with keys and values tuples corresponding
237 237 to this model data """
238 238
239 239 lst = []
240 240 for k in self._get_keys():
241 241 lst.append((k, getattr(self, k),))
242 242 return lst
243 243
244 244 def populate_obj(self, populate_dict):
245 245 """populate model with data from given populate_dict"""
246 246
247 247 for k in self._get_keys():
248 248 if k in populate_dict:
249 249 setattr(self, k, populate_dict[k])
250 250
251 251 @classmethod
252 252 def query(cls):
253 253 return Session().query(cls)
254 254
255 255 @classmethod
256 256 def get(cls, id_):
257 257 if id_:
258 258 return cls.query().get(id_)
259 259
260 260 @classmethod
261 261 def get_or_404(cls, id_):
262 262 from pyramid.httpexceptions import HTTPNotFound
263 263
264 264 try:
265 265 id_ = int(id_)
266 266 except (TypeError, ValueError):
267 267 raise HTTPNotFound()
268 268
269 269 res = cls.query().get(id_)
270 270 if not res:
271 271 raise HTTPNotFound()
272 272 return res
273 273
274 274 @classmethod
275 275 def getAll(cls):
276 276 # deprecated and left for backward compatibility
277 277 return cls.get_all()
278 278
279 279 @classmethod
280 280 def get_all(cls):
281 281 return cls.query().all()
282 282
283 283 @classmethod
284 284 def delete(cls, id_):
285 285 obj = cls.query().get(id_)
286 286 Session().delete(obj)
287 287
288 288 @classmethod
289 289 def identity_cache(cls, session, attr_name, value):
290 290 exist_in_session = []
291 291 for (item_cls, pkey), instance in session.identity_map.items():
292 292 if cls == item_cls and getattr(instance, attr_name) == value:
293 293 exist_in_session.append(instance)
294 294 if exist_in_session:
295 295 if len(exist_in_session) == 1:
296 296 return exist_in_session[0]
297 297 log.exception(
298 298 'multiple objects with attr %s and '
299 299 'value %s found with same name: %r',
300 300 attr_name, value, exist_in_session)
301 301
302 302 def __repr__(self):
303 303 if hasattr(self, '__unicode__'):
304 304 # python repr needs to return str
305 305 try:
306 306 return safe_str(self.__unicode__())
307 307 except UnicodeDecodeError:
308 308 pass
309 309 return '<DB:%s>' % (self.__class__.__name__)
310 310
311 311
312 312 class RhodeCodeSetting(Base, BaseModel):
313 313 __tablename__ = 'rhodecode_settings'
314 314 __table_args__ = (
315 315 UniqueConstraint('app_settings_name'),
316 316 base_table_args
317 317 )
318 318
319 319 SETTINGS_TYPES = {
320 320 'str': safe_str,
321 321 'int': safe_int,
322 322 'unicode': safe_unicode,
323 323 'bool': str2bool,
324 324 'list': functools.partial(aslist, sep=',')
325 325 }
326 326 DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions'
327 327 GLOBAL_CONF_KEY = 'app_settings'
328 328
329 329 app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
330 330 app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None)
331 331 _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None)
332 332 _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None)
333 333
334 334 def __init__(self, key='', val='', type='unicode'):
335 335 self.app_settings_name = key
336 336 self.app_settings_type = type
337 337 self.app_settings_value = val
338 338
339 339 @validates('_app_settings_value')
340 340 def validate_settings_value(self, key, val):
341 341 assert type(val) == unicode
342 342 return val
343 343
344 344 @hybrid_property
345 345 def app_settings_value(self):
346 346 v = self._app_settings_value
347 347 _type = self.app_settings_type
348 348 if _type:
349 349 _type = self.app_settings_type.split('.')[0]
350 350 # decode the encrypted value
351 351 if 'encrypted' in self.app_settings_type:
352 352 cipher = EncryptedTextValue()
353 353 v = safe_unicode(cipher.process_result_value(v, None))
354 354
355 355 converter = self.SETTINGS_TYPES.get(_type) or \
356 356 self.SETTINGS_TYPES['unicode']
357 357 return converter(v)
358 358
359 359 @app_settings_value.setter
360 360 def app_settings_value(self, val):
361 361 """
362 362 Setter that will always make sure we use unicode in app_settings_value
363 363
364 364 :param val:
365 365 """
366 366 val = safe_unicode(val)
367 367 # encode the encrypted value
368 368 if 'encrypted' in self.app_settings_type:
369 369 cipher = EncryptedTextValue()
370 370 val = safe_unicode(cipher.process_bind_param(val, None))
371 371 self._app_settings_value = val
372 372
373 373 @hybrid_property
374 374 def app_settings_type(self):
375 375 return self._app_settings_type
376 376
377 377 @app_settings_type.setter
378 378 def app_settings_type(self, val):
379 379 if val.split('.')[0] not in self.SETTINGS_TYPES:
380 380 raise Exception('type must be one of %s got %s'
381 381 % (self.SETTINGS_TYPES.keys(), val))
382 382 self._app_settings_type = val
383 383
384 384 @classmethod
385 385 def get_by_prefix(cls, prefix):
386 386 return RhodeCodeSetting.query()\
387 387 .filter(RhodeCodeSetting.app_settings_name.startswith(prefix))\
388 388 .all()
389 389
390 390 def __unicode__(self):
391 391 return u"<%s('%s:%s[%s]')>" % (
392 392 self.__class__.__name__,
393 393 self.app_settings_name, self.app_settings_value,
394 394 self.app_settings_type
395 395 )
396 396
397 397
398 398 class RhodeCodeUi(Base, BaseModel):
399 399 __tablename__ = 'rhodecode_ui'
400 400 __table_args__ = (
401 401 UniqueConstraint('ui_key'),
402 402 base_table_args
403 403 )
404 404
405 405 HOOK_REPO_SIZE = 'changegroup.repo_size'
406 406 # HG
407 407 HOOK_PRE_PULL = 'preoutgoing.pre_pull'
408 408 HOOK_PULL = 'outgoing.pull_logger'
409 409 HOOK_PRE_PUSH = 'prechangegroup.pre_push'
410 410 HOOK_PRETX_PUSH = 'pretxnchangegroup.pre_push'
411 411 HOOK_PUSH = 'changegroup.push_logger'
412 412 HOOK_PUSH_KEY = 'pushkey.key_push'
413 413
414 414 HOOKS_BUILTIN = [
415 415 HOOK_PRE_PULL,
416 416 HOOK_PULL,
417 417 HOOK_PRE_PUSH,
418 418 HOOK_PRETX_PUSH,
419 419 HOOK_PUSH,
420 420 HOOK_PUSH_KEY,
421 421 ]
422 422
423 423 # TODO: johbo: Unify way how hooks are configured for git and hg,
424 424 # git part is currently hardcoded.
425 425
426 426 # SVN PATTERNS
427 427 SVN_BRANCH_ID = 'vcs_svn_branch'
428 428 SVN_TAG_ID = 'vcs_svn_tag'
429 429
430 430 ui_id = Column(
431 431 "ui_id", Integer(), nullable=False, unique=True, default=None,
432 432 primary_key=True)
433 433 ui_section = Column(
434 434 "ui_section", String(255), nullable=True, unique=None, default=None)
435 435 ui_key = Column(
436 436 "ui_key", String(255), nullable=True, unique=None, default=None)
437 437 ui_value = Column(
438 438 "ui_value", String(255), nullable=True, unique=None, default=None)
439 439 ui_active = Column(
440 440 "ui_active", Boolean(), nullable=True, unique=None, default=True)
441 441
442 442 def __repr__(self):
443 443 return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section,
444 444 self.ui_key, self.ui_value)
445 445
446 446
447 447 class RepoRhodeCodeSetting(Base, BaseModel):
448 448 __tablename__ = 'repo_rhodecode_settings'
449 449 __table_args__ = (
450 450 UniqueConstraint(
451 451 'app_settings_name', 'repository_id',
452 452 name='uq_repo_rhodecode_setting_name_repo_id'),
453 453 base_table_args
454 454 )
455 455
456 456 repository_id = Column(
457 457 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
458 458 nullable=False)
459 459 app_settings_id = Column(
460 460 "app_settings_id", Integer(), nullable=False, unique=True,
461 461 default=None, primary_key=True)
462 462 app_settings_name = Column(
463 463 "app_settings_name", String(255), nullable=True, unique=None,
464 464 default=None)
465 465 _app_settings_value = Column(
466 466 "app_settings_value", String(4096), nullable=True, unique=None,
467 467 default=None)
468 468 _app_settings_type = Column(
469 469 "app_settings_type", String(255), nullable=True, unique=None,
470 470 default=None)
471 471
472 472 repository = relationship('Repository')
473 473
474 474 def __init__(self, repository_id, key='', val='', type='unicode'):
475 475 self.repository_id = repository_id
476 476 self.app_settings_name = key
477 477 self.app_settings_type = type
478 478 self.app_settings_value = val
479 479
480 480 @validates('_app_settings_value')
481 481 def validate_settings_value(self, key, val):
482 482 assert type(val) == unicode
483 483 return val
484 484
485 485 @hybrid_property
486 486 def app_settings_value(self):
487 487 v = self._app_settings_value
488 488 type_ = self.app_settings_type
489 489 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
490 490 converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode']
491 491 return converter(v)
492 492
493 493 @app_settings_value.setter
494 494 def app_settings_value(self, val):
495 495 """
496 496 Setter that will always make sure we use unicode in app_settings_value
497 497
498 498 :param val:
499 499 """
500 500 self._app_settings_value = safe_unicode(val)
501 501
502 502 @hybrid_property
503 503 def app_settings_type(self):
504 504 return self._app_settings_type
505 505
506 506 @app_settings_type.setter
507 507 def app_settings_type(self, val):
508 508 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
509 509 if val not in SETTINGS_TYPES:
510 510 raise Exception('type must be one of %s got %s'
511 511 % (SETTINGS_TYPES.keys(), val))
512 512 self._app_settings_type = val
513 513
514 514 def __unicode__(self):
515 515 return u"<%s('%s:%s:%s[%s]')>" % (
516 516 self.__class__.__name__, self.repository.repo_name,
517 517 self.app_settings_name, self.app_settings_value,
518 518 self.app_settings_type
519 519 )
520 520
521 521
522 522 class RepoRhodeCodeUi(Base, BaseModel):
523 523 __tablename__ = 'repo_rhodecode_ui'
524 524 __table_args__ = (
525 525 UniqueConstraint(
526 526 'repository_id', 'ui_section', 'ui_key',
527 527 name='uq_repo_rhodecode_ui_repository_id_section_key'),
528 528 base_table_args
529 529 )
530 530
531 531 repository_id = Column(
532 532 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
533 533 nullable=False)
534 534 ui_id = Column(
535 535 "ui_id", Integer(), nullable=False, unique=True, default=None,
536 536 primary_key=True)
537 537 ui_section = Column(
538 538 "ui_section", String(255), nullable=True, unique=None, default=None)
539 539 ui_key = Column(
540 540 "ui_key", String(255), nullable=True, unique=None, default=None)
541 541 ui_value = Column(
542 542 "ui_value", String(255), nullable=True, unique=None, default=None)
543 543 ui_active = Column(
544 544 "ui_active", Boolean(), nullable=True, unique=None, default=True)
545 545
546 546 repository = relationship('Repository')
547 547
548 548 def __repr__(self):
549 549 return '<%s[%s:%s]%s=>%s]>' % (
550 550 self.__class__.__name__, self.repository.repo_name,
551 551 self.ui_section, self.ui_key, self.ui_value)
552 552
553 553
554 554 class User(Base, BaseModel):
555 555 __tablename__ = 'users'
556 556 __table_args__ = (
557 557 UniqueConstraint('username'), UniqueConstraint('email'),
558 558 Index('u_username_idx', 'username'),
559 559 Index('u_email_idx', 'email'),
560 560 base_table_args
561 561 )
562 562
563 563 DEFAULT_USER = 'default'
564 564 DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org'
565 565 DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}'
566 566
567 567 user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
568 568 username = Column("username", String(255), nullable=True, unique=None, default=None)
569 569 password = Column("password", String(255), nullable=True, unique=None, default=None)
570 570 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
571 571 admin = Column("admin", Boolean(), nullable=True, unique=None, default=False)
572 572 name = Column("firstname", String(255), nullable=True, unique=None, default=None)
573 573 lastname = Column("lastname", String(255), nullable=True, unique=None, default=None)
574 574 _email = Column("email", String(255), nullable=True, unique=None, default=None)
575 575 last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None)
576 576 last_activity = Column('last_activity', DateTime(timezone=False), nullable=True, unique=None, default=None)
577 577
578 578 extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None)
579 579 extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None)
580 580 _api_key = Column("api_key", String(255), nullable=True, unique=None, default=None)
581 581 inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
582 582 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
583 583 _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data
584 584
585 585 user_log = relationship('UserLog')
586 586 user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all')
587 587
588 588 repositories = relationship('Repository')
589 589 repository_groups = relationship('RepoGroup')
590 590 user_groups = relationship('UserGroup')
591 591
592 592 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
593 593 followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all')
594 594
595 595 repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all')
596 596 repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all')
597 597 user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all')
598 598
599 599 group_member = relationship('UserGroupMember', cascade='all')
600 600
601 601 notifications = relationship('UserNotification', cascade='all')
602 602 # notifications assigned to this user
603 603 user_created_notifications = relationship('Notification', cascade='all')
604 604 # comments created by this user
605 605 user_comments = relationship('ChangesetComment', cascade='all')
606 606 # user profile extra info
607 607 user_emails = relationship('UserEmailMap', cascade='all')
608 608 user_ip_map = relationship('UserIpMap', cascade='all')
609 609 user_auth_tokens = relationship('UserApiKeys', cascade='all')
610 610 user_ssh_keys = relationship('UserSshKeys', cascade='all')
611 611
612 612 # gists
613 613 user_gists = relationship('Gist', cascade='all')
614 614 # user pull requests
615 615 user_pull_requests = relationship('PullRequest', cascade='all')
616 616 # external identities
617 617 extenal_identities = relationship(
618 618 'ExternalIdentity',
619 619 primaryjoin="User.user_id==ExternalIdentity.local_user_id",
620 620 cascade='all')
621 621 # review rules
622 622 user_review_rules = relationship('RepoReviewRuleUser', cascade='all')
623 623
624 624 def __unicode__(self):
625 625 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
626 626 self.user_id, self.username)
627 627
628 628 @hybrid_property
629 629 def email(self):
630 630 return self._email
631 631
632 632 @email.setter
633 633 def email(self, val):
634 634 self._email = val.lower() if val else None
635 635
636 636 @hybrid_property
637 637 def first_name(self):
638 638 from rhodecode.lib import helpers as h
639 639 if self.name:
640 640 return h.escape(self.name)
641 641 return self.name
642 642
643 643 @hybrid_property
644 644 def last_name(self):
645 645 from rhodecode.lib import helpers as h
646 646 if self.lastname:
647 647 return h.escape(self.lastname)
648 648 return self.lastname
649 649
650 650 @hybrid_property
651 651 def api_key(self):
652 652 """
653 653 Fetch if exist an auth-token with role ALL connected to this user
654 654 """
655 655 user_auth_token = UserApiKeys.query()\
656 656 .filter(UserApiKeys.user_id == self.user_id)\
657 657 .filter(or_(UserApiKeys.expires == -1,
658 658 UserApiKeys.expires >= time.time()))\
659 659 .filter(UserApiKeys.role == UserApiKeys.ROLE_ALL).first()
660 660 if user_auth_token:
661 661 user_auth_token = user_auth_token.api_key
662 662
663 663 return user_auth_token
664 664
665 665 @api_key.setter
666 666 def api_key(self, val):
667 667 # don't allow to set API key this is deprecated for now
668 668 self._api_key = None
669 669
670 670 @property
671 671 def reviewer_pull_requests(self):
672 672 return PullRequestReviewers.query() \
673 673 .options(joinedload(PullRequestReviewers.pull_request)) \
674 674 .filter(PullRequestReviewers.user_id == self.user_id) \
675 675 .all()
676 676
677 677 @property
678 678 def firstname(self):
679 679 # alias for future
680 680 return self.name
681 681
682 682 @property
683 683 def emails(self):
684 684 other = UserEmailMap.query()\
685 685 .filter(UserEmailMap.user == self) \
686 686 .order_by(UserEmailMap.email_id.asc()) \
687 687 .all()
688 688 return [self.email] + [x.email for x in other]
689 689
690 690 @property
691 691 def auth_tokens(self):
692 692 auth_tokens = self.get_auth_tokens()
693 693 return [x.api_key for x in auth_tokens]
694 694
695 695 def get_auth_tokens(self):
696 696 return UserApiKeys.query()\
697 697 .filter(UserApiKeys.user == self)\
698 698 .order_by(UserApiKeys.user_api_key_id.asc())\
699 699 .all()
700 700
701 701 @LazyProperty
702 702 def feed_token(self):
703 703 return self.get_feed_token()
704 704
705 705 def get_feed_token(self, cache=True):
706 706 feed_tokens = UserApiKeys.query()\
707 707 .filter(UserApiKeys.user == self)\
708 708 .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)
709 709 if cache:
710 710 feed_tokens = feed_tokens.options(
711 711 FromCache("sql_cache_short", "get_user_feed_token_%s" % self.user_id))
712 712
713 713 feed_tokens = feed_tokens.all()
714 714 if feed_tokens:
715 715 return feed_tokens[0].api_key
716 716 return 'NO_FEED_TOKEN_AVAILABLE'
717 717
718 718 @classmethod
719 719 def get(cls, user_id, cache=False):
720 720 if not user_id:
721 721 return
722 722
723 723 user = cls.query()
724 724 if cache:
725 725 user = user.options(
726 726 FromCache("sql_cache_short", "get_users_%s" % user_id))
727 727 return user.get(user_id)
728 728
729 729 @classmethod
730 730 def extra_valid_auth_tokens(cls, user, role=None):
731 731 tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\
732 732 .filter(or_(UserApiKeys.expires == -1,
733 733 UserApiKeys.expires >= time.time()))
734 734 if role:
735 735 tokens = tokens.filter(or_(UserApiKeys.role == role,
736 736 UserApiKeys.role == UserApiKeys.ROLE_ALL))
737 737 return tokens.all()
738 738
739 739 def authenticate_by_token(self, auth_token, roles=None, scope_repo_id=None):
740 740 from rhodecode.lib import auth
741 741
742 742 log.debug('Trying to authenticate user: %s via auth-token, '
743 743 'and roles: %s', self, roles)
744 744
745 745 if not auth_token:
746 746 return False
747 747
748 748 roles = (roles or []) + [UserApiKeys.ROLE_ALL]
749 749 tokens_q = UserApiKeys.query()\
750 750 .filter(UserApiKeys.user_id == self.user_id)\
751 751 .filter(or_(UserApiKeys.expires == -1,
752 752 UserApiKeys.expires >= time.time()))
753 753
754 754 tokens_q = tokens_q.filter(UserApiKeys.role.in_(roles))
755 755
756 756 crypto_backend = auth.crypto_backend()
757 757 enc_token_map = {}
758 758 plain_token_map = {}
759 759 for token in tokens_q:
760 760 if token.api_key.startswith(crypto_backend.ENC_PREF):
761 761 enc_token_map[token.api_key] = token
762 762 else:
763 763 plain_token_map[token.api_key] = token
764 764 log.debug(
765 765 'Found %s plain and %s encrypted user tokens to check for authentication',
766 766 len(plain_token_map), len(enc_token_map))
767 767
768 768 # plain token match comes first
769 769 match = plain_token_map.get(auth_token)
770 770
771 771 # check encrypted tokens now
772 772 if not match:
773 773 for token_hash, token in enc_token_map.items():
774 774 # NOTE(marcink): this is expensive to calculate, but most secure
775 775 if crypto_backend.hash_check(auth_token, token_hash):
776 776 match = token
777 777 break
778 778
779 779 if match:
780 780 log.debug('Found matching token %s', match)
781 781 if match.repo_id:
782 782 log.debug('Found scope, checking for scope match of token %s', match)
783 783 if match.repo_id == scope_repo_id:
784 784 return True
785 785 else:
786 786 log.debug(
787 787 'AUTH_TOKEN: scope mismatch, token has a set repo scope: %s, '
788 788 'and calling scope is:%s, skipping further checks',
789 789 match.repo, scope_repo_id)
790 790 return False
791 791 else:
792 792 return True
793 793
794 794 return False
795 795
796 796 @property
797 797 def ip_addresses(self):
798 798 ret = UserIpMap.query().filter(UserIpMap.user == self).all()
799 799 return [x.ip_addr for x in ret]
800 800
801 801 @property
802 802 def username_and_name(self):
803 803 return '%s (%s %s)' % (self.username, self.first_name, self.last_name)
804 804
805 805 @property
806 806 def username_or_name_or_email(self):
807 807 full_name = self.full_name if self.full_name is not ' ' else None
808 808 return self.username or full_name or self.email
809 809
810 810 @property
811 811 def full_name(self):
812 812 return '%s %s' % (self.first_name, self.last_name)
813 813
814 814 @property
815 815 def full_name_or_username(self):
816 816 return ('%s %s' % (self.first_name, self.last_name)
817 817 if (self.first_name and self.last_name) else self.username)
818 818
819 819 @property
820 820 def full_contact(self):
821 821 return '%s %s <%s>' % (self.first_name, self.last_name, self.email)
822 822
823 823 @property
824 824 def short_contact(self):
825 825 return '%s %s' % (self.first_name, self.last_name)
826 826
827 827 @property
828 828 def is_admin(self):
829 829 return self.admin
830 830
831 831 def AuthUser(self, **kwargs):
832 832 """
833 833 Returns instance of AuthUser for this user
834 834 """
835 835 from rhodecode.lib.auth import AuthUser
836 836 return AuthUser(user_id=self.user_id, username=self.username, **kwargs)
837 837
838 838 @hybrid_property
839 839 def user_data(self):
840 840 if not self._user_data:
841 841 return {}
842 842
843 843 try:
844 844 return json.loads(self._user_data)
845 845 except TypeError:
846 846 return {}
847 847
848 848 @user_data.setter
849 849 def user_data(self, val):
850 850 if not isinstance(val, dict):
851 851 raise Exception('user_data must be dict, got %s' % type(val))
852 852 try:
853 853 self._user_data = json.dumps(val)
854 854 except Exception:
855 855 log.error(traceback.format_exc())
856 856
857 857 @classmethod
858 858 def get_by_username(cls, username, case_insensitive=False,
859 859 cache=False, identity_cache=False):
860 860 session = Session()
861 861
862 862 if case_insensitive:
863 863 q = cls.query().filter(
864 864 func.lower(cls.username) == func.lower(username))
865 865 else:
866 866 q = cls.query().filter(cls.username == username)
867 867
868 868 if cache:
869 869 if identity_cache:
870 870 val = cls.identity_cache(session, 'username', username)
871 871 if val:
872 872 return val
873 873 else:
874 874 cache_key = "get_user_by_name_%s" % _hash_key(username)
875 875 q = q.options(
876 876 FromCache("sql_cache_short", cache_key))
877 877
878 878 return q.scalar()
879 879
880 880 @classmethod
881 881 def get_by_auth_token(cls, auth_token, cache=False):
882 882 q = UserApiKeys.query()\
883 883 .filter(UserApiKeys.api_key == auth_token)\
884 884 .filter(or_(UserApiKeys.expires == -1,
885 885 UserApiKeys.expires >= time.time()))
886 886 if cache:
887 887 q = q.options(
888 888 FromCache("sql_cache_short", "get_auth_token_%s" % auth_token))
889 889
890 890 match = q.first()
891 891 if match:
892 892 return match.user
893 893
894 894 @classmethod
895 895 def get_by_email(cls, email, case_insensitive=False, cache=False):
896 896
897 897 if case_insensitive:
898 898 q = cls.query().filter(func.lower(cls.email) == func.lower(email))
899 899
900 900 else:
901 901 q = cls.query().filter(cls.email == email)
902 902
903 903 email_key = _hash_key(email)
904 904 if cache:
905 905 q = q.options(
906 906 FromCache("sql_cache_short", "get_email_key_%s" % email_key))
907 907
908 908 ret = q.scalar()
909 909 if ret is None:
910 910 q = UserEmailMap.query()
911 911 # try fetching in alternate email map
912 912 if case_insensitive:
913 913 q = q.filter(func.lower(UserEmailMap.email) == func.lower(email))
914 914 else:
915 915 q = q.filter(UserEmailMap.email == email)
916 916 q = q.options(joinedload(UserEmailMap.user))
917 917 if cache:
918 918 q = q.options(
919 919 FromCache("sql_cache_short", "get_email_map_key_%s" % email_key))
920 920 ret = getattr(q.scalar(), 'user', None)
921 921
922 922 return ret
923 923
924 924 @classmethod
925 925 def get_from_cs_author(cls, author):
926 926 """
927 927 Tries to get User objects out of commit author string
928 928
929 929 :param author:
930 930 """
931 931 from rhodecode.lib.helpers import email, author_name
932 932 # Valid email in the attribute passed, see if they're in the system
933 933 _email = email(author)
934 934 if _email:
935 935 user = cls.get_by_email(_email, case_insensitive=True)
936 936 if user:
937 937 return user
938 938 # Maybe we can match by username?
939 939 _author = author_name(author)
940 940 user = cls.get_by_username(_author, case_insensitive=True)
941 941 if user:
942 942 return user
943 943
944 944 def update_userdata(self, **kwargs):
945 945 usr = self
946 946 old = usr.user_data
947 947 old.update(**kwargs)
948 948 usr.user_data = old
949 949 Session().add(usr)
950 950 log.debug('updated userdata with ', kwargs)
951 951
952 952 def update_lastlogin(self):
953 953 """Update user lastlogin"""
954 954 self.last_login = datetime.datetime.now()
955 955 Session().add(self)
956 956 log.debug('updated user %s lastlogin', self.username)
957 957
958 958 def update_password(self, new_password):
959 959 from rhodecode.lib.auth import get_crypt_password
960 960
961 961 self.password = get_crypt_password(new_password)
962 962 Session().add(self)
963 963
964 964 @classmethod
965 965 def get_first_super_admin(cls):
966 966 user = User.query()\
967 967 .filter(User.admin == true()) \
968 968 .order_by(User.user_id.asc()) \
969 969 .first()
970 970
971 971 if user is None:
972 972 raise Exception('FATAL: Missing administrative account!')
973 973 return user
974 974
975 975 @classmethod
976 976 def get_all_super_admins(cls, only_active=False):
977 977 """
978 978 Returns all admin accounts sorted by username
979 979 """
980 980 qry = User.query().filter(User.admin == true()).order_by(User.username.asc())
981 981 if only_active:
982 982 qry = qry.filter(User.active == true())
983 983 return qry.all()
984 984
985 985 @classmethod
986 986 def get_default_user(cls, cache=False, refresh=False):
987 987 user = User.get_by_username(User.DEFAULT_USER, cache=cache)
988 988 if user is None:
989 989 raise Exception('FATAL: Missing default account!')
990 990 if refresh:
991 991 # The default user might be based on outdated state which
992 992 # has been loaded from the cache.
993 993 # A call to refresh() ensures that the
994 994 # latest state from the database is used.
995 995 Session().refresh(user)
996 996 return user
997 997
998 998 def _get_default_perms(self, user, suffix=''):
999 999 from rhodecode.model.permission import PermissionModel
1000 1000 return PermissionModel().get_default_perms(user.user_perms, suffix)
1001 1001
1002 1002 def get_default_perms(self, suffix=''):
1003 1003 return self._get_default_perms(self, suffix)
1004 1004
1005 1005 def get_api_data(self, include_secrets=False, details='full'):
1006 1006 """
1007 1007 Common function for generating user related data for API
1008 1008
1009 1009 :param include_secrets: By default secrets in the API data will be replaced
1010 1010 by a placeholder value to prevent exposing this data by accident. In case
1011 1011 this data shall be exposed, set this flag to ``True``.
1012 1012
1013 1013 :param details: details can be 'basic|full' basic gives only a subset of
1014 1014 the available user information that includes user_id, name and emails.
1015 1015 """
1016 1016 user = self
1017 1017 user_data = self.user_data
1018 1018 data = {
1019 1019 'user_id': user.user_id,
1020 1020 'username': user.username,
1021 1021 'firstname': user.name,
1022 1022 'lastname': user.lastname,
1023 1023 'email': user.email,
1024 1024 'emails': user.emails,
1025 1025 }
1026 1026 if details == 'basic':
1027 1027 return data
1028 1028
1029 1029 auth_token_length = 40
1030 1030 auth_token_replacement = '*' * auth_token_length
1031 1031
1032 1032 extras = {
1033 1033 'auth_tokens': [auth_token_replacement],
1034 1034 'active': user.active,
1035 1035 'admin': user.admin,
1036 1036 'extern_type': user.extern_type,
1037 1037 'extern_name': user.extern_name,
1038 1038 'last_login': user.last_login,
1039 1039 'last_activity': user.last_activity,
1040 1040 'ip_addresses': user.ip_addresses,
1041 1041 'language': user_data.get('language')
1042 1042 }
1043 1043 data.update(extras)
1044 1044
1045 1045 if include_secrets:
1046 1046 data['auth_tokens'] = user.auth_tokens
1047 1047 return data
1048 1048
1049 1049 def __json__(self):
1050 1050 data = {
1051 1051 'full_name': self.full_name,
1052 1052 'full_name_or_username': self.full_name_or_username,
1053 1053 'short_contact': self.short_contact,
1054 1054 'full_contact': self.full_contact,
1055 1055 }
1056 1056 data.update(self.get_api_data())
1057 1057 return data
1058 1058
1059 1059
1060 1060 class UserApiKeys(Base, BaseModel):
1061 1061 __tablename__ = 'user_api_keys'
1062 1062 __table_args__ = (
1063 1063 Index('uak_api_key_idx', 'api_key', unique=True),
1064 1064 Index('uak_api_key_expires_idx', 'api_key', 'expires'),
1065 1065 base_table_args
1066 1066 )
1067 1067 __mapper_args__ = {}
1068 1068
1069 1069 # ApiKey role
1070 1070 ROLE_ALL = 'token_role_all'
1071 1071 ROLE_HTTP = 'token_role_http'
1072 1072 ROLE_VCS = 'token_role_vcs'
1073 1073 ROLE_API = 'token_role_api'
1074 1074 ROLE_FEED = 'token_role_feed'
1075 1075 ROLE_PASSWORD_RESET = 'token_password_reset'
1076 1076
1077 1077 ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED]
1078 1078
1079 1079 user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1080 1080 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
1081 1081 api_key = Column("api_key", String(255), nullable=False, unique=True)
1082 1082 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
1083 1083 expires = Column('expires', Float(53), nullable=False)
1084 1084 role = Column('role', String(255), nullable=True)
1085 1085 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1086 1086
1087 1087 # scope columns
1088 1088 repo_id = Column(
1089 1089 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
1090 1090 nullable=True, unique=None, default=None)
1091 1091 repo = relationship('Repository', lazy='joined')
1092 1092
1093 1093 repo_group_id = Column(
1094 1094 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
1095 1095 nullable=True, unique=None, default=None)
1096 1096 repo_group = relationship('RepoGroup', lazy='joined')
1097 1097
1098 1098 user = relationship('User', lazy='joined')
1099 1099
1100 1100 def __unicode__(self):
1101 1101 return u"<%s('%s')>" % (self.__class__.__name__, self.role)
1102 1102
1103 1103 def __json__(self):
1104 1104 data = {
1105 1105 'auth_token': self.api_key,
1106 1106 'role': self.role,
1107 1107 'scope': self.scope_humanized,
1108 1108 'expired': self.expired
1109 1109 }
1110 1110 return data
1111 1111
1112 1112 def get_api_data(self, include_secrets=False):
1113 1113 data = self.__json__()
1114 1114 if include_secrets:
1115 1115 return data
1116 1116 else:
1117 1117 data['auth_token'] = self.token_obfuscated
1118 1118 return data
1119 1119
1120 1120 @hybrid_property
1121 1121 def description_safe(self):
1122 1122 from rhodecode.lib import helpers as h
1123 1123 return h.escape(self.description)
1124 1124
1125 1125 @property
1126 1126 def expired(self):
1127 1127 if self.expires == -1:
1128 1128 return False
1129 1129 return time.time() > self.expires
1130 1130
1131 1131 @classmethod
1132 1132 def _get_role_name(cls, role):
1133 1133 return {
1134 1134 cls.ROLE_ALL: _('all'),
1135 1135 cls.ROLE_HTTP: _('http/web interface'),
1136 1136 cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'),
1137 1137 cls.ROLE_API: _('api calls'),
1138 1138 cls.ROLE_FEED: _('feed access'),
1139 1139 }.get(role, role)
1140 1140
1141 1141 @property
1142 1142 def role_humanized(self):
1143 1143 return self._get_role_name(self.role)
1144 1144
1145 1145 def _get_scope(self):
1146 1146 if self.repo:
1147 1147 return 'Repository: {}'.format(self.repo.repo_name)
1148 1148 if self.repo_group:
1149 1149 return 'RepositoryGroup: {} (recursive)'.format(self.repo_group.group_name)
1150 1150 return 'Global'
1151 1151
1152 1152 @property
1153 1153 def scope_humanized(self):
1154 1154 return self._get_scope()
1155 1155
1156 1156 @property
1157 1157 def token_obfuscated(self):
1158 1158 if self.api_key:
1159 1159 return self.api_key[:4] + "****"
1160 1160
1161 1161
1162 1162 class UserEmailMap(Base, BaseModel):
1163 1163 __tablename__ = 'user_email_map'
1164 1164 __table_args__ = (
1165 1165 Index('uem_email_idx', 'email'),
1166 1166 UniqueConstraint('email'),
1167 1167 base_table_args
1168 1168 )
1169 1169 __mapper_args__ = {}
1170 1170
1171 1171 email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1172 1172 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
1173 1173 _email = Column("email", String(255), nullable=True, unique=False, default=None)
1174 1174 user = relationship('User', lazy='joined')
1175 1175
1176 1176 @validates('_email')
1177 1177 def validate_email(self, key, email):
1178 1178 # check if this email is not main one
1179 1179 main_email = Session().query(User).filter(User.email == email).scalar()
1180 1180 if main_email is not None:
1181 1181 raise AttributeError('email %s is present is user table' % email)
1182 1182 return email
1183 1183
1184 1184 @hybrid_property
1185 1185 def email(self):
1186 1186 return self._email
1187 1187
1188 1188 @email.setter
1189 1189 def email(self, val):
1190 1190 self._email = val.lower() if val else None
1191 1191
1192 1192
1193 1193 class UserIpMap(Base, BaseModel):
1194 1194 __tablename__ = 'user_ip_map'
1195 1195 __table_args__ = (
1196 1196 UniqueConstraint('user_id', 'ip_addr'),
1197 1197 base_table_args
1198 1198 )
1199 1199 __mapper_args__ = {}
1200 1200
1201 1201 ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1202 1202 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
1203 1203 ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None)
1204 1204 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
1205 1205 description = Column("description", String(10000), nullable=True, unique=None, default=None)
1206 1206 user = relationship('User', lazy='joined')
1207 1207
1208 1208 @hybrid_property
1209 1209 def description_safe(self):
1210 1210 from rhodecode.lib import helpers as h
1211 1211 return h.escape(self.description)
1212 1212
1213 1213 @classmethod
1214 1214 def _get_ip_range(cls, ip_addr):
1215 1215 net = ipaddress.ip_network(safe_unicode(ip_addr), strict=False)
1216 1216 return [str(net.network_address), str(net.broadcast_address)]
1217 1217
1218 1218 def __json__(self):
1219 1219 return {
1220 1220 'ip_addr': self.ip_addr,
1221 1221 'ip_range': self._get_ip_range(self.ip_addr),
1222 1222 }
1223 1223
1224 1224 def __unicode__(self):
1225 1225 return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__,
1226 1226 self.user_id, self.ip_addr)
1227 1227
1228 1228
1229 1229 class UserSshKeys(Base, BaseModel):
1230 1230 __tablename__ = 'user_ssh_keys'
1231 1231 __table_args__ = (
1232 1232 Index('usk_ssh_key_fingerprint_idx', 'ssh_key_fingerprint'),
1233 1233
1234 1234 UniqueConstraint('ssh_key_fingerprint'),
1235 1235
1236 1236 base_table_args
1237 1237 )
1238 1238 __mapper_args__ = {}
1239 1239
1240 1240 ssh_key_id = Column('ssh_key_id', Integer(), nullable=False, unique=True, default=None, primary_key=True)
1241 1241 ssh_key_data = Column('ssh_key_data', String(10240), nullable=False, unique=None, default=None)
1242 1242 ssh_key_fingerprint = Column('ssh_key_fingerprint', String(255), nullable=False, unique=None, default=None)
1243 1243
1244 1244 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
1245 1245
1246 1246 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1247 1247 accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True, default=None)
1248 1248 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
1249 1249
1250 1250 user = relationship('User', lazy='joined')
1251 1251
1252 1252 def __json__(self):
1253 1253 data = {
1254 1254 'ssh_fingerprint': self.ssh_key_fingerprint,
1255 1255 'description': self.description,
1256 1256 'created_on': self.created_on
1257 1257 }
1258 1258 return data
1259 1259
1260 1260 def get_api_data(self):
1261 1261 data = self.__json__()
1262 1262 return data
1263 1263
1264 1264
1265 1265 class UserLog(Base, BaseModel):
1266 1266 __tablename__ = 'user_logs'
1267 1267 __table_args__ = (
1268 1268 base_table_args,
1269 1269 )
1270 1270
1271 1271 VERSION_1 = 'v1'
1272 1272 VERSION_2 = 'v2'
1273 1273 VERSIONS = [VERSION_1, VERSION_2]
1274 1274
1275 1275 user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1276 1276 user_id = Column("user_id", Integer(), ForeignKey('users.user_id',ondelete='SET NULL'), nullable=True, unique=None, default=None)
1277 1277 username = Column("username", String(255), nullable=True, unique=None, default=None)
1278 1278 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id', ondelete='SET NULL'), nullable=True, unique=None, default=None)
1279 1279 repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None)
1280 1280 user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None)
1281 1281 action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None)
1282 1282 action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None)
1283 1283
1284 1284 version = Column("version", String(255), nullable=True, default=VERSION_1)
1285 1285 user_data = Column('user_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT()))))
1286 1286 action_data = Column('action_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT()))))
1287 1287
1288 1288 def __unicode__(self):
1289 1289 return u"<%s('id:%s:%s')>" % (
1290 1290 self.__class__.__name__, self.repository_name, self.action)
1291 1291
1292 1292 def __json__(self):
1293 1293 return {
1294 1294 'user_id': self.user_id,
1295 1295 'username': self.username,
1296 1296 'repository_id': self.repository_id,
1297 1297 'repository_name': self.repository_name,
1298 1298 'user_ip': self.user_ip,
1299 1299 'action_date': self.action_date,
1300 1300 'action': self.action,
1301 1301 }
1302 1302
1303 1303 @hybrid_property
1304 1304 def entry_id(self):
1305 1305 return self.user_log_id
1306 1306
1307 1307 @property
1308 1308 def action_as_day(self):
1309 1309 return datetime.date(*self.action_date.timetuple()[:3])
1310 1310
1311 1311 user = relationship('User')
1312 1312 repository = relationship('Repository', cascade='')
1313 1313
1314 1314
1315 1315 class UserGroup(Base, BaseModel):
1316 1316 __tablename__ = 'users_groups'
1317 1317 __table_args__ = (
1318 1318 base_table_args,
1319 1319 )
1320 1320
1321 1321 users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1322 1322 users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None)
1323 1323 user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None)
1324 1324 users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None)
1325 1325 inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
1326 1326 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
1327 1327 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1328 1328 _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data
1329 1329
1330 1330 members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined")
1331 1331 users_group_to_perm = relationship('UserGroupToPerm', cascade='all')
1332 1332 users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1333 1333 users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
1334 1334 user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all')
1335 1335 user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all')
1336 1336
1337 1337 user_group_review_rules = relationship('RepoReviewRuleUserGroup', cascade='all')
1338 1338 user = relationship('User', primaryjoin="User.user_id==UserGroup.user_id")
1339 1339
1340 1340 @classmethod
1341 1341 def _load_group_data(cls, column):
1342 1342 if not column:
1343 1343 return {}
1344 1344
1345 1345 try:
1346 1346 return json.loads(column) or {}
1347 1347 except TypeError:
1348 1348 return {}
1349 1349
1350 1350 @hybrid_property
1351 1351 def description_safe(self):
1352 1352 from rhodecode.lib import helpers as h
1353 1353 return h.escape(self.user_group_description)
1354 1354
1355 1355 @hybrid_property
1356 1356 def group_data(self):
1357 1357 return self._load_group_data(self._group_data)
1358 1358
1359 1359 @group_data.expression
1360 1360 def group_data(self, **kwargs):
1361 1361 return self._group_data
1362 1362
1363 1363 @group_data.setter
1364 1364 def group_data(self, val):
1365 1365 try:
1366 1366 self._group_data = json.dumps(val)
1367 1367 except Exception:
1368 1368 log.error(traceback.format_exc())
1369 1369
1370 1370 @classmethod
1371 1371 def _load_sync(cls, group_data):
1372 1372 if group_data:
1373 1373 return group_data.get('extern_type')
1374 1374
1375 1375 @property
1376 1376 def sync(self):
1377 1377 return self._load_sync(self.group_data)
1378 1378
1379 1379 def __unicode__(self):
1380 1380 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1381 1381 self.users_group_id,
1382 1382 self.users_group_name)
1383 1383
1384 1384 @classmethod
1385 1385 def get_by_group_name(cls, group_name, cache=False,
1386 1386 case_insensitive=False):
1387 1387 if case_insensitive:
1388 1388 q = cls.query().filter(func.lower(cls.users_group_name) ==
1389 1389 func.lower(group_name))
1390 1390
1391 1391 else:
1392 1392 q = cls.query().filter(cls.users_group_name == group_name)
1393 1393 if cache:
1394 1394 q = q.options(
1395 1395 FromCache("sql_cache_short", "get_group_%s" % _hash_key(group_name)))
1396 1396 return q.scalar()
1397 1397
1398 1398 @classmethod
1399 1399 def get(cls, user_group_id, cache=False):
1400 1400 if not user_group_id:
1401 1401 return
1402 1402
1403 1403 user_group = cls.query()
1404 1404 if cache:
1405 1405 user_group = user_group.options(
1406 1406 FromCache("sql_cache_short", "get_users_group_%s" % user_group_id))
1407 1407 return user_group.get(user_group_id)
1408 1408
1409 1409 def permissions(self, with_admins=True, with_owner=True,
1410 1410 expand_from_user_groups=False):
1411 1411 """
1412 1412 Permissions for user groups
1413 1413 """
1414 1414 _admin_perm = 'usergroup.admin'
1415 1415
1416 1416 owner_row = []
1417 1417 if with_owner:
1418 1418 usr = AttributeDict(self.user.get_dict())
1419 1419 usr.owner_row = True
1420 1420 usr.permission = _admin_perm
1421 1421 owner_row.append(usr)
1422 1422
1423 1423 super_admin_ids = []
1424 1424 super_admin_rows = []
1425 1425 if with_admins:
1426 1426 for usr in User.get_all_super_admins():
1427 1427 super_admin_ids.append(usr.user_id)
1428 1428 # if this admin is also owner, don't double the record
1429 1429 if usr.user_id == owner_row[0].user_id:
1430 1430 owner_row[0].admin_row = True
1431 1431 else:
1432 1432 usr = AttributeDict(usr.get_dict())
1433 1433 usr.admin_row = True
1434 1434 usr.permission = _admin_perm
1435 1435 super_admin_rows.append(usr)
1436 1436
1437 1437 q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self)
1438 1438 q = q.options(joinedload(UserUserGroupToPerm.user_group),
1439 1439 joinedload(UserUserGroupToPerm.user),
1440 1440 joinedload(UserUserGroupToPerm.permission),)
1441 1441
1442 1442 # get owners and admins and permissions. We do a trick of re-writing
1443 1443 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1444 1444 # has a global reference and changing one object propagates to all
1445 1445 # others. This means if admin is also an owner admin_row that change
1446 1446 # would propagate to both objects
1447 1447 perm_rows = []
1448 1448 for _usr in q.all():
1449 1449 usr = AttributeDict(_usr.user.get_dict())
1450 1450 # if this user is also owner/admin, mark as duplicate record
1451 1451 if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids:
1452 1452 usr.duplicate_perm = True
1453 1453 usr.permission = _usr.permission.permission_name
1454 1454 perm_rows.append(usr)
1455 1455
1456 1456 # filter the perm rows by 'default' first and then sort them by
1457 1457 # admin,write,read,none permissions sorted again alphabetically in
1458 1458 # each group
1459 1459 perm_rows = sorted(perm_rows, key=display_user_sort)
1460 1460
1461 1461 user_groups_rows = []
1462 1462 if expand_from_user_groups:
1463 1463 for ug in self.permission_user_groups(with_members=True):
1464 1464 for user_data in ug.members:
1465 1465 user_groups_rows.append(user_data)
1466 1466
1467 1467 return super_admin_rows + owner_row + perm_rows + user_groups_rows
1468 1468
1469 1469 def permission_user_groups(self, with_members=False):
1470 1470 q = UserGroupUserGroupToPerm.query()\
1471 1471 .filter(UserGroupUserGroupToPerm.target_user_group == self)
1472 1472 q = q.options(joinedload(UserGroupUserGroupToPerm.user_group),
1473 1473 joinedload(UserGroupUserGroupToPerm.target_user_group),
1474 1474 joinedload(UserGroupUserGroupToPerm.permission),)
1475 1475
1476 1476 perm_rows = []
1477 1477 for _user_group in q.all():
1478 1478 entry = AttributeDict(_user_group.user_group.get_dict())
1479 1479 entry.permission = _user_group.permission.permission_name
1480 1480 if with_members:
1481 1481 entry.members = [x.user.get_dict()
1482 1482 for x in _user_group.user_group.members]
1483 1483 perm_rows.append(entry)
1484 1484
1485 1485 perm_rows = sorted(perm_rows, key=display_user_group_sort)
1486 1486 return perm_rows
1487 1487
1488 1488 def _get_default_perms(self, user_group, suffix=''):
1489 1489 from rhodecode.model.permission import PermissionModel
1490 1490 return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix)
1491 1491
1492 1492 def get_default_perms(self, suffix=''):
1493 1493 return self._get_default_perms(self, suffix)
1494 1494
1495 1495 def get_api_data(self, with_group_members=True, include_secrets=False):
1496 1496 """
1497 1497 :param include_secrets: See :meth:`User.get_api_data`, this parameter is
1498 1498 basically forwarded.
1499 1499
1500 1500 """
1501 1501 user_group = self
1502 1502 data = {
1503 1503 'users_group_id': user_group.users_group_id,
1504 1504 'group_name': user_group.users_group_name,
1505 1505 'group_description': user_group.user_group_description,
1506 1506 'active': user_group.users_group_active,
1507 1507 'owner': user_group.user.username,
1508 1508 'sync': user_group.sync,
1509 1509 'owner_email': user_group.user.email,
1510 1510 }
1511 1511
1512 1512 if with_group_members:
1513 1513 users = []
1514 1514 for user in user_group.members:
1515 1515 user = user.user
1516 1516 users.append(user.get_api_data(include_secrets=include_secrets))
1517 1517 data['users'] = users
1518 1518
1519 1519 return data
1520 1520
1521 1521
1522 1522 class UserGroupMember(Base, BaseModel):
1523 1523 __tablename__ = 'users_groups_members'
1524 1524 __table_args__ = (
1525 1525 base_table_args,
1526 1526 )
1527 1527
1528 1528 users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1529 1529 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
1530 1530 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
1531 1531
1532 1532 user = relationship('User', lazy='joined')
1533 1533 users_group = relationship('UserGroup')
1534 1534
1535 1535 def __init__(self, gr_id='', u_id=''):
1536 1536 self.users_group_id = gr_id
1537 1537 self.user_id = u_id
1538 1538
1539 1539
1540 1540 class RepositoryField(Base, BaseModel):
1541 1541 __tablename__ = 'repositories_fields'
1542 1542 __table_args__ = (
1543 1543 UniqueConstraint('repository_id', 'field_key'), # no-multi field
1544 1544 base_table_args,
1545 1545 )
1546 1546
1547 1547 PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields
1548 1548
1549 1549 repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1550 1550 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
1551 1551 field_key = Column("field_key", String(250))
1552 1552 field_label = Column("field_label", String(1024), nullable=False)
1553 1553 field_value = Column("field_value", String(10000), nullable=False)
1554 1554 field_desc = Column("field_desc", String(1024), nullable=False)
1555 1555 field_type = Column("field_type", String(255), nullable=False, unique=None)
1556 1556 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1557 1557
1558 1558 repository = relationship('Repository')
1559 1559
1560 1560 @property
1561 1561 def field_key_prefixed(self):
1562 1562 return 'ex_%s' % self.field_key
1563 1563
1564 1564 @classmethod
1565 1565 def un_prefix_key(cls, key):
1566 1566 if key.startswith(cls.PREFIX):
1567 1567 return key[len(cls.PREFIX):]
1568 1568 return key
1569 1569
1570 1570 @classmethod
1571 1571 def get_by_key_name(cls, key, repo):
1572 1572 row = cls.query()\
1573 1573 .filter(cls.repository == repo)\
1574 1574 .filter(cls.field_key == key).scalar()
1575 1575 return row
1576 1576
1577 1577
1578 1578 class Repository(Base, BaseModel):
1579 1579 __tablename__ = 'repositories'
1580 1580 __table_args__ = (
1581 1581 Index('r_repo_name_idx', 'repo_name', mysql_length=255),
1582 1582 base_table_args,
1583 1583 )
1584 1584 DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}'
1585 1585 DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}'
1586 1586 DEFAULT_CLONE_URI_SSH = 'ssh://{sys_user}@{hostname}/{repo}'
1587 1587
1588 1588 STATE_CREATED = 'repo_state_created'
1589 1589 STATE_PENDING = 'repo_state_pending'
1590 1590 STATE_ERROR = 'repo_state_error'
1591 1591
1592 1592 LOCK_AUTOMATIC = 'lock_auto'
1593 1593 LOCK_API = 'lock_api'
1594 1594 LOCK_WEB = 'lock_web'
1595 1595 LOCK_PULL = 'lock_pull'
1596 1596
1597 1597 NAME_SEP = URL_SEP
1598 1598
1599 1599 repo_id = Column(
1600 1600 "repo_id", Integer(), nullable=False, unique=True, default=None,
1601 1601 primary_key=True)
1602 1602 _repo_name = Column(
1603 1603 "repo_name", Text(), nullable=False, default=None)
1604 1604 _repo_name_hash = Column(
1605 1605 "repo_name_hash", String(255), nullable=False, unique=True)
1606 1606 repo_state = Column("repo_state", String(255), nullable=True)
1607 1607
1608 1608 clone_uri = Column(
1609 1609 "clone_uri", EncryptedTextValue(), nullable=True, unique=False,
1610 1610 default=None)
1611 1611 push_uri = Column(
1612 1612 "push_uri", EncryptedTextValue(), nullable=True, unique=False,
1613 1613 default=None)
1614 1614 repo_type = Column(
1615 1615 "repo_type", String(255), nullable=False, unique=False, default=None)
1616 1616 user_id = Column(
1617 1617 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
1618 1618 unique=False, default=None)
1619 1619 private = Column(
1620 1620 "private", Boolean(), nullable=True, unique=None, default=None)
1621 1621 archived = Column(
1622 1622 "archived", Boolean(), nullable=True, unique=None, default=None)
1623 1623 enable_statistics = Column(
1624 1624 "statistics", Boolean(), nullable=True, unique=None, default=True)
1625 1625 enable_downloads = Column(
1626 1626 "downloads", Boolean(), nullable=True, unique=None, default=True)
1627 1627 description = Column(
1628 1628 "description", String(10000), nullable=True, unique=None, default=None)
1629 1629 created_on = Column(
1630 1630 'created_on', DateTime(timezone=False), nullable=True, unique=None,
1631 1631 default=datetime.datetime.now)
1632 1632 updated_on = Column(
1633 1633 'updated_on', DateTime(timezone=False), nullable=True, unique=None,
1634 1634 default=datetime.datetime.now)
1635 1635 _landing_revision = Column(
1636 1636 "landing_revision", String(255), nullable=False, unique=False,
1637 1637 default=None)
1638 1638 enable_locking = Column(
1639 1639 "enable_locking", Boolean(), nullable=False, unique=None,
1640 1640 default=False)
1641 1641 _locked = Column(
1642 1642 "locked", String(255), nullable=True, unique=False, default=None)
1643 1643 _changeset_cache = Column(
1644 1644 "changeset_cache", LargeBinary(), nullable=True) # JSON data
1645 1645
1646 1646 fork_id = Column(
1647 1647 "fork_id", Integer(), ForeignKey('repositories.repo_id'),
1648 1648 nullable=True, unique=False, default=None)
1649 1649 group_id = Column(
1650 1650 "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True,
1651 1651 unique=False, default=None)
1652 1652
1653 1653 user = relationship('User', lazy='joined')
1654 1654 fork = relationship('Repository', remote_side=repo_id, lazy='joined')
1655 1655 group = relationship('RepoGroup', lazy='joined')
1656 1656 repo_to_perm = relationship(
1657 1657 'UserRepoToPerm', cascade='all',
1658 1658 order_by='UserRepoToPerm.repo_to_perm_id')
1659 1659 users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1660 1660 stats = relationship('Statistics', cascade='all', uselist=False)
1661 1661
1662 1662 followers = relationship(
1663 1663 'UserFollowing',
1664 1664 primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id',
1665 1665 cascade='all')
1666 1666 extra_fields = relationship(
1667 1667 'RepositoryField', cascade="all, delete, delete-orphan")
1668 1668 logs = relationship('UserLog')
1669 1669 comments = relationship(
1670 1670 'ChangesetComment', cascade="all, delete, delete-orphan")
1671 1671 pull_requests_source = relationship(
1672 1672 'PullRequest',
1673 1673 primaryjoin='PullRequest.source_repo_id==Repository.repo_id',
1674 1674 cascade="all, delete, delete-orphan")
1675 1675 pull_requests_target = relationship(
1676 1676 'PullRequest',
1677 1677 primaryjoin='PullRequest.target_repo_id==Repository.repo_id',
1678 1678 cascade="all, delete, delete-orphan")
1679 1679 ui = relationship('RepoRhodeCodeUi', cascade="all")
1680 1680 settings = relationship('RepoRhodeCodeSetting', cascade="all")
1681 1681 integrations = relationship('Integration',
1682 1682 cascade="all, delete, delete-orphan")
1683 1683
1684 1684 scoped_tokens = relationship('UserApiKeys', cascade="all")
1685 1685
1686 1686 def __unicode__(self):
1687 1687 return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id,
1688 1688 safe_unicode(self.repo_name))
1689 1689
1690 1690 @hybrid_property
1691 1691 def description_safe(self):
1692 1692 from rhodecode.lib import helpers as h
1693 1693 return h.escape(self.description)
1694 1694
1695 1695 @hybrid_property
1696 1696 def landing_rev(self):
1697 1697 # always should return [rev_type, rev]
1698 1698 if self._landing_revision:
1699 1699 _rev_info = self._landing_revision.split(':')
1700 1700 if len(_rev_info) < 2:
1701 1701 _rev_info.insert(0, 'rev')
1702 1702 return [_rev_info[0], _rev_info[1]]
1703 1703 return [None, None]
1704 1704
1705 1705 @landing_rev.setter
1706 1706 def landing_rev(self, val):
1707 1707 if ':' not in val:
1708 1708 raise ValueError('value must be delimited with `:` and consist '
1709 1709 'of <rev_type>:<rev>, got %s instead' % val)
1710 1710 self._landing_revision = val
1711 1711
1712 1712 @hybrid_property
1713 1713 def locked(self):
1714 1714 if self._locked:
1715 1715 user_id, timelocked, reason = self._locked.split(':')
1716 1716 lock_values = int(user_id), timelocked, reason
1717 1717 else:
1718 1718 lock_values = [None, None, None]
1719 1719 return lock_values
1720 1720
1721 1721 @locked.setter
1722 1722 def locked(self, val):
1723 1723 if val and isinstance(val, (list, tuple)):
1724 1724 self._locked = ':'.join(map(str, val))
1725 1725 else:
1726 1726 self._locked = None
1727 1727
1728 1728 @hybrid_property
1729 1729 def changeset_cache(self):
1730 1730 from rhodecode.lib.vcs.backends.base import EmptyCommit
1731 1731 dummy = EmptyCommit().__json__()
1732 1732 if not self._changeset_cache:
1733 1733 dummy['source_repo_id'] = self.repo_id
1734 1734 return json.loads(json.dumps(dummy))
1735 1735
1736 1736 try:
1737 1737 return json.loads(self._changeset_cache)
1738 1738 except TypeError:
1739 1739 return dummy
1740 1740 except Exception:
1741 1741 log.error(traceback.format_exc())
1742 1742 return dummy
1743 1743
1744 1744 @changeset_cache.setter
1745 1745 def changeset_cache(self, val):
1746 1746 try:
1747 1747 self._changeset_cache = json.dumps(val)
1748 1748 except Exception:
1749 1749 log.error(traceback.format_exc())
1750 1750
1751 1751 @hybrid_property
1752 1752 def repo_name(self):
1753 1753 return self._repo_name
1754 1754
1755 1755 @repo_name.setter
1756 1756 def repo_name(self, value):
1757 1757 self._repo_name = value
1758 1758 self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest()
1759 1759
1760 1760 @classmethod
1761 1761 def normalize_repo_name(cls, repo_name):
1762 1762 """
1763 1763 Normalizes os specific repo_name to the format internally stored inside
1764 1764 database using URL_SEP
1765 1765
1766 1766 :param cls:
1767 1767 :param repo_name:
1768 1768 """
1769 1769 return cls.NAME_SEP.join(repo_name.split(os.sep))
1770 1770
1771 1771 @classmethod
1772 1772 def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False):
1773 1773 session = Session()
1774 1774 q = session.query(cls).filter(cls.repo_name == repo_name)
1775 1775
1776 1776 if cache:
1777 1777 if identity_cache:
1778 1778 val = cls.identity_cache(session, 'repo_name', repo_name)
1779 1779 if val:
1780 1780 return val
1781 1781 else:
1782 1782 cache_key = "get_repo_by_name_%s" % _hash_key(repo_name)
1783 1783 q = q.options(
1784 1784 FromCache("sql_cache_short", cache_key))
1785 1785
1786 1786 return q.scalar()
1787 1787
1788 1788 @classmethod
1789 1789 def get_by_id_or_repo_name(cls, repoid):
1790 1790 if isinstance(repoid, (int, long)):
1791 1791 try:
1792 1792 repo = cls.get(repoid)
1793 1793 except ValueError:
1794 1794 repo = None
1795 1795 else:
1796 1796 repo = cls.get_by_repo_name(repoid)
1797 1797 return repo
1798 1798
1799 1799 @classmethod
1800 1800 def get_by_full_path(cls, repo_full_path):
1801 1801 repo_name = repo_full_path.split(cls.base_path(), 1)[-1]
1802 1802 repo_name = cls.normalize_repo_name(repo_name)
1803 1803 return cls.get_by_repo_name(repo_name.strip(URL_SEP))
1804 1804
1805 1805 @classmethod
1806 1806 def get_repo_forks(cls, repo_id):
1807 1807 return cls.query().filter(Repository.fork_id == repo_id)
1808 1808
1809 1809 @classmethod
1810 1810 def base_path(cls):
1811 1811 """
1812 1812 Returns base path when all repos are stored
1813 1813
1814 1814 :param cls:
1815 1815 """
1816 1816 q = Session().query(RhodeCodeUi)\
1817 1817 .filter(RhodeCodeUi.ui_key == cls.NAME_SEP)
1818 1818 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1819 1819 return q.one().ui_value
1820 1820
1821 1821 @classmethod
1822 1822 def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None),
1823 1823 case_insensitive=True, archived=False):
1824 1824 q = Repository.query()
1825 1825
1826 1826 if not archived:
1827 1827 q = q.filter(Repository.archived.isnot(true()))
1828 1828
1829 1829 if not isinstance(user_id, Optional):
1830 1830 q = q.filter(Repository.user_id == user_id)
1831 1831
1832 1832 if not isinstance(group_id, Optional):
1833 1833 q = q.filter(Repository.group_id == group_id)
1834 1834
1835 1835 if case_insensitive:
1836 1836 q = q.order_by(func.lower(Repository.repo_name))
1837 1837 else:
1838 1838 q = q.order_by(Repository.repo_name)
1839 1839
1840 1840 return q.all()
1841 1841
1842 1842 @property
1843 1843 def forks(self):
1844 1844 """
1845 1845 Return forks of this repo
1846 1846 """
1847 1847 return Repository.get_repo_forks(self.repo_id)
1848 1848
1849 1849 @property
1850 1850 def parent(self):
1851 1851 """
1852 1852 Returns fork parent
1853 1853 """
1854 1854 return self.fork
1855 1855
1856 1856 @property
1857 1857 def just_name(self):
1858 1858 return self.repo_name.split(self.NAME_SEP)[-1]
1859 1859
1860 1860 @property
1861 1861 def groups_with_parents(self):
1862 1862 groups = []
1863 1863 if self.group is None:
1864 1864 return groups
1865 1865
1866 1866 cur_gr = self.group
1867 1867 groups.insert(0, cur_gr)
1868 1868 while 1:
1869 1869 gr = getattr(cur_gr, 'parent_group', None)
1870 1870 cur_gr = cur_gr.parent_group
1871 1871 if gr is None:
1872 1872 break
1873 1873 groups.insert(0, gr)
1874 1874
1875 1875 return groups
1876 1876
1877 1877 @property
1878 1878 def groups_and_repo(self):
1879 1879 return self.groups_with_parents, self
1880 1880
1881 1881 @LazyProperty
1882 1882 def repo_path(self):
1883 1883 """
1884 1884 Returns base full path for that repository means where it actually
1885 1885 exists on a filesystem
1886 1886 """
1887 1887 q = Session().query(RhodeCodeUi).filter(
1888 1888 RhodeCodeUi.ui_key == self.NAME_SEP)
1889 1889 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1890 1890 return q.one().ui_value
1891 1891
1892 1892 @property
1893 1893 def repo_full_path(self):
1894 1894 p = [self.repo_path]
1895 1895 # we need to split the name by / since this is how we store the
1896 1896 # names in the database, but that eventually needs to be converted
1897 1897 # into a valid system path
1898 1898 p += self.repo_name.split(self.NAME_SEP)
1899 1899 return os.path.join(*map(safe_unicode, p))
1900 1900
1901 1901 @property
1902 1902 def cache_keys(self):
1903 1903 """
1904 1904 Returns associated cache keys for that repo
1905 1905 """
1906 1906 invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format(
1907 1907 repo_id=self.repo_id)
1908 1908 return CacheKey.query()\
1909 1909 .filter(CacheKey.cache_args == invalidation_namespace)\
1910 1910 .order_by(CacheKey.cache_key)\
1911 1911 .all()
1912 1912
1913 1913 @property
1914 1914 def cached_diffs_relative_dir(self):
1915 1915 """
1916 1916 Return a relative to the repository store path of cached diffs
1917 1917 used for safe display for users, who shouldn't know the absolute store
1918 1918 path
1919 1919 """
1920 1920 return os.path.join(
1921 1921 os.path.dirname(self.repo_name),
1922 1922 self.cached_diffs_dir.split(os.path.sep)[-1])
1923 1923
1924 1924 @property
1925 1925 def cached_diffs_dir(self):
1926 1926 path = self.repo_full_path
1927 1927 return os.path.join(
1928 1928 os.path.dirname(path),
1929 1929 '.__shadow_diff_cache_repo_{}'.format(self.repo_id))
1930 1930
1931 1931 def cached_diffs(self):
1932 1932 diff_cache_dir = self.cached_diffs_dir
1933 1933 if os.path.isdir(diff_cache_dir):
1934 1934 return os.listdir(diff_cache_dir)
1935 1935 return []
1936 1936
1937 1937 def shadow_repos(self):
1938 1938 shadow_repos_pattern = '.__shadow_repo_{}'.format(self.repo_id)
1939 1939 return [
1940 1940 x for x in os.listdir(os.path.dirname(self.repo_full_path))
1941 1941 if x.startswith(shadow_repos_pattern)]
1942 1942
1943 1943 def get_new_name(self, repo_name):
1944 1944 """
1945 1945 returns new full repository name based on assigned group and new new
1946 1946
1947 1947 :param group_name:
1948 1948 """
1949 1949 path_prefix = self.group.full_path_splitted if self.group else []
1950 1950 return self.NAME_SEP.join(path_prefix + [repo_name])
1951 1951
1952 1952 @property
1953 1953 def _config(self):
1954 1954 """
1955 1955 Returns db based config object.
1956 1956 """
1957 1957 from rhodecode.lib.utils import make_db_config
1958 1958 return make_db_config(clear_session=False, repo=self)
1959 1959
1960 1960 def permissions(self, with_admins=True, with_owner=True,
1961 1961 expand_from_user_groups=False):
1962 1962 """
1963 1963 Permissions for repositories
1964 1964 """
1965 1965 _admin_perm = 'repository.admin'
1966 1966
1967 1967 owner_row = []
1968 1968 if with_owner:
1969 1969 usr = AttributeDict(self.user.get_dict())
1970 1970 usr.owner_row = True
1971 1971 usr.permission = _admin_perm
1972 1972 usr.permission_id = None
1973 1973 owner_row.append(usr)
1974 1974
1975 1975 super_admin_ids = []
1976 1976 super_admin_rows = []
1977 1977 if with_admins:
1978 1978 for usr in User.get_all_super_admins():
1979 1979 super_admin_ids.append(usr.user_id)
1980 1980 # if this admin is also owner, don't double the record
1981 1981 if usr.user_id == owner_row[0].user_id:
1982 1982 owner_row[0].admin_row = True
1983 1983 else:
1984 1984 usr = AttributeDict(usr.get_dict())
1985 1985 usr.admin_row = True
1986 1986 usr.permission = _admin_perm
1987 1987 usr.permission_id = None
1988 1988 super_admin_rows.append(usr)
1989 1989
1990 1990 q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self)
1991 1991 q = q.options(joinedload(UserRepoToPerm.repository),
1992 1992 joinedload(UserRepoToPerm.user),
1993 1993 joinedload(UserRepoToPerm.permission),)
1994 1994
1995 1995 # get owners and admins and permissions. We do a trick of re-writing
1996 1996 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1997 1997 # has a global reference and changing one object propagates to all
1998 1998 # others. This means if admin is also an owner admin_row that change
1999 1999 # would propagate to both objects
2000 2000 perm_rows = []
2001 2001 for _usr in q.all():
2002 2002 usr = AttributeDict(_usr.user.get_dict())
2003 2003 # if this user is also owner/admin, mark as duplicate record
2004 2004 if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids:
2005 2005 usr.duplicate_perm = True
2006 2006 # also check if this permission is maybe used by branch_permissions
2007 2007 if _usr.branch_perm_entry:
2008 2008 usr.branch_rules = [x.branch_rule_id for x in _usr.branch_perm_entry]
2009 2009
2010 2010 usr.permission = _usr.permission.permission_name
2011 2011 usr.permission_id = _usr.repo_to_perm_id
2012 2012 perm_rows.append(usr)
2013 2013
2014 2014 # filter the perm rows by 'default' first and then sort them by
2015 2015 # admin,write,read,none permissions sorted again alphabetically in
2016 2016 # each group
2017 2017 perm_rows = sorted(perm_rows, key=display_user_sort)
2018 2018
2019 2019 user_groups_rows = []
2020 2020 if expand_from_user_groups:
2021 2021 for ug in self.permission_user_groups(with_members=True):
2022 2022 for user_data in ug.members:
2023 2023 user_groups_rows.append(user_data)
2024 2024
2025 2025 return super_admin_rows + owner_row + perm_rows + user_groups_rows
2026 2026
2027 2027 def permission_user_groups(self, with_members=True):
2028 2028 q = UserGroupRepoToPerm.query()\
2029 2029 .filter(UserGroupRepoToPerm.repository == self)
2030 2030 q = q.options(joinedload(UserGroupRepoToPerm.repository),
2031 2031 joinedload(UserGroupRepoToPerm.users_group),
2032 2032 joinedload(UserGroupRepoToPerm.permission),)
2033 2033
2034 2034 perm_rows = []
2035 2035 for _user_group in q.all():
2036 2036 entry = AttributeDict(_user_group.users_group.get_dict())
2037 2037 entry.permission = _user_group.permission.permission_name
2038 2038 if with_members:
2039 2039 entry.members = [x.user.get_dict()
2040 2040 for x in _user_group.users_group.members]
2041 2041 perm_rows.append(entry)
2042 2042
2043 2043 perm_rows = sorted(perm_rows, key=display_user_group_sort)
2044 2044 return perm_rows
2045 2045
2046 2046 def get_api_data(self, include_secrets=False):
2047 2047 """
2048 2048 Common function for generating repo api data
2049 2049
2050 2050 :param include_secrets: See :meth:`User.get_api_data`.
2051 2051
2052 2052 """
2053 2053 # TODO: mikhail: Here there is an anti-pattern, we probably need to
2054 2054 # move this methods on models level.
2055 2055 from rhodecode.model.settings import SettingsModel
2056 2056 from rhodecode.model.repo import RepoModel
2057 2057
2058 2058 repo = self
2059 2059 _user_id, _time, _reason = self.locked
2060 2060
2061 2061 data = {
2062 2062 'repo_id': repo.repo_id,
2063 2063 'repo_name': repo.repo_name,
2064 2064 'repo_type': repo.repo_type,
2065 2065 'clone_uri': repo.clone_uri or '',
2066 2066 'push_uri': repo.push_uri or '',
2067 2067 'url': RepoModel().get_url(self),
2068 2068 'private': repo.private,
2069 2069 'created_on': repo.created_on,
2070 2070 'description': repo.description_safe,
2071 2071 'landing_rev': repo.landing_rev,
2072 2072 'owner': repo.user.username,
2073 2073 'fork_of': repo.fork.repo_name if repo.fork else None,
2074 2074 'fork_of_id': repo.fork.repo_id if repo.fork else None,
2075 2075 'enable_statistics': repo.enable_statistics,
2076 2076 'enable_locking': repo.enable_locking,
2077 2077 'enable_downloads': repo.enable_downloads,
2078 2078 'last_changeset': repo.changeset_cache,
2079 2079 'locked_by': User.get(_user_id).get_api_data(
2080 2080 include_secrets=include_secrets) if _user_id else None,
2081 2081 'locked_date': time_to_datetime(_time) if _time else None,
2082 2082 'lock_reason': _reason if _reason else None,
2083 2083 }
2084 2084
2085 2085 # TODO: mikhail: should be per-repo settings here
2086 2086 rc_config = SettingsModel().get_all_settings()
2087 2087 repository_fields = str2bool(
2088 2088 rc_config.get('rhodecode_repository_fields'))
2089 2089 if repository_fields:
2090 2090 for f in self.extra_fields:
2091 2091 data[f.field_key_prefixed] = f.field_value
2092 2092
2093 2093 return data
2094 2094
2095 2095 @classmethod
2096 2096 def lock(cls, repo, user_id, lock_time=None, lock_reason=None):
2097 2097 if not lock_time:
2098 2098 lock_time = time.time()
2099 2099 if not lock_reason:
2100 2100 lock_reason = cls.LOCK_AUTOMATIC
2101 2101 repo.locked = [user_id, lock_time, lock_reason]
2102 2102 Session().add(repo)
2103 2103 Session().commit()
2104 2104
2105 2105 @classmethod
2106 2106 def unlock(cls, repo):
2107 2107 repo.locked = None
2108 2108 Session().add(repo)
2109 2109 Session().commit()
2110 2110
2111 2111 @classmethod
2112 2112 def getlock(cls, repo):
2113 2113 return repo.locked
2114 2114
2115 2115 def is_user_lock(self, user_id):
2116 2116 if self.lock[0]:
2117 2117 lock_user_id = safe_int(self.lock[0])
2118 2118 user_id = safe_int(user_id)
2119 2119 # both are ints, and they are equal
2120 2120 return all([lock_user_id, user_id]) and lock_user_id == user_id
2121 2121
2122 2122 return False
2123 2123
2124 2124 def get_locking_state(self, action, user_id, only_when_enabled=True):
2125 2125 """
2126 2126 Checks locking on this repository, if locking is enabled and lock is
2127 2127 present returns a tuple of make_lock, locked, locked_by.
2128 2128 make_lock can have 3 states None (do nothing) True, make lock
2129 2129 False release lock, This value is later propagated to hooks, which
2130 2130 do the locking. Think about this as signals passed to hooks what to do.
2131 2131
2132 2132 """
2133 2133 # TODO: johbo: This is part of the business logic and should be moved
2134 2134 # into the RepositoryModel.
2135 2135
2136 2136 if action not in ('push', 'pull'):
2137 2137 raise ValueError("Invalid action value: %s" % repr(action))
2138 2138
2139 2139 # defines if locked error should be thrown to user
2140 2140 currently_locked = False
2141 2141 # defines if new lock should be made, tri-state
2142 2142 make_lock = None
2143 2143 repo = self
2144 2144 user = User.get(user_id)
2145 2145
2146 2146 lock_info = repo.locked
2147 2147
2148 2148 if repo and (repo.enable_locking or not only_when_enabled):
2149 2149 if action == 'push':
2150 2150 # check if it's already locked !, if it is compare users
2151 2151 locked_by_user_id = lock_info[0]
2152 2152 if user.user_id == locked_by_user_id:
2153 2153 log.debug(
2154 2154 'Got `push` action from user %s, now unlocking', user)
2155 2155 # unlock if we have push from user who locked
2156 2156 make_lock = False
2157 2157 else:
2158 2158 # we're not the same user who locked, ban with
2159 2159 # code defined in settings (default is 423 HTTP Locked) !
2160 2160 log.debug('Repo %s is currently locked by %s', repo, user)
2161 2161 currently_locked = True
2162 2162 elif action == 'pull':
2163 2163 # [0] user [1] date
2164 2164 if lock_info[0] and lock_info[1]:
2165 2165 log.debug('Repo %s is currently locked by %s', repo, user)
2166 2166 currently_locked = True
2167 2167 else:
2168 2168 log.debug('Setting lock on repo %s by %s', repo, user)
2169 2169 make_lock = True
2170 2170
2171 2171 else:
2172 2172 log.debug('Repository %s do not have locking enabled', repo)
2173 2173
2174 2174 log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s',
2175 2175 make_lock, currently_locked, lock_info)
2176 2176
2177 2177 from rhodecode.lib.auth import HasRepoPermissionAny
2178 2178 perm_check = HasRepoPermissionAny('repository.write', 'repository.admin')
2179 2179 if make_lock and not perm_check(repo_name=repo.repo_name, user=user):
2180 2180 # if we don't have at least write permission we cannot make a lock
2181 2181 log.debug('lock state reset back to FALSE due to lack '
2182 2182 'of at least read permission')
2183 2183 make_lock = False
2184 2184
2185 2185 return make_lock, currently_locked, lock_info
2186 2186
2187 2187 @property
2188 2188 def last_commit_cache_update_diff(self):
2189 2189 return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0)
2190 2190
2191 2191 @property
2192 2192 def last_commit_change(self):
2193 2193 from rhodecode.lib.vcs.utils.helpers import parse_datetime
2194 2194 empty_date = datetime.datetime.fromtimestamp(0)
2195 2195 date_latest = self.changeset_cache.get('date', empty_date)
2196 2196 try:
2197 2197 return parse_datetime(date_latest)
2198 2198 except Exception:
2199 2199 return empty_date
2200 2200
2201 2201 @property
2202 2202 def last_db_change(self):
2203 2203 return self.updated_on
2204 2204
2205 2205 @property
2206 2206 def clone_uri_hidden(self):
2207 2207 clone_uri = self.clone_uri
2208 2208 if clone_uri:
2209 2209 import urlobject
2210 2210 url_obj = urlobject.URLObject(cleaned_uri(clone_uri))
2211 2211 if url_obj.password:
2212 2212 clone_uri = url_obj.with_password('*****')
2213 2213 return clone_uri
2214 2214
2215 2215 @property
2216 2216 def push_uri_hidden(self):
2217 2217 push_uri = self.push_uri
2218 2218 if push_uri:
2219 2219 import urlobject
2220 2220 url_obj = urlobject.URLObject(cleaned_uri(push_uri))
2221 2221 if url_obj.password:
2222 2222 push_uri = url_obj.with_password('*****')
2223 2223 return push_uri
2224 2224
2225 2225 def clone_url(self, **override):
2226 2226 from rhodecode.model.settings import SettingsModel
2227 2227
2228 2228 uri_tmpl = None
2229 2229 if 'with_id' in override:
2230 2230 uri_tmpl = self.DEFAULT_CLONE_URI_ID
2231 2231 del override['with_id']
2232 2232
2233 2233 if 'uri_tmpl' in override:
2234 2234 uri_tmpl = override['uri_tmpl']
2235 2235 del override['uri_tmpl']
2236 2236
2237 2237 ssh = False
2238 2238 if 'ssh' in override:
2239 2239 ssh = True
2240 2240 del override['ssh']
2241 2241
2242 2242 # we didn't override our tmpl from **overrides
2243 2243 if not uri_tmpl:
2244 2244 rc_config = SettingsModel().get_all_settings(cache=True)
2245 2245 if ssh:
2246 2246 uri_tmpl = rc_config.get(
2247 2247 'rhodecode_clone_uri_ssh_tmpl') or self.DEFAULT_CLONE_URI_SSH
2248 2248 else:
2249 2249 uri_tmpl = rc_config.get(
2250 2250 'rhodecode_clone_uri_tmpl') or self.DEFAULT_CLONE_URI
2251 2251
2252 2252 request = get_current_request()
2253 2253 return get_clone_url(request=request,
2254 2254 uri_tmpl=uri_tmpl,
2255 2255 repo_name=self.repo_name,
2256 2256 repo_id=self.repo_id, **override)
2257 2257
2258 2258 def set_state(self, state):
2259 2259 self.repo_state = state
2260 2260 Session().add(self)
2261 2261 #==========================================================================
2262 2262 # SCM PROPERTIES
2263 2263 #==========================================================================
2264 2264
2265 2265 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None):
2266 2266 return get_commit_safe(
2267 2267 self.scm_instance(), commit_id, commit_idx, pre_load=pre_load)
2268 2268
2269 2269 def get_changeset(self, rev=None, pre_load=None):
2270 2270 warnings.warn("Use get_commit", DeprecationWarning)
2271 2271 commit_id = None
2272 2272 commit_idx = None
2273 2273 if isinstance(rev, compat.string_types):
2274 2274 commit_id = rev
2275 2275 else:
2276 2276 commit_idx = rev
2277 2277 return self.get_commit(commit_id=commit_id, commit_idx=commit_idx,
2278 2278 pre_load=pre_load)
2279 2279
2280 2280 def get_landing_commit(self):
2281 2281 """
2282 2282 Returns landing commit, or if that doesn't exist returns the tip
2283 2283 """
2284 2284 _rev_type, _rev = self.landing_rev
2285 2285 commit = self.get_commit(_rev)
2286 2286 if isinstance(commit, EmptyCommit):
2287 2287 return self.get_commit()
2288 2288 return commit
2289 2289
2290 2290 def update_commit_cache(self, cs_cache=None, config=None):
2291 2291 """
2292 2292 Update cache of last changeset for repository, keys should be::
2293 2293
2294 2294 source_repo_id
2295 2295 short_id
2296 2296 raw_id
2297 2297 revision
2298 2298 parents
2299 2299 message
2300 2300 date
2301 2301 author
2302 2302 updated_on
2303 2303
2304 2304 """
2305 2305 from rhodecode.lib.vcs.backends.base import BaseChangeset
2306 2306 if cs_cache is None:
2307 2307 # use no-cache version here
2308 2308 scm_repo = self.scm_instance(cache=False, config=config)
2309 2309
2310 empty = not scm_repo or scm_repo.is_empty()
2310 empty = scm_repo is None or scm_repo.is_empty()
2311 2311 if not empty:
2312 2312 cs_cache = scm_repo.get_commit(
2313 2313 pre_load=["author", "date", "message", "parents"])
2314 2314 else:
2315 2315 cs_cache = EmptyCommit()
2316 2316
2317 2317 if isinstance(cs_cache, BaseChangeset):
2318 2318 cs_cache = cs_cache.__json__()
2319 2319
2320 2320 def is_outdated(new_cs_cache):
2321 2321 if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or
2322 2322 new_cs_cache['revision'] != self.changeset_cache['revision']):
2323 2323 return True
2324 2324 return False
2325 2325
2326 2326 # check if we have maybe already latest cached revision
2327 2327 if is_outdated(cs_cache) or not self.changeset_cache:
2328 2328 _default = datetime.datetime.utcnow()
2329 2329 last_change = cs_cache.get('date') or _default
2330 2330 # we check if last update is newer than the new value
2331 2331 # if yes, we use the current timestamp instead. Imagine you get
2332 2332 # old commit pushed 1y ago, we'd set last update 1y to ago.
2333 2333 last_change_timestamp = datetime_to_time(last_change)
2334 2334 current_timestamp = datetime_to_time(last_change)
2335 2335 if last_change_timestamp > current_timestamp:
2336 2336 cs_cache['date'] = _default
2337 2337
2338 2338 cs_cache['updated_on'] = time.time()
2339 2339 self.changeset_cache = cs_cache
2340 2340 Session().add(self)
2341 2341 Session().commit()
2342 2342
2343 2343 log.debug('updated repo %s with new commit cache %s',
2344 2344 self.repo_name, cs_cache)
2345 2345 else:
2346 2346 log.debug('Skipping update_commit_cache for repo:`%s` '
2347 2347 'commit already with latest changes', self.repo_name)
2348 2348
2349 2349 @property
2350 2350 def tip(self):
2351 2351 return self.get_commit('tip')
2352 2352
2353 2353 @property
2354 2354 def author(self):
2355 2355 return self.tip.author
2356 2356
2357 2357 @property
2358 2358 def last_change(self):
2359 2359 return self.scm_instance().last_change
2360 2360
2361 2361 def get_comments(self, revisions=None):
2362 2362 """
2363 2363 Returns comments for this repository grouped by revisions
2364 2364
2365 2365 :param revisions: filter query by revisions only
2366 2366 """
2367 2367 cmts = ChangesetComment.query()\
2368 2368 .filter(ChangesetComment.repo == self)
2369 2369 if revisions:
2370 2370 cmts = cmts.filter(ChangesetComment.revision.in_(revisions))
2371 2371 grouped = collections.defaultdict(list)
2372 2372 for cmt in cmts.all():
2373 2373 grouped[cmt.revision].append(cmt)
2374 2374 return grouped
2375 2375
2376 2376 def statuses(self, revisions=None):
2377 2377 """
2378 2378 Returns statuses for this repository
2379 2379
2380 2380 :param revisions: list of revisions to get statuses for
2381 2381 """
2382 2382 statuses = ChangesetStatus.query()\
2383 2383 .filter(ChangesetStatus.repo == self)\
2384 2384 .filter(ChangesetStatus.version == 0)
2385 2385
2386 2386 if revisions:
2387 2387 # Try doing the filtering in chunks to avoid hitting limits
2388 2388 size = 500
2389 2389 status_results = []
2390 2390 for chunk in xrange(0, len(revisions), size):
2391 2391 status_results += statuses.filter(
2392 2392 ChangesetStatus.revision.in_(
2393 2393 revisions[chunk: chunk+size])
2394 2394 ).all()
2395 2395 else:
2396 2396 status_results = statuses.all()
2397 2397
2398 2398 grouped = {}
2399 2399
2400 2400 # maybe we have open new pullrequest without a status?
2401 2401 stat = ChangesetStatus.STATUS_UNDER_REVIEW
2402 2402 status_lbl = ChangesetStatus.get_status_lbl(stat)
2403 2403 for pr in PullRequest.query().filter(PullRequest.source_repo == self).all():
2404 2404 for rev in pr.revisions:
2405 2405 pr_id = pr.pull_request_id
2406 2406 pr_repo = pr.target_repo.repo_name
2407 2407 grouped[rev] = [stat, status_lbl, pr_id, pr_repo]
2408 2408
2409 2409 for stat in status_results:
2410 2410 pr_id = pr_repo = None
2411 2411 if stat.pull_request:
2412 2412 pr_id = stat.pull_request.pull_request_id
2413 2413 pr_repo = stat.pull_request.target_repo.repo_name
2414 2414 grouped[stat.revision] = [str(stat.status), stat.status_lbl,
2415 2415 pr_id, pr_repo]
2416 2416 return grouped
2417 2417
2418 2418 # ==========================================================================
2419 2419 # SCM CACHE INSTANCE
2420 2420 # ==========================================================================
2421 2421
2422 2422 def scm_instance(self, **kwargs):
2423 2423 import rhodecode
2424 2424
2425 2425 # Passing a config will not hit the cache currently only used
2426 2426 # for repo2dbmapper
2427 2427 config = kwargs.pop('config', None)
2428 2428 cache = kwargs.pop('cache', None)
2429 2429 full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache'))
2430 2430 # if cache is NOT defined use default global, else we have a full
2431 2431 # control over cache behaviour
2432 2432 if cache is None and full_cache and not config:
2433 2433 return self._get_instance_cached()
2434 2434 return self._get_instance(cache=bool(cache), config=config)
2435 2435
2436 2436 def _get_instance_cached(self):
2437 2437 from rhodecode.lib import rc_cache
2438 2438
2439 2439 cache_namespace_uid = 'cache_repo_instance.{}'.format(self.repo_id)
2440 2440 invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format(
2441 2441 repo_id=self.repo_id)
2442 2442 region = rc_cache.get_or_create_region('cache_repo_longterm', cache_namespace_uid)
2443 2443
2444 2444 @region.conditional_cache_on_arguments(namespace=cache_namespace_uid)
2445 2445 def get_instance_cached(repo_id, context_id):
2446 2446 return self._get_instance()
2447 2447
2448 2448 # we must use thread scoped cache here,
2449 2449 # because each thread of gevent needs it's own not shared connection and cache
2450 2450 # we also alter `args` so the cache key is individual for every green thread.
2451 2451 inv_context_manager = rc_cache.InvalidationContext(
2452 2452 uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace,
2453 2453 thread_scoped=True)
2454 2454 with inv_context_manager as invalidation_context:
2455 2455 args = (self.repo_id, inv_context_manager.cache_key)
2456 2456 # re-compute and store cache if we get invalidate signal
2457 2457 if invalidation_context.should_invalidate():
2458 2458 instance = get_instance_cached.refresh(*args)
2459 2459 else:
2460 2460 instance = get_instance_cached(*args)
2461 2461
2462 2462 log.debug(
2463 2463 'Repo instance fetched in %.3fs', inv_context_manager.compute_time)
2464 2464 return instance
2465 2465
2466 2466 def _get_instance(self, cache=True, config=None):
2467 2467 config = config or self._config
2468 2468 custom_wire = {
2469 2469 'cache': cache # controls the vcs.remote cache
2470 2470 }
2471 2471 repo = get_vcs_instance(
2472 2472 repo_path=safe_str(self.repo_full_path),
2473 2473 config=config,
2474 2474 with_wire=custom_wire,
2475 2475 create=False,
2476 2476 _vcs_alias=self.repo_type)
2477 2477
2478 2478 return repo
2479 2479
2480 2480 def __json__(self):
2481 2481 return {'landing_rev': self.landing_rev}
2482 2482
2483 2483 def get_dict(self):
2484 2484
2485 2485 # Since we transformed `repo_name` to a hybrid property, we need to
2486 2486 # keep compatibility with the code which uses `repo_name` field.
2487 2487
2488 2488 result = super(Repository, self).get_dict()
2489 2489 result['repo_name'] = result.pop('_repo_name', None)
2490 2490 return result
2491 2491
2492 2492
2493 2493 class RepoGroup(Base, BaseModel):
2494 2494 __tablename__ = 'groups'
2495 2495 __table_args__ = (
2496 2496 UniqueConstraint('group_name', 'group_parent_id'),
2497 2497 base_table_args,
2498 2498 )
2499 2499 __mapper_args__ = {'order_by': 'group_name'}
2500 2500
2501 2501 CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups
2502 2502
2503 2503 group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2504 2504 _group_name = Column("group_name", String(255), nullable=False, unique=True, default=None)
2505 2505 group_name_hash = Column("repo_group_name_hash", String(1024), nullable=False, unique=False)
2506 2506 group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None)
2507 2507 group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None)
2508 2508 enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False)
2509 2509 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
2510 2510 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2511 2511 updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
2512 2512 personal = Column('personal', Boolean(), nullable=True, unique=None, default=None)
2513 2513 _changeset_cache = Column(
2514 2514 "changeset_cache", LargeBinary(), nullable=True) # JSON data
2515 2515
2516 2516 repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id')
2517 2517 users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
2518 2518 parent_group = relationship('RepoGroup', remote_side=group_id)
2519 2519 user = relationship('User')
2520 2520 integrations = relationship('Integration', cascade="all, delete, delete-orphan")
2521 2521
2522 2522 def __init__(self, group_name='', parent_group=None):
2523 2523 self.group_name = group_name
2524 2524 self.parent_group = parent_group
2525 2525
2526 2526 def __unicode__(self):
2527 2527 return u"<%s('id:%s:%s')>" % (
2528 2528 self.__class__.__name__, self.group_id, self.group_name)
2529 2529
2530 2530 @hybrid_property
2531 2531 def group_name(self):
2532 2532 return self._group_name
2533 2533
2534 2534 @group_name.setter
2535 2535 def group_name(self, value):
2536 2536 self._group_name = value
2537 2537 self.group_name_hash = self.hash_repo_group_name(value)
2538 2538
2539 2539 @hybrid_property
2540 2540 def changeset_cache(self):
2541 2541 from rhodecode.lib.vcs.backends.base import EmptyCommit
2542 2542 dummy = EmptyCommit().__json__()
2543 2543 if not self._changeset_cache:
2544 2544 dummy['source_repo_id'] = ''
2545 2545 return json.loads(json.dumps(dummy))
2546 2546
2547 2547 try:
2548 2548 return json.loads(self._changeset_cache)
2549 2549 except TypeError:
2550 2550 return dummy
2551 2551 except Exception:
2552 2552 log.error(traceback.format_exc())
2553 2553 return dummy
2554 2554
2555 2555 @changeset_cache.setter
2556 2556 def changeset_cache(self, val):
2557 2557 try:
2558 2558 self._changeset_cache = json.dumps(val)
2559 2559 except Exception:
2560 2560 log.error(traceback.format_exc())
2561 2561
2562 2562 @validates('group_parent_id')
2563 2563 def validate_group_parent_id(self, key, val):
2564 2564 """
2565 2565 Check cycle references for a parent group to self
2566 2566 """
2567 2567 if self.group_id and val:
2568 2568 assert val != self.group_id
2569 2569
2570 2570 return val
2571 2571
2572 2572 @hybrid_property
2573 2573 def description_safe(self):
2574 2574 from rhodecode.lib import helpers as h
2575 2575 return h.escape(self.group_description)
2576 2576
2577 2577 @classmethod
2578 2578 def hash_repo_group_name(cls, repo_group_name):
2579 2579 val = remove_formatting(repo_group_name)
2580 2580 val = safe_str(val).lower()
2581 2581 chars = []
2582 2582 for c in val:
2583 2583 if c not in string.ascii_letters:
2584 2584 c = str(ord(c))
2585 2585 chars.append(c)
2586 2586
2587 2587 return ''.join(chars)
2588 2588
2589 2589 @classmethod
2590 2590 def _generate_choice(cls, repo_group):
2591 2591 from webhelpers.html import literal as _literal
2592 2592 _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k))
2593 2593 return repo_group.group_id, _name(repo_group.full_path_splitted)
2594 2594
2595 2595 @classmethod
2596 2596 def groups_choices(cls, groups=None, show_empty_group=True):
2597 2597 if not groups:
2598 2598 groups = cls.query().all()
2599 2599
2600 2600 repo_groups = []
2601 2601 if show_empty_group:
2602 2602 repo_groups = [(-1, u'-- %s --' % _('No parent'))]
2603 2603
2604 2604 repo_groups.extend([cls._generate_choice(x) for x in groups])
2605 2605
2606 2606 repo_groups = sorted(
2607 2607 repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0])
2608 2608 return repo_groups
2609 2609
2610 2610 @classmethod
2611 2611 def url_sep(cls):
2612 2612 return URL_SEP
2613 2613
2614 2614 @classmethod
2615 2615 def get_by_group_name(cls, group_name, cache=False, case_insensitive=False):
2616 2616 if case_insensitive:
2617 2617 gr = cls.query().filter(func.lower(cls.group_name)
2618 2618 == func.lower(group_name))
2619 2619 else:
2620 2620 gr = cls.query().filter(cls.group_name == group_name)
2621 2621 if cache:
2622 2622 name_key = _hash_key(group_name)
2623 2623 gr = gr.options(
2624 2624 FromCache("sql_cache_short", "get_group_%s" % name_key))
2625 2625 return gr.scalar()
2626 2626
2627 2627 @classmethod
2628 2628 def get_user_personal_repo_group(cls, user_id):
2629 2629 user = User.get(user_id)
2630 2630 if user.username == User.DEFAULT_USER:
2631 2631 return None
2632 2632
2633 2633 return cls.query()\
2634 2634 .filter(cls.personal == true()) \
2635 2635 .filter(cls.user == user) \
2636 2636 .order_by(cls.group_id.asc()) \
2637 2637 .first()
2638 2638
2639 2639 @classmethod
2640 2640 def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None),
2641 2641 case_insensitive=True):
2642 2642 q = RepoGroup.query()
2643 2643
2644 2644 if not isinstance(user_id, Optional):
2645 2645 q = q.filter(RepoGroup.user_id == user_id)
2646 2646
2647 2647 if not isinstance(group_id, Optional):
2648 2648 q = q.filter(RepoGroup.group_parent_id == group_id)
2649 2649
2650 2650 if case_insensitive:
2651 2651 q = q.order_by(func.lower(RepoGroup.group_name))
2652 2652 else:
2653 2653 q = q.order_by(RepoGroup.group_name)
2654 2654 return q.all()
2655 2655
2656 2656 @property
2657 2657 def parents(self, parents_recursion_limit = 10):
2658 2658 groups = []
2659 2659 if self.parent_group is None:
2660 2660 return groups
2661 2661 cur_gr = self.parent_group
2662 2662 groups.insert(0, cur_gr)
2663 2663 cnt = 0
2664 2664 while 1:
2665 2665 cnt += 1
2666 2666 gr = getattr(cur_gr, 'parent_group', None)
2667 2667 cur_gr = cur_gr.parent_group
2668 2668 if gr is None:
2669 2669 break
2670 2670 if cnt == parents_recursion_limit:
2671 2671 # this will prevent accidental infinit loops
2672 2672 log.error('more than %s parents found for group %s, stopping '
2673 2673 'recursive parent fetching', parents_recursion_limit, self)
2674 2674 break
2675 2675
2676 2676 groups.insert(0, gr)
2677 2677 return groups
2678 2678
2679 2679 @property
2680 2680 def last_commit_cache_update_diff(self):
2681 2681 return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0)
2682 2682
2683 2683 @property
2684 2684 def last_commit_change(self):
2685 2685 from rhodecode.lib.vcs.utils.helpers import parse_datetime
2686 2686 empty_date = datetime.datetime.fromtimestamp(0)
2687 2687 date_latest = self.changeset_cache.get('date', empty_date)
2688 2688 try:
2689 2689 return parse_datetime(date_latest)
2690 2690 except Exception:
2691 2691 return empty_date
2692 2692
2693 2693 @property
2694 2694 def last_db_change(self):
2695 2695 return self.updated_on
2696 2696
2697 2697 @property
2698 2698 def children(self):
2699 2699 return RepoGroup.query().filter(RepoGroup.parent_group == self)
2700 2700
2701 2701 @property
2702 2702 def name(self):
2703 2703 return self.group_name.split(RepoGroup.url_sep())[-1]
2704 2704
2705 2705 @property
2706 2706 def full_path(self):
2707 2707 return self.group_name
2708 2708
2709 2709 @property
2710 2710 def full_path_splitted(self):
2711 2711 return self.group_name.split(RepoGroup.url_sep())
2712 2712
2713 2713 @property
2714 2714 def repositories(self):
2715 2715 return Repository.query()\
2716 2716 .filter(Repository.group == self)\
2717 2717 .order_by(Repository.repo_name)
2718 2718
2719 2719 @property
2720 2720 def repositories_recursive_count(self):
2721 2721 cnt = self.repositories.count()
2722 2722
2723 2723 def children_count(group):
2724 2724 cnt = 0
2725 2725 for child in group.children:
2726 2726 cnt += child.repositories.count()
2727 2727 cnt += children_count(child)
2728 2728 return cnt
2729 2729
2730 2730 return cnt + children_count(self)
2731 2731
2732 2732 def _recursive_objects(self, include_repos=True, include_groups=True):
2733 2733 all_ = []
2734 2734
2735 2735 def _get_members(root_gr):
2736 2736 if include_repos:
2737 2737 for r in root_gr.repositories:
2738 2738 all_.append(r)
2739 2739 childs = root_gr.children.all()
2740 2740 if childs:
2741 2741 for gr in childs:
2742 2742 if include_groups:
2743 2743 all_.append(gr)
2744 2744 _get_members(gr)
2745 2745
2746 2746 root_group = []
2747 2747 if include_groups:
2748 2748 root_group = [self]
2749 2749
2750 2750 _get_members(self)
2751 2751 return root_group + all_
2752 2752
2753 2753 def recursive_groups_and_repos(self):
2754 2754 """
2755 2755 Recursive return all groups, with repositories in those groups
2756 2756 """
2757 2757 return self._recursive_objects()
2758 2758
2759 2759 def recursive_groups(self):
2760 2760 """
2761 2761 Returns all children groups for this group including children of children
2762 2762 """
2763 2763 return self._recursive_objects(include_repos=False)
2764 2764
2765 2765 def recursive_repos(self):
2766 2766 """
2767 2767 Returns all children repositories for this group
2768 2768 """
2769 2769 return self._recursive_objects(include_groups=False)
2770 2770
2771 2771 def get_new_name(self, group_name):
2772 2772 """
2773 2773 returns new full group name based on parent and new name
2774 2774
2775 2775 :param group_name:
2776 2776 """
2777 2777 path_prefix = (self.parent_group.full_path_splitted if
2778 2778 self.parent_group else [])
2779 2779 return RepoGroup.url_sep().join(path_prefix + [group_name])
2780 2780
2781 2781 def update_commit_cache(self, config=None):
2782 2782 """
2783 2783 Update cache of last changeset for newest repository inside this group, keys should be::
2784 2784
2785 2785 source_repo_id
2786 2786 short_id
2787 2787 raw_id
2788 2788 revision
2789 2789 parents
2790 2790 message
2791 2791 date
2792 2792 author
2793 2793
2794 2794 """
2795 2795 from rhodecode.lib.vcs.utils.helpers import parse_datetime
2796 2796
2797 2797 def repo_groups_and_repos():
2798 2798 all_entries = OrderedDefaultDict(list)
2799 2799
2800 2800 def _get_members(root_gr, pos=0):
2801 2801
2802 2802 for repo in root_gr.repositories:
2803 2803 all_entries[root_gr].append(repo)
2804 2804
2805 2805 # fill in all parent positions
2806 2806 for parent_group in root_gr.parents:
2807 2807 all_entries[parent_group].extend(all_entries[root_gr])
2808 2808
2809 2809 children_groups = root_gr.children.all()
2810 2810 if children_groups:
2811 2811 for cnt, gr in enumerate(children_groups, 1):
2812 2812 _get_members(gr, pos=pos+cnt)
2813 2813
2814 2814 _get_members(root_gr=self)
2815 2815 return all_entries
2816 2816
2817 2817 empty_date = datetime.datetime.fromtimestamp(0)
2818 2818 for repo_group, repos in repo_groups_and_repos().items():
2819 2819
2820 2820 latest_repo_cs_cache = {}
2821 2821 for repo in repos:
2822 2822 repo_cs_cache = repo.changeset_cache
2823 2823 date_latest = latest_repo_cs_cache.get('date', empty_date)
2824 2824 date_current = repo_cs_cache.get('date', empty_date)
2825 2825 current_timestamp = datetime_to_time(parse_datetime(date_latest))
2826 2826 if current_timestamp < datetime_to_time(parse_datetime(date_current)):
2827 2827 latest_repo_cs_cache = repo_cs_cache
2828 2828 latest_repo_cs_cache['source_repo_id'] = repo.repo_id
2829 2829
2830 2830 latest_repo_cs_cache['updated_on'] = time.time()
2831 2831 repo_group.changeset_cache = latest_repo_cs_cache
2832 2832 Session().add(repo_group)
2833 2833 Session().commit()
2834 2834
2835 2835 log.debug('updated repo group %s with new commit cache %s',
2836 2836 repo_group.group_name, latest_repo_cs_cache)
2837 2837
2838 2838 def permissions(self, with_admins=True, with_owner=True,
2839 2839 expand_from_user_groups=False):
2840 2840 """
2841 2841 Permissions for repository groups
2842 2842 """
2843 2843 _admin_perm = 'group.admin'
2844 2844
2845 2845 owner_row = []
2846 2846 if with_owner:
2847 2847 usr = AttributeDict(self.user.get_dict())
2848 2848 usr.owner_row = True
2849 2849 usr.permission = _admin_perm
2850 2850 owner_row.append(usr)
2851 2851
2852 2852 super_admin_ids = []
2853 2853 super_admin_rows = []
2854 2854 if with_admins:
2855 2855 for usr in User.get_all_super_admins():
2856 2856 super_admin_ids.append(usr.user_id)
2857 2857 # if this admin is also owner, don't double the record
2858 2858 if usr.user_id == owner_row[0].user_id:
2859 2859 owner_row[0].admin_row = True
2860 2860 else:
2861 2861 usr = AttributeDict(usr.get_dict())
2862 2862 usr.admin_row = True
2863 2863 usr.permission = _admin_perm
2864 2864 super_admin_rows.append(usr)
2865 2865
2866 2866 q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self)
2867 2867 q = q.options(joinedload(UserRepoGroupToPerm.group),
2868 2868 joinedload(UserRepoGroupToPerm.user),
2869 2869 joinedload(UserRepoGroupToPerm.permission),)
2870 2870
2871 2871 # get owners and admins and permissions. We do a trick of re-writing
2872 2872 # objects from sqlalchemy to named-tuples due to sqlalchemy session
2873 2873 # has a global reference and changing one object propagates to all
2874 2874 # others. This means if admin is also an owner admin_row that change
2875 2875 # would propagate to both objects
2876 2876 perm_rows = []
2877 2877 for _usr in q.all():
2878 2878 usr = AttributeDict(_usr.user.get_dict())
2879 2879 # if this user is also owner/admin, mark as duplicate record
2880 2880 if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids:
2881 2881 usr.duplicate_perm = True
2882 2882 usr.permission = _usr.permission.permission_name
2883 2883 perm_rows.append(usr)
2884 2884
2885 2885 # filter the perm rows by 'default' first and then sort them by
2886 2886 # admin,write,read,none permissions sorted again alphabetically in
2887 2887 # each group
2888 2888 perm_rows = sorted(perm_rows, key=display_user_sort)
2889 2889
2890 2890 user_groups_rows = []
2891 2891 if expand_from_user_groups:
2892 2892 for ug in self.permission_user_groups(with_members=True):
2893 2893 for user_data in ug.members:
2894 2894 user_groups_rows.append(user_data)
2895 2895
2896 2896 return super_admin_rows + owner_row + perm_rows + user_groups_rows
2897 2897
2898 2898 def permission_user_groups(self, with_members=False):
2899 2899 q = UserGroupRepoGroupToPerm.query()\
2900 2900 .filter(UserGroupRepoGroupToPerm.group == self)
2901 2901 q = q.options(joinedload(UserGroupRepoGroupToPerm.group),
2902 2902 joinedload(UserGroupRepoGroupToPerm.users_group),
2903 2903 joinedload(UserGroupRepoGroupToPerm.permission),)
2904 2904
2905 2905 perm_rows = []
2906 2906 for _user_group in q.all():
2907 2907 entry = AttributeDict(_user_group.users_group.get_dict())
2908 2908 entry.permission = _user_group.permission.permission_name
2909 2909 if with_members:
2910 2910 entry.members = [x.user.get_dict()
2911 2911 for x in _user_group.users_group.members]
2912 2912 perm_rows.append(entry)
2913 2913
2914 2914 perm_rows = sorted(perm_rows, key=display_user_group_sort)
2915 2915 return perm_rows
2916 2916
2917 2917 def get_api_data(self):
2918 2918 """
2919 2919 Common function for generating api data
2920 2920
2921 2921 """
2922 2922 group = self
2923 2923 data = {
2924 2924 'group_id': group.group_id,
2925 2925 'group_name': group.group_name,
2926 2926 'group_description': group.description_safe,
2927 2927 'parent_group': group.parent_group.group_name if group.parent_group else None,
2928 2928 'repositories': [x.repo_name for x in group.repositories],
2929 2929 'owner': group.user.username,
2930 2930 }
2931 2931 return data
2932 2932
2933 2933 def get_dict(self):
2934 2934 # Since we transformed `group_name` to a hybrid property, we need to
2935 2935 # keep compatibility with the code which uses `group_name` field.
2936 2936 result = super(RepoGroup, self).get_dict()
2937 2937 result['group_name'] = result.pop('_group_name', None)
2938 2938 return result
2939 2939
2940 2940
2941 2941 class Permission(Base, BaseModel):
2942 2942 __tablename__ = 'permissions'
2943 2943 __table_args__ = (
2944 2944 Index('p_perm_name_idx', 'permission_name'),
2945 2945 base_table_args,
2946 2946 )
2947 2947
2948 2948 PERMS = [
2949 2949 ('hg.admin', _('RhodeCode Super Administrator')),
2950 2950
2951 2951 ('repository.none', _('Repository no access')),
2952 2952 ('repository.read', _('Repository read access')),
2953 2953 ('repository.write', _('Repository write access')),
2954 2954 ('repository.admin', _('Repository admin access')),
2955 2955
2956 2956 ('group.none', _('Repository group no access')),
2957 2957 ('group.read', _('Repository group read access')),
2958 2958 ('group.write', _('Repository group write access')),
2959 2959 ('group.admin', _('Repository group admin access')),
2960 2960
2961 2961 ('usergroup.none', _('User group no access')),
2962 2962 ('usergroup.read', _('User group read access')),
2963 2963 ('usergroup.write', _('User group write access')),
2964 2964 ('usergroup.admin', _('User group admin access')),
2965 2965
2966 2966 ('branch.none', _('Branch no permissions')),
2967 2967 ('branch.merge', _('Branch access by web merge')),
2968 2968 ('branch.push', _('Branch access by push')),
2969 2969 ('branch.push_force', _('Branch access by push with force')),
2970 2970
2971 2971 ('hg.repogroup.create.false', _('Repository Group creation disabled')),
2972 2972 ('hg.repogroup.create.true', _('Repository Group creation enabled')),
2973 2973
2974 2974 ('hg.usergroup.create.false', _('User Group creation disabled')),
2975 2975 ('hg.usergroup.create.true', _('User Group creation enabled')),
2976 2976
2977 2977 ('hg.create.none', _('Repository creation disabled')),
2978 2978 ('hg.create.repository', _('Repository creation enabled')),
2979 2979 ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')),
2980 2980 ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')),
2981 2981
2982 2982 ('hg.fork.none', _('Repository forking disabled')),
2983 2983 ('hg.fork.repository', _('Repository forking enabled')),
2984 2984
2985 2985 ('hg.register.none', _('Registration disabled')),
2986 2986 ('hg.register.manual_activate', _('User Registration with manual account activation')),
2987 2987 ('hg.register.auto_activate', _('User Registration with automatic account activation')),
2988 2988
2989 2989 ('hg.password_reset.enabled', _('Password reset enabled')),
2990 2990 ('hg.password_reset.hidden', _('Password reset hidden')),
2991 2991 ('hg.password_reset.disabled', _('Password reset disabled')),
2992 2992
2993 2993 ('hg.extern_activate.manual', _('Manual activation of external account')),
2994 2994 ('hg.extern_activate.auto', _('Automatic activation of external account')),
2995 2995
2996 2996 ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')),
2997 2997 ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')),
2998 2998 ]
2999 2999
3000 3000 # definition of system default permissions for DEFAULT user, created on
3001 3001 # system setup
3002 3002 DEFAULT_USER_PERMISSIONS = [
3003 3003 # object perms
3004 3004 'repository.read',
3005 3005 'group.read',
3006 3006 'usergroup.read',
3007 3007 # branch, for backward compat we need same value as before so forced pushed
3008 3008 'branch.push_force',
3009 3009 # global
3010 3010 'hg.create.repository',
3011 3011 'hg.repogroup.create.false',
3012 3012 'hg.usergroup.create.false',
3013 3013 'hg.create.write_on_repogroup.true',
3014 3014 'hg.fork.repository',
3015 3015 'hg.register.manual_activate',
3016 3016 'hg.password_reset.enabled',
3017 3017 'hg.extern_activate.auto',
3018 3018 'hg.inherit_default_perms.true',
3019 3019 ]
3020 3020
3021 3021 # defines which permissions are more important higher the more important
3022 3022 # Weight defines which permissions are more important.
3023 3023 # The higher number the more important.
3024 3024 PERM_WEIGHTS = {
3025 3025 'repository.none': 0,
3026 3026 'repository.read': 1,
3027 3027 'repository.write': 3,
3028 3028 'repository.admin': 4,
3029 3029
3030 3030 'group.none': 0,
3031 3031 'group.read': 1,
3032 3032 'group.write': 3,
3033 3033 'group.admin': 4,
3034 3034
3035 3035 'usergroup.none': 0,
3036 3036 'usergroup.read': 1,
3037 3037 'usergroup.write': 3,
3038 3038 'usergroup.admin': 4,
3039 3039
3040 3040 'branch.none': 0,
3041 3041 'branch.merge': 1,
3042 3042 'branch.push': 3,
3043 3043 'branch.push_force': 4,
3044 3044
3045 3045 'hg.repogroup.create.false': 0,
3046 3046 'hg.repogroup.create.true': 1,
3047 3047
3048 3048 'hg.usergroup.create.false': 0,
3049 3049 'hg.usergroup.create.true': 1,
3050 3050
3051 3051 'hg.fork.none': 0,
3052 3052 'hg.fork.repository': 1,
3053 3053 'hg.create.none': 0,
3054 3054 'hg.create.repository': 1
3055 3055 }
3056 3056
3057 3057 permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3058 3058 permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None)
3059 3059 permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None)
3060 3060
3061 3061 def __unicode__(self):
3062 3062 return u"<%s('%s:%s')>" % (
3063 3063 self.__class__.__name__, self.permission_id, self.permission_name
3064 3064 )
3065 3065
3066 3066 @classmethod
3067 3067 def get_by_key(cls, key):
3068 3068 return cls.query().filter(cls.permission_name == key).scalar()
3069 3069
3070 3070 @classmethod
3071 3071 def get_default_repo_perms(cls, user_id, repo_id=None):
3072 3072 q = Session().query(UserRepoToPerm, Repository, Permission)\
3073 3073 .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\
3074 3074 .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\
3075 3075 .filter(UserRepoToPerm.user_id == user_id)
3076 3076 if repo_id:
3077 3077 q = q.filter(UserRepoToPerm.repository_id == repo_id)
3078 3078 return q.all()
3079 3079
3080 3080 @classmethod
3081 3081 def get_default_repo_branch_perms(cls, user_id, repo_id=None):
3082 3082 q = Session().query(UserToRepoBranchPermission, UserRepoToPerm, Permission) \
3083 3083 .join(
3084 3084 Permission,
3085 3085 UserToRepoBranchPermission.permission_id == Permission.permission_id) \
3086 3086 .join(
3087 3087 UserRepoToPerm,
3088 3088 UserToRepoBranchPermission.rule_to_perm_id == UserRepoToPerm.repo_to_perm_id) \
3089 3089 .filter(UserRepoToPerm.user_id == user_id)
3090 3090
3091 3091 if repo_id:
3092 3092 q = q.filter(UserToRepoBranchPermission.repository_id == repo_id)
3093 3093 return q.order_by(UserToRepoBranchPermission.rule_order).all()
3094 3094
3095 3095 @classmethod
3096 3096 def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None):
3097 3097 q = Session().query(UserGroupRepoToPerm, Repository, Permission)\
3098 3098 .join(
3099 3099 Permission,
3100 3100 UserGroupRepoToPerm.permission_id == Permission.permission_id)\
3101 3101 .join(
3102 3102 Repository,
3103 3103 UserGroupRepoToPerm.repository_id == Repository.repo_id)\
3104 3104 .join(
3105 3105 UserGroup,
3106 3106 UserGroupRepoToPerm.users_group_id ==
3107 3107 UserGroup.users_group_id)\
3108 3108 .join(
3109 3109 UserGroupMember,
3110 3110 UserGroupRepoToPerm.users_group_id ==
3111 3111 UserGroupMember.users_group_id)\
3112 3112 .filter(
3113 3113 UserGroupMember.user_id == user_id,
3114 3114 UserGroup.users_group_active == true())
3115 3115 if repo_id:
3116 3116 q = q.filter(UserGroupRepoToPerm.repository_id == repo_id)
3117 3117 return q.all()
3118 3118
3119 3119 @classmethod
3120 3120 def get_default_repo_branch_perms_from_user_group(cls, user_id, repo_id=None):
3121 3121 q = Session().query(UserGroupToRepoBranchPermission, UserGroupRepoToPerm, Permission) \
3122 3122 .join(
3123 3123 Permission,
3124 3124 UserGroupToRepoBranchPermission.permission_id == Permission.permission_id) \
3125 3125 .join(
3126 3126 UserGroupRepoToPerm,
3127 3127 UserGroupToRepoBranchPermission.rule_to_perm_id == UserGroupRepoToPerm.users_group_to_perm_id) \
3128 3128 .join(
3129 3129 UserGroup,
3130 3130 UserGroupRepoToPerm.users_group_id == UserGroup.users_group_id) \
3131 3131 .join(
3132 3132 UserGroupMember,
3133 3133 UserGroupRepoToPerm.users_group_id == UserGroupMember.users_group_id) \
3134 3134 .filter(
3135 3135 UserGroupMember.user_id == user_id,
3136 3136 UserGroup.users_group_active == true())
3137 3137
3138 3138 if repo_id:
3139 3139 q = q.filter(UserGroupToRepoBranchPermission.repository_id == repo_id)
3140 3140 return q.order_by(UserGroupToRepoBranchPermission.rule_order).all()
3141 3141
3142 3142 @classmethod
3143 3143 def get_default_group_perms(cls, user_id, repo_group_id=None):
3144 3144 q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\
3145 3145 .join(
3146 3146 Permission,
3147 3147 UserRepoGroupToPerm.permission_id == Permission.permission_id)\
3148 3148 .join(
3149 3149 RepoGroup,
3150 3150 UserRepoGroupToPerm.group_id == RepoGroup.group_id)\
3151 3151 .filter(UserRepoGroupToPerm.user_id == user_id)
3152 3152 if repo_group_id:
3153 3153 q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id)
3154 3154 return q.all()
3155 3155
3156 3156 @classmethod
3157 3157 def get_default_group_perms_from_user_group(
3158 3158 cls, user_id, repo_group_id=None):
3159 3159 q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\
3160 3160 .join(
3161 3161 Permission,
3162 3162 UserGroupRepoGroupToPerm.permission_id ==
3163 3163 Permission.permission_id)\
3164 3164 .join(
3165 3165 RepoGroup,
3166 3166 UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\
3167 3167 .join(
3168 3168 UserGroup,
3169 3169 UserGroupRepoGroupToPerm.users_group_id ==
3170 3170 UserGroup.users_group_id)\
3171 3171 .join(
3172 3172 UserGroupMember,
3173 3173 UserGroupRepoGroupToPerm.users_group_id ==
3174 3174 UserGroupMember.users_group_id)\
3175 3175 .filter(
3176 3176 UserGroupMember.user_id == user_id,
3177 3177 UserGroup.users_group_active == true())
3178 3178 if repo_group_id:
3179 3179 q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id)
3180 3180 return q.all()
3181 3181
3182 3182 @classmethod
3183 3183 def get_default_user_group_perms(cls, user_id, user_group_id=None):
3184 3184 q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\
3185 3185 .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\
3186 3186 .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\
3187 3187 .filter(UserUserGroupToPerm.user_id == user_id)
3188 3188 if user_group_id:
3189 3189 q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id)
3190 3190 return q.all()
3191 3191
3192 3192 @classmethod
3193 3193 def get_default_user_group_perms_from_user_group(
3194 3194 cls, user_id, user_group_id=None):
3195 3195 TargetUserGroup = aliased(UserGroup, name='target_user_group')
3196 3196 q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\
3197 3197 .join(
3198 3198 Permission,
3199 3199 UserGroupUserGroupToPerm.permission_id ==
3200 3200 Permission.permission_id)\
3201 3201 .join(
3202 3202 TargetUserGroup,
3203 3203 UserGroupUserGroupToPerm.target_user_group_id ==
3204 3204 TargetUserGroup.users_group_id)\
3205 3205 .join(
3206 3206 UserGroup,
3207 3207 UserGroupUserGroupToPerm.user_group_id ==
3208 3208 UserGroup.users_group_id)\
3209 3209 .join(
3210 3210 UserGroupMember,
3211 3211 UserGroupUserGroupToPerm.user_group_id ==
3212 3212 UserGroupMember.users_group_id)\
3213 3213 .filter(
3214 3214 UserGroupMember.user_id == user_id,
3215 3215 UserGroup.users_group_active == true())
3216 3216 if user_group_id:
3217 3217 q = q.filter(
3218 3218 UserGroupUserGroupToPerm.user_group_id == user_group_id)
3219 3219
3220 3220 return q.all()
3221 3221
3222 3222
3223 3223 class UserRepoToPerm(Base, BaseModel):
3224 3224 __tablename__ = 'repo_to_perm'
3225 3225 __table_args__ = (
3226 3226 UniqueConstraint('user_id', 'repository_id', 'permission_id'),
3227 3227 base_table_args
3228 3228 )
3229 3229
3230 3230 repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3231 3231 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
3232 3232 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3233 3233 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
3234 3234
3235 3235 user = relationship('User')
3236 3236 repository = relationship('Repository')
3237 3237 permission = relationship('Permission')
3238 3238
3239 3239 branch_perm_entry = relationship('UserToRepoBranchPermission', cascade="all, delete, delete-orphan", lazy='joined')
3240 3240
3241 3241 @classmethod
3242 3242 def create(cls, user, repository, permission):
3243 3243 n = cls()
3244 3244 n.user = user
3245 3245 n.repository = repository
3246 3246 n.permission = permission
3247 3247 Session().add(n)
3248 3248 return n
3249 3249
3250 3250 def __unicode__(self):
3251 3251 return u'<%s => %s >' % (self.user, self.repository)
3252 3252
3253 3253
3254 3254 class UserUserGroupToPerm(Base, BaseModel):
3255 3255 __tablename__ = 'user_user_group_to_perm'
3256 3256 __table_args__ = (
3257 3257 UniqueConstraint('user_id', 'user_group_id', 'permission_id'),
3258 3258 base_table_args
3259 3259 )
3260 3260
3261 3261 user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3262 3262 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
3263 3263 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3264 3264 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
3265 3265
3266 3266 user = relationship('User')
3267 3267 user_group = relationship('UserGroup')
3268 3268 permission = relationship('Permission')
3269 3269
3270 3270 @classmethod
3271 3271 def create(cls, user, user_group, permission):
3272 3272 n = cls()
3273 3273 n.user = user
3274 3274 n.user_group = user_group
3275 3275 n.permission = permission
3276 3276 Session().add(n)
3277 3277 return n
3278 3278
3279 3279 def __unicode__(self):
3280 3280 return u'<%s => %s >' % (self.user, self.user_group)
3281 3281
3282 3282
3283 3283 class UserToPerm(Base, BaseModel):
3284 3284 __tablename__ = 'user_to_perm'
3285 3285 __table_args__ = (
3286 3286 UniqueConstraint('user_id', 'permission_id'),
3287 3287 base_table_args
3288 3288 )
3289 3289
3290 3290 user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3291 3291 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
3292 3292 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3293 3293
3294 3294 user = relationship('User')
3295 3295 permission = relationship('Permission', lazy='joined')
3296 3296
3297 3297 def __unicode__(self):
3298 3298 return u'<%s => %s >' % (self.user, self.permission)
3299 3299
3300 3300
3301 3301 class UserGroupRepoToPerm(Base, BaseModel):
3302 3302 __tablename__ = 'users_group_repo_to_perm'
3303 3303 __table_args__ = (
3304 3304 UniqueConstraint('repository_id', 'users_group_id', 'permission_id'),
3305 3305 base_table_args
3306 3306 )
3307 3307
3308 3308 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3309 3309 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
3310 3310 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3311 3311 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
3312 3312
3313 3313 users_group = relationship('UserGroup')
3314 3314 permission = relationship('Permission')
3315 3315 repository = relationship('Repository')
3316 3316 user_group_branch_perms = relationship('UserGroupToRepoBranchPermission', cascade='all')
3317 3317
3318 3318 @classmethod
3319 3319 def create(cls, users_group, repository, permission):
3320 3320 n = cls()
3321 3321 n.users_group = users_group
3322 3322 n.repository = repository
3323 3323 n.permission = permission
3324 3324 Session().add(n)
3325 3325 return n
3326 3326
3327 3327 def __unicode__(self):
3328 3328 return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository)
3329 3329
3330 3330
3331 3331 class UserGroupUserGroupToPerm(Base, BaseModel):
3332 3332 __tablename__ = 'user_group_user_group_to_perm'
3333 3333 __table_args__ = (
3334 3334 UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
3335 3335 CheckConstraint('target_user_group_id != user_group_id'),
3336 3336 base_table_args
3337 3337 )
3338 3338
3339 3339 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)
3340 3340 target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
3341 3341 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3342 3342 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
3343 3343
3344 3344 target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id')
3345 3345 user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id')
3346 3346 permission = relationship('Permission')
3347 3347
3348 3348 @classmethod
3349 3349 def create(cls, target_user_group, user_group, permission):
3350 3350 n = cls()
3351 3351 n.target_user_group = target_user_group
3352 3352 n.user_group = user_group
3353 3353 n.permission = permission
3354 3354 Session().add(n)
3355 3355 return n
3356 3356
3357 3357 def __unicode__(self):
3358 3358 return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group)
3359 3359
3360 3360
3361 3361 class UserGroupToPerm(Base, BaseModel):
3362 3362 __tablename__ = 'users_group_to_perm'
3363 3363 __table_args__ = (
3364 3364 UniqueConstraint('users_group_id', 'permission_id',),
3365 3365 base_table_args
3366 3366 )
3367 3367
3368 3368 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3369 3369 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
3370 3370 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3371 3371
3372 3372 users_group = relationship('UserGroup')
3373 3373 permission = relationship('Permission')
3374 3374
3375 3375
3376 3376 class UserRepoGroupToPerm(Base, BaseModel):
3377 3377 __tablename__ = 'user_repo_group_to_perm'
3378 3378 __table_args__ = (
3379 3379 UniqueConstraint('user_id', 'group_id', 'permission_id'),
3380 3380 base_table_args
3381 3381 )
3382 3382
3383 3383 group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3384 3384 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
3385 3385 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
3386 3386 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3387 3387
3388 3388 user = relationship('User')
3389 3389 group = relationship('RepoGroup')
3390 3390 permission = relationship('Permission')
3391 3391
3392 3392 @classmethod
3393 3393 def create(cls, user, repository_group, permission):
3394 3394 n = cls()
3395 3395 n.user = user
3396 3396 n.group = repository_group
3397 3397 n.permission = permission
3398 3398 Session().add(n)
3399 3399 return n
3400 3400
3401 3401
3402 3402 class UserGroupRepoGroupToPerm(Base, BaseModel):
3403 3403 __tablename__ = 'users_group_repo_group_to_perm'
3404 3404 __table_args__ = (
3405 3405 UniqueConstraint('users_group_id', 'group_id'),
3406 3406 base_table_args
3407 3407 )
3408 3408
3409 3409 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)
3410 3410 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
3411 3411 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
3412 3412 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
3413 3413
3414 3414 users_group = relationship('UserGroup')
3415 3415 permission = relationship('Permission')
3416 3416 group = relationship('RepoGroup')
3417 3417
3418 3418 @classmethod
3419 3419 def create(cls, user_group, repository_group, permission):
3420 3420 n = cls()
3421 3421 n.users_group = user_group
3422 3422 n.group = repository_group
3423 3423 n.permission = permission
3424 3424 Session().add(n)
3425 3425 return n
3426 3426
3427 3427 def __unicode__(self):
3428 3428 return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group)
3429 3429
3430 3430
3431 3431 class Statistics(Base, BaseModel):
3432 3432 __tablename__ = 'statistics'
3433 3433 __table_args__ = (
3434 3434 base_table_args
3435 3435 )
3436 3436
3437 3437 stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3438 3438 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None)
3439 3439 stat_on_revision = Column("stat_on_revision", Integer(), nullable=False)
3440 3440 commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data
3441 3441 commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data
3442 3442 languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data
3443 3443
3444 3444 repository = relationship('Repository', single_parent=True)
3445 3445
3446 3446
3447 3447 class UserFollowing(Base, BaseModel):
3448 3448 __tablename__ = 'user_followings'
3449 3449 __table_args__ = (
3450 3450 UniqueConstraint('user_id', 'follows_repository_id'),
3451 3451 UniqueConstraint('user_id', 'follows_user_id'),
3452 3452 base_table_args
3453 3453 )
3454 3454
3455 3455 user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3456 3456 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
3457 3457 follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None)
3458 3458 follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
3459 3459 follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
3460 3460
3461 3461 user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id')
3462 3462
3463 3463 follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id')
3464 3464 follows_repository = relationship('Repository', order_by='Repository.repo_name')
3465 3465
3466 3466 @classmethod
3467 3467 def get_repo_followers(cls, repo_id):
3468 3468 return cls.query().filter(cls.follows_repo_id == repo_id)
3469 3469
3470 3470
3471 3471 class CacheKey(Base, BaseModel):
3472 3472 __tablename__ = 'cache_invalidation'
3473 3473 __table_args__ = (
3474 3474 UniqueConstraint('cache_key'),
3475 3475 Index('key_idx', 'cache_key'),
3476 3476 base_table_args,
3477 3477 )
3478 3478
3479 3479 CACHE_TYPE_FEED = 'FEED'
3480 3480 CACHE_TYPE_README = 'README'
3481 3481 # namespaces used to register process/thread aware caches
3482 3482 REPO_INVALIDATION_NAMESPACE = 'repo_cache:{repo_id}'
3483 3483 SETTINGS_INVALIDATION_NAMESPACE = 'system_settings'
3484 3484
3485 3485 cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
3486 3486 cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None)
3487 3487 cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None)
3488 3488 cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False)
3489 3489
3490 3490 def __init__(self, cache_key, cache_args=''):
3491 3491 self.cache_key = cache_key
3492 3492 self.cache_args = cache_args
3493 3493 self.cache_active = False
3494 3494
3495 3495 def __unicode__(self):
3496 3496 return u"<%s('%s:%s[%s]')>" % (
3497 3497 self.__class__.__name__,
3498 3498 self.cache_id, self.cache_key, self.cache_active)
3499 3499
3500 3500 def _cache_key_partition(self):
3501 3501 prefix, repo_name, suffix = self.cache_key.partition(self.cache_args)
3502 3502 return prefix, repo_name, suffix
3503 3503
3504 3504 def get_prefix(self):
3505 3505 """
3506 3506 Try to extract prefix from existing cache key. The key could consist
3507 3507 of prefix, repo_name, suffix
3508 3508 """
3509 3509 # this returns prefix, repo_name, suffix
3510 3510 return self._cache_key_partition()[0]
3511 3511
3512 3512 def get_suffix(self):
3513 3513 """
3514 3514 get suffix that might have been used in _get_cache_key to
3515 3515 generate self.cache_key. Only used for informational purposes
3516 3516 in repo_edit.mako.
3517 3517 """
3518 3518 # prefix, repo_name, suffix
3519 3519 return self._cache_key_partition()[2]
3520 3520
3521 3521 @classmethod
3522 3522 def delete_all_cache(cls):
3523 3523 """
3524 3524 Delete all cache keys from database.
3525 3525 Should only be run when all instances are down and all entries
3526 3526 thus stale.
3527 3527 """
3528 3528 cls.query().delete()
3529 3529 Session().commit()
3530 3530
3531 3531 @classmethod
3532 3532 def set_invalidate(cls, cache_uid, delete=False):
3533 3533 """
3534 3534 Mark all caches of a repo as invalid in the database.
3535 3535 """
3536 3536
3537 3537 try:
3538 3538 qry = Session().query(cls).filter(cls.cache_args == cache_uid)
3539 3539 if delete:
3540 3540 qry.delete()
3541 3541 log.debug('cache objects deleted for cache args %s',
3542 3542 safe_str(cache_uid))
3543 3543 else:
3544 3544 qry.update({"cache_active": False})
3545 3545 log.debug('cache objects marked as invalid for cache args %s',
3546 3546 safe_str(cache_uid))
3547 3547
3548 3548 Session().commit()
3549 3549 except Exception:
3550 3550 log.exception(
3551 3551 'Cache key invalidation failed for cache args %s',
3552 3552 safe_str(cache_uid))
3553 3553 Session().rollback()
3554 3554
3555 3555 @classmethod
3556 3556 def get_active_cache(cls, cache_key):
3557 3557 inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar()
3558 3558 if inv_obj:
3559 3559 return inv_obj
3560 3560 return None
3561 3561
3562 3562
3563 3563 class ChangesetComment(Base, BaseModel):
3564 3564 __tablename__ = 'changeset_comments'
3565 3565 __table_args__ = (
3566 3566 Index('cc_revision_idx', 'revision'),
3567 3567 base_table_args,
3568 3568 )
3569 3569
3570 3570 COMMENT_OUTDATED = u'comment_outdated'
3571 3571 COMMENT_TYPE_NOTE = u'note'
3572 3572 COMMENT_TYPE_TODO = u'todo'
3573 3573 COMMENT_TYPES = [COMMENT_TYPE_NOTE, COMMENT_TYPE_TODO]
3574 3574
3575 3575 comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True)
3576 3576 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
3577 3577 revision = Column('revision', String(40), nullable=True)
3578 3578 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
3579 3579 pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True)
3580 3580 line_no = Column('line_no', Unicode(10), nullable=True)
3581 3581 hl_lines = Column('hl_lines', Unicode(512), nullable=True)
3582 3582 f_path = Column('f_path', Unicode(1000), nullable=True)
3583 3583 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
3584 3584 text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False)
3585 3585 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3586 3586 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3587 3587 renderer = Column('renderer', Unicode(64), nullable=True)
3588 3588 display_state = Column('display_state', Unicode(128), nullable=True)
3589 3589
3590 3590 comment_type = Column('comment_type', Unicode(128), nullable=True, default=COMMENT_TYPE_NOTE)
3591 3591 resolved_comment_id = Column('resolved_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'), nullable=True)
3592 3592
3593 3593 resolved_comment = relationship('ChangesetComment', remote_side=comment_id, back_populates='resolved_by')
3594 3594 resolved_by = relationship('ChangesetComment', back_populates='resolved_comment')
3595 3595
3596 3596 author = relationship('User', lazy='joined')
3597 3597 repo = relationship('Repository')
3598 3598 status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan", lazy='joined')
3599 3599 pull_request = relationship('PullRequest', lazy='joined')
3600 3600 pull_request_version = relationship('PullRequestVersion')
3601 3601
3602 3602 @classmethod
3603 3603 def get_users(cls, revision=None, pull_request_id=None):
3604 3604 """
3605 3605 Returns user associated with this ChangesetComment. ie those
3606 3606 who actually commented
3607 3607
3608 3608 :param cls:
3609 3609 :param revision:
3610 3610 """
3611 3611 q = Session().query(User)\
3612 3612 .join(ChangesetComment.author)
3613 3613 if revision:
3614 3614 q = q.filter(cls.revision == revision)
3615 3615 elif pull_request_id:
3616 3616 q = q.filter(cls.pull_request_id == pull_request_id)
3617 3617 return q.all()
3618 3618
3619 3619 @classmethod
3620 3620 def get_index_from_version(cls, pr_version, versions):
3621 3621 num_versions = [x.pull_request_version_id for x in versions]
3622 3622 try:
3623 3623 return num_versions.index(pr_version) +1
3624 3624 except (IndexError, ValueError):
3625 3625 return
3626 3626
3627 3627 @property
3628 3628 def outdated(self):
3629 3629 return self.display_state == self.COMMENT_OUTDATED
3630 3630
3631 3631 def outdated_at_version(self, version):
3632 3632 """
3633 3633 Checks if comment is outdated for given pull request version
3634 3634 """
3635 3635 return self.outdated and self.pull_request_version_id != version
3636 3636
3637 3637 def older_than_version(self, version):
3638 3638 """
3639 3639 Checks if comment is made from previous version than given
3640 3640 """
3641 3641 if version is None:
3642 3642 return self.pull_request_version_id is not None
3643 3643
3644 3644 return self.pull_request_version_id < version
3645 3645
3646 3646 @property
3647 3647 def resolved(self):
3648 3648 return self.resolved_by[0] if self.resolved_by else None
3649 3649
3650 3650 @property
3651 3651 def is_todo(self):
3652 3652 return self.comment_type == self.COMMENT_TYPE_TODO
3653 3653
3654 3654 @property
3655 3655 def is_inline(self):
3656 3656 return self.line_no and self.f_path
3657 3657
3658 3658 def get_index_version(self, versions):
3659 3659 return self.get_index_from_version(
3660 3660 self.pull_request_version_id, versions)
3661 3661
3662 3662 def __repr__(self):
3663 3663 if self.comment_id:
3664 3664 return '<DB:Comment #%s>' % self.comment_id
3665 3665 else:
3666 3666 return '<DB:Comment at %#x>' % id(self)
3667 3667
3668 3668 def get_api_data(self):
3669 3669 comment = self
3670 3670 data = {
3671 3671 'comment_id': comment.comment_id,
3672 3672 'comment_type': comment.comment_type,
3673 3673 'comment_text': comment.text,
3674 3674 'comment_status': comment.status_change,
3675 3675 'comment_f_path': comment.f_path,
3676 3676 'comment_lineno': comment.line_no,
3677 3677 'comment_author': comment.author,
3678 3678 'comment_created_on': comment.created_on,
3679 3679 'comment_resolved_by': self.resolved
3680 3680 }
3681 3681 return data
3682 3682
3683 3683 def __json__(self):
3684 3684 data = dict()
3685 3685 data.update(self.get_api_data())
3686 3686 return data
3687 3687
3688 3688
3689 3689 class ChangesetStatus(Base, BaseModel):
3690 3690 __tablename__ = 'changeset_statuses'
3691 3691 __table_args__ = (
3692 3692 Index('cs_revision_idx', 'revision'),
3693 3693 Index('cs_version_idx', 'version'),
3694 3694 UniqueConstraint('repo_id', 'revision', 'version'),
3695 3695 base_table_args
3696 3696 )
3697 3697
3698 3698 STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
3699 3699 STATUS_APPROVED = 'approved'
3700 3700 STATUS_REJECTED = 'rejected'
3701 3701 STATUS_UNDER_REVIEW = 'under_review'
3702 3702
3703 3703 STATUSES = [
3704 3704 (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default
3705 3705 (STATUS_APPROVED, _("Approved")),
3706 3706 (STATUS_REJECTED, _("Rejected")),
3707 3707 (STATUS_UNDER_REVIEW, _("Under Review")),
3708 3708 ]
3709 3709
3710 3710 changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True)
3711 3711 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
3712 3712 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None)
3713 3713 revision = Column('revision', String(40), nullable=False)
3714 3714 status = Column('status', String(128), nullable=False, default=DEFAULT)
3715 3715 changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'))
3716 3716 modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now)
3717 3717 version = Column('version', Integer(), nullable=False, default=0)
3718 3718 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
3719 3719
3720 3720 author = relationship('User', lazy='joined')
3721 3721 repo = relationship('Repository')
3722 3722 comment = relationship('ChangesetComment', lazy='joined')
3723 3723 pull_request = relationship('PullRequest', lazy='joined')
3724 3724
3725 3725 def __unicode__(self):
3726 3726 return u"<%s('%s[v%s]:%s')>" % (
3727 3727 self.__class__.__name__,
3728 3728 self.status, self.version, self.author
3729 3729 )
3730 3730
3731 3731 @classmethod
3732 3732 def get_status_lbl(cls, value):
3733 3733 return dict(cls.STATUSES).get(value)
3734 3734
3735 3735 @property
3736 3736 def status_lbl(self):
3737 3737 return ChangesetStatus.get_status_lbl(self.status)
3738 3738
3739 3739 def get_api_data(self):
3740 3740 status = self
3741 3741 data = {
3742 3742 'status_id': status.changeset_status_id,
3743 3743 'status': status.status,
3744 3744 }
3745 3745 return data
3746 3746
3747 3747 def __json__(self):
3748 3748 data = dict()
3749 3749 data.update(self.get_api_data())
3750 3750 return data
3751 3751
3752 3752
3753 3753 class _SetState(object):
3754 3754 """
3755 3755 Context processor allowing changing state for sensitive operation such as
3756 3756 pull request update or merge
3757 3757 """
3758 3758
3759 3759 def __init__(self, pull_request, pr_state, back_state=None):
3760 3760 self._pr = pull_request
3761 3761 self._org_state = back_state or pull_request.pull_request_state
3762 3762 self._pr_state = pr_state
3763 3763
3764 3764 def __enter__(self):
3765 3765 log.debug('StateLock: entering set state context, setting state to: `%s`',
3766 3766 self._pr_state)
3767 3767 self._pr.pull_request_state = self._pr_state
3768 3768 Session().add(self._pr)
3769 3769 Session().commit()
3770 3770
3771 3771 def __exit__(self, exc_type, exc_val, exc_tb):
3772 3772 log.debug('StateLock: exiting set state context, setting state to: `%s`',
3773 3773 self._org_state)
3774 3774 self._pr.pull_request_state = self._org_state
3775 3775 Session().add(self._pr)
3776 3776 Session().commit()
3777 3777
3778 3778
3779 3779 class _PullRequestBase(BaseModel):
3780 3780 """
3781 3781 Common attributes of pull request and version entries.
3782 3782 """
3783 3783
3784 3784 # .status values
3785 3785 STATUS_NEW = u'new'
3786 3786 STATUS_OPEN = u'open'
3787 3787 STATUS_CLOSED = u'closed'
3788 3788
3789 3789 # available states
3790 3790 STATE_CREATING = u'creating'
3791 3791 STATE_UPDATING = u'updating'
3792 3792 STATE_MERGING = u'merging'
3793 3793 STATE_CREATED = u'created'
3794 3794
3795 3795 title = Column('title', Unicode(255), nullable=True)
3796 3796 description = Column(
3797 3797 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'),
3798 3798 nullable=True)
3799 3799 description_renderer = Column('description_renderer', Unicode(64), nullable=True)
3800 3800
3801 3801 # new/open/closed status of pull request (not approve/reject/etc)
3802 3802 status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW)
3803 3803 created_on = Column(
3804 3804 'created_on', DateTime(timezone=False), nullable=False,
3805 3805 default=datetime.datetime.now)
3806 3806 updated_on = Column(
3807 3807 'updated_on', DateTime(timezone=False), nullable=False,
3808 3808 default=datetime.datetime.now)
3809 3809
3810 3810 pull_request_state = Column("pull_request_state", String(255), nullable=True)
3811 3811
3812 3812 @declared_attr
3813 3813 def user_id(cls):
3814 3814 return Column(
3815 3815 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
3816 3816 unique=None)
3817 3817
3818 3818 # 500 revisions max
3819 3819 _revisions = Column(
3820 3820 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql'))
3821 3821
3822 3822 @declared_attr
3823 3823 def source_repo_id(cls):
3824 3824 # TODO: dan: rename column to source_repo_id
3825 3825 return Column(
3826 3826 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3827 3827 nullable=False)
3828 3828
3829 3829 _source_ref = Column('org_ref', Unicode(255), nullable=False)
3830 3830
3831 3831 @hybrid_property
3832 3832 def source_ref(self):
3833 3833 return self._source_ref
3834 3834
3835 3835 @source_ref.setter
3836 3836 def source_ref(self, val):
3837 3837 parts = (val or '').split(':')
3838 3838 if len(parts) != 3:
3839 3839 raise ValueError(
3840 3840 'Invalid reference format given: {}, expected X:Y:Z'.format(val))
3841 3841 self._source_ref = safe_unicode(val)
3842 3842
3843 3843 _target_ref = Column('other_ref', Unicode(255), nullable=False)
3844 3844
3845 3845 @hybrid_property
3846 3846 def target_ref(self):
3847 3847 return self._target_ref
3848 3848
3849 3849 @target_ref.setter
3850 3850 def target_ref(self, val):
3851 3851 parts = (val or '').split(':')
3852 3852 if len(parts) != 3:
3853 3853 raise ValueError(
3854 3854 'Invalid reference format given: {}, expected X:Y:Z'.format(val))
3855 3855 self._target_ref = safe_unicode(val)
3856 3856
3857 3857 @declared_attr
3858 3858 def target_repo_id(cls):
3859 3859 # TODO: dan: rename column to target_repo_id
3860 3860 return Column(
3861 3861 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3862 3862 nullable=False)
3863 3863
3864 3864 _shadow_merge_ref = Column('shadow_merge_ref', Unicode(255), nullable=True)
3865 3865
3866 3866 # TODO: dan: rename column to last_merge_source_rev
3867 3867 _last_merge_source_rev = Column(
3868 3868 'last_merge_org_rev', String(40), nullable=True)
3869 3869 # TODO: dan: rename column to last_merge_target_rev
3870 3870 _last_merge_target_rev = Column(
3871 3871 'last_merge_other_rev', String(40), nullable=True)
3872 3872 _last_merge_status = Column('merge_status', Integer(), nullable=True)
3873 3873 merge_rev = Column('merge_rev', String(40), nullable=True)
3874 3874
3875 3875 reviewer_data = Column(
3876 3876 'reviewer_data_json', MutationObj.as_mutable(
3877 3877 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
3878 3878
3879 3879 @property
3880 3880 def reviewer_data_json(self):
3881 3881 return json.dumps(self.reviewer_data)
3882 3882
3883 3883 @hybrid_property
3884 3884 def description_safe(self):
3885 3885 from rhodecode.lib import helpers as h
3886 3886 return h.escape(self.description)
3887 3887
3888 3888 @hybrid_property
3889 3889 def revisions(self):
3890 3890 return self._revisions.split(':') if self._revisions else []
3891 3891
3892 3892 @revisions.setter
3893 3893 def revisions(self, val):
3894 3894 self._revisions = ':'.join(val)
3895 3895
3896 3896 @hybrid_property
3897 3897 def last_merge_status(self):
3898 3898 return safe_int(self._last_merge_status)
3899 3899
3900 3900 @last_merge_status.setter
3901 3901 def last_merge_status(self, val):
3902 3902 self._last_merge_status = val
3903 3903
3904 3904 @declared_attr
3905 3905 def author(cls):
3906 3906 return relationship('User', lazy='joined')
3907 3907
3908 3908 @declared_attr
3909 3909 def source_repo(cls):
3910 3910 return relationship(
3911 3911 'Repository',
3912 3912 primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__)
3913 3913
3914 3914 @property
3915 3915 def source_ref_parts(self):
3916 3916 return self.unicode_to_reference(self.source_ref)
3917 3917
3918 3918 @declared_attr
3919 3919 def target_repo(cls):
3920 3920 return relationship(
3921 3921 'Repository',
3922 3922 primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__)
3923 3923
3924 3924 @property
3925 3925 def target_ref_parts(self):
3926 3926 return self.unicode_to_reference(self.target_ref)
3927 3927
3928 3928 @property
3929 3929 def shadow_merge_ref(self):
3930 3930 return self.unicode_to_reference(self._shadow_merge_ref)
3931 3931
3932 3932 @shadow_merge_ref.setter
3933 3933 def shadow_merge_ref(self, ref):
3934 3934 self._shadow_merge_ref = self.reference_to_unicode(ref)
3935 3935
3936 3936 @staticmethod
3937 3937 def unicode_to_reference(raw):
3938 3938 """
3939 3939 Convert a unicode (or string) to a reference object.
3940 3940 If unicode evaluates to False it returns None.
3941 3941 """
3942 3942 if raw:
3943 3943 refs = raw.split(':')
3944 3944 return Reference(*refs)
3945 3945 else:
3946 3946 return None
3947 3947
3948 3948 @staticmethod
3949 3949 def reference_to_unicode(ref):
3950 3950 """
3951 3951 Convert a reference object to unicode.
3952 3952 If reference is None it returns None.
3953 3953 """
3954 3954 if ref:
3955 3955 return u':'.join(ref)
3956 3956 else:
3957 3957 return None
3958 3958
3959 3959 def get_api_data(self, with_merge_state=True):
3960 3960 from rhodecode.model.pull_request import PullRequestModel
3961 3961
3962 3962 pull_request = self
3963 3963 if with_merge_state:
3964 3964 merge_status = PullRequestModel().merge_status(pull_request)
3965 3965 merge_state = {
3966 3966 'status': merge_status[0],
3967 3967 'message': safe_unicode(merge_status[1]),
3968 3968 }
3969 3969 else:
3970 3970 merge_state = {'status': 'not_available',
3971 3971 'message': 'not_available'}
3972 3972
3973 3973 merge_data = {
3974 3974 'clone_url': PullRequestModel().get_shadow_clone_url(pull_request),
3975 3975 'reference': (
3976 3976 pull_request.shadow_merge_ref._asdict()
3977 3977 if pull_request.shadow_merge_ref else None),
3978 3978 }
3979 3979
3980 3980 data = {
3981 3981 'pull_request_id': pull_request.pull_request_id,
3982 3982 'url': PullRequestModel().get_url(pull_request),
3983 3983 'title': pull_request.title,
3984 3984 'description': pull_request.description,
3985 3985 'status': pull_request.status,
3986 3986 'state': pull_request.pull_request_state,
3987 3987 'created_on': pull_request.created_on,
3988 3988 'updated_on': pull_request.updated_on,
3989 3989 'commit_ids': pull_request.revisions,
3990 3990 'review_status': pull_request.calculated_review_status(),
3991 3991 'mergeable': merge_state,
3992 3992 'source': {
3993 3993 'clone_url': pull_request.source_repo.clone_url(),
3994 3994 'repository': pull_request.source_repo.repo_name,
3995 3995 'reference': {
3996 3996 'name': pull_request.source_ref_parts.name,
3997 3997 'type': pull_request.source_ref_parts.type,
3998 3998 'commit_id': pull_request.source_ref_parts.commit_id,
3999 3999 },
4000 4000 },
4001 4001 'target': {
4002 4002 'clone_url': pull_request.target_repo.clone_url(),
4003 4003 'repository': pull_request.target_repo.repo_name,
4004 4004 'reference': {
4005 4005 'name': pull_request.target_ref_parts.name,
4006 4006 'type': pull_request.target_ref_parts.type,
4007 4007 'commit_id': pull_request.target_ref_parts.commit_id,
4008 4008 },
4009 4009 },
4010 4010 'merge': merge_data,
4011 4011 'author': pull_request.author.get_api_data(include_secrets=False,
4012 4012 details='basic'),
4013 4013 'reviewers': [
4014 4014 {
4015 4015 'user': reviewer.get_api_data(include_secrets=False,
4016 4016 details='basic'),
4017 4017 'reasons': reasons,
4018 4018 'review_status': st[0][1].status if st else 'not_reviewed',
4019 4019 }
4020 4020 for obj, reviewer, reasons, mandatory, st in
4021 4021 pull_request.reviewers_statuses()
4022 4022 ]
4023 4023 }
4024 4024
4025 4025 return data
4026 4026
4027 4027 def set_state(self, pull_request_state, final_state=None):
4028 4028 """
4029 4029 # goes from initial state to updating to initial state.
4030 4030 # initial state can be changed by specifying back_state=
4031 4031 with pull_request_obj.set_state(PullRequest.STATE_UPDATING):
4032 4032 pull_request.merge()
4033 4033
4034 4034 :param pull_request_state:
4035 4035 :param final_state:
4036 4036
4037 4037 """
4038 4038
4039 4039 return _SetState(self, pull_request_state, back_state=final_state)
4040 4040
4041 4041
4042 4042 class PullRequest(Base, _PullRequestBase):
4043 4043 __tablename__ = 'pull_requests'
4044 4044 __table_args__ = (
4045 4045 base_table_args,
4046 4046 )
4047 4047
4048 4048 pull_request_id = Column(
4049 4049 'pull_request_id', Integer(), nullable=False, primary_key=True)
4050 4050
4051 4051 def __repr__(self):
4052 4052 if self.pull_request_id:
4053 4053 return '<DB:PullRequest #%s>' % self.pull_request_id
4054 4054 else:
4055 4055 return '<DB:PullRequest at %#x>' % id(self)
4056 4056
4057 4057 reviewers = relationship('PullRequestReviewers',
4058 4058 cascade="all, delete, delete-orphan")
4059 4059 statuses = relationship('ChangesetStatus',
4060 4060 cascade="all, delete, delete-orphan")
4061 4061 comments = relationship('ChangesetComment',
4062 4062 cascade="all, delete, delete-orphan")
4063 4063 versions = relationship('PullRequestVersion',
4064 4064 cascade="all, delete, delete-orphan",
4065 4065 lazy='dynamic')
4066 4066
4067 4067 @classmethod
4068 4068 def get_pr_display_object(cls, pull_request_obj, org_pull_request_obj,
4069 4069 internal_methods=None):
4070 4070
4071 4071 class PullRequestDisplay(object):
4072 4072 """
4073 4073 Special object wrapper for showing PullRequest data via Versions
4074 4074 It mimics PR object as close as possible. This is read only object
4075 4075 just for display
4076 4076 """
4077 4077
4078 4078 def __init__(self, attrs, internal=None):
4079 4079 self.attrs = attrs
4080 4080 # internal have priority over the given ones via attrs
4081 4081 self.internal = internal or ['versions']
4082 4082
4083 4083 def __getattr__(self, item):
4084 4084 if item in self.internal:
4085 4085 return getattr(self, item)
4086 4086 try:
4087 4087 return self.attrs[item]
4088 4088 except KeyError:
4089 4089 raise AttributeError(
4090 4090 '%s object has no attribute %s' % (self, item))
4091 4091
4092 4092 def __repr__(self):
4093 4093 return '<DB:PullRequestDisplay #%s>' % self.attrs.get('pull_request_id')
4094 4094
4095 4095 def versions(self):
4096 4096 return pull_request_obj.versions.order_by(
4097 4097 PullRequestVersion.pull_request_version_id).all()
4098 4098
4099 4099 def is_closed(self):
4100 4100 return pull_request_obj.is_closed()
4101 4101
4102 4102 @property
4103 4103 def pull_request_version_id(self):
4104 4104 return getattr(pull_request_obj, 'pull_request_version_id', None)
4105 4105
4106 4106 attrs = StrictAttributeDict(pull_request_obj.get_api_data())
4107 4107
4108 4108 attrs.author = StrictAttributeDict(
4109 4109 pull_request_obj.author.get_api_data())
4110 4110 if pull_request_obj.target_repo:
4111 4111 attrs.target_repo = StrictAttributeDict(
4112 4112 pull_request_obj.target_repo.get_api_data())
4113 4113 attrs.target_repo.clone_url = pull_request_obj.target_repo.clone_url
4114 4114
4115 4115 if pull_request_obj.source_repo:
4116 4116 attrs.source_repo = StrictAttributeDict(
4117 4117 pull_request_obj.source_repo.get_api_data())
4118 4118 attrs.source_repo.clone_url = pull_request_obj.source_repo.clone_url
4119 4119
4120 4120 attrs.source_ref_parts = pull_request_obj.source_ref_parts
4121 4121 attrs.target_ref_parts = pull_request_obj.target_ref_parts
4122 4122 attrs.revisions = pull_request_obj.revisions
4123 4123
4124 4124 attrs.shadow_merge_ref = org_pull_request_obj.shadow_merge_ref
4125 4125 attrs.reviewer_data = org_pull_request_obj.reviewer_data
4126 4126 attrs.reviewer_data_json = org_pull_request_obj.reviewer_data_json
4127 4127
4128 4128 return PullRequestDisplay(attrs, internal=internal_methods)
4129 4129
4130 4130 def is_closed(self):
4131 4131 return self.status == self.STATUS_CLOSED
4132 4132
4133 4133 def __json__(self):
4134 4134 return {
4135 4135 'revisions': self.revisions,
4136 4136 }
4137 4137
4138 4138 def calculated_review_status(self):
4139 4139 from rhodecode.model.changeset_status import ChangesetStatusModel
4140 4140 return ChangesetStatusModel().calculated_review_status(self)
4141 4141
4142 4142 def reviewers_statuses(self):
4143 4143 from rhodecode.model.changeset_status import ChangesetStatusModel
4144 4144 return ChangesetStatusModel().reviewers_statuses(self)
4145 4145
4146 4146 @property
4147 4147 def workspace_id(self):
4148 4148 from rhodecode.model.pull_request import PullRequestModel
4149 4149 return PullRequestModel()._workspace_id(self)
4150 4150
4151 4151 def get_shadow_repo(self):
4152 4152 workspace_id = self.workspace_id
4153 4153 vcs_obj = self.target_repo.scm_instance()
4154 4154 shadow_repository_path = vcs_obj._get_shadow_repository_path(
4155 4155 self.target_repo.repo_id, workspace_id)
4156 4156 if os.path.isdir(shadow_repository_path):
4157 4157 return vcs_obj._get_shadow_instance(shadow_repository_path)
4158 4158
4159 4159
4160 4160 class PullRequestVersion(Base, _PullRequestBase):
4161 4161 __tablename__ = 'pull_request_versions'
4162 4162 __table_args__ = (
4163 4163 base_table_args,
4164 4164 )
4165 4165
4166 4166 pull_request_version_id = Column(
4167 4167 'pull_request_version_id', Integer(), nullable=False, primary_key=True)
4168 4168 pull_request_id = Column(
4169 4169 'pull_request_id', Integer(),
4170 4170 ForeignKey('pull_requests.pull_request_id'), nullable=False)
4171 4171 pull_request = relationship('PullRequest')
4172 4172
4173 4173 def __repr__(self):
4174 4174 if self.pull_request_version_id:
4175 4175 return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id
4176 4176 else:
4177 4177 return '<DB:PullRequestVersion at %#x>' % id(self)
4178 4178
4179 4179 @property
4180 4180 def reviewers(self):
4181 4181 return self.pull_request.reviewers
4182 4182
4183 4183 @property
4184 4184 def versions(self):
4185 4185 return self.pull_request.versions
4186 4186
4187 4187 def is_closed(self):
4188 4188 # calculate from original
4189 4189 return self.pull_request.status == self.STATUS_CLOSED
4190 4190
4191 4191 def calculated_review_status(self):
4192 4192 return self.pull_request.calculated_review_status()
4193 4193
4194 4194 def reviewers_statuses(self):
4195 4195 return self.pull_request.reviewers_statuses()
4196 4196
4197 4197
4198 4198 class PullRequestReviewers(Base, BaseModel):
4199 4199 __tablename__ = 'pull_request_reviewers'
4200 4200 __table_args__ = (
4201 4201 base_table_args,
4202 4202 )
4203 4203
4204 4204 @hybrid_property
4205 4205 def reasons(self):
4206 4206 if not self._reasons:
4207 4207 return []
4208 4208 return self._reasons
4209 4209
4210 4210 @reasons.setter
4211 4211 def reasons(self, val):
4212 4212 val = val or []
4213 4213 if any(not isinstance(x, compat.string_types) for x in val):
4214 4214 raise Exception('invalid reasons type, must be list of strings')
4215 4215 self._reasons = val
4216 4216
4217 4217 pull_requests_reviewers_id = Column(
4218 4218 'pull_requests_reviewers_id', Integer(), nullable=False,
4219 4219 primary_key=True)
4220 4220 pull_request_id = Column(
4221 4221 "pull_request_id", Integer(),
4222 4222 ForeignKey('pull_requests.pull_request_id'), nullable=False)
4223 4223 user_id = Column(
4224 4224 "user_id", Integer(), ForeignKey('users.user_id'), nullable=True)
4225 4225 _reasons = Column(
4226 4226 'reason', MutationList.as_mutable(
4227 4227 JsonType('list', dialect_map=dict(mysql=UnicodeText(16384)))))
4228 4228
4229 4229 mandatory = Column("mandatory", Boolean(), nullable=False, default=False)
4230 4230 user = relationship('User')
4231 4231 pull_request = relationship('PullRequest')
4232 4232
4233 4233 rule_data = Column(
4234 4234 'rule_data_json',
4235 4235 JsonType(dialect_map=dict(mysql=UnicodeText(16384))))
4236 4236
4237 4237 def rule_user_group_data(self):
4238 4238 """
4239 4239 Returns the voting user group rule data for this reviewer
4240 4240 """
4241 4241
4242 4242 if self.rule_data and 'vote_rule' in self.rule_data:
4243 4243 user_group_data = {}
4244 4244 if 'rule_user_group_entry_id' in self.rule_data:
4245 4245 # means a group with voting rules !
4246 4246 user_group_data['id'] = self.rule_data['rule_user_group_entry_id']
4247 4247 user_group_data['name'] = self.rule_data['rule_name']
4248 4248 user_group_data['vote_rule'] = self.rule_data['vote_rule']
4249 4249
4250 4250 return user_group_data
4251 4251
4252 4252 def __unicode__(self):
4253 4253 return u"<%s('id:%s')>" % (self.__class__.__name__,
4254 4254 self.pull_requests_reviewers_id)
4255 4255
4256 4256
4257 4257 class Notification(Base, BaseModel):
4258 4258 __tablename__ = 'notifications'
4259 4259 __table_args__ = (
4260 4260 Index('notification_type_idx', 'type'),
4261 4261 base_table_args,
4262 4262 )
4263 4263
4264 4264 TYPE_CHANGESET_COMMENT = u'cs_comment'
4265 4265 TYPE_MESSAGE = u'message'
4266 4266 TYPE_MENTION = u'mention'
4267 4267 TYPE_REGISTRATION = u'registration'
4268 4268 TYPE_PULL_REQUEST = u'pull_request'
4269 4269 TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment'
4270 4270
4271 4271 notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True)
4272 4272 subject = Column('subject', Unicode(512), nullable=True)
4273 4273 body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True)
4274 4274 created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True)
4275 4275 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
4276 4276 type_ = Column('type', Unicode(255))
4277 4277
4278 4278 created_by_user = relationship('User')
4279 4279 notifications_to_users = relationship('UserNotification', lazy='joined',
4280 4280 cascade="all, delete, delete-orphan")
4281 4281
4282 4282 @property
4283 4283 def recipients(self):
4284 4284 return [x.user for x in UserNotification.query()\
4285 4285 .filter(UserNotification.notification == self)\
4286 4286 .order_by(UserNotification.user_id.asc()).all()]
4287 4287
4288 4288 @classmethod
4289 4289 def create(cls, created_by, subject, body, recipients, type_=None):
4290 4290 if type_ is None:
4291 4291 type_ = Notification.TYPE_MESSAGE
4292 4292
4293 4293 notification = cls()
4294 4294 notification.created_by_user = created_by
4295 4295 notification.subject = subject
4296 4296 notification.body = body
4297 4297 notification.type_ = type_
4298 4298 notification.created_on = datetime.datetime.now()
4299 4299
4300 4300 # For each recipient link the created notification to his account
4301 4301 for u in recipients:
4302 4302 assoc = UserNotification()
4303 4303 assoc.user_id = u.user_id
4304 4304 assoc.notification = notification
4305 4305
4306 4306 # if created_by is inside recipients mark his notification
4307 4307 # as read
4308 4308 if u.user_id == created_by.user_id:
4309 4309 assoc.read = True
4310 4310 Session().add(assoc)
4311 4311
4312 4312 Session().add(notification)
4313 4313
4314 4314 return notification
4315 4315
4316 4316
4317 4317 class UserNotification(Base, BaseModel):
4318 4318 __tablename__ = 'user_to_notification'
4319 4319 __table_args__ = (
4320 4320 UniqueConstraint('user_id', 'notification_id'),
4321 4321 base_table_args
4322 4322 )
4323 4323
4324 4324 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
4325 4325 notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True)
4326 4326 read = Column('read', Boolean, default=False)
4327 4327 sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None)
4328 4328
4329 4329 user = relationship('User', lazy="joined")
4330 4330 notification = relationship('Notification', lazy="joined",
4331 4331 order_by=lambda: Notification.created_on.desc(),)
4332 4332
4333 4333 def mark_as_read(self):
4334 4334 self.read = True
4335 4335 Session().add(self)
4336 4336
4337 4337
4338 4338 class Gist(Base, BaseModel):
4339 4339 __tablename__ = 'gists'
4340 4340 __table_args__ = (
4341 4341 Index('g_gist_access_id_idx', 'gist_access_id'),
4342 4342 Index('g_created_on_idx', 'created_on'),
4343 4343 base_table_args
4344 4344 )
4345 4345
4346 4346 GIST_PUBLIC = u'public'
4347 4347 GIST_PRIVATE = u'private'
4348 4348 DEFAULT_FILENAME = u'gistfile1.txt'
4349 4349
4350 4350 ACL_LEVEL_PUBLIC = u'acl_public'
4351 4351 ACL_LEVEL_PRIVATE = u'acl_private'
4352 4352
4353 4353 gist_id = Column('gist_id', Integer(), primary_key=True)
4354 4354 gist_access_id = Column('gist_access_id', Unicode(250))
4355 4355 gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
4356 4356 gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True)
4357 4357 gist_expires = Column('gist_expires', Float(53), nullable=False)
4358 4358 gist_type = Column('gist_type', Unicode(128), nullable=False)
4359 4359 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
4360 4360 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
4361 4361 acl_level = Column('acl_level', Unicode(128), nullable=True)
4362 4362
4363 4363 owner = relationship('User')
4364 4364
4365 4365 def __repr__(self):
4366 4366 return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id)
4367 4367
4368 4368 @hybrid_property
4369 4369 def description_safe(self):
4370 4370 from rhodecode.lib import helpers as h
4371 4371 return h.escape(self.gist_description)
4372 4372
4373 4373 @classmethod
4374 4374 def get_or_404(cls, id_):
4375 4375 from pyramid.httpexceptions import HTTPNotFound
4376 4376
4377 4377 res = cls.query().filter(cls.gist_access_id == id_).scalar()
4378 4378 if not res:
4379 4379 raise HTTPNotFound()
4380 4380 return res
4381 4381
4382 4382 @classmethod
4383 4383 def get_by_access_id(cls, gist_access_id):
4384 4384 return cls.query().filter(cls.gist_access_id == gist_access_id).scalar()
4385 4385
4386 4386 def gist_url(self):
4387 4387 from rhodecode.model.gist import GistModel
4388 4388 return GistModel().get_url(self)
4389 4389
4390 4390 @classmethod
4391 4391 def base_path(cls):
4392 4392 """
4393 4393 Returns base path when all gists are stored
4394 4394
4395 4395 :param cls:
4396 4396 """
4397 4397 from rhodecode.model.gist import GIST_STORE_LOC
4398 4398 q = Session().query(RhodeCodeUi)\
4399 4399 .filter(RhodeCodeUi.ui_key == URL_SEP)
4400 4400 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
4401 4401 return os.path.join(q.one().ui_value, GIST_STORE_LOC)
4402 4402
4403 4403 def get_api_data(self):
4404 4404 """
4405 4405 Common function for generating gist related data for API
4406 4406 """
4407 4407 gist = self
4408 4408 data = {
4409 4409 'gist_id': gist.gist_id,
4410 4410 'type': gist.gist_type,
4411 4411 'access_id': gist.gist_access_id,
4412 4412 'description': gist.gist_description,
4413 4413 'url': gist.gist_url(),
4414 4414 'expires': gist.gist_expires,
4415 4415 'created_on': gist.created_on,
4416 4416 'modified_at': gist.modified_at,
4417 4417 'content': None,
4418 4418 'acl_level': gist.acl_level,
4419 4419 }
4420 4420 return data
4421 4421
4422 4422 def __json__(self):
4423 4423 data = dict(
4424 4424 )
4425 4425 data.update(self.get_api_data())
4426 4426 return data
4427 4427 # SCM functions
4428 4428
4429 4429 def scm_instance(self, **kwargs):
4430 4430 """
4431 4431 Get explicit Mercurial repository used
4432 4432 :param kwargs:
4433 4433 :return:
4434 4434 """
4435 4435 from rhodecode.model.gist import GistModel
4436 4436 full_repo_path = os.path.join(self.base_path(), self.gist_access_id)
4437 4437 return get_vcs_instance(
4438 4438 repo_path=safe_str(full_repo_path), create=False,
4439 4439 _vcs_alias=GistModel.vcs_backend)
4440 4440
4441 4441
4442 4442 class ExternalIdentity(Base, BaseModel):
4443 4443 __tablename__ = 'external_identities'
4444 4444 __table_args__ = (
4445 4445 Index('local_user_id_idx', 'local_user_id'),
4446 4446 Index('external_id_idx', 'external_id'),
4447 4447 base_table_args
4448 4448 )
4449 4449
4450 4450 external_id = Column('external_id', Unicode(255), default=u'', primary_key=True)
4451 4451 external_username = Column('external_username', Unicode(1024), default=u'')
4452 4452 local_user_id = Column('local_user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
4453 4453 provider_name = Column('provider_name', Unicode(255), default=u'', primary_key=True)
4454 4454 access_token = Column('access_token', String(1024), default=u'')
4455 4455 alt_token = Column('alt_token', String(1024), default=u'')
4456 4456 token_secret = Column('token_secret', String(1024), default=u'')
4457 4457
4458 4458 @classmethod
4459 4459 def by_external_id_and_provider(cls, external_id, provider_name, local_user_id=None):
4460 4460 """
4461 4461 Returns ExternalIdentity instance based on search params
4462 4462
4463 4463 :param external_id:
4464 4464 :param provider_name:
4465 4465 :return: ExternalIdentity
4466 4466 """
4467 4467 query = cls.query()
4468 4468 query = query.filter(cls.external_id == external_id)
4469 4469 query = query.filter(cls.provider_name == provider_name)
4470 4470 if local_user_id:
4471 4471 query = query.filter(cls.local_user_id == local_user_id)
4472 4472 return query.first()
4473 4473
4474 4474 @classmethod
4475 4475 def user_by_external_id_and_provider(cls, external_id, provider_name):
4476 4476 """
4477 4477 Returns User instance based on search params
4478 4478
4479 4479 :param external_id:
4480 4480 :param provider_name:
4481 4481 :return: User
4482 4482 """
4483 4483 query = User.query()
4484 4484 query = query.filter(cls.external_id == external_id)
4485 4485 query = query.filter(cls.provider_name == provider_name)
4486 4486 query = query.filter(User.user_id == cls.local_user_id)
4487 4487 return query.first()
4488 4488
4489 4489 @classmethod
4490 4490 def by_local_user_id(cls, local_user_id):
4491 4491 """
4492 4492 Returns all tokens for user
4493 4493
4494 4494 :param local_user_id:
4495 4495 :return: ExternalIdentity
4496 4496 """
4497 4497 query = cls.query()
4498 4498 query = query.filter(cls.local_user_id == local_user_id)
4499 4499 return query
4500 4500
4501 4501 @classmethod
4502 4502 def load_provider_plugin(cls, plugin_id):
4503 4503 from rhodecode.authentication.base import loadplugin
4504 4504 _plugin_id = 'egg:rhodecode-enterprise-ee#{}'.format(plugin_id)
4505 4505 auth_plugin = loadplugin(_plugin_id)
4506 4506 return auth_plugin
4507 4507
4508 4508
4509 4509 class Integration(Base, BaseModel):
4510 4510 __tablename__ = 'integrations'
4511 4511 __table_args__ = (
4512 4512 base_table_args
4513 4513 )
4514 4514
4515 4515 integration_id = Column('integration_id', Integer(), primary_key=True)
4516 4516 integration_type = Column('integration_type', String(255))
4517 4517 enabled = Column('enabled', Boolean(), nullable=False)
4518 4518 name = Column('name', String(255), nullable=False)
4519 4519 child_repos_only = Column('child_repos_only', Boolean(), nullable=False,
4520 4520 default=False)
4521 4521
4522 4522 settings = Column(
4523 4523 'settings_json', MutationObj.as_mutable(
4524 4524 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
4525 4525 repo_id = Column(
4526 4526 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
4527 4527 nullable=True, unique=None, default=None)
4528 4528 repo = relationship('Repository', lazy='joined')
4529 4529
4530 4530 repo_group_id = Column(
4531 4531 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
4532 4532 nullable=True, unique=None, default=None)
4533 4533 repo_group = relationship('RepoGroup', lazy='joined')
4534 4534
4535 4535 @property
4536 4536 def scope(self):
4537 4537 if self.repo:
4538 4538 return repr(self.repo)
4539 4539 if self.repo_group:
4540 4540 if self.child_repos_only:
4541 4541 return repr(self.repo_group) + ' (child repos only)'
4542 4542 else:
4543 4543 return repr(self.repo_group) + ' (recursive)'
4544 4544 if self.child_repos_only:
4545 4545 return 'root_repos'
4546 4546 return 'global'
4547 4547
4548 4548 def __repr__(self):
4549 4549 return '<Integration(%r, %r)>' % (self.integration_type, self.scope)
4550 4550
4551 4551
4552 4552 class RepoReviewRuleUser(Base, BaseModel):
4553 4553 __tablename__ = 'repo_review_rules_users'
4554 4554 __table_args__ = (
4555 4555 base_table_args
4556 4556 )
4557 4557
4558 4558 repo_review_rule_user_id = Column('repo_review_rule_user_id', Integer(), primary_key=True)
4559 4559 repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id'))
4560 4560 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False)
4561 4561 mandatory = Column("mandatory", Boolean(), nullable=False, default=False)
4562 4562 user = relationship('User')
4563 4563
4564 4564 def rule_data(self):
4565 4565 return {
4566 4566 'mandatory': self.mandatory
4567 4567 }
4568 4568
4569 4569
4570 4570 class RepoReviewRuleUserGroup(Base, BaseModel):
4571 4571 __tablename__ = 'repo_review_rules_users_groups'
4572 4572 __table_args__ = (
4573 4573 base_table_args
4574 4574 )
4575 4575
4576 4576 VOTE_RULE_ALL = -1
4577 4577
4578 4578 repo_review_rule_users_group_id = Column('repo_review_rule_users_group_id', Integer(), primary_key=True)
4579 4579 repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id'))
4580 4580 users_group_id = Column("users_group_id", Integer(),ForeignKey('users_groups.users_group_id'), nullable=False)
4581 4581 mandatory = Column("mandatory", Boolean(), nullable=False, default=False)
4582 4582 vote_rule = Column("vote_rule", Integer(), nullable=True, default=VOTE_RULE_ALL)
4583 4583 users_group = relationship('UserGroup')
4584 4584
4585 4585 def rule_data(self):
4586 4586 return {
4587 4587 'mandatory': self.mandatory,
4588 4588 'vote_rule': self.vote_rule
4589 4589 }
4590 4590
4591 4591 @property
4592 4592 def vote_rule_label(self):
4593 4593 if not self.vote_rule or self.vote_rule == self.VOTE_RULE_ALL:
4594 4594 return 'all must vote'
4595 4595 else:
4596 4596 return 'min. vote {}'.format(self.vote_rule)
4597 4597
4598 4598
4599 4599 class RepoReviewRule(Base, BaseModel):
4600 4600 __tablename__ = 'repo_review_rules'
4601 4601 __table_args__ = (
4602 4602 base_table_args
4603 4603 )
4604 4604
4605 4605 repo_review_rule_id = Column(
4606 4606 'repo_review_rule_id', Integer(), primary_key=True)
4607 4607 repo_id = Column(
4608 4608 "repo_id", Integer(), ForeignKey('repositories.repo_id'))
4609 4609 repo = relationship('Repository', backref='review_rules')
4610 4610
4611 4611 review_rule_name = Column('review_rule_name', String(255))
4612 4612 _branch_pattern = Column("branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob
4613 4613 _target_branch_pattern = Column("target_branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob
4614 4614 _file_pattern = Column("file_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob
4615 4615
4616 4616 use_authors_for_review = Column("use_authors_for_review", Boolean(), nullable=False, default=False)
4617 4617 forbid_author_to_review = Column("forbid_author_to_review", Boolean(), nullable=False, default=False)
4618 4618 forbid_commit_author_to_review = Column("forbid_commit_author_to_review", Boolean(), nullable=False, default=False)
4619 4619 forbid_adding_reviewers = Column("forbid_adding_reviewers", Boolean(), nullable=False, default=False)
4620 4620
4621 4621 rule_users = relationship('RepoReviewRuleUser')
4622 4622 rule_user_groups = relationship('RepoReviewRuleUserGroup')
4623 4623
4624 4624 def _validate_pattern(self, value):
4625 4625 re.compile('^' + glob2re(value) + '$')
4626 4626
4627 4627 @hybrid_property
4628 4628 def source_branch_pattern(self):
4629 4629 return self._branch_pattern or '*'
4630 4630
4631 4631 @source_branch_pattern.setter
4632 4632 def source_branch_pattern(self, value):
4633 4633 self._validate_pattern(value)
4634 4634 self._branch_pattern = value or '*'
4635 4635
4636 4636 @hybrid_property
4637 4637 def target_branch_pattern(self):
4638 4638 return self._target_branch_pattern or '*'
4639 4639
4640 4640 @target_branch_pattern.setter
4641 4641 def target_branch_pattern(self, value):
4642 4642 self._validate_pattern(value)
4643 4643 self._target_branch_pattern = value or '*'
4644 4644
4645 4645 @hybrid_property
4646 4646 def file_pattern(self):
4647 4647 return self._file_pattern or '*'
4648 4648
4649 4649 @file_pattern.setter
4650 4650 def file_pattern(self, value):
4651 4651 self._validate_pattern(value)
4652 4652 self._file_pattern = value or '*'
4653 4653
4654 4654 def matches(self, source_branch, target_branch, files_changed):
4655 4655 """
4656 4656 Check if this review rule matches a branch/files in a pull request
4657 4657
4658 4658 :param source_branch: source branch name for the commit
4659 4659 :param target_branch: target branch name for the commit
4660 4660 :param files_changed: list of file paths changed in the pull request
4661 4661 """
4662 4662
4663 4663 source_branch = source_branch or ''
4664 4664 target_branch = target_branch or ''
4665 4665 files_changed = files_changed or []
4666 4666
4667 4667 branch_matches = True
4668 4668 if source_branch or target_branch:
4669 4669 if self.source_branch_pattern == '*':
4670 4670 source_branch_match = True
4671 4671 else:
4672 4672 if self.source_branch_pattern.startswith('re:'):
4673 4673 source_pattern = self.source_branch_pattern[3:]
4674 4674 else:
4675 4675 source_pattern = '^' + glob2re(self.source_branch_pattern) + '$'
4676 4676 source_branch_regex = re.compile(source_pattern)
4677 4677 source_branch_match = bool(source_branch_regex.search(source_branch))
4678 4678 if self.target_branch_pattern == '*':
4679 4679 target_branch_match = True
4680 4680 else:
4681 4681 if self.target_branch_pattern.startswith('re:'):
4682 4682 target_pattern = self.target_branch_pattern[3:]
4683 4683 else:
4684 4684 target_pattern = '^' + glob2re(self.target_branch_pattern) + '$'
4685 4685 target_branch_regex = re.compile(target_pattern)
4686 4686 target_branch_match = bool(target_branch_regex.search(target_branch))
4687 4687
4688 4688 branch_matches = source_branch_match and target_branch_match
4689 4689
4690 4690 files_matches = True
4691 4691 if self.file_pattern != '*':
4692 4692 files_matches = False
4693 4693 if self.file_pattern.startswith('re:'):
4694 4694 file_pattern = self.file_pattern[3:]
4695 4695 else:
4696 4696 file_pattern = glob2re(self.file_pattern)
4697 4697 file_regex = re.compile(file_pattern)
4698 4698 for filename in files_changed:
4699 4699 if file_regex.search(filename):
4700 4700 files_matches = True
4701 4701 break
4702 4702
4703 4703 return branch_matches and files_matches
4704 4704
4705 4705 @property
4706 4706 def review_users(self):
4707 4707 """ Returns the users which this rule applies to """
4708 4708
4709 4709 users = collections.OrderedDict()
4710 4710
4711 4711 for rule_user in self.rule_users:
4712 4712 if rule_user.user.active:
4713 4713 if rule_user.user not in users:
4714 4714 users[rule_user.user.username] = {
4715 4715 'user': rule_user.user,
4716 4716 'source': 'user',
4717 4717 'source_data': {},
4718 4718 'data': rule_user.rule_data()
4719 4719 }
4720 4720
4721 4721 for rule_user_group in self.rule_user_groups:
4722 4722 source_data = {
4723 4723 'user_group_id': rule_user_group.users_group.users_group_id,
4724 4724 'name': rule_user_group.users_group.users_group_name,
4725 4725 'members': len(rule_user_group.users_group.members)
4726 4726 }
4727 4727 for member in rule_user_group.users_group.members:
4728 4728 if member.user.active:
4729 4729 key = member.user.username
4730 4730 if key in users:
4731 4731 # skip this member as we have him already
4732 4732 # this prevents from override the "first" matched
4733 4733 # users with duplicates in multiple groups
4734 4734 continue
4735 4735
4736 4736 users[key] = {
4737 4737 'user': member.user,
4738 4738 'source': 'user_group',
4739 4739 'source_data': source_data,
4740 4740 'data': rule_user_group.rule_data()
4741 4741 }
4742 4742
4743 4743 return users
4744 4744
4745 4745 def user_group_vote_rule(self, user_id):
4746 4746
4747 4747 rules = []
4748 4748 if not self.rule_user_groups:
4749 4749 return rules
4750 4750
4751 4751 for user_group in self.rule_user_groups:
4752 4752 user_group_members = [x.user_id for x in user_group.users_group.members]
4753 4753 if user_id in user_group_members:
4754 4754 rules.append(user_group)
4755 4755 return rules
4756 4756
4757 4757 def __repr__(self):
4758 4758 return '<RepoReviewerRule(id=%r, repo=%r)>' % (
4759 4759 self.repo_review_rule_id, self.repo)
4760 4760
4761 4761
4762 4762 class ScheduleEntry(Base, BaseModel):
4763 4763 __tablename__ = 'schedule_entries'
4764 4764 __table_args__ = (
4765 4765 UniqueConstraint('schedule_name', name='s_schedule_name_idx'),
4766 4766 UniqueConstraint('task_uid', name='s_task_uid_idx'),
4767 4767 base_table_args,
4768 4768 )
4769 4769
4770 4770 schedule_types = ['crontab', 'timedelta', 'integer']
4771 4771 schedule_entry_id = Column('schedule_entry_id', Integer(), primary_key=True)
4772 4772
4773 4773 schedule_name = Column("schedule_name", String(255), nullable=False, unique=None, default=None)
4774 4774 schedule_description = Column("schedule_description", String(10000), nullable=True, unique=None, default=None)
4775 4775 schedule_enabled = Column("schedule_enabled", Boolean(), nullable=False, unique=None, default=True)
4776 4776
4777 4777 _schedule_type = Column("schedule_type", String(255), nullable=False, unique=None, default=None)
4778 4778 schedule_definition = Column('schedule_definition_json', MutationObj.as_mutable(JsonType(default=lambda: "", dialect_map=dict(mysql=LONGTEXT()))))
4779 4779
4780 4780 schedule_last_run = Column('schedule_last_run', DateTime(timezone=False), nullable=True, unique=None, default=None)
4781 4781 schedule_total_run_count = Column('schedule_total_run_count', Integer(), nullable=True, unique=None, default=0)
4782 4782
4783 4783 # task
4784 4784 task_uid = Column("task_uid", String(255), nullable=False, unique=None, default=None)
4785 4785 task_dot_notation = Column("task_dot_notation", String(4096), nullable=False, unique=None, default=None)
4786 4786 task_args = Column('task_args_json', MutationObj.as_mutable(JsonType(default=list, dialect_map=dict(mysql=LONGTEXT()))))
4787 4787 task_kwargs = Column('task_kwargs_json', MutationObj.as_mutable(JsonType(default=dict, dialect_map=dict(mysql=LONGTEXT()))))
4788 4788
4789 4789 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
4790 4790 updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=None)
4791 4791
4792 4792 @hybrid_property
4793 4793 def schedule_type(self):
4794 4794 return self._schedule_type
4795 4795
4796 4796 @schedule_type.setter
4797 4797 def schedule_type(self, val):
4798 4798 if val not in self.schedule_types:
4799 4799 raise ValueError('Value must be on of `{}` and got `{}`'.format(
4800 4800 val, self.schedule_type))
4801 4801
4802 4802 self._schedule_type = val
4803 4803
4804 4804 @classmethod
4805 4805 def get_uid(cls, obj):
4806 4806 args = obj.task_args
4807 4807 kwargs = obj.task_kwargs
4808 4808 if isinstance(args, JsonRaw):
4809 4809 try:
4810 4810 args = json.loads(args)
4811 4811 except ValueError:
4812 4812 args = tuple()
4813 4813
4814 4814 if isinstance(kwargs, JsonRaw):
4815 4815 try:
4816 4816 kwargs = json.loads(kwargs)
4817 4817 except ValueError:
4818 4818 kwargs = dict()
4819 4819
4820 4820 dot_notation = obj.task_dot_notation
4821 4821 val = '.'.join(map(safe_str, [
4822 4822 sorted(dot_notation), args, sorted(kwargs.items())]))
4823 4823 return hashlib.sha1(val).hexdigest()
4824 4824
4825 4825 @classmethod
4826 4826 def get_by_schedule_name(cls, schedule_name):
4827 4827 return cls.query().filter(cls.schedule_name == schedule_name).scalar()
4828 4828
4829 4829 @classmethod
4830 4830 def get_by_schedule_id(cls, schedule_id):
4831 4831 return cls.query().filter(cls.schedule_entry_id == schedule_id).scalar()
4832 4832
4833 4833 @property
4834 4834 def task(self):
4835 4835 return self.task_dot_notation
4836 4836
4837 4837 @property
4838 4838 def schedule(self):
4839 4839 from rhodecode.lib.celerylib.utils import raw_2_schedule
4840 4840 schedule = raw_2_schedule(self.schedule_definition, self.schedule_type)
4841 4841 return schedule
4842 4842
4843 4843 @property
4844 4844 def args(self):
4845 4845 try:
4846 4846 return list(self.task_args or [])
4847 4847 except ValueError:
4848 4848 return list()
4849 4849
4850 4850 @property
4851 4851 def kwargs(self):
4852 4852 try:
4853 4853 return dict(self.task_kwargs or {})
4854 4854 except ValueError:
4855 4855 return dict()
4856 4856
4857 4857 def _as_raw(self, val):
4858 4858 if hasattr(val, 'de_coerce'):
4859 4859 val = val.de_coerce()
4860 4860 if val:
4861 4861 val = json.dumps(val)
4862 4862
4863 4863 return val
4864 4864
4865 4865 @property
4866 4866 def schedule_definition_raw(self):
4867 4867 return self._as_raw(self.schedule_definition)
4868 4868
4869 4869 @property
4870 4870 def args_raw(self):
4871 4871 return self._as_raw(self.task_args)
4872 4872
4873 4873 @property
4874 4874 def kwargs_raw(self):
4875 4875 return self._as_raw(self.task_kwargs)
4876 4876
4877 4877 def __repr__(self):
4878 4878 return '<DB:ScheduleEntry({}:{})>'.format(
4879 4879 self.schedule_entry_id, self.schedule_name)
4880 4880
4881 4881
4882 4882 @event.listens_for(ScheduleEntry, 'before_update')
4883 4883 def update_task_uid(mapper, connection, target):
4884 4884 target.task_uid = ScheduleEntry.get_uid(target)
4885 4885
4886 4886
4887 4887 @event.listens_for(ScheduleEntry, 'before_insert')
4888 4888 def set_task_uid(mapper, connection, target):
4889 4889 target.task_uid = ScheduleEntry.get_uid(target)
4890 4890
4891 4891
4892 4892 class _BaseBranchPerms(BaseModel):
4893 4893 @classmethod
4894 4894 def compute_hash(cls, value):
4895 4895 return sha1_safe(value)
4896 4896
4897 4897 @hybrid_property
4898 4898 def branch_pattern(self):
4899 4899 return self._branch_pattern or '*'
4900 4900
4901 4901 @hybrid_property
4902 4902 def branch_hash(self):
4903 4903 return self._branch_hash
4904 4904
4905 4905 def _validate_glob(self, value):
4906 4906 re.compile('^' + glob2re(value) + '$')
4907 4907
4908 4908 @branch_pattern.setter
4909 4909 def branch_pattern(self, value):
4910 4910 self._validate_glob(value)
4911 4911 self._branch_pattern = value or '*'
4912 4912 # set the Hash when setting the branch pattern
4913 4913 self._branch_hash = self.compute_hash(self._branch_pattern)
4914 4914
4915 4915 def matches(self, branch):
4916 4916 """
4917 4917 Check if this the branch matches entry
4918 4918
4919 4919 :param branch: branch name for the commit
4920 4920 """
4921 4921
4922 4922 branch = branch or ''
4923 4923
4924 4924 branch_matches = True
4925 4925 if branch:
4926 4926 branch_regex = re.compile('^' + glob2re(self.branch_pattern) + '$')
4927 4927 branch_matches = bool(branch_regex.search(branch))
4928 4928
4929 4929 return branch_matches
4930 4930
4931 4931
4932 4932 class UserToRepoBranchPermission(Base, _BaseBranchPerms):
4933 4933 __tablename__ = 'user_to_repo_branch_permissions'
4934 4934 __table_args__ = (
4935 4935 {'extend_existing': True, 'mysql_engine': 'InnoDB',
4936 4936 'mysql_charset': 'utf8', 'sqlite_autoincrement': True,}
4937 4937 )
4938 4938
4939 4939 branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True)
4940 4940
4941 4941 repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
4942 4942 repo = relationship('Repository', backref='user_branch_perms')
4943 4943
4944 4944 permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
4945 4945 permission = relationship('Permission')
4946 4946
4947 4947 rule_to_perm_id = Column('rule_to_perm_id', Integer(), ForeignKey('repo_to_perm.repo_to_perm_id'), nullable=False, unique=None, default=None)
4948 4948 user_repo_to_perm = relationship('UserRepoToPerm')
4949 4949
4950 4950 rule_order = Column('rule_order', Integer(), nullable=False)
4951 4951 _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob
4952 4952 _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql'))
4953 4953
4954 4954 def __unicode__(self):
4955 4955 return u'<UserBranchPermission(%s => %r)>' % (
4956 4956 self.user_repo_to_perm, self.branch_pattern)
4957 4957
4958 4958
4959 4959 class UserGroupToRepoBranchPermission(Base, _BaseBranchPerms):
4960 4960 __tablename__ = 'user_group_to_repo_branch_permissions'
4961 4961 __table_args__ = (
4962 4962 {'extend_existing': True, 'mysql_engine': 'InnoDB',
4963 4963 'mysql_charset': 'utf8', 'sqlite_autoincrement': True,}
4964 4964 )
4965 4965
4966 4966 branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True)
4967 4967
4968 4968 repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
4969 4969 repo = relationship('Repository', backref='user_group_branch_perms')
4970 4970
4971 4971 permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
4972 4972 permission = relationship('Permission')
4973 4973
4974 4974 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)
4975 4975 user_group_repo_to_perm = relationship('UserGroupRepoToPerm')
4976 4976
4977 4977 rule_order = Column('rule_order', Integer(), nullable=False)
4978 4978 _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob
4979 4979 _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql'))
4980 4980
4981 4981 def __unicode__(self):
4982 4982 return u'<UserBranchPermission(%s => %r)>' % (
4983 4983 self.user_group_repo_to_perm, self.branch_pattern)
4984 4984
4985 4985
4986 4986 class UserBookmark(Base, BaseModel):
4987 4987 __tablename__ = 'user_bookmarks'
4988 4988 __table_args__ = (
4989 4989 UniqueConstraint('user_id', 'bookmark_repo_id'),
4990 4990 UniqueConstraint('user_id', 'bookmark_repo_group_id'),
4991 4991 UniqueConstraint('user_id', 'bookmark_position'),
4992 4992 base_table_args
4993 4993 )
4994 4994
4995 4995 user_bookmark_id = Column("user_bookmark_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
4996 4996 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
4997 4997 position = Column("bookmark_position", Integer(), nullable=False)
4998 4998 title = Column("bookmark_title", String(255), nullable=True, unique=None, default=None)
4999 4999 redirect_url = Column("bookmark_redirect_url", String(10240), nullable=True, unique=None, default=None)
5000 5000 created_on = Column("created_on", DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
5001 5001
5002 5002 bookmark_repo_id = Column("bookmark_repo_id", Integer(), ForeignKey("repositories.repo_id"), nullable=True, unique=None, default=None)
5003 5003 bookmark_repo_group_id = Column("bookmark_repo_group_id", Integer(), ForeignKey("groups.group_id"), nullable=True, unique=None, default=None)
5004 5004
5005 5005 user = relationship("User")
5006 5006
5007 5007 repository = relationship("Repository")
5008 5008 repository_group = relationship("RepoGroup")
5009 5009
5010 5010 @classmethod
5011 5011 def get_by_position_for_user(cls, position, user_id):
5012 5012 return cls.query() \
5013 5013 .filter(UserBookmark.user_id == user_id) \
5014 5014 .filter(UserBookmark.position == position).scalar()
5015 5015
5016 5016 @classmethod
5017 5017 def get_bookmarks_for_user(cls, user_id):
5018 5018 return cls.query() \
5019 5019 .filter(UserBookmark.user_id == user_id) \
5020 5020 .options(joinedload(UserBookmark.repository)) \
5021 5021 .options(joinedload(UserBookmark.repository_group)) \
5022 5022 .order_by(UserBookmark.position.asc()) \
5023 5023 .all()
5024 5024
5025 5025 def __unicode__(self):
5026 5026 return u'<UserBookmark(%d @ %r)>' % (self.position, self.redirect_url)
5027 5027
5028 5028
5029 5029 class FileStore(Base, BaseModel):
5030 5030 __tablename__ = 'file_store'
5031 5031 __table_args__ = (
5032 5032 base_table_args
5033 5033 )
5034 5034
5035 5035 file_store_id = Column('file_store_id', Integer(), primary_key=True)
5036 5036 file_uid = Column('file_uid', String(1024), nullable=False)
5037 5037 file_display_name = Column('file_display_name', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), nullable=True)
5038 5038 file_description = Column('file_description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=True)
5039 5039 file_org_name = Column('file_org_name', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=False)
5040 5040
5041 5041 # sha256 hash
5042 5042 file_hash = Column('file_hash', String(512), nullable=False)
5043 5043 file_size = Column('file_size', Integer(), nullable=False)
5044 5044
5045 5045 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
5046 5046 accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True)
5047 5047 accessed_count = Column('accessed_count', Integer(), default=0)
5048 5048
5049 5049 enabled = Column('enabled', Boolean(), nullable=False, default=True)
5050 5050
5051 5051 # if repo/repo_group reference is set, check for permissions
5052 5052 check_acl = Column('check_acl', Boolean(), nullable=False, default=True)
5053 5053
5054 5054 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
5055 5055 upload_user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.user_id')
5056 5056
5057 5057 # scope limited to user, which requester have access to
5058 5058 scope_user_id = Column(
5059 5059 'scope_user_id', Integer(), ForeignKey('users.user_id'),
5060 5060 nullable=True, unique=None, default=None)
5061 5061 user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.scope_user_id')
5062 5062
5063 5063 # scope limited to user group, which requester have access to
5064 5064 scope_user_group_id = Column(
5065 5065 'scope_user_group_id', Integer(), ForeignKey('users_groups.users_group_id'),
5066 5066 nullable=True, unique=None, default=None)
5067 5067 user_group = relationship('UserGroup', lazy='joined')
5068 5068
5069 5069 # scope limited to repo, which requester have access to
5070 5070 scope_repo_id = Column(
5071 5071 'scope_repo_id', Integer(), ForeignKey('repositories.repo_id'),
5072 5072 nullable=True, unique=None, default=None)
5073 5073 repo = relationship('Repository', lazy='joined')
5074 5074
5075 5075 # scope limited to repo group, which requester have access to
5076 5076 scope_repo_group_id = Column(
5077 5077 'scope_repo_group_id', Integer(), ForeignKey('groups.group_id'),
5078 5078 nullable=True, unique=None, default=None)
5079 5079 repo_group = relationship('RepoGroup', lazy='joined')
5080 5080
5081 5081 @classmethod
5082 5082 def create(cls, file_uid, filename, file_hash, file_size, file_display_name='',
5083 5083 file_description='', enabled=True, check_acl=True, user_id=None,
5084 5084 scope_user_id=None, scope_repo_id=None, scope_repo_group_id=None):
5085 5085
5086 5086 store_entry = FileStore()
5087 5087 store_entry.file_uid = file_uid
5088 5088 store_entry.file_display_name = file_display_name
5089 5089 store_entry.file_org_name = filename
5090 5090 store_entry.file_size = file_size
5091 5091 store_entry.file_hash = file_hash
5092 5092 store_entry.file_description = file_description
5093 5093
5094 5094 store_entry.check_acl = check_acl
5095 5095 store_entry.enabled = enabled
5096 5096
5097 5097 store_entry.user_id = user_id
5098 5098 store_entry.scope_user_id = scope_user_id
5099 5099 store_entry.scope_repo_id = scope_repo_id
5100 5100 store_entry.scope_repo_group_id = scope_repo_group_id
5101 5101 return store_entry
5102 5102
5103 5103 @classmethod
5104 5104 def bump_access_counter(cls, file_uid, commit=True):
5105 5105 FileStore().query()\
5106 5106 .filter(FileStore.file_uid == file_uid)\
5107 5107 .update({FileStore.accessed_count: (FileStore.accessed_count + 1),
5108 5108 FileStore.accessed_on: datetime.datetime.now()})
5109 5109 if commit:
5110 5110 Session().commit()
5111 5111
5112 5112 def __repr__(self):
5113 5113 return '<FileStore({})>'.format(self.file_store_id)
5114 5114
5115 5115
5116 5116 class DbMigrateVersion(Base, BaseModel):
5117 5117 __tablename__ = 'db_migrate_version'
5118 5118 __table_args__ = (
5119 5119 base_table_args,
5120 5120 )
5121 5121
5122 5122 repository_id = Column('repository_id', String(250), primary_key=True)
5123 5123 repository_path = Column('repository_path', Text)
5124 5124 version = Column('version', Integer)
5125 5125
5126 5126 @classmethod
5127 5127 def set_version(cls, version):
5128 5128 """
5129 5129 Helper for forcing a different version, usually for debugging purposes via ishell.
5130 5130 """
5131 5131 ver = DbMigrateVersion.query().first()
5132 5132 ver.version = version
5133 5133 Session().commit()
5134 5134
5135 5135
5136 5136 class DbSession(Base, BaseModel):
5137 5137 __tablename__ = 'db_session'
5138 5138 __table_args__ = (
5139 5139 base_table_args,
5140 5140 )
5141 5141
5142 5142 def __repr__(self):
5143 5143 return '<DB:DbSession({})>'.format(self.id)
5144 5144
5145 5145 id = Column('id', Integer())
5146 5146 namespace = Column('namespace', String(255), primary_key=True)
5147 5147 accessed = Column('accessed', DateTime, nullable=False)
5148 5148 created = Column('created', DateTime, nullable=False)
5149 5149 data = Column('data', PickleType, nullable=False)
General Comments 0
You need to be logged in to leave comments. Login now