##// END OF EJS Templates
integrations: refactor/cleanup + features, fixes #4181...
dan -
r731:7a6d3636 default
parent child Browse files
Show More
This diff has been collapsed as it changes many lines, (3529 lines changed) Show them Hide them
@@ -0,0 +1,3529 b''
1 # -*- coding: utf-8 -*-
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
21 """
22 Database Models for RhodeCode Enterprise
23 """
24
25 import os
26 import sys
27 import time
28 import hashlib
29 import logging
30 import datetime
31 import warnings
32 import ipaddress
33 import functools
34 import traceback
35 import collections
36
37
38 from sqlalchemy import *
39 from sqlalchemy.exc import IntegrityError
40 from sqlalchemy.ext.declarative import declared_attr
41 from sqlalchemy.ext.hybrid import hybrid_property
42 from sqlalchemy.orm import (
43 relationship, joinedload, class_mapper, validates, aliased)
44 from sqlalchemy.sql.expression import true
45 from beaker.cache import cache_region, region_invalidate
46 from webob.exc import HTTPNotFound
47 from zope.cachedescriptors.property import Lazy as LazyProperty
48
49 from pylons import url
50 from pylons.i18n.translation import lazy_ugettext as _
51
52 from rhodecode.lib.vcs import get_backend, get_vcs_instance
53 from rhodecode.lib.vcs.utils.helpers import get_scm
54 from rhodecode.lib.vcs.exceptions import VCSError
55 from rhodecode.lib.vcs.backends.base import (
56 EmptyCommit, Reference, MergeFailureReason)
57 from rhodecode.lib.utils2 import (
58 str2bool, safe_str, get_commit_safe, safe_unicode, remove_prefix, md5_safe,
59 time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict)
60 from rhodecode.lib.jsonalchemy import MutationObj, JsonType, JSONDict
61 from rhodecode.lib.ext_json import json
62 from rhodecode.lib.caching_query import FromCache
63 from rhodecode.lib.encrypt import AESCipher
64
65 from rhodecode.model.meta import Base, Session
66
67 URL_SEP = '/'
68 log = logging.getLogger(__name__)
69
70 # =============================================================================
71 # BASE CLASSES
72 # =============================================================================
73
74 # this is propagated from .ini file rhodecode.encrypted_values.secret or
75 # beaker.session.secret if first is not set.
76 # and initialized at environment.py
77 ENCRYPTION_KEY = None
78
79 # used to sort permissions by types, '#' used here is not allowed to be in
80 # usernames, and it's very early in sorted string.printable table.
81 PERMISSION_TYPE_SORT = {
82 'admin': '####',
83 'write': '###',
84 'read': '##',
85 'none': '#',
86 }
87
88
89 def display_sort(obj):
90 """
91 Sort function used to sort permissions in .permissions() function of
92 Repository, RepoGroup, UserGroup. Also it put the default user in front
93 of all other resources
94 """
95
96 if obj.username == User.DEFAULT_USER:
97 return '#####'
98 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
99 return prefix + obj.username
100
101
102 def _hash_key(k):
103 return md5_safe(k)
104
105
106 class EncryptedTextValue(TypeDecorator):
107 """
108 Special column for encrypted long text data, use like::
109
110 value = Column("encrypted_value", EncryptedValue(), nullable=False)
111
112 This column is intelligent so if value is in unencrypted form it return
113 unencrypted form, but on save it always encrypts
114 """
115 impl = Text
116
117 def process_bind_param(self, value, dialect):
118 if not value:
119 return value
120 if value.startswith('enc$aes$') or value.startswith('enc$aes_hmac$'):
121 # protect against double encrypting if someone manually starts
122 # doing
123 raise ValueError('value needs to be in unencrypted format, ie. '
124 'not starting with enc$aes')
125 return 'enc$aes_hmac$%s' % AESCipher(
126 ENCRYPTION_KEY, hmac=True).encrypt(value)
127
128 def process_result_value(self, value, dialect):
129 import rhodecode
130
131 if not value:
132 return value
133
134 parts = value.split('$', 3)
135 if not len(parts) == 3:
136 # probably not encrypted values
137 return value
138 else:
139 if parts[0] != 'enc':
140 # parts ok but without our header ?
141 return value
142 enc_strict_mode = str2bool(rhodecode.CONFIG.get(
143 'rhodecode.encrypted_values.strict') or True)
144 # at that stage we know it's our encryption
145 if parts[1] == 'aes':
146 decrypted_data = AESCipher(ENCRYPTION_KEY).decrypt(parts[2])
147 elif parts[1] == 'aes_hmac':
148 decrypted_data = AESCipher(
149 ENCRYPTION_KEY, hmac=True,
150 strict_verification=enc_strict_mode).decrypt(parts[2])
151 else:
152 raise ValueError(
153 'Encryption type part is wrong, must be `aes` '
154 'or `aes_hmac`, got `%s` instead' % (parts[1]))
155 return decrypted_data
156
157
158 class BaseModel(object):
159 """
160 Base Model for all classes
161 """
162
163 @classmethod
164 def _get_keys(cls):
165 """return column names for this model """
166 return class_mapper(cls).c.keys()
167
168 def get_dict(self):
169 """
170 return dict with keys and values corresponding
171 to this model data """
172
173 d = {}
174 for k in self._get_keys():
175 d[k] = getattr(self, k)
176
177 # also use __json__() if present to get additional fields
178 _json_attr = getattr(self, '__json__', None)
179 if _json_attr:
180 # update with attributes from __json__
181 if callable(_json_attr):
182 _json_attr = _json_attr()
183 for k, val in _json_attr.iteritems():
184 d[k] = val
185 return d
186
187 def get_appstruct(self):
188 """return list with keys and values tuples corresponding
189 to this model data """
190
191 l = []
192 for k in self._get_keys():
193 l.append((k, getattr(self, k),))
194 return l
195
196 def populate_obj(self, populate_dict):
197 """populate model with data from given populate_dict"""
198
199 for k in self._get_keys():
200 if k in populate_dict:
201 setattr(self, k, populate_dict[k])
202
203 @classmethod
204 def query(cls):
205 return Session().query(cls)
206
207 @classmethod
208 def get(cls, id_):
209 if id_:
210 return cls.query().get(id_)
211
212 @classmethod
213 def get_or_404(cls, id_):
214 try:
215 id_ = int(id_)
216 except (TypeError, ValueError):
217 raise HTTPNotFound
218
219 res = cls.query().get(id_)
220 if not res:
221 raise HTTPNotFound
222 return res
223
224 @classmethod
225 def getAll(cls):
226 # deprecated and left for backward compatibility
227 return cls.get_all()
228
229 @classmethod
230 def get_all(cls):
231 return cls.query().all()
232
233 @classmethod
234 def delete(cls, id_):
235 obj = cls.query().get(id_)
236 Session().delete(obj)
237
238 @classmethod
239 def identity_cache(cls, session, attr_name, value):
240 exist_in_session = []
241 for (item_cls, pkey), instance in session.identity_map.items():
242 if cls == item_cls and getattr(instance, attr_name) == value:
243 exist_in_session.append(instance)
244 if exist_in_session:
245 if len(exist_in_session) == 1:
246 return exist_in_session[0]
247 log.exception(
248 'multiple objects with attr %s and '
249 'value %s found with same name: %r',
250 attr_name, value, exist_in_session)
251
252 def __repr__(self):
253 if hasattr(self, '__unicode__'):
254 # python repr needs to return str
255 try:
256 return safe_str(self.__unicode__())
257 except UnicodeDecodeError:
258 pass
259 return '<DB:%s>' % (self.__class__.__name__)
260
261
262 class RhodeCodeSetting(Base, BaseModel):
263 __tablename__ = 'rhodecode_settings'
264 __table_args__ = (
265 UniqueConstraint('app_settings_name'),
266 {'extend_existing': True, 'mysql_engine': 'InnoDB',
267 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
268 )
269
270 SETTINGS_TYPES = {
271 'str': safe_str,
272 'int': safe_int,
273 'unicode': safe_unicode,
274 'bool': str2bool,
275 'list': functools.partial(aslist, sep=',')
276 }
277 DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions'
278 GLOBAL_CONF_KEY = 'app_settings'
279
280 app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
281 app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None)
282 _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None)
283 _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None)
284
285 def __init__(self, key='', val='', type='unicode'):
286 self.app_settings_name = key
287 self.app_settings_type = type
288 self.app_settings_value = val
289
290 @validates('_app_settings_value')
291 def validate_settings_value(self, key, val):
292 assert type(val) == unicode
293 return val
294
295 @hybrid_property
296 def app_settings_value(self):
297 v = self._app_settings_value
298 _type = self.app_settings_type
299 if _type:
300 _type = self.app_settings_type.split('.')[0]
301 # decode the encrypted value
302 if 'encrypted' in self.app_settings_type:
303 cipher = EncryptedTextValue()
304 v = safe_unicode(cipher.process_result_value(v, None))
305
306 converter = self.SETTINGS_TYPES.get(_type) or \
307 self.SETTINGS_TYPES['unicode']
308 return converter(v)
309
310 @app_settings_value.setter
311 def app_settings_value(self, val):
312 """
313 Setter that will always make sure we use unicode in app_settings_value
314
315 :param val:
316 """
317 val = safe_unicode(val)
318 # encode the encrypted value
319 if 'encrypted' in self.app_settings_type:
320 cipher = EncryptedTextValue()
321 val = safe_unicode(cipher.process_bind_param(val, None))
322 self._app_settings_value = val
323
324 @hybrid_property
325 def app_settings_type(self):
326 return self._app_settings_type
327
328 @app_settings_type.setter
329 def app_settings_type(self, val):
330 if val.split('.')[0] not in self.SETTINGS_TYPES:
331 raise Exception('type must be one of %s got %s'
332 % (self.SETTINGS_TYPES.keys(), val))
333 self._app_settings_type = val
334
335 def __unicode__(self):
336 return u"<%s('%s:%s[%s]')>" % (
337 self.__class__.__name__,
338 self.app_settings_name, self.app_settings_value,
339 self.app_settings_type
340 )
341
342
343 class RhodeCodeUi(Base, BaseModel):
344 __tablename__ = 'rhodecode_ui'
345 __table_args__ = (
346 UniqueConstraint('ui_key'),
347 {'extend_existing': True, 'mysql_engine': 'InnoDB',
348 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
349 )
350
351 HOOK_REPO_SIZE = 'changegroup.repo_size'
352 # HG
353 HOOK_PRE_PULL = 'preoutgoing.pre_pull'
354 HOOK_PULL = 'outgoing.pull_logger'
355 HOOK_PRE_PUSH = 'prechangegroup.pre_push'
356 HOOK_PUSH = 'changegroup.push_logger'
357
358 # TODO: johbo: Unify way how hooks are configured for git and hg,
359 # git part is currently hardcoded.
360
361 # SVN PATTERNS
362 SVN_BRANCH_ID = 'vcs_svn_branch'
363 SVN_TAG_ID = 'vcs_svn_tag'
364
365 ui_id = Column(
366 "ui_id", Integer(), nullable=False, unique=True, default=None,
367 primary_key=True)
368 ui_section = Column(
369 "ui_section", String(255), nullable=True, unique=None, default=None)
370 ui_key = Column(
371 "ui_key", String(255), nullable=True, unique=None, default=None)
372 ui_value = Column(
373 "ui_value", String(255), nullable=True, unique=None, default=None)
374 ui_active = Column(
375 "ui_active", Boolean(), nullable=True, unique=None, default=True)
376
377 def __repr__(self):
378 return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section,
379 self.ui_key, self.ui_value)
380
381
382 class RepoRhodeCodeSetting(Base, BaseModel):
383 __tablename__ = 'repo_rhodecode_settings'
384 __table_args__ = (
385 UniqueConstraint(
386 'app_settings_name', 'repository_id',
387 name='uq_repo_rhodecode_setting_name_repo_id'),
388 {'extend_existing': True, 'mysql_engine': 'InnoDB',
389 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
390 )
391
392 repository_id = Column(
393 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
394 nullable=False)
395 app_settings_id = Column(
396 "app_settings_id", Integer(), nullable=False, unique=True,
397 default=None, primary_key=True)
398 app_settings_name = Column(
399 "app_settings_name", String(255), nullable=True, unique=None,
400 default=None)
401 _app_settings_value = Column(
402 "app_settings_value", String(4096), nullable=True, unique=None,
403 default=None)
404 _app_settings_type = Column(
405 "app_settings_type", String(255), nullable=True, unique=None,
406 default=None)
407
408 repository = relationship('Repository')
409
410 def __init__(self, repository_id, key='', val='', type='unicode'):
411 self.repository_id = repository_id
412 self.app_settings_name = key
413 self.app_settings_type = type
414 self.app_settings_value = val
415
416 @validates('_app_settings_value')
417 def validate_settings_value(self, key, val):
418 assert type(val) == unicode
419 return val
420
421 @hybrid_property
422 def app_settings_value(self):
423 v = self._app_settings_value
424 type_ = self.app_settings_type
425 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
426 converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode']
427 return converter(v)
428
429 @app_settings_value.setter
430 def app_settings_value(self, val):
431 """
432 Setter that will always make sure we use unicode in app_settings_value
433
434 :param val:
435 """
436 self._app_settings_value = safe_unicode(val)
437
438 @hybrid_property
439 def app_settings_type(self):
440 return self._app_settings_type
441
442 @app_settings_type.setter
443 def app_settings_type(self, val):
444 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
445 if val not in SETTINGS_TYPES:
446 raise Exception('type must be one of %s got %s'
447 % (SETTINGS_TYPES.keys(), val))
448 self._app_settings_type = val
449
450 def __unicode__(self):
451 return u"<%s('%s:%s:%s[%s]')>" % (
452 self.__class__.__name__, self.repository.repo_name,
453 self.app_settings_name, self.app_settings_value,
454 self.app_settings_type
455 )
456
457
458 class RepoRhodeCodeUi(Base, BaseModel):
459 __tablename__ = 'repo_rhodecode_ui'
460 __table_args__ = (
461 UniqueConstraint(
462 'repository_id', 'ui_section', 'ui_key',
463 name='uq_repo_rhodecode_ui_repository_id_section_key'),
464 {'extend_existing': True, 'mysql_engine': 'InnoDB',
465 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
466 )
467
468 repository_id = Column(
469 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
470 nullable=False)
471 ui_id = Column(
472 "ui_id", Integer(), nullable=False, unique=True, default=None,
473 primary_key=True)
474 ui_section = Column(
475 "ui_section", String(255), nullable=True, unique=None, default=None)
476 ui_key = Column(
477 "ui_key", String(255), nullable=True, unique=None, default=None)
478 ui_value = Column(
479 "ui_value", String(255), nullable=True, unique=None, default=None)
480 ui_active = Column(
481 "ui_active", Boolean(), nullable=True, unique=None, default=True)
482
483 repository = relationship('Repository')
484
485 def __repr__(self):
486 return '<%s[%s:%s]%s=>%s]>' % (
487 self.__class__.__name__, self.repository.repo_name,
488 self.ui_section, self.ui_key, self.ui_value)
489
490
491 class User(Base, BaseModel):
492 __tablename__ = 'users'
493 __table_args__ = (
494 UniqueConstraint('username'), UniqueConstraint('email'),
495 Index('u_username_idx', 'username'),
496 Index('u_email_idx', 'email'),
497 {'extend_existing': True, 'mysql_engine': 'InnoDB',
498 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
499 )
500 DEFAULT_USER = 'default'
501 DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org'
502 DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}'
503
504 user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
505 username = Column("username", String(255), nullable=True, unique=None, default=None)
506 password = Column("password", String(255), nullable=True, unique=None, default=None)
507 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
508 admin = Column("admin", Boolean(), nullable=True, unique=None, default=False)
509 name = Column("firstname", String(255), nullable=True, unique=None, default=None)
510 lastname = Column("lastname", String(255), nullable=True, unique=None, default=None)
511 _email = Column("email", String(255), nullable=True, unique=None, default=None)
512 last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None)
513 extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None)
514 extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None)
515 api_key = Column("api_key", String(255), nullable=True, unique=None, default=None)
516 inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
517 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
518 _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data
519
520 user_log = relationship('UserLog')
521 user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all')
522
523 repositories = relationship('Repository')
524 repository_groups = relationship('RepoGroup')
525 user_groups = relationship('UserGroup')
526
527 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
528 followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all')
529
530 repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all')
531 repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all')
532 user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all')
533
534 group_member = relationship('UserGroupMember', cascade='all')
535
536 notifications = relationship('UserNotification', cascade='all')
537 # notifications assigned to this user
538 user_created_notifications = relationship('Notification', cascade='all')
539 # comments created by this user
540 user_comments = relationship('ChangesetComment', cascade='all')
541 # user profile extra info
542 user_emails = relationship('UserEmailMap', cascade='all')
543 user_ip_map = relationship('UserIpMap', cascade='all')
544 user_auth_tokens = relationship('UserApiKeys', cascade='all')
545 # gists
546 user_gists = relationship('Gist', cascade='all')
547 # user pull requests
548 user_pull_requests = relationship('PullRequest', cascade='all')
549 # external identities
550 extenal_identities = relationship(
551 'ExternalIdentity',
552 primaryjoin="User.user_id==ExternalIdentity.local_user_id",
553 cascade='all')
554
555 def __unicode__(self):
556 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
557 self.user_id, self.username)
558
559 @hybrid_property
560 def email(self):
561 return self._email
562
563 @email.setter
564 def email(self, val):
565 self._email = val.lower() if val else None
566
567 @property
568 def firstname(self):
569 # alias for future
570 return self.name
571
572 @property
573 def emails(self):
574 other = UserEmailMap.query().filter(UserEmailMap.user==self).all()
575 return [self.email] + [x.email for x in other]
576
577 @property
578 def auth_tokens(self):
579 return [self.api_key] + [x.api_key for x in self.extra_auth_tokens]
580
581 @property
582 def extra_auth_tokens(self):
583 return UserApiKeys.query().filter(UserApiKeys.user == self).all()
584
585 @property
586 def feed_token(self):
587 feed_tokens = UserApiKeys.query()\
588 .filter(UserApiKeys.user == self)\
589 .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)\
590 .all()
591 if feed_tokens:
592 return feed_tokens[0].api_key
593 else:
594 # use the main token so we don't end up with nothing...
595 return self.api_key
596
597 @classmethod
598 def extra_valid_auth_tokens(cls, user, role=None):
599 tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\
600 .filter(or_(UserApiKeys.expires == -1,
601 UserApiKeys.expires >= time.time()))
602 if role:
603 tokens = tokens.filter(or_(UserApiKeys.role == role,
604 UserApiKeys.role == UserApiKeys.ROLE_ALL))
605 return tokens.all()
606
607 @property
608 def ip_addresses(self):
609 ret = UserIpMap.query().filter(UserIpMap.user == self).all()
610 return [x.ip_addr for x in ret]
611
612 @property
613 def username_and_name(self):
614 return '%s (%s %s)' % (self.username, self.firstname, self.lastname)
615
616 @property
617 def username_or_name_or_email(self):
618 full_name = self.full_name if self.full_name is not ' ' else None
619 return self.username or full_name or self.email
620
621 @property
622 def full_name(self):
623 return '%s %s' % (self.firstname, self.lastname)
624
625 @property
626 def full_name_or_username(self):
627 return ('%s %s' % (self.firstname, self.lastname)
628 if (self.firstname and self.lastname) else self.username)
629
630 @property
631 def full_contact(self):
632 return '%s %s <%s>' % (self.firstname, self.lastname, self.email)
633
634 @property
635 def short_contact(self):
636 return '%s %s' % (self.firstname, self.lastname)
637
638 @property
639 def is_admin(self):
640 return self.admin
641
642 @property
643 def AuthUser(self):
644 """
645 Returns instance of AuthUser for this user
646 """
647 from rhodecode.lib.auth import AuthUser
648 return AuthUser(user_id=self.user_id, api_key=self.api_key,
649 username=self.username)
650
651 @hybrid_property
652 def user_data(self):
653 if not self._user_data:
654 return {}
655
656 try:
657 return json.loads(self._user_data)
658 except TypeError:
659 return {}
660
661 @user_data.setter
662 def user_data(self, val):
663 if not isinstance(val, dict):
664 raise Exception('user_data must be dict, got %s' % type(val))
665 try:
666 self._user_data = json.dumps(val)
667 except Exception:
668 log.error(traceback.format_exc())
669
670 @classmethod
671 def get_by_username(cls, username, case_insensitive=False,
672 cache=False, identity_cache=False):
673 session = Session()
674
675 if case_insensitive:
676 q = cls.query().filter(
677 func.lower(cls.username) == func.lower(username))
678 else:
679 q = cls.query().filter(cls.username == username)
680
681 if cache:
682 if identity_cache:
683 val = cls.identity_cache(session, 'username', username)
684 if val:
685 return val
686 else:
687 q = q.options(
688 FromCache("sql_cache_short",
689 "get_user_by_name_%s" % _hash_key(username)))
690
691 return q.scalar()
692
693 @classmethod
694 def get_by_auth_token(cls, auth_token, cache=False, fallback=True):
695 q = cls.query().filter(cls.api_key == auth_token)
696
697 if cache:
698 q = q.options(FromCache("sql_cache_short",
699 "get_auth_token_%s" % auth_token))
700 res = q.scalar()
701
702 if fallback and not res:
703 #fallback to additional keys
704 _res = UserApiKeys.query()\
705 .filter(UserApiKeys.api_key == auth_token)\
706 .filter(or_(UserApiKeys.expires == -1,
707 UserApiKeys.expires >= time.time()))\
708 .first()
709 if _res:
710 res = _res.user
711 return res
712
713 @classmethod
714 def get_by_email(cls, email, case_insensitive=False, cache=False):
715
716 if case_insensitive:
717 q = cls.query().filter(func.lower(cls.email) == func.lower(email))
718
719 else:
720 q = cls.query().filter(cls.email == email)
721
722 if cache:
723 q = q.options(FromCache("sql_cache_short",
724 "get_email_key_%s" % _hash_key(email)))
725
726 ret = q.scalar()
727 if ret is None:
728 q = UserEmailMap.query()
729 # try fetching in alternate email map
730 if case_insensitive:
731 q = q.filter(func.lower(UserEmailMap.email) == func.lower(email))
732 else:
733 q = q.filter(UserEmailMap.email == email)
734 q = q.options(joinedload(UserEmailMap.user))
735 if cache:
736 q = q.options(FromCache("sql_cache_short",
737 "get_email_map_key_%s" % email))
738 ret = getattr(q.scalar(), 'user', None)
739
740 return ret
741
742 @classmethod
743 def get_from_cs_author(cls, author):
744 """
745 Tries to get User objects out of commit author string
746
747 :param author:
748 """
749 from rhodecode.lib.helpers import email, author_name
750 # Valid email in the attribute passed, see if they're in the system
751 _email = email(author)
752 if _email:
753 user = cls.get_by_email(_email, case_insensitive=True)
754 if user:
755 return user
756 # Maybe we can match by username?
757 _author = author_name(author)
758 user = cls.get_by_username(_author, case_insensitive=True)
759 if user:
760 return user
761
762 def update_userdata(self, **kwargs):
763 usr = self
764 old = usr.user_data
765 old.update(**kwargs)
766 usr.user_data = old
767 Session().add(usr)
768 log.debug('updated userdata with ', kwargs)
769
770 def update_lastlogin(self):
771 """Update user lastlogin"""
772 self.last_login = datetime.datetime.now()
773 Session().add(self)
774 log.debug('updated user %s lastlogin', self.username)
775
776 def update_lastactivity(self):
777 """Update user lastactivity"""
778 usr = self
779 old = usr.user_data
780 old.update({'last_activity': time.time()})
781 usr.user_data = old
782 Session().add(usr)
783 log.debug('updated user %s lastactivity', usr.username)
784
785 def update_password(self, new_password, change_api_key=False):
786 from rhodecode.lib.auth import get_crypt_password,generate_auth_token
787
788 self.password = get_crypt_password(new_password)
789 if change_api_key:
790 self.api_key = generate_auth_token(self.username)
791 Session().add(self)
792
793 @classmethod
794 def get_first_super_admin(cls):
795 user = User.query().filter(User.admin == true()).first()
796 if user is None:
797 raise Exception('FATAL: Missing administrative account!')
798 return user
799
800 @classmethod
801 def get_all_super_admins(cls):
802 """
803 Returns all admin accounts sorted by username
804 """
805 return User.query().filter(User.admin == true())\
806 .order_by(User.username.asc()).all()
807
808 @classmethod
809 def get_default_user(cls, cache=False):
810 user = User.get_by_username(User.DEFAULT_USER, cache=cache)
811 if user is None:
812 raise Exception('FATAL: Missing default account!')
813 return user
814
815 def _get_default_perms(self, user, suffix=''):
816 from rhodecode.model.permission import PermissionModel
817 return PermissionModel().get_default_perms(user.user_perms, suffix)
818
819 def get_default_perms(self, suffix=''):
820 return self._get_default_perms(self, suffix)
821
822 def get_api_data(self, include_secrets=False, details='full'):
823 """
824 Common function for generating user related data for API
825
826 :param include_secrets: By default secrets in the API data will be replaced
827 by a placeholder value to prevent exposing this data by accident. In case
828 this data shall be exposed, set this flag to ``True``.
829
830 :param details: details can be 'basic|full' basic gives only a subset of
831 the available user information that includes user_id, name and emails.
832 """
833 user = self
834 user_data = self.user_data
835 data = {
836 'user_id': user.user_id,
837 'username': user.username,
838 'firstname': user.name,
839 'lastname': user.lastname,
840 'email': user.email,
841 'emails': user.emails,
842 }
843 if details == 'basic':
844 return data
845
846 api_key_length = 40
847 api_key_replacement = '*' * api_key_length
848
849 extras = {
850 'api_key': api_key_replacement,
851 'api_keys': [api_key_replacement],
852 'active': user.active,
853 'admin': user.admin,
854 'extern_type': user.extern_type,
855 'extern_name': user.extern_name,
856 'last_login': user.last_login,
857 'ip_addresses': user.ip_addresses,
858 'language': user_data.get('language')
859 }
860 data.update(extras)
861
862 if include_secrets:
863 data['api_key'] = user.api_key
864 data['api_keys'] = user.auth_tokens
865 return data
866
867 def __json__(self):
868 data = {
869 'full_name': self.full_name,
870 'full_name_or_username': self.full_name_or_username,
871 'short_contact': self.short_contact,
872 'full_contact': self.full_contact,
873 }
874 data.update(self.get_api_data())
875 return data
876
877
878 class UserApiKeys(Base, BaseModel):
879 __tablename__ = 'user_api_keys'
880 __table_args__ = (
881 Index('uak_api_key_idx', 'api_key'),
882 Index('uak_api_key_expires_idx', 'api_key', 'expires'),
883 UniqueConstraint('api_key'),
884 {'extend_existing': True, 'mysql_engine': 'InnoDB',
885 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
886 )
887 __mapper_args__ = {}
888
889 # ApiKey role
890 ROLE_ALL = 'token_role_all'
891 ROLE_HTTP = 'token_role_http'
892 ROLE_VCS = 'token_role_vcs'
893 ROLE_API = 'token_role_api'
894 ROLE_FEED = 'token_role_feed'
895 ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED]
896
897 user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
898 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
899 api_key = Column("api_key", String(255), nullable=False, unique=True)
900 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
901 expires = Column('expires', Float(53), nullable=False)
902 role = Column('role', String(255), nullable=True)
903 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
904
905 user = relationship('User', lazy='joined')
906
907 @classmethod
908 def _get_role_name(cls, role):
909 return {
910 cls.ROLE_ALL: _('all'),
911 cls.ROLE_HTTP: _('http/web interface'),
912 cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'),
913 cls.ROLE_API: _('api calls'),
914 cls.ROLE_FEED: _('feed access'),
915 }.get(role, role)
916
917 @property
918 def expired(self):
919 if self.expires == -1:
920 return False
921 return time.time() > self.expires
922
923 @property
924 def role_humanized(self):
925 return self._get_role_name(self.role)
926
927
928 class UserEmailMap(Base, BaseModel):
929 __tablename__ = 'user_email_map'
930 __table_args__ = (
931 Index('uem_email_idx', 'email'),
932 UniqueConstraint('email'),
933 {'extend_existing': True, 'mysql_engine': 'InnoDB',
934 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
935 )
936 __mapper_args__ = {}
937
938 email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
939 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
940 _email = Column("email", String(255), nullable=True, unique=False, default=None)
941 user = relationship('User', lazy='joined')
942
943 @validates('_email')
944 def validate_email(self, key, email):
945 # check if this email is not main one
946 main_email = Session().query(User).filter(User.email == email).scalar()
947 if main_email is not None:
948 raise AttributeError('email %s is present is user table' % email)
949 return email
950
951 @hybrid_property
952 def email(self):
953 return self._email
954
955 @email.setter
956 def email(self, val):
957 self._email = val.lower() if val else None
958
959
960 class UserIpMap(Base, BaseModel):
961 __tablename__ = 'user_ip_map'
962 __table_args__ = (
963 UniqueConstraint('user_id', 'ip_addr'),
964 {'extend_existing': True, 'mysql_engine': 'InnoDB',
965 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
966 )
967 __mapper_args__ = {}
968
969 ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
970 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
971 ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None)
972 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
973 description = Column("description", String(10000), nullable=True, unique=None, default=None)
974 user = relationship('User', lazy='joined')
975
976 @classmethod
977 def _get_ip_range(cls, ip_addr):
978 net = ipaddress.ip_network(ip_addr, strict=False)
979 return [str(net.network_address), str(net.broadcast_address)]
980
981 def __json__(self):
982 return {
983 'ip_addr': self.ip_addr,
984 'ip_range': self._get_ip_range(self.ip_addr),
985 }
986
987 def __unicode__(self):
988 return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__,
989 self.user_id, self.ip_addr)
990
991 class UserLog(Base, BaseModel):
992 __tablename__ = 'user_logs'
993 __table_args__ = (
994 {'extend_existing': True, 'mysql_engine': 'InnoDB',
995 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
996 )
997 user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
998 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
999 username = Column("username", String(255), nullable=True, unique=None, default=None)
1000 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True)
1001 repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None)
1002 user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None)
1003 action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None)
1004 action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None)
1005
1006 def __unicode__(self):
1007 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1008 self.repository_name,
1009 self.action)
1010
1011 @property
1012 def action_as_day(self):
1013 return datetime.date(*self.action_date.timetuple()[:3])
1014
1015 user = relationship('User')
1016 repository = relationship('Repository', cascade='')
1017
1018
1019 class UserGroup(Base, BaseModel):
1020 __tablename__ = 'users_groups'
1021 __table_args__ = (
1022 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1023 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1024 )
1025
1026 users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1027 users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None)
1028 user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None)
1029 users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None)
1030 inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
1031 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
1032 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1033 _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data
1034
1035 members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined")
1036 users_group_to_perm = relationship('UserGroupToPerm', cascade='all')
1037 users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1038 users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
1039 user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all')
1040 user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all')
1041
1042 user = relationship('User')
1043
1044 @hybrid_property
1045 def group_data(self):
1046 if not self._group_data:
1047 return {}
1048
1049 try:
1050 return json.loads(self._group_data)
1051 except TypeError:
1052 return {}
1053
1054 @group_data.setter
1055 def group_data(self, val):
1056 try:
1057 self._group_data = json.dumps(val)
1058 except Exception:
1059 log.error(traceback.format_exc())
1060
1061 def __unicode__(self):
1062 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1063 self.users_group_id,
1064 self.users_group_name)
1065
1066 @classmethod
1067 def get_by_group_name(cls, group_name, cache=False,
1068 case_insensitive=False):
1069 if case_insensitive:
1070 q = cls.query().filter(func.lower(cls.users_group_name) ==
1071 func.lower(group_name))
1072
1073 else:
1074 q = cls.query().filter(cls.users_group_name == group_name)
1075 if cache:
1076 q = q.options(FromCache(
1077 "sql_cache_short",
1078 "get_group_%s" % _hash_key(group_name)))
1079 return q.scalar()
1080
1081 @classmethod
1082 def get(cls, user_group_id, cache=False):
1083 user_group = cls.query()
1084 if cache:
1085 user_group = user_group.options(FromCache("sql_cache_short",
1086 "get_users_group_%s" % user_group_id))
1087 return user_group.get(user_group_id)
1088
1089 def permissions(self, with_admins=True, with_owner=True):
1090 q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self)
1091 q = q.options(joinedload(UserUserGroupToPerm.user_group),
1092 joinedload(UserUserGroupToPerm.user),
1093 joinedload(UserUserGroupToPerm.permission),)
1094
1095 # get owners and admins and permissions. We do a trick of re-writing
1096 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1097 # has a global reference and changing one object propagates to all
1098 # others. This means if admin is also an owner admin_row that change
1099 # would propagate to both objects
1100 perm_rows = []
1101 for _usr in q.all():
1102 usr = AttributeDict(_usr.user.get_dict())
1103 usr.permission = _usr.permission.permission_name
1104 perm_rows.append(usr)
1105
1106 # filter the perm rows by 'default' first and then sort them by
1107 # admin,write,read,none permissions sorted again alphabetically in
1108 # each group
1109 perm_rows = sorted(perm_rows, key=display_sort)
1110
1111 _admin_perm = 'usergroup.admin'
1112 owner_row = []
1113 if with_owner:
1114 usr = AttributeDict(self.user.get_dict())
1115 usr.owner_row = True
1116 usr.permission = _admin_perm
1117 owner_row.append(usr)
1118
1119 super_admin_rows = []
1120 if with_admins:
1121 for usr in User.get_all_super_admins():
1122 # if this admin is also owner, don't double the record
1123 if usr.user_id == owner_row[0].user_id:
1124 owner_row[0].admin_row = True
1125 else:
1126 usr = AttributeDict(usr.get_dict())
1127 usr.admin_row = True
1128 usr.permission = _admin_perm
1129 super_admin_rows.append(usr)
1130
1131 return super_admin_rows + owner_row + perm_rows
1132
1133 def permission_user_groups(self):
1134 q = UserGroupUserGroupToPerm.query().filter(UserGroupUserGroupToPerm.target_user_group == self)
1135 q = q.options(joinedload(UserGroupUserGroupToPerm.user_group),
1136 joinedload(UserGroupUserGroupToPerm.target_user_group),
1137 joinedload(UserGroupUserGroupToPerm.permission),)
1138
1139 perm_rows = []
1140 for _user_group in q.all():
1141 usr = AttributeDict(_user_group.user_group.get_dict())
1142 usr.permission = _user_group.permission.permission_name
1143 perm_rows.append(usr)
1144
1145 return perm_rows
1146
1147 def _get_default_perms(self, user_group, suffix=''):
1148 from rhodecode.model.permission import PermissionModel
1149 return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix)
1150
1151 def get_default_perms(self, suffix=''):
1152 return self._get_default_perms(self, suffix)
1153
1154 def get_api_data(self, with_group_members=True, include_secrets=False):
1155 """
1156 :param include_secrets: See :meth:`User.get_api_data`, this parameter is
1157 basically forwarded.
1158
1159 """
1160 user_group = self
1161
1162 data = {
1163 'users_group_id': user_group.users_group_id,
1164 'group_name': user_group.users_group_name,
1165 'group_description': user_group.user_group_description,
1166 'active': user_group.users_group_active,
1167 'owner': user_group.user.username,
1168 }
1169 if with_group_members:
1170 users = []
1171 for user in user_group.members:
1172 user = user.user
1173 users.append(user.get_api_data(include_secrets=include_secrets))
1174 data['users'] = users
1175
1176 return data
1177
1178
1179 class UserGroupMember(Base, BaseModel):
1180 __tablename__ = 'users_groups_members'
1181 __table_args__ = (
1182 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1183 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1184 )
1185
1186 users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1187 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
1188 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
1189
1190 user = relationship('User', lazy='joined')
1191 users_group = relationship('UserGroup')
1192
1193 def __init__(self, gr_id='', u_id=''):
1194 self.users_group_id = gr_id
1195 self.user_id = u_id
1196
1197
1198 class RepositoryField(Base, BaseModel):
1199 __tablename__ = 'repositories_fields'
1200 __table_args__ = (
1201 UniqueConstraint('repository_id', 'field_key'), # no-multi field
1202 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1203 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1204 )
1205 PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields
1206
1207 repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1208 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
1209 field_key = Column("field_key", String(250))
1210 field_label = Column("field_label", String(1024), nullable=False)
1211 field_value = Column("field_value", String(10000), nullable=False)
1212 field_desc = Column("field_desc", String(1024), nullable=False)
1213 field_type = Column("field_type", String(255), nullable=False, unique=None)
1214 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1215
1216 repository = relationship('Repository')
1217
1218 @property
1219 def field_key_prefixed(self):
1220 return 'ex_%s' % self.field_key
1221
1222 @classmethod
1223 def un_prefix_key(cls, key):
1224 if key.startswith(cls.PREFIX):
1225 return key[len(cls.PREFIX):]
1226 return key
1227
1228 @classmethod
1229 def get_by_key_name(cls, key, repo):
1230 row = cls.query()\
1231 .filter(cls.repository == repo)\
1232 .filter(cls.field_key == key).scalar()
1233 return row
1234
1235
1236 class Repository(Base, BaseModel):
1237 __tablename__ = 'repositories'
1238 __table_args__ = (
1239 Index('r_repo_name_idx', 'repo_name', mysql_length=255),
1240 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1241 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1242 )
1243 DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}'
1244 DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}'
1245
1246 STATE_CREATED = 'repo_state_created'
1247 STATE_PENDING = 'repo_state_pending'
1248 STATE_ERROR = 'repo_state_error'
1249
1250 LOCK_AUTOMATIC = 'lock_auto'
1251 LOCK_API = 'lock_api'
1252 LOCK_WEB = 'lock_web'
1253 LOCK_PULL = 'lock_pull'
1254
1255 NAME_SEP = URL_SEP
1256
1257 repo_id = Column(
1258 "repo_id", Integer(), nullable=False, unique=True, default=None,
1259 primary_key=True)
1260 _repo_name = Column(
1261 "repo_name", Text(), nullable=False, default=None)
1262 _repo_name_hash = Column(
1263 "repo_name_hash", String(255), nullable=False, unique=True)
1264 repo_state = Column("repo_state", String(255), nullable=True)
1265
1266 clone_uri = Column(
1267 "clone_uri", EncryptedTextValue(), nullable=True, unique=False,
1268 default=None)
1269 repo_type = Column(
1270 "repo_type", String(255), nullable=False, unique=False, default=None)
1271 user_id = Column(
1272 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
1273 unique=False, default=None)
1274 private = Column(
1275 "private", Boolean(), nullable=True, unique=None, default=None)
1276 enable_statistics = Column(
1277 "statistics", Boolean(), nullable=True, unique=None, default=True)
1278 enable_downloads = Column(
1279 "downloads", Boolean(), nullable=True, unique=None, default=True)
1280 description = Column(
1281 "description", String(10000), nullable=True, unique=None, default=None)
1282 created_on = Column(
1283 'created_on', DateTime(timezone=False), nullable=True, unique=None,
1284 default=datetime.datetime.now)
1285 updated_on = Column(
1286 'updated_on', DateTime(timezone=False), nullable=True, unique=None,
1287 default=datetime.datetime.now)
1288 _landing_revision = Column(
1289 "landing_revision", String(255), nullable=False, unique=False,
1290 default=None)
1291 enable_locking = Column(
1292 "enable_locking", Boolean(), nullable=False, unique=None,
1293 default=False)
1294 _locked = Column(
1295 "locked", String(255), nullable=True, unique=False, default=None)
1296 _changeset_cache = Column(
1297 "changeset_cache", LargeBinary(), nullable=True) # JSON data
1298
1299 fork_id = Column(
1300 "fork_id", Integer(), ForeignKey('repositories.repo_id'),
1301 nullable=True, unique=False, default=None)
1302 group_id = Column(
1303 "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True,
1304 unique=False, default=None)
1305
1306 user = relationship('User', lazy='joined')
1307 fork = relationship('Repository', remote_side=repo_id, lazy='joined')
1308 group = relationship('RepoGroup', lazy='joined')
1309 repo_to_perm = relationship(
1310 'UserRepoToPerm', cascade='all',
1311 order_by='UserRepoToPerm.repo_to_perm_id')
1312 users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1313 stats = relationship('Statistics', cascade='all', uselist=False)
1314
1315 followers = relationship(
1316 'UserFollowing',
1317 primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id',
1318 cascade='all')
1319 extra_fields = relationship(
1320 'RepositoryField', cascade="all, delete, delete-orphan")
1321 logs = relationship('UserLog')
1322 comments = relationship(
1323 'ChangesetComment', cascade="all, delete, delete-orphan")
1324 pull_requests_source = relationship(
1325 'PullRequest',
1326 primaryjoin='PullRequest.source_repo_id==Repository.repo_id',
1327 cascade="all, delete, delete-orphan")
1328 pull_requests_target = relationship(
1329 'PullRequest',
1330 primaryjoin='PullRequest.target_repo_id==Repository.repo_id',
1331 cascade="all, delete, delete-orphan")
1332 ui = relationship('RepoRhodeCodeUi', cascade="all")
1333 settings = relationship('RepoRhodeCodeSetting', cascade="all")
1334 integrations = relationship('Integration',
1335 cascade="all, delete, delete-orphan")
1336
1337 def __unicode__(self):
1338 return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id,
1339 safe_unicode(self.repo_name))
1340
1341 @hybrid_property
1342 def landing_rev(self):
1343 # always should return [rev_type, rev]
1344 if self._landing_revision:
1345 _rev_info = self._landing_revision.split(':')
1346 if len(_rev_info) < 2:
1347 _rev_info.insert(0, 'rev')
1348 return [_rev_info[0], _rev_info[1]]
1349 return [None, None]
1350
1351 @landing_rev.setter
1352 def landing_rev(self, val):
1353 if ':' not in val:
1354 raise ValueError('value must be delimited with `:` and consist '
1355 'of <rev_type>:<rev>, got %s instead' % val)
1356 self._landing_revision = val
1357
1358 @hybrid_property
1359 def locked(self):
1360 if self._locked:
1361 user_id, timelocked, reason = self._locked.split(':')
1362 lock_values = int(user_id), timelocked, reason
1363 else:
1364 lock_values = [None, None, None]
1365 return lock_values
1366
1367 @locked.setter
1368 def locked(self, val):
1369 if val and isinstance(val, (list, tuple)):
1370 self._locked = ':'.join(map(str, val))
1371 else:
1372 self._locked = None
1373
1374 @hybrid_property
1375 def changeset_cache(self):
1376 from rhodecode.lib.vcs.backends.base import EmptyCommit
1377 dummy = EmptyCommit().__json__()
1378 if not self._changeset_cache:
1379 return dummy
1380 try:
1381 return json.loads(self._changeset_cache)
1382 except TypeError:
1383 return dummy
1384 except Exception:
1385 log.error(traceback.format_exc())
1386 return dummy
1387
1388 @changeset_cache.setter
1389 def changeset_cache(self, val):
1390 try:
1391 self._changeset_cache = json.dumps(val)
1392 except Exception:
1393 log.error(traceback.format_exc())
1394
1395 @hybrid_property
1396 def repo_name(self):
1397 return self._repo_name
1398
1399 @repo_name.setter
1400 def repo_name(self, value):
1401 self._repo_name = value
1402 self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest()
1403
1404 @classmethod
1405 def normalize_repo_name(cls, repo_name):
1406 """
1407 Normalizes os specific repo_name to the format internally stored inside
1408 database using URL_SEP
1409
1410 :param cls:
1411 :param repo_name:
1412 """
1413 return cls.NAME_SEP.join(repo_name.split(os.sep))
1414
1415 @classmethod
1416 def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False):
1417 session = Session()
1418 q = session.query(cls).filter(cls.repo_name == repo_name)
1419
1420 if cache:
1421 if identity_cache:
1422 val = cls.identity_cache(session, 'repo_name', repo_name)
1423 if val:
1424 return val
1425 else:
1426 q = q.options(
1427 FromCache("sql_cache_short",
1428 "get_repo_by_name_%s" % _hash_key(repo_name)))
1429
1430 return q.scalar()
1431
1432 @classmethod
1433 def get_by_full_path(cls, repo_full_path):
1434 repo_name = repo_full_path.split(cls.base_path(), 1)[-1]
1435 repo_name = cls.normalize_repo_name(repo_name)
1436 return cls.get_by_repo_name(repo_name.strip(URL_SEP))
1437
1438 @classmethod
1439 def get_repo_forks(cls, repo_id):
1440 return cls.query().filter(Repository.fork_id == repo_id)
1441
1442 @classmethod
1443 def base_path(cls):
1444 """
1445 Returns base path when all repos are stored
1446
1447 :param cls:
1448 """
1449 q = Session().query(RhodeCodeUi)\
1450 .filter(RhodeCodeUi.ui_key == cls.NAME_SEP)
1451 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1452 return q.one().ui_value
1453
1454 @classmethod
1455 def is_valid(cls, repo_name):
1456 """
1457 returns True if given repo name is a valid filesystem repository
1458
1459 :param cls:
1460 :param repo_name:
1461 """
1462 from rhodecode.lib.utils import is_valid_repo
1463
1464 return is_valid_repo(repo_name, cls.base_path())
1465
1466 @classmethod
1467 def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None),
1468 case_insensitive=True):
1469 q = Repository.query()
1470
1471 if not isinstance(user_id, Optional):
1472 q = q.filter(Repository.user_id == user_id)
1473
1474 if not isinstance(group_id, Optional):
1475 q = q.filter(Repository.group_id == group_id)
1476
1477 if case_insensitive:
1478 q = q.order_by(func.lower(Repository.repo_name))
1479 else:
1480 q = q.order_by(Repository.repo_name)
1481 return q.all()
1482
1483 @property
1484 def forks(self):
1485 """
1486 Return forks of this repo
1487 """
1488 return Repository.get_repo_forks(self.repo_id)
1489
1490 @property
1491 def parent(self):
1492 """
1493 Returns fork parent
1494 """
1495 return self.fork
1496
1497 @property
1498 def just_name(self):
1499 return self.repo_name.split(self.NAME_SEP)[-1]
1500
1501 @property
1502 def groups_with_parents(self):
1503 groups = []
1504 if self.group is None:
1505 return groups
1506
1507 cur_gr = self.group
1508 groups.insert(0, cur_gr)
1509 while 1:
1510 gr = getattr(cur_gr, 'parent_group', None)
1511 cur_gr = cur_gr.parent_group
1512 if gr is None:
1513 break
1514 groups.insert(0, gr)
1515
1516 return groups
1517
1518 @property
1519 def groups_and_repo(self):
1520 return self.groups_with_parents, self
1521
1522 @LazyProperty
1523 def repo_path(self):
1524 """
1525 Returns base full path for that repository means where it actually
1526 exists on a filesystem
1527 """
1528 q = Session().query(RhodeCodeUi).filter(
1529 RhodeCodeUi.ui_key == self.NAME_SEP)
1530 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1531 return q.one().ui_value
1532
1533 @property
1534 def repo_full_path(self):
1535 p = [self.repo_path]
1536 # we need to split the name by / since this is how we store the
1537 # names in the database, but that eventually needs to be converted
1538 # into a valid system path
1539 p += self.repo_name.split(self.NAME_SEP)
1540 return os.path.join(*map(safe_unicode, p))
1541
1542 @property
1543 def cache_keys(self):
1544 """
1545 Returns associated cache keys for that repo
1546 """
1547 return CacheKey.query()\
1548 .filter(CacheKey.cache_args == self.repo_name)\
1549 .order_by(CacheKey.cache_key)\
1550 .all()
1551
1552 def get_new_name(self, repo_name):
1553 """
1554 returns new full repository name based on assigned group and new new
1555
1556 :param group_name:
1557 """
1558 path_prefix = self.group.full_path_splitted if self.group else []
1559 return self.NAME_SEP.join(path_prefix + [repo_name])
1560
1561 @property
1562 def _config(self):
1563 """
1564 Returns db based config object.
1565 """
1566 from rhodecode.lib.utils import make_db_config
1567 return make_db_config(clear_session=False, repo=self)
1568
1569 def permissions(self, with_admins=True, with_owner=True):
1570 q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self)
1571 q = q.options(joinedload(UserRepoToPerm.repository),
1572 joinedload(UserRepoToPerm.user),
1573 joinedload(UserRepoToPerm.permission),)
1574
1575 # get owners and admins and permissions. We do a trick of re-writing
1576 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1577 # has a global reference and changing one object propagates to all
1578 # others. This means if admin is also an owner admin_row that change
1579 # would propagate to both objects
1580 perm_rows = []
1581 for _usr in q.all():
1582 usr = AttributeDict(_usr.user.get_dict())
1583 usr.permission = _usr.permission.permission_name
1584 perm_rows.append(usr)
1585
1586 # filter the perm rows by 'default' first and then sort them by
1587 # admin,write,read,none permissions sorted again alphabetically in
1588 # each group
1589 perm_rows = sorted(perm_rows, key=display_sort)
1590
1591 _admin_perm = 'repository.admin'
1592 owner_row = []
1593 if with_owner:
1594 usr = AttributeDict(self.user.get_dict())
1595 usr.owner_row = True
1596 usr.permission = _admin_perm
1597 owner_row.append(usr)
1598
1599 super_admin_rows = []
1600 if with_admins:
1601 for usr in User.get_all_super_admins():
1602 # if this admin is also owner, don't double the record
1603 if usr.user_id == owner_row[0].user_id:
1604 owner_row[0].admin_row = True
1605 else:
1606 usr = AttributeDict(usr.get_dict())
1607 usr.admin_row = True
1608 usr.permission = _admin_perm
1609 super_admin_rows.append(usr)
1610
1611 return super_admin_rows + owner_row + perm_rows
1612
1613 def permission_user_groups(self):
1614 q = UserGroupRepoToPerm.query().filter(
1615 UserGroupRepoToPerm.repository == self)
1616 q = q.options(joinedload(UserGroupRepoToPerm.repository),
1617 joinedload(UserGroupRepoToPerm.users_group),
1618 joinedload(UserGroupRepoToPerm.permission),)
1619
1620 perm_rows = []
1621 for _user_group in q.all():
1622 usr = AttributeDict(_user_group.users_group.get_dict())
1623 usr.permission = _user_group.permission.permission_name
1624 perm_rows.append(usr)
1625
1626 return perm_rows
1627
1628 def get_api_data(self, include_secrets=False):
1629 """
1630 Common function for generating repo api data
1631
1632 :param include_secrets: See :meth:`User.get_api_data`.
1633
1634 """
1635 # TODO: mikhail: Here there is an anti-pattern, we probably need to
1636 # move this methods on models level.
1637 from rhodecode.model.settings import SettingsModel
1638
1639 repo = self
1640 _user_id, _time, _reason = self.locked
1641
1642 data = {
1643 'repo_id': repo.repo_id,
1644 'repo_name': repo.repo_name,
1645 'repo_type': repo.repo_type,
1646 'clone_uri': repo.clone_uri or '',
1647 'url': url('summary_home', repo_name=self.repo_name, qualified=True),
1648 'private': repo.private,
1649 'created_on': repo.created_on,
1650 'description': repo.description,
1651 'landing_rev': repo.landing_rev,
1652 'owner': repo.user.username,
1653 'fork_of': repo.fork.repo_name if repo.fork else None,
1654 'enable_statistics': repo.enable_statistics,
1655 'enable_locking': repo.enable_locking,
1656 'enable_downloads': repo.enable_downloads,
1657 'last_changeset': repo.changeset_cache,
1658 'locked_by': User.get(_user_id).get_api_data(
1659 include_secrets=include_secrets) if _user_id else None,
1660 'locked_date': time_to_datetime(_time) if _time else None,
1661 'lock_reason': _reason if _reason else None,
1662 }
1663
1664 # TODO: mikhail: should be per-repo settings here
1665 rc_config = SettingsModel().get_all_settings()
1666 repository_fields = str2bool(
1667 rc_config.get('rhodecode_repository_fields'))
1668 if repository_fields:
1669 for f in self.extra_fields:
1670 data[f.field_key_prefixed] = f.field_value
1671
1672 return data
1673
1674 @classmethod
1675 def lock(cls, repo, user_id, lock_time=None, lock_reason=None):
1676 if not lock_time:
1677 lock_time = time.time()
1678 if not lock_reason:
1679 lock_reason = cls.LOCK_AUTOMATIC
1680 repo.locked = [user_id, lock_time, lock_reason]
1681 Session().add(repo)
1682 Session().commit()
1683
1684 @classmethod
1685 def unlock(cls, repo):
1686 repo.locked = None
1687 Session().add(repo)
1688 Session().commit()
1689
1690 @classmethod
1691 def getlock(cls, repo):
1692 return repo.locked
1693
1694 def is_user_lock(self, user_id):
1695 if self.lock[0]:
1696 lock_user_id = safe_int(self.lock[0])
1697 user_id = safe_int(user_id)
1698 # both are ints, and they are equal
1699 return all([lock_user_id, user_id]) and lock_user_id == user_id
1700
1701 return False
1702
1703 def get_locking_state(self, action, user_id, only_when_enabled=True):
1704 """
1705 Checks locking on this repository, if locking is enabled and lock is
1706 present returns a tuple of make_lock, locked, locked_by.
1707 make_lock can have 3 states None (do nothing) True, make lock
1708 False release lock, This value is later propagated to hooks, which
1709 do the locking. Think about this as signals passed to hooks what to do.
1710
1711 """
1712 # TODO: johbo: This is part of the business logic and should be moved
1713 # into the RepositoryModel.
1714
1715 if action not in ('push', 'pull'):
1716 raise ValueError("Invalid action value: %s" % repr(action))
1717
1718 # defines if locked error should be thrown to user
1719 currently_locked = False
1720 # defines if new lock should be made, tri-state
1721 make_lock = None
1722 repo = self
1723 user = User.get(user_id)
1724
1725 lock_info = repo.locked
1726
1727 if repo and (repo.enable_locking or not only_when_enabled):
1728 if action == 'push':
1729 # check if it's already locked !, if it is compare users
1730 locked_by_user_id = lock_info[0]
1731 if user.user_id == locked_by_user_id:
1732 log.debug(
1733 'Got `push` action from user %s, now unlocking', user)
1734 # unlock if we have push from user who locked
1735 make_lock = False
1736 else:
1737 # we're not the same user who locked, ban with
1738 # code defined in settings (default is 423 HTTP Locked) !
1739 log.debug('Repo %s is currently locked by %s', repo, user)
1740 currently_locked = True
1741 elif action == 'pull':
1742 # [0] user [1] date
1743 if lock_info[0] and lock_info[1]:
1744 log.debug('Repo %s is currently locked by %s', repo, user)
1745 currently_locked = True
1746 else:
1747 log.debug('Setting lock on repo %s by %s', repo, user)
1748 make_lock = True
1749
1750 else:
1751 log.debug('Repository %s do not have locking enabled', repo)
1752
1753 log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s',
1754 make_lock, currently_locked, lock_info)
1755
1756 from rhodecode.lib.auth import HasRepoPermissionAny
1757 perm_check = HasRepoPermissionAny('repository.write', 'repository.admin')
1758 if make_lock and not perm_check(repo_name=repo.repo_name, user=user):
1759 # if we don't have at least write permission we cannot make a lock
1760 log.debug('lock state reset back to FALSE due to lack '
1761 'of at least read permission')
1762 make_lock = False
1763
1764 return make_lock, currently_locked, lock_info
1765
1766 @property
1767 def last_db_change(self):
1768 return self.updated_on
1769
1770 @property
1771 def clone_uri_hidden(self):
1772 clone_uri = self.clone_uri
1773 if clone_uri:
1774 import urlobject
1775 url_obj = urlobject.URLObject(clone_uri)
1776 if url_obj.password:
1777 clone_uri = url_obj.with_password('*****')
1778 return clone_uri
1779
1780 def clone_url(self, **override):
1781 qualified_home_url = url('home', qualified=True)
1782
1783 uri_tmpl = None
1784 if 'with_id' in override:
1785 uri_tmpl = self.DEFAULT_CLONE_URI_ID
1786 del override['with_id']
1787
1788 if 'uri_tmpl' in override:
1789 uri_tmpl = override['uri_tmpl']
1790 del override['uri_tmpl']
1791
1792 # we didn't override our tmpl from **overrides
1793 if not uri_tmpl:
1794 uri_tmpl = self.DEFAULT_CLONE_URI
1795 try:
1796 from pylons import tmpl_context as c
1797 uri_tmpl = c.clone_uri_tmpl
1798 except Exception:
1799 # in any case if we call this outside of request context,
1800 # ie, not having tmpl_context set up
1801 pass
1802
1803 return get_clone_url(uri_tmpl=uri_tmpl,
1804 qualifed_home_url=qualified_home_url,
1805 repo_name=self.repo_name,
1806 repo_id=self.repo_id, **override)
1807
1808 def set_state(self, state):
1809 self.repo_state = state
1810 Session().add(self)
1811 #==========================================================================
1812 # SCM PROPERTIES
1813 #==========================================================================
1814
1815 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None):
1816 return get_commit_safe(
1817 self.scm_instance(), commit_id, commit_idx, pre_load=pre_load)
1818
1819 def get_changeset(self, rev=None, pre_load=None):
1820 warnings.warn("Use get_commit", DeprecationWarning)
1821 commit_id = None
1822 commit_idx = None
1823 if isinstance(rev, basestring):
1824 commit_id = rev
1825 else:
1826 commit_idx = rev
1827 return self.get_commit(commit_id=commit_id, commit_idx=commit_idx,
1828 pre_load=pre_load)
1829
1830 def get_landing_commit(self):
1831 """
1832 Returns landing commit, or if that doesn't exist returns the tip
1833 """
1834 _rev_type, _rev = self.landing_rev
1835 commit = self.get_commit(_rev)
1836 if isinstance(commit, EmptyCommit):
1837 return self.get_commit()
1838 return commit
1839
1840 def update_commit_cache(self, cs_cache=None, config=None):
1841 """
1842 Update cache of last changeset for repository, keys should be::
1843
1844 short_id
1845 raw_id
1846 revision
1847 parents
1848 message
1849 date
1850 author
1851
1852 :param cs_cache:
1853 """
1854 from rhodecode.lib.vcs.backends.base import BaseChangeset
1855 if cs_cache is None:
1856 # use no-cache version here
1857 scm_repo = self.scm_instance(cache=False, config=config)
1858 if scm_repo:
1859 cs_cache = scm_repo.get_commit(
1860 pre_load=["author", "date", "message", "parents"])
1861 else:
1862 cs_cache = EmptyCommit()
1863
1864 if isinstance(cs_cache, BaseChangeset):
1865 cs_cache = cs_cache.__json__()
1866
1867 def is_outdated(new_cs_cache):
1868 if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or
1869 new_cs_cache['revision'] != self.changeset_cache['revision']):
1870 return True
1871 return False
1872
1873 # check if we have maybe already latest cached revision
1874 if is_outdated(cs_cache) or not self.changeset_cache:
1875 _default = datetime.datetime.fromtimestamp(0)
1876 last_change = cs_cache.get('date') or _default
1877 log.debug('updated repo %s with new cs cache %s',
1878 self.repo_name, cs_cache)
1879 self.updated_on = last_change
1880 self.changeset_cache = cs_cache
1881 Session().add(self)
1882 Session().commit()
1883 else:
1884 log.debug('Skipping update_commit_cache for repo:`%s` '
1885 'commit already with latest changes', self.repo_name)
1886
1887 @property
1888 def tip(self):
1889 return self.get_commit('tip')
1890
1891 @property
1892 def author(self):
1893 return self.tip.author
1894
1895 @property
1896 def last_change(self):
1897 return self.scm_instance().last_change
1898
1899 def get_comments(self, revisions=None):
1900 """
1901 Returns comments for this repository grouped by revisions
1902
1903 :param revisions: filter query by revisions only
1904 """
1905 cmts = ChangesetComment.query()\
1906 .filter(ChangesetComment.repo == self)
1907 if revisions:
1908 cmts = cmts.filter(ChangesetComment.revision.in_(revisions))
1909 grouped = collections.defaultdict(list)
1910 for cmt in cmts.all():
1911 grouped[cmt.revision].append(cmt)
1912 return grouped
1913
1914 def statuses(self, revisions=None):
1915 """
1916 Returns statuses for this repository
1917
1918 :param revisions: list of revisions to get statuses for
1919 """
1920 statuses = ChangesetStatus.query()\
1921 .filter(ChangesetStatus.repo == self)\
1922 .filter(ChangesetStatus.version == 0)
1923
1924 if revisions:
1925 # Try doing the filtering in chunks to avoid hitting limits
1926 size = 500
1927 status_results = []
1928 for chunk in xrange(0, len(revisions), size):
1929 status_results += statuses.filter(
1930 ChangesetStatus.revision.in_(
1931 revisions[chunk: chunk+size])
1932 ).all()
1933 else:
1934 status_results = statuses.all()
1935
1936 grouped = {}
1937
1938 # maybe we have open new pullrequest without a status?
1939 stat = ChangesetStatus.STATUS_UNDER_REVIEW
1940 status_lbl = ChangesetStatus.get_status_lbl(stat)
1941 for pr in PullRequest.query().filter(PullRequest.source_repo == self).all():
1942 for rev in pr.revisions:
1943 pr_id = pr.pull_request_id
1944 pr_repo = pr.target_repo.repo_name
1945 grouped[rev] = [stat, status_lbl, pr_id, pr_repo]
1946
1947 for stat in status_results:
1948 pr_id = pr_repo = None
1949 if stat.pull_request:
1950 pr_id = stat.pull_request.pull_request_id
1951 pr_repo = stat.pull_request.target_repo.repo_name
1952 grouped[stat.revision] = [str(stat.status), stat.status_lbl,
1953 pr_id, pr_repo]
1954 return grouped
1955
1956 # ==========================================================================
1957 # SCM CACHE INSTANCE
1958 # ==========================================================================
1959
1960 def scm_instance(self, **kwargs):
1961 import rhodecode
1962
1963 # Passing a config will not hit the cache currently only used
1964 # for repo2dbmapper
1965 config = kwargs.pop('config', None)
1966 cache = kwargs.pop('cache', None)
1967 full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache'))
1968 # if cache is NOT defined use default global, else we have a full
1969 # control over cache behaviour
1970 if cache is None and full_cache and not config:
1971 return self._get_instance_cached()
1972 return self._get_instance(cache=bool(cache), config=config)
1973
1974 def _get_instance_cached(self):
1975 @cache_region('long_term')
1976 def _get_repo(cache_key):
1977 return self._get_instance()
1978
1979 invalidator_context = CacheKey.repo_context_cache(
1980 _get_repo, self.repo_name, None, thread_scoped=True)
1981
1982 with invalidator_context as context:
1983 context.invalidate()
1984 repo = context.compute()
1985
1986 return repo
1987
1988 def _get_instance(self, cache=True, config=None):
1989 config = config or self._config
1990 custom_wire = {
1991 'cache': cache # controls the vcs.remote cache
1992 }
1993
1994 repo = get_vcs_instance(
1995 repo_path=safe_str(self.repo_full_path),
1996 config=config,
1997 with_wire=custom_wire,
1998 create=False)
1999
2000 return repo
2001
2002 def __json__(self):
2003 return {'landing_rev': self.landing_rev}
2004
2005 def get_dict(self):
2006
2007 # Since we transformed `repo_name` to a hybrid property, we need to
2008 # keep compatibility with the code which uses `repo_name` field.
2009
2010 result = super(Repository, self).get_dict()
2011 result['repo_name'] = result.pop('_repo_name', None)
2012 return result
2013
2014
2015 class RepoGroup(Base, BaseModel):
2016 __tablename__ = 'groups'
2017 __table_args__ = (
2018 UniqueConstraint('group_name', 'group_parent_id'),
2019 CheckConstraint('group_id != group_parent_id'),
2020 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2021 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2022 )
2023 __mapper_args__ = {'order_by': 'group_name'}
2024
2025 CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups
2026
2027 group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2028 group_name = Column("group_name", String(255), nullable=False, unique=True, default=None)
2029 group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None)
2030 group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None)
2031 enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False)
2032 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
2033 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2034
2035 repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id')
2036 users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
2037 parent_group = relationship('RepoGroup', remote_side=group_id)
2038 user = relationship('User')
2039
2040 def __init__(self, group_name='', parent_group=None):
2041 self.group_name = group_name
2042 self.parent_group = parent_group
2043
2044 def __unicode__(self):
2045 return u"<%s('id:%s:%s')>" % (self.__class__.__name__, self.group_id,
2046 self.group_name)
2047
2048 @classmethod
2049 def _generate_choice(cls, repo_group):
2050 from webhelpers.html import literal as _literal
2051 _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k))
2052 return repo_group.group_id, _name(repo_group.full_path_splitted)
2053
2054 @classmethod
2055 def groups_choices(cls, groups=None, show_empty_group=True):
2056 if not groups:
2057 groups = cls.query().all()
2058
2059 repo_groups = []
2060 if show_empty_group:
2061 repo_groups = [('-1', u'-- %s --' % _('No parent'))]
2062
2063 repo_groups.extend([cls._generate_choice(x) for x in groups])
2064
2065 repo_groups = sorted(
2066 repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0])
2067 return repo_groups
2068
2069 @classmethod
2070 def url_sep(cls):
2071 return URL_SEP
2072
2073 @classmethod
2074 def get_by_group_name(cls, group_name, cache=False, case_insensitive=False):
2075 if case_insensitive:
2076 gr = cls.query().filter(func.lower(cls.group_name)
2077 == func.lower(group_name))
2078 else:
2079 gr = cls.query().filter(cls.group_name == group_name)
2080 if cache:
2081 gr = gr.options(FromCache(
2082 "sql_cache_short",
2083 "get_group_%s" % _hash_key(group_name)))
2084 return gr.scalar()
2085
2086 @classmethod
2087 def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None),
2088 case_insensitive=True):
2089 q = RepoGroup.query()
2090
2091 if not isinstance(user_id, Optional):
2092 q = q.filter(RepoGroup.user_id == user_id)
2093
2094 if not isinstance(group_id, Optional):
2095 q = q.filter(RepoGroup.group_parent_id == group_id)
2096
2097 if case_insensitive:
2098 q = q.order_by(func.lower(RepoGroup.group_name))
2099 else:
2100 q = q.order_by(RepoGroup.group_name)
2101 return q.all()
2102
2103 @property
2104 def parents(self):
2105 parents_recursion_limit = 10
2106 groups = []
2107 if self.parent_group is None:
2108 return groups
2109 cur_gr = self.parent_group
2110 groups.insert(0, cur_gr)
2111 cnt = 0
2112 while 1:
2113 cnt += 1
2114 gr = getattr(cur_gr, 'parent_group', None)
2115 cur_gr = cur_gr.parent_group
2116 if gr is None:
2117 break
2118 if cnt == parents_recursion_limit:
2119 # this will prevent accidental infinit loops
2120 log.error(('more than %s parents found for group %s, stopping '
2121 'recursive parent fetching' % (parents_recursion_limit, self)))
2122 break
2123
2124 groups.insert(0, gr)
2125 return groups
2126
2127 @property
2128 def children(self):
2129 return RepoGroup.query().filter(RepoGroup.parent_group == self)
2130
2131 @property
2132 def name(self):
2133 return self.group_name.split(RepoGroup.url_sep())[-1]
2134
2135 @property
2136 def full_path(self):
2137 return self.group_name
2138
2139 @property
2140 def full_path_splitted(self):
2141 return self.group_name.split(RepoGroup.url_sep())
2142
2143 @property
2144 def repositories(self):
2145 return Repository.query()\
2146 .filter(Repository.group == self)\
2147 .order_by(Repository.repo_name)
2148
2149 @property
2150 def repositories_recursive_count(self):
2151 cnt = self.repositories.count()
2152
2153 def children_count(group):
2154 cnt = 0
2155 for child in group.children:
2156 cnt += child.repositories.count()
2157 cnt += children_count(child)
2158 return cnt
2159
2160 return cnt + children_count(self)
2161
2162 def _recursive_objects(self, include_repos=True):
2163 all_ = []
2164
2165 def _get_members(root_gr):
2166 if include_repos:
2167 for r in root_gr.repositories:
2168 all_.append(r)
2169 childs = root_gr.children.all()
2170 if childs:
2171 for gr in childs:
2172 all_.append(gr)
2173 _get_members(gr)
2174
2175 _get_members(self)
2176 return [self] + all_
2177
2178 def recursive_groups_and_repos(self):
2179 """
2180 Recursive return all groups, with repositories in those groups
2181 """
2182 return self._recursive_objects()
2183
2184 def recursive_groups(self):
2185 """
2186 Returns all children groups for this group including children of children
2187 """
2188 return self._recursive_objects(include_repos=False)
2189
2190 def get_new_name(self, group_name):
2191 """
2192 returns new full group name based on parent and new name
2193
2194 :param group_name:
2195 """
2196 path_prefix = (self.parent_group.full_path_splitted if
2197 self.parent_group else [])
2198 return RepoGroup.url_sep().join(path_prefix + [group_name])
2199
2200 def permissions(self, with_admins=True, with_owner=True):
2201 q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self)
2202 q = q.options(joinedload(UserRepoGroupToPerm.group),
2203 joinedload(UserRepoGroupToPerm.user),
2204 joinedload(UserRepoGroupToPerm.permission),)
2205
2206 # get owners and admins and permissions. We do a trick of re-writing
2207 # objects from sqlalchemy to named-tuples due to sqlalchemy session
2208 # has a global reference and changing one object propagates to all
2209 # others. This means if admin is also an owner admin_row that change
2210 # would propagate to both objects
2211 perm_rows = []
2212 for _usr in q.all():
2213 usr = AttributeDict(_usr.user.get_dict())
2214 usr.permission = _usr.permission.permission_name
2215 perm_rows.append(usr)
2216
2217 # filter the perm rows by 'default' first and then sort them by
2218 # admin,write,read,none permissions sorted again alphabetically in
2219 # each group
2220 perm_rows = sorted(perm_rows, key=display_sort)
2221
2222 _admin_perm = 'group.admin'
2223 owner_row = []
2224 if with_owner:
2225 usr = AttributeDict(self.user.get_dict())
2226 usr.owner_row = True
2227 usr.permission = _admin_perm
2228 owner_row.append(usr)
2229
2230 super_admin_rows = []
2231 if with_admins:
2232 for usr in User.get_all_super_admins():
2233 # if this admin is also owner, don't double the record
2234 if usr.user_id == owner_row[0].user_id:
2235 owner_row[0].admin_row = True
2236 else:
2237 usr = AttributeDict(usr.get_dict())
2238 usr.admin_row = True
2239 usr.permission = _admin_perm
2240 super_admin_rows.append(usr)
2241
2242 return super_admin_rows + owner_row + perm_rows
2243
2244 def permission_user_groups(self):
2245 q = UserGroupRepoGroupToPerm.query().filter(UserGroupRepoGroupToPerm.group == self)
2246 q = q.options(joinedload(UserGroupRepoGroupToPerm.group),
2247 joinedload(UserGroupRepoGroupToPerm.users_group),
2248 joinedload(UserGroupRepoGroupToPerm.permission),)
2249
2250 perm_rows = []
2251 for _user_group in q.all():
2252 usr = AttributeDict(_user_group.users_group.get_dict())
2253 usr.permission = _user_group.permission.permission_name
2254 perm_rows.append(usr)
2255
2256 return perm_rows
2257
2258 def get_api_data(self):
2259 """
2260 Common function for generating api data
2261
2262 """
2263 group = self
2264 data = {
2265 'group_id': group.group_id,
2266 'group_name': group.group_name,
2267 'group_description': group.group_description,
2268 'parent_group': group.parent_group.group_name if group.parent_group else None,
2269 'repositories': [x.repo_name for x in group.repositories],
2270 'owner': group.user.username,
2271 }
2272 return data
2273
2274
2275 class Permission(Base, BaseModel):
2276 __tablename__ = 'permissions'
2277 __table_args__ = (
2278 Index('p_perm_name_idx', 'permission_name'),
2279 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2280 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2281 )
2282 PERMS = [
2283 ('hg.admin', _('RhodeCode Super Administrator')),
2284
2285 ('repository.none', _('Repository no access')),
2286 ('repository.read', _('Repository read access')),
2287 ('repository.write', _('Repository write access')),
2288 ('repository.admin', _('Repository admin access')),
2289
2290 ('group.none', _('Repository group no access')),
2291 ('group.read', _('Repository group read access')),
2292 ('group.write', _('Repository group write access')),
2293 ('group.admin', _('Repository group admin access')),
2294
2295 ('usergroup.none', _('User group no access')),
2296 ('usergroup.read', _('User group read access')),
2297 ('usergroup.write', _('User group write access')),
2298 ('usergroup.admin', _('User group admin access')),
2299
2300 ('hg.repogroup.create.false', _('Repository Group creation disabled')),
2301 ('hg.repogroup.create.true', _('Repository Group creation enabled')),
2302
2303 ('hg.usergroup.create.false', _('User Group creation disabled')),
2304 ('hg.usergroup.create.true', _('User Group creation enabled')),
2305
2306 ('hg.create.none', _('Repository creation disabled')),
2307 ('hg.create.repository', _('Repository creation enabled')),
2308 ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')),
2309 ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')),
2310
2311 ('hg.fork.none', _('Repository forking disabled')),
2312 ('hg.fork.repository', _('Repository forking enabled')),
2313
2314 ('hg.register.none', _('Registration disabled')),
2315 ('hg.register.manual_activate', _('User Registration with manual account activation')),
2316 ('hg.register.auto_activate', _('User Registration with automatic account activation')),
2317
2318 ('hg.extern_activate.manual', _('Manual activation of external account')),
2319 ('hg.extern_activate.auto', _('Automatic activation of external account')),
2320
2321 ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')),
2322 ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')),
2323 ]
2324
2325 # definition of system default permissions for DEFAULT user
2326 DEFAULT_USER_PERMISSIONS = [
2327 'repository.read',
2328 'group.read',
2329 'usergroup.read',
2330 'hg.create.repository',
2331 'hg.repogroup.create.false',
2332 'hg.usergroup.create.false',
2333 'hg.create.write_on_repogroup.true',
2334 'hg.fork.repository',
2335 'hg.register.manual_activate',
2336 'hg.extern_activate.auto',
2337 'hg.inherit_default_perms.true',
2338 ]
2339
2340 # defines which permissions are more important higher the more important
2341 # Weight defines which permissions are more important.
2342 # The higher number the more important.
2343 PERM_WEIGHTS = {
2344 'repository.none': 0,
2345 'repository.read': 1,
2346 'repository.write': 3,
2347 'repository.admin': 4,
2348
2349 'group.none': 0,
2350 'group.read': 1,
2351 'group.write': 3,
2352 'group.admin': 4,
2353
2354 'usergroup.none': 0,
2355 'usergroup.read': 1,
2356 'usergroup.write': 3,
2357 'usergroup.admin': 4,
2358
2359 'hg.repogroup.create.false': 0,
2360 'hg.repogroup.create.true': 1,
2361
2362 'hg.usergroup.create.false': 0,
2363 'hg.usergroup.create.true': 1,
2364
2365 'hg.fork.none': 0,
2366 'hg.fork.repository': 1,
2367 'hg.create.none': 0,
2368 'hg.create.repository': 1
2369 }
2370
2371 permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2372 permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None)
2373 permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None)
2374
2375 def __unicode__(self):
2376 return u"<%s('%s:%s')>" % (
2377 self.__class__.__name__, self.permission_id, self.permission_name
2378 )
2379
2380 @classmethod
2381 def get_by_key(cls, key):
2382 return cls.query().filter(cls.permission_name == key).scalar()
2383
2384 @classmethod
2385 def get_default_repo_perms(cls, user_id, repo_id=None):
2386 q = Session().query(UserRepoToPerm, Repository, Permission)\
2387 .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\
2388 .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\
2389 .filter(UserRepoToPerm.user_id == user_id)
2390 if repo_id:
2391 q = q.filter(UserRepoToPerm.repository_id == repo_id)
2392 return q.all()
2393
2394 @classmethod
2395 def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None):
2396 q = Session().query(UserGroupRepoToPerm, Repository, Permission)\
2397 .join(
2398 Permission,
2399 UserGroupRepoToPerm.permission_id == Permission.permission_id)\
2400 .join(
2401 Repository,
2402 UserGroupRepoToPerm.repository_id == Repository.repo_id)\
2403 .join(
2404 UserGroup,
2405 UserGroupRepoToPerm.users_group_id ==
2406 UserGroup.users_group_id)\
2407 .join(
2408 UserGroupMember,
2409 UserGroupRepoToPerm.users_group_id ==
2410 UserGroupMember.users_group_id)\
2411 .filter(
2412 UserGroupMember.user_id == user_id,
2413 UserGroup.users_group_active == true())
2414 if repo_id:
2415 q = q.filter(UserGroupRepoToPerm.repository_id == repo_id)
2416 return q.all()
2417
2418 @classmethod
2419 def get_default_group_perms(cls, user_id, repo_group_id=None):
2420 q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\
2421 .join((Permission, UserRepoGroupToPerm.permission_id == Permission.permission_id))\
2422 .join((RepoGroup, UserRepoGroupToPerm.group_id == RepoGroup.group_id))\
2423 .filter(UserRepoGroupToPerm.user_id == user_id)
2424 if repo_group_id:
2425 q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id)
2426 return q.all()
2427
2428 @classmethod
2429 def get_default_group_perms_from_user_group(
2430 cls, user_id, repo_group_id=None):
2431 q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\
2432 .join(
2433 Permission,
2434 UserGroupRepoGroupToPerm.permission_id ==
2435 Permission.permission_id)\
2436 .join(
2437 RepoGroup,
2438 UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\
2439 .join(
2440 UserGroup,
2441 UserGroupRepoGroupToPerm.users_group_id ==
2442 UserGroup.users_group_id)\
2443 .join(
2444 UserGroupMember,
2445 UserGroupRepoGroupToPerm.users_group_id ==
2446 UserGroupMember.users_group_id)\
2447 .filter(
2448 UserGroupMember.user_id == user_id,
2449 UserGroup.users_group_active == true())
2450 if repo_group_id:
2451 q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id)
2452 return q.all()
2453
2454 @classmethod
2455 def get_default_user_group_perms(cls, user_id, user_group_id=None):
2456 q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\
2457 .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\
2458 .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\
2459 .filter(UserUserGroupToPerm.user_id == user_id)
2460 if user_group_id:
2461 q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id)
2462 return q.all()
2463
2464 @classmethod
2465 def get_default_user_group_perms_from_user_group(
2466 cls, user_id, user_group_id=None):
2467 TargetUserGroup = aliased(UserGroup, name='target_user_group')
2468 q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\
2469 .join(
2470 Permission,
2471 UserGroupUserGroupToPerm.permission_id ==
2472 Permission.permission_id)\
2473 .join(
2474 TargetUserGroup,
2475 UserGroupUserGroupToPerm.target_user_group_id ==
2476 TargetUserGroup.users_group_id)\
2477 .join(
2478 UserGroup,
2479 UserGroupUserGroupToPerm.user_group_id ==
2480 UserGroup.users_group_id)\
2481 .join(
2482 UserGroupMember,
2483 UserGroupUserGroupToPerm.user_group_id ==
2484 UserGroupMember.users_group_id)\
2485 .filter(
2486 UserGroupMember.user_id == user_id,
2487 UserGroup.users_group_active == true())
2488 if user_group_id:
2489 q = q.filter(
2490 UserGroupUserGroupToPerm.user_group_id == user_group_id)
2491
2492 return q.all()
2493
2494
2495 class UserRepoToPerm(Base, BaseModel):
2496 __tablename__ = 'repo_to_perm'
2497 __table_args__ = (
2498 UniqueConstraint('user_id', 'repository_id', 'permission_id'),
2499 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2500 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2501 )
2502 repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2503 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2504 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2505 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2506
2507 user = relationship('User')
2508 repository = relationship('Repository')
2509 permission = relationship('Permission')
2510
2511 @classmethod
2512 def create(cls, user, repository, permission):
2513 n = cls()
2514 n.user = user
2515 n.repository = repository
2516 n.permission = permission
2517 Session().add(n)
2518 return n
2519
2520 def __unicode__(self):
2521 return u'<%s => %s >' % (self.user, self.repository)
2522
2523
2524 class UserUserGroupToPerm(Base, BaseModel):
2525 __tablename__ = 'user_user_group_to_perm'
2526 __table_args__ = (
2527 UniqueConstraint('user_id', 'user_group_id', 'permission_id'),
2528 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2529 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2530 )
2531 user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2532 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2533 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2534 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2535
2536 user = relationship('User')
2537 user_group = relationship('UserGroup')
2538 permission = relationship('Permission')
2539
2540 @classmethod
2541 def create(cls, user, user_group, permission):
2542 n = cls()
2543 n.user = user
2544 n.user_group = user_group
2545 n.permission = permission
2546 Session().add(n)
2547 return n
2548
2549 def __unicode__(self):
2550 return u'<%s => %s >' % (self.user, self.user_group)
2551
2552
2553 class UserToPerm(Base, BaseModel):
2554 __tablename__ = 'user_to_perm'
2555 __table_args__ = (
2556 UniqueConstraint('user_id', 'permission_id'),
2557 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2558 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2559 )
2560 user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2561 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2562 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2563
2564 user = relationship('User')
2565 permission = relationship('Permission', lazy='joined')
2566
2567 def __unicode__(self):
2568 return u'<%s => %s >' % (self.user, self.permission)
2569
2570
2571 class UserGroupRepoToPerm(Base, BaseModel):
2572 __tablename__ = 'users_group_repo_to_perm'
2573 __table_args__ = (
2574 UniqueConstraint('repository_id', 'users_group_id', 'permission_id'),
2575 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2576 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2577 )
2578 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2579 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2580 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2581 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2582
2583 users_group = relationship('UserGroup')
2584 permission = relationship('Permission')
2585 repository = relationship('Repository')
2586
2587 @classmethod
2588 def create(cls, users_group, repository, permission):
2589 n = cls()
2590 n.users_group = users_group
2591 n.repository = repository
2592 n.permission = permission
2593 Session().add(n)
2594 return n
2595
2596 def __unicode__(self):
2597 return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository)
2598
2599
2600 class UserGroupUserGroupToPerm(Base, BaseModel):
2601 __tablename__ = 'user_group_user_group_to_perm'
2602 __table_args__ = (
2603 UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
2604 CheckConstraint('target_user_group_id != user_group_id'),
2605 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2606 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2607 )
2608 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)
2609 target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2610 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2611 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2612
2613 target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id')
2614 user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id')
2615 permission = relationship('Permission')
2616
2617 @classmethod
2618 def create(cls, target_user_group, user_group, permission):
2619 n = cls()
2620 n.target_user_group = target_user_group
2621 n.user_group = user_group
2622 n.permission = permission
2623 Session().add(n)
2624 return n
2625
2626 def __unicode__(self):
2627 return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group)
2628
2629
2630 class UserGroupToPerm(Base, BaseModel):
2631 __tablename__ = 'users_group_to_perm'
2632 __table_args__ = (
2633 UniqueConstraint('users_group_id', 'permission_id',),
2634 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2635 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2636 )
2637 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2638 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2639 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2640
2641 users_group = relationship('UserGroup')
2642 permission = relationship('Permission')
2643
2644
2645 class UserRepoGroupToPerm(Base, BaseModel):
2646 __tablename__ = 'user_repo_group_to_perm'
2647 __table_args__ = (
2648 UniqueConstraint('user_id', 'group_id', 'permission_id'),
2649 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2650 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2651 )
2652
2653 group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2654 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2655 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2656 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2657
2658 user = relationship('User')
2659 group = relationship('RepoGroup')
2660 permission = relationship('Permission')
2661
2662 @classmethod
2663 def create(cls, user, repository_group, permission):
2664 n = cls()
2665 n.user = user
2666 n.group = repository_group
2667 n.permission = permission
2668 Session().add(n)
2669 return n
2670
2671
2672 class UserGroupRepoGroupToPerm(Base, BaseModel):
2673 __tablename__ = 'users_group_repo_group_to_perm'
2674 __table_args__ = (
2675 UniqueConstraint('users_group_id', 'group_id'),
2676 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2677 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2678 )
2679
2680 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)
2681 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2682 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2683 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2684
2685 users_group = relationship('UserGroup')
2686 permission = relationship('Permission')
2687 group = relationship('RepoGroup')
2688
2689 @classmethod
2690 def create(cls, user_group, repository_group, permission):
2691 n = cls()
2692 n.users_group = user_group
2693 n.group = repository_group
2694 n.permission = permission
2695 Session().add(n)
2696 return n
2697
2698 def __unicode__(self):
2699 return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group)
2700
2701
2702 class Statistics(Base, BaseModel):
2703 __tablename__ = 'statistics'
2704 __table_args__ = (
2705 UniqueConstraint('repository_id'),
2706 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2707 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2708 )
2709 stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2710 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None)
2711 stat_on_revision = Column("stat_on_revision", Integer(), nullable=False)
2712 commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data
2713 commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data
2714 languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data
2715
2716 repository = relationship('Repository', single_parent=True)
2717
2718
2719 class UserFollowing(Base, BaseModel):
2720 __tablename__ = 'user_followings'
2721 __table_args__ = (
2722 UniqueConstraint('user_id', 'follows_repository_id'),
2723 UniqueConstraint('user_id', 'follows_user_id'),
2724 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2725 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2726 )
2727
2728 user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2729 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2730 follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None)
2731 follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
2732 follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
2733
2734 user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id')
2735
2736 follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id')
2737 follows_repository = relationship('Repository', order_by='Repository.repo_name')
2738
2739 @classmethod
2740 def get_repo_followers(cls, repo_id):
2741 return cls.query().filter(cls.follows_repo_id == repo_id)
2742
2743
2744 class CacheKey(Base, BaseModel):
2745 __tablename__ = 'cache_invalidation'
2746 __table_args__ = (
2747 UniqueConstraint('cache_key'),
2748 Index('key_idx', 'cache_key'),
2749 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2750 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2751 )
2752 CACHE_TYPE_ATOM = 'ATOM'
2753 CACHE_TYPE_RSS = 'RSS'
2754 CACHE_TYPE_README = 'README'
2755
2756 cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2757 cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None)
2758 cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None)
2759 cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False)
2760
2761 def __init__(self, cache_key, cache_args=''):
2762 self.cache_key = cache_key
2763 self.cache_args = cache_args
2764 self.cache_active = False
2765
2766 def __unicode__(self):
2767 return u"<%s('%s:%s[%s]')>" % (
2768 self.__class__.__name__,
2769 self.cache_id, self.cache_key, self.cache_active)
2770
2771 def _cache_key_partition(self):
2772 prefix, repo_name, suffix = self.cache_key.partition(self.cache_args)
2773 return prefix, repo_name, suffix
2774
2775 def get_prefix(self):
2776 """
2777 Try to extract prefix from existing cache key. The key could consist
2778 of prefix, repo_name, suffix
2779 """
2780 # this returns prefix, repo_name, suffix
2781 return self._cache_key_partition()[0]
2782
2783 def get_suffix(self):
2784 """
2785 get suffix that might have been used in _get_cache_key to
2786 generate self.cache_key. Only used for informational purposes
2787 in repo_edit.html.
2788 """
2789 # prefix, repo_name, suffix
2790 return self._cache_key_partition()[2]
2791
2792 @classmethod
2793 def delete_all_cache(cls):
2794 """
2795 Delete all cache keys from database.
2796 Should only be run when all instances are down and all entries
2797 thus stale.
2798 """
2799 cls.query().delete()
2800 Session().commit()
2801
2802 @classmethod
2803 def get_cache_key(cls, repo_name, cache_type):
2804 """
2805
2806 Generate a cache key for this process of RhodeCode instance.
2807 Prefix most likely will be process id or maybe explicitly set
2808 instance_id from .ini file.
2809 """
2810 import rhodecode
2811 prefix = safe_unicode(rhodecode.CONFIG.get('instance_id') or '')
2812
2813 repo_as_unicode = safe_unicode(repo_name)
2814 key = u'{}_{}'.format(repo_as_unicode, cache_type) \
2815 if cache_type else repo_as_unicode
2816
2817 return u'{}{}'.format(prefix, key)
2818
2819 @classmethod
2820 def set_invalidate(cls, repo_name, delete=False):
2821 """
2822 Mark all caches of a repo as invalid in the database.
2823 """
2824
2825 try:
2826 qry = Session().query(cls).filter(cls.cache_args == repo_name)
2827 if delete:
2828 log.debug('cache objects deleted for repo %s',
2829 safe_str(repo_name))
2830 qry.delete()
2831 else:
2832 log.debug('cache objects marked as invalid for repo %s',
2833 safe_str(repo_name))
2834 qry.update({"cache_active": False})
2835
2836 Session().commit()
2837 except Exception:
2838 log.exception(
2839 'Cache key invalidation failed for repository %s',
2840 safe_str(repo_name))
2841 Session().rollback()
2842
2843 @classmethod
2844 def get_active_cache(cls, cache_key):
2845 inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar()
2846 if inv_obj:
2847 return inv_obj
2848 return None
2849
2850 @classmethod
2851 def repo_context_cache(cls, compute_func, repo_name, cache_type,
2852 thread_scoped=False):
2853 """
2854 @cache_region('long_term')
2855 def _heavy_calculation(cache_key):
2856 return 'result'
2857
2858 cache_context = CacheKey.repo_context_cache(
2859 _heavy_calculation, repo_name, cache_type)
2860
2861 with cache_context as context:
2862 context.invalidate()
2863 computed = context.compute()
2864
2865 assert computed == 'result'
2866 """
2867 from rhodecode.lib import caches
2868 return caches.InvalidationContext(
2869 compute_func, repo_name, cache_type, thread_scoped=thread_scoped)
2870
2871
2872 class ChangesetComment(Base, BaseModel):
2873 __tablename__ = 'changeset_comments'
2874 __table_args__ = (
2875 Index('cc_revision_idx', 'revision'),
2876 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2877 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2878 )
2879
2880 COMMENT_OUTDATED = u'comment_outdated'
2881
2882 comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True)
2883 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2884 revision = Column('revision', String(40), nullable=True)
2885 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2886 pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True)
2887 line_no = Column('line_no', Unicode(10), nullable=True)
2888 hl_lines = Column('hl_lines', Unicode(512), nullable=True)
2889 f_path = Column('f_path', Unicode(1000), nullable=True)
2890 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
2891 text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False)
2892 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2893 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2894 renderer = Column('renderer', Unicode(64), nullable=True)
2895 display_state = Column('display_state', Unicode(128), nullable=True)
2896
2897 author = relationship('User', lazy='joined')
2898 repo = relationship('Repository')
2899 status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan")
2900 pull_request = relationship('PullRequest', lazy='joined')
2901 pull_request_version = relationship('PullRequestVersion')
2902
2903 @classmethod
2904 def get_users(cls, revision=None, pull_request_id=None):
2905 """
2906 Returns user associated with this ChangesetComment. ie those
2907 who actually commented
2908
2909 :param cls:
2910 :param revision:
2911 """
2912 q = Session().query(User)\
2913 .join(ChangesetComment.author)
2914 if revision:
2915 q = q.filter(cls.revision == revision)
2916 elif pull_request_id:
2917 q = q.filter(cls.pull_request_id == pull_request_id)
2918 return q.all()
2919
2920 def render(self, mentions=False):
2921 from rhodecode.lib import helpers as h
2922 return h.render(self.text, renderer=self.renderer, mentions=mentions)
2923
2924 def __repr__(self):
2925 if self.comment_id:
2926 return '<DB:ChangesetComment #%s>' % self.comment_id
2927 else:
2928 return '<DB:ChangesetComment at %#x>' % id(self)
2929
2930
2931 class ChangesetStatus(Base, BaseModel):
2932 __tablename__ = 'changeset_statuses'
2933 __table_args__ = (
2934 Index('cs_revision_idx', 'revision'),
2935 Index('cs_version_idx', 'version'),
2936 UniqueConstraint('repo_id', 'revision', 'version'),
2937 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2938 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2939 )
2940 STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
2941 STATUS_APPROVED = 'approved'
2942 STATUS_REJECTED = 'rejected'
2943 STATUS_UNDER_REVIEW = 'under_review'
2944
2945 STATUSES = [
2946 (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default
2947 (STATUS_APPROVED, _("Approved")),
2948 (STATUS_REJECTED, _("Rejected")),
2949 (STATUS_UNDER_REVIEW, _("Under Review")),
2950 ]
2951
2952 changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True)
2953 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2954 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None)
2955 revision = Column('revision', String(40), nullable=False)
2956 status = Column('status', String(128), nullable=False, default=DEFAULT)
2957 changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'))
2958 modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now)
2959 version = Column('version', Integer(), nullable=False, default=0)
2960 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2961
2962 author = relationship('User', lazy='joined')
2963 repo = relationship('Repository')
2964 comment = relationship('ChangesetComment', lazy='joined')
2965 pull_request = relationship('PullRequest', lazy='joined')
2966
2967 def __unicode__(self):
2968 return u"<%s('%s[%s]:%s')>" % (
2969 self.__class__.__name__,
2970 self.status, self.version, self.author
2971 )
2972
2973 @classmethod
2974 def get_status_lbl(cls, value):
2975 return dict(cls.STATUSES).get(value)
2976
2977 @property
2978 def status_lbl(self):
2979 return ChangesetStatus.get_status_lbl(self.status)
2980
2981
2982 class _PullRequestBase(BaseModel):
2983 """
2984 Common attributes of pull request and version entries.
2985 """
2986
2987 # .status values
2988 STATUS_NEW = u'new'
2989 STATUS_OPEN = u'open'
2990 STATUS_CLOSED = u'closed'
2991
2992 title = Column('title', Unicode(255), nullable=True)
2993 description = Column(
2994 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'),
2995 nullable=True)
2996 # new/open/closed status of pull request (not approve/reject/etc)
2997 status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW)
2998 created_on = Column(
2999 'created_on', DateTime(timezone=False), nullable=False,
3000 default=datetime.datetime.now)
3001 updated_on = Column(
3002 'updated_on', DateTime(timezone=False), nullable=False,
3003 default=datetime.datetime.now)
3004
3005 @declared_attr
3006 def user_id(cls):
3007 return Column(
3008 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
3009 unique=None)
3010
3011 # 500 revisions max
3012 _revisions = Column(
3013 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql'))
3014
3015 @declared_attr
3016 def source_repo_id(cls):
3017 # TODO: dan: rename column to source_repo_id
3018 return Column(
3019 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3020 nullable=False)
3021
3022 source_ref = Column('org_ref', Unicode(255), nullable=False)
3023
3024 @declared_attr
3025 def target_repo_id(cls):
3026 # TODO: dan: rename column to target_repo_id
3027 return Column(
3028 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3029 nullable=False)
3030
3031 target_ref = Column('other_ref', Unicode(255), nullable=False)
3032
3033 # TODO: dan: rename column to last_merge_source_rev
3034 _last_merge_source_rev = Column(
3035 'last_merge_org_rev', String(40), nullable=True)
3036 # TODO: dan: rename column to last_merge_target_rev
3037 _last_merge_target_rev = Column(
3038 'last_merge_other_rev', String(40), nullable=True)
3039 _last_merge_status = Column('merge_status', Integer(), nullable=True)
3040 merge_rev = Column('merge_rev', String(40), nullable=True)
3041
3042 @hybrid_property
3043 def revisions(self):
3044 return self._revisions.split(':') if self._revisions else []
3045
3046 @revisions.setter
3047 def revisions(self, val):
3048 self._revisions = ':'.join(val)
3049
3050 @declared_attr
3051 def author(cls):
3052 return relationship('User', lazy='joined')
3053
3054 @declared_attr
3055 def source_repo(cls):
3056 return relationship(
3057 'Repository',
3058 primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__)
3059
3060 @property
3061 def source_ref_parts(self):
3062 refs = self.source_ref.split(':')
3063 return Reference(refs[0], refs[1], refs[2])
3064
3065 @declared_attr
3066 def target_repo(cls):
3067 return relationship(
3068 'Repository',
3069 primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__)
3070
3071 @property
3072 def target_ref_parts(self):
3073 refs = self.target_ref.split(':')
3074 return Reference(refs[0], refs[1], refs[2])
3075
3076
3077 class PullRequest(Base, _PullRequestBase):
3078 __tablename__ = 'pull_requests'
3079 __table_args__ = (
3080 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3081 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3082 )
3083
3084 pull_request_id = Column(
3085 'pull_request_id', Integer(), nullable=False, primary_key=True)
3086
3087 def __repr__(self):
3088 if self.pull_request_id:
3089 return '<DB:PullRequest #%s>' % self.pull_request_id
3090 else:
3091 return '<DB:PullRequest at %#x>' % id(self)
3092
3093 reviewers = relationship('PullRequestReviewers',
3094 cascade="all, delete, delete-orphan")
3095 statuses = relationship('ChangesetStatus')
3096 comments = relationship('ChangesetComment',
3097 cascade="all, delete, delete-orphan")
3098 versions = relationship('PullRequestVersion',
3099 cascade="all, delete, delete-orphan")
3100
3101 def is_closed(self):
3102 return self.status == self.STATUS_CLOSED
3103
3104 def get_api_data(self):
3105 from rhodecode.model.pull_request import PullRequestModel
3106 pull_request = self
3107 merge_status = PullRequestModel().merge_status(pull_request)
3108 data = {
3109 'pull_request_id': pull_request.pull_request_id,
3110 'url': url('pullrequest_show', repo_name=self.target_repo.repo_name,
3111 pull_request_id=self.pull_request_id,
3112 qualified=True),
3113 'title': pull_request.title,
3114 'description': pull_request.description,
3115 'status': pull_request.status,
3116 'created_on': pull_request.created_on,
3117 'updated_on': pull_request.updated_on,
3118 'commit_ids': pull_request.revisions,
3119 'review_status': pull_request.calculated_review_status(),
3120 'mergeable': {
3121 'status': merge_status[0],
3122 'message': unicode(merge_status[1]),
3123 },
3124 'source': {
3125 'clone_url': pull_request.source_repo.clone_url(),
3126 'repository': pull_request.source_repo.repo_name,
3127 'reference': {
3128 'name': pull_request.source_ref_parts.name,
3129 'type': pull_request.source_ref_parts.type,
3130 'commit_id': pull_request.source_ref_parts.commit_id,
3131 },
3132 },
3133 'target': {
3134 'clone_url': pull_request.target_repo.clone_url(),
3135 'repository': pull_request.target_repo.repo_name,
3136 'reference': {
3137 'name': pull_request.target_ref_parts.name,
3138 'type': pull_request.target_ref_parts.type,
3139 'commit_id': pull_request.target_ref_parts.commit_id,
3140 },
3141 },
3142 'author': pull_request.author.get_api_data(include_secrets=False,
3143 details='basic'),
3144 'reviewers': [
3145 {
3146 'user': reviewer.get_api_data(include_secrets=False,
3147 details='basic'),
3148 'review_status': st[0][1].status if st else 'not_reviewed',
3149 }
3150 for reviewer, st in pull_request.reviewers_statuses()
3151 ]
3152 }
3153
3154 return data
3155
3156 def __json__(self):
3157 return {
3158 'revisions': self.revisions,
3159 }
3160
3161 def calculated_review_status(self):
3162 # TODO: anderson: 13.05.15 Used only on templates/my_account_pullrequests.html
3163 # because it's tricky on how to use ChangesetStatusModel from there
3164 warnings.warn("Use calculated_review_status from ChangesetStatusModel", DeprecationWarning)
3165 from rhodecode.model.changeset_status import ChangesetStatusModel
3166 return ChangesetStatusModel().calculated_review_status(self)
3167
3168 def reviewers_statuses(self):
3169 warnings.warn("Use reviewers_statuses from ChangesetStatusModel", DeprecationWarning)
3170 from rhodecode.model.changeset_status import ChangesetStatusModel
3171 return ChangesetStatusModel().reviewers_statuses(self)
3172
3173
3174 class PullRequestVersion(Base, _PullRequestBase):
3175 __tablename__ = 'pull_request_versions'
3176 __table_args__ = (
3177 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3178 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3179 )
3180
3181 pull_request_version_id = Column(
3182 'pull_request_version_id', Integer(), nullable=False, primary_key=True)
3183 pull_request_id = Column(
3184 'pull_request_id', Integer(),
3185 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3186 pull_request = relationship('PullRequest')
3187
3188 def __repr__(self):
3189 if self.pull_request_version_id:
3190 return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id
3191 else:
3192 return '<DB:PullRequestVersion at %#x>' % id(self)
3193
3194
3195 class PullRequestReviewers(Base, BaseModel):
3196 __tablename__ = 'pull_request_reviewers'
3197 __table_args__ = (
3198 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3199 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3200 )
3201
3202 def __init__(self, user=None, pull_request=None):
3203 self.user = user
3204 self.pull_request = pull_request
3205
3206 pull_requests_reviewers_id = Column(
3207 'pull_requests_reviewers_id', Integer(), nullable=False,
3208 primary_key=True)
3209 pull_request_id = Column(
3210 "pull_request_id", Integer(),
3211 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3212 user_id = Column(
3213 "user_id", Integer(), ForeignKey('users.user_id'), nullable=True)
3214
3215 user = relationship('User')
3216 pull_request = relationship('PullRequest')
3217
3218
3219 class Notification(Base, BaseModel):
3220 __tablename__ = 'notifications'
3221 __table_args__ = (
3222 Index('notification_type_idx', 'type'),
3223 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3224 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3225 )
3226
3227 TYPE_CHANGESET_COMMENT = u'cs_comment'
3228 TYPE_MESSAGE = u'message'
3229 TYPE_MENTION = u'mention'
3230 TYPE_REGISTRATION = u'registration'
3231 TYPE_PULL_REQUEST = u'pull_request'
3232 TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment'
3233
3234 notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True)
3235 subject = Column('subject', Unicode(512), nullable=True)
3236 body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True)
3237 created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True)
3238 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3239 type_ = Column('type', Unicode(255))
3240
3241 created_by_user = relationship('User')
3242 notifications_to_users = relationship('UserNotification', lazy='joined',
3243 cascade="all, delete, delete-orphan")
3244
3245 @property
3246 def recipients(self):
3247 return [x.user for x in UserNotification.query()\
3248 .filter(UserNotification.notification == self)\
3249 .order_by(UserNotification.user_id.asc()).all()]
3250
3251 @classmethod
3252 def create(cls, created_by, subject, body, recipients, type_=None):
3253 if type_ is None:
3254 type_ = Notification.TYPE_MESSAGE
3255
3256 notification = cls()
3257 notification.created_by_user = created_by
3258 notification.subject = subject
3259 notification.body = body
3260 notification.type_ = type_
3261 notification.created_on = datetime.datetime.now()
3262
3263 for u in recipients:
3264 assoc = UserNotification()
3265 assoc.notification = notification
3266
3267 # if created_by is inside recipients mark his notification
3268 # as read
3269 if u.user_id == created_by.user_id:
3270 assoc.read = True
3271
3272 u.notifications.append(assoc)
3273 Session().add(notification)
3274
3275 return notification
3276
3277 @property
3278 def description(self):
3279 from rhodecode.model.notification import NotificationModel
3280 return NotificationModel().make_description(self)
3281
3282
3283 class UserNotification(Base, BaseModel):
3284 __tablename__ = 'user_to_notification'
3285 __table_args__ = (
3286 UniqueConstraint('user_id', 'notification_id'),
3287 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3288 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3289 )
3290 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
3291 notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True)
3292 read = Column('read', Boolean, default=False)
3293 sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None)
3294
3295 user = relationship('User', lazy="joined")
3296 notification = relationship('Notification', lazy="joined",
3297 order_by=lambda: Notification.created_on.desc(),)
3298
3299 def mark_as_read(self):
3300 self.read = True
3301 Session().add(self)
3302
3303
3304 class Gist(Base, BaseModel):
3305 __tablename__ = 'gists'
3306 __table_args__ = (
3307 Index('g_gist_access_id_idx', 'gist_access_id'),
3308 Index('g_created_on_idx', 'created_on'),
3309 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3310 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3311 )
3312 GIST_PUBLIC = u'public'
3313 GIST_PRIVATE = u'private'
3314 DEFAULT_FILENAME = u'gistfile1.txt'
3315
3316 ACL_LEVEL_PUBLIC = u'acl_public'
3317 ACL_LEVEL_PRIVATE = u'acl_private'
3318
3319 gist_id = Column('gist_id', Integer(), primary_key=True)
3320 gist_access_id = Column('gist_access_id', Unicode(250))
3321 gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
3322 gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True)
3323 gist_expires = Column('gist_expires', Float(53), nullable=False)
3324 gist_type = Column('gist_type', Unicode(128), nullable=False)
3325 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3326 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3327 acl_level = Column('acl_level', Unicode(128), nullable=True)
3328
3329 owner = relationship('User')
3330
3331 def __repr__(self):
3332 return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id)
3333
3334 @classmethod
3335 def get_or_404(cls, id_):
3336 res = cls.query().filter(cls.gist_access_id == id_).scalar()
3337 if not res:
3338 raise HTTPNotFound
3339 return res
3340
3341 @classmethod
3342 def get_by_access_id(cls, gist_access_id):
3343 return cls.query().filter(cls.gist_access_id == gist_access_id).scalar()
3344
3345 def gist_url(self):
3346 import rhodecode
3347 alias_url = rhodecode.CONFIG.get('gist_alias_url')
3348 if alias_url:
3349 return alias_url.replace('{gistid}', self.gist_access_id)
3350
3351 return url('gist', gist_id=self.gist_access_id, qualified=True)
3352
3353 @classmethod
3354 def base_path(cls):
3355 """
3356 Returns base path when all gists are stored
3357
3358 :param cls:
3359 """
3360 from rhodecode.model.gist import GIST_STORE_LOC
3361 q = Session().query(RhodeCodeUi)\
3362 .filter(RhodeCodeUi.ui_key == URL_SEP)
3363 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
3364 return os.path.join(q.one().ui_value, GIST_STORE_LOC)
3365
3366 def get_api_data(self):
3367 """
3368 Common function for generating gist related data for API
3369 """
3370 gist = self
3371 data = {
3372 'gist_id': gist.gist_id,
3373 'type': gist.gist_type,
3374 'access_id': gist.gist_access_id,
3375 'description': gist.gist_description,
3376 'url': gist.gist_url(),
3377 'expires': gist.gist_expires,
3378 'created_on': gist.created_on,
3379 'modified_at': gist.modified_at,
3380 'content': None,
3381 'acl_level': gist.acl_level,
3382 }
3383 return data
3384
3385 def __json__(self):
3386 data = dict(
3387 )
3388 data.update(self.get_api_data())
3389 return data
3390 # SCM functions
3391
3392 def scm_instance(self, **kwargs):
3393 full_repo_path = os.path.join(self.base_path(), self.gist_access_id)
3394 return get_vcs_instance(
3395 repo_path=safe_str(full_repo_path), create=False)
3396
3397
3398 class DbMigrateVersion(Base, BaseModel):
3399 __tablename__ = 'db_migrate_version'
3400 __table_args__ = (
3401 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3402 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3403 )
3404 repository_id = Column('repository_id', String(250), primary_key=True)
3405 repository_path = Column('repository_path', Text)
3406 version = Column('version', Integer)
3407
3408
3409 class ExternalIdentity(Base, BaseModel):
3410 __tablename__ = 'external_identities'
3411 __table_args__ = (
3412 Index('local_user_id_idx', 'local_user_id'),
3413 Index('external_id_idx', 'external_id'),
3414 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3415 'mysql_charset': 'utf8'})
3416
3417 external_id = Column('external_id', Unicode(255), default=u'',
3418 primary_key=True)
3419 external_username = Column('external_username', Unicode(1024), default=u'')
3420 local_user_id = Column('local_user_id', Integer(),
3421 ForeignKey('users.user_id'), primary_key=True)
3422 provider_name = Column('provider_name', Unicode(255), default=u'',
3423 primary_key=True)
3424 access_token = Column('access_token', String(1024), default=u'')
3425 alt_token = Column('alt_token', String(1024), default=u'')
3426 token_secret = Column('token_secret', String(1024), default=u'')
3427
3428 @classmethod
3429 def by_external_id_and_provider(cls, external_id, provider_name,
3430 local_user_id=None):
3431 """
3432 Returns ExternalIdentity instance based on search params
3433
3434 :param external_id:
3435 :param provider_name:
3436 :return: ExternalIdentity
3437 """
3438 query = cls.query()
3439 query = query.filter(cls.external_id == external_id)
3440 query = query.filter(cls.provider_name == provider_name)
3441 if local_user_id:
3442 query = query.filter(cls.local_user_id == local_user_id)
3443 return query.first()
3444
3445 @classmethod
3446 def user_by_external_id_and_provider(cls, external_id, provider_name):
3447 """
3448 Returns User instance based on search params
3449
3450 :param external_id:
3451 :param provider_name:
3452 :return: User
3453 """
3454 query = User.query()
3455 query = query.filter(cls.external_id == external_id)
3456 query = query.filter(cls.provider_name == provider_name)
3457 query = query.filter(User.user_id == cls.local_user_id)
3458 return query.first()
3459
3460 @classmethod
3461 def by_local_user_id(cls, local_user_id):
3462 """
3463 Returns all tokens for user
3464
3465 :param local_user_id:
3466 :return: ExternalIdentity
3467 """
3468 query = cls.query()
3469 query = query.filter(cls.local_user_id == local_user_id)
3470 return query
3471
3472
3473 class Integration(Base, BaseModel):
3474 __tablename__ = 'integrations'
3475 __table_args__ = (
3476 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3477 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3478 )
3479
3480 integration_id = Column('integration_id', Integer(), primary_key=True)
3481 integration_type = Column('integration_type', String(255))
3482 enabled = Column('enabled', Boolean(), nullable=False)
3483 name = Column('name', String(255), nullable=False)
3484 child_repos_only = Column('child_repos_only', Boolean(), nullable=True)
3485
3486 settings = Column(
3487 'settings_json', MutationObj.as_mutable(
3488 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
3489 repo_id = Column(
3490 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
3491 nullable=True, unique=None, default=None)
3492 repo = relationship('Repository', lazy='joined')
3493
3494 repo_group_id = Column(
3495 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
3496 nullable=True, unique=None, default=None)
3497 repo_group = relationship('RepoGroup', lazy='joined')
3498
3499 @hybrid_property
3500 def scope(self):
3501 if self.repo:
3502 return self.repo
3503 if self.repo_group:
3504 return self.repo_group
3505 if self.child_repos_only:
3506 return 'root_repos'
3507 return 'global'
3508
3509 @scope.setter
3510 def scope(self, value):
3511 self.repo = None
3512 self.repo_id = None
3513 self.repo_group_id = None
3514 self.repo_group = None
3515 self.child_repos_only = None
3516 if isinstance(value, Repository):
3517 self.repo = value
3518 elif isinstance(value, RepoGroup):
3519 self.repo_group = value
3520 elif value == 'root_repos':
3521 self.child_repos_only = True
3522 elif value == 'global':
3523 pass
3524 else:
3525 raise Exception("invalid scope: %s, must be one of "
3526 "['global', 'root_repos', <RepoGroup>. <Repository>]" % value)
3527
3528 def __repr__(self):
3529 return '<Integration(%r, %r)>' % (self.integration_type, self.scope)
@@ -0,0 +1,35 b''
1 import logging
2 import datetime
3
4 from sqlalchemy import *
5 from sqlalchemy.exc import DatabaseError
6 from sqlalchemy.orm import relation, backref, class_mapper, joinedload
7 from sqlalchemy.orm.session import Session
8 from sqlalchemy.ext.declarative import declarative_base
9
10 from rhodecode.lib.dbmigrate.migrate import *
11 from rhodecode.lib.dbmigrate.migrate.changeset import *
12 from rhodecode.lib.utils2 import str2bool
13
14 from rhodecode.model.meta import Base
15 from rhodecode.model import meta
16 from rhodecode.lib.dbmigrate.versions import _reset_base, notify
17
18 log = logging.getLogger(__name__)
19
20
21 def upgrade(migrate_engine):
22 """
23 Upgrade operations go here.
24 Don't create your own engine; bind migrate_engine to your metadata
25 """
26 _reset_base(migrate_engine)
27 from rhodecode.lib.dbmigrate.schema import db_4_4_0_1
28
29 tbl = db_4_4_0_1.Integration.__table__
30 child_repos_only = db_4_4_0_1.Integration.child_repos_only
31 child_repos_only.create(table=tbl)
32
33 def downgrade(migrate_engine):
34 meta = MetaData()
35 meta.bind = migrate_engine
@@ -0,0 +1,187 b''
1 # -*- coding: utf-8 -*-
2
3 # Copyright (C) 2016-2016 RhodeCode GmbH
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
21 import os
22
23 import deform
24 import colander
25
26 from rhodecode.translation import _
27 from rhodecode.model.db import Repository, RepoGroup
28 from rhodecode.model.validation_schema import validators, preparers
29
30
31 def integration_scope_choices(permissions):
32 """
33 Return list of (value, label) choices for integration scopes depending on
34 the permissions
35 """
36 result = [('', _('Pick a scope:'))]
37 if 'hg.admin' in permissions['global']:
38 result.extend([
39 ('global', _('Global (all repositories)')),
40 ('root_repos', _('Top level repositories only')),
41 ])
42
43 repo_choices = [
44 ('repo:%s' % repo_name, '/' + repo_name)
45 for repo_name, repo_perm
46 in permissions['repositories'].items()
47 if repo_perm == 'repository.admin'
48 ]
49 repogroup_choices = [
50 ('repogroup:%s' % repo_group_name, '/' + repo_group_name + ' (group)')
51 for repo_group_name, repo_group_perm
52 in permissions['repositories_groups'].items()
53 if repo_group_perm == 'group.admin'
54 ]
55 result.extend(
56 sorted(repogroup_choices + repo_choices,
57 key=lambda (choice, label): choice.split(':', 1)[1]
58 )
59 )
60 return result
61
62
63 @colander.deferred
64 def deferred_integration_scopes_validator(node, kw):
65 perms = kw.get('permissions')
66 def _scope_validator(_node, scope):
67 is_super_admin = 'hg.admin' in perms['global']
68
69 if scope in ('global', 'root_repos'):
70 if is_super_admin:
71 return True
72 msg = _('Only superadmins can create global integrations')
73 raise colander.Invalid(_node, msg)
74 elif isinstance(scope, Repository):
75 if (is_super_admin or perms['repositories'].get(
76 scope.repo_name) == 'repository.admin'):
77 return True
78 msg = _('Only repo admins can create integrations')
79 raise colander.Invalid(_node, msg)
80 elif isinstance(scope, RepoGroup):
81 if (is_super_admin or perms['repositories_groups'].get(
82 scope.group_name) == 'group.admin'):
83 return True
84
85 msg = _('Only repogroup admins can create integrations')
86 raise colander.Invalid(_node, msg)
87
88 msg = _('Invalid integration scope: %s' % scope)
89 raise colander.Invalid(node, msg)
90
91 return _scope_validator
92
93
94 @colander.deferred
95 def deferred_integration_scopes_widget(node, kw):
96 if kw.get('no_scope'):
97 return deform.widget.TextInputWidget(readonly=True)
98
99 choices = integration_scope_choices(kw.get('permissions'))
100 widget = deform.widget.Select2Widget(values=choices)
101 return widget
102
103 class IntegrationScope(colander.SchemaType):
104 def serialize(self, node, appstruct):
105 if appstruct is colander.null:
106 return colander.null
107
108 if isinstance(appstruct, Repository):
109 return 'repo:%s' % appstruct.repo_name
110 elif isinstance(appstruct, RepoGroup):
111 return 'repogroup:%s' % appstruct.group_name
112 elif appstruct in ('global', 'root_repos'):
113 return appstruct
114 raise colander.Invalid(node, '%r is not a valid scope' % appstruct)
115
116 def deserialize(self, node, cstruct):
117 if cstruct is colander.null:
118 return colander.null
119
120 if cstruct.startswith('repo:'):
121 repo = Repository.get_by_repo_name(cstruct.split(':')[1])
122 if repo:
123 return repo
124 elif cstruct.startswith('repogroup:'):
125 repo_group = RepoGroup.get_by_group_name(cstruct.split(':')[1])
126 if repo_group:
127 return repo_group
128 elif cstruct in ('global', 'root_repos'):
129 return cstruct
130
131 raise colander.Invalid(node, '%r is not a valid scope' % cstruct)
132
133 class IntegrationOptionsSchemaBase(colander.MappingSchema):
134
135 name = colander.SchemaNode(
136 colander.String(),
137 description=_('Short name for this integration.'),
138 missing=colander.required,
139 title=_('Integration name'),
140 )
141
142 scope = colander.SchemaNode(
143 IntegrationScope(),
144 description=_(
145 'Scope of the integration. Group scope means the integration '
146 ' runs on all child repos of that group.'),
147 title=_('Integration scope'),
148 validator=deferred_integration_scopes_validator,
149 widget=deferred_integration_scopes_widget,
150 missing=colander.required,
151 )
152
153 enabled = colander.SchemaNode(
154 colander.Bool(),
155 default=True,
156 description=_('Enable or disable this integration.'),
157 missing=False,
158 title=_('Enabled'),
159 )
160
161
162
163 def make_integration_schema(IntegrationType, settings=None):
164 """
165 Return a colander schema for an integration type
166
167 :param IntegrationType: the integration type class
168 :param settings: existing integration settings dict (optional)
169 """
170
171 settings = settings or {}
172 settings_schema = IntegrationType(settings=settings).settings_schema()
173
174 class IntegrationSchema(colander.Schema):
175 options = IntegrationOptionsSchemaBase()
176
177 schema = IntegrationSchema()
178 schema['options'].title = _('General integration options')
179
180 settings_schema.name = 'settings'
181 settings_schema.title = _('{integration_type} settings').format(
182 integration_type=IntegrationType.display_name)
183 schema.add(settings_schema)
184
185 return schema
186
187
@@ -0,0 +1,66 b''
1 ## -*- coding: utf-8 -*-
2 <%inherit file="base.html"/>
3 <%namespace name="widgets" file="/widgets.html"/>
4
5 <%def name="breadcrumbs_links()">
6 %if c.repo:
7 ${h.link_to('Settings',h.url('edit_repo', repo_name=c.repo.repo_name))}
8 &raquo;
9 ${h.link_to(_('Integrations'),request.route_url(route_name='repo_integrations_home', repo_name=c.repo.repo_name))}
10 %elif c.repo_group:
11 ${h.link_to(_('Admin'),h.url('admin_home'))}
12 &raquo;
13 ${h.link_to(_('Repository Groups'),h.url('repo_groups'))}
14 &raquo;
15 ${h.link_to(c.repo_group.group_name,h.url('edit_repo_group', group_name=c.repo_group.group_name))}
16 &raquo;
17 ${h.link_to(_('Integrations'),request.route_url(route_name='repo_group_integrations_home', repo_group_name=c.repo_group.group_name))}
18 %else:
19 ${h.link_to(_('Admin'),h.url('admin_home'))}
20 &raquo;
21 ${h.link_to(_('Settings'),h.url('admin_settings'))}
22 &raquo;
23 ${h.link_to(_('Integrations'),request.route_url(route_name='global_integrations_home'))}
24 %endif
25 &raquo;
26 ${_('Create new integration')}
27 </%def>
28 <%widgets:panel class_='integrations'>
29 <%def name="title()">
30 %if c.repo:
31 ${_('Create New Integration for repository: {repo_name}').format(repo_name=c.repo.repo_name)}
32 %elif c.repo_group:
33 ${_('Create New Integration for repository group: {repo_group_name}').format(repo_group_name=c.repo_group.group_name)}
34 %else:
35 ${_('Create New Global Integration')}
36 %endif
37 </%def>
38
39 %for integration, IntegrationType in available_integrations.items():
40 <%
41 if c.repo:
42 create_url = request.route_path('repo_integrations_create',
43 repo_name=c.repo.repo_name,
44 integration=integration)
45 elif c.repo_group:
46 create_url = request.route_path('repo_group_integrations_create',
47 repo_group_name=c.repo_group.group_name,
48 integration=integration)
49 else:
50 create_url = request.route_path('global_integrations_create',
51 integration=integration)
52 %>
53 <a href="${create_url}" class="integration-box">
54 <%widgets:panel>
55 <h2>
56 <div class="integration-icon">
57 ${IntegrationType.icon|n}
58 </div>
59 ${IntegrationType.display_name}
60 </h2>
61 ${IntegrationType.description or _('No description available')}
62 </%widgets:panel>
63 </a>
64 %endfor
65 <div style="clear:both"></div>
66 </%widgets:panel>
@@ -0,0 +1,4 b''
1 <div class="form-control readonly"
2 id="${oid|field.oid}">
3 ${cstruct}
4 </div>
@@ -0,0 +1,262 b''
1 # -*- coding: utf-8 -*-
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
21 import mock
22 import pytest
23 from webob.exc import HTTPNotFound
24
25 import rhodecode
26 from rhodecode.model.db import Integration
27 from rhodecode.model.meta import Session
28 from rhodecode.tests import assert_session_flash, url, TEST_USER_ADMIN_LOGIN
29 from rhodecode.tests.utils import AssertResponse
30 from rhodecode.integrations import integration_type_registry
31 from rhodecode.config.routing import ADMIN_PREFIX
32
33
34 @pytest.mark.usefixtures('app', 'autologin_user')
35 class TestIntegrationsView(object):
36 pass
37
38
39 class TestGlobalIntegrationsView(TestIntegrationsView):
40 def test_index_no_integrations(self, app):
41 url = ADMIN_PREFIX + '/integrations'
42 response = app.get(url)
43
44 assert response.status_code == 200
45 assert 'exist yet' in response.body
46
47 def test_index_with_integrations(self, app, global_integration_stub):
48 url = ADMIN_PREFIX + '/integrations'
49 response = app.get(url)
50
51 assert response.status_code == 200
52 assert 'exist yet' not in response.body
53 assert global_integration_stub.name in response.body
54
55 def test_new_integration_page(self, app):
56 url = ADMIN_PREFIX + '/integrations/new'
57
58 response = app.get(url)
59
60 assert response.status_code == 200
61
62 for integration_key in integration_type_registry:
63 nurl = (ADMIN_PREFIX + '/integrations/{integration}/new').format(
64 integration=integration_key)
65 assert nurl in response.body
66
67 @pytest.mark.parametrize(
68 'IntegrationType', integration_type_registry.values())
69 def test_get_create_integration_page(self, app, IntegrationType):
70 url = ADMIN_PREFIX + '/integrations/{integration_key}/new'.format(
71 integration_key=IntegrationType.key)
72
73 response = app.get(url)
74
75 assert response.status_code == 200
76 assert IntegrationType.display_name in response.body
77
78 def test_post_integration_page(self, app, StubIntegrationType, csrf_token,
79 test_repo_group, backend_random):
80 url = ADMIN_PREFIX + '/integrations/{integration_key}/new'.format(
81 integration_key=StubIntegrationType.key)
82
83 _post_integration_test_helper(app, url, csrf_token, admin_view=True,
84 repo=backend_random.repo, repo_group=test_repo_group)
85
86
87 class TestRepoGroupIntegrationsView(TestIntegrationsView):
88 def test_index_no_integrations(self, app, test_repo_group):
89 url = '/{repo_group_name}/settings/integrations'.format(
90 repo_group_name=test_repo_group.group_name)
91 response = app.get(url)
92
93 assert response.status_code == 200
94 assert 'exist yet' in response.body
95
96 def test_index_with_integrations(self, app, test_repo_group,
97 repogroup_integration_stub):
98 url = '/{repo_group_name}/settings/integrations'.format(
99 repo_group_name=test_repo_group.group_name)
100
101 stub_name = repogroup_integration_stub.name
102 response = app.get(url)
103
104 assert response.status_code == 200
105 assert 'exist yet' not in response.body
106 assert stub_name in response.body
107
108 def test_new_integration_page(self, app, test_repo_group):
109 repo_group_name = test_repo_group.group_name
110 url = '/{repo_group_name}/settings/integrations/new'.format(
111 repo_group_name=test_repo_group.group_name)
112
113 response = app.get(url)
114
115 assert response.status_code == 200
116
117 for integration_key in integration_type_registry:
118 nurl = ('/{repo_group_name}/settings/integrations'
119 '/{integration}/new').format(
120 repo_group_name=repo_group_name,
121 integration=integration_key)
122
123 assert nurl in response.body
124
125 @pytest.mark.parametrize(
126 'IntegrationType', integration_type_registry.values())
127 def test_get_create_integration_page(self, app, test_repo_group,
128 IntegrationType):
129 repo_group_name = test_repo_group.group_name
130 url = ('/{repo_group_name}/settings/integrations/{integration_key}/new'
131 ).format(repo_group_name=repo_group_name,
132 integration_key=IntegrationType.key)
133
134 response = app.get(url)
135
136 assert response.status_code == 200
137 assert IntegrationType.display_name in response.body
138
139 def test_post_integration_page(self, app, test_repo_group, backend_random,
140 StubIntegrationType, csrf_token):
141 repo_group_name = test_repo_group.group_name
142 url = ('/{repo_group_name}/settings/integrations/{integration_key}/new'
143 ).format(repo_group_name=repo_group_name,
144 integration_key=StubIntegrationType.key)
145
146 _post_integration_test_helper(app, url, csrf_token, admin_view=False,
147 repo=backend_random.repo, repo_group=test_repo_group)
148
149
150 class TestRepoIntegrationsView(TestIntegrationsView):
151 def test_index_no_integrations(self, app, backend_random):
152 url = '/{repo_name}/settings/integrations'.format(
153 repo_name=backend_random.repo.repo_name)
154 response = app.get(url)
155
156 assert response.status_code == 200
157 assert 'exist yet' in response.body
158
159 def test_index_with_integrations(self, app, repo_integration_stub):
160 url = '/{repo_name}/settings/integrations'.format(
161 repo_name=repo_integration_stub.repo.repo_name)
162 stub_name = repo_integration_stub.name
163
164 response = app.get(url)
165
166 assert response.status_code == 200
167 assert stub_name in response.body
168 assert 'exist yet' not in response.body
169
170 def test_new_integration_page(self, app, backend_random):
171 repo_name = backend_random.repo.repo_name
172 url = '/{repo_name}/settings/integrations/new'.format(
173 repo_name=repo_name)
174
175 response = app.get(url)
176
177 assert response.status_code == 200
178
179 for integration_key in integration_type_registry:
180 nurl = ('/{repo_name}/settings/integrations'
181 '/{integration}/new').format(
182 repo_name=repo_name,
183 integration=integration_key)
184
185 assert nurl in response.body
186
187 @pytest.mark.parametrize(
188 'IntegrationType', integration_type_registry.values())
189 def test_get_create_integration_page(self, app, backend_random,
190 IntegrationType):
191 repo_name = backend_random.repo.repo_name
192 url = '/{repo_name}/settings/integrations/{integration_key}/new'.format(
193 repo_name=repo_name, integration_key=IntegrationType.key)
194
195 response = app.get(url)
196
197 assert response.status_code == 200
198 assert IntegrationType.display_name in response.body
199
200 def test_post_integration_page(self, app, backend_random, test_repo_group,
201 StubIntegrationType, csrf_token):
202 repo_name = backend_random.repo.repo_name
203 url = '/{repo_name}/settings/integrations/{integration_key}/new'.format(
204 repo_name=repo_name, integration_key=StubIntegrationType.key)
205
206 _post_integration_test_helper(app, url, csrf_token, admin_view=False,
207 repo=backend_random.repo, repo_group=test_repo_group)
208
209
210 def _post_integration_test_helper(app, url, csrf_token, repo, repo_group,
211 admin_view):
212 """
213 Posts form data to create integration at the url given then deletes it and
214 checks if the redirect url is correct.
215 """
216
217 app.post(url, params={}, status=403) # missing csrf check
218 response = app.post(url, params={'csrf_token': csrf_token})
219 assert response.status_code == 200
220 assert 'Errors exist' in response.body
221
222 scopes_destinations = [
223 ('global',
224 ADMIN_PREFIX + '/integrations'),
225 ('root_repos',
226 ADMIN_PREFIX + '/integrations'),
227 ('repo:%s' % repo.repo_name,
228 '/%s/settings/integrations' % repo.repo_name),
229 ('repogroup:%s' % repo_group.group_name,
230 '/%s/settings/integrations' % repo_group.group_name),
231 ]
232
233 for scope, destination in scopes_destinations:
234 if admin_view:
235 destination = ADMIN_PREFIX + '/integrations'
236
237 form_data = [
238 ('csrf_token', csrf_token),
239 ('__start__', 'options:mapping'),
240 ('name', 'test integration'),
241 ('scope', scope),
242 ('enabled', 'true'),
243 ('__end__', 'options:mapping'),
244 ('__start__', 'settings:mapping'),
245 ('test_int_field', '34'),
246 ('test_string_field', ''), # empty value on purpose as it's required
247 ('__end__', 'settings:mapping'),
248 ]
249 errors_response = app.post(url, form_data)
250 assert 'Errors exist' in errors_response.body
251
252 form_data[-2] = ('test_string_field', 'data!')
253 assert Session().query(Integration).count() == 0
254 created_response = app.post(url, form_data)
255 assert Session().query(Integration).count() == 1
256
257 delete_response = app.post(
258 created_response.location,
259 params={'csrf_token': csrf_token, 'delete': 'delete'})
260
261 assert Session().query(Integration).count() == 0
262 assert delete_response.location.endswith(destination)
@@ -0,0 +1,120 b''
1 # -*- coding: utf-8 -*-
2
3 # Copyright (C) 2016-2016 RhodeCode GmbH
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
21 import colander
22 import pytest
23
24 from rhodecode.model import validation_schema
25
26 from rhodecode.integrations import integration_type_registry
27 from rhodecode.integrations.types.base import IntegrationTypeBase
28 from rhodecode.model.validation_schema.schemas.integration_schema import (
29 make_integration_schema
30 )
31
32
33 @pytest.mark.usefixtures('app', 'autologin_user')
34 class TestIntegrationSchema(object):
35
36 def test_deserialize_integration_schema_perms(self, backend_random,
37 test_repo_group,
38 StubIntegrationType):
39
40 repo = backend_random.repo
41 repo_group = test_repo_group
42
43
44 empty_perms_dict = {
45 'global': [],
46 'repositories': {},
47 'repositories_groups': {},
48 }
49
50 perms_tests = {
51 ('repo:%s' % repo.repo_name, repo): [
52 ({}, False),
53 ({'global': ['hg.admin']}, True),
54 ({'global': []}, False),
55 ({'repositories': {repo.repo_name: 'repository.admin'}}, True),
56 ({'repositories': {repo.repo_name: 'repository.read'}}, False),
57 ({'repositories': {repo.repo_name: 'repository.write'}}, False),
58 ({'repositories': {repo.repo_name: 'repository.none'}}, False),
59 ],
60 ('repogroup:%s' % repo_group.group_name, repo_group): [
61 ({}, False),
62 ({'global': ['hg.admin']}, True),
63 ({'global': []}, False),
64 ({'repositories_groups':
65 {repo_group.group_name: 'group.admin'}}, True),
66 ({'repositories_groups':
67 {repo_group.group_name: 'group.read'}}, False),
68 ({'repositories_groups':
69 {repo_group.group_name: 'group.write'}}, False),
70 ({'repositories_groups':
71 {repo_group.group_name: 'group.none'}}, False),
72 ],
73 ('global', 'global'): [
74 ({}, False),
75 ({'global': ['hg.admin']}, True),
76 ({'global': []}, False),
77 ],
78 ('root_repos', 'root_repos'): [
79 ({}, False),
80 ({'global': ['hg.admin']}, True),
81 ({'global': []}, False),
82 ],
83 }
84
85 for (scope_input, scope_output), perms_allowed in perms_tests.items():
86 for perms_update, allowed in perms_allowed:
87 perms = dict(empty_perms_dict, **perms_update)
88
89 schema = make_integration_schema(
90 IntegrationType=StubIntegrationType
91 ).bind(permissions=perms)
92
93 input_data = {
94 'options': {
95 'enabled': 'true',
96 'scope': scope_input,
97 'name': 'test integration',
98 },
99 'settings': {
100 'test_string_field': 'stringy',
101 'test_int_field': '100',
102 }
103 }
104
105 if not allowed:
106 with pytest.raises(colander.Invalid):
107 schema.deserialize(input_data)
108 else:
109 assert schema.deserialize(input_data) == {
110 'options': {
111 'enabled': True,
112 'scope': scope_output,
113 'name': 'test integration',
114 },
115 'settings': {
116 'test_string_field': 'stringy',
117 'test_int_field': 100,
118 }
119 }
120
@@ -1,62 +1,62 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 """
21 """
22
22
23 RhodeCode, a web based repository management software
23 RhodeCode, a web based repository management software
24 versioning implementation: http://www.python.org/dev/peps/pep-0386/
24 versioning implementation: http://www.python.org/dev/peps/pep-0386/
25 """
25 """
26
26
27 import os
27 import os
28 import sys
28 import sys
29 import platform
29 import platform
30
30
31 VERSION = tuple(open(os.path.join(
31 VERSION = tuple(open(os.path.join(
32 os.path.dirname(__file__), 'VERSION')).read().split('.'))
32 os.path.dirname(__file__), 'VERSION')).read().split('.'))
33
33
34 BACKENDS = {
34 BACKENDS = {
35 'hg': 'Mercurial repository',
35 'hg': 'Mercurial repository',
36 'git': 'Git repository',
36 'git': 'Git repository',
37 'svn': 'Subversion repository',
37 'svn': 'Subversion repository',
38 }
38 }
39
39
40 CELERY_ENABLED = False
40 CELERY_ENABLED = False
41 CELERY_EAGER = False
41 CELERY_EAGER = False
42
42
43 # link to config for pylons
43 # link to config for pylons
44 CONFIG = {}
44 CONFIG = {}
45
45
46 # Populated with the settings dictionary from application init in
46 # Populated with the settings dictionary from application init in
47 # rhodecode.conf.environment.load_pyramid_environment
47 # rhodecode.conf.environment.load_pyramid_environment
48 PYRAMID_SETTINGS = {}
48 PYRAMID_SETTINGS = {}
49
49
50 # Linked module for extensions
50 # Linked module for extensions
51 EXTENSIONS = {}
51 EXTENSIONS = {}
52
52
53 __version__ = ('.'.join((str(each) for each in VERSION[:3])))
53 __version__ = ('.'.join((str(each) for each in VERSION[:3])))
54 __dbversion__ = 56 # defines current db version for migrations
54 __dbversion__ = 57 # defines current db version for migrations
55 __platform__ = platform.system()
55 __platform__ = platform.system()
56 __license__ = 'AGPLv3, and Commercial License'
56 __license__ = 'AGPLv3, and Commercial License'
57 __author__ = 'RhodeCode GmbH'
57 __author__ = 'RhodeCode GmbH'
58 __url__ = 'http://rhodecode.com'
58 __url__ = 'http://rhodecode.com'
59
59
60 is_windows = __platform__ in ['Windows']
60 is_windows = __platform__ in ['Windows']
61 is_unix = not is_windows
61 is_unix = not is_windows
62 is_test = False
62 is_test = False
@@ -1,1159 +1,1160 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 """
21 """
22 Routes configuration
22 Routes configuration
23
23
24 The more specific and detailed routes should be defined first so they
24 The more specific and detailed routes should be defined first so they
25 may take precedent over the more generic routes. For more information
25 may take precedent over the more generic routes. For more information
26 refer to the routes manual at http://routes.groovie.org/docs/
26 refer to the routes manual at http://routes.groovie.org/docs/
27
27
28 IMPORTANT: if you change any routing here, make sure to take a look at lib/base.py
28 IMPORTANT: if you change any routing here, make sure to take a look at lib/base.py
29 and _route_name variable which uses some of stored naming here to do redirects.
29 and _route_name variable which uses some of stored naming here to do redirects.
30 """
30 """
31 import os
31 import os
32 import re
32 import re
33 from routes import Mapper
33 from routes import Mapper
34
34
35 from rhodecode.config import routing_links
35 from rhodecode.config import routing_links
36
36
37 # prefix for non repository related links needs to be prefixed with `/`
37 # prefix for non repository related links needs to be prefixed with `/`
38 ADMIN_PREFIX = '/_admin'
38 ADMIN_PREFIX = '/_admin'
39 STATIC_FILE_PREFIX = '/_static'
39 STATIC_FILE_PREFIX = '/_static'
40
40
41 # Default requirements for URL parts
41 # Default requirements for URL parts
42 URL_NAME_REQUIREMENTS = {
42 URL_NAME_REQUIREMENTS = {
43 # group name can have a slash in them, but they must not end with a slash
43 # group name can have a slash in them, but they must not end with a slash
44 'group_name': r'.*?[^/]',
44 'group_name': r'.*?[^/]',
45 'repo_group_name': r'.*?[^/]',
45 # repo names can have a slash in them, but they must not end with a slash
46 # repo names can have a slash in them, but they must not end with a slash
46 'repo_name': r'.*?[^/]',
47 'repo_name': r'.*?[^/]',
47 # file path eats up everything at the end
48 # file path eats up everything at the end
48 'f_path': r'.*',
49 'f_path': r'.*',
49 # reference types
50 # reference types
50 'source_ref_type': '(branch|book|tag|rev|\%\(source_ref_type\)s)',
51 'source_ref_type': '(branch|book|tag|rev|\%\(source_ref_type\)s)',
51 'target_ref_type': '(branch|book|tag|rev|\%\(target_ref_type\)s)',
52 'target_ref_type': '(branch|book|tag|rev|\%\(target_ref_type\)s)',
52 }
53 }
53
54
54
55
55 def add_route_requirements(route_path, requirements):
56 def add_route_requirements(route_path, requirements):
56 """
57 """
57 Adds regex requirements to pyramid routes using a mapping dict
58 Adds regex requirements to pyramid routes using a mapping dict
58
59
59 >>> add_route_requirements('/{action}/{id}', {'id': r'\d+'})
60 >>> add_route_requirements('/{action}/{id}', {'id': r'\d+'})
60 '/{action}/{id:\d+}'
61 '/{action}/{id:\d+}'
61
62
62 """
63 """
63 for key, regex in requirements.items():
64 for key, regex in requirements.items():
64 route_path = route_path.replace('{%s}' % key, '{%s:%s}' % (key, regex))
65 route_path = route_path.replace('{%s}' % key, '{%s:%s}' % (key, regex))
65 return route_path
66 return route_path
66
67
67
68
68 class JSRoutesMapper(Mapper):
69 class JSRoutesMapper(Mapper):
69 """
70 """
70 Wrapper for routes.Mapper to make pyroutes compatible url definitions
71 Wrapper for routes.Mapper to make pyroutes compatible url definitions
71 """
72 """
72 _named_route_regex = re.compile(r'^[a-z-_0-9A-Z]+$')
73 _named_route_regex = re.compile(r'^[a-z-_0-9A-Z]+$')
73 _argument_prog = re.compile('\{(.*?)\}|:\((.*)\)')
74 _argument_prog = re.compile('\{(.*?)\}|:\((.*)\)')
74 def __init__(self, *args, **kw):
75 def __init__(self, *args, **kw):
75 super(JSRoutesMapper, self).__init__(*args, **kw)
76 super(JSRoutesMapper, self).__init__(*args, **kw)
76 self._jsroutes = []
77 self._jsroutes = []
77
78
78 def connect(self, *args, **kw):
79 def connect(self, *args, **kw):
79 """
80 """
80 Wrapper for connect to take an extra argument jsroute=True
81 Wrapper for connect to take an extra argument jsroute=True
81
82
82 :param jsroute: boolean, if True will add the route to the pyroutes list
83 :param jsroute: boolean, if True will add the route to the pyroutes list
83 """
84 """
84 if kw.pop('jsroute', False):
85 if kw.pop('jsroute', False):
85 if not self._named_route_regex.match(args[0]):
86 if not self._named_route_regex.match(args[0]):
86 raise Exception('only named routes can be added to pyroutes')
87 raise Exception('only named routes can be added to pyroutes')
87 self._jsroutes.append(args[0])
88 self._jsroutes.append(args[0])
88
89
89 super(JSRoutesMapper, self).connect(*args, **kw)
90 super(JSRoutesMapper, self).connect(*args, **kw)
90
91
91 def _extract_route_information(self, route):
92 def _extract_route_information(self, route):
92 """
93 """
93 Convert a route into tuple(name, path, args), eg:
94 Convert a route into tuple(name, path, args), eg:
94 ('user_profile', '/profile/%(username)s', ['username'])
95 ('user_profile', '/profile/%(username)s', ['username'])
95 """
96 """
96 routepath = route.routepath
97 routepath = route.routepath
97 def replace(matchobj):
98 def replace(matchobj):
98 if matchobj.group(1):
99 if matchobj.group(1):
99 return "%%(%s)s" % matchobj.group(1).split(':')[0]
100 return "%%(%s)s" % matchobj.group(1).split(':')[0]
100 else:
101 else:
101 return "%%(%s)s" % matchobj.group(2)
102 return "%%(%s)s" % matchobj.group(2)
102
103
103 routepath = self._argument_prog.sub(replace, routepath)
104 routepath = self._argument_prog.sub(replace, routepath)
104 return (
105 return (
105 route.name,
106 route.name,
106 routepath,
107 routepath,
107 [(arg[0].split(':')[0] if arg[0] != '' else arg[1])
108 [(arg[0].split(':')[0] if arg[0] != '' else arg[1])
108 for arg in self._argument_prog.findall(route.routepath)]
109 for arg in self._argument_prog.findall(route.routepath)]
109 )
110 )
110
111
111 def jsroutes(self):
112 def jsroutes(self):
112 """
113 """
113 Return a list of pyroutes.js compatible routes
114 Return a list of pyroutes.js compatible routes
114 """
115 """
115 for route_name in self._jsroutes:
116 for route_name in self._jsroutes:
116 yield self._extract_route_information(self._routenames[route_name])
117 yield self._extract_route_information(self._routenames[route_name])
117
118
118
119
119 def make_map(config):
120 def make_map(config):
120 """Create, configure and return the routes Mapper"""
121 """Create, configure and return the routes Mapper"""
121 rmap = JSRoutesMapper(directory=config['pylons.paths']['controllers'],
122 rmap = JSRoutesMapper(directory=config['pylons.paths']['controllers'],
122 always_scan=config['debug'])
123 always_scan=config['debug'])
123 rmap.minimization = False
124 rmap.minimization = False
124 rmap.explicit = False
125 rmap.explicit = False
125
126
126 from rhodecode.lib.utils2 import str2bool
127 from rhodecode.lib.utils2 import str2bool
127 from rhodecode.model import repo, repo_group
128 from rhodecode.model import repo, repo_group
128
129
129 def check_repo(environ, match_dict):
130 def check_repo(environ, match_dict):
130 """
131 """
131 check for valid repository for proper 404 handling
132 check for valid repository for proper 404 handling
132
133
133 :param environ:
134 :param environ:
134 :param match_dict:
135 :param match_dict:
135 """
136 """
136 repo_name = match_dict.get('repo_name')
137 repo_name = match_dict.get('repo_name')
137
138
138 if match_dict.get('f_path'):
139 if match_dict.get('f_path'):
139 # fix for multiple initial slashes that causes errors
140 # fix for multiple initial slashes that causes errors
140 match_dict['f_path'] = match_dict['f_path'].lstrip('/')
141 match_dict['f_path'] = match_dict['f_path'].lstrip('/')
141 repo_model = repo.RepoModel()
142 repo_model = repo.RepoModel()
142 by_name_match = repo_model.get_by_repo_name(repo_name)
143 by_name_match = repo_model.get_by_repo_name(repo_name)
143 # if we match quickly from database, short circuit the operation,
144 # if we match quickly from database, short circuit the operation,
144 # and validate repo based on the type.
145 # and validate repo based on the type.
145 if by_name_match:
146 if by_name_match:
146 return True
147 return True
147
148
148 by_id_match = repo_model.get_repo_by_id(repo_name)
149 by_id_match = repo_model.get_repo_by_id(repo_name)
149 if by_id_match:
150 if by_id_match:
150 repo_name = by_id_match.repo_name
151 repo_name = by_id_match.repo_name
151 match_dict['repo_name'] = repo_name
152 match_dict['repo_name'] = repo_name
152 return True
153 return True
153
154
154 return False
155 return False
155
156
156 def check_group(environ, match_dict):
157 def check_group(environ, match_dict):
157 """
158 """
158 check for valid repository group path for proper 404 handling
159 check for valid repository group path for proper 404 handling
159
160
160 :param environ:
161 :param environ:
161 :param match_dict:
162 :param match_dict:
162 """
163 """
163 repo_group_name = match_dict.get('group_name')
164 repo_group_name = match_dict.get('group_name')
164 repo_group_model = repo_group.RepoGroupModel()
165 repo_group_model = repo_group.RepoGroupModel()
165 by_name_match = repo_group_model.get_by_group_name(repo_group_name)
166 by_name_match = repo_group_model.get_by_group_name(repo_group_name)
166 if by_name_match:
167 if by_name_match:
167 return True
168 return True
168
169
169 return False
170 return False
170
171
171 def check_user_group(environ, match_dict):
172 def check_user_group(environ, match_dict):
172 """
173 """
173 check for valid user group for proper 404 handling
174 check for valid user group for proper 404 handling
174
175
175 :param environ:
176 :param environ:
176 :param match_dict:
177 :param match_dict:
177 """
178 """
178 return True
179 return True
179
180
180 def check_int(environ, match_dict):
181 def check_int(environ, match_dict):
181 return match_dict.get('id').isdigit()
182 return match_dict.get('id').isdigit()
182
183
183
184
184 #==========================================================================
185 #==========================================================================
185 # CUSTOM ROUTES HERE
186 # CUSTOM ROUTES HERE
186 #==========================================================================
187 #==========================================================================
187
188
188 # MAIN PAGE
189 # MAIN PAGE
189 rmap.connect('home', '/', controller='home', action='index', jsroute=True)
190 rmap.connect('home', '/', controller='home', action='index', jsroute=True)
190 rmap.connect('goto_switcher_data', '/_goto_data', controller='home',
191 rmap.connect('goto_switcher_data', '/_goto_data', controller='home',
191 action='goto_switcher_data')
192 action='goto_switcher_data')
192 rmap.connect('repo_list_data', '/_repos', controller='home',
193 rmap.connect('repo_list_data', '/_repos', controller='home',
193 action='repo_list_data')
194 action='repo_list_data')
194
195
195 rmap.connect('user_autocomplete_data', '/_users', controller='home',
196 rmap.connect('user_autocomplete_data', '/_users', controller='home',
196 action='user_autocomplete_data', jsroute=True)
197 action='user_autocomplete_data', jsroute=True)
197 rmap.connect('user_group_autocomplete_data', '/_user_groups', controller='home',
198 rmap.connect('user_group_autocomplete_data', '/_user_groups', controller='home',
198 action='user_group_autocomplete_data')
199 action='user_group_autocomplete_data')
199
200
200 rmap.connect(
201 rmap.connect(
201 'user_profile', '/_profiles/{username}', controller='users',
202 'user_profile', '/_profiles/{username}', controller='users',
202 action='user_profile')
203 action='user_profile')
203
204
204 # TODO: johbo: Static links, to be replaced by our redirection mechanism
205 # TODO: johbo: Static links, to be replaced by our redirection mechanism
205 rmap.connect('rst_help',
206 rmap.connect('rst_help',
206 'http://docutils.sourceforge.net/docs/user/rst/quickref.html',
207 'http://docutils.sourceforge.net/docs/user/rst/quickref.html',
207 _static=True)
208 _static=True)
208 rmap.connect('markdown_help',
209 rmap.connect('markdown_help',
209 'http://daringfireball.net/projects/markdown/syntax',
210 'http://daringfireball.net/projects/markdown/syntax',
210 _static=True)
211 _static=True)
211 rmap.connect('rhodecode_official', 'https://rhodecode.com', _static=True)
212 rmap.connect('rhodecode_official', 'https://rhodecode.com', _static=True)
212 rmap.connect('rhodecode_support', 'https://rhodecode.com/help/', _static=True)
213 rmap.connect('rhodecode_support', 'https://rhodecode.com/help/', _static=True)
213 rmap.connect('rhodecode_translations', 'https://rhodecode.com/translate/enterprise', _static=True)
214 rmap.connect('rhodecode_translations', 'https://rhodecode.com/translate/enterprise', _static=True)
214 # TODO: anderson - making this a static link since redirect won't play
215 # TODO: anderson - making this a static link since redirect won't play
215 # nice with POST requests
216 # nice with POST requests
216 rmap.connect('enterprise_license_convert_from_old',
217 rmap.connect('enterprise_license_convert_from_old',
217 'https://rhodecode.com/u/license-upgrade',
218 'https://rhodecode.com/u/license-upgrade',
218 _static=True)
219 _static=True)
219
220
220 routing_links.connect_redirection_links(rmap)
221 routing_links.connect_redirection_links(rmap)
221
222
222 rmap.connect('ping', '%s/ping' % (ADMIN_PREFIX,), controller='home', action='ping')
223 rmap.connect('ping', '%s/ping' % (ADMIN_PREFIX,), controller='home', action='ping')
223 rmap.connect('error_test', '%s/error_test' % (ADMIN_PREFIX,), controller='home', action='error_test')
224 rmap.connect('error_test', '%s/error_test' % (ADMIN_PREFIX,), controller='home', action='error_test')
224
225
225 # ADMIN REPOSITORY ROUTES
226 # ADMIN REPOSITORY ROUTES
226 with rmap.submapper(path_prefix=ADMIN_PREFIX,
227 with rmap.submapper(path_prefix=ADMIN_PREFIX,
227 controller='admin/repos') as m:
228 controller='admin/repos') as m:
228 m.connect('repos', '/repos',
229 m.connect('repos', '/repos',
229 action='create', conditions={'method': ['POST']})
230 action='create', conditions={'method': ['POST']})
230 m.connect('repos', '/repos',
231 m.connect('repos', '/repos',
231 action='index', conditions={'method': ['GET']})
232 action='index', conditions={'method': ['GET']})
232 m.connect('new_repo', '/create_repository', jsroute=True,
233 m.connect('new_repo', '/create_repository', jsroute=True,
233 action='create_repository', conditions={'method': ['GET']})
234 action='create_repository', conditions={'method': ['GET']})
234 m.connect('/repos/{repo_name}',
235 m.connect('/repos/{repo_name}',
235 action='update', conditions={'method': ['PUT'],
236 action='update', conditions={'method': ['PUT'],
236 'function': check_repo},
237 'function': check_repo},
237 requirements=URL_NAME_REQUIREMENTS)
238 requirements=URL_NAME_REQUIREMENTS)
238 m.connect('delete_repo', '/repos/{repo_name}',
239 m.connect('delete_repo', '/repos/{repo_name}',
239 action='delete', conditions={'method': ['DELETE']},
240 action='delete', conditions={'method': ['DELETE']},
240 requirements=URL_NAME_REQUIREMENTS)
241 requirements=URL_NAME_REQUIREMENTS)
241 m.connect('repo', '/repos/{repo_name}',
242 m.connect('repo', '/repos/{repo_name}',
242 action='show', conditions={'method': ['GET'],
243 action='show', conditions={'method': ['GET'],
243 'function': check_repo},
244 'function': check_repo},
244 requirements=URL_NAME_REQUIREMENTS)
245 requirements=URL_NAME_REQUIREMENTS)
245
246
246 # ADMIN REPOSITORY GROUPS ROUTES
247 # ADMIN REPOSITORY GROUPS ROUTES
247 with rmap.submapper(path_prefix=ADMIN_PREFIX,
248 with rmap.submapper(path_prefix=ADMIN_PREFIX,
248 controller='admin/repo_groups') as m:
249 controller='admin/repo_groups') as m:
249 m.connect('repo_groups', '/repo_groups',
250 m.connect('repo_groups', '/repo_groups',
250 action='create', conditions={'method': ['POST']})
251 action='create', conditions={'method': ['POST']})
251 m.connect('repo_groups', '/repo_groups',
252 m.connect('repo_groups', '/repo_groups',
252 action='index', conditions={'method': ['GET']})
253 action='index', conditions={'method': ['GET']})
253 m.connect('new_repo_group', '/repo_groups/new',
254 m.connect('new_repo_group', '/repo_groups/new',
254 action='new', conditions={'method': ['GET']})
255 action='new', conditions={'method': ['GET']})
255 m.connect('update_repo_group', '/repo_groups/{group_name}',
256 m.connect('update_repo_group', '/repo_groups/{group_name}',
256 action='update', conditions={'method': ['PUT'],
257 action='update', conditions={'method': ['PUT'],
257 'function': check_group},
258 'function': check_group},
258 requirements=URL_NAME_REQUIREMENTS)
259 requirements=URL_NAME_REQUIREMENTS)
259
260
260 # EXTRAS REPO GROUP ROUTES
261 # EXTRAS REPO GROUP ROUTES
261 m.connect('edit_repo_group', '/repo_groups/{group_name}/edit',
262 m.connect('edit_repo_group', '/repo_groups/{group_name}/edit',
262 action='edit',
263 action='edit',
263 conditions={'method': ['GET'], 'function': check_group},
264 conditions={'method': ['GET'], 'function': check_group},
264 requirements=URL_NAME_REQUIREMENTS)
265 requirements=URL_NAME_REQUIREMENTS)
265 m.connect('edit_repo_group', '/repo_groups/{group_name}/edit',
266 m.connect('edit_repo_group', '/repo_groups/{group_name}/edit',
266 action='edit',
267 action='edit',
267 conditions={'method': ['PUT'], 'function': check_group},
268 conditions={'method': ['PUT'], 'function': check_group},
268 requirements=URL_NAME_REQUIREMENTS)
269 requirements=URL_NAME_REQUIREMENTS)
269
270
270 m.connect('edit_repo_group_advanced', '/repo_groups/{group_name}/edit/advanced',
271 m.connect('edit_repo_group_advanced', '/repo_groups/{group_name}/edit/advanced',
271 action='edit_repo_group_advanced',
272 action='edit_repo_group_advanced',
272 conditions={'method': ['GET'], 'function': check_group},
273 conditions={'method': ['GET'], 'function': check_group},
273 requirements=URL_NAME_REQUIREMENTS)
274 requirements=URL_NAME_REQUIREMENTS)
274 m.connect('edit_repo_group_advanced', '/repo_groups/{group_name}/edit/advanced',
275 m.connect('edit_repo_group_advanced', '/repo_groups/{group_name}/edit/advanced',
275 action='edit_repo_group_advanced',
276 action='edit_repo_group_advanced',
276 conditions={'method': ['PUT'], 'function': check_group},
277 conditions={'method': ['PUT'], 'function': check_group},
277 requirements=URL_NAME_REQUIREMENTS)
278 requirements=URL_NAME_REQUIREMENTS)
278
279
279 m.connect('edit_repo_group_perms', '/repo_groups/{group_name}/edit/permissions',
280 m.connect('edit_repo_group_perms', '/repo_groups/{group_name}/edit/permissions',
280 action='edit_repo_group_perms',
281 action='edit_repo_group_perms',
281 conditions={'method': ['GET'], 'function': check_group},
282 conditions={'method': ['GET'], 'function': check_group},
282 requirements=URL_NAME_REQUIREMENTS)
283 requirements=URL_NAME_REQUIREMENTS)
283 m.connect('edit_repo_group_perms', '/repo_groups/{group_name}/edit/permissions',
284 m.connect('edit_repo_group_perms', '/repo_groups/{group_name}/edit/permissions',
284 action='update_perms',
285 action='update_perms',
285 conditions={'method': ['PUT'], 'function': check_group},
286 conditions={'method': ['PUT'], 'function': check_group},
286 requirements=URL_NAME_REQUIREMENTS)
287 requirements=URL_NAME_REQUIREMENTS)
287
288
288 m.connect('delete_repo_group', '/repo_groups/{group_name}',
289 m.connect('delete_repo_group', '/repo_groups/{group_name}',
289 action='delete', conditions={'method': ['DELETE'],
290 action='delete', conditions={'method': ['DELETE'],
290 'function': check_group},
291 'function': check_group},
291 requirements=URL_NAME_REQUIREMENTS)
292 requirements=URL_NAME_REQUIREMENTS)
292
293
293 # ADMIN USER ROUTES
294 # ADMIN USER ROUTES
294 with rmap.submapper(path_prefix=ADMIN_PREFIX,
295 with rmap.submapper(path_prefix=ADMIN_PREFIX,
295 controller='admin/users') as m:
296 controller='admin/users') as m:
296 m.connect('users', '/users',
297 m.connect('users', '/users',
297 action='create', conditions={'method': ['POST']})
298 action='create', conditions={'method': ['POST']})
298 m.connect('users', '/users',
299 m.connect('users', '/users',
299 action='index', conditions={'method': ['GET']})
300 action='index', conditions={'method': ['GET']})
300 m.connect('new_user', '/users/new',
301 m.connect('new_user', '/users/new',
301 action='new', conditions={'method': ['GET']})
302 action='new', conditions={'method': ['GET']})
302 m.connect('update_user', '/users/{user_id}',
303 m.connect('update_user', '/users/{user_id}',
303 action='update', conditions={'method': ['PUT']})
304 action='update', conditions={'method': ['PUT']})
304 m.connect('delete_user', '/users/{user_id}',
305 m.connect('delete_user', '/users/{user_id}',
305 action='delete', conditions={'method': ['DELETE']})
306 action='delete', conditions={'method': ['DELETE']})
306 m.connect('edit_user', '/users/{user_id}/edit',
307 m.connect('edit_user', '/users/{user_id}/edit',
307 action='edit', conditions={'method': ['GET']})
308 action='edit', conditions={'method': ['GET']})
308 m.connect('user', '/users/{user_id}',
309 m.connect('user', '/users/{user_id}',
309 action='show', conditions={'method': ['GET']})
310 action='show', conditions={'method': ['GET']})
310 m.connect('force_password_reset_user', '/users/{user_id}/password_reset',
311 m.connect('force_password_reset_user', '/users/{user_id}/password_reset',
311 action='reset_password', conditions={'method': ['POST']})
312 action='reset_password', conditions={'method': ['POST']})
312 m.connect('create_personal_repo_group', '/users/{user_id}/create_repo_group',
313 m.connect('create_personal_repo_group', '/users/{user_id}/create_repo_group',
313 action='create_personal_repo_group', conditions={'method': ['POST']})
314 action='create_personal_repo_group', conditions={'method': ['POST']})
314
315
315 # EXTRAS USER ROUTES
316 # EXTRAS USER ROUTES
316 m.connect('edit_user_advanced', '/users/{user_id}/edit/advanced',
317 m.connect('edit_user_advanced', '/users/{user_id}/edit/advanced',
317 action='edit_advanced', conditions={'method': ['GET']})
318 action='edit_advanced', conditions={'method': ['GET']})
318 m.connect('edit_user_advanced', '/users/{user_id}/edit/advanced',
319 m.connect('edit_user_advanced', '/users/{user_id}/edit/advanced',
319 action='update_advanced', conditions={'method': ['PUT']})
320 action='update_advanced', conditions={'method': ['PUT']})
320
321
321 m.connect('edit_user_auth_tokens', '/users/{user_id}/edit/auth_tokens',
322 m.connect('edit_user_auth_tokens', '/users/{user_id}/edit/auth_tokens',
322 action='edit_auth_tokens', conditions={'method': ['GET']})
323 action='edit_auth_tokens', conditions={'method': ['GET']})
323 m.connect('edit_user_auth_tokens', '/users/{user_id}/edit/auth_tokens',
324 m.connect('edit_user_auth_tokens', '/users/{user_id}/edit/auth_tokens',
324 action='add_auth_token', conditions={'method': ['PUT']})
325 action='add_auth_token', conditions={'method': ['PUT']})
325 m.connect('edit_user_auth_tokens', '/users/{user_id}/edit/auth_tokens',
326 m.connect('edit_user_auth_tokens', '/users/{user_id}/edit/auth_tokens',
326 action='delete_auth_token', conditions={'method': ['DELETE']})
327 action='delete_auth_token', conditions={'method': ['DELETE']})
327
328
328 m.connect('edit_user_global_perms', '/users/{user_id}/edit/global_permissions',
329 m.connect('edit_user_global_perms', '/users/{user_id}/edit/global_permissions',
329 action='edit_global_perms', conditions={'method': ['GET']})
330 action='edit_global_perms', conditions={'method': ['GET']})
330 m.connect('edit_user_global_perms', '/users/{user_id}/edit/global_permissions',
331 m.connect('edit_user_global_perms', '/users/{user_id}/edit/global_permissions',
331 action='update_global_perms', conditions={'method': ['PUT']})
332 action='update_global_perms', conditions={'method': ['PUT']})
332
333
333 m.connect('edit_user_perms_summary', '/users/{user_id}/edit/permissions_summary',
334 m.connect('edit_user_perms_summary', '/users/{user_id}/edit/permissions_summary',
334 action='edit_perms_summary', conditions={'method': ['GET']})
335 action='edit_perms_summary', conditions={'method': ['GET']})
335
336
336 m.connect('edit_user_emails', '/users/{user_id}/edit/emails',
337 m.connect('edit_user_emails', '/users/{user_id}/edit/emails',
337 action='edit_emails', conditions={'method': ['GET']})
338 action='edit_emails', conditions={'method': ['GET']})
338 m.connect('edit_user_emails', '/users/{user_id}/edit/emails',
339 m.connect('edit_user_emails', '/users/{user_id}/edit/emails',
339 action='add_email', conditions={'method': ['PUT']})
340 action='add_email', conditions={'method': ['PUT']})
340 m.connect('edit_user_emails', '/users/{user_id}/edit/emails',
341 m.connect('edit_user_emails', '/users/{user_id}/edit/emails',
341 action='delete_email', conditions={'method': ['DELETE']})
342 action='delete_email', conditions={'method': ['DELETE']})
342
343
343 m.connect('edit_user_ips', '/users/{user_id}/edit/ips',
344 m.connect('edit_user_ips', '/users/{user_id}/edit/ips',
344 action='edit_ips', conditions={'method': ['GET']})
345 action='edit_ips', conditions={'method': ['GET']})
345 m.connect('edit_user_ips', '/users/{user_id}/edit/ips',
346 m.connect('edit_user_ips', '/users/{user_id}/edit/ips',
346 action='add_ip', conditions={'method': ['PUT']})
347 action='add_ip', conditions={'method': ['PUT']})
347 m.connect('edit_user_ips', '/users/{user_id}/edit/ips',
348 m.connect('edit_user_ips', '/users/{user_id}/edit/ips',
348 action='delete_ip', conditions={'method': ['DELETE']})
349 action='delete_ip', conditions={'method': ['DELETE']})
349
350
350 # ADMIN USER GROUPS REST ROUTES
351 # ADMIN USER GROUPS REST ROUTES
351 with rmap.submapper(path_prefix=ADMIN_PREFIX,
352 with rmap.submapper(path_prefix=ADMIN_PREFIX,
352 controller='admin/user_groups') as m:
353 controller='admin/user_groups') as m:
353 m.connect('users_groups', '/user_groups',
354 m.connect('users_groups', '/user_groups',
354 action='create', conditions={'method': ['POST']})
355 action='create', conditions={'method': ['POST']})
355 m.connect('users_groups', '/user_groups',
356 m.connect('users_groups', '/user_groups',
356 action='index', conditions={'method': ['GET']})
357 action='index', conditions={'method': ['GET']})
357 m.connect('new_users_group', '/user_groups/new',
358 m.connect('new_users_group', '/user_groups/new',
358 action='new', conditions={'method': ['GET']})
359 action='new', conditions={'method': ['GET']})
359 m.connect('update_users_group', '/user_groups/{user_group_id}',
360 m.connect('update_users_group', '/user_groups/{user_group_id}',
360 action='update', conditions={'method': ['PUT']})
361 action='update', conditions={'method': ['PUT']})
361 m.connect('delete_users_group', '/user_groups/{user_group_id}',
362 m.connect('delete_users_group', '/user_groups/{user_group_id}',
362 action='delete', conditions={'method': ['DELETE']})
363 action='delete', conditions={'method': ['DELETE']})
363 m.connect('edit_users_group', '/user_groups/{user_group_id}/edit',
364 m.connect('edit_users_group', '/user_groups/{user_group_id}/edit',
364 action='edit', conditions={'method': ['GET']},
365 action='edit', conditions={'method': ['GET']},
365 function=check_user_group)
366 function=check_user_group)
366
367
367 # EXTRAS USER GROUP ROUTES
368 # EXTRAS USER GROUP ROUTES
368 m.connect('edit_user_group_global_perms',
369 m.connect('edit_user_group_global_perms',
369 '/user_groups/{user_group_id}/edit/global_permissions',
370 '/user_groups/{user_group_id}/edit/global_permissions',
370 action='edit_global_perms', conditions={'method': ['GET']})
371 action='edit_global_perms', conditions={'method': ['GET']})
371 m.connect('edit_user_group_global_perms',
372 m.connect('edit_user_group_global_perms',
372 '/user_groups/{user_group_id}/edit/global_permissions',
373 '/user_groups/{user_group_id}/edit/global_permissions',
373 action='update_global_perms', conditions={'method': ['PUT']})
374 action='update_global_perms', conditions={'method': ['PUT']})
374 m.connect('edit_user_group_perms_summary',
375 m.connect('edit_user_group_perms_summary',
375 '/user_groups/{user_group_id}/edit/permissions_summary',
376 '/user_groups/{user_group_id}/edit/permissions_summary',
376 action='edit_perms_summary', conditions={'method': ['GET']})
377 action='edit_perms_summary', conditions={'method': ['GET']})
377
378
378 m.connect('edit_user_group_perms',
379 m.connect('edit_user_group_perms',
379 '/user_groups/{user_group_id}/edit/permissions',
380 '/user_groups/{user_group_id}/edit/permissions',
380 action='edit_perms', conditions={'method': ['GET']})
381 action='edit_perms', conditions={'method': ['GET']})
381 m.connect('edit_user_group_perms',
382 m.connect('edit_user_group_perms',
382 '/user_groups/{user_group_id}/edit/permissions',
383 '/user_groups/{user_group_id}/edit/permissions',
383 action='update_perms', conditions={'method': ['PUT']})
384 action='update_perms', conditions={'method': ['PUT']})
384
385
385 m.connect('edit_user_group_advanced',
386 m.connect('edit_user_group_advanced',
386 '/user_groups/{user_group_id}/edit/advanced',
387 '/user_groups/{user_group_id}/edit/advanced',
387 action='edit_advanced', conditions={'method': ['GET']})
388 action='edit_advanced', conditions={'method': ['GET']})
388
389
389 m.connect('edit_user_group_members',
390 m.connect('edit_user_group_members',
390 '/user_groups/{user_group_id}/edit/members', jsroute=True,
391 '/user_groups/{user_group_id}/edit/members', jsroute=True,
391 action='edit_members', conditions={'method': ['GET']})
392 action='edit_members', conditions={'method': ['GET']})
392
393
393 # ADMIN PERMISSIONS ROUTES
394 # ADMIN PERMISSIONS ROUTES
394 with rmap.submapper(path_prefix=ADMIN_PREFIX,
395 with rmap.submapper(path_prefix=ADMIN_PREFIX,
395 controller='admin/permissions') as m:
396 controller='admin/permissions') as m:
396 m.connect('admin_permissions_application', '/permissions/application',
397 m.connect('admin_permissions_application', '/permissions/application',
397 action='permission_application_update', conditions={'method': ['POST']})
398 action='permission_application_update', conditions={'method': ['POST']})
398 m.connect('admin_permissions_application', '/permissions/application',
399 m.connect('admin_permissions_application', '/permissions/application',
399 action='permission_application', conditions={'method': ['GET']})
400 action='permission_application', conditions={'method': ['GET']})
400
401
401 m.connect('admin_permissions_global', '/permissions/global',
402 m.connect('admin_permissions_global', '/permissions/global',
402 action='permission_global_update', conditions={'method': ['POST']})
403 action='permission_global_update', conditions={'method': ['POST']})
403 m.connect('admin_permissions_global', '/permissions/global',
404 m.connect('admin_permissions_global', '/permissions/global',
404 action='permission_global', conditions={'method': ['GET']})
405 action='permission_global', conditions={'method': ['GET']})
405
406
406 m.connect('admin_permissions_object', '/permissions/object',
407 m.connect('admin_permissions_object', '/permissions/object',
407 action='permission_objects_update', conditions={'method': ['POST']})
408 action='permission_objects_update', conditions={'method': ['POST']})
408 m.connect('admin_permissions_object', '/permissions/object',
409 m.connect('admin_permissions_object', '/permissions/object',
409 action='permission_objects', conditions={'method': ['GET']})
410 action='permission_objects', conditions={'method': ['GET']})
410
411
411 m.connect('admin_permissions_ips', '/permissions/ips',
412 m.connect('admin_permissions_ips', '/permissions/ips',
412 action='permission_ips', conditions={'method': ['POST']})
413 action='permission_ips', conditions={'method': ['POST']})
413 m.connect('admin_permissions_ips', '/permissions/ips',
414 m.connect('admin_permissions_ips', '/permissions/ips',
414 action='permission_ips', conditions={'method': ['GET']})
415 action='permission_ips', conditions={'method': ['GET']})
415
416
416 m.connect('admin_permissions_overview', '/permissions/overview',
417 m.connect('admin_permissions_overview', '/permissions/overview',
417 action='permission_perms', conditions={'method': ['GET']})
418 action='permission_perms', conditions={'method': ['GET']})
418
419
419 # ADMIN DEFAULTS REST ROUTES
420 # ADMIN DEFAULTS REST ROUTES
420 with rmap.submapper(path_prefix=ADMIN_PREFIX,
421 with rmap.submapper(path_prefix=ADMIN_PREFIX,
421 controller='admin/defaults') as m:
422 controller='admin/defaults') as m:
422 m.connect('admin_defaults_repositories', '/defaults/repositories',
423 m.connect('admin_defaults_repositories', '/defaults/repositories',
423 action='update_repository_defaults', conditions={'method': ['POST']})
424 action='update_repository_defaults', conditions={'method': ['POST']})
424 m.connect('admin_defaults_repositories', '/defaults/repositories',
425 m.connect('admin_defaults_repositories', '/defaults/repositories',
425 action='index', conditions={'method': ['GET']})
426 action='index', conditions={'method': ['GET']})
426
427
427 # ADMIN DEBUG STYLE ROUTES
428 # ADMIN DEBUG STYLE ROUTES
428 if str2bool(config.get('debug_style')):
429 if str2bool(config.get('debug_style')):
429 with rmap.submapper(path_prefix=ADMIN_PREFIX + '/debug_style',
430 with rmap.submapper(path_prefix=ADMIN_PREFIX + '/debug_style',
430 controller='debug_style') as m:
431 controller='debug_style') as m:
431 m.connect('debug_style_home', '',
432 m.connect('debug_style_home', '',
432 action='index', conditions={'method': ['GET']})
433 action='index', conditions={'method': ['GET']})
433 m.connect('debug_style_template', '/t/{t_path}',
434 m.connect('debug_style_template', '/t/{t_path}',
434 action='template', conditions={'method': ['GET']})
435 action='template', conditions={'method': ['GET']})
435
436
436 # ADMIN SETTINGS ROUTES
437 # ADMIN SETTINGS ROUTES
437 with rmap.submapper(path_prefix=ADMIN_PREFIX,
438 with rmap.submapper(path_prefix=ADMIN_PREFIX,
438 controller='admin/settings') as m:
439 controller='admin/settings') as m:
439
440
440 # default
441 # default
441 m.connect('admin_settings', '/settings',
442 m.connect('admin_settings', '/settings',
442 action='settings_global_update',
443 action='settings_global_update',
443 conditions={'method': ['POST']})
444 conditions={'method': ['POST']})
444 m.connect('admin_settings', '/settings',
445 m.connect('admin_settings', '/settings',
445 action='settings_global', conditions={'method': ['GET']})
446 action='settings_global', conditions={'method': ['GET']})
446
447
447 m.connect('admin_settings_vcs', '/settings/vcs',
448 m.connect('admin_settings_vcs', '/settings/vcs',
448 action='settings_vcs_update',
449 action='settings_vcs_update',
449 conditions={'method': ['POST']})
450 conditions={'method': ['POST']})
450 m.connect('admin_settings_vcs', '/settings/vcs',
451 m.connect('admin_settings_vcs', '/settings/vcs',
451 action='settings_vcs',
452 action='settings_vcs',
452 conditions={'method': ['GET']})
453 conditions={'method': ['GET']})
453 m.connect('admin_settings_vcs', '/settings/vcs',
454 m.connect('admin_settings_vcs', '/settings/vcs',
454 action='delete_svn_pattern',
455 action='delete_svn_pattern',
455 conditions={'method': ['DELETE']})
456 conditions={'method': ['DELETE']})
456
457
457 m.connect('admin_settings_mapping', '/settings/mapping',
458 m.connect('admin_settings_mapping', '/settings/mapping',
458 action='settings_mapping_update',
459 action='settings_mapping_update',
459 conditions={'method': ['POST']})
460 conditions={'method': ['POST']})
460 m.connect('admin_settings_mapping', '/settings/mapping',
461 m.connect('admin_settings_mapping', '/settings/mapping',
461 action='settings_mapping', conditions={'method': ['GET']})
462 action='settings_mapping', conditions={'method': ['GET']})
462
463
463 m.connect('admin_settings_global', '/settings/global',
464 m.connect('admin_settings_global', '/settings/global',
464 action='settings_global_update',
465 action='settings_global_update',
465 conditions={'method': ['POST']})
466 conditions={'method': ['POST']})
466 m.connect('admin_settings_global', '/settings/global',
467 m.connect('admin_settings_global', '/settings/global',
467 action='settings_global', conditions={'method': ['GET']})
468 action='settings_global', conditions={'method': ['GET']})
468
469
469 m.connect('admin_settings_visual', '/settings/visual',
470 m.connect('admin_settings_visual', '/settings/visual',
470 action='settings_visual_update',
471 action='settings_visual_update',
471 conditions={'method': ['POST']})
472 conditions={'method': ['POST']})
472 m.connect('admin_settings_visual', '/settings/visual',
473 m.connect('admin_settings_visual', '/settings/visual',
473 action='settings_visual', conditions={'method': ['GET']})
474 action='settings_visual', conditions={'method': ['GET']})
474
475
475 m.connect('admin_settings_issuetracker',
476 m.connect('admin_settings_issuetracker',
476 '/settings/issue-tracker', action='settings_issuetracker',
477 '/settings/issue-tracker', action='settings_issuetracker',
477 conditions={'method': ['GET']})
478 conditions={'method': ['GET']})
478 m.connect('admin_settings_issuetracker_save',
479 m.connect('admin_settings_issuetracker_save',
479 '/settings/issue-tracker/save',
480 '/settings/issue-tracker/save',
480 action='settings_issuetracker_save',
481 action='settings_issuetracker_save',
481 conditions={'method': ['POST']})
482 conditions={'method': ['POST']})
482 m.connect('admin_issuetracker_test', '/settings/issue-tracker/test',
483 m.connect('admin_issuetracker_test', '/settings/issue-tracker/test',
483 action='settings_issuetracker_test',
484 action='settings_issuetracker_test',
484 conditions={'method': ['POST']})
485 conditions={'method': ['POST']})
485 m.connect('admin_issuetracker_delete',
486 m.connect('admin_issuetracker_delete',
486 '/settings/issue-tracker/delete',
487 '/settings/issue-tracker/delete',
487 action='settings_issuetracker_delete',
488 action='settings_issuetracker_delete',
488 conditions={'method': ['DELETE']})
489 conditions={'method': ['DELETE']})
489
490
490 m.connect('admin_settings_email', '/settings/email',
491 m.connect('admin_settings_email', '/settings/email',
491 action='settings_email_update',
492 action='settings_email_update',
492 conditions={'method': ['POST']})
493 conditions={'method': ['POST']})
493 m.connect('admin_settings_email', '/settings/email',
494 m.connect('admin_settings_email', '/settings/email',
494 action='settings_email', conditions={'method': ['GET']})
495 action='settings_email', conditions={'method': ['GET']})
495
496
496 m.connect('admin_settings_hooks', '/settings/hooks',
497 m.connect('admin_settings_hooks', '/settings/hooks',
497 action='settings_hooks_update',
498 action='settings_hooks_update',
498 conditions={'method': ['POST', 'DELETE']})
499 conditions={'method': ['POST', 'DELETE']})
499 m.connect('admin_settings_hooks', '/settings/hooks',
500 m.connect('admin_settings_hooks', '/settings/hooks',
500 action='settings_hooks', conditions={'method': ['GET']})
501 action='settings_hooks', conditions={'method': ['GET']})
501
502
502 m.connect('admin_settings_search', '/settings/search',
503 m.connect('admin_settings_search', '/settings/search',
503 action='settings_search', conditions={'method': ['GET']})
504 action='settings_search', conditions={'method': ['GET']})
504
505
505 m.connect('admin_settings_system', '/settings/system',
506 m.connect('admin_settings_system', '/settings/system',
506 action='settings_system', conditions={'method': ['GET']})
507 action='settings_system', conditions={'method': ['GET']})
507
508
508 m.connect('admin_settings_system_update', '/settings/system/updates',
509 m.connect('admin_settings_system_update', '/settings/system/updates',
509 action='settings_system_update', conditions={'method': ['GET']})
510 action='settings_system_update', conditions={'method': ['GET']})
510
511
511 m.connect('admin_settings_supervisor', '/settings/supervisor',
512 m.connect('admin_settings_supervisor', '/settings/supervisor',
512 action='settings_supervisor', conditions={'method': ['GET']})
513 action='settings_supervisor', conditions={'method': ['GET']})
513 m.connect('admin_settings_supervisor_log', '/settings/supervisor/{procid}/log',
514 m.connect('admin_settings_supervisor_log', '/settings/supervisor/{procid}/log',
514 action='settings_supervisor_log', conditions={'method': ['GET']})
515 action='settings_supervisor_log', conditions={'method': ['GET']})
515
516
516 m.connect('admin_settings_labs', '/settings/labs',
517 m.connect('admin_settings_labs', '/settings/labs',
517 action='settings_labs_update',
518 action='settings_labs_update',
518 conditions={'method': ['POST']})
519 conditions={'method': ['POST']})
519 m.connect('admin_settings_labs', '/settings/labs',
520 m.connect('admin_settings_labs', '/settings/labs',
520 action='settings_labs', conditions={'method': ['GET']})
521 action='settings_labs', conditions={'method': ['GET']})
521
522
522 # ADMIN MY ACCOUNT
523 # ADMIN MY ACCOUNT
523 with rmap.submapper(path_prefix=ADMIN_PREFIX,
524 with rmap.submapper(path_prefix=ADMIN_PREFIX,
524 controller='admin/my_account') as m:
525 controller='admin/my_account') as m:
525
526
526 m.connect('my_account', '/my_account',
527 m.connect('my_account', '/my_account',
527 action='my_account', conditions={'method': ['GET']})
528 action='my_account', conditions={'method': ['GET']})
528 m.connect('my_account_edit', '/my_account/edit',
529 m.connect('my_account_edit', '/my_account/edit',
529 action='my_account_edit', conditions={'method': ['GET']})
530 action='my_account_edit', conditions={'method': ['GET']})
530 m.connect('my_account', '/my_account',
531 m.connect('my_account', '/my_account',
531 action='my_account_update', conditions={'method': ['POST']})
532 action='my_account_update', conditions={'method': ['POST']})
532
533
533 m.connect('my_account_password', '/my_account/password',
534 m.connect('my_account_password', '/my_account/password',
534 action='my_account_password', conditions={'method': ['GET', 'POST']})
535 action='my_account_password', conditions={'method': ['GET', 'POST']})
535
536
536 m.connect('my_account_repos', '/my_account/repos',
537 m.connect('my_account_repos', '/my_account/repos',
537 action='my_account_repos', conditions={'method': ['GET']})
538 action='my_account_repos', conditions={'method': ['GET']})
538
539
539 m.connect('my_account_watched', '/my_account/watched',
540 m.connect('my_account_watched', '/my_account/watched',
540 action='my_account_watched', conditions={'method': ['GET']})
541 action='my_account_watched', conditions={'method': ['GET']})
541
542
542 m.connect('my_account_pullrequests', '/my_account/pull_requests',
543 m.connect('my_account_pullrequests', '/my_account/pull_requests',
543 action='my_account_pullrequests', conditions={'method': ['GET']})
544 action='my_account_pullrequests', conditions={'method': ['GET']})
544
545
545 m.connect('my_account_perms', '/my_account/perms',
546 m.connect('my_account_perms', '/my_account/perms',
546 action='my_account_perms', conditions={'method': ['GET']})
547 action='my_account_perms', conditions={'method': ['GET']})
547
548
548 m.connect('my_account_emails', '/my_account/emails',
549 m.connect('my_account_emails', '/my_account/emails',
549 action='my_account_emails', conditions={'method': ['GET']})
550 action='my_account_emails', conditions={'method': ['GET']})
550 m.connect('my_account_emails', '/my_account/emails',
551 m.connect('my_account_emails', '/my_account/emails',
551 action='my_account_emails_add', conditions={'method': ['POST']})
552 action='my_account_emails_add', conditions={'method': ['POST']})
552 m.connect('my_account_emails', '/my_account/emails',
553 m.connect('my_account_emails', '/my_account/emails',
553 action='my_account_emails_delete', conditions={'method': ['DELETE']})
554 action='my_account_emails_delete', conditions={'method': ['DELETE']})
554
555
555 m.connect('my_account_auth_tokens', '/my_account/auth_tokens',
556 m.connect('my_account_auth_tokens', '/my_account/auth_tokens',
556 action='my_account_auth_tokens', conditions={'method': ['GET']})
557 action='my_account_auth_tokens', conditions={'method': ['GET']})
557 m.connect('my_account_auth_tokens', '/my_account/auth_tokens',
558 m.connect('my_account_auth_tokens', '/my_account/auth_tokens',
558 action='my_account_auth_tokens_add', conditions={'method': ['POST']})
559 action='my_account_auth_tokens_add', conditions={'method': ['POST']})
559 m.connect('my_account_auth_tokens', '/my_account/auth_tokens',
560 m.connect('my_account_auth_tokens', '/my_account/auth_tokens',
560 action='my_account_auth_tokens_delete', conditions={'method': ['DELETE']})
561 action='my_account_auth_tokens_delete', conditions={'method': ['DELETE']})
561 m.connect('my_account_notifications', '/my_account/notifications',
562 m.connect('my_account_notifications', '/my_account/notifications',
562 action='my_notifications',
563 action='my_notifications',
563 conditions={'method': ['GET']})
564 conditions={'method': ['GET']})
564 m.connect('my_account_notifications_toggle_visibility',
565 m.connect('my_account_notifications_toggle_visibility',
565 '/my_account/toggle_visibility',
566 '/my_account/toggle_visibility',
566 action='my_notifications_toggle_visibility',
567 action='my_notifications_toggle_visibility',
567 conditions={'method': ['POST']})
568 conditions={'method': ['POST']})
568
569
569 # NOTIFICATION REST ROUTES
570 # NOTIFICATION REST ROUTES
570 with rmap.submapper(path_prefix=ADMIN_PREFIX,
571 with rmap.submapper(path_prefix=ADMIN_PREFIX,
571 controller='admin/notifications') as m:
572 controller='admin/notifications') as m:
572 m.connect('notifications', '/notifications',
573 m.connect('notifications', '/notifications',
573 action='index', conditions={'method': ['GET']})
574 action='index', conditions={'method': ['GET']})
574 m.connect('notifications_mark_all_read', '/notifications/mark_all_read',
575 m.connect('notifications_mark_all_read', '/notifications/mark_all_read',
575 action='mark_all_read', conditions={'method': ['POST']})
576 action='mark_all_read', conditions={'method': ['POST']})
576 m.connect('/notifications/{notification_id}',
577 m.connect('/notifications/{notification_id}',
577 action='update', conditions={'method': ['PUT']})
578 action='update', conditions={'method': ['PUT']})
578 m.connect('/notifications/{notification_id}',
579 m.connect('/notifications/{notification_id}',
579 action='delete', conditions={'method': ['DELETE']})
580 action='delete', conditions={'method': ['DELETE']})
580 m.connect('notification', '/notifications/{notification_id}',
581 m.connect('notification', '/notifications/{notification_id}',
581 action='show', conditions={'method': ['GET']})
582 action='show', conditions={'method': ['GET']})
582
583
583 # ADMIN GIST
584 # ADMIN GIST
584 with rmap.submapper(path_prefix=ADMIN_PREFIX,
585 with rmap.submapper(path_prefix=ADMIN_PREFIX,
585 controller='admin/gists') as m:
586 controller='admin/gists') as m:
586 m.connect('gists', '/gists',
587 m.connect('gists', '/gists',
587 action='create', conditions={'method': ['POST']})
588 action='create', conditions={'method': ['POST']})
588 m.connect('gists', '/gists', jsroute=True,
589 m.connect('gists', '/gists', jsroute=True,
589 action='index', conditions={'method': ['GET']})
590 action='index', conditions={'method': ['GET']})
590 m.connect('new_gist', '/gists/new', jsroute=True,
591 m.connect('new_gist', '/gists/new', jsroute=True,
591 action='new', conditions={'method': ['GET']})
592 action='new', conditions={'method': ['GET']})
592
593
593 m.connect('/gists/{gist_id}',
594 m.connect('/gists/{gist_id}',
594 action='delete', conditions={'method': ['DELETE']})
595 action='delete', conditions={'method': ['DELETE']})
595 m.connect('edit_gist', '/gists/{gist_id}/edit',
596 m.connect('edit_gist', '/gists/{gist_id}/edit',
596 action='edit_form', conditions={'method': ['GET']})
597 action='edit_form', conditions={'method': ['GET']})
597 m.connect('edit_gist', '/gists/{gist_id}/edit',
598 m.connect('edit_gist', '/gists/{gist_id}/edit',
598 action='edit', conditions={'method': ['POST']})
599 action='edit', conditions={'method': ['POST']})
599 m.connect(
600 m.connect(
600 'edit_gist_check_revision', '/gists/{gist_id}/edit/check_revision',
601 'edit_gist_check_revision', '/gists/{gist_id}/edit/check_revision',
601 action='check_revision', conditions={'method': ['GET']})
602 action='check_revision', conditions={'method': ['GET']})
602
603
603 m.connect('gist', '/gists/{gist_id}',
604 m.connect('gist', '/gists/{gist_id}',
604 action='show', conditions={'method': ['GET']})
605 action='show', conditions={'method': ['GET']})
605 m.connect('gist_rev', '/gists/{gist_id}/{revision}',
606 m.connect('gist_rev', '/gists/{gist_id}/{revision}',
606 revision='tip',
607 revision='tip',
607 action='show', conditions={'method': ['GET']})
608 action='show', conditions={'method': ['GET']})
608 m.connect('formatted_gist', '/gists/{gist_id}/{revision}/{format}',
609 m.connect('formatted_gist', '/gists/{gist_id}/{revision}/{format}',
609 revision='tip',
610 revision='tip',
610 action='show', conditions={'method': ['GET']})
611 action='show', conditions={'method': ['GET']})
611 m.connect('formatted_gist_file', '/gists/{gist_id}/{revision}/{format}/{f_path}',
612 m.connect('formatted_gist_file', '/gists/{gist_id}/{revision}/{format}/{f_path}',
612 revision='tip',
613 revision='tip',
613 action='show', conditions={'method': ['GET']},
614 action='show', conditions={'method': ['GET']},
614 requirements=URL_NAME_REQUIREMENTS)
615 requirements=URL_NAME_REQUIREMENTS)
615
616
616 # ADMIN MAIN PAGES
617 # ADMIN MAIN PAGES
617 with rmap.submapper(path_prefix=ADMIN_PREFIX,
618 with rmap.submapper(path_prefix=ADMIN_PREFIX,
618 controller='admin/admin') as m:
619 controller='admin/admin') as m:
619 m.connect('admin_home', '', action='index')
620 m.connect('admin_home', '', action='index')
620 m.connect('admin_add_repo', '/add_repo/{new_repo:[a-z0-9\. _-]*}',
621 m.connect('admin_add_repo', '/add_repo/{new_repo:[a-z0-9\. _-]*}',
621 action='add_repo')
622 action='add_repo')
622 m.connect(
623 m.connect(
623 'pull_requests_global_0', '/pull_requests/{pull_request_id:[0-9]+}',
624 'pull_requests_global_0', '/pull_requests/{pull_request_id:[0-9]+}',
624 action='pull_requests')
625 action='pull_requests')
625 m.connect(
626 m.connect(
626 'pull_requests_global', '/pull-requests/{pull_request_id:[0-9]+}',
627 'pull_requests_global', '/pull-requests/{pull_request_id:[0-9]+}',
627 action='pull_requests')
628 action='pull_requests')
628
629
629
630
630 # USER JOURNAL
631 # USER JOURNAL
631 rmap.connect('journal', '%s/journal' % (ADMIN_PREFIX,),
632 rmap.connect('journal', '%s/journal' % (ADMIN_PREFIX,),
632 controller='journal', action='index')
633 controller='journal', action='index')
633 rmap.connect('journal_rss', '%s/journal/rss' % (ADMIN_PREFIX,),
634 rmap.connect('journal_rss', '%s/journal/rss' % (ADMIN_PREFIX,),
634 controller='journal', action='journal_rss')
635 controller='journal', action='journal_rss')
635 rmap.connect('journal_atom', '%s/journal/atom' % (ADMIN_PREFIX,),
636 rmap.connect('journal_atom', '%s/journal/atom' % (ADMIN_PREFIX,),
636 controller='journal', action='journal_atom')
637 controller='journal', action='journal_atom')
637
638
638 rmap.connect('public_journal', '%s/public_journal' % (ADMIN_PREFIX,),
639 rmap.connect('public_journal', '%s/public_journal' % (ADMIN_PREFIX,),
639 controller='journal', action='public_journal')
640 controller='journal', action='public_journal')
640
641
641 rmap.connect('public_journal_rss', '%s/public_journal/rss' % (ADMIN_PREFIX,),
642 rmap.connect('public_journal_rss', '%s/public_journal/rss' % (ADMIN_PREFIX,),
642 controller='journal', action='public_journal_rss')
643 controller='journal', action='public_journal_rss')
643
644
644 rmap.connect('public_journal_rss_old', '%s/public_journal_rss' % (ADMIN_PREFIX,),
645 rmap.connect('public_journal_rss_old', '%s/public_journal_rss' % (ADMIN_PREFIX,),
645 controller='journal', action='public_journal_rss')
646 controller='journal', action='public_journal_rss')
646
647
647 rmap.connect('public_journal_atom',
648 rmap.connect('public_journal_atom',
648 '%s/public_journal/atom' % (ADMIN_PREFIX,), controller='journal',
649 '%s/public_journal/atom' % (ADMIN_PREFIX,), controller='journal',
649 action='public_journal_atom')
650 action='public_journal_atom')
650
651
651 rmap.connect('public_journal_atom_old',
652 rmap.connect('public_journal_atom_old',
652 '%s/public_journal_atom' % (ADMIN_PREFIX,), controller='journal',
653 '%s/public_journal_atom' % (ADMIN_PREFIX,), controller='journal',
653 action='public_journal_atom')
654 action='public_journal_atom')
654
655
655 rmap.connect('toggle_following', '%s/toggle_following' % (ADMIN_PREFIX,),
656 rmap.connect('toggle_following', '%s/toggle_following' % (ADMIN_PREFIX,),
656 controller='journal', action='toggle_following', jsroute=True,
657 controller='journal', action='toggle_following', jsroute=True,
657 conditions={'method': ['POST']})
658 conditions={'method': ['POST']})
658
659
659 # FULL TEXT SEARCH
660 # FULL TEXT SEARCH
660 rmap.connect('search', '%s/search' % (ADMIN_PREFIX,),
661 rmap.connect('search', '%s/search' % (ADMIN_PREFIX,),
661 controller='search')
662 controller='search')
662 rmap.connect('search_repo_home', '/{repo_name}/search',
663 rmap.connect('search_repo_home', '/{repo_name}/search',
663 controller='search',
664 controller='search',
664 action='index',
665 action='index',
665 conditions={'function': check_repo},
666 conditions={'function': check_repo},
666 requirements=URL_NAME_REQUIREMENTS)
667 requirements=URL_NAME_REQUIREMENTS)
667
668
668 # FEEDS
669 # FEEDS
669 rmap.connect('rss_feed_home', '/{repo_name}/feed/rss',
670 rmap.connect('rss_feed_home', '/{repo_name}/feed/rss',
670 controller='feed', action='rss',
671 controller='feed', action='rss',
671 conditions={'function': check_repo},
672 conditions={'function': check_repo},
672 requirements=URL_NAME_REQUIREMENTS)
673 requirements=URL_NAME_REQUIREMENTS)
673
674
674 rmap.connect('atom_feed_home', '/{repo_name}/feed/atom',
675 rmap.connect('atom_feed_home', '/{repo_name}/feed/atom',
675 controller='feed', action='atom',
676 controller='feed', action='atom',
676 conditions={'function': check_repo},
677 conditions={'function': check_repo},
677 requirements=URL_NAME_REQUIREMENTS)
678 requirements=URL_NAME_REQUIREMENTS)
678
679
679 #==========================================================================
680 #==========================================================================
680 # REPOSITORY ROUTES
681 # REPOSITORY ROUTES
681 #==========================================================================
682 #==========================================================================
682
683
683 rmap.connect('repo_creating_home', '/{repo_name}/repo_creating',
684 rmap.connect('repo_creating_home', '/{repo_name}/repo_creating',
684 controller='admin/repos', action='repo_creating',
685 controller='admin/repos', action='repo_creating',
685 requirements=URL_NAME_REQUIREMENTS)
686 requirements=URL_NAME_REQUIREMENTS)
686 rmap.connect('repo_check_home', '/{repo_name}/crepo_check',
687 rmap.connect('repo_check_home', '/{repo_name}/crepo_check',
687 controller='admin/repos', action='repo_check',
688 controller='admin/repos', action='repo_check',
688 requirements=URL_NAME_REQUIREMENTS)
689 requirements=URL_NAME_REQUIREMENTS)
689
690
690 rmap.connect('repo_stats', '/{repo_name}/repo_stats/{commit_id}',
691 rmap.connect('repo_stats', '/{repo_name}/repo_stats/{commit_id}',
691 controller='summary', action='repo_stats',
692 controller='summary', action='repo_stats',
692 conditions={'function': check_repo},
693 conditions={'function': check_repo},
693 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
694 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
694
695
695 rmap.connect('repo_refs_data', '/{repo_name}/refs-data',
696 rmap.connect('repo_refs_data', '/{repo_name}/refs-data',
696 controller='summary', action='repo_refs_data', jsroute=True,
697 controller='summary', action='repo_refs_data', jsroute=True,
697 requirements=URL_NAME_REQUIREMENTS)
698 requirements=URL_NAME_REQUIREMENTS)
698 rmap.connect('repo_refs_changelog_data', '/{repo_name}/refs-data-changelog',
699 rmap.connect('repo_refs_changelog_data', '/{repo_name}/refs-data-changelog',
699 controller='summary', action='repo_refs_changelog_data',
700 controller='summary', action='repo_refs_changelog_data',
700 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
701 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
701
702
702 rmap.connect('changeset_home', '/{repo_name}/changeset/{revision}',
703 rmap.connect('changeset_home', '/{repo_name}/changeset/{revision}',
703 controller='changeset', revision='tip', jsroute=True,
704 controller='changeset', revision='tip', jsroute=True,
704 conditions={'function': check_repo},
705 conditions={'function': check_repo},
705 requirements=URL_NAME_REQUIREMENTS)
706 requirements=URL_NAME_REQUIREMENTS)
706 rmap.connect('changeset_children', '/{repo_name}/changeset_children/{revision}',
707 rmap.connect('changeset_children', '/{repo_name}/changeset_children/{revision}',
707 controller='changeset', revision='tip', action='changeset_children',
708 controller='changeset', revision='tip', action='changeset_children',
708 conditions={'function': check_repo},
709 conditions={'function': check_repo},
709 requirements=URL_NAME_REQUIREMENTS)
710 requirements=URL_NAME_REQUIREMENTS)
710 rmap.connect('changeset_parents', '/{repo_name}/changeset_parents/{revision}',
711 rmap.connect('changeset_parents', '/{repo_name}/changeset_parents/{revision}',
711 controller='changeset', revision='tip', action='changeset_parents',
712 controller='changeset', revision='tip', action='changeset_parents',
712 conditions={'function': check_repo},
713 conditions={'function': check_repo},
713 requirements=URL_NAME_REQUIREMENTS)
714 requirements=URL_NAME_REQUIREMENTS)
714
715
715 # repo edit options
716 # repo edit options
716 rmap.connect('edit_repo', '/{repo_name}/settings', jsroute=True,
717 rmap.connect('edit_repo', '/{repo_name}/settings', jsroute=True,
717 controller='admin/repos', action='edit',
718 controller='admin/repos', action='edit',
718 conditions={'method': ['GET'], 'function': check_repo},
719 conditions={'method': ['GET'], 'function': check_repo},
719 requirements=URL_NAME_REQUIREMENTS)
720 requirements=URL_NAME_REQUIREMENTS)
720
721
721 rmap.connect('edit_repo_perms', '/{repo_name}/settings/permissions',
722 rmap.connect('edit_repo_perms', '/{repo_name}/settings/permissions',
722 jsroute=True,
723 jsroute=True,
723 controller='admin/repos', action='edit_permissions',
724 controller='admin/repos', action='edit_permissions',
724 conditions={'method': ['GET'], 'function': check_repo},
725 conditions={'method': ['GET'], 'function': check_repo},
725 requirements=URL_NAME_REQUIREMENTS)
726 requirements=URL_NAME_REQUIREMENTS)
726 rmap.connect('edit_repo_perms_update', '/{repo_name}/settings/permissions',
727 rmap.connect('edit_repo_perms_update', '/{repo_name}/settings/permissions',
727 controller='admin/repos', action='edit_permissions_update',
728 controller='admin/repos', action='edit_permissions_update',
728 conditions={'method': ['PUT'], 'function': check_repo},
729 conditions={'method': ['PUT'], 'function': check_repo},
729 requirements=URL_NAME_REQUIREMENTS)
730 requirements=URL_NAME_REQUIREMENTS)
730
731
731 rmap.connect('edit_repo_fields', '/{repo_name}/settings/fields',
732 rmap.connect('edit_repo_fields', '/{repo_name}/settings/fields',
732 controller='admin/repos', action='edit_fields',
733 controller='admin/repos', action='edit_fields',
733 conditions={'method': ['GET'], 'function': check_repo},
734 conditions={'method': ['GET'], 'function': check_repo},
734 requirements=URL_NAME_REQUIREMENTS)
735 requirements=URL_NAME_REQUIREMENTS)
735 rmap.connect('create_repo_fields', '/{repo_name}/settings/fields/new',
736 rmap.connect('create_repo_fields', '/{repo_name}/settings/fields/new',
736 controller='admin/repos', action='create_repo_field',
737 controller='admin/repos', action='create_repo_field',
737 conditions={'method': ['PUT'], 'function': check_repo},
738 conditions={'method': ['PUT'], 'function': check_repo},
738 requirements=URL_NAME_REQUIREMENTS)
739 requirements=URL_NAME_REQUIREMENTS)
739 rmap.connect('delete_repo_fields', '/{repo_name}/settings/fields/{field_id}',
740 rmap.connect('delete_repo_fields', '/{repo_name}/settings/fields/{field_id}',
740 controller='admin/repos', action='delete_repo_field',
741 controller='admin/repos', action='delete_repo_field',
741 conditions={'method': ['DELETE'], 'function': check_repo},
742 conditions={'method': ['DELETE'], 'function': check_repo},
742 requirements=URL_NAME_REQUIREMENTS)
743 requirements=URL_NAME_REQUIREMENTS)
743
744
744 rmap.connect('edit_repo_advanced', '/{repo_name}/settings/advanced',
745 rmap.connect('edit_repo_advanced', '/{repo_name}/settings/advanced',
745 controller='admin/repos', action='edit_advanced',
746 controller='admin/repos', action='edit_advanced',
746 conditions={'method': ['GET'], 'function': check_repo},
747 conditions={'method': ['GET'], 'function': check_repo},
747 requirements=URL_NAME_REQUIREMENTS)
748 requirements=URL_NAME_REQUIREMENTS)
748
749
749 rmap.connect('edit_repo_advanced_locking', '/{repo_name}/settings/advanced/locking',
750 rmap.connect('edit_repo_advanced_locking', '/{repo_name}/settings/advanced/locking',
750 controller='admin/repos', action='edit_advanced_locking',
751 controller='admin/repos', action='edit_advanced_locking',
751 conditions={'method': ['PUT'], 'function': check_repo},
752 conditions={'method': ['PUT'], 'function': check_repo},
752 requirements=URL_NAME_REQUIREMENTS)
753 requirements=URL_NAME_REQUIREMENTS)
753 rmap.connect('toggle_locking', '/{repo_name}/settings/advanced/locking_toggle',
754 rmap.connect('toggle_locking', '/{repo_name}/settings/advanced/locking_toggle',
754 controller='admin/repos', action='toggle_locking',
755 controller='admin/repos', action='toggle_locking',
755 conditions={'method': ['GET'], 'function': check_repo},
756 conditions={'method': ['GET'], 'function': check_repo},
756 requirements=URL_NAME_REQUIREMENTS)
757 requirements=URL_NAME_REQUIREMENTS)
757
758
758 rmap.connect('edit_repo_advanced_journal', '/{repo_name}/settings/advanced/journal',
759 rmap.connect('edit_repo_advanced_journal', '/{repo_name}/settings/advanced/journal',
759 controller='admin/repos', action='edit_advanced_journal',
760 controller='admin/repos', action='edit_advanced_journal',
760 conditions={'method': ['PUT'], 'function': check_repo},
761 conditions={'method': ['PUT'], 'function': check_repo},
761 requirements=URL_NAME_REQUIREMENTS)
762 requirements=URL_NAME_REQUIREMENTS)
762
763
763 rmap.connect('edit_repo_advanced_fork', '/{repo_name}/settings/advanced/fork',
764 rmap.connect('edit_repo_advanced_fork', '/{repo_name}/settings/advanced/fork',
764 controller='admin/repos', action='edit_advanced_fork',
765 controller='admin/repos', action='edit_advanced_fork',
765 conditions={'method': ['PUT'], 'function': check_repo},
766 conditions={'method': ['PUT'], 'function': check_repo},
766 requirements=URL_NAME_REQUIREMENTS)
767 requirements=URL_NAME_REQUIREMENTS)
767
768
768 rmap.connect('edit_repo_caches', '/{repo_name}/settings/caches',
769 rmap.connect('edit_repo_caches', '/{repo_name}/settings/caches',
769 controller='admin/repos', action='edit_caches_form',
770 controller='admin/repos', action='edit_caches_form',
770 conditions={'method': ['GET'], 'function': check_repo},
771 conditions={'method': ['GET'], 'function': check_repo},
771 requirements=URL_NAME_REQUIREMENTS)
772 requirements=URL_NAME_REQUIREMENTS)
772 rmap.connect('edit_repo_caches', '/{repo_name}/settings/caches',
773 rmap.connect('edit_repo_caches', '/{repo_name}/settings/caches',
773 controller='admin/repos', action='edit_caches',
774 controller='admin/repos', action='edit_caches',
774 conditions={'method': ['PUT'], 'function': check_repo},
775 conditions={'method': ['PUT'], 'function': check_repo},
775 requirements=URL_NAME_REQUIREMENTS)
776 requirements=URL_NAME_REQUIREMENTS)
776
777
777 rmap.connect('edit_repo_remote', '/{repo_name}/settings/remote',
778 rmap.connect('edit_repo_remote', '/{repo_name}/settings/remote',
778 controller='admin/repos', action='edit_remote_form',
779 controller='admin/repos', action='edit_remote_form',
779 conditions={'method': ['GET'], 'function': check_repo},
780 conditions={'method': ['GET'], 'function': check_repo},
780 requirements=URL_NAME_REQUIREMENTS)
781 requirements=URL_NAME_REQUIREMENTS)
781 rmap.connect('edit_repo_remote', '/{repo_name}/settings/remote',
782 rmap.connect('edit_repo_remote', '/{repo_name}/settings/remote',
782 controller='admin/repos', action='edit_remote',
783 controller='admin/repos', action='edit_remote',
783 conditions={'method': ['PUT'], 'function': check_repo},
784 conditions={'method': ['PUT'], 'function': check_repo},
784 requirements=URL_NAME_REQUIREMENTS)
785 requirements=URL_NAME_REQUIREMENTS)
785
786
786 rmap.connect('edit_repo_statistics', '/{repo_name}/settings/statistics',
787 rmap.connect('edit_repo_statistics', '/{repo_name}/settings/statistics',
787 controller='admin/repos', action='edit_statistics_form',
788 controller='admin/repos', action='edit_statistics_form',
788 conditions={'method': ['GET'], 'function': check_repo},
789 conditions={'method': ['GET'], 'function': check_repo},
789 requirements=URL_NAME_REQUIREMENTS)
790 requirements=URL_NAME_REQUIREMENTS)
790 rmap.connect('edit_repo_statistics', '/{repo_name}/settings/statistics',
791 rmap.connect('edit_repo_statistics', '/{repo_name}/settings/statistics',
791 controller='admin/repos', action='edit_statistics',
792 controller='admin/repos', action='edit_statistics',
792 conditions={'method': ['PUT'], 'function': check_repo},
793 conditions={'method': ['PUT'], 'function': check_repo},
793 requirements=URL_NAME_REQUIREMENTS)
794 requirements=URL_NAME_REQUIREMENTS)
794 rmap.connect('repo_settings_issuetracker',
795 rmap.connect('repo_settings_issuetracker',
795 '/{repo_name}/settings/issue-tracker',
796 '/{repo_name}/settings/issue-tracker',
796 controller='admin/repos', action='repo_issuetracker',
797 controller='admin/repos', action='repo_issuetracker',
797 conditions={'method': ['GET'], 'function': check_repo},
798 conditions={'method': ['GET'], 'function': check_repo},
798 requirements=URL_NAME_REQUIREMENTS)
799 requirements=URL_NAME_REQUIREMENTS)
799 rmap.connect('repo_issuetracker_test',
800 rmap.connect('repo_issuetracker_test',
800 '/{repo_name}/settings/issue-tracker/test',
801 '/{repo_name}/settings/issue-tracker/test',
801 controller='admin/repos', action='repo_issuetracker_test',
802 controller='admin/repos', action='repo_issuetracker_test',
802 conditions={'method': ['POST'], 'function': check_repo},
803 conditions={'method': ['POST'], 'function': check_repo},
803 requirements=URL_NAME_REQUIREMENTS)
804 requirements=URL_NAME_REQUIREMENTS)
804 rmap.connect('repo_issuetracker_delete',
805 rmap.connect('repo_issuetracker_delete',
805 '/{repo_name}/settings/issue-tracker/delete',
806 '/{repo_name}/settings/issue-tracker/delete',
806 controller='admin/repos', action='repo_issuetracker_delete',
807 controller='admin/repos', action='repo_issuetracker_delete',
807 conditions={'method': ['DELETE'], 'function': check_repo},
808 conditions={'method': ['DELETE'], 'function': check_repo},
808 requirements=URL_NAME_REQUIREMENTS)
809 requirements=URL_NAME_REQUIREMENTS)
809 rmap.connect('repo_issuetracker_save',
810 rmap.connect('repo_issuetracker_save',
810 '/{repo_name}/settings/issue-tracker/save',
811 '/{repo_name}/settings/issue-tracker/save',
811 controller='admin/repos', action='repo_issuetracker_save',
812 controller='admin/repos', action='repo_issuetracker_save',
812 conditions={'method': ['POST'], 'function': check_repo},
813 conditions={'method': ['POST'], 'function': check_repo},
813 requirements=URL_NAME_REQUIREMENTS)
814 requirements=URL_NAME_REQUIREMENTS)
814 rmap.connect('repo_vcs_settings', '/{repo_name}/settings/vcs',
815 rmap.connect('repo_vcs_settings', '/{repo_name}/settings/vcs',
815 controller='admin/repos', action='repo_settings_vcs_update',
816 controller='admin/repos', action='repo_settings_vcs_update',
816 conditions={'method': ['POST'], 'function': check_repo},
817 conditions={'method': ['POST'], 'function': check_repo},
817 requirements=URL_NAME_REQUIREMENTS)
818 requirements=URL_NAME_REQUIREMENTS)
818 rmap.connect('repo_vcs_settings', '/{repo_name}/settings/vcs',
819 rmap.connect('repo_vcs_settings', '/{repo_name}/settings/vcs',
819 controller='admin/repos', action='repo_settings_vcs',
820 controller='admin/repos', action='repo_settings_vcs',
820 conditions={'method': ['GET'], 'function': check_repo},
821 conditions={'method': ['GET'], 'function': check_repo},
821 requirements=URL_NAME_REQUIREMENTS)
822 requirements=URL_NAME_REQUIREMENTS)
822 rmap.connect('repo_vcs_settings', '/{repo_name}/settings/vcs',
823 rmap.connect('repo_vcs_settings', '/{repo_name}/settings/vcs',
823 controller='admin/repos', action='repo_delete_svn_pattern',
824 controller='admin/repos', action='repo_delete_svn_pattern',
824 conditions={'method': ['DELETE'], 'function': check_repo},
825 conditions={'method': ['DELETE'], 'function': check_repo},
825 requirements=URL_NAME_REQUIREMENTS)
826 requirements=URL_NAME_REQUIREMENTS)
826
827
827 # still working url for backward compat.
828 # still working url for backward compat.
828 rmap.connect('raw_changeset_home_depraced',
829 rmap.connect('raw_changeset_home_depraced',
829 '/{repo_name}/raw-changeset/{revision}',
830 '/{repo_name}/raw-changeset/{revision}',
830 controller='changeset', action='changeset_raw',
831 controller='changeset', action='changeset_raw',
831 revision='tip', conditions={'function': check_repo},
832 revision='tip', conditions={'function': check_repo},
832 requirements=URL_NAME_REQUIREMENTS)
833 requirements=URL_NAME_REQUIREMENTS)
833
834
834 # new URLs
835 # new URLs
835 rmap.connect('changeset_raw_home',
836 rmap.connect('changeset_raw_home',
836 '/{repo_name}/changeset-diff/{revision}',
837 '/{repo_name}/changeset-diff/{revision}',
837 controller='changeset', action='changeset_raw',
838 controller='changeset', action='changeset_raw',
838 revision='tip', conditions={'function': check_repo},
839 revision='tip', conditions={'function': check_repo},
839 requirements=URL_NAME_REQUIREMENTS)
840 requirements=URL_NAME_REQUIREMENTS)
840
841
841 rmap.connect('changeset_patch_home',
842 rmap.connect('changeset_patch_home',
842 '/{repo_name}/changeset-patch/{revision}',
843 '/{repo_name}/changeset-patch/{revision}',
843 controller='changeset', action='changeset_patch',
844 controller='changeset', action='changeset_patch',
844 revision='tip', conditions={'function': check_repo},
845 revision='tip', conditions={'function': check_repo},
845 requirements=URL_NAME_REQUIREMENTS)
846 requirements=URL_NAME_REQUIREMENTS)
846
847
847 rmap.connect('changeset_download_home',
848 rmap.connect('changeset_download_home',
848 '/{repo_name}/changeset-download/{revision}',
849 '/{repo_name}/changeset-download/{revision}',
849 controller='changeset', action='changeset_download',
850 controller='changeset', action='changeset_download',
850 revision='tip', conditions={'function': check_repo},
851 revision='tip', conditions={'function': check_repo},
851 requirements=URL_NAME_REQUIREMENTS)
852 requirements=URL_NAME_REQUIREMENTS)
852
853
853 rmap.connect('changeset_comment',
854 rmap.connect('changeset_comment',
854 '/{repo_name}/changeset/{revision}/comment', jsroute=True,
855 '/{repo_name}/changeset/{revision}/comment', jsroute=True,
855 controller='changeset', revision='tip', action='comment',
856 controller='changeset', revision='tip', action='comment',
856 conditions={'function': check_repo},
857 conditions={'function': check_repo},
857 requirements=URL_NAME_REQUIREMENTS)
858 requirements=URL_NAME_REQUIREMENTS)
858
859
859 rmap.connect('changeset_comment_preview',
860 rmap.connect('changeset_comment_preview',
860 '/{repo_name}/changeset/comment/preview', jsroute=True,
861 '/{repo_name}/changeset/comment/preview', jsroute=True,
861 controller='changeset', action='preview_comment',
862 controller='changeset', action='preview_comment',
862 conditions={'function': check_repo, 'method': ['POST']},
863 conditions={'function': check_repo, 'method': ['POST']},
863 requirements=URL_NAME_REQUIREMENTS)
864 requirements=URL_NAME_REQUIREMENTS)
864
865
865 rmap.connect('changeset_comment_delete',
866 rmap.connect('changeset_comment_delete',
866 '/{repo_name}/changeset/comment/{comment_id}/delete',
867 '/{repo_name}/changeset/comment/{comment_id}/delete',
867 controller='changeset', action='delete_comment',
868 controller='changeset', action='delete_comment',
868 conditions={'function': check_repo, 'method': ['DELETE']},
869 conditions={'function': check_repo, 'method': ['DELETE']},
869 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
870 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
870
871
871 rmap.connect('changeset_info', '/{repo_name}/changeset_info/{revision}',
872 rmap.connect('changeset_info', '/{repo_name}/changeset_info/{revision}',
872 controller='changeset', action='changeset_info',
873 controller='changeset', action='changeset_info',
873 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
874 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
874
875
875 rmap.connect('compare_home',
876 rmap.connect('compare_home',
876 '/{repo_name}/compare',
877 '/{repo_name}/compare',
877 controller='compare', action='index',
878 controller='compare', action='index',
878 conditions={'function': check_repo},
879 conditions={'function': check_repo},
879 requirements=URL_NAME_REQUIREMENTS)
880 requirements=URL_NAME_REQUIREMENTS)
880
881
881 rmap.connect('compare_url',
882 rmap.connect('compare_url',
882 '/{repo_name}/compare/{source_ref_type}@{source_ref:.*?}...{target_ref_type}@{target_ref:.*?}',
883 '/{repo_name}/compare/{source_ref_type}@{source_ref:.*?}...{target_ref_type}@{target_ref:.*?}',
883 controller='compare', action='compare',
884 controller='compare', action='compare',
884 conditions={'function': check_repo},
885 conditions={'function': check_repo},
885 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
886 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
886
887
887 rmap.connect('pullrequest_home',
888 rmap.connect('pullrequest_home',
888 '/{repo_name}/pull-request/new', controller='pullrequests',
889 '/{repo_name}/pull-request/new', controller='pullrequests',
889 action='index', conditions={'function': check_repo,
890 action='index', conditions={'function': check_repo,
890 'method': ['GET']},
891 'method': ['GET']},
891 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
892 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
892
893
893 rmap.connect('pullrequest',
894 rmap.connect('pullrequest',
894 '/{repo_name}/pull-request/new', controller='pullrequests',
895 '/{repo_name}/pull-request/new', controller='pullrequests',
895 action='create', conditions={'function': check_repo,
896 action='create', conditions={'function': check_repo,
896 'method': ['POST']},
897 'method': ['POST']},
897 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
898 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
898
899
899 rmap.connect('pullrequest_repo_refs',
900 rmap.connect('pullrequest_repo_refs',
900 '/{repo_name}/pull-request/refs/{target_repo_name:.*?[^/]}',
901 '/{repo_name}/pull-request/refs/{target_repo_name:.*?[^/]}',
901 controller='pullrequests',
902 controller='pullrequests',
902 action='get_repo_refs',
903 action='get_repo_refs',
903 conditions={'function': check_repo, 'method': ['GET']},
904 conditions={'function': check_repo, 'method': ['GET']},
904 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
905 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
905
906
906 rmap.connect('pullrequest_repo_destinations',
907 rmap.connect('pullrequest_repo_destinations',
907 '/{repo_name}/pull-request/repo-destinations',
908 '/{repo_name}/pull-request/repo-destinations',
908 controller='pullrequests',
909 controller='pullrequests',
909 action='get_repo_destinations',
910 action='get_repo_destinations',
910 conditions={'function': check_repo, 'method': ['GET']},
911 conditions={'function': check_repo, 'method': ['GET']},
911 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
912 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
912
913
913 rmap.connect('pullrequest_show',
914 rmap.connect('pullrequest_show',
914 '/{repo_name}/pull-request/{pull_request_id}',
915 '/{repo_name}/pull-request/{pull_request_id}',
915 controller='pullrequests',
916 controller='pullrequests',
916 action='show', conditions={'function': check_repo,
917 action='show', conditions={'function': check_repo,
917 'method': ['GET']},
918 'method': ['GET']},
918 requirements=URL_NAME_REQUIREMENTS)
919 requirements=URL_NAME_REQUIREMENTS)
919
920
920 rmap.connect('pullrequest_update',
921 rmap.connect('pullrequest_update',
921 '/{repo_name}/pull-request/{pull_request_id}',
922 '/{repo_name}/pull-request/{pull_request_id}',
922 controller='pullrequests',
923 controller='pullrequests',
923 action='update', conditions={'function': check_repo,
924 action='update', conditions={'function': check_repo,
924 'method': ['PUT']},
925 'method': ['PUT']},
925 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
926 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
926
927
927 rmap.connect('pullrequest_merge',
928 rmap.connect('pullrequest_merge',
928 '/{repo_name}/pull-request/{pull_request_id}',
929 '/{repo_name}/pull-request/{pull_request_id}',
929 controller='pullrequests',
930 controller='pullrequests',
930 action='merge', conditions={'function': check_repo,
931 action='merge', conditions={'function': check_repo,
931 'method': ['POST']},
932 'method': ['POST']},
932 requirements=URL_NAME_REQUIREMENTS)
933 requirements=URL_NAME_REQUIREMENTS)
933
934
934 rmap.connect('pullrequest_delete',
935 rmap.connect('pullrequest_delete',
935 '/{repo_name}/pull-request/{pull_request_id}',
936 '/{repo_name}/pull-request/{pull_request_id}',
936 controller='pullrequests',
937 controller='pullrequests',
937 action='delete', conditions={'function': check_repo,
938 action='delete', conditions={'function': check_repo,
938 'method': ['DELETE']},
939 'method': ['DELETE']},
939 requirements=URL_NAME_REQUIREMENTS)
940 requirements=URL_NAME_REQUIREMENTS)
940
941
941 rmap.connect('pullrequest_show_all',
942 rmap.connect('pullrequest_show_all',
942 '/{repo_name}/pull-request',
943 '/{repo_name}/pull-request',
943 controller='pullrequests',
944 controller='pullrequests',
944 action='show_all', conditions={'function': check_repo,
945 action='show_all', conditions={'function': check_repo,
945 'method': ['GET']},
946 'method': ['GET']},
946 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
947 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
947
948
948 rmap.connect('pullrequest_comment',
949 rmap.connect('pullrequest_comment',
949 '/{repo_name}/pull-request-comment/{pull_request_id}',
950 '/{repo_name}/pull-request-comment/{pull_request_id}',
950 controller='pullrequests',
951 controller='pullrequests',
951 action='comment', conditions={'function': check_repo,
952 action='comment', conditions={'function': check_repo,
952 'method': ['POST']},
953 'method': ['POST']},
953 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
954 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
954
955
955 rmap.connect('pullrequest_comment_delete',
956 rmap.connect('pullrequest_comment_delete',
956 '/{repo_name}/pull-request-comment/{comment_id}/delete',
957 '/{repo_name}/pull-request-comment/{comment_id}/delete',
957 controller='pullrequests', action='delete_comment',
958 controller='pullrequests', action='delete_comment',
958 conditions={'function': check_repo, 'method': ['DELETE']},
959 conditions={'function': check_repo, 'method': ['DELETE']},
959 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
960 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
960
961
961 rmap.connect('summary_home_explicit', '/{repo_name}/summary',
962 rmap.connect('summary_home_explicit', '/{repo_name}/summary',
962 controller='summary', conditions={'function': check_repo},
963 controller='summary', conditions={'function': check_repo},
963 requirements=URL_NAME_REQUIREMENTS)
964 requirements=URL_NAME_REQUIREMENTS)
964
965
965 rmap.connect('branches_home', '/{repo_name}/branches',
966 rmap.connect('branches_home', '/{repo_name}/branches',
966 controller='branches', conditions={'function': check_repo},
967 controller='branches', conditions={'function': check_repo},
967 requirements=URL_NAME_REQUIREMENTS)
968 requirements=URL_NAME_REQUIREMENTS)
968
969
969 rmap.connect('tags_home', '/{repo_name}/tags',
970 rmap.connect('tags_home', '/{repo_name}/tags',
970 controller='tags', conditions={'function': check_repo},
971 controller='tags', conditions={'function': check_repo},
971 requirements=URL_NAME_REQUIREMENTS)
972 requirements=URL_NAME_REQUIREMENTS)
972
973
973 rmap.connect('bookmarks_home', '/{repo_name}/bookmarks',
974 rmap.connect('bookmarks_home', '/{repo_name}/bookmarks',
974 controller='bookmarks', conditions={'function': check_repo},
975 controller='bookmarks', conditions={'function': check_repo},
975 requirements=URL_NAME_REQUIREMENTS)
976 requirements=URL_NAME_REQUIREMENTS)
976
977
977 rmap.connect('changelog_home', '/{repo_name}/changelog', jsroute=True,
978 rmap.connect('changelog_home', '/{repo_name}/changelog', jsroute=True,
978 controller='changelog', conditions={'function': check_repo},
979 controller='changelog', conditions={'function': check_repo},
979 requirements=URL_NAME_REQUIREMENTS)
980 requirements=URL_NAME_REQUIREMENTS)
980
981
981 rmap.connect('changelog_summary_home', '/{repo_name}/changelog_summary',
982 rmap.connect('changelog_summary_home', '/{repo_name}/changelog_summary',
982 controller='changelog', action='changelog_summary',
983 controller='changelog', action='changelog_summary',
983 conditions={'function': check_repo},
984 conditions={'function': check_repo},
984 requirements=URL_NAME_REQUIREMENTS)
985 requirements=URL_NAME_REQUIREMENTS)
985
986
986 rmap.connect('changelog_file_home',
987 rmap.connect('changelog_file_home',
987 '/{repo_name}/changelog/{revision}/{f_path}',
988 '/{repo_name}/changelog/{revision}/{f_path}',
988 controller='changelog', f_path=None,
989 controller='changelog', f_path=None,
989 conditions={'function': check_repo},
990 conditions={'function': check_repo},
990 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
991 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
991
992
992 rmap.connect('changelog_details', '/{repo_name}/changelog_details/{cs}',
993 rmap.connect('changelog_details', '/{repo_name}/changelog_details/{cs}',
993 controller='changelog', action='changelog_details',
994 controller='changelog', action='changelog_details',
994 conditions={'function': check_repo},
995 conditions={'function': check_repo},
995 requirements=URL_NAME_REQUIREMENTS)
996 requirements=URL_NAME_REQUIREMENTS)
996
997
997 rmap.connect('files_home', '/{repo_name}/files/{revision}/{f_path}',
998 rmap.connect('files_home', '/{repo_name}/files/{revision}/{f_path}',
998 controller='files', revision='tip', f_path='',
999 controller='files', revision='tip', f_path='',
999 conditions={'function': check_repo},
1000 conditions={'function': check_repo},
1000 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1001 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1001
1002
1002 rmap.connect('files_home_simple_catchrev',
1003 rmap.connect('files_home_simple_catchrev',
1003 '/{repo_name}/files/{revision}',
1004 '/{repo_name}/files/{revision}',
1004 controller='files', revision='tip', f_path='',
1005 controller='files', revision='tip', f_path='',
1005 conditions={'function': check_repo},
1006 conditions={'function': check_repo},
1006 requirements=URL_NAME_REQUIREMENTS)
1007 requirements=URL_NAME_REQUIREMENTS)
1007
1008
1008 rmap.connect('files_home_simple_catchall',
1009 rmap.connect('files_home_simple_catchall',
1009 '/{repo_name}/files',
1010 '/{repo_name}/files',
1010 controller='files', revision='tip', f_path='',
1011 controller='files', revision='tip', f_path='',
1011 conditions={'function': check_repo},
1012 conditions={'function': check_repo},
1012 requirements=URL_NAME_REQUIREMENTS)
1013 requirements=URL_NAME_REQUIREMENTS)
1013
1014
1014 rmap.connect('files_history_home',
1015 rmap.connect('files_history_home',
1015 '/{repo_name}/history/{revision}/{f_path}',
1016 '/{repo_name}/history/{revision}/{f_path}',
1016 controller='files', action='history', revision='tip', f_path='',
1017 controller='files', action='history', revision='tip', f_path='',
1017 conditions={'function': check_repo},
1018 conditions={'function': check_repo},
1018 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1019 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1019
1020
1020 rmap.connect('files_authors_home',
1021 rmap.connect('files_authors_home',
1021 '/{repo_name}/authors/{revision}/{f_path}',
1022 '/{repo_name}/authors/{revision}/{f_path}',
1022 controller='files', action='authors', revision='tip', f_path='',
1023 controller='files', action='authors', revision='tip', f_path='',
1023 conditions={'function': check_repo},
1024 conditions={'function': check_repo},
1024 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1025 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1025
1026
1026 rmap.connect('files_diff_home', '/{repo_name}/diff/{f_path}',
1027 rmap.connect('files_diff_home', '/{repo_name}/diff/{f_path}',
1027 controller='files', action='diff', f_path='',
1028 controller='files', action='diff', f_path='',
1028 conditions={'function': check_repo},
1029 conditions={'function': check_repo},
1029 requirements=URL_NAME_REQUIREMENTS)
1030 requirements=URL_NAME_REQUIREMENTS)
1030
1031
1031 rmap.connect('files_diff_2way_home',
1032 rmap.connect('files_diff_2way_home',
1032 '/{repo_name}/diff-2way/{f_path}',
1033 '/{repo_name}/diff-2way/{f_path}',
1033 controller='files', action='diff_2way', f_path='',
1034 controller='files', action='diff_2way', f_path='',
1034 conditions={'function': check_repo},
1035 conditions={'function': check_repo},
1035 requirements=URL_NAME_REQUIREMENTS)
1036 requirements=URL_NAME_REQUIREMENTS)
1036
1037
1037 rmap.connect('files_rawfile_home',
1038 rmap.connect('files_rawfile_home',
1038 '/{repo_name}/rawfile/{revision}/{f_path}',
1039 '/{repo_name}/rawfile/{revision}/{f_path}',
1039 controller='files', action='rawfile', revision='tip',
1040 controller='files', action='rawfile', revision='tip',
1040 f_path='', conditions={'function': check_repo},
1041 f_path='', conditions={'function': check_repo},
1041 requirements=URL_NAME_REQUIREMENTS)
1042 requirements=URL_NAME_REQUIREMENTS)
1042
1043
1043 rmap.connect('files_raw_home',
1044 rmap.connect('files_raw_home',
1044 '/{repo_name}/raw/{revision}/{f_path}',
1045 '/{repo_name}/raw/{revision}/{f_path}',
1045 controller='files', action='raw', revision='tip', f_path='',
1046 controller='files', action='raw', revision='tip', f_path='',
1046 conditions={'function': check_repo},
1047 conditions={'function': check_repo},
1047 requirements=URL_NAME_REQUIREMENTS)
1048 requirements=URL_NAME_REQUIREMENTS)
1048
1049
1049 rmap.connect('files_render_home',
1050 rmap.connect('files_render_home',
1050 '/{repo_name}/render/{revision}/{f_path}',
1051 '/{repo_name}/render/{revision}/{f_path}',
1051 controller='files', action='index', revision='tip', f_path='',
1052 controller='files', action='index', revision='tip', f_path='',
1052 rendered=True, conditions={'function': check_repo},
1053 rendered=True, conditions={'function': check_repo},
1053 requirements=URL_NAME_REQUIREMENTS)
1054 requirements=URL_NAME_REQUIREMENTS)
1054
1055
1055 rmap.connect('files_annotate_home',
1056 rmap.connect('files_annotate_home',
1056 '/{repo_name}/annotate/{revision}/{f_path}',
1057 '/{repo_name}/annotate/{revision}/{f_path}',
1057 controller='files', action='index', revision='tip',
1058 controller='files', action='index', revision='tip',
1058 f_path='', annotate=True, conditions={'function': check_repo},
1059 f_path='', annotate=True, conditions={'function': check_repo},
1059 requirements=URL_NAME_REQUIREMENTS)
1060 requirements=URL_NAME_REQUIREMENTS)
1060
1061
1061 rmap.connect('files_edit',
1062 rmap.connect('files_edit',
1062 '/{repo_name}/edit/{revision}/{f_path}',
1063 '/{repo_name}/edit/{revision}/{f_path}',
1063 controller='files', action='edit', revision='tip',
1064 controller='files', action='edit', revision='tip',
1064 f_path='',
1065 f_path='',
1065 conditions={'function': check_repo, 'method': ['POST']},
1066 conditions={'function': check_repo, 'method': ['POST']},
1066 requirements=URL_NAME_REQUIREMENTS)
1067 requirements=URL_NAME_REQUIREMENTS)
1067
1068
1068 rmap.connect('files_edit_home',
1069 rmap.connect('files_edit_home',
1069 '/{repo_name}/edit/{revision}/{f_path}',
1070 '/{repo_name}/edit/{revision}/{f_path}',
1070 controller='files', action='edit_home', revision='tip',
1071 controller='files', action='edit_home', revision='tip',
1071 f_path='', conditions={'function': check_repo},
1072 f_path='', conditions={'function': check_repo},
1072 requirements=URL_NAME_REQUIREMENTS)
1073 requirements=URL_NAME_REQUIREMENTS)
1073
1074
1074 rmap.connect('files_add',
1075 rmap.connect('files_add',
1075 '/{repo_name}/add/{revision}/{f_path}',
1076 '/{repo_name}/add/{revision}/{f_path}',
1076 controller='files', action='add', revision='tip',
1077 controller='files', action='add', revision='tip',
1077 f_path='',
1078 f_path='',
1078 conditions={'function': check_repo, 'method': ['POST']},
1079 conditions={'function': check_repo, 'method': ['POST']},
1079 requirements=URL_NAME_REQUIREMENTS)
1080 requirements=URL_NAME_REQUIREMENTS)
1080
1081
1081 rmap.connect('files_add_home',
1082 rmap.connect('files_add_home',
1082 '/{repo_name}/add/{revision}/{f_path}',
1083 '/{repo_name}/add/{revision}/{f_path}',
1083 controller='files', action='add_home', revision='tip',
1084 controller='files', action='add_home', revision='tip',
1084 f_path='', conditions={'function': check_repo},
1085 f_path='', conditions={'function': check_repo},
1085 requirements=URL_NAME_REQUIREMENTS)
1086 requirements=URL_NAME_REQUIREMENTS)
1086
1087
1087 rmap.connect('files_delete',
1088 rmap.connect('files_delete',
1088 '/{repo_name}/delete/{revision}/{f_path}',
1089 '/{repo_name}/delete/{revision}/{f_path}',
1089 controller='files', action='delete', revision='tip',
1090 controller='files', action='delete', revision='tip',
1090 f_path='',
1091 f_path='',
1091 conditions={'function': check_repo, 'method': ['POST']},
1092 conditions={'function': check_repo, 'method': ['POST']},
1092 requirements=URL_NAME_REQUIREMENTS)
1093 requirements=URL_NAME_REQUIREMENTS)
1093
1094
1094 rmap.connect('files_delete_home',
1095 rmap.connect('files_delete_home',
1095 '/{repo_name}/delete/{revision}/{f_path}',
1096 '/{repo_name}/delete/{revision}/{f_path}',
1096 controller='files', action='delete_home', revision='tip',
1097 controller='files', action='delete_home', revision='tip',
1097 f_path='', conditions={'function': check_repo},
1098 f_path='', conditions={'function': check_repo},
1098 requirements=URL_NAME_REQUIREMENTS)
1099 requirements=URL_NAME_REQUIREMENTS)
1099
1100
1100 rmap.connect('files_archive_home', '/{repo_name}/archive/{fname}',
1101 rmap.connect('files_archive_home', '/{repo_name}/archive/{fname}',
1101 controller='files', action='archivefile',
1102 controller='files', action='archivefile',
1102 conditions={'function': check_repo},
1103 conditions={'function': check_repo},
1103 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1104 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1104
1105
1105 rmap.connect('files_nodelist_home',
1106 rmap.connect('files_nodelist_home',
1106 '/{repo_name}/nodelist/{revision}/{f_path}',
1107 '/{repo_name}/nodelist/{revision}/{f_path}',
1107 controller='files', action='nodelist',
1108 controller='files', action='nodelist',
1108 conditions={'function': check_repo},
1109 conditions={'function': check_repo},
1109 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1110 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1110
1111
1111 rmap.connect('files_nodetree_full',
1112 rmap.connect('files_nodetree_full',
1112 '/{repo_name}/nodetree_full/{commit_id}/{f_path}',
1113 '/{repo_name}/nodetree_full/{commit_id}/{f_path}',
1113 controller='files', action='nodetree_full',
1114 controller='files', action='nodetree_full',
1114 conditions={'function': check_repo},
1115 conditions={'function': check_repo},
1115 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1116 requirements=URL_NAME_REQUIREMENTS, jsroute=True)
1116
1117
1117 rmap.connect('repo_fork_create_home', '/{repo_name}/fork',
1118 rmap.connect('repo_fork_create_home', '/{repo_name}/fork',
1118 controller='forks', action='fork_create',
1119 controller='forks', action='fork_create',
1119 conditions={'function': check_repo, 'method': ['POST']},
1120 conditions={'function': check_repo, 'method': ['POST']},
1120 requirements=URL_NAME_REQUIREMENTS)
1121 requirements=URL_NAME_REQUIREMENTS)
1121
1122
1122 rmap.connect('repo_fork_home', '/{repo_name}/fork',
1123 rmap.connect('repo_fork_home', '/{repo_name}/fork',
1123 controller='forks', action='fork',
1124 controller='forks', action='fork',
1124 conditions={'function': check_repo},
1125 conditions={'function': check_repo},
1125 requirements=URL_NAME_REQUIREMENTS)
1126 requirements=URL_NAME_REQUIREMENTS)
1126
1127
1127 rmap.connect('repo_forks_home', '/{repo_name}/forks',
1128 rmap.connect('repo_forks_home', '/{repo_name}/forks',
1128 controller='forks', action='forks',
1129 controller='forks', action='forks',
1129 conditions={'function': check_repo},
1130 conditions={'function': check_repo},
1130 requirements=URL_NAME_REQUIREMENTS)
1131 requirements=URL_NAME_REQUIREMENTS)
1131
1132
1132 rmap.connect('repo_followers_home', '/{repo_name}/followers',
1133 rmap.connect('repo_followers_home', '/{repo_name}/followers',
1133 controller='followers', action='followers',
1134 controller='followers', action='followers',
1134 conditions={'function': check_repo},
1135 conditions={'function': check_repo},
1135 requirements=URL_NAME_REQUIREMENTS)
1136 requirements=URL_NAME_REQUIREMENTS)
1136
1137
1137 # must be here for proper group/repo catching pattern
1138 # must be here for proper group/repo catching pattern
1138 _connect_with_slash(
1139 _connect_with_slash(
1139 rmap, 'repo_group_home', '/{group_name}',
1140 rmap, 'repo_group_home', '/{group_name}',
1140 controller='home', action='index_repo_group',
1141 controller='home', action='index_repo_group',
1141 conditions={'function': check_group},
1142 conditions={'function': check_group},
1142 requirements=URL_NAME_REQUIREMENTS)
1143 requirements=URL_NAME_REQUIREMENTS)
1143
1144
1144 # catch all, at the end
1145 # catch all, at the end
1145 _connect_with_slash(
1146 _connect_with_slash(
1146 rmap, 'summary_home', '/{repo_name}', jsroute=True,
1147 rmap, 'summary_home', '/{repo_name}', jsroute=True,
1147 controller='summary', action='index',
1148 controller='summary', action='index',
1148 conditions={'function': check_repo},
1149 conditions={'function': check_repo},
1149 requirements=URL_NAME_REQUIREMENTS)
1150 requirements=URL_NAME_REQUIREMENTS)
1150
1151
1151 return rmap
1152 return rmap
1152
1153
1153
1154
1154 def _connect_with_slash(mapper, name, path, *args, **kwargs):
1155 def _connect_with_slash(mapper, name, path, *args, **kwargs):
1155 """
1156 """
1156 Connect a route with an optional trailing slash in `path`.
1157 Connect a route with an optional trailing slash in `path`.
1157 """
1158 """
1158 mapper.connect(name + '_slash', path + '/', *args, **kwargs)
1159 mapper.connect(name + '_slash', path + '/', *args, **kwargs)
1159 mapper.connect(name, path, *args, **kwargs)
1160 mapper.connect(name, path, *args, **kwargs)
@@ -1,200 +1,238 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import logging
21 import logging
22
22
23 from rhodecode.model.db import Repository, Integration, RepoGroup
23 from rhodecode.model.db import Repository, Integration, RepoGroup
24 from rhodecode.config.routing import (
24 from rhodecode.config.routing import (
25 ADMIN_PREFIX, add_route_requirements, URL_NAME_REQUIREMENTS)
25 ADMIN_PREFIX, add_route_requirements, URL_NAME_REQUIREMENTS)
26 from rhodecode.integrations import integration_type_registry
26 from rhodecode.integrations import integration_type_registry
27
27
28 log = logging.getLogger(__name__)
28 log = logging.getLogger(__name__)
29
29
30
30
31 def includeme(config):
31 def includeme(config):
32
32
33 # global integrations
33 # global integrations
34
35 config.add_route('global_integrations_new',
36 ADMIN_PREFIX + '/integrations/new')
37 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
38 attr='new_integration',
39 renderer='rhodecode:templates/admin/integrations/new.html',
40 request_method='GET',
41 route_name='global_integrations_new')
42
34 config.add_route('global_integrations_home',
43 config.add_route('global_integrations_home',
35 ADMIN_PREFIX + '/integrations')
44 ADMIN_PREFIX + '/integrations')
36 config.add_route('global_integrations_list',
45 config.add_route('global_integrations_list',
37 ADMIN_PREFIX + '/integrations/{integration}')
46 ADMIN_PREFIX + '/integrations/{integration}')
38 for route_name in ['global_integrations_home', 'global_integrations_list']:
47 for route_name in ['global_integrations_home', 'global_integrations_list']:
39 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
48 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
40 attr='index',
49 attr='index',
41 renderer='rhodecode:templates/admin/integrations/list.html',
50 renderer='rhodecode:templates/admin/integrations/list.html',
42 request_method='GET',
51 request_method='GET',
43 route_name=route_name)
52 route_name=route_name)
44
53
45 config.add_route('global_integrations_create',
54 config.add_route('global_integrations_create',
46 ADMIN_PREFIX + '/integrations/{integration}/new',
55 ADMIN_PREFIX + '/integrations/{integration}/new',
47 custom_predicates=(valid_integration,))
56 custom_predicates=(valid_integration,))
48 config.add_route('global_integrations_edit',
57 config.add_route('global_integrations_edit',
49 ADMIN_PREFIX + '/integrations/{integration}/{integration_id}',
58 ADMIN_PREFIX + '/integrations/{integration}/{integration_id}',
50 custom_predicates=(valid_integration,))
59 custom_predicates=(valid_integration,))
60
61
51 for route_name in ['global_integrations_create', 'global_integrations_edit']:
62 for route_name in ['global_integrations_create', 'global_integrations_edit']:
52 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
63 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
53 attr='settings_get',
64 attr='settings_get',
54 renderer='rhodecode:templates/admin/integrations/edit.html',
65 renderer='rhodecode:templates/admin/integrations/form.html',
55 request_method='GET',
66 request_method='GET',
56 route_name=route_name)
67 route_name=route_name)
57 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
68 config.add_view('rhodecode.integrations.views.GlobalIntegrationsView',
58 attr='settings_post',
69 attr='settings_post',
59 renderer='rhodecode:templates/admin/integrations/edit.html',
70 renderer='rhodecode:templates/admin/integrations/form.html',
71 request_method='POST',
72 route_name=route_name)
73
74
75 # repo group integrations
76 config.add_route('repo_group_integrations_home',
77 add_route_requirements(
78 '{repo_group_name}/settings/integrations',
79 URL_NAME_REQUIREMENTS
80 ),
81 custom_predicates=(valid_repo_group,)
82 )
83 config.add_route('repo_group_integrations_list',
84 add_route_requirements(
85 '{repo_group_name}/settings/integrations/{integration}',
86 URL_NAME_REQUIREMENTS
87 ),
88 custom_predicates=(valid_repo_group, valid_integration))
89 for route_name in ['repo_group_integrations_home', 'repo_group_integrations_list']:
90 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
91 attr='index',
92 renderer='rhodecode:templates/admin/integrations/list.html',
93 request_method='GET',
94 route_name=route_name)
95
96 config.add_route('repo_group_integrations_new',
97 add_route_requirements(
98 '{repo_group_name}/settings/integrations/new',
99 URL_NAME_REQUIREMENTS
100 ),
101 custom_predicates=(valid_repo_group,))
102 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
103 attr='new_integration',
104 renderer='rhodecode:templates/admin/integrations/new.html',
105 request_method='GET',
106 route_name='repo_group_integrations_new')
107
108 config.add_route('repo_group_integrations_create',
109 add_route_requirements(
110 '{repo_group_name}/settings/integrations/{integration}/new',
111 URL_NAME_REQUIREMENTS
112 ),
113 custom_predicates=(valid_repo_group, valid_integration))
114 config.add_route('repo_group_integrations_edit',
115 add_route_requirements(
116 '{repo_group_name}/settings/integrations/{integration}/{integration_id}',
117 URL_NAME_REQUIREMENTS
118 ),
119 custom_predicates=(valid_repo_group, valid_integration))
120 for route_name in ['repo_group_integrations_edit', 'repo_group_integrations_create']:
121 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
122 attr='settings_get',
123 renderer='rhodecode:templates/admin/integrations/form.html',
124 request_method='GET',
125 route_name=route_name)
126 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
127 attr='settings_post',
128 renderer='rhodecode:templates/admin/integrations/form.html',
60 request_method='POST',
129 request_method='POST',
61 route_name=route_name)
130 route_name=route_name)
62
131
63
132
64 # repo integrations
133 # repo integrations
65 config.add_route('repo_integrations_home',
134 config.add_route('repo_integrations_home',
66 add_route_requirements(
135 add_route_requirements(
67 '{repo_name}/settings/integrations',
136 '{repo_name}/settings/integrations',
68 URL_NAME_REQUIREMENTS
137 URL_NAME_REQUIREMENTS
69 ),
138 ),
70 custom_predicates=(valid_repo,))
139 custom_predicates=(valid_repo,))
71 config.add_route('repo_integrations_list',
140 config.add_route('repo_integrations_list',
72 add_route_requirements(
141 add_route_requirements(
73 '{repo_name}/settings/integrations/{integration}',
142 '{repo_name}/settings/integrations/{integration}',
74 URL_NAME_REQUIREMENTS
143 URL_NAME_REQUIREMENTS
75 ),
144 ),
76 custom_predicates=(valid_repo, valid_integration))
145 custom_predicates=(valid_repo, valid_integration))
77 for route_name in ['repo_integrations_home', 'repo_integrations_list']:
146 for route_name in ['repo_integrations_home', 'repo_integrations_list']:
78 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
147 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
79 attr='index',
148 attr='index',
80 request_method='GET',
149 request_method='GET',
150 renderer='rhodecode:templates/admin/integrations/list.html',
81 route_name=route_name)
151 route_name=route_name)
82
152
153 config.add_route('repo_integrations_new',
154 add_route_requirements(
155 '{repo_name}/settings/integrations/new',
156 URL_NAME_REQUIREMENTS
157 ),
158 custom_predicates=(valid_repo,))
159 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
160 attr='new_integration',
161 renderer='rhodecode:templates/admin/integrations/new.html',
162 request_method='GET',
163 route_name='repo_integrations_new')
164
83 config.add_route('repo_integrations_create',
165 config.add_route('repo_integrations_create',
84 add_route_requirements(
166 add_route_requirements(
85 '{repo_name}/settings/integrations/{integration}/new',
167 '{repo_name}/settings/integrations/{integration}/new',
86 URL_NAME_REQUIREMENTS
168 URL_NAME_REQUIREMENTS
87 ),
169 ),
88 custom_predicates=(valid_repo, valid_integration))
170 custom_predicates=(valid_repo, valid_integration))
89 config.add_route('repo_integrations_edit',
171 config.add_route('repo_integrations_edit',
90 add_route_requirements(
172 add_route_requirements(
91 '{repo_name}/settings/integrations/{integration}/{integration_id}',
173 '{repo_name}/settings/integrations/{integration}/{integration_id}',
92 URL_NAME_REQUIREMENTS
174 URL_NAME_REQUIREMENTS
93 ),
175 ),
94 custom_predicates=(valid_repo, valid_integration))
176 custom_predicates=(valid_repo, valid_integration))
95 for route_name in ['repo_integrations_edit', 'repo_integrations_create']:
177 for route_name in ['repo_integrations_edit', 'repo_integrations_create']:
96 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
178 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
97 attr='settings_get',
179 attr='settings_get',
98 renderer='rhodecode:templates/admin/integrations/edit.html',
180 renderer='rhodecode:templates/admin/integrations/form.html',
99 request_method='GET',
181 request_method='GET',
100 route_name=route_name)
182 route_name=route_name)
101 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
183 config.add_view('rhodecode.integrations.views.RepoIntegrationsView',
102 attr='settings_post',
184 attr='settings_post',
103 renderer='rhodecode:templates/admin/integrations/edit.html',
185 renderer='rhodecode:templates/admin/integrations/form.html',
104 request_method='POST',
105 route_name=route_name)
106
107
108 # repo group integrations
109 config.add_route('repo_group_integrations_home',
110 add_route_requirements(
111 '{repo_group_name}/settings/integrations',
112 URL_NAME_REQUIREMENTS
113 ),
114 custom_predicates=(valid_repo_group,))
115 config.add_route('repo_group_integrations_list',
116 add_route_requirements(
117 '{repo_group_name}/settings/integrations/{integration}',
118 URL_NAME_REQUIREMENTS
119 ),
120 custom_predicates=(valid_repo_group, valid_integration))
121 for route_name in ['repo_group_integrations_home', 'repo_group_integrations_list']:
122 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
123 attr='index',
124 request_method='GET',
125 route_name=route_name)
126
127 config.add_route('repo_group_integrations_create',
128 add_route_requirements(
129 '{repo_group_name}/settings/integrations/{integration}/new',
130 URL_NAME_REQUIREMENTS
131 ),
132 custom_predicates=(valid_repo_group, valid_integration))
133 config.add_route('repo_group_integrations_edit',
134 add_route_requirements(
135 '{repo_group_name}/settings/integrations/{integration}/{integration_id}',
136 URL_NAME_REQUIREMENTS
137 ),
138 custom_predicates=(valid_repo_group, valid_integration))
139 for route_name in ['repo_group_integrations_edit', 'repo_group_integrations_create']:
140 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
141 attr='settings_get',
142 renderer='rhodecode:templates/admin/integrations/edit.html',
143 request_method='GET',
144 route_name=route_name)
145 config.add_view('rhodecode.integrations.views.RepoGroupIntegrationsView',
146 attr='settings_post',
147 renderer='rhodecode:templates/admin/integrations/edit.html',
148 request_method='POST',
186 request_method='POST',
149 route_name=route_name)
187 route_name=route_name)
150
188
151
189
152 def valid_repo(info, request):
190 def valid_repo(info, request):
153 repo = Repository.get_by_repo_name(info['match']['repo_name'])
191 repo = Repository.get_by_repo_name(info['match']['repo_name'])
154 if repo:
192 if repo:
155 return True
193 return True
156
194
157
195
158 def valid_repo_group(info, request):
196 def valid_repo_group(info, request):
159 repo_group = RepoGroup.get_by_group_name(info['match']['repo_group_name'])
197 repo_group = RepoGroup.get_by_group_name(info['match']['repo_group_name'])
160 if repo_group:
198 if repo_group:
161 return True
199 return True
162 return False
200 return False
163
201
164
202
165 def valid_integration(info, request):
203 def valid_integration(info, request):
166 integration_type = info['match']['integration']
204 integration_type = info['match']['integration']
167 integration_id = info['match'].get('integration_id')
205 integration_id = info['match'].get('integration_id')
168 repo_name = info['match'].get('repo_name')
206 repo_name = info['match'].get('repo_name')
169 repo_group_name = info['match'].get('repo_group_name')
207 repo_group_name = info['match'].get('repo_group_name')
170
208
171 if integration_type not in integration_type_registry:
209 if integration_type not in integration_type_registry:
172 return False
210 return False
173
211
174 repo, repo_group = None, None
212 repo, repo_group = None, None
175 if repo_name:
213 if repo_name:
176 repo = Repository.get_by_repo_name(repo_name)
214 repo = Repository.get_by_repo_name(repo_name)
177 if not repo:
215 if not repo:
178 return False
216 return False
179
217
180 if repo_group_name:
218 if repo_group_name:
181 repo_group = RepoGroup.get_by_group_name(repo_group_name)
219 repo_group = RepoGroup.get_by_group_name(repo_group_name)
182 if not repo_group:
220 if not repo_group:
183 return False
221 return False
184
222
185 if repo_name and repo_group:
223 if repo_name and repo_group:
186 raise Exception('Either repo or repo_group can be set, not both')
224 raise Exception('Either repo or repo_group can be set, not both')
187
225
188
226
189 if integration_id:
227 if integration_id:
190 integration = Integration.get(integration_id)
228 integration = Integration.get(integration_id)
191 if not integration:
229 if not integration:
192 return False
230 return False
193 if integration.integration_type != integration_type:
231 if integration.integration_type != integration_type:
194 return False
232 return False
195 if repo and repo.repo_id != integration.repo_id:
233 if repo and repo.repo_id != integration.repo_id:
196 return False
234 return False
197 if repo_group and repo_group.repo_group_id != integration.repo_group_id:
235 if repo_group and repo_group.group_id != integration.repo_group_id:
198 return False
236 return False
199
237
200 return True
238 return True
@@ -1,45 +1,71 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import colander
21 import colander
22
22
23 from rhodecode.translation import lazy_ugettext
23 from rhodecode.translation import _
24
24
25
25
26 class IntegrationSettingsSchemaBase(colander.MappingSchema):
26 class IntegrationOptionsSchemaBase(colander.MappingSchema):
27 """
28 This base schema is intended for use in integrations.
29 It adds a few default settings (e.g., "enabled"), so that integration
30 authors don't have to maintain a bunch of boilerplate.
31 """
32 enabled = colander.SchemaNode(
27 enabled = colander.SchemaNode(
33 colander.Bool(),
28 colander.Bool(),
34 default=True,
29 default=True,
35 description=lazy_ugettext('Enable or disable this integration.'),
30 description=_('Enable or disable this integration.'),
36 missing=False,
31 missing=False,
37 title=lazy_ugettext('Enabled'),
32 title=_('Enabled'),
38 )
33 )
39
34
40 name = colander.SchemaNode(
35 name = colander.SchemaNode(
41 colander.String(),
36 colander.String(),
42 description=lazy_ugettext('Short name for this integration.'),
37 description=_('Short name for this integration.'),
43 missing=colander.required,
38 missing=colander.required,
44 title=lazy_ugettext('Integration name'),
39 title=_('Integration name'),
45 )
40 )
41
42
43 class RepoIntegrationOptionsSchema(IntegrationOptionsSchemaBase):
44 pass
45
46
47 class RepoGroupIntegrationOptionsSchema(IntegrationOptionsSchemaBase):
48 child_repos_only = colander.SchemaNode(
49 colander.Bool(),
50 default=True,
51 description=_(
52 'Limit integrations to to work only on the direct children '
53 'repositories of this repository group (no subgroups)'),
54 missing=False,
55 title=_('Limit to childen repos only'),
56 )
57
58
59 class GlobalIntegrationOptionsSchema(IntegrationOptionsSchemaBase):
60 child_repos_only = colander.SchemaNode(
61 colander.Bool(),
62 default=False,
63 description=_(
64 'Limit integrations to to work only on root level repositories'),
65 missing=False,
66 title=_('Root repositories only'),
67 )
68
69
70 class IntegrationSettingsSchemaBase(colander.MappingSchema):
71 pass
@@ -1,42 +1,101 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 from rhodecode.integrations.schema import IntegrationSettingsSchemaBase
21 import colander
22 from rhodecode.translation import _
22
23
23
24
24 class IntegrationTypeBase(object):
25 class IntegrationTypeBase(object):
25 """ Base class for IntegrationType plugins """
26 """ Base class for IntegrationType plugins """
26
27
28 description = ''
29 icon = '''
30 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
31 <svg
32 xmlns:dc="http://purl.org/dc/elements/1.1/"
33 xmlns:cc="http://creativecommons.org/ns#"
34 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
35 xmlns:svg="http://www.w3.org/2000/svg"
36 xmlns="http://www.w3.org/2000/svg"
37 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
38 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
39 viewBox="0 -256 1792 1792"
40 id="svg3025"
41 version="1.1"
42 inkscape:version="0.48.3.1 r9886"
43 width="100%"
44 height="100%"
45 sodipodi:docname="cog_font_awesome.svg">
46 <metadata
47 id="metadata3035">
48 <rdf:RDF>
49 <cc:Work
50 rdf:about="">
51 <dc:format>image/svg+xml</dc:format>
52 <dc:type
53 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
54 </cc:Work>
55 </rdf:RDF>
56 </metadata>
57 <defs
58 id="defs3033" />
59 <sodipodi:namedview
60 pagecolor="#ffffff"
61 bordercolor="#666666"
62 borderopacity="1"
63 objecttolerance="10"
64 gridtolerance="10"
65 guidetolerance="10"
66 inkscape:pageopacity="0"
67 inkscape:pageshadow="2"
68 inkscape:window-width="640"
69 inkscape:window-height="480"
70 id="namedview3031"
71 showgrid="false"
72 inkscape:zoom="0.13169643"
73 inkscape:cx="896"
74 inkscape:cy="896"
75 inkscape:window-x="0"
76 inkscape:window-y="25"
77 inkscape:window-maximized="0"
78 inkscape:current-layer="svg3025" />
79 <g
80 transform="matrix(1,0,0,-1,121.49153,1285.4237)"
81 id="g3027">
82 <path
83 d="m 1024,640 q 0,106 -75,181 -75,75 -181,75 -106,0 -181,-75 -75,-75 -75,-181 0,-106 75,-181 75,-75 181,-75 106,0 181,75 75,75 75,181 z m 512,109 V 527 q 0,-12 -8,-23 -8,-11 -20,-13 l -185,-28 q -19,-54 -39,-91 35,-50 107,-138 10,-12 10,-25 0,-13 -9,-23 -27,-37 -99,-108 -72,-71 -94,-71 -12,0 -26,9 l -138,108 q -44,-23 -91,-38 -16,-136 -29,-186 -7,-28 -36,-28 H 657 q -14,0 -24.5,8.5 Q 622,-111 621,-98 L 593,86 q -49,16 -90,37 L 362,16 Q 352,7 337,7 323,7 312,18 186,132 147,186 q -7,10 -7,23 0,12 8,23 15,21 51,66.5 36,45.5 54,70.5 -27,50 -41,99 L 29,495 Q 16,497 8,507.5 0,518 0,531 v 222 q 0,12 8,23 8,11 19,13 l 186,28 q 14,46 39,92 -40,57 -107,138 -10,12 -10,24 0,10 9,23 26,36 98.5,107.5 72.5,71.5 94.5,71.5 13,0 26,-10 l 138,-107 q 44,23 91,38 16,136 29,186 7,28 36,28 h 222 q 14,0 24.5,-8.5 Q 914,1391 915,1378 l 28,-184 q 49,-16 90,-37 l 142,107 q 9,9 24,9 13,0 25,-10 129,-119 165,-170 7,-8 7,-22 0,-12 -8,-23 -15,-21 -51,-66.5 -36,-45.5 -54,-70.5 26,-50 41,-98 l 183,-28 q 13,-2 21,-12.5 8,-10.5 8,-23.5 z"
84 id="path3029"
85 inkscape:connector-curvature="0"
86 style="fill:currentColor" />
87 </g>
88 </svg>
89 '''
90
27 def __init__(self, settings):
91 def __init__(self, settings):
28 """
92 """
29 :param settings: dict of settings to be used for the integration
93 :param settings: dict of settings to be used for the integration
30 """
94 """
31 self.settings = settings
95 self.settings = settings
32
96
33
34 def settings_schema(self):
97 def settings_schema(self):
35 """
98 """
36 A colander schema of settings for the integration type
99 A colander schema of settings for the integration type
37
38 Subclasses can return their own schema but should always
39 inherit from IntegrationSettingsSchemaBase
40 """
100 """
41 return IntegrationSettingsSchemaBase()
101 return colander.Schema()
42
@@ -1,222 +1,283 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 from __future__ import unicode_literals
21 from __future__ import unicode_literals
22 import deform
22 import deform
23 import logging
23 import logging
24 import colander
24 import colander
25
25
26 from mako.template import Template
26 from mako.template import Template
27
27
28 from rhodecode import events
28 from rhodecode import events
29 from rhodecode.translation import _, lazy_ugettext
29 from rhodecode.translation import _
30 from rhodecode.lib.celerylib import run_task
30 from rhodecode.lib.celerylib import run_task
31 from rhodecode.lib.celerylib import tasks
31 from rhodecode.lib.celerylib import tasks
32 from rhodecode.integrations.types.base import IntegrationTypeBase
32 from rhodecode.integrations.types.base import IntegrationTypeBase
33 from rhodecode.integrations.schema import IntegrationSettingsSchemaBase
34
33
35
34
36 log = logging.getLogger(__name__)
35 log = logging.getLogger(__name__)
37
36
38 repo_push_template_plaintext = Template('''
37 repo_push_template_plaintext = Template('''
39 Commits:
38 Commits:
40
39
41 % for commit in data['push']['commits']:
40 % for commit in data['push']['commits']:
42 ${commit['url']} by ${commit['author']} at ${commit['date']}
41 ${commit['url']} by ${commit['author']} at ${commit['date']}
43 ${commit['message']}
42 ${commit['message']}
44 ----
43 ----
45
44
46 % endfor
45 % endfor
47 ''')
46 ''')
48
47
49 ## TODO (marcink): think about putting this into a file, or use base.mako email template
48 ## TODO (marcink): think about putting this into a file, or use base.mako email template
50
49
51 repo_push_template_html = Template('''
50 repo_push_template_html = Template('''
52 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
51 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
53 <html xmlns="http://www.w3.org/1999/xhtml">
52 <html xmlns="http://www.w3.org/1999/xhtml">
54 <head>
53 <head>
55 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
54 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
56 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
55 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
57 <title>${subject}</title>
56 <title>${subject}</title>
58 <style type="text/css">
57 <style type="text/css">
59 /* Based on The MailChimp Reset INLINE: Yes. */
58 /* Based on The MailChimp Reset INLINE: Yes. */
60 #outlook a {padding:0;} /* Force Outlook to provide a "view in browser" menu link. */
59 #outlook a {padding:0;} /* Force Outlook to provide a "view in browser" menu link. */
61 body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}
60 body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}
62 /* Prevent Webkit and Windows Mobile platforms from changing default font sizes.*/
61 /* Prevent Webkit and Windows Mobile platforms from changing default font sizes.*/
63 .ExternalClass {width:100%;} /* Force Hotmail to display emails at full width */
62 .ExternalClass {width:100%;} /* Force Hotmail to display emails at full width */
64 .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;}
63 .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;}
65 /* Forces Hotmail to display normal line spacing. More on that: http://www.emailonacid.com/forum/viewthread/43/ */
64 /* Forces Hotmail to display normal line spacing. More on that: http://www.emailonacid.com/forum/viewthread/43/ */
66 #backgroundTable {margin:0; padding:0; line-height: 100% !important;}
65 #backgroundTable {margin:0; padding:0; line-height: 100% !important;}
67 /* End reset */
66 /* End reset */
68
67
69 /* defaults for images*/
68 /* defaults for images*/
70 img {outline:none; text-decoration:none; -ms-interpolation-mode: bicubic;}
69 img {outline:none; text-decoration:none; -ms-interpolation-mode: bicubic;}
71 a img {border:none;}
70 a img {border:none;}
72 .image_fix {display:block;}
71 .image_fix {display:block;}
73
72
74 body {line-height:1.2em;}
73 body {line-height:1.2em;}
75 p {margin: 0 0 20px;}
74 p {margin: 0 0 20px;}
76 h1, h2, h3, h4, h5, h6 {color:#323232!important;}
75 h1, h2, h3, h4, h5, h6 {color:#323232!important;}
77 a {color:#427cc9;text-decoration:none;outline:none;cursor:pointer;}
76 a {color:#427cc9;text-decoration:none;outline:none;cursor:pointer;}
78 a:focus {outline:none;}
77 a:focus {outline:none;}
79 a:hover {color: #305b91;}
78 a:hover {color: #305b91;}
80 h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color:#427cc9!important;text-decoration:none!important;}
79 h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color:#427cc9!important;text-decoration:none!important;}
81 h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active {color: #305b91!important;}
80 h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active {color: #305b91!important;}
82 h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {color: #305b91!important;}
81 h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {color: #305b91!important;}
83 table {font-size:13px;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;}
82 table {font-size:13px;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;}
84 table td {padding:.65em 1em .65em 0;border-collapse:collapse;vertical-align:top;text-align:left;}
83 table td {padding:.65em 1em .65em 0;border-collapse:collapse;vertical-align:top;text-align:left;}
85 input {display:inline;border-radius:2px;border-style:solid;border: 1px solid #dbd9da;padding:.5em;}
84 input {display:inline;border-radius:2px;border-style:solid;border: 1px solid #dbd9da;padding:.5em;}
86 input:focus {outline: 1px solid #979797}
85 input:focus {outline: 1px solid #979797}
87 @media only screen and (-webkit-min-device-pixel-ratio: 2) {
86 @media only screen and (-webkit-min-device-pixel-ratio: 2) {
88 /* Put your iPhone 4g styles in here */
87 /* Put your iPhone 4g styles in here */
89 }
88 }
90
89
91 /* Android targeting */
90 /* Android targeting */
92 @media only screen and (-webkit-device-pixel-ratio:.75){
91 @media only screen and (-webkit-device-pixel-ratio:.75){
93 /* Put CSS for low density (ldpi) Android layouts in here */
92 /* Put CSS for low density (ldpi) Android layouts in here */
94 }
93 }
95 @media only screen and (-webkit-device-pixel-ratio:1){
94 @media only screen and (-webkit-device-pixel-ratio:1){
96 /* Put CSS for medium density (mdpi) Android layouts in here */
95 /* Put CSS for medium density (mdpi) Android layouts in here */
97 }
96 }
98 @media only screen and (-webkit-device-pixel-ratio:1.5){
97 @media only screen and (-webkit-device-pixel-ratio:1.5){
99 /* Put CSS for high density (hdpi) Android layouts in here */
98 /* Put CSS for high density (hdpi) Android layouts in here */
100 }
99 }
101 /* end Android targeting */
100 /* end Android targeting */
102
101
103 </style>
102 </style>
104
103
105 <!-- Targeting Windows Mobile -->
104 <!-- Targeting Windows Mobile -->
106 <!--[if IEMobile 7]>
105 <!--[if IEMobile 7]>
107 <style type="text/css">
106 <style type="text/css">
108
107
109 </style>
108 </style>
110 <![endif]-->
109 <![endif]-->
111
110
112 <!--[if gte mso 9]>
111 <!--[if gte mso 9]>
113 <style>
112 <style>
114 /* Target Outlook 2007 and 2010 */
113 /* Target Outlook 2007 and 2010 */
115 </style>
114 </style>
116 <![endif]-->
115 <![endif]-->
117 </head>
116 </head>
118 <body>
117 <body>
119 <!-- Wrapper/Container Table: Use a wrapper table to control the width and the background color consistently of your email. Use this approach instead of setting attributes on the body tag. -->
118 <!-- Wrapper/Container Table: Use a wrapper table to control the width and the background color consistently of your email. Use this approach instead of setting attributes on the body tag. -->
120 <table cellpadding="0" cellspacing="0" border="0" id="backgroundTable" align="left" style="margin:1%;width:97%;padding:0;font-family:sans-serif;font-weight:100;border:1px solid #dbd9da">
119 <table cellpadding="0" cellspacing="0" border="0" id="backgroundTable" align="left" style="margin:1%;width:97%;padding:0;font-family:sans-serif;font-weight:100;border:1px solid #dbd9da">
121 <tr>
120 <tr>
122 <td valign="top" style="padding:0;">
121 <td valign="top" style="padding:0;">
123 <table cellpadding="0" cellspacing="0" border="0" align="left" width="100%">
122 <table cellpadding="0" cellspacing="0" border="0" align="left" width="100%">
124 <tr><td style="width:100%;padding:7px;background-color:#202020" valign="top">
123 <tr><td style="width:100%;padding:7px;background-color:#202020" valign="top">
125 <a style="color:#eeeeee;text-decoration:none;" href="${instance_url}">
124 <a style="color:#eeeeee;text-decoration:none;" href="${instance_url}">
126 ${'RhodeCode'}
125 ${'RhodeCode'}
127 </a>
126 </a>
128 </td></tr>
127 </td></tr>
129 <tr>
128 <tr>
130 <td style="padding:15px;" valign="top">
129 <td style="padding:15px;" valign="top">
131 % for commit in data['push']['commits']:
130 % for commit in data['push']['commits']:
132 <a href="${commit['url']}">${commit['short_id']}</a> by ${commit['author']} at ${commit['date']} <br/>
131 <a href="${commit['url']}">${commit['short_id']}</a> by ${commit['author']} at ${commit['date']} <br/>
133 ${commit['message_html']} <br/>
132 ${commit['message_html']} <br/>
134 <br/>
133 <br/>
135 % endfor
134 % endfor
136 </td>
135 </td>
137 </tr>
136 </tr>
138 </table>
137 </table>
139 </td>
138 </td>
140 </tr>
139 </tr>
141 </table>
140 </table>
142 <!-- End of wrapper table -->
141 <!-- End of wrapper table -->
143 <p><a style="margin-top:15px;margin-left:1%;font-family:sans-serif;font-weight:100;font-size:11px;color:#666666;text-decoration:none;" href="${instance_url}">
142 <p><a style="margin-top:15px;margin-left:1%;font-family:sans-serif;font-weight:100;font-size:11px;color:#666666;text-decoration:none;" href="${instance_url}">
144 ${'This is a notification from RhodeCode. %(instance_url)s' % {'instance_url': instance_url}}
143 ${'This is a notification from RhodeCode. %(instance_url)s' % {'instance_url': instance_url}}
145 </a></p>
144 </a></p>
146 </body>
145 </body>
147 </html>
146 </html>
148 ''')
147 ''')
149
148
149 email_icon = '''
150 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
151 <svg
152 xmlns:dc="http://purl.org/dc/elements/1.1/"
153 xmlns:cc="http://creativecommons.org/ns#"
154 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
155 xmlns:svg="http://www.w3.org/2000/svg"
156 xmlns="http://www.w3.org/2000/svg"
157 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
158 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
159 viewBox="0 -256 1850 1850"
160 id="svg2989"
161 version="1.1"
162 inkscape:version="0.48.3.1 r9886"
163 width="100%"
164 height="100%"
165 sodipodi:docname="envelope_font_awesome.svg">
166 <metadata
167 id="metadata2999">
168 <rdf:RDF>
169 <cc:Work
170 rdf:about="">
171 <dc:format>image/svg+xml</dc:format>
172 <dc:type
173 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
174 </cc:Work>
175 </rdf:RDF>
176 </metadata>
177 <defs
178 id="defs2997" />
179 <sodipodi:namedview
180 pagecolor="#ffffff"
181 bordercolor="#666666"
182 borderopacity="1"
183 objecttolerance="10"
184 gridtolerance="10"
185 guidetolerance="10"
186 inkscape:pageopacity="0"
187 inkscape:pageshadow="2"
188 inkscape:window-width="640"
189 inkscape:window-height="480"
190 id="namedview2995"
191 showgrid="false"
192 inkscape:zoom="0.13169643"
193 inkscape:cx="896"
194 inkscape:cy="896"
195 inkscape:window-x="0"
196 inkscape:window-y="25"
197 inkscape:window-maximized="0"
198 inkscape:current-layer="svg2989" />
199 <g
200 transform="matrix(1,0,0,-1,37.966102,1282.678)"
201 id="g2991">
202 <path
203 d="m 1664,32 v 768 q -32,-36 -69,-66 -268,-206 -426,-338 -51,-43 -83,-67 -32,-24 -86.5,-48.5 Q 945,256 897,256 h -1 -1 Q 847,256 792.5,280.5 738,305 706,329 674,353 623,396 465,528 197,734 160,764 128,800 V 32 Q 128,19 137.5,9.5 147,0 160,0 h 1472 q 13,0 22.5,9.5 9.5,9.5 9.5,22.5 z m 0,1051 v 11 13.5 q 0,0 -0.5,13 -0.5,13 -3,12.5 -2.5,-0.5 -5.5,9 -3,9.5 -9,7.5 -6,-2 -14,2.5 H 160 q -13,0 -22.5,-9.5 Q 128,1133 128,1120 128,952 275,836 468,684 676,519 682,514 711,489.5 740,465 757,452 774,439 801.5,420.5 829,402 852,393 q 23,-9 43,-9 h 1 1 q 20,0 43,9 23,9 50.5,27.5 27.5,18.5 44.5,31.5 17,13 46,37.5 29,24.5 35,29.5 208,165 401,317 54,43 100.5,115.5 46.5,72.5 46.5,131.5 z m 128,37 V 32 q 0,-66 -47,-113 -47,-47 -113,-47 H 160 Q 94,-128 47,-81 0,-34 0,32 v 1088 q 0,66 47,113 47,47 113,47 h 1472 q 66,0 113,-47 47,-47 47,-113 z"
204 id="path2993"
205 inkscape:connector-curvature="0"
206 style="fill:currentColor" />
207 </g>
208 </svg>
209 '''
150
210
151 class EmailSettingsSchema(IntegrationSettingsSchemaBase):
211 class EmailSettingsSchema(colander.Schema):
152 @colander.instantiate(validator=colander.Length(min=1))
212 @colander.instantiate(validator=colander.Length(min=1))
153 class recipients(colander.SequenceSchema):
213 class recipients(colander.SequenceSchema):
154 title = lazy_ugettext('Recipients')
214 title = _('Recipients')
155 description = lazy_ugettext('Email addresses to send push events to')
215 description = _('Email addresses to send push events to')
156 widget = deform.widget.SequenceWidget(min_len=1)
216 widget = deform.widget.SequenceWidget(min_len=1)
157
217
158 recipient = colander.SchemaNode(
218 recipient = colander.SchemaNode(
159 colander.String(),
219 colander.String(),
160 title=lazy_ugettext('Email address'),
220 title=_('Email address'),
161 description=lazy_ugettext('Email address'),
221 description=_('Email address'),
162 default='',
222 default='',
163 validator=colander.Email(),
223 validator=colander.Email(),
164 widget=deform.widget.TextInputWidget(
224 widget=deform.widget.TextInputWidget(
165 placeholder='user@domain.com',
225 placeholder='user@domain.com',
166 ),
226 ),
167 )
227 )
168
228
169
229
170 class EmailIntegrationType(IntegrationTypeBase):
230 class EmailIntegrationType(IntegrationTypeBase):
171 key = 'email'
231 key = 'email'
172 display_name = lazy_ugettext('Email')
232 display_name = _('Email')
173 SettingsSchema = EmailSettingsSchema
233 description = _('Send repo push summaries to a list of recipients via email')
234 icon = email_icon
174
235
175 def settings_schema(self):
236 def settings_schema(self):
176 schema = EmailSettingsSchema()
237 schema = EmailSettingsSchema()
177 return schema
238 return schema
178
239
179 def send_event(self, event):
240 def send_event(self, event):
180 data = event.as_dict()
241 data = event.as_dict()
181 log.debug('got event: %r', event)
242 log.debug('got event: %r', event)
182
243
183 if isinstance(event, events.RepoPushEvent):
244 if isinstance(event, events.RepoPushEvent):
184 repo_push_handler(data, self.settings)
245 repo_push_handler(data, self.settings)
185 else:
246 else:
186 log.debug('ignoring event: %r', event)
247 log.debug('ignoring event: %r', event)
187
248
188
249
189 def repo_push_handler(data, settings):
250 def repo_push_handler(data, settings):
190 commit_num = len(data['push']['commits'])
251 commit_num = len(data['push']['commits'])
191 server_url = data['server_url']
252 server_url = data['server_url']
192
253
193 if commit_num == 0:
254 if commit_num == 0:
194 subject = '[{repo_name}] {author} pushed {commit_num} commit on branches: {branches}'.format(
255 subject = '[{repo_name}] {author} pushed {commit_num} commit on branches: {branches}'.format(
195 author=data['actor']['username'],
256 author=data['actor']['username'],
196 repo_name=data['repo']['repo_name'],
257 repo_name=data['repo']['repo_name'],
197 commit_num=commit_num,
258 commit_num=commit_num,
198 branches=', '.join(
259 branches=', '.join(
199 branch['name'] for branch in data['push']['branches'])
260 branch['name'] for branch in data['push']['branches'])
200 )
261 )
201 else:
262 else:
202 subject = '[{repo_name}] {author} pushed {commit_num} commits on branches: {branches}'.format(
263 subject = '[{repo_name}] {author} pushed {commit_num} commits on branches: {branches}'.format(
203 author=data['actor']['username'],
264 author=data['actor']['username'],
204 repo_name=data['repo']['repo_name'],
265 repo_name=data['repo']['repo_name'],
205 commit_num=commit_num,
266 commit_num=commit_num,
206 branches=', '.join(
267 branches=', '.join(
207 branch['name'] for branch in data['push']['branches']))
268 branch['name'] for branch in data['push']['branches']))
208
269
209 email_body_plaintext = repo_push_template_plaintext.render(
270 email_body_plaintext = repo_push_template_plaintext.render(
210 data=data,
271 data=data,
211 subject=subject,
272 subject=subject,
212 instance_url=server_url)
273 instance_url=server_url)
213
274
214 email_body_html = repo_push_template_html.render(
275 email_body_html = repo_push_template_html.render(
215 data=data,
276 data=data,
216 subject=subject,
277 subject=subject,
217 instance_url=server_url)
278 instance_url=server_url)
218
279
219 for email_address in settings['recipients']:
280 for email_address in settings['recipients']:
220 run_task(
281 run_task(
221 tasks.send_email, email_address, subject,
282 tasks.send_email, email_address, subject,
222 email_body_plaintext, email_body_html)
283 email_body_plaintext, email_body_html)
@@ -1,242 +1,243 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 from __future__ import unicode_literals
21 from __future__ import unicode_literals
22 import deform
22 import deform
23 import re
23 import re
24 import logging
24 import logging
25 import requests
25 import requests
26 import colander
26 import colander
27 import textwrap
27 import textwrap
28 from celery.task import task
28 from celery.task import task
29 from mako.template import Template
29 from mako.template import Template
30
30
31 from rhodecode import events
31 from rhodecode import events
32 from rhodecode.translation import lazy_ugettext
32 from rhodecode.translation import _
33 from rhodecode.lib import helpers as h
33 from rhodecode.lib import helpers as h
34 from rhodecode.lib.celerylib import run_task
34 from rhodecode.lib.celerylib import run_task
35 from rhodecode.lib.colander_utils import strip_whitespace
35 from rhodecode.lib.colander_utils import strip_whitespace
36 from rhodecode.integrations.types.base import IntegrationTypeBase
36 from rhodecode.integrations.types.base import IntegrationTypeBase
37 from rhodecode.integrations.schema import IntegrationSettingsSchemaBase
38
37
39 log = logging.getLogger(__name__)
38 log = logging.getLogger(__name__)
40
39
41
40
42 class HipchatSettingsSchema(IntegrationSettingsSchemaBase):
41 class HipchatSettingsSchema(colander.Schema):
43 color_choices = [
42 color_choices = [
44 ('yellow', lazy_ugettext('Yellow')),
43 ('yellow', _('Yellow')),
45 ('red', lazy_ugettext('Red')),
44 ('red', _('Red')),
46 ('green', lazy_ugettext('Green')),
45 ('green', _('Green')),
47 ('purple', lazy_ugettext('Purple')),
46 ('purple', _('Purple')),
48 ('gray', lazy_ugettext('Gray')),
47 ('gray', _('Gray')),
49 ]
48 ]
50
49
51 server_url = colander.SchemaNode(
50 server_url = colander.SchemaNode(
52 colander.String(),
51 colander.String(),
53 title=lazy_ugettext('Hipchat server URL'),
52 title=_('Hipchat server URL'),
54 description=lazy_ugettext('Hipchat integration url.'),
53 description=_('Hipchat integration url.'),
55 default='',
54 default='',
56 preparer=strip_whitespace,
55 preparer=strip_whitespace,
57 validator=colander.url,
56 validator=colander.url,
58 widget=deform.widget.TextInputWidget(
57 widget=deform.widget.TextInputWidget(
59 placeholder='https://?.hipchat.com/v2/room/?/notification?auth_token=?',
58 placeholder='https://?.hipchat.com/v2/room/?/notification?auth_token=?',
60 ),
59 ),
61 )
60 )
62 notify = colander.SchemaNode(
61 notify = colander.SchemaNode(
63 colander.Bool(),
62 colander.Bool(),
64 title=lazy_ugettext('Notify'),
63 title=_('Notify'),
65 description=lazy_ugettext('Make a notification to the users in room.'),
64 description=_('Make a notification to the users in room.'),
66 missing=False,
65 missing=False,
67 default=False,
66 default=False,
68 )
67 )
69 color = colander.SchemaNode(
68 color = colander.SchemaNode(
70 colander.String(),
69 colander.String(),
71 title=lazy_ugettext('Color'),
70 title=_('Color'),
72 description=lazy_ugettext('Background color of message.'),
71 description=_('Background color of message.'),
73 missing='',
72 missing='',
74 validator=colander.OneOf([x[0] for x in color_choices]),
73 validator=colander.OneOf([x[0] for x in color_choices]),
75 widget=deform.widget.Select2Widget(
74 widget=deform.widget.Select2Widget(
76 values=color_choices,
75 values=color_choices,
77 ),
76 ),
78 )
77 )
79
78
80
79
81 repo_push_template = Template('''
80 repo_push_template = Template('''
82 <b>${data['actor']['username']}</b> pushed to
81 <b>${data['actor']['username']}</b> pushed to
83 %if data['push']['branches']:
82 %if data['push']['branches']:
84 ${len(data['push']['branches']) > 1 and 'branches' or 'branch'}
83 ${len(data['push']['branches']) > 1 and 'branches' or 'branch'}
85 ${', '.join('<a href="%s">%s</a>' % (branch['url'], branch['name']) for branch in data['push']['branches'])}
84 ${', '.join('<a href="%s">%s</a>' % (branch['url'], branch['name']) for branch in data['push']['branches'])}
86 %else:
85 %else:
87 unknown branch
86 unknown branch
88 %endif
87 %endif
89 in <a href="${data['repo']['url']}">${data['repo']['repo_name']}</a>
88 in <a href="${data['repo']['url']}">${data['repo']['repo_name']}</a>
90 <br>
89 <br>
91 <ul>
90 <ul>
92 %for commit in data['push']['commits']:
91 %for commit in data['push']['commits']:
93 <li>
92 <li>
94 <a href="${commit['url']}">${commit['short_id']}</a> - ${commit['message_html']}
93 <a href="${commit['url']}">${commit['short_id']}</a> - ${commit['message_html']}
95 </li>
94 </li>
96 %endfor
95 %endfor
97 </ul>
96 </ul>
98 ''')
97 ''')
99
98
100
99
101
102 class HipchatIntegrationType(IntegrationTypeBase):
100 class HipchatIntegrationType(IntegrationTypeBase):
103 key = 'hipchat'
101 key = 'hipchat'
104 display_name = lazy_ugettext('Hipchat')
102 display_name = _('Hipchat')
103 description = _('Send events such as repo pushes and pull requests to '
104 'your hipchat channel.')
105 icon = '''<?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve"><g><g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)"><path fill="#205281" d="M4197.1,4662.4c-1661.5-260.4-3018-1171.6-3682.6-2473.3C219.9,1613.6,100,1120.3,100,462.6c0-1014,376.8-1918.4,1127-2699.4C2326.7-3377.6,3878.5-3898.3,5701-3730.5l486.5,44.5l208.9-123.3c637.2-373.4,1551.8-640.6,2240.4-650.9c304.9-6.9,335.7,0,417.9,75.4c185,174.7,147.3,411.1-89.1,548.1c-315.2,181.6-620,544.7-733.1,870.1l-51.4,157.6l472.7,472.7c349.4,349.4,520.7,551.5,657.7,774.2c784.5,1281.2,784.5,2788.5,0,4052.6c-236.4,376.8-794.8,966-1178.4,1236.7c-572.1,407.7-1264.1,709.1-1993.7,870.1c-267.2,58.2-479.6,75.4-1038,82.2C4714.4,4686.4,4310.2,4679.6,4197.1,4662.4z M5947.6,3740.9c1856.7-380.3,3127.6-1709.4,3127.6-3275c0-1000.3-534.4-1949.2-1466.2-2600.1c-188.4-133.6-287.8-226.1-301.5-284.4c-41.1-157.6,263.8-938.6,397.4-1020.8c20.5-10.3,34.3-44.5,34.3-75.4c0-167.8-811.9,195.3-1363.4,609.8l-181.6,137l-332.3-58.2c-445.3-78.8-1281.2-78.8-1702.6,0C2796-2569.2,1734.1-1832.6,1220.2-801.5C983.8-318.5,905,51.5,929,613.3c27.4,640.6,243.2,1192.1,685.1,1740.3c620,770.8,1661.5,1305.2,2822.8,1452.5C4806.9,3854,5553.7,3819.7,5947.6,3740.9z"/><path fill="#205281" d="M2381.5-345.9c-75.4-106.2-68.5-167.8,34.3-322c332.3-500.2,1010.6-928.4,1760.8-1120.2c417.9-106.2,1226.4-106.2,1644.3,0c712.5,181.6,1270.9,517.3,1685.4,1014C7681-561.7,7715.3-424.7,7616-325.4c-89.1,89.1-167.9,65.1-431.7-133.6c-835.8-630.3-2028-856.4-3086.5-585.8C3683.3-938.6,3142-685,2830.3-448.7C2576.8-253.4,2463.7-229.4,2381.5-345.9z"/></g></g><!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon --></svg>'''
105 valid_events = [
106 valid_events = [
106 events.PullRequestCloseEvent,
107 events.PullRequestCloseEvent,
107 events.PullRequestMergeEvent,
108 events.PullRequestMergeEvent,
108 events.PullRequestUpdateEvent,
109 events.PullRequestUpdateEvent,
109 events.PullRequestCommentEvent,
110 events.PullRequestCommentEvent,
110 events.PullRequestReviewEvent,
111 events.PullRequestReviewEvent,
111 events.PullRequestCreateEvent,
112 events.PullRequestCreateEvent,
112 events.RepoPushEvent,
113 events.RepoPushEvent,
113 events.RepoCreateEvent,
114 events.RepoCreateEvent,
114 ]
115 ]
115
116
116 def send_event(self, event):
117 def send_event(self, event):
117 if event.__class__ not in self.valid_events:
118 if event.__class__ not in self.valid_events:
118 log.debug('event not valid: %r' % event)
119 log.debug('event not valid: %r' % event)
119 return
120 return
120
121
121 if event.name not in self.settings['events']:
122 if event.name not in self.settings['events']:
122 log.debug('event ignored: %r' % event)
123 log.debug('event ignored: %r' % event)
123 return
124 return
124
125
125 data = event.as_dict()
126 data = event.as_dict()
126
127
127 text = '<b>%s<b> caused a <b>%s</b> event' % (
128 text = '<b>%s<b> caused a <b>%s</b> event' % (
128 data['actor']['username'], event.name)
129 data['actor']['username'], event.name)
129
130
130 log.debug('handling hipchat event for %s' % event.name)
131 log.debug('handling hipchat event for %s' % event.name)
131
132
132 if isinstance(event, events.PullRequestCommentEvent):
133 if isinstance(event, events.PullRequestCommentEvent):
133 text = self.format_pull_request_comment_event(event, data)
134 text = self.format_pull_request_comment_event(event, data)
134 elif isinstance(event, events.PullRequestReviewEvent):
135 elif isinstance(event, events.PullRequestReviewEvent):
135 text = self.format_pull_request_review_event(event, data)
136 text = self.format_pull_request_review_event(event, data)
136 elif isinstance(event, events.PullRequestEvent):
137 elif isinstance(event, events.PullRequestEvent):
137 text = self.format_pull_request_event(event, data)
138 text = self.format_pull_request_event(event, data)
138 elif isinstance(event, events.RepoPushEvent):
139 elif isinstance(event, events.RepoPushEvent):
139 text = self.format_repo_push_event(data)
140 text = self.format_repo_push_event(data)
140 elif isinstance(event, events.RepoCreateEvent):
141 elif isinstance(event, events.RepoCreateEvent):
141 text = self.format_repo_create_event(data)
142 text = self.format_repo_create_event(data)
142 else:
143 else:
143 log.error('unhandled event type: %r' % event)
144 log.error('unhandled event type: %r' % event)
144
145
145 run_task(post_text_to_hipchat, self.settings, text)
146 run_task(post_text_to_hipchat, self.settings, text)
146
147
147 def settings_schema(self):
148 def settings_schema(self):
148 schema = HipchatSettingsSchema()
149 schema = HipchatSettingsSchema()
149 schema.add(colander.SchemaNode(
150 schema.add(colander.SchemaNode(
150 colander.Set(),
151 colander.Set(),
151 widget=deform.widget.CheckboxChoiceWidget(
152 widget=deform.widget.CheckboxChoiceWidget(
152 values=sorted(
153 values=sorted(
153 [(e.name, e.display_name) for e in self.valid_events]
154 [(e.name, e.display_name) for e in self.valid_events]
154 )
155 )
155 ),
156 ),
156 description="Events activated for this integration",
157 description="Events activated for this integration",
157 name='events'
158 name='events'
158 ))
159 ))
159
160
160 return schema
161 return schema
161
162
162 def format_pull_request_comment_event(self, event, data):
163 def format_pull_request_comment_event(self, event, data):
163 comment_text = data['comment']['text']
164 comment_text = data['comment']['text']
164 if len(comment_text) > 200:
165 if len(comment_text) > 200:
165 comment_text = '{comment_text}<a href="{comment_url}">...<a/>'.format(
166 comment_text = '{comment_text}<a href="{comment_url}">...<a/>'.format(
166 comment_text=comment_text[:200],
167 comment_text=comment_text[:200],
167 comment_url=data['comment']['url'],
168 comment_url=data['comment']['url'],
168 )
169 )
169
170
170 comment_status = ''
171 comment_status = ''
171 if data['comment']['status']:
172 if data['comment']['status']:
172 comment_status = '[{}]: '.format(data['comment']['status'])
173 comment_status = '[{}]: '.format(data['comment']['status'])
173
174
174 return (textwrap.dedent(
175 return (textwrap.dedent(
175 '''
176 '''
176 {user} commented on pull request <a href="{pr_url}">{number}</a> - {pr_title}:
177 {user} commented on pull request <a href="{pr_url}">{number}</a> - {pr_title}:
177 >>> {comment_status}{comment_text}
178 >>> {comment_status}{comment_text}
178 ''').format(
179 ''').format(
179 comment_status=comment_status,
180 comment_status=comment_status,
180 user=data['actor']['username'],
181 user=data['actor']['username'],
181 number=data['pullrequest']['pull_request_id'],
182 number=data['pullrequest']['pull_request_id'],
182 pr_url=data['pullrequest']['url'],
183 pr_url=data['pullrequest']['url'],
183 pr_status=data['pullrequest']['status'],
184 pr_status=data['pullrequest']['status'],
184 pr_title=data['pullrequest']['title'],
185 pr_title=data['pullrequest']['title'],
185 comment_text=comment_text
186 comment_text=comment_text
186 )
187 )
187 )
188 )
188
189
189 def format_pull_request_review_event(self, event, data):
190 def format_pull_request_review_event(self, event, data):
190 return (textwrap.dedent(
191 return (textwrap.dedent(
191 '''
192 '''
192 Status changed to {pr_status} for pull request <a href="{pr_url}">#{number}</a> - {pr_title}
193 Status changed to {pr_status} for pull request <a href="{pr_url}">#{number}</a> - {pr_title}
193 ''').format(
194 ''').format(
194 user=data['actor']['username'],
195 user=data['actor']['username'],
195 number=data['pullrequest']['pull_request_id'],
196 number=data['pullrequest']['pull_request_id'],
196 pr_url=data['pullrequest']['url'],
197 pr_url=data['pullrequest']['url'],
197 pr_status=data['pullrequest']['status'],
198 pr_status=data['pullrequest']['status'],
198 pr_title=data['pullrequest']['title'],
199 pr_title=data['pullrequest']['title'],
199 )
200 )
200 )
201 )
201
202
202 def format_pull_request_event(self, event, data):
203 def format_pull_request_event(self, event, data):
203 action = {
204 action = {
204 events.PullRequestCloseEvent: 'closed',
205 events.PullRequestCloseEvent: 'closed',
205 events.PullRequestMergeEvent: 'merged',
206 events.PullRequestMergeEvent: 'merged',
206 events.PullRequestUpdateEvent: 'updated',
207 events.PullRequestUpdateEvent: 'updated',
207 events.PullRequestCreateEvent: 'created',
208 events.PullRequestCreateEvent: 'created',
208 }.get(event.__class__, str(event.__class__))
209 }.get(event.__class__, str(event.__class__))
209
210
210 return ('Pull request <a href="{url}">#{number}</a> - {title} '
211 return ('Pull request <a href="{url}">#{number}</a> - {title} '
211 '{action} by {user}').format(
212 '{action} by {user}').format(
212 user=data['actor']['username'],
213 user=data['actor']['username'],
213 number=data['pullrequest']['pull_request_id'],
214 number=data['pullrequest']['pull_request_id'],
214 url=data['pullrequest']['url'],
215 url=data['pullrequest']['url'],
215 title=data['pullrequest']['title'],
216 title=data['pullrequest']['title'],
216 action=action
217 action=action
217 )
218 )
218
219
219 def format_repo_push_event(self, data):
220 def format_repo_push_event(self, data):
220 result = repo_push_template.render(
221 result = repo_push_template.render(
221 data=data,
222 data=data,
222 )
223 )
223 return result
224 return result
224
225
225 def format_repo_create_event(self, data):
226 def format_repo_create_event(self, data):
226 return '<a href="{}">{}</a> ({}) repository created by <b>{}</b>'.format(
227 return '<a href="{}">{}</a> ({}) repository created by <b>{}</b>'.format(
227 data['repo']['url'],
228 data['repo']['url'],
228 data['repo']['repo_name'],
229 data['repo']['repo_name'],
229 data['repo']['repo_type'],
230 data['repo']['repo_type'],
230 data['actor']['username'],
231 data['actor']['username'],
231 )
232 )
232
233
233
234
234 @task(ignore_result=True)
235 @task(ignore_result=True)
235 def post_text_to_hipchat(settings, text):
236 def post_text_to_hipchat(settings, text):
236 log.debug('sending %s to hipchat %s' % (text, settings['server_url']))
237 log.debug('sending %s to hipchat %s' % (text, settings['server_url']))
237 resp = requests.post(settings['server_url'], json={
238 resp = requests.post(settings['server_url'], json={
238 "message": text,
239 "message": text,
239 "color": settings.get('color', 'yellow'),
240 "color": settings.get('color', 'yellow'),
240 "notify": settings.get('notify', False),
241 "notify": settings.get('notify', False),
241 })
242 })
242 resp.raise_for_status() # raise exception on a failed request
243 resp.raise_for_status() # raise exception on a failed request
@@ -1,253 +1,256 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 from __future__ import unicode_literals
21 from __future__ import unicode_literals
22 import deform
22 import deform
23 import re
23 import re
24 import logging
24 import logging
25 import requests
25 import requests
26 import colander
26 import colander
27 import textwrap
27 import textwrap
28 from celery.task import task
28 from celery.task import task
29 from mako.template import Template
29 from mako.template import Template
30
30
31 from rhodecode import events
31 from rhodecode import events
32 from rhodecode.translation import lazy_ugettext
32 from rhodecode.translation import _
33 from rhodecode.lib import helpers as h
33 from rhodecode.lib import helpers as h
34 from rhodecode.lib.celerylib import run_task
34 from rhodecode.lib.celerylib import run_task
35 from rhodecode.lib.colander_utils import strip_whitespace
35 from rhodecode.lib.colander_utils import strip_whitespace
36 from rhodecode.integrations.types.base import IntegrationTypeBase
36 from rhodecode.integrations.types.base import IntegrationTypeBase
37 from rhodecode.integrations.schema import IntegrationSettingsSchemaBase
38
37
39 log = logging.getLogger(__name__)
38 log = logging.getLogger(__name__)
40
39
41
40
42 class SlackSettingsSchema(IntegrationSettingsSchemaBase):
41 class SlackSettingsSchema(colander.Schema):
43 service = colander.SchemaNode(
42 service = colander.SchemaNode(
44 colander.String(),
43 colander.String(),
45 title=lazy_ugettext('Slack service URL'),
44 title=_('Slack service URL'),
46 description=h.literal(lazy_ugettext(
45 description=h.literal(_(
47 'This can be setup at the '
46 'This can be setup at the '
48 '<a href="https://my.slack.com/services/new/incoming-webhook/">'
47 '<a href="https://my.slack.com/services/new/incoming-webhook/">'
49 'slack app manager</a>')),
48 'slack app manager</a>')),
50 default='',
49 default='',
51 preparer=strip_whitespace,
50 preparer=strip_whitespace,
52 validator=colander.url,
51 validator=colander.url,
53 widget=deform.widget.TextInputWidget(
52 widget=deform.widget.TextInputWidget(
54 placeholder='https://hooks.slack.com/services/...',
53 placeholder='https://hooks.slack.com/services/...',
55 ),
54 ),
56 )
55 )
57 username = colander.SchemaNode(
56 username = colander.SchemaNode(
58 colander.String(),
57 colander.String(),
59 title=lazy_ugettext('Username'),
58 title=_('Username'),
60 description=lazy_ugettext('Username to show notifications coming from.'),
59 description=_('Username to show notifications coming from.'),
61 missing='Rhodecode',
60 missing='Rhodecode',
62 preparer=strip_whitespace,
61 preparer=strip_whitespace,
63 widget=deform.widget.TextInputWidget(
62 widget=deform.widget.TextInputWidget(
64 placeholder='Rhodecode'
63 placeholder='Rhodecode'
65 ),
64 ),
66 )
65 )
67 channel = colander.SchemaNode(
66 channel = colander.SchemaNode(
68 colander.String(),
67 colander.String(),
69 title=lazy_ugettext('Channel'),
68 title=_('Channel'),
70 description=lazy_ugettext('Channel to send notifications to.'),
69 description=_('Channel to send notifications to.'),
71 missing='',
70 missing='',
72 preparer=strip_whitespace,
71 preparer=strip_whitespace,
73 widget=deform.widget.TextInputWidget(
72 widget=deform.widget.TextInputWidget(
74 placeholder='#general'
73 placeholder='#general'
75 ),
74 ),
76 )
75 )
77 icon_emoji = colander.SchemaNode(
76 icon_emoji = colander.SchemaNode(
78 colander.String(),
77 colander.String(),
79 title=lazy_ugettext('Emoji'),
78 title=_('Emoji'),
80 description=lazy_ugettext('Emoji to use eg. :studio_microphone:'),
79 description=_('Emoji to use eg. :studio_microphone:'),
81 missing='',
80 missing='',
82 preparer=strip_whitespace,
81 preparer=strip_whitespace,
83 widget=deform.widget.TextInputWidget(
82 widget=deform.widget.TextInputWidget(
84 placeholder=':studio_microphone:'
83 placeholder=':studio_microphone:'
85 ),
84 ),
86 )
85 )
87
86
88
87
89 repo_push_template = Template(r'''
88 repo_push_template = Template(r'''
90 *${data['actor']['username']}* pushed to \
89 *${data['actor']['username']}* pushed to \
91 %if data['push']['branches']:
90 %if data['push']['branches']:
92 ${len(data['push']['branches']) > 1 and 'branches' or 'branch'} \
91 ${len(data['push']['branches']) > 1 and 'branches' or 'branch'} \
93 ${', '.join('<%s|%s>' % (branch['url'], branch['name']) for branch in data['push']['branches'])} \
92 ${', '.join('<%s|%s>' % (branch['url'], branch['name']) for branch in data['push']['branches'])} \
94 %else:
93 %else:
95 unknown branch \
94 unknown branch \
96 %endif
95 %endif
97 in <${data['repo']['url']}|${data['repo']['repo_name']}>
96 in <${data['repo']['url']}|${data['repo']['repo_name']}>
98 >>>
97 >>>
99 %for commit in data['push']['commits']:
98 %for commit in data['push']['commits']:
100 <${commit['url']}|${commit['short_id']}> - ${commit['message_html']|html_to_slack_links}
99 <${commit['url']}|${commit['short_id']}> - ${commit['message_html']|html_to_slack_links}
101 %endfor
100 %endfor
102 ''')
101 ''')
103
102
104
103
104
105
105 class SlackIntegrationType(IntegrationTypeBase):
106 class SlackIntegrationType(IntegrationTypeBase):
106 key = 'slack'
107 key = 'slack'
107 display_name = lazy_ugettext('Slack')
108 display_name = _('Slack')
108 SettingsSchema = SlackSettingsSchema
109 description = _('Send events such as repo pushes and pull requests to '
110 'your slack channel.')
111 icon = '''<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid"><g><path d="M165.963541,15.8384262 C162.07318,3.86308197 149.212328,-2.69009836 137.239082,1.20236066 C125.263738,5.09272131 118.710557,17.9535738 122.603016,29.9268197 L181.550164,211.292328 C185.597902,222.478689 197.682361,228.765377 209.282098,225.426885 C221.381246,221.943607 228.756984,209.093246 224.896,197.21023 C224.749115,196.756984 165.963541,15.8384262 165.963541,15.8384262" fill="#DFA22F"></path><path d="M74.6260984,45.515541 C70.7336393,33.5422951 57.8727869,26.9891148 45.899541,30.8794754 C33.9241967,34.7698361 27.3710164,47.6306885 31.2634754,59.6060328 L90.210623,240.971541 C94.2583607,252.157902 106.34282,258.44459 117.942557,255.104 C130.041705,251.62282 137.417443,238.772459 133.556459,226.887344 C133.409574,226.436197 74.6260984,45.515541 74.6260984,45.515541" fill="#3CB187"></path><path d="M240.161574,166.045377 C252.136918,162.155016 258.688,149.294164 254.797639,137.31882 C250.907279,125.345574 238.046426,118.792393 226.07318,122.682754 L44.7076721,181.632 C33.5213115,185.677639 27.234623,197.762098 30.5731148,209.361836 C34.0563934,221.460984 46.9067541,228.836721 58.7897705,224.975738 C59.2430164,224.828852 240.161574,166.045377 240.161574,166.045377" fill="#CE1E5B"></path><path d="M82.507541,217.270557 C94.312918,213.434754 109.528131,208.491016 125.855475,203.186361 C122.019672,191.380984 117.075934,176.163672 111.76918,159.83423 L68.4191475,173.924721 L82.507541,217.270557" fill="#392538"></path><path d="M173.847082,187.591344 C190.235279,182.267803 205.467279,177.31777 217.195016,173.507148 C213.359213,161.70177 208.413377,146.480262 203.106623,130.146623 L159.75659,144.237115 L173.847082,187.591344" fill="#BB242A"></path><path d="M210.484459,74.7058361 C222.457705,70.8154754 229.010885,57.954623 225.120525,45.9792787 C221.230164,34.0060328 208.369311,27.4528525 196.393967,31.3432131 L15.028459,90.292459 C3.84209836,94.3380984 -2.44459016,106.422557 0.896,118.022295 C4.37718033,130.121443 17.227541,137.49718 29.1126557,133.636197 C29.5638033,133.489311 210.484459,74.7058361 210.484459,74.7058361" fill="#72C5CD"></path><path d="M52.8220328,125.933115 C64.6274098,122.097311 79.8468197,117.151475 96.1762623,111.84682 C90.8527213,95.4565246 85.9026885,80.2245246 82.0920656,68.4946885 L38.731541,82.5872787 L52.8220328,125.933115" fill="#248C73"></path><path d="M144.159475,96.256 C160.551869,90.9303607 175.785967,85.9803279 187.515803,82.1676066 C182.190164,65.7752131 177.240131,50.5390164 173.42741,38.807082 L130.068984,52.8996721 L144.159475,96.256" fill="#62803A"></path></g></svg>'''
109 valid_events = [
112 valid_events = [
110 events.PullRequestCloseEvent,
113 events.PullRequestCloseEvent,
111 events.PullRequestMergeEvent,
114 events.PullRequestMergeEvent,
112 events.PullRequestUpdateEvent,
115 events.PullRequestUpdateEvent,
113 events.PullRequestCommentEvent,
116 events.PullRequestCommentEvent,
114 events.PullRequestReviewEvent,
117 events.PullRequestReviewEvent,
115 events.PullRequestCreateEvent,
118 events.PullRequestCreateEvent,
116 events.RepoPushEvent,
119 events.RepoPushEvent,
117 events.RepoCreateEvent,
120 events.RepoCreateEvent,
118 ]
121 ]
119
122
120 def send_event(self, event):
123 def send_event(self, event):
121 if event.__class__ not in self.valid_events:
124 if event.__class__ not in self.valid_events:
122 log.debug('event not valid: %r' % event)
125 log.debug('event not valid: %r' % event)
123 return
126 return
124
127
125 if event.name not in self.settings['events']:
128 if event.name not in self.settings['events']:
126 log.debug('event ignored: %r' % event)
129 log.debug('event ignored: %r' % event)
127 return
130 return
128
131
129 data = event.as_dict()
132 data = event.as_dict()
130
133
131 text = '*%s* caused a *%s* event' % (
134 text = '*%s* caused a *%s* event' % (
132 data['actor']['username'], event.name)
135 data['actor']['username'], event.name)
133
136
134 log.debug('handling slack event for %s' % event.name)
137 log.debug('handling slack event for %s' % event.name)
135
138
136 if isinstance(event, events.PullRequestCommentEvent):
139 if isinstance(event, events.PullRequestCommentEvent):
137 text = self.format_pull_request_comment_event(event, data)
140 text = self.format_pull_request_comment_event(event, data)
138 elif isinstance(event, events.PullRequestReviewEvent):
141 elif isinstance(event, events.PullRequestReviewEvent):
139 text = self.format_pull_request_review_event(event, data)
142 text = self.format_pull_request_review_event(event, data)
140 elif isinstance(event, events.PullRequestEvent):
143 elif isinstance(event, events.PullRequestEvent):
141 text = self.format_pull_request_event(event, data)
144 text = self.format_pull_request_event(event, data)
142 elif isinstance(event, events.RepoPushEvent):
145 elif isinstance(event, events.RepoPushEvent):
143 text = self.format_repo_push_event(data)
146 text = self.format_repo_push_event(data)
144 elif isinstance(event, events.RepoCreateEvent):
147 elif isinstance(event, events.RepoCreateEvent):
145 text = self.format_repo_create_event(data)
148 text = self.format_repo_create_event(data)
146 else:
149 else:
147 log.error('unhandled event type: %r' % event)
150 log.error('unhandled event type: %r' % event)
148
151
149 run_task(post_text_to_slack, self.settings, text)
152 run_task(post_text_to_slack, self.settings, text)
150
153
151 def settings_schema(self):
154 def settings_schema(self):
152 schema = SlackSettingsSchema()
155 schema = SlackSettingsSchema()
153 schema.add(colander.SchemaNode(
156 schema.add(colander.SchemaNode(
154 colander.Set(),
157 colander.Set(),
155 widget=deform.widget.CheckboxChoiceWidget(
158 widget=deform.widget.CheckboxChoiceWidget(
156 values=sorted(
159 values=sorted(
157 [(e.name, e.display_name) for e in self.valid_events]
160 [(e.name, e.display_name) for e in self.valid_events]
158 )
161 )
159 ),
162 ),
160 description="Events activated for this integration",
163 description="Events activated for this integration",
161 name='events'
164 name='events'
162 ))
165 ))
163
166
164 return schema
167 return schema
165
168
166 def format_pull_request_comment_event(self, event, data):
169 def format_pull_request_comment_event(self, event, data):
167 comment_text = data['comment']['text']
170 comment_text = data['comment']['text']
168 if len(comment_text) > 200:
171 if len(comment_text) > 200:
169 comment_text = '<{comment_url}|{comment_text}...>'.format(
172 comment_text = '<{comment_url}|{comment_text}...>'.format(
170 comment_text=comment_text[:200],
173 comment_text=comment_text[:200],
171 comment_url=data['comment']['url'],
174 comment_url=data['comment']['url'],
172 )
175 )
173
176
174 comment_status = ''
177 comment_status = ''
175 if data['comment']['status']:
178 if data['comment']['status']:
176 comment_status = '[{}]: '.format(data['comment']['status'])
179 comment_status = '[{}]: '.format(data['comment']['status'])
177
180
178 return (textwrap.dedent(
181 return (textwrap.dedent(
179 '''
182 '''
180 {user} commented on pull request <{pr_url}|#{number}> - {pr_title}:
183 {user} commented on pull request <{pr_url}|#{number}> - {pr_title}:
181 >>> {comment_status}{comment_text}
184 >>> {comment_status}{comment_text}
182 ''').format(
185 ''').format(
183 comment_status=comment_status,
186 comment_status=comment_status,
184 user=data['actor']['username'],
187 user=data['actor']['username'],
185 number=data['pullrequest']['pull_request_id'],
188 number=data['pullrequest']['pull_request_id'],
186 pr_url=data['pullrequest']['url'],
189 pr_url=data['pullrequest']['url'],
187 pr_status=data['pullrequest']['status'],
190 pr_status=data['pullrequest']['status'],
188 pr_title=data['pullrequest']['title'],
191 pr_title=data['pullrequest']['title'],
189 comment_text=comment_text
192 comment_text=comment_text
190 )
193 )
191 )
194 )
192
195
193 def format_pull_request_review_event(self, event, data):
196 def format_pull_request_review_event(self, event, data):
194 return (textwrap.dedent(
197 return (textwrap.dedent(
195 '''
198 '''
196 Status changed to {pr_status} for pull request <{pr_url}|#{number}> - {pr_title}
199 Status changed to {pr_status} for pull request <{pr_url}|#{number}> - {pr_title}
197 ''').format(
200 ''').format(
198 user=data['actor']['username'],
201 user=data['actor']['username'],
199 number=data['pullrequest']['pull_request_id'],
202 number=data['pullrequest']['pull_request_id'],
200 pr_url=data['pullrequest']['url'],
203 pr_url=data['pullrequest']['url'],
201 pr_status=data['pullrequest']['status'],
204 pr_status=data['pullrequest']['status'],
202 pr_title=data['pullrequest']['title'],
205 pr_title=data['pullrequest']['title'],
203 )
206 )
204 )
207 )
205
208
206 def format_pull_request_event(self, event, data):
209 def format_pull_request_event(self, event, data):
207 action = {
210 action = {
208 events.PullRequestCloseEvent: 'closed',
211 events.PullRequestCloseEvent: 'closed',
209 events.PullRequestMergeEvent: 'merged',
212 events.PullRequestMergeEvent: 'merged',
210 events.PullRequestUpdateEvent: 'updated',
213 events.PullRequestUpdateEvent: 'updated',
211 events.PullRequestCreateEvent: 'created',
214 events.PullRequestCreateEvent: 'created',
212 }.get(event.__class__, str(event.__class__))
215 }.get(event.__class__, str(event.__class__))
213
216
214 return ('Pull request <{url}|#{number}> - {title} '
217 return ('Pull request <{url}|#{number}> - {title} '
215 '{action} by {user}').format(
218 '{action} by {user}').format(
216 user=data['actor']['username'],
219 user=data['actor']['username'],
217 number=data['pullrequest']['pull_request_id'],
220 number=data['pullrequest']['pull_request_id'],
218 url=data['pullrequest']['url'],
221 url=data['pullrequest']['url'],
219 title=data['pullrequest']['title'],
222 title=data['pullrequest']['title'],
220 action=action
223 action=action
221 )
224 )
222
225
223 def format_repo_push_event(self, data):
226 def format_repo_push_event(self, data):
224 result = repo_push_template.render(
227 result = repo_push_template.render(
225 data=data,
228 data=data,
226 html_to_slack_links=html_to_slack_links,
229 html_to_slack_links=html_to_slack_links,
227 )
230 )
228 return result
231 return result
229
232
230 def format_repo_create_event(self, data):
233 def format_repo_create_event(self, data):
231 return '<{}|{}> ({}) repository created by *{}*'.format(
234 return '<{}|{}> ({}) repository created by *{}*'.format(
232 data['repo']['url'],
235 data['repo']['url'],
233 data['repo']['repo_name'],
236 data['repo']['repo_name'],
234 data['repo']['repo_type'],
237 data['repo']['repo_type'],
235 data['actor']['username'],
238 data['actor']['username'],
236 )
239 )
237
240
238
241
239 def html_to_slack_links(message):
242 def html_to_slack_links(message):
240 return re.compile(r'<a .*?href=["\'](.+?)".*?>(.+?)</a>').sub(
243 return re.compile(r'<a .*?href=["\'](.+?)".*?>(.+?)</a>').sub(
241 r'<\1|\2>', message)
244 r'<\1|\2>', message)
242
245
243
246
244 @task(ignore_result=True)
247 @task(ignore_result=True)
245 def post_text_to_slack(settings, text):
248 def post_text_to_slack(settings, text):
246 log.debug('sending %s to slack %s' % (text, settings['service']))
249 log.debug('sending %s to slack %s' % (text, settings['service']))
247 resp = requests.post(settings['service'], json={
250 resp = requests.post(settings['service'], json={
248 "channel": settings.get('channel', ''),
251 "channel": settings.get('channel', ''),
249 "username": settings.get('username', 'Rhodecode'),
252 "username": settings.get('username', 'Rhodecode'),
250 "text": text,
253 "text": text,
251 "icon_emoji": settings.get('icon_emoji', ':studio_microphone:')
254 "icon_emoji": settings.get('icon_emoji', ':studio_microphone:')
252 })
255 })
253 resp.raise_for_status() # raise exception on a failed request
256 resp.raise_for_status() # raise exception on a failed request
@@ -1,111 +1,117 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 from __future__ import unicode_literals
21 from __future__ import unicode_literals
22
22
23 import deform
23 import deform
24 import logging
24 import logging
25 import requests
25 import requests
26 import colander
26 import colander
27 from celery.task import task
27 from celery.task import task
28 from mako.template import Template
28 from mako.template import Template
29
29
30 from rhodecode import events
30 from rhodecode import events
31 from rhodecode.translation import lazy_ugettext
31 from rhodecode.translation import _
32 from rhodecode.integrations.types.base import IntegrationTypeBase
32 from rhodecode.integrations.types.base import IntegrationTypeBase
33 from rhodecode.integrations.schema import IntegrationSettingsSchemaBase
34
33
35 log = logging.getLogger(__name__)
34 log = logging.getLogger(__name__)
36
35
37
36
38 class WebhookSettingsSchema(IntegrationSettingsSchemaBase):
37 class WebhookSettingsSchema(colander.Schema):
39 url = colander.SchemaNode(
38 url = colander.SchemaNode(
40 colander.String(),
39 colander.String(),
41 title=lazy_ugettext('Webhook URL'),
40 title=_('Webhook URL'),
42 description=lazy_ugettext('URL of the webhook to receive POST event.'),
41 description=_('URL of the webhook to receive POST event.'),
43 default='',
42 missing=colander.required,
43 required=True,
44 validator=colander.url,
44 validator=colander.url,
45 widget=deform.widget.TextInputWidget(
45 widget=deform.widget.TextInputWidget(
46 placeholder='https://www.example.com/webhook'
46 placeholder='https://www.example.com/webhook'
47 ),
47 ),
48 )
48 )
49 secret_token = colander.SchemaNode(
49 secret_token = colander.SchemaNode(
50 colander.String(),
50 colander.String(),
51 title=lazy_ugettext('Secret Token'),
51 title=_('Secret Token'),
52 description=lazy_ugettext('String used to validate received payloads.'),
52 description=_('String used to validate received payloads.'),
53 default='',
53 default='',
54 missing='',
54 widget=deform.widget.TextInputWidget(
55 widget=deform.widget.TextInputWidget(
55 placeholder='secret_token'
56 placeholder='secret_token'
56 ),
57 ),
57 )
58 )
58
59
59
60
61
62
60 class WebhookIntegrationType(IntegrationTypeBase):
63 class WebhookIntegrationType(IntegrationTypeBase):
61 key = 'webhook'
64 key = 'webhook'
62 display_name = lazy_ugettext('Webhook')
65 display_name = _('Webhook')
66 description = _('Post json events to a webhook endpoint')
67 icon = '''<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg viewBox="0 0 256 239" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid"><g><path d="M119.540432,100.502743 C108.930124,118.338815 98.7646301,135.611455 88.3876025,152.753617 C85.7226696,157.154315 84.4040417,160.738531 86.5332204,166.333309 C92.4107024,181.787152 84.1193605,196.825836 68.5350381,200.908244 C53.8383677,204.759349 39.5192953,195.099955 36.6032893,179.365384 C34.0194114,165.437749 44.8274148,151.78491 60.1824106,149.608284 C61.4694072,149.424428 62.7821041,149.402681 64.944891,149.240571 C72.469175,136.623655 80.1773157,123.700312 88.3025935,110.073173 C73.611854,95.4654658 64.8677898,78.3885437 66.803227,57.2292132 C68.1712787,42.2715849 74.0527146,29.3462646 84.8033863,18.7517722 C105.393354,-1.53572199 136.805164,-4.82141828 161.048542,10.7510424 C184.333097,25.7086706 194.996783,54.8450075 185.906752,79.7822957 C179.052655,77.9239597 172.151111,76.049808 164.563565,73.9917997 C167.418285,60.1274266 165.306899,47.6765751 155.95591,37.0109123 C149.777932,29.9690049 141.850349,26.2780332 132.835442,24.9178894 C114.764113,22.1877169 97.0209573,33.7983633 91.7563309,51.5355878 C85.7800012,71.6669027 94.8245623,88.1111998 119.540432,100.502743 L119.540432,100.502743 Z" fill="#C73A63"></path><path d="M149.841194,79.4106285 C157.316054,92.5969067 164.905578,105.982857 172.427885,119.246236 C210.44865,107.483365 239.114472,128.530009 249.398582,151.063322 C261.81978,178.282014 253.328765,210.520191 228.933162,227.312431 C203.893073,244.551464 172.226236,241.605803 150.040866,219.46195 C155.694953,214.729124 161.376716,209.974552 167.44794,204.895759 C189.360489,219.088306 208.525074,218.420096 222.753207,201.614016 C234.885769,187.277151 234.622834,165.900356 222.138374,151.863988 C207.730339,135.66681 188.431321,135.172572 165.103273,150.721309 C155.426087,133.553447 145.58086,116.521995 136.210101,99.2295848 C133.05093,93.4015266 129.561608,90.0209366 122.440622,88.7873178 C110.547271,86.7253555 102.868785,76.5124151 102.408155,65.0698097 C101.955433,53.7537294 108.621719,43.5249733 119.04224,39.5394355 C129.363912,35.5914599 141.476705,38.7783085 148.419765,47.554004 C154.093621,54.7244134 155.896602,62.7943365 152.911402,71.6372484 C152.081082,74.1025091 151.00562,76.4886916 149.841194,79.4106285 L149.841194,79.4106285 Z" fill="#4B4B4B"></path><path d="M167.706921,187.209935 L121.936499,187.209935 C117.54964,205.253587 108.074103,219.821756 91.7464461,229.085759 C79.0544063,236.285822 65.3738898,238.72736 50.8136292,236.376762 C24.0061432,232.053165 2.08568567,207.920497 0.156179306,180.745298 C-2.02835403,149.962159 19.1309765,122.599149 47.3341915,116.452801 C49.2814904,123.524363 51.2485589,130.663141 53.1958579,137.716911 C27.3195169,150.919004 18.3639187,167.553089 25.6054984,188.352614 C31.9811726,206.657224 50.0900643,216.690262 69.7528413,212.809503 C89.8327554,208.847688 99.9567329,192.160226 98.7211371,165.37844 C117.75722,165.37844 136.809118,165.180745 155.847178,165.475311 C163.280522,165.591951 169.019617,164.820939 174.620326,158.267339 C183.840836,147.48306 200.811003,148.455721 210.741239,158.640984 C220.88894,169.049642 220.402609,185.79839 209.663799,195.768166 C199.302587,205.38802 182.933414,204.874012 173.240413,194.508846 C171.247644,192.37176 169.677943,189.835329 167.706921,187.209935 L167.706921,187.209935 Z" fill="#4A4A4A"></path></g></svg>'''
68
63 valid_events = [
69 valid_events = [
64 events.PullRequestCloseEvent,
70 events.PullRequestCloseEvent,
65 events.PullRequestMergeEvent,
71 events.PullRequestMergeEvent,
66 events.PullRequestUpdateEvent,
72 events.PullRequestUpdateEvent,
67 events.PullRequestCommentEvent,
73 events.PullRequestCommentEvent,
68 events.PullRequestReviewEvent,
74 events.PullRequestReviewEvent,
69 events.PullRequestCreateEvent,
75 events.PullRequestCreateEvent,
70 events.RepoPushEvent,
76 events.RepoPushEvent,
71 events.RepoCreateEvent,
77 events.RepoCreateEvent,
72 ]
78 ]
73
79
74 def settings_schema(self):
80 def settings_schema(self):
75 schema = WebhookSettingsSchema()
81 schema = WebhookSettingsSchema()
76 schema.add(colander.SchemaNode(
82 schema.add(colander.SchemaNode(
77 colander.Set(),
83 colander.Set(),
78 widget=deform.widget.CheckboxChoiceWidget(
84 widget=deform.widget.CheckboxChoiceWidget(
79 values=sorted(
85 values=sorted(
80 [(e.name, e.display_name) for e in self.valid_events]
86 [(e.name, e.display_name) for e in self.valid_events]
81 )
87 )
82 ),
88 ),
83 description="Events activated for this integration",
89 description="Events activated for this integration",
84 name='events'
90 name='events'
85 ))
91 ))
86 return schema
92 return schema
87
93
88 def send_event(self, event):
94 def send_event(self, event):
89 log.debug('handling event %s with webhook integration %s',
95 log.debug('handling event %s with webhook integration %s',
90 event.name, self)
96 event.name, self)
91
97
92 if event.__class__ not in self.valid_events:
98 if event.__class__ not in self.valid_events:
93 log.debug('event not valid: %r' % event)
99 log.debug('event not valid: %r' % event)
94 return
100 return
95
101
96 if event.name not in self.settings['events']:
102 if event.name not in self.settings['events']:
97 log.debug('event ignored: %r' % event)
103 log.debug('event ignored: %r' % event)
98 return
104 return
99
105
100 data = event.as_dict()
106 data = event.as_dict()
101 post_to_webhook(data, self.settings)
107 post_to_webhook(data, self.settings)
102
108
103
109
104 @task(ignore_result=True)
110 @task(ignore_result=True)
105 def post_to_webhook(data, settings):
111 def post_to_webhook(data, settings):
106 log.debug('sending event:%s to webhook %s', data['name'], settings['url'])
112 log.debug('sending event:%s to webhook %s', data['name'], settings['url'])
107 resp = requests.post(settings['url'], json={
113 resp = requests.post(settings['url'], json={
108 'token': settings['secret_token'],
114 'token': settings['secret_token'],
109 'event': data
115 'event': data
110 })
116 })
111 resp.raise_for_status() # raise exception on a failed request
117 resp.raise_for_status() # raise exception on a failed request
@@ -1,299 +1,385 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2012-2016 RhodeCode GmbH
3 # Copyright (C) 2012-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import colander
22 import logging
23 import pylons
21 import pylons
24 import deform
22 import deform
23 import logging
24 import colander
25 import peppercorn
26 import webhelpers.paginate
25
27
26 from pyramid.httpexceptions import HTTPFound, HTTPForbidden
28 from pyramid.httpexceptions import HTTPFound, HTTPForbidden, HTTPBadRequest
27 from pyramid.renderers import render
29 from pyramid.renderers import render
28 from pyramid.response import Response
30 from pyramid.response import Response
29
31
30 from rhodecode.lib import auth
32 from rhodecode.lib import auth
31 from rhodecode.lib.auth import LoginRequired, HasPermissionAllDecorator
33 from rhodecode.lib.auth import LoginRequired, HasPermissionAllDecorator
34 from rhodecode.lib.utils2 import safe_int
35 from rhodecode.lib.helpers import Page
32 from rhodecode.model.db import Repository, RepoGroup, Session, Integration
36 from rhodecode.model.db import Repository, RepoGroup, Session, Integration
33 from rhodecode.model.scm import ScmModel
37 from rhodecode.model.scm import ScmModel
34 from rhodecode.model.integration import IntegrationModel
38 from rhodecode.model.integration import IntegrationModel
35 from rhodecode.admin.navigation import navigation_list
39 from rhodecode.admin.navigation import navigation_list
36 from rhodecode.translation import _
40 from rhodecode.translation import _
37 from rhodecode.integrations import integration_type_registry
41 from rhodecode.integrations import integration_type_registry
42 from rhodecode.model.validation_schema.schemas.integration_schema import (
43 make_integration_schema)
38
44
39 log = logging.getLogger(__name__)
45 log = logging.getLogger(__name__)
40
46
41
47
42 class IntegrationSettingsViewBase(object):
48 class IntegrationSettingsViewBase(object):
43 """ Base Integration settings view used by both repo / global settings """
49 """ Base Integration settings view used by both repo / global settings """
44
50
45 def __init__(self, context, request):
51 def __init__(self, context, request):
46 self.context = context
52 self.context = context
47 self.request = request
53 self.request = request
48 self._load_general_context()
54 self._load_general_context()
49
55
50 if not self.perm_check(request.user):
56 if not self.perm_check(request.user):
51 raise HTTPForbidden()
57 raise HTTPForbidden()
52
58
53 def _load_general_context(self):
59 def _load_general_context(self):
54 """
60 """
55 This avoids boilerplate for repo/global+list/edit+views/templates
61 This avoids boilerplate for repo/global+list/edit+views/templates
56 by doing all possible contexts at the same time however it should
62 by doing all possible contexts at the same time however it should
57 be split up into separate functions once more "contexts" exist
63 be split up into separate functions once more "contexts" exist
58 """
64 """
59
65
60 self.IntegrationType = None
66 self.IntegrationType = None
61 self.repo = None
67 self.repo = None
62 self.repo_group = None
68 self.repo_group = None
63 self.integration = None
69 self.integration = None
64 self.integrations = {}
70 self.integrations = {}
65
71
66 request = self.request
72 request = self.request
67
73
68 if 'repo_name' in request.matchdict: # we're in a repo context
74 if 'repo_name' in request.matchdict: # in repo settings context
69 repo_name = request.matchdict['repo_name']
75 repo_name = request.matchdict['repo_name']
70 self.repo = Repository.get_by_repo_name(repo_name)
76 self.repo = Repository.get_by_repo_name(repo_name)
71
77
72 if 'repo_group_name' in request.matchdict: # we're in repo_group context
78 if 'repo_group_name' in request.matchdict: # in group settings context
73 repo_group_name = request.matchdict['repo_group_name']
79 repo_group_name = request.matchdict['repo_group_name']
74 self.repo_group = RepoGroup.get_by_group_name(repo_group_name)
80 self.repo_group = RepoGroup.get_by_group_name(repo_group_name)
75
81
76 if 'integration' in request.matchdict: # we're in integration context
82
83 if 'integration' in request.matchdict: # integration type context
77 integration_type = request.matchdict['integration']
84 integration_type = request.matchdict['integration']
78 self.IntegrationType = integration_type_registry[integration_type]
85 self.IntegrationType = integration_type_registry[integration_type]
79
86
80 if 'integration_id' in request.matchdict: # single integration context
87 if 'integration_id' in request.matchdict: # single integration context
81 integration_id = request.matchdict['integration_id']
88 integration_id = request.matchdict['integration_id']
82 self.integration = Integration.get(integration_id)
89 self.integration = Integration.get(integration_id)
83 else: # list integrations context
84 integrations = IntegrationModel().get_integrations(
85 repo=self.repo, repo_group=self.repo_group)
86
90
87 for integration in integrations:
91 # extra perms check just in case
88 self.integrations.setdefault(integration.integration_type, []
92 if not self._has_perms_for_integration(self.integration):
89 ).append(integration)
93 raise HTTPForbidden()
90
94
91 self.settings = self.integration and self.integration.settings or {}
95 self.settings = self.integration and self.integration.settings or {}
96 self.admin_view = not (self.repo or self.repo_group)
97
98 def _has_perms_for_integration(self, integration):
99 perms = self.request.user.permissions
100
101 if 'hg.admin' in perms['global']:
102 return True
103
104 if integration.repo:
105 return perms['repositories'].get(
106 integration.repo.repo_name) == 'repository.admin'
107
108 if integration.repo_group:
109 return perms['repositories_groups'].get(
110 integration.repo_group.group_name) == 'group.admin'
111
112 return False
92
113
93 def _template_c_context(self):
114 def _template_c_context(self):
94 # TODO: dan: this is a stopgap in order to inherit from current pylons
115 # TODO: dan: this is a stopgap in order to inherit from current pylons
95 # based admin/repo settings templates - this should be removed entirely
116 # based admin/repo settings templates - this should be removed entirely
96 # after port to pyramid
117 # after port to pyramid
97
118
98 c = pylons.tmpl_context
119 c = pylons.tmpl_context
99 c.active = 'integrations'
120 c.active = 'integrations'
100 c.rhodecode_user = self.request.user
121 c.rhodecode_user = self.request.user
101 c.repo = self.repo
122 c.repo = self.repo
102 c.repo_group = self.repo_group
123 c.repo_group = self.repo_group
103 c.repo_name = self.repo and self.repo.repo_name or None
124 c.repo_name = self.repo and self.repo.repo_name or None
104 c.repo_group_name = self.repo_group and self.repo_group.group_name or None
125 c.repo_group_name = self.repo_group and self.repo_group.group_name or None
126
105 if self.repo:
127 if self.repo:
106 c.repo_info = self.repo
128 c.repo_info = self.repo
107 c.rhodecode_db_repo = self.repo
129 c.rhodecode_db_repo = self.repo
108 c.repository_pull_requests = ScmModel().get_pull_requests(self.repo)
130 c.repository_pull_requests = ScmModel().get_pull_requests(self.repo)
109 else:
131 else:
110 c.navlist = navigation_list(self.request)
132 c.navlist = navigation_list(self.request)
111
133
112 return c
134 return c
113
135
114 def _form_schema(self):
136 def _form_schema(self):
115 if self.integration:
137 schema = make_integration_schema(IntegrationType=self.IntegrationType,
116 settings = self.integration.settings
138 settings=self.settings)
117 else:
118 settings = {}
119 return self.IntegrationType(settings=settings).settings_schema()
120
139
121 def settings_get(self, defaults=None, errors=None, form=None):
140 # returns a clone, important if mutating the schema later
122 """
141 return schema.bind(
123 View that displays the plugin settings as a form.
142 permissions=self.request.user.permissions,
124 """
143 no_scope=not self.admin_view)
125 defaults = defaults or {}
144
126 errors = errors or {}
145
146 def _form_defaults(self):
147 defaults = {}
127
148
128 if self.integration:
149 if self.integration:
129 defaults = self.integration.settings or {}
150 defaults['settings'] = self.integration.settings or {}
130 defaults['name'] = self.integration.name
151 defaults['options'] = {
131 defaults['enabled'] = self.integration.enabled
152 'name': self.integration.name,
153 'enabled': self.integration.enabled,
154 'scope': self.integration.scope,
155 }
132 else:
156 else:
133 if self.repo:
157 if self.repo:
134 scope = _('{repo_name} repository').format(
158 scope = _('{repo_name} repository').format(
135 repo_name=self.repo.repo_name)
159 repo_name=self.repo.repo_name)
136 elif self.repo_group:
160 elif self.repo_group:
137 scope = _('{repo_group_name} repo group').format(
161 scope = _('{repo_group_name} repo group').format(
138 repo_group_name=self.repo_group.group_name)
162 repo_group_name=self.repo_group.group_name)
139 else:
163 else:
140 scope = _('Global')
164 scope = _('Global')
141
165
142 defaults['name'] = '{} {} integration'.format(scope,
166 defaults['options'] = {
143 self.IntegrationType.display_name)
167 'enabled': True,
144 defaults['enabled'] = True
168 'name': _('{name} integration').format(
169 name=self.IntegrationType.display_name),
170 }
171 if self.repo:
172 defaults['options']['scope'] = self.repo
173 elif self.repo_group:
174 defaults['options']['scope'] = self.repo_group
175
176 return defaults
145
177
146 schema = self._form_schema().bind(request=self.request)
178 def _delete_integration(self, integration):
179 Session().delete(self.integration)
180 Session().commit()
181 self.request.session.flash(
182 _('Integration {integration_name} deleted successfully.').format(
183 integration_name=self.integration.name),
184 queue='success')
185
186 if self.repo:
187 redirect_to = self.request.route_url(
188 'repo_integrations_home', repo_name=self.repo.repo_name)
189 elif self.repo_group:
190 redirect_to = self.request.route_url(
191 'repo_group_integrations_home',
192 repo_group_name=self.repo_group.group_name)
193 else:
194 redirect_to = self.request.route_url('global_integrations_home')
195 raise HTTPFound(redirect_to)
196
197 def settings_get(self, defaults=None, form=None):
198 """
199 View that displays the integration settings as a form.
200 """
201
202 defaults = defaults or self._form_defaults()
203 schema = self._form_schema()
147
204
148 if self.integration:
205 if self.integration:
149 buttons = ('submit', 'delete')
206 buttons = ('submit', 'delete')
150 else:
207 else:
151 buttons = ('submit',)
208 buttons = ('submit',)
152
209
153 form = form or deform.Form(schema, appstruct=defaults, buttons=buttons)
210 form = form or deform.Form(schema, appstruct=defaults, buttons=buttons)
154
211
155 for node in schema:
156 setting = self.settings.get(node.name)
157 if setting is not None:
158 defaults.setdefault(node.name, setting)
159 else:
160 if node.default:
161 defaults.setdefault(node.name, node.default)
162
163 template_context = {
212 template_context = {
164 'form': form,
213 'form': form,
165 'defaults': defaults,
166 'errors': errors,
167 'schema': schema,
168 'current_IntegrationType': self.IntegrationType,
214 'current_IntegrationType': self.IntegrationType,
169 'integration': self.integration,
215 'integration': self.integration,
170 'settings': self.settings,
171 'resource': self.context,
172 'c': self._template_c_context(),
216 'c': self._template_c_context(),
173 }
217 }
174
218
175 return template_context
219 return template_context
176
220
177 @auth.CSRFRequired()
221 @auth.CSRFRequired()
178 def settings_post(self):
222 def settings_post(self):
179 """
223 """
180 View that validates and stores the plugin settings.
224 View that validates and stores the integration settings.
181 """
225 """
182 if self.request.params.get('delete'):
226 controls = self.request.POST.items()
183 Session().delete(self.integration)
227 pstruct = peppercorn.parse(controls)
184 Session().commit()
228
185 self.request.session.flash(
229 if self.integration and pstruct.get('delete'):
186 _('Integration {integration_name} deleted successfully.').format(
230 return self._delete_integration(self.integration)
187 integration_name=self.integration.name),
231
188 queue='success')
232 schema = self._form_schema()
189 if self.repo:
233
190 redirect_to = self.request.route_url(
234 skip_settings_validation = False
191 'repo_integrations_home', repo_name=self.repo.repo_name)
235 if self.integration and 'enabled' not in pstruct.get('options', {}):
192 else:
236 skip_settings_validation = True
193 redirect_to = self.request.route_url('global_integrations_home')
237 schema['settings'].validator = None
194 raise HTTPFound(redirect_to)
238 for field in schema['settings'].children:
239 field.validator = None
240 field.missing = ''
195
241
196 schema = self._form_schema().bind(request=self.request)
242 if self.integration:
243 buttons = ('submit', 'delete')
244 else:
245 buttons = ('submit',)
197
246
198 form = deform.Form(schema, buttons=('submit', 'delete'))
247 form = deform.Form(schema, buttons=buttons)
199
248
200 params = {}
249 if not self.admin_view:
201 for node in schema.children:
250 # scope is read only field in these cases, and has to be added
202 if type(node.typ) in (colander.Set, colander.List):
251 options = pstruct.setdefault('options', {})
203 val = self.request.params.getall(node.name)
252 if 'scope' not in options:
204 else:
253 if self.repo:
205 val = self.request.params.get(node.name)
254 options['scope'] = 'repo:{}'.format(self.repo.repo_name)
206 if val:
255 elif self.repo_group:
207 params[node.name] = val
256 options['scope'] = 'repogroup:{}'.format(
257 self.repo_group.group_name)
208
258
209 controls = self.request.POST.items()
210 try:
259 try:
211 valid_data = form.validate(controls)
260 valid_data = form.validate_pstruct(pstruct)
212 except deform.ValidationFailure as e:
261 except deform.ValidationFailure as e:
213 self.request.session.flash(
262 self.request.session.flash(
214 _('Errors exist when saving integration settings. '
263 _('Errors exist when saving integration settings. '
215 'Please check the form inputs.'),
264 'Please check the form inputs.'),
216 queue='error')
265 queue='error')
217 return self.settings_get(errors={}, defaults=params, form=e)
266 return self.settings_get(form=e)
218
267
219 if not self.integration:
268 if not self.integration:
220 self.integration = Integration()
269 self.integration = Integration()
221 self.integration.integration_type = self.IntegrationType.key
270 self.integration.integration_type = self.IntegrationType.key
222 if self.repo:
223 self.integration.repo = self.repo
224 elif self.repo_group:
225 self.integration.repo_group = self.repo_group
226 Session().add(self.integration)
271 Session().add(self.integration)
227
272
228 self.integration.enabled = valid_data.pop('enabled', False)
273 scope = valid_data['options']['scope']
229 self.integration.name = valid_data.pop('name')
230 self.integration.settings = valid_data
231
274
275 IntegrationModel().update_integration(self.integration,
276 name=valid_data['options']['name'],
277 enabled=valid_data['options']['enabled'],
278 settings=valid_data['settings'],
279 scope=scope)
280
281 self.integration.settings = valid_data['settings']
232 Session().commit()
282 Session().commit()
233
234 # Display success message and redirect.
283 # Display success message and redirect.
235 self.request.session.flash(
284 self.request.session.flash(
236 _('Integration {integration_name} updated successfully.').format(
285 _('Integration {integration_name} updated successfully.').format(
237 integration_name=self.IntegrationType.display_name),
286 integration_name=self.IntegrationType.display_name),
238 queue='success')
287 queue='success')
239
288
240 if self.repo:
289
241 redirect_to = self.request.route_url(
290 # if integration scope changes, we must redirect to the right place
242 'repo_integrations_edit', repo_name=self.repo.repo_name,
291 # keeping in mind if the original view was for /repo/ or /_admin/
292 admin_view = not (self.repo or self.repo_group)
293
294 if isinstance(self.integration.scope, Repository) and not admin_view:
295 redirect_to = self.request.route_path(
296 'repo_integrations_edit',
297 repo_name=self.integration.scope.repo_name,
243 integration=self.integration.integration_type,
298 integration=self.integration.integration_type,
244 integration_id=self.integration.integration_id)
299 integration_id=self.integration.integration_id)
245 elif self.repo:
300 elif isinstance(self.integration.scope, RepoGroup) and not admin_view:
246 redirect_to = self.request.route_url(
301 redirect_to = self.request.route_path(
247 'repo_group_integrations_edit',
302 'repo_group_integrations_edit',
248 repo_group_name=self.repo_group.group_name,
303 repo_group_name=self.integration.scope.group_name,
249 integration=self.integration.integration_type,
304 integration=self.integration.integration_type,
250 integration_id=self.integration.integration_id)
305 integration_id=self.integration.integration_id)
251 else:
306 else:
252 redirect_to = self.request.route_url(
307 redirect_to = self.request.route_path(
253 'global_integrations_edit',
308 'global_integrations_edit',
254 integration=self.integration.integration_type,
309 integration=self.integration.integration_type,
255 integration_id=self.integration.integration_id)
310 integration_id=self.integration.integration_id)
256
311
257 return HTTPFound(redirect_to)
312 return HTTPFound(redirect_to)
258
313
259 def index(self):
314 def index(self):
260 current_integrations = self.integrations
315 """ List integrations """
261 if self.IntegrationType:
316 if self.repo:
262 current_integrations = {
317 scope = self.repo
263 self.IntegrationType.key: self.integrations.get(
318 elif self.repo_group:
264 self.IntegrationType.key, [])
319 scope = self.repo_group
265 }
320 else:
321 scope = 'all'
322
323 integrations = []
324
325 for integration in IntegrationModel().get_integrations(
326 scope=scope, IntegrationType=self.IntegrationType):
327
328 # extra permissions check *just in case*
329 if not self._has_perms_for_integration(integration):
330 continue
331 integrations.append(integration)
332
333 sort_arg = self.request.GET.get('sort', 'name:asc')
334 if ':' in sort_arg:
335 sort_field, sort_dir = sort_arg.split(':')
336 else:
337 sort_field = sort_arg, 'asc'
338
339 assert sort_field in ('name', 'integration_type', 'enabled', 'scope')
340
341 integrations.sort(
342 key=lambda x: getattr(x[1], sort_field), reverse=(sort_dir=='desc'))
343
344
345 page_url = webhelpers.paginate.PageURL(
346 self.request.path, self.request.GET)
347 page = safe_int(self.request.GET.get('page', 1), 1)
348
349 integrations = Page(integrations, page=page, items_per_page=10,
350 url=page_url)
266
351
267 template_context = {
352 template_context = {
353 'sort_field': sort_field,
354 'rev_sort_dir': sort_dir != 'desc' and 'desc' or 'asc',
268 'current_IntegrationType': self.IntegrationType,
355 'current_IntegrationType': self.IntegrationType,
269 'current_integrations': current_integrations,
356 'integrations_list': integrations,
270 'available_integrations': integration_type_registry,
357 'available_integrations': integration_type_registry,
271 'c': self._template_c_context()
358 'c': self._template_c_context(),
359 'request': self.request,
272 }
360 }
361 return template_context
273
362
274 if self.repo:
363 def new_integration(self):
275 html = render('rhodecode:templates/admin/integrations/list.html',
364 template_context = {
276 template_context,
365 'available_integrations': integration_type_registry,
277 request=self.request)
366 'c': self._template_c_context(),
278 else:
367 }
279 html = render('rhodecode:templates/admin/integrations/list.html',
368 return template_context
280 template_context,
281 request=self.request)
282
283 return Response(html)
284
285
369
286 class GlobalIntegrationsView(IntegrationSettingsViewBase):
370 class GlobalIntegrationsView(IntegrationSettingsViewBase):
287 def perm_check(self, user):
371 def perm_check(self, user):
288 return auth.HasPermissionAll('hg.admin').check_permissions(user=user)
372 return auth.HasPermissionAll('hg.admin').check_permissions(user=user)
289
373
290
374
291 class RepoIntegrationsView(IntegrationSettingsViewBase):
375 class RepoIntegrationsView(IntegrationSettingsViewBase):
292 def perm_check(self, user):
376 def perm_check(self, user):
293 return auth.HasRepoPermissionAll('repository.admin'
377 return auth.HasRepoPermissionAll('repository.admin'
294 )(repo_name=self.repo.repo_name, user=user)
378 )(repo_name=self.repo.repo_name, user=user)
295
379
380
296 class RepoGroupIntegrationsView(IntegrationSettingsViewBase):
381 class RepoGroupIntegrationsView(IntegrationSettingsViewBase):
297 def perm_check(self, user):
382 def perm_check(self, user):
298 return auth.HasRepoGroupPermissionAll('group.admin'
383 return auth.HasRepoGroupPermissionAll('group.admin'
299 )(group_name=self.repo_group.group_name, user=user)
384 )(group_name=self.repo_group.group_name, user=user)
385
@@ -1,3506 +1,3505 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 """
21 """
22 Database Models for RhodeCode Enterprise
22 Database Models for RhodeCode Enterprise
23 """
23 """
24
24
25 import os
25 import os
26 import sys
26 import sys
27 import time
27 import time
28 import hashlib
28 import hashlib
29 import logging
29 import logging
30 import datetime
30 import datetime
31 import warnings
31 import warnings
32 import ipaddress
32 import ipaddress
33 import functools
33 import functools
34 import traceback
34 import traceback
35 import collections
35 import collections
36
36
37
37
38 from sqlalchemy import *
38 from sqlalchemy import *
39 from sqlalchemy.exc import IntegrityError
39 from sqlalchemy.exc import IntegrityError
40 from sqlalchemy.ext.declarative import declared_attr
40 from sqlalchemy.ext.declarative import declared_attr
41 from sqlalchemy.ext.hybrid import hybrid_property
41 from sqlalchemy.ext.hybrid import hybrid_property
42 from sqlalchemy.orm import (
42 from sqlalchemy.orm import (
43 relationship, joinedload, class_mapper, validates, aliased)
43 relationship, joinedload, class_mapper, validates, aliased)
44 from sqlalchemy.sql.expression import true
44 from sqlalchemy.sql.expression import true
45 from beaker.cache import cache_region, region_invalidate
45 from beaker.cache import cache_region, region_invalidate
46 from webob.exc import HTTPNotFound
46 from webob.exc import HTTPNotFound
47 from zope.cachedescriptors.property import Lazy as LazyProperty
47 from zope.cachedescriptors.property import Lazy as LazyProperty
48
48
49 from pylons import url
49 from pylons import url
50 from pylons.i18n.translation import lazy_ugettext as _
50 from pylons.i18n.translation import lazy_ugettext as _
51
51
52 from rhodecode.lib.vcs import get_backend, get_vcs_instance
52 from rhodecode.lib.vcs import get_backend, get_vcs_instance
53 from rhodecode.lib.vcs.utils.helpers import get_scm
53 from rhodecode.lib.vcs.utils.helpers import get_scm
54 from rhodecode.lib.vcs.exceptions import VCSError
54 from rhodecode.lib.vcs.exceptions import VCSError
55 from rhodecode.lib.vcs.backends.base import (
55 from rhodecode.lib.vcs.backends.base import (
56 EmptyCommit, Reference, MergeFailureReason)
56 EmptyCommit, Reference, MergeFailureReason)
57 from rhodecode.lib.utils2 import (
57 from rhodecode.lib.utils2 import (
58 str2bool, safe_str, get_commit_safe, safe_unicode, remove_prefix, md5_safe,
58 str2bool, safe_str, get_commit_safe, safe_unicode, remove_prefix, md5_safe,
59 time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict)
59 time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict)
60 from rhodecode.lib.jsonalchemy import MutationObj, JsonType, JSONDict
60 from rhodecode.lib.jsonalchemy import MutationObj, JsonType, JSONDict
61 from rhodecode.lib.ext_json import json
61 from rhodecode.lib.ext_json import json
62 from rhodecode.lib.caching_query import FromCache
62 from rhodecode.lib.caching_query import FromCache
63 from rhodecode.lib.encrypt import AESCipher
63 from rhodecode.lib.encrypt import AESCipher
64
64
65 from rhodecode.model.meta import Base, Session
65 from rhodecode.model.meta import Base, Session
66
66
67 URL_SEP = '/'
67 URL_SEP = '/'
68 log = logging.getLogger(__name__)
68 log = logging.getLogger(__name__)
69
69
70 # =============================================================================
70 # =============================================================================
71 # BASE CLASSES
71 # BASE CLASSES
72 # =============================================================================
72 # =============================================================================
73
73
74 # this is propagated from .ini file rhodecode.encrypted_values.secret or
74 # this is propagated from .ini file rhodecode.encrypted_values.secret or
75 # beaker.session.secret if first is not set.
75 # beaker.session.secret if first is not set.
76 # and initialized at environment.py
76 # and initialized at environment.py
77 ENCRYPTION_KEY = None
77 ENCRYPTION_KEY = None
78
78
79 # used to sort permissions by types, '#' used here is not allowed to be in
79 # used to sort permissions by types, '#' used here is not allowed to be in
80 # usernames, and it's very early in sorted string.printable table.
80 # usernames, and it's very early in sorted string.printable table.
81 PERMISSION_TYPE_SORT = {
81 PERMISSION_TYPE_SORT = {
82 'admin': '####',
82 'admin': '####',
83 'write': '###',
83 'write': '###',
84 'read': '##',
84 'read': '##',
85 'none': '#',
85 'none': '#',
86 }
86 }
87
87
88
88
89 def display_sort(obj):
89 def display_sort(obj):
90 """
90 """
91 Sort function used to sort permissions in .permissions() function of
91 Sort function used to sort permissions in .permissions() function of
92 Repository, RepoGroup, UserGroup. Also it put the default user in front
92 Repository, RepoGroup, UserGroup. Also it put the default user in front
93 of all other resources
93 of all other resources
94 """
94 """
95
95
96 if obj.username == User.DEFAULT_USER:
96 if obj.username == User.DEFAULT_USER:
97 return '#####'
97 return '#####'
98 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
98 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
99 return prefix + obj.username
99 return prefix + obj.username
100
100
101
101
102 def _hash_key(k):
102 def _hash_key(k):
103 return md5_safe(k)
103 return md5_safe(k)
104
104
105
105
106 class EncryptedTextValue(TypeDecorator):
106 class EncryptedTextValue(TypeDecorator):
107 """
107 """
108 Special column for encrypted long text data, use like::
108 Special column for encrypted long text data, use like::
109
109
110 value = Column("encrypted_value", EncryptedValue(), nullable=False)
110 value = Column("encrypted_value", EncryptedValue(), nullable=False)
111
111
112 This column is intelligent so if value is in unencrypted form it return
112 This column is intelligent so if value is in unencrypted form it return
113 unencrypted form, but on save it always encrypts
113 unencrypted form, but on save it always encrypts
114 """
114 """
115 impl = Text
115 impl = Text
116
116
117 def process_bind_param(self, value, dialect):
117 def process_bind_param(self, value, dialect):
118 if not value:
118 if not value:
119 return value
119 return value
120 if value.startswith('enc$aes$') or value.startswith('enc$aes_hmac$'):
120 if value.startswith('enc$aes$') or value.startswith('enc$aes_hmac$'):
121 # protect against double encrypting if someone manually starts
121 # protect against double encrypting if someone manually starts
122 # doing
122 # doing
123 raise ValueError('value needs to be in unencrypted format, ie. '
123 raise ValueError('value needs to be in unencrypted format, ie. '
124 'not starting with enc$aes')
124 'not starting with enc$aes')
125 return 'enc$aes_hmac$%s' % AESCipher(
125 return 'enc$aes_hmac$%s' % AESCipher(
126 ENCRYPTION_KEY, hmac=True).encrypt(value)
126 ENCRYPTION_KEY, hmac=True).encrypt(value)
127
127
128 def process_result_value(self, value, dialect):
128 def process_result_value(self, value, dialect):
129 import rhodecode
129 import rhodecode
130
130
131 if not value:
131 if not value:
132 return value
132 return value
133
133
134 parts = value.split('$', 3)
134 parts = value.split('$', 3)
135 if not len(parts) == 3:
135 if not len(parts) == 3:
136 # probably not encrypted values
136 # probably not encrypted values
137 return value
137 return value
138 else:
138 else:
139 if parts[0] != 'enc':
139 if parts[0] != 'enc':
140 # parts ok but without our header ?
140 # parts ok but without our header ?
141 return value
141 return value
142 enc_strict_mode = str2bool(rhodecode.CONFIG.get(
142 enc_strict_mode = str2bool(rhodecode.CONFIG.get(
143 'rhodecode.encrypted_values.strict') or True)
143 'rhodecode.encrypted_values.strict') or True)
144 # at that stage we know it's our encryption
144 # at that stage we know it's our encryption
145 if parts[1] == 'aes':
145 if parts[1] == 'aes':
146 decrypted_data = AESCipher(ENCRYPTION_KEY).decrypt(parts[2])
146 decrypted_data = AESCipher(ENCRYPTION_KEY).decrypt(parts[2])
147 elif parts[1] == 'aes_hmac':
147 elif parts[1] == 'aes_hmac':
148 decrypted_data = AESCipher(
148 decrypted_data = AESCipher(
149 ENCRYPTION_KEY, hmac=True,
149 ENCRYPTION_KEY, hmac=True,
150 strict_verification=enc_strict_mode).decrypt(parts[2])
150 strict_verification=enc_strict_mode).decrypt(parts[2])
151 else:
151 else:
152 raise ValueError(
152 raise ValueError(
153 'Encryption type part is wrong, must be `aes` '
153 'Encryption type part is wrong, must be `aes` '
154 'or `aes_hmac`, got `%s` instead' % (parts[1]))
154 'or `aes_hmac`, got `%s` instead' % (parts[1]))
155 return decrypted_data
155 return decrypted_data
156
156
157
157
158 class BaseModel(object):
158 class BaseModel(object):
159 """
159 """
160 Base Model for all classes
160 Base Model for all classes
161 """
161 """
162
162
163 @classmethod
163 @classmethod
164 def _get_keys(cls):
164 def _get_keys(cls):
165 """return column names for this model """
165 """return column names for this model """
166 return class_mapper(cls).c.keys()
166 return class_mapper(cls).c.keys()
167
167
168 def get_dict(self):
168 def get_dict(self):
169 """
169 """
170 return dict with keys and values corresponding
170 return dict with keys and values corresponding
171 to this model data """
171 to this model data """
172
172
173 d = {}
173 d = {}
174 for k in self._get_keys():
174 for k in self._get_keys():
175 d[k] = getattr(self, k)
175 d[k] = getattr(self, k)
176
176
177 # also use __json__() if present to get additional fields
177 # also use __json__() if present to get additional fields
178 _json_attr = getattr(self, '__json__', None)
178 _json_attr = getattr(self, '__json__', None)
179 if _json_attr:
179 if _json_attr:
180 # update with attributes from __json__
180 # update with attributes from __json__
181 if callable(_json_attr):
181 if callable(_json_attr):
182 _json_attr = _json_attr()
182 _json_attr = _json_attr()
183 for k, val in _json_attr.iteritems():
183 for k, val in _json_attr.iteritems():
184 d[k] = val
184 d[k] = val
185 return d
185 return d
186
186
187 def get_appstruct(self):
187 def get_appstruct(self):
188 """return list with keys and values tuples corresponding
188 """return list with keys and values tuples corresponding
189 to this model data """
189 to this model data """
190
190
191 l = []
191 l = []
192 for k in self._get_keys():
192 for k in self._get_keys():
193 l.append((k, getattr(self, k),))
193 l.append((k, getattr(self, k),))
194 return l
194 return l
195
195
196 def populate_obj(self, populate_dict):
196 def populate_obj(self, populate_dict):
197 """populate model with data from given populate_dict"""
197 """populate model with data from given populate_dict"""
198
198
199 for k in self._get_keys():
199 for k in self._get_keys():
200 if k in populate_dict:
200 if k in populate_dict:
201 setattr(self, k, populate_dict[k])
201 setattr(self, k, populate_dict[k])
202
202
203 @classmethod
203 @classmethod
204 def query(cls):
204 def query(cls):
205 return Session().query(cls)
205 return Session().query(cls)
206
206
207 @classmethod
207 @classmethod
208 def get(cls, id_):
208 def get(cls, id_):
209 if id_:
209 if id_:
210 return cls.query().get(id_)
210 return cls.query().get(id_)
211
211
212 @classmethod
212 @classmethod
213 def get_or_404(cls, id_):
213 def get_or_404(cls, id_):
214 try:
214 try:
215 id_ = int(id_)
215 id_ = int(id_)
216 except (TypeError, ValueError):
216 except (TypeError, ValueError):
217 raise HTTPNotFound
217 raise HTTPNotFound
218
218
219 res = cls.query().get(id_)
219 res = cls.query().get(id_)
220 if not res:
220 if not res:
221 raise HTTPNotFound
221 raise HTTPNotFound
222 return res
222 return res
223
223
224 @classmethod
224 @classmethod
225 def getAll(cls):
225 def getAll(cls):
226 # deprecated and left for backward compatibility
226 # deprecated and left for backward compatibility
227 return cls.get_all()
227 return cls.get_all()
228
228
229 @classmethod
229 @classmethod
230 def get_all(cls):
230 def get_all(cls):
231 return cls.query().all()
231 return cls.query().all()
232
232
233 @classmethod
233 @classmethod
234 def delete(cls, id_):
234 def delete(cls, id_):
235 obj = cls.query().get(id_)
235 obj = cls.query().get(id_)
236 Session().delete(obj)
236 Session().delete(obj)
237
237
238 @classmethod
238 @classmethod
239 def identity_cache(cls, session, attr_name, value):
239 def identity_cache(cls, session, attr_name, value):
240 exist_in_session = []
240 exist_in_session = []
241 for (item_cls, pkey), instance in session.identity_map.items():
241 for (item_cls, pkey), instance in session.identity_map.items():
242 if cls == item_cls and getattr(instance, attr_name) == value:
242 if cls == item_cls and getattr(instance, attr_name) == value:
243 exist_in_session.append(instance)
243 exist_in_session.append(instance)
244 if exist_in_session:
244 if exist_in_session:
245 if len(exist_in_session) == 1:
245 if len(exist_in_session) == 1:
246 return exist_in_session[0]
246 return exist_in_session[0]
247 log.exception(
247 log.exception(
248 'multiple objects with attr %s and '
248 'multiple objects with attr %s and '
249 'value %s found with same name: %r',
249 'value %s found with same name: %r',
250 attr_name, value, exist_in_session)
250 attr_name, value, exist_in_session)
251
251
252 def __repr__(self):
252 def __repr__(self):
253 if hasattr(self, '__unicode__'):
253 if hasattr(self, '__unicode__'):
254 # python repr needs to return str
254 # python repr needs to return str
255 try:
255 try:
256 return safe_str(self.__unicode__())
256 return safe_str(self.__unicode__())
257 except UnicodeDecodeError:
257 except UnicodeDecodeError:
258 pass
258 pass
259 return '<DB:%s>' % (self.__class__.__name__)
259 return '<DB:%s>' % (self.__class__.__name__)
260
260
261
261
262 class RhodeCodeSetting(Base, BaseModel):
262 class RhodeCodeSetting(Base, BaseModel):
263 __tablename__ = 'rhodecode_settings'
263 __tablename__ = 'rhodecode_settings'
264 __table_args__ = (
264 __table_args__ = (
265 UniqueConstraint('app_settings_name'),
265 UniqueConstraint('app_settings_name'),
266 {'extend_existing': True, 'mysql_engine': 'InnoDB',
266 {'extend_existing': True, 'mysql_engine': 'InnoDB',
267 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
267 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
268 )
268 )
269
269
270 SETTINGS_TYPES = {
270 SETTINGS_TYPES = {
271 'str': safe_str,
271 'str': safe_str,
272 'int': safe_int,
272 'int': safe_int,
273 'unicode': safe_unicode,
273 'unicode': safe_unicode,
274 'bool': str2bool,
274 'bool': str2bool,
275 'list': functools.partial(aslist, sep=',')
275 'list': functools.partial(aslist, sep=',')
276 }
276 }
277 DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions'
277 DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions'
278 GLOBAL_CONF_KEY = 'app_settings'
278 GLOBAL_CONF_KEY = 'app_settings'
279
279
280 app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
280 app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
281 app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None)
281 app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None)
282 _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None)
282 _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None)
283 _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None)
283 _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None)
284
284
285 def __init__(self, key='', val='', type='unicode'):
285 def __init__(self, key='', val='', type='unicode'):
286 self.app_settings_name = key
286 self.app_settings_name = key
287 self.app_settings_type = type
287 self.app_settings_type = type
288 self.app_settings_value = val
288 self.app_settings_value = val
289
289
290 @validates('_app_settings_value')
290 @validates('_app_settings_value')
291 def validate_settings_value(self, key, val):
291 def validate_settings_value(self, key, val):
292 assert type(val) == unicode
292 assert type(val) == unicode
293 return val
293 return val
294
294
295 @hybrid_property
295 @hybrid_property
296 def app_settings_value(self):
296 def app_settings_value(self):
297 v = self._app_settings_value
297 v = self._app_settings_value
298 _type = self.app_settings_type
298 _type = self.app_settings_type
299 if _type:
299 if _type:
300 _type = self.app_settings_type.split('.')[0]
300 _type = self.app_settings_type.split('.')[0]
301 # decode the encrypted value
301 # decode the encrypted value
302 if 'encrypted' in self.app_settings_type:
302 if 'encrypted' in self.app_settings_type:
303 cipher = EncryptedTextValue()
303 cipher = EncryptedTextValue()
304 v = safe_unicode(cipher.process_result_value(v, None))
304 v = safe_unicode(cipher.process_result_value(v, None))
305
305
306 converter = self.SETTINGS_TYPES.get(_type) or \
306 converter = self.SETTINGS_TYPES.get(_type) or \
307 self.SETTINGS_TYPES['unicode']
307 self.SETTINGS_TYPES['unicode']
308 return converter(v)
308 return converter(v)
309
309
310 @app_settings_value.setter
310 @app_settings_value.setter
311 def app_settings_value(self, val):
311 def app_settings_value(self, val):
312 """
312 """
313 Setter that will always make sure we use unicode in app_settings_value
313 Setter that will always make sure we use unicode in app_settings_value
314
314
315 :param val:
315 :param val:
316 """
316 """
317 val = safe_unicode(val)
317 val = safe_unicode(val)
318 # encode the encrypted value
318 # encode the encrypted value
319 if 'encrypted' in self.app_settings_type:
319 if 'encrypted' in self.app_settings_type:
320 cipher = EncryptedTextValue()
320 cipher = EncryptedTextValue()
321 val = safe_unicode(cipher.process_bind_param(val, None))
321 val = safe_unicode(cipher.process_bind_param(val, None))
322 self._app_settings_value = val
322 self._app_settings_value = val
323
323
324 @hybrid_property
324 @hybrid_property
325 def app_settings_type(self):
325 def app_settings_type(self):
326 return self._app_settings_type
326 return self._app_settings_type
327
327
328 @app_settings_type.setter
328 @app_settings_type.setter
329 def app_settings_type(self, val):
329 def app_settings_type(self, val):
330 if val.split('.')[0] not in self.SETTINGS_TYPES:
330 if val.split('.')[0] not in self.SETTINGS_TYPES:
331 raise Exception('type must be one of %s got %s'
331 raise Exception('type must be one of %s got %s'
332 % (self.SETTINGS_TYPES.keys(), val))
332 % (self.SETTINGS_TYPES.keys(), val))
333 self._app_settings_type = val
333 self._app_settings_type = val
334
334
335 def __unicode__(self):
335 def __unicode__(self):
336 return u"<%s('%s:%s[%s]')>" % (
336 return u"<%s('%s:%s[%s]')>" % (
337 self.__class__.__name__,
337 self.__class__.__name__,
338 self.app_settings_name, self.app_settings_value,
338 self.app_settings_name, self.app_settings_value,
339 self.app_settings_type
339 self.app_settings_type
340 )
340 )
341
341
342
342
343 class RhodeCodeUi(Base, BaseModel):
343 class RhodeCodeUi(Base, BaseModel):
344 __tablename__ = 'rhodecode_ui'
344 __tablename__ = 'rhodecode_ui'
345 __table_args__ = (
345 __table_args__ = (
346 UniqueConstraint('ui_key'),
346 UniqueConstraint('ui_key'),
347 {'extend_existing': True, 'mysql_engine': 'InnoDB',
347 {'extend_existing': True, 'mysql_engine': 'InnoDB',
348 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
348 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
349 )
349 )
350
350
351 HOOK_REPO_SIZE = 'changegroup.repo_size'
351 HOOK_REPO_SIZE = 'changegroup.repo_size'
352 # HG
352 # HG
353 HOOK_PRE_PULL = 'preoutgoing.pre_pull'
353 HOOK_PRE_PULL = 'preoutgoing.pre_pull'
354 HOOK_PULL = 'outgoing.pull_logger'
354 HOOK_PULL = 'outgoing.pull_logger'
355 HOOK_PRE_PUSH = 'prechangegroup.pre_push'
355 HOOK_PRE_PUSH = 'prechangegroup.pre_push'
356 HOOK_PUSH = 'changegroup.push_logger'
356 HOOK_PUSH = 'changegroup.push_logger'
357
357
358 # TODO: johbo: Unify way how hooks are configured for git and hg,
358 # TODO: johbo: Unify way how hooks are configured for git and hg,
359 # git part is currently hardcoded.
359 # git part is currently hardcoded.
360
360
361 # SVN PATTERNS
361 # SVN PATTERNS
362 SVN_BRANCH_ID = 'vcs_svn_branch'
362 SVN_BRANCH_ID = 'vcs_svn_branch'
363 SVN_TAG_ID = 'vcs_svn_tag'
363 SVN_TAG_ID = 'vcs_svn_tag'
364
364
365 ui_id = Column(
365 ui_id = Column(
366 "ui_id", Integer(), nullable=False, unique=True, default=None,
366 "ui_id", Integer(), nullable=False, unique=True, default=None,
367 primary_key=True)
367 primary_key=True)
368 ui_section = Column(
368 ui_section = Column(
369 "ui_section", String(255), nullable=True, unique=None, default=None)
369 "ui_section", String(255), nullable=True, unique=None, default=None)
370 ui_key = Column(
370 ui_key = Column(
371 "ui_key", String(255), nullable=True, unique=None, default=None)
371 "ui_key", String(255), nullable=True, unique=None, default=None)
372 ui_value = Column(
372 ui_value = Column(
373 "ui_value", String(255), nullable=True, unique=None, default=None)
373 "ui_value", String(255), nullable=True, unique=None, default=None)
374 ui_active = Column(
374 ui_active = Column(
375 "ui_active", Boolean(), nullable=True, unique=None, default=True)
375 "ui_active", Boolean(), nullable=True, unique=None, default=True)
376
376
377 def __repr__(self):
377 def __repr__(self):
378 return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section,
378 return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section,
379 self.ui_key, self.ui_value)
379 self.ui_key, self.ui_value)
380
380
381
381
382 class RepoRhodeCodeSetting(Base, BaseModel):
382 class RepoRhodeCodeSetting(Base, BaseModel):
383 __tablename__ = 'repo_rhodecode_settings'
383 __tablename__ = 'repo_rhodecode_settings'
384 __table_args__ = (
384 __table_args__ = (
385 UniqueConstraint(
385 UniqueConstraint(
386 'app_settings_name', 'repository_id',
386 'app_settings_name', 'repository_id',
387 name='uq_repo_rhodecode_setting_name_repo_id'),
387 name='uq_repo_rhodecode_setting_name_repo_id'),
388 {'extend_existing': True, 'mysql_engine': 'InnoDB',
388 {'extend_existing': True, 'mysql_engine': 'InnoDB',
389 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
389 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
390 )
390 )
391
391
392 repository_id = Column(
392 repository_id = Column(
393 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
393 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
394 nullable=False)
394 nullable=False)
395 app_settings_id = Column(
395 app_settings_id = Column(
396 "app_settings_id", Integer(), nullable=False, unique=True,
396 "app_settings_id", Integer(), nullable=False, unique=True,
397 default=None, primary_key=True)
397 default=None, primary_key=True)
398 app_settings_name = Column(
398 app_settings_name = Column(
399 "app_settings_name", String(255), nullable=True, unique=None,
399 "app_settings_name", String(255), nullable=True, unique=None,
400 default=None)
400 default=None)
401 _app_settings_value = Column(
401 _app_settings_value = Column(
402 "app_settings_value", String(4096), nullable=True, unique=None,
402 "app_settings_value", String(4096), nullable=True, unique=None,
403 default=None)
403 default=None)
404 _app_settings_type = Column(
404 _app_settings_type = Column(
405 "app_settings_type", String(255), nullable=True, unique=None,
405 "app_settings_type", String(255), nullable=True, unique=None,
406 default=None)
406 default=None)
407
407
408 repository = relationship('Repository')
408 repository = relationship('Repository')
409
409
410 def __init__(self, repository_id, key='', val='', type='unicode'):
410 def __init__(self, repository_id, key='', val='', type='unicode'):
411 self.repository_id = repository_id
411 self.repository_id = repository_id
412 self.app_settings_name = key
412 self.app_settings_name = key
413 self.app_settings_type = type
413 self.app_settings_type = type
414 self.app_settings_value = val
414 self.app_settings_value = val
415
415
416 @validates('_app_settings_value')
416 @validates('_app_settings_value')
417 def validate_settings_value(self, key, val):
417 def validate_settings_value(self, key, val):
418 assert type(val) == unicode
418 assert type(val) == unicode
419 return val
419 return val
420
420
421 @hybrid_property
421 @hybrid_property
422 def app_settings_value(self):
422 def app_settings_value(self):
423 v = self._app_settings_value
423 v = self._app_settings_value
424 type_ = self.app_settings_type
424 type_ = self.app_settings_type
425 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
425 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
426 converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode']
426 converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode']
427 return converter(v)
427 return converter(v)
428
428
429 @app_settings_value.setter
429 @app_settings_value.setter
430 def app_settings_value(self, val):
430 def app_settings_value(self, val):
431 """
431 """
432 Setter that will always make sure we use unicode in app_settings_value
432 Setter that will always make sure we use unicode in app_settings_value
433
433
434 :param val:
434 :param val:
435 """
435 """
436 self._app_settings_value = safe_unicode(val)
436 self._app_settings_value = safe_unicode(val)
437
437
438 @hybrid_property
438 @hybrid_property
439 def app_settings_type(self):
439 def app_settings_type(self):
440 return self._app_settings_type
440 return self._app_settings_type
441
441
442 @app_settings_type.setter
442 @app_settings_type.setter
443 def app_settings_type(self, val):
443 def app_settings_type(self, val):
444 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
444 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
445 if val not in SETTINGS_TYPES:
445 if val not in SETTINGS_TYPES:
446 raise Exception('type must be one of %s got %s'
446 raise Exception('type must be one of %s got %s'
447 % (SETTINGS_TYPES.keys(), val))
447 % (SETTINGS_TYPES.keys(), val))
448 self._app_settings_type = val
448 self._app_settings_type = val
449
449
450 def __unicode__(self):
450 def __unicode__(self):
451 return u"<%s('%s:%s:%s[%s]')>" % (
451 return u"<%s('%s:%s:%s[%s]')>" % (
452 self.__class__.__name__, self.repository.repo_name,
452 self.__class__.__name__, self.repository.repo_name,
453 self.app_settings_name, self.app_settings_value,
453 self.app_settings_name, self.app_settings_value,
454 self.app_settings_type
454 self.app_settings_type
455 )
455 )
456
456
457
457
458 class RepoRhodeCodeUi(Base, BaseModel):
458 class RepoRhodeCodeUi(Base, BaseModel):
459 __tablename__ = 'repo_rhodecode_ui'
459 __tablename__ = 'repo_rhodecode_ui'
460 __table_args__ = (
460 __table_args__ = (
461 UniqueConstraint(
461 UniqueConstraint(
462 'repository_id', 'ui_section', 'ui_key',
462 'repository_id', 'ui_section', 'ui_key',
463 name='uq_repo_rhodecode_ui_repository_id_section_key'),
463 name='uq_repo_rhodecode_ui_repository_id_section_key'),
464 {'extend_existing': True, 'mysql_engine': 'InnoDB',
464 {'extend_existing': True, 'mysql_engine': 'InnoDB',
465 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
465 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
466 )
466 )
467
467
468 repository_id = Column(
468 repository_id = Column(
469 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
469 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
470 nullable=False)
470 nullable=False)
471 ui_id = Column(
471 ui_id = Column(
472 "ui_id", Integer(), nullable=False, unique=True, default=None,
472 "ui_id", Integer(), nullable=False, unique=True, default=None,
473 primary_key=True)
473 primary_key=True)
474 ui_section = Column(
474 ui_section = Column(
475 "ui_section", String(255), nullable=True, unique=None, default=None)
475 "ui_section", String(255), nullable=True, unique=None, default=None)
476 ui_key = Column(
476 ui_key = Column(
477 "ui_key", String(255), nullable=True, unique=None, default=None)
477 "ui_key", String(255), nullable=True, unique=None, default=None)
478 ui_value = Column(
478 ui_value = Column(
479 "ui_value", String(255), nullable=True, unique=None, default=None)
479 "ui_value", String(255), nullable=True, unique=None, default=None)
480 ui_active = Column(
480 ui_active = Column(
481 "ui_active", Boolean(), nullable=True, unique=None, default=True)
481 "ui_active", Boolean(), nullable=True, unique=None, default=True)
482
482
483 repository = relationship('Repository')
483 repository = relationship('Repository')
484
484
485 def __repr__(self):
485 def __repr__(self):
486 return '<%s[%s:%s]%s=>%s]>' % (
486 return '<%s[%s:%s]%s=>%s]>' % (
487 self.__class__.__name__, self.repository.repo_name,
487 self.__class__.__name__, self.repository.repo_name,
488 self.ui_section, self.ui_key, self.ui_value)
488 self.ui_section, self.ui_key, self.ui_value)
489
489
490
490
491 class User(Base, BaseModel):
491 class User(Base, BaseModel):
492 __tablename__ = 'users'
492 __tablename__ = 'users'
493 __table_args__ = (
493 __table_args__ = (
494 UniqueConstraint('username'), UniqueConstraint('email'),
494 UniqueConstraint('username'), UniqueConstraint('email'),
495 Index('u_username_idx', 'username'),
495 Index('u_username_idx', 'username'),
496 Index('u_email_idx', 'email'),
496 Index('u_email_idx', 'email'),
497 {'extend_existing': True, 'mysql_engine': 'InnoDB',
497 {'extend_existing': True, 'mysql_engine': 'InnoDB',
498 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
498 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
499 )
499 )
500 DEFAULT_USER = 'default'
500 DEFAULT_USER = 'default'
501 DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org'
501 DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org'
502 DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}'
502 DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}'
503
503
504 user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
504 user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
505 username = Column("username", String(255), nullable=True, unique=None, default=None)
505 username = Column("username", String(255), nullable=True, unique=None, default=None)
506 password = Column("password", String(255), nullable=True, unique=None, default=None)
506 password = Column("password", String(255), nullable=True, unique=None, default=None)
507 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
507 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
508 admin = Column("admin", Boolean(), nullable=True, unique=None, default=False)
508 admin = Column("admin", Boolean(), nullable=True, unique=None, default=False)
509 name = Column("firstname", String(255), nullable=True, unique=None, default=None)
509 name = Column("firstname", String(255), nullable=True, unique=None, default=None)
510 lastname = Column("lastname", String(255), nullable=True, unique=None, default=None)
510 lastname = Column("lastname", String(255), nullable=True, unique=None, default=None)
511 _email = Column("email", String(255), nullable=True, unique=None, default=None)
511 _email = Column("email", String(255), nullable=True, unique=None, default=None)
512 last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None)
512 last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None)
513 extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None)
513 extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None)
514 extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None)
514 extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None)
515 api_key = Column("api_key", String(255), nullable=True, unique=None, default=None)
515 api_key = Column("api_key", String(255), nullable=True, unique=None, default=None)
516 inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
516 inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
517 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
517 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
518 _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data
518 _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data
519
519
520 user_log = relationship('UserLog')
520 user_log = relationship('UserLog')
521 user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all')
521 user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all')
522
522
523 repositories = relationship('Repository')
523 repositories = relationship('Repository')
524 repository_groups = relationship('RepoGroup')
524 repository_groups = relationship('RepoGroup')
525 user_groups = relationship('UserGroup')
525 user_groups = relationship('UserGroup')
526
526
527 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
527 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
528 followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all')
528 followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all')
529
529
530 repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all')
530 repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all')
531 repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all')
531 repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all')
532 user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all')
532 user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all')
533
533
534 group_member = relationship('UserGroupMember', cascade='all')
534 group_member = relationship('UserGroupMember', cascade='all')
535
535
536 notifications = relationship('UserNotification', cascade='all')
536 notifications = relationship('UserNotification', cascade='all')
537 # notifications assigned to this user
537 # notifications assigned to this user
538 user_created_notifications = relationship('Notification', cascade='all')
538 user_created_notifications = relationship('Notification', cascade='all')
539 # comments created by this user
539 # comments created by this user
540 user_comments = relationship('ChangesetComment', cascade='all')
540 user_comments = relationship('ChangesetComment', cascade='all')
541 # user profile extra info
541 # user profile extra info
542 user_emails = relationship('UserEmailMap', cascade='all')
542 user_emails = relationship('UserEmailMap', cascade='all')
543 user_ip_map = relationship('UserIpMap', cascade='all')
543 user_ip_map = relationship('UserIpMap', cascade='all')
544 user_auth_tokens = relationship('UserApiKeys', cascade='all')
544 user_auth_tokens = relationship('UserApiKeys', cascade='all')
545 # gists
545 # gists
546 user_gists = relationship('Gist', cascade='all')
546 user_gists = relationship('Gist', cascade='all')
547 # user pull requests
547 # user pull requests
548 user_pull_requests = relationship('PullRequest', cascade='all')
548 user_pull_requests = relationship('PullRequest', cascade='all')
549 # external identities
549 # external identities
550 extenal_identities = relationship(
550 extenal_identities = relationship(
551 'ExternalIdentity',
551 'ExternalIdentity',
552 primaryjoin="User.user_id==ExternalIdentity.local_user_id",
552 primaryjoin="User.user_id==ExternalIdentity.local_user_id",
553 cascade='all')
553 cascade='all')
554
554
555 def __unicode__(self):
555 def __unicode__(self):
556 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
556 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
557 self.user_id, self.username)
557 self.user_id, self.username)
558
558
559 @hybrid_property
559 @hybrid_property
560 def email(self):
560 def email(self):
561 return self._email
561 return self._email
562
562
563 @email.setter
563 @email.setter
564 def email(self, val):
564 def email(self, val):
565 self._email = val.lower() if val else None
565 self._email = val.lower() if val else None
566
566
567 @property
567 @property
568 def firstname(self):
568 def firstname(self):
569 # alias for future
569 # alias for future
570 return self.name
570 return self.name
571
571
572 @property
572 @property
573 def emails(self):
573 def emails(self):
574 other = UserEmailMap.query().filter(UserEmailMap.user==self).all()
574 other = UserEmailMap.query().filter(UserEmailMap.user==self).all()
575 return [self.email] + [x.email for x in other]
575 return [self.email] + [x.email for x in other]
576
576
577 @property
577 @property
578 def auth_tokens(self):
578 def auth_tokens(self):
579 return [self.api_key] + [x.api_key for x in self.extra_auth_tokens]
579 return [self.api_key] + [x.api_key for x in self.extra_auth_tokens]
580
580
581 @property
581 @property
582 def extra_auth_tokens(self):
582 def extra_auth_tokens(self):
583 return UserApiKeys.query().filter(UserApiKeys.user == self).all()
583 return UserApiKeys.query().filter(UserApiKeys.user == self).all()
584
584
585 @property
585 @property
586 def feed_token(self):
586 def feed_token(self):
587 feed_tokens = UserApiKeys.query()\
587 feed_tokens = UserApiKeys.query()\
588 .filter(UserApiKeys.user == self)\
588 .filter(UserApiKeys.user == self)\
589 .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)\
589 .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)\
590 .all()
590 .all()
591 if feed_tokens:
591 if feed_tokens:
592 return feed_tokens[0].api_key
592 return feed_tokens[0].api_key
593 else:
593 else:
594 # use the main token so we don't end up with nothing...
594 # use the main token so we don't end up with nothing...
595 return self.api_key
595 return self.api_key
596
596
597 @classmethod
597 @classmethod
598 def extra_valid_auth_tokens(cls, user, role=None):
598 def extra_valid_auth_tokens(cls, user, role=None):
599 tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\
599 tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\
600 .filter(or_(UserApiKeys.expires == -1,
600 .filter(or_(UserApiKeys.expires == -1,
601 UserApiKeys.expires >= time.time()))
601 UserApiKeys.expires >= time.time()))
602 if role:
602 if role:
603 tokens = tokens.filter(or_(UserApiKeys.role == role,
603 tokens = tokens.filter(or_(UserApiKeys.role == role,
604 UserApiKeys.role == UserApiKeys.ROLE_ALL))
604 UserApiKeys.role == UserApiKeys.ROLE_ALL))
605 return tokens.all()
605 return tokens.all()
606
606
607 @property
607 @property
608 def ip_addresses(self):
608 def ip_addresses(self):
609 ret = UserIpMap.query().filter(UserIpMap.user == self).all()
609 ret = UserIpMap.query().filter(UserIpMap.user == self).all()
610 return [x.ip_addr for x in ret]
610 return [x.ip_addr for x in ret]
611
611
612 @property
612 @property
613 def username_and_name(self):
613 def username_and_name(self):
614 return '%s (%s %s)' % (self.username, self.firstname, self.lastname)
614 return '%s (%s %s)' % (self.username, self.firstname, self.lastname)
615
615
616 @property
616 @property
617 def username_or_name_or_email(self):
617 def username_or_name_or_email(self):
618 full_name = self.full_name if self.full_name is not ' ' else None
618 full_name = self.full_name if self.full_name is not ' ' else None
619 return self.username or full_name or self.email
619 return self.username or full_name or self.email
620
620
621 @property
621 @property
622 def full_name(self):
622 def full_name(self):
623 return '%s %s' % (self.firstname, self.lastname)
623 return '%s %s' % (self.firstname, self.lastname)
624
624
625 @property
625 @property
626 def full_name_or_username(self):
626 def full_name_or_username(self):
627 return ('%s %s' % (self.firstname, self.lastname)
627 return ('%s %s' % (self.firstname, self.lastname)
628 if (self.firstname and self.lastname) else self.username)
628 if (self.firstname and self.lastname) else self.username)
629
629
630 @property
630 @property
631 def full_contact(self):
631 def full_contact(self):
632 return '%s %s <%s>' % (self.firstname, self.lastname, self.email)
632 return '%s %s <%s>' % (self.firstname, self.lastname, self.email)
633
633
634 @property
634 @property
635 def short_contact(self):
635 def short_contact(self):
636 return '%s %s' % (self.firstname, self.lastname)
636 return '%s %s' % (self.firstname, self.lastname)
637
637
638 @property
638 @property
639 def is_admin(self):
639 def is_admin(self):
640 return self.admin
640 return self.admin
641
641
642 @property
642 @property
643 def AuthUser(self):
643 def AuthUser(self):
644 """
644 """
645 Returns instance of AuthUser for this user
645 Returns instance of AuthUser for this user
646 """
646 """
647 from rhodecode.lib.auth import AuthUser
647 from rhodecode.lib.auth import AuthUser
648 return AuthUser(user_id=self.user_id, api_key=self.api_key,
648 return AuthUser(user_id=self.user_id, api_key=self.api_key,
649 username=self.username)
649 username=self.username)
650
650
651 @hybrid_property
651 @hybrid_property
652 def user_data(self):
652 def user_data(self):
653 if not self._user_data:
653 if not self._user_data:
654 return {}
654 return {}
655
655
656 try:
656 try:
657 return json.loads(self._user_data)
657 return json.loads(self._user_data)
658 except TypeError:
658 except TypeError:
659 return {}
659 return {}
660
660
661 @user_data.setter
661 @user_data.setter
662 def user_data(self, val):
662 def user_data(self, val):
663 if not isinstance(val, dict):
663 if not isinstance(val, dict):
664 raise Exception('user_data must be dict, got %s' % type(val))
664 raise Exception('user_data must be dict, got %s' % type(val))
665 try:
665 try:
666 self._user_data = json.dumps(val)
666 self._user_data = json.dumps(val)
667 except Exception:
667 except Exception:
668 log.error(traceback.format_exc())
668 log.error(traceback.format_exc())
669
669
670 @classmethod
670 @classmethod
671 def get_by_username(cls, username, case_insensitive=False,
671 def get_by_username(cls, username, case_insensitive=False,
672 cache=False, identity_cache=False):
672 cache=False, identity_cache=False):
673 session = Session()
673 session = Session()
674
674
675 if case_insensitive:
675 if case_insensitive:
676 q = cls.query().filter(
676 q = cls.query().filter(
677 func.lower(cls.username) == func.lower(username))
677 func.lower(cls.username) == func.lower(username))
678 else:
678 else:
679 q = cls.query().filter(cls.username == username)
679 q = cls.query().filter(cls.username == username)
680
680
681 if cache:
681 if cache:
682 if identity_cache:
682 if identity_cache:
683 val = cls.identity_cache(session, 'username', username)
683 val = cls.identity_cache(session, 'username', username)
684 if val:
684 if val:
685 return val
685 return val
686 else:
686 else:
687 q = q.options(
687 q = q.options(
688 FromCache("sql_cache_short",
688 FromCache("sql_cache_short",
689 "get_user_by_name_%s" % _hash_key(username)))
689 "get_user_by_name_%s" % _hash_key(username)))
690
690
691 return q.scalar()
691 return q.scalar()
692
692
693 @classmethod
693 @classmethod
694 def get_by_auth_token(cls, auth_token, cache=False, fallback=True):
694 def get_by_auth_token(cls, auth_token, cache=False, fallback=True):
695 q = cls.query().filter(cls.api_key == auth_token)
695 q = cls.query().filter(cls.api_key == auth_token)
696
696
697 if cache:
697 if cache:
698 q = q.options(FromCache("sql_cache_short",
698 q = q.options(FromCache("sql_cache_short",
699 "get_auth_token_%s" % auth_token))
699 "get_auth_token_%s" % auth_token))
700 res = q.scalar()
700 res = q.scalar()
701
701
702 if fallback and not res:
702 if fallback and not res:
703 #fallback to additional keys
703 #fallback to additional keys
704 _res = UserApiKeys.query()\
704 _res = UserApiKeys.query()\
705 .filter(UserApiKeys.api_key == auth_token)\
705 .filter(UserApiKeys.api_key == auth_token)\
706 .filter(or_(UserApiKeys.expires == -1,
706 .filter(or_(UserApiKeys.expires == -1,
707 UserApiKeys.expires >= time.time()))\
707 UserApiKeys.expires >= time.time()))\
708 .first()
708 .first()
709 if _res:
709 if _res:
710 res = _res.user
710 res = _res.user
711 return res
711 return res
712
712
713 @classmethod
713 @classmethod
714 def get_by_email(cls, email, case_insensitive=False, cache=False):
714 def get_by_email(cls, email, case_insensitive=False, cache=False):
715
715
716 if case_insensitive:
716 if case_insensitive:
717 q = cls.query().filter(func.lower(cls.email) == func.lower(email))
717 q = cls.query().filter(func.lower(cls.email) == func.lower(email))
718
718
719 else:
719 else:
720 q = cls.query().filter(cls.email == email)
720 q = cls.query().filter(cls.email == email)
721
721
722 if cache:
722 if cache:
723 q = q.options(FromCache("sql_cache_short",
723 q = q.options(FromCache("sql_cache_short",
724 "get_email_key_%s" % _hash_key(email)))
724 "get_email_key_%s" % _hash_key(email)))
725
725
726 ret = q.scalar()
726 ret = q.scalar()
727 if ret is None:
727 if ret is None:
728 q = UserEmailMap.query()
728 q = UserEmailMap.query()
729 # try fetching in alternate email map
729 # try fetching in alternate email map
730 if case_insensitive:
730 if case_insensitive:
731 q = q.filter(func.lower(UserEmailMap.email) == func.lower(email))
731 q = q.filter(func.lower(UserEmailMap.email) == func.lower(email))
732 else:
732 else:
733 q = q.filter(UserEmailMap.email == email)
733 q = q.filter(UserEmailMap.email == email)
734 q = q.options(joinedload(UserEmailMap.user))
734 q = q.options(joinedload(UserEmailMap.user))
735 if cache:
735 if cache:
736 q = q.options(FromCache("sql_cache_short",
736 q = q.options(FromCache("sql_cache_short",
737 "get_email_map_key_%s" % email))
737 "get_email_map_key_%s" % email))
738 ret = getattr(q.scalar(), 'user', None)
738 ret = getattr(q.scalar(), 'user', None)
739
739
740 return ret
740 return ret
741
741
742 @classmethod
742 @classmethod
743 def get_from_cs_author(cls, author):
743 def get_from_cs_author(cls, author):
744 """
744 """
745 Tries to get User objects out of commit author string
745 Tries to get User objects out of commit author string
746
746
747 :param author:
747 :param author:
748 """
748 """
749 from rhodecode.lib.helpers import email, author_name
749 from rhodecode.lib.helpers import email, author_name
750 # Valid email in the attribute passed, see if they're in the system
750 # Valid email in the attribute passed, see if they're in the system
751 _email = email(author)
751 _email = email(author)
752 if _email:
752 if _email:
753 user = cls.get_by_email(_email, case_insensitive=True)
753 user = cls.get_by_email(_email, case_insensitive=True)
754 if user:
754 if user:
755 return user
755 return user
756 # Maybe we can match by username?
756 # Maybe we can match by username?
757 _author = author_name(author)
757 _author = author_name(author)
758 user = cls.get_by_username(_author, case_insensitive=True)
758 user = cls.get_by_username(_author, case_insensitive=True)
759 if user:
759 if user:
760 return user
760 return user
761
761
762 def update_userdata(self, **kwargs):
762 def update_userdata(self, **kwargs):
763 usr = self
763 usr = self
764 old = usr.user_data
764 old = usr.user_data
765 old.update(**kwargs)
765 old.update(**kwargs)
766 usr.user_data = old
766 usr.user_data = old
767 Session().add(usr)
767 Session().add(usr)
768 log.debug('updated userdata with ', kwargs)
768 log.debug('updated userdata with ', kwargs)
769
769
770 def update_lastlogin(self):
770 def update_lastlogin(self):
771 """Update user lastlogin"""
771 """Update user lastlogin"""
772 self.last_login = datetime.datetime.now()
772 self.last_login = datetime.datetime.now()
773 Session().add(self)
773 Session().add(self)
774 log.debug('updated user %s lastlogin', self.username)
774 log.debug('updated user %s lastlogin', self.username)
775
775
776 def update_lastactivity(self):
776 def update_lastactivity(self):
777 """Update user lastactivity"""
777 """Update user lastactivity"""
778 usr = self
778 usr = self
779 old = usr.user_data
779 old = usr.user_data
780 old.update({'last_activity': time.time()})
780 old.update({'last_activity': time.time()})
781 usr.user_data = old
781 usr.user_data = old
782 Session().add(usr)
782 Session().add(usr)
783 log.debug('updated user %s lastactivity', usr.username)
783 log.debug('updated user %s lastactivity', usr.username)
784
784
785 def update_password(self, new_password, change_api_key=False):
785 def update_password(self, new_password, change_api_key=False):
786 from rhodecode.lib.auth import get_crypt_password,generate_auth_token
786 from rhodecode.lib.auth import get_crypt_password,generate_auth_token
787
787
788 self.password = get_crypt_password(new_password)
788 self.password = get_crypt_password(new_password)
789 if change_api_key:
789 if change_api_key:
790 self.api_key = generate_auth_token(self.username)
790 self.api_key = generate_auth_token(self.username)
791 Session().add(self)
791 Session().add(self)
792
792
793 @classmethod
793 @classmethod
794 def get_first_super_admin(cls):
794 def get_first_super_admin(cls):
795 user = User.query().filter(User.admin == true()).first()
795 user = User.query().filter(User.admin == true()).first()
796 if user is None:
796 if user is None:
797 raise Exception('FATAL: Missing administrative account!')
797 raise Exception('FATAL: Missing administrative account!')
798 return user
798 return user
799
799
800 @classmethod
800 @classmethod
801 def get_all_super_admins(cls):
801 def get_all_super_admins(cls):
802 """
802 """
803 Returns all admin accounts sorted by username
803 Returns all admin accounts sorted by username
804 """
804 """
805 return User.query().filter(User.admin == true())\
805 return User.query().filter(User.admin == true())\
806 .order_by(User.username.asc()).all()
806 .order_by(User.username.asc()).all()
807
807
808 @classmethod
808 @classmethod
809 def get_default_user(cls, cache=False):
809 def get_default_user(cls, cache=False):
810 user = User.get_by_username(User.DEFAULT_USER, cache=cache)
810 user = User.get_by_username(User.DEFAULT_USER, cache=cache)
811 if user is None:
811 if user is None:
812 raise Exception('FATAL: Missing default account!')
812 raise Exception('FATAL: Missing default account!')
813 return user
813 return user
814
814
815 def _get_default_perms(self, user, suffix=''):
815 def _get_default_perms(self, user, suffix=''):
816 from rhodecode.model.permission import PermissionModel
816 from rhodecode.model.permission import PermissionModel
817 return PermissionModel().get_default_perms(user.user_perms, suffix)
817 return PermissionModel().get_default_perms(user.user_perms, suffix)
818
818
819 def get_default_perms(self, suffix=''):
819 def get_default_perms(self, suffix=''):
820 return self._get_default_perms(self, suffix)
820 return self._get_default_perms(self, suffix)
821
821
822 def get_api_data(self, include_secrets=False, details='full'):
822 def get_api_data(self, include_secrets=False, details='full'):
823 """
823 """
824 Common function for generating user related data for API
824 Common function for generating user related data for API
825
825
826 :param include_secrets: By default secrets in the API data will be replaced
826 :param include_secrets: By default secrets in the API data will be replaced
827 by a placeholder value to prevent exposing this data by accident. In case
827 by a placeholder value to prevent exposing this data by accident. In case
828 this data shall be exposed, set this flag to ``True``.
828 this data shall be exposed, set this flag to ``True``.
829
829
830 :param details: details can be 'basic|full' basic gives only a subset of
830 :param details: details can be 'basic|full' basic gives only a subset of
831 the available user information that includes user_id, name and emails.
831 the available user information that includes user_id, name and emails.
832 """
832 """
833 user = self
833 user = self
834 user_data = self.user_data
834 user_data = self.user_data
835 data = {
835 data = {
836 'user_id': user.user_id,
836 'user_id': user.user_id,
837 'username': user.username,
837 'username': user.username,
838 'firstname': user.name,
838 'firstname': user.name,
839 'lastname': user.lastname,
839 'lastname': user.lastname,
840 'email': user.email,
840 'email': user.email,
841 'emails': user.emails,
841 'emails': user.emails,
842 }
842 }
843 if details == 'basic':
843 if details == 'basic':
844 return data
844 return data
845
845
846 api_key_length = 40
846 api_key_length = 40
847 api_key_replacement = '*' * api_key_length
847 api_key_replacement = '*' * api_key_length
848
848
849 extras = {
849 extras = {
850 'api_key': api_key_replacement,
850 'api_key': api_key_replacement,
851 'api_keys': [api_key_replacement],
851 'api_keys': [api_key_replacement],
852 'active': user.active,
852 'active': user.active,
853 'admin': user.admin,
853 'admin': user.admin,
854 'extern_type': user.extern_type,
854 'extern_type': user.extern_type,
855 'extern_name': user.extern_name,
855 'extern_name': user.extern_name,
856 'last_login': user.last_login,
856 'last_login': user.last_login,
857 'ip_addresses': user.ip_addresses,
857 'ip_addresses': user.ip_addresses,
858 'language': user_data.get('language')
858 'language': user_data.get('language')
859 }
859 }
860 data.update(extras)
860 data.update(extras)
861
861
862 if include_secrets:
862 if include_secrets:
863 data['api_key'] = user.api_key
863 data['api_key'] = user.api_key
864 data['api_keys'] = user.auth_tokens
864 data['api_keys'] = user.auth_tokens
865 return data
865 return data
866
866
867 def __json__(self):
867 def __json__(self):
868 data = {
868 data = {
869 'full_name': self.full_name,
869 'full_name': self.full_name,
870 'full_name_or_username': self.full_name_or_username,
870 'full_name_or_username': self.full_name_or_username,
871 'short_contact': self.short_contact,
871 'short_contact': self.short_contact,
872 'full_contact': self.full_contact,
872 'full_contact': self.full_contact,
873 }
873 }
874 data.update(self.get_api_data())
874 data.update(self.get_api_data())
875 return data
875 return data
876
876
877
877
878 class UserApiKeys(Base, BaseModel):
878 class UserApiKeys(Base, BaseModel):
879 __tablename__ = 'user_api_keys'
879 __tablename__ = 'user_api_keys'
880 __table_args__ = (
880 __table_args__ = (
881 Index('uak_api_key_idx', 'api_key'),
881 Index('uak_api_key_idx', 'api_key'),
882 Index('uak_api_key_expires_idx', 'api_key', 'expires'),
882 Index('uak_api_key_expires_idx', 'api_key', 'expires'),
883 UniqueConstraint('api_key'),
883 UniqueConstraint('api_key'),
884 {'extend_existing': True, 'mysql_engine': 'InnoDB',
884 {'extend_existing': True, 'mysql_engine': 'InnoDB',
885 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
885 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
886 )
886 )
887 __mapper_args__ = {}
887 __mapper_args__ = {}
888
888
889 # ApiKey role
889 # ApiKey role
890 ROLE_ALL = 'token_role_all'
890 ROLE_ALL = 'token_role_all'
891 ROLE_HTTP = 'token_role_http'
891 ROLE_HTTP = 'token_role_http'
892 ROLE_VCS = 'token_role_vcs'
892 ROLE_VCS = 'token_role_vcs'
893 ROLE_API = 'token_role_api'
893 ROLE_API = 'token_role_api'
894 ROLE_FEED = 'token_role_feed'
894 ROLE_FEED = 'token_role_feed'
895 ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED]
895 ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED]
896
896
897 user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
897 user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
898 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
898 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
899 api_key = Column("api_key", String(255), nullable=False, unique=True)
899 api_key = Column("api_key", String(255), nullable=False, unique=True)
900 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
900 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
901 expires = Column('expires', Float(53), nullable=False)
901 expires = Column('expires', Float(53), nullable=False)
902 role = Column('role', String(255), nullable=True)
902 role = Column('role', String(255), nullable=True)
903 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
903 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
904
904
905 user = relationship('User', lazy='joined')
905 user = relationship('User', lazy='joined')
906
906
907 @classmethod
907 @classmethod
908 def _get_role_name(cls, role):
908 def _get_role_name(cls, role):
909 return {
909 return {
910 cls.ROLE_ALL: _('all'),
910 cls.ROLE_ALL: _('all'),
911 cls.ROLE_HTTP: _('http/web interface'),
911 cls.ROLE_HTTP: _('http/web interface'),
912 cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'),
912 cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'),
913 cls.ROLE_API: _('api calls'),
913 cls.ROLE_API: _('api calls'),
914 cls.ROLE_FEED: _('feed access'),
914 cls.ROLE_FEED: _('feed access'),
915 }.get(role, role)
915 }.get(role, role)
916
916
917 @property
917 @property
918 def expired(self):
918 def expired(self):
919 if self.expires == -1:
919 if self.expires == -1:
920 return False
920 return False
921 return time.time() > self.expires
921 return time.time() > self.expires
922
922
923 @property
923 @property
924 def role_humanized(self):
924 def role_humanized(self):
925 return self._get_role_name(self.role)
925 return self._get_role_name(self.role)
926
926
927
927
928 class UserEmailMap(Base, BaseModel):
928 class UserEmailMap(Base, BaseModel):
929 __tablename__ = 'user_email_map'
929 __tablename__ = 'user_email_map'
930 __table_args__ = (
930 __table_args__ = (
931 Index('uem_email_idx', 'email'),
931 Index('uem_email_idx', 'email'),
932 UniqueConstraint('email'),
932 UniqueConstraint('email'),
933 {'extend_existing': True, 'mysql_engine': 'InnoDB',
933 {'extend_existing': True, 'mysql_engine': 'InnoDB',
934 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
934 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
935 )
935 )
936 __mapper_args__ = {}
936 __mapper_args__ = {}
937
937
938 email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
938 email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
939 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
939 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
940 _email = Column("email", String(255), nullable=True, unique=False, default=None)
940 _email = Column("email", String(255), nullable=True, unique=False, default=None)
941 user = relationship('User', lazy='joined')
941 user = relationship('User', lazy='joined')
942
942
943 @validates('_email')
943 @validates('_email')
944 def validate_email(self, key, email):
944 def validate_email(self, key, email):
945 # check if this email is not main one
945 # check if this email is not main one
946 main_email = Session().query(User).filter(User.email == email).scalar()
946 main_email = Session().query(User).filter(User.email == email).scalar()
947 if main_email is not None:
947 if main_email is not None:
948 raise AttributeError('email %s is present is user table' % email)
948 raise AttributeError('email %s is present is user table' % email)
949 return email
949 return email
950
950
951 @hybrid_property
951 @hybrid_property
952 def email(self):
952 def email(self):
953 return self._email
953 return self._email
954
954
955 @email.setter
955 @email.setter
956 def email(self, val):
956 def email(self, val):
957 self._email = val.lower() if val else None
957 self._email = val.lower() if val else None
958
958
959
959
960 class UserIpMap(Base, BaseModel):
960 class UserIpMap(Base, BaseModel):
961 __tablename__ = 'user_ip_map'
961 __tablename__ = 'user_ip_map'
962 __table_args__ = (
962 __table_args__ = (
963 UniqueConstraint('user_id', 'ip_addr'),
963 UniqueConstraint('user_id', 'ip_addr'),
964 {'extend_existing': True, 'mysql_engine': 'InnoDB',
964 {'extend_existing': True, 'mysql_engine': 'InnoDB',
965 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
965 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
966 )
966 )
967 __mapper_args__ = {}
967 __mapper_args__ = {}
968
968
969 ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
969 ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
970 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
970 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
971 ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None)
971 ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None)
972 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
972 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
973 description = Column("description", String(10000), nullable=True, unique=None, default=None)
973 description = Column("description", String(10000), nullable=True, unique=None, default=None)
974 user = relationship('User', lazy='joined')
974 user = relationship('User', lazy='joined')
975
975
976 @classmethod
976 @classmethod
977 def _get_ip_range(cls, ip_addr):
977 def _get_ip_range(cls, ip_addr):
978 net = ipaddress.ip_network(ip_addr, strict=False)
978 net = ipaddress.ip_network(ip_addr, strict=False)
979 return [str(net.network_address), str(net.broadcast_address)]
979 return [str(net.network_address), str(net.broadcast_address)]
980
980
981 def __json__(self):
981 def __json__(self):
982 return {
982 return {
983 'ip_addr': self.ip_addr,
983 'ip_addr': self.ip_addr,
984 'ip_range': self._get_ip_range(self.ip_addr),
984 'ip_range': self._get_ip_range(self.ip_addr),
985 }
985 }
986
986
987 def __unicode__(self):
987 def __unicode__(self):
988 return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__,
988 return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__,
989 self.user_id, self.ip_addr)
989 self.user_id, self.ip_addr)
990
990
991 class UserLog(Base, BaseModel):
991 class UserLog(Base, BaseModel):
992 __tablename__ = 'user_logs'
992 __tablename__ = 'user_logs'
993 __table_args__ = (
993 __table_args__ = (
994 {'extend_existing': True, 'mysql_engine': 'InnoDB',
994 {'extend_existing': True, 'mysql_engine': 'InnoDB',
995 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
995 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
996 )
996 )
997 user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
997 user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
998 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
998 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
999 username = Column("username", String(255), nullable=True, unique=None, default=None)
999 username = Column("username", String(255), nullable=True, unique=None, default=None)
1000 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True)
1000 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True)
1001 repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None)
1001 repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None)
1002 user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None)
1002 user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None)
1003 action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None)
1003 action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None)
1004 action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None)
1004 action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None)
1005
1005
1006 def __unicode__(self):
1006 def __unicode__(self):
1007 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1007 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1008 self.repository_name,
1008 self.repository_name,
1009 self.action)
1009 self.action)
1010
1010
1011 @property
1011 @property
1012 def action_as_day(self):
1012 def action_as_day(self):
1013 return datetime.date(*self.action_date.timetuple()[:3])
1013 return datetime.date(*self.action_date.timetuple()[:3])
1014
1014
1015 user = relationship('User')
1015 user = relationship('User')
1016 repository = relationship('Repository', cascade='')
1016 repository = relationship('Repository', cascade='')
1017
1017
1018
1018
1019 class UserGroup(Base, BaseModel):
1019 class UserGroup(Base, BaseModel):
1020 __tablename__ = 'users_groups'
1020 __tablename__ = 'users_groups'
1021 __table_args__ = (
1021 __table_args__ = (
1022 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1022 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1023 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1023 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1024 )
1024 )
1025
1025
1026 users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1026 users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1027 users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None)
1027 users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None)
1028 user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None)
1028 user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None)
1029 users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None)
1029 users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None)
1030 inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
1030 inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
1031 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
1031 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
1032 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1032 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1033 _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data
1033 _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data
1034
1034
1035 members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined")
1035 members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined")
1036 users_group_to_perm = relationship('UserGroupToPerm', cascade='all')
1036 users_group_to_perm = relationship('UserGroupToPerm', cascade='all')
1037 users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1037 users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1038 users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
1038 users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
1039 user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all')
1039 user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all')
1040 user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all')
1040 user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all')
1041
1041
1042 user = relationship('User')
1042 user = relationship('User')
1043
1043
1044 @hybrid_property
1044 @hybrid_property
1045 def group_data(self):
1045 def group_data(self):
1046 if not self._group_data:
1046 if not self._group_data:
1047 return {}
1047 return {}
1048
1048
1049 try:
1049 try:
1050 return json.loads(self._group_data)
1050 return json.loads(self._group_data)
1051 except TypeError:
1051 except TypeError:
1052 return {}
1052 return {}
1053
1053
1054 @group_data.setter
1054 @group_data.setter
1055 def group_data(self, val):
1055 def group_data(self, val):
1056 try:
1056 try:
1057 self._group_data = json.dumps(val)
1057 self._group_data = json.dumps(val)
1058 except Exception:
1058 except Exception:
1059 log.error(traceback.format_exc())
1059 log.error(traceback.format_exc())
1060
1060
1061 def __unicode__(self):
1061 def __unicode__(self):
1062 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1062 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1063 self.users_group_id,
1063 self.users_group_id,
1064 self.users_group_name)
1064 self.users_group_name)
1065
1065
1066 @classmethod
1066 @classmethod
1067 def get_by_group_name(cls, group_name, cache=False,
1067 def get_by_group_name(cls, group_name, cache=False,
1068 case_insensitive=False):
1068 case_insensitive=False):
1069 if case_insensitive:
1069 if case_insensitive:
1070 q = cls.query().filter(func.lower(cls.users_group_name) ==
1070 q = cls.query().filter(func.lower(cls.users_group_name) ==
1071 func.lower(group_name))
1071 func.lower(group_name))
1072
1072
1073 else:
1073 else:
1074 q = cls.query().filter(cls.users_group_name == group_name)
1074 q = cls.query().filter(cls.users_group_name == group_name)
1075 if cache:
1075 if cache:
1076 q = q.options(FromCache(
1076 q = q.options(FromCache(
1077 "sql_cache_short",
1077 "sql_cache_short",
1078 "get_group_%s" % _hash_key(group_name)))
1078 "get_group_%s" % _hash_key(group_name)))
1079 return q.scalar()
1079 return q.scalar()
1080
1080
1081 @classmethod
1081 @classmethod
1082 def get(cls, user_group_id, cache=False):
1082 def get(cls, user_group_id, cache=False):
1083 user_group = cls.query()
1083 user_group = cls.query()
1084 if cache:
1084 if cache:
1085 user_group = user_group.options(FromCache("sql_cache_short",
1085 user_group = user_group.options(FromCache("sql_cache_short",
1086 "get_users_group_%s" % user_group_id))
1086 "get_users_group_%s" % user_group_id))
1087 return user_group.get(user_group_id)
1087 return user_group.get(user_group_id)
1088
1088
1089 def permissions(self, with_admins=True, with_owner=True):
1089 def permissions(self, with_admins=True, with_owner=True):
1090 q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self)
1090 q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self)
1091 q = q.options(joinedload(UserUserGroupToPerm.user_group),
1091 q = q.options(joinedload(UserUserGroupToPerm.user_group),
1092 joinedload(UserUserGroupToPerm.user),
1092 joinedload(UserUserGroupToPerm.user),
1093 joinedload(UserUserGroupToPerm.permission),)
1093 joinedload(UserUserGroupToPerm.permission),)
1094
1094
1095 # get owners and admins and permissions. We do a trick of re-writing
1095 # get owners and admins and permissions. We do a trick of re-writing
1096 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1096 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1097 # has a global reference and changing one object propagates to all
1097 # has a global reference and changing one object propagates to all
1098 # others. This means if admin is also an owner admin_row that change
1098 # others. This means if admin is also an owner admin_row that change
1099 # would propagate to both objects
1099 # would propagate to both objects
1100 perm_rows = []
1100 perm_rows = []
1101 for _usr in q.all():
1101 for _usr in q.all():
1102 usr = AttributeDict(_usr.user.get_dict())
1102 usr = AttributeDict(_usr.user.get_dict())
1103 usr.permission = _usr.permission.permission_name
1103 usr.permission = _usr.permission.permission_name
1104 perm_rows.append(usr)
1104 perm_rows.append(usr)
1105
1105
1106 # filter the perm rows by 'default' first and then sort them by
1106 # filter the perm rows by 'default' first and then sort them by
1107 # admin,write,read,none permissions sorted again alphabetically in
1107 # admin,write,read,none permissions sorted again alphabetically in
1108 # each group
1108 # each group
1109 perm_rows = sorted(perm_rows, key=display_sort)
1109 perm_rows = sorted(perm_rows, key=display_sort)
1110
1110
1111 _admin_perm = 'usergroup.admin'
1111 _admin_perm = 'usergroup.admin'
1112 owner_row = []
1112 owner_row = []
1113 if with_owner:
1113 if with_owner:
1114 usr = AttributeDict(self.user.get_dict())
1114 usr = AttributeDict(self.user.get_dict())
1115 usr.owner_row = True
1115 usr.owner_row = True
1116 usr.permission = _admin_perm
1116 usr.permission = _admin_perm
1117 owner_row.append(usr)
1117 owner_row.append(usr)
1118
1118
1119 super_admin_rows = []
1119 super_admin_rows = []
1120 if with_admins:
1120 if with_admins:
1121 for usr in User.get_all_super_admins():
1121 for usr in User.get_all_super_admins():
1122 # if this admin is also owner, don't double the record
1122 # if this admin is also owner, don't double the record
1123 if usr.user_id == owner_row[0].user_id:
1123 if usr.user_id == owner_row[0].user_id:
1124 owner_row[0].admin_row = True
1124 owner_row[0].admin_row = True
1125 else:
1125 else:
1126 usr = AttributeDict(usr.get_dict())
1126 usr = AttributeDict(usr.get_dict())
1127 usr.admin_row = True
1127 usr.admin_row = True
1128 usr.permission = _admin_perm
1128 usr.permission = _admin_perm
1129 super_admin_rows.append(usr)
1129 super_admin_rows.append(usr)
1130
1130
1131 return super_admin_rows + owner_row + perm_rows
1131 return super_admin_rows + owner_row + perm_rows
1132
1132
1133 def permission_user_groups(self):
1133 def permission_user_groups(self):
1134 q = UserGroupUserGroupToPerm.query().filter(UserGroupUserGroupToPerm.target_user_group == self)
1134 q = UserGroupUserGroupToPerm.query().filter(UserGroupUserGroupToPerm.target_user_group == self)
1135 q = q.options(joinedload(UserGroupUserGroupToPerm.user_group),
1135 q = q.options(joinedload(UserGroupUserGroupToPerm.user_group),
1136 joinedload(UserGroupUserGroupToPerm.target_user_group),
1136 joinedload(UserGroupUserGroupToPerm.target_user_group),
1137 joinedload(UserGroupUserGroupToPerm.permission),)
1137 joinedload(UserGroupUserGroupToPerm.permission),)
1138
1138
1139 perm_rows = []
1139 perm_rows = []
1140 for _user_group in q.all():
1140 for _user_group in q.all():
1141 usr = AttributeDict(_user_group.user_group.get_dict())
1141 usr = AttributeDict(_user_group.user_group.get_dict())
1142 usr.permission = _user_group.permission.permission_name
1142 usr.permission = _user_group.permission.permission_name
1143 perm_rows.append(usr)
1143 perm_rows.append(usr)
1144
1144
1145 return perm_rows
1145 return perm_rows
1146
1146
1147 def _get_default_perms(self, user_group, suffix=''):
1147 def _get_default_perms(self, user_group, suffix=''):
1148 from rhodecode.model.permission import PermissionModel
1148 from rhodecode.model.permission import PermissionModel
1149 return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix)
1149 return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix)
1150
1150
1151 def get_default_perms(self, suffix=''):
1151 def get_default_perms(self, suffix=''):
1152 return self._get_default_perms(self, suffix)
1152 return self._get_default_perms(self, suffix)
1153
1153
1154 def get_api_data(self, with_group_members=True, include_secrets=False):
1154 def get_api_data(self, with_group_members=True, include_secrets=False):
1155 """
1155 """
1156 :param include_secrets: See :meth:`User.get_api_data`, this parameter is
1156 :param include_secrets: See :meth:`User.get_api_data`, this parameter is
1157 basically forwarded.
1157 basically forwarded.
1158
1158
1159 """
1159 """
1160 user_group = self
1160 user_group = self
1161
1161
1162 data = {
1162 data = {
1163 'users_group_id': user_group.users_group_id,
1163 'users_group_id': user_group.users_group_id,
1164 'group_name': user_group.users_group_name,
1164 'group_name': user_group.users_group_name,
1165 'group_description': user_group.user_group_description,
1165 'group_description': user_group.user_group_description,
1166 'active': user_group.users_group_active,
1166 'active': user_group.users_group_active,
1167 'owner': user_group.user.username,
1167 'owner': user_group.user.username,
1168 }
1168 }
1169 if with_group_members:
1169 if with_group_members:
1170 users = []
1170 users = []
1171 for user in user_group.members:
1171 for user in user_group.members:
1172 user = user.user
1172 user = user.user
1173 users.append(user.get_api_data(include_secrets=include_secrets))
1173 users.append(user.get_api_data(include_secrets=include_secrets))
1174 data['users'] = users
1174 data['users'] = users
1175
1175
1176 return data
1176 return data
1177
1177
1178
1178
1179 class UserGroupMember(Base, BaseModel):
1179 class UserGroupMember(Base, BaseModel):
1180 __tablename__ = 'users_groups_members'
1180 __tablename__ = 'users_groups_members'
1181 __table_args__ = (
1181 __table_args__ = (
1182 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1182 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1183 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1183 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1184 )
1184 )
1185
1185
1186 users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1186 users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1187 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
1187 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
1188 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
1188 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
1189
1189
1190 user = relationship('User', lazy='joined')
1190 user = relationship('User', lazy='joined')
1191 users_group = relationship('UserGroup')
1191 users_group = relationship('UserGroup')
1192
1192
1193 def __init__(self, gr_id='', u_id=''):
1193 def __init__(self, gr_id='', u_id=''):
1194 self.users_group_id = gr_id
1194 self.users_group_id = gr_id
1195 self.user_id = u_id
1195 self.user_id = u_id
1196
1196
1197
1197
1198 class RepositoryField(Base, BaseModel):
1198 class RepositoryField(Base, BaseModel):
1199 __tablename__ = 'repositories_fields'
1199 __tablename__ = 'repositories_fields'
1200 __table_args__ = (
1200 __table_args__ = (
1201 UniqueConstraint('repository_id', 'field_key'), # no-multi field
1201 UniqueConstraint('repository_id', 'field_key'), # no-multi field
1202 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1202 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1203 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1203 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1204 )
1204 )
1205 PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields
1205 PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields
1206
1206
1207 repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1207 repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1208 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
1208 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
1209 field_key = Column("field_key", String(250))
1209 field_key = Column("field_key", String(250))
1210 field_label = Column("field_label", String(1024), nullable=False)
1210 field_label = Column("field_label", String(1024), nullable=False)
1211 field_value = Column("field_value", String(10000), nullable=False)
1211 field_value = Column("field_value", String(10000), nullable=False)
1212 field_desc = Column("field_desc", String(1024), nullable=False)
1212 field_desc = Column("field_desc", String(1024), nullable=False)
1213 field_type = Column("field_type", String(255), nullable=False, unique=None)
1213 field_type = Column("field_type", String(255), nullable=False, unique=None)
1214 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1214 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1215
1215
1216 repository = relationship('Repository')
1216 repository = relationship('Repository')
1217
1217
1218 @property
1218 @property
1219 def field_key_prefixed(self):
1219 def field_key_prefixed(self):
1220 return 'ex_%s' % self.field_key
1220 return 'ex_%s' % self.field_key
1221
1221
1222 @classmethod
1222 @classmethod
1223 def un_prefix_key(cls, key):
1223 def un_prefix_key(cls, key):
1224 if key.startswith(cls.PREFIX):
1224 if key.startswith(cls.PREFIX):
1225 return key[len(cls.PREFIX):]
1225 return key[len(cls.PREFIX):]
1226 return key
1226 return key
1227
1227
1228 @classmethod
1228 @classmethod
1229 def get_by_key_name(cls, key, repo):
1229 def get_by_key_name(cls, key, repo):
1230 row = cls.query()\
1230 row = cls.query()\
1231 .filter(cls.repository == repo)\
1231 .filter(cls.repository == repo)\
1232 .filter(cls.field_key == key).scalar()
1232 .filter(cls.field_key == key).scalar()
1233 return row
1233 return row
1234
1234
1235
1235
1236 class Repository(Base, BaseModel):
1236 class Repository(Base, BaseModel):
1237 __tablename__ = 'repositories'
1237 __tablename__ = 'repositories'
1238 __table_args__ = (
1238 __table_args__ = (
1239 Index('r_repo_name_idx', 'repo_name', mysql_length=255),
1239 Index('r_repo_name_idx', 'repo_name', mysql_length=255),
1240 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1240 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1241 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1241 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1242 )
1242 )
1243 DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}'
1243 DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}'
1244 DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}'
1244 DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}'
1245
1245
1246 STATE_CREATED = 'repo_state_created'
1246 STATE_CREATED = 'repo_state_created'
1247 STATE_PENDING = 'repo_state_pending'
1247 STATE_PENDING = 'repo_state_pending'
1248 STATE_ERROR = 'repo_state_error'
1248 STATE_ERROR = 'repo_state_error'
1249
1249
1250 LOCK_AUTOMATIC = 'lock_auto'
1250 LOCK_AUTOMATIC = 'lock_auto'
1251 LOCK_API = 'lock_api'
1251 LOCK_API = 'lock_api'
1252 LOCK_WEB = 'lock_web'
1252 LOCK_WEB = 'lock_web'
1253 LOCK_PULL = 'lock_pull'
1253 LOCK_PULL = 'lock_pull'
1254
1254
1255 NAME_SEP = URL_SEP
1255 NAME_SEP = URL_SEP
1256
1256
1257 repo_id = Column(
1257 repo_id = Column(
1258 "repo_id", Integer(), nullable=False, unique=True, default=None,
1258 "repo_id", Integer(), nullable=False, unique=True, default=None,
1259 primary_key=True)
1259 primary_key=True)
1260 _repo_name = Column(
1260 _repo_name = Column(
1261 "repo_name", Text(), nullable=False, default=None)
1261 "repo_name", Text(), nullable=False, default=None)
1262 _repo_name_hash = Column(
1262 _repo_name_hash = Column(
1263 "repo_name_hash", String(255), nullable=False, unique=True)
1263 "repo_name_hash", String(255), nullable=False, unique=True)
1264 repo_state = Column("repo_state", String(255), nullable=True)
1264 repo_state = Column("repo_state", String(255), nullable=True)
1265
1265
1266 clone_uri = Column(
1266 clone_uri = Column(
1267 "clone_uri", EncryptedTextValue(), nullable=True, unique=False,
1267 "clone_uri", EncryptedTextValue(), nullable=True, unique=False,
1268 default=None)
1268 default=None)
1269 repo_type = Column(
1269 repo_type = Column(
1270 "repo_type", String(255), nullable=False, unique=False, default=None)
1270 "repo_type", String(255), nullable=False, unique=False, default=None)
1271 user_id = Column(
1271 user_id = Column(
1272 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
1272 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
1273 unique=False, default=None)
1273 unique=False, default=None)
1274 private = Column(
1274 private = Column(
1275 "private", Boolean(), nullable=True, unique=None, default=None)
1275 "private", Boolean(), nullable=True, unique=None, default=None)
1276 enable_statistics = Column(
1276 enable_statistics = Column(
1277 "statistics", Boolean(), nullable=True, unique=None, default=True)
1277 "statistics", Boolean(), nullable=True, unique=None, default=True)
1278 enable_downloads = Column(
1278 enable_downloads = Column(
1279 "downloads", Boolean(), nullable=True, unique=None, default=True)
1279 "downloads", Boolean(), nullable=True, unique=None, default=True)
1280 description = Column(
1280 description = Column(
1281 "description", String(10000), nullable=True, unique=None, default=None)
1281 "description", String(10000), nullable=True, unique=None, default=None)
1282 created_on = Column(
1282 created_on = Column(
1283 'created_on', DateTime(timezone=False), nullable=True, unique=None,
1283 'created_on', DateTime(timezone=False), nullable=True, unique=None,
1284 default=datetime.datetime.now)
1284 default=datetime.datetime.now)
1285 updated_on = Column(
1285 updated_on = Column(
1286 'updated_on', DateTime(timezone=False), nullable=True, unique=None,
1286 'updated_on', DateTime(timezone=False), nullable=True, unique=None,
1287 default=datetime.datetime.now)
1287 default=datetime.datetime.now)
1288 _landing_revision = Column(
1288 _landing_revision = Column(
1289 "landing_revision", String(255), nullable=False, unique=False,
1289 "landing_revision", String(255), nullable=False, unique=False,
1290 default=None)
1290 default=None)
1291 enable_locking = Column(
1291 enable_locking = Column(
1292 "enable_locking", Boolean(), nullable=False, unique=None,
1292 "enable_locking", Boolean(), nullable=False, unique=None,
1293 default=False)
1293 default=False)
1294 _locked = Column(
1294 _locked = Column(
1295 "locked", String(255), nullable=True, unique=False, default=None)
1295 "locked", String(255), nullable=True, unique=False, default=None)
1296 _changeset_cache = Column(
1296 _changeset_cache = Column(
1297 "changeset_cache", LargeBinary(), nullable=True) # JSON data
1297 "changeset_cache", LargeBinary(), nullable=True) # JSON data
1298
1298
1299 fork_id = Column(
1299 fork_id = Column(
1300 "fork_id", Integer(), ForeignKey('repositories.repo_id'),
1300 "fork_id", Integer(), ForeignKey('repositories.repo_id'),
1301 nullable=True, unique=False, default=None)
1301 nullable=True, unique=False, default=None)
1302 group_id = Column(
1302 group_id = Column(
1303 "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True,
1303 "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True,
1304 unique=False, default=None)
1304 unique=False, default=None)
1305
1305
1306 user = relationship('User', lazy='joined')
1306 user = relationship('User', lazy='joined')
1307 fork = relationship('Repository', remote_side=repo_id, lazy='joined')
1307 fork = relationship('Repository', remote_side=repo_id, lazy='joined')
1308 group = relationship('RepoGroup', lazy='joined')
1308 group = relationship('RepoGroup', lazy='joined')
1309 repo_to_perm = relationship(
1309 repo_to_perm = relationship(
1310 'UserRepoToPerm', cascade='all',
1310 'UserRepoToPerm', cascade='all',
1311 order_by='UserRepoToPerm.repo_to_perm_id')
1311 order_by='UserRepoToPerm.repo_to_perm_id')
1312 users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1312 users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1313 stats = relationship('Statistics', cascade='all', uselist=False)
1313 stats = relationship('Statistics', cascade='all', uselist=False)
1314
1314
1315 followers = relationship(
1315 followers = relationship(
1316 'UserFollowing',
1316 'UserFollowing',
1317 primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id',
1317 primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id',
1318 cascade='all')
1318 cascade='all')
1319 extra_fields = relationship(
1319 extra_fields = relationship(
1320 'RepositoryField', cascade="all, delete, delete-orphan")
1320 'RepositoryField', cascade="all, delete, delete-orphan")
1321 logs = relationship('UserLog')
1321 logs = relationship('UserLog')
1322 comments = relationship(
1322 comments = relationship(
1323 'ChangesetComment', cascade="all, delete, delete-orphan")
1323 'ChangesetComment', cascade="all, delete, delete-orphan")
1324 pull_requests_source = relationship(
1324 pull_requests_source = relationship(
1325 'PullRequest',
1325 'PullRequest',
1326 primaryjoin='PullRequest.source_repo_id==Repository.repo_id',
1326 primaryjoin='PullRequest.source_repo_id==Repository.repo_id',
1327 cascade="all, delete, delete-orphan")
1327 cascade="all, delete, delete-orphan")
1328 pull_requests_target = relationship(
1328 pull_requests_target = relationship(
1329 'PullRequest',
1329 'PullRequest',
1330 primaryjoin='PullRequest.target_repo_id==Repository.repo_id',
1330 primaryjoin='PullRequest.target_repo_id==Repository.repo_id',
1331 cascade="all, delete, delete-orphan")
1331 cascade="all, delete, delete-orphan")
1332 ui = relationship('RepoRhodeCodeUi', cascade="all")
1332 ui = relationship('RepoRhodeCodeUi', cascade="all")
1333 settings = relationship('RepoRhodeCodeSetting', cascade="all")
1333 settings = relationship('RepoRhodeCodeSetting', cascade="all")
1334 integrations = relationship('Integration',
1334 integrations = relationship('Integration',
1335 cascade="all, delete, delete-orphan")
1335 cascade="all, delete, delete-orphan")
1336
1336
1337 def __unicode__(self):
1337 def __unicode__(self):
1338 return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id,
1338 return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id,
1339 safe_unicode(self.repo_name))
1339 safe_unicode(self.repo_name))
1340
1340
1341 @hybrid_property
1341 @hybrid_property
1342 def landing_rev(self):
1342 def landing_rev(self):
1343 # always should return [rev_type, rev]
1343 # always should return [rev_type, rev]
1344 if self._landing_revision:
1344 if self._landing_revision:
1345 _rev_info = self._landing_revision.split(':')
1345 _rev_info = self._landing_revision.split(':')
1346 if len(_rev_info) < 2:
1346 if len(_rev_info) < 2:
1347 _rev_info.insert(0, 'rev')
1347 _rev_info.insert(0, 'rev')
1348 return [_rev_info[0], _rev_info[1]]
1348 return [_rev_info[0], _rev_info[1]]
1349 return [None, None]
1349 return [None, None]
1350
1350
1351 @landing_rev.setter
1351 @landing_rev.setter
1352 def landing_rev(self, val):
1352 def landing_rev(self, val):
1353 if ':' not in val:
1353 if ':' not in val:
1354 raise ValueError('value must be delimited with `:` and consist '
1354 raise ValueError('value must be delimited with `:` and consist '
1355 'of <rev_type>:<rev>, got %s instead' % val)
1355 'of <rev_type>:<rev>, got %s instead' % val)
1356 self._landing_revision = val
1356 self._landing_revision = val
1357
1357
1358 @hybrid_property
1358 @hybrid_property
1359 def locked(self):
1359 def locked(self):
1360 if self._locked:
1360 if self._locked:
1361 user_id, timelocked, reason = self._locked.split(':')
1361 user_id, timelocked, reason = self._locked.split(':')
1362 lock_values = int(user_id), timelocked, reason
1362 lock_values = int(user_id), timelocked, reason
1363 else:
1363 else:
1364 lock_values = [None, None, None]
1364 lock_values = [None, None, None]
1365 return lock_values
1365 return lock_values
1366
1366
1367 @locked.setter
1367 @locked.setter
1368 def locked(self, val):
1368 def locked(self, val):
1369 if val and isinstance(val, (list, tuple)):
1369 if val and isinstance(val, (list, tuple)):
1370 self._locked = ':'.join(map(str, val))
1370 self._locked = ':'.join(map(str, val))
1371 else:
1371 else:
1372 self._locked = None
1372 self._locked = None
1373
1373
1374 @hybrid_property
1374 @hybrid_property
1375 def changeset_cache(self):
1375 def changeset_cache(self):
1376 from rhodecode.lib.vcs.backends.base import EmptyCommit
1376 from rhodecode.lib.vcs.backends.base import EmptyCommit
1377 dummy = EmptyCommit().__json__()
1377 dummy = EmptyCommit().__json__()
1378 if not self._changeset_cache:
1378 if not self._changeset_cache:
1379 return dummy
1379 return dummy
1380 try:
1380 try:
1381 return json.loads(self._changeset_cache)
1381 return json.loads(self._changeset_cache)
1382 except TypeError:
1382 except TypeError:
1383 return dummy
1383 return dummy
1384 except Exception:
1384 except Exception:
1385 log.error(traceback.format_exc())
1385 log.error(traceback.format_exc())
1386 return dummy
1386 return dummy
1387
1387
1388 @changeset_cache.setter
1388 @changeset_cache.setter
1389 def changeset_cache(self, val):
1389 def changeset_cache(self, val):
1390 try:
1390 try:
1391 self._changeset_cache = json.dumps(val)
1391 self._changeset_cache = json.dumps(val)
1392 except Exception:
1392 except Exception:
1393 log.error(traceback.format_exc())
1393 log.error(traceback.format_exc())
1394
1394
1395 @hybrid_property
1395 @hybrid_property
1396 def repo_name(self):
1396 def repo_name(self):
1397 return self._repo_name
1397 return self._repo_name
1398
1398
1399 @repo_name.setter
1399 @repo_name.setter
1400 def repo_name(self, value):
1400 def repo_name(self, value):
1401 self._repo_name = value
1401 self._repo_name = value
1402 self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest()
1402 self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest()
1403
1403
1404 @classmethod
1404 @classmethod
1405 def normalize_repo_name(cls, repo_name):
1405 def normalize_repo_name(cls, repo_name):
1406 """
1406 """
1407 Normalizes os specific repo_name to the format internally stored inside
1407 Normalizes os specific repo_name to the format internally stored inside
1408 database using URL_SEP
1408 database using URL_SEP
1409
1409
1410 :param cls:
1410 :param cls:
1411 :param repo_name:
1411 :param repo_name:
1412 """
1412 """
1413 return cls.NAME_SEP.join(repo_name.split(os.sep))
1413 return cls.NAME_SEP.join(repo_name.split(os.sep))
1414
1414
1415 @classmethod
1415 @classmethod
1416 def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False):
1416 def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False):
1417 session = Session()
1417 session = Session()
1418 q = session.query(cls).filter(cls.repo_name == repo_name)
1418 q = session.query(cls).filter(cls.repo_name == repo_name)
1419
1419
1420 if cache:
1420 if cache:
1421 if identity_cache:
1421 if identity_cache:
1422 val = cls.identity_cache(session, 'repo_name', repo_name)
1422 val = cls.identity_cache(session, 'repo_name', repo_name)
1423 if val:
1423 if val:
1424 return val
1424 return val
1425 else:
1425 else:
1426 q = q.options(
1426 q = q.options(
1427 FromCache("sql_cache_short",
1427 FromCache("sql_cache_short",
1428 "get_repo_by_name_%s" % _hash_key(repo_name)))
1428 "get_repo_by_name_%s" % _hash_key(repo_name)))
1429
1429
1430 return q.scalar()
1430 return q.scalar()
1431
1431
1432 @classmethod
1432 @classmethod
1433 def get_by_full_path(cls, repo_full_path):
1433 def get_by_full_path(cls, repo_full_path):
1434 repo_name = repo_full_path.split(cls.base_path(), 1)[-1]
1434 repo_name = repo_full_path.split(cls.base_path(), 1)[-1]
1435 repo_name = cls.normalize_repo_name(repo_name)
1435 repo_name = cls.normalize_repo_name(repo_name)
1436 return cls.get_by_repo_name(repo_name.strip(URL_SEP))
1436 return cls.get_by_repo_name(repo_name.strip(URL_SEP))
1437
1437
1438 @classmethod
1438 @classmethod
1439 def get_repo_forks(cls, repo_id):
1439 def get_repo_forks(cls, repo_id):
1440 return cls.query().filter(Repository.fork_id == repo_id)
1440 return cls.query().filter(Repository.fork_id == repo_id)
1441
1441
1442 @classmethod
1442 @classmethod
1443 def base_path(cls):
1443 def base_path(cls):
1444 """
1444 """
1445 Returns base path when all repos are stored
1445 Returns base path when all repos are stored
1446
1446
1447 :param cls:
1447 :param cls:
1448 """
1448 """
1449 q = Session().query(RhodeCodeUi)\
1449 q = Session().query(RhodeCodeUi)\
1450 .filter(RhodeCodeUi.ui_key == cls.NAME_SEP)
1450 .filter(RhodeCodeUi.ui_key == cls.NAME_SEP)
1451 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1451 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1452 return q.one().ui_value
1452 return q.one().ui_value
1453
1453
1454 @classmethod
1454 @classmethod
1455 def is_valid(cls, repo_name):
1455 def is_valid(cls, repo_name):
1456 """
1456 """
1457 returns True if given repo name is a valid filesystem repository
1457 returns True if given repo name is a valid filesystem repository
1458
1458
1459 :param cls:
1459 :param cls:
1460 :param repo_name:
1460 :param repo_name:
1461 """
1461 """
1462 from rhodecode.lib.utils import is_valid_repo
1462 from rhodecode.lib.utils import is_valid_repo
1463
1463
1464 return is_valid_repo(repo_name, cls.base_path())
1464 return is_valid_repo(repo_name, cls.base_path())
1465
1465
1466 @classmethod
1466 @classmethod
1467 def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None),
1467 def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None),
1468 case_insensitive=True):
1468 case_insensitive=True):
1469 q = Repository.query()
1469 q = Repository.query()
1470
1470
1471 if not isinstance(user_id, Optional):
1471 if not isinstance(user_id, Optional):
1472 q = q.filter(Repository.user_id == user_id)
1472 q = q.filter(Repository.user_id == user_id)
1473
1473
1474 if not isinstance(group_id, Optional):
1474 if not isinstance(group_id, Optional):
1475 q = q.filter(Repository.group_id == group_id)
1475 q = q.filter(Repository.group_id == group_id)
1476
1476
1477 if case_insensitive:
1477 if case_insensitive:
1478 q = q.order_by(func.lower(Repository.repo_name))
1478 q = q.order_by(func.lower(Repository.repo_name))
1479 else:
1479 else:
1480 q = q.order_by(Repository.repo_name)
1480 q = q.order_by(Repository.repo_name)
1481 return q.all()
1481 return q.all()
1482
1482
1483 @property
1483 @property
1484 def forks(self):
1484 def forks(self):
1485 """
1485 """
1486 Return forks of this repo
1486 Return forks of this repo
1487 """
1487 """
1488 return Repository.get_repo_forks(self.repo_id)
1488 return Repository.get_repo_forks(self.repo_id)
1489
1489
1490 @property
1490 @property
1491 def parent(self):
1491 def parent(self):
1492 """
1492 """
1493 Returns fork parent
1493 Returns fork parent
1494 """
1494 """
1495 return self.fork
1495 return self.fork
1496
1496
1497 @property
1497 @property
1498 def just_name(self):
1498 def just_name(self):
1499 return self.repo_name.split(self.NAME_SEP)[-1]
1499 return self.repo_name.split(self.NAME_SEP)[-1]
1500
1500
1501 @property
1501 @property
1502 def groups_with_parents(self):
1502 def groups_with_parents(self):
1503 groups = []
1503 groups = []
1504 if self.group is None:
1504 if self.group is None:
1505 return groups
1505 return groups
1506
1506
1507 cur_gr = self.group
1507 cur_gr = self.group
1508 groups.insert(0, cur_gr)
1508 groups.insert(0, cur_gr)
1509 while 1:
1509 while 1:
1510 gr = getattr(cur_gr, 'parent_group', None)
1510 gr = getattr(cur_gr, 'parent_group', None)
1511 cur_gr = cur_gr.parent_group
1511 cur_gr = cur_gr.parent_group
1512 if gr is None:
1512 if gr is None:
1513 break
1513 break
1514 groups.insert(0, gr)
1514 groups.insert(0, gr)
1515
1515
1516 return groups
1516 return groups
1517
1517
1518 @property
1518 @property
1519 def groups_and_repo(self):
1519 def groups_and_repo(self):
1520 return self.groups_with_parents, self
1520 return self.groups_with_parents, self
1521
1521
1522 @LazyProperty
1522 @LazyProperty
1523 def repo_path(self):
1523 def repo_path(self):
1524 """
1524 """
1525 Returns base full path for that repository means where it actually
1525 Returns base full path for that repository means where it actually
1526 exists on a filesystem
1526 exists on a filesystem
1527 """
1527 """
1528 q = Session().query(RhodeCodeUi).filter(
1528 q = Session().query(RhodeCodeUi).filter(
1529 RhodeCodeUi.ui_key == self.NAME_SEP)
1529 RhodeCodeUi.ui_key == self.NAME_SEP)
1530 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1530 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1531 return q.one().ui_value
1531 return q.one().ui_value
1532
1532
1533 @property
1533 @property
1534 def repo_full_path(self):
1534 def repo_full_path(self):
1535 p = [self.repo_path]
1535 p = [self.repo_path]
1536 # we need to split the name by / since this is how we store the
1536 # we need to split the name by / since this is how we store the
1537 # names in the database, but that eventually needs to be converted
1537 # names in the database, but that eventually needs to be converted
1538 # into a valid system path
1538 # into a valid system path
1539 p += self.repo_name.split(self.NAME_SEP)
1539 p += self.repo_name.split(self.NAME_SEP)
1540 return os.path.join(*map(safe_unicode, p))
1540 return os.path.join(*map(safe_unicode, p))
1541
1541
1542 @property
1542 @property
1543 def cache_keys(self):
1543 def cache_keys(self):
1544 """
1544 """
1545 Returns associated cache keys for that repo
1545 Returns associated cache keys for that repo
1546 """
1546 """
1547 return CacheKey.query()\
1547 return CacheKey.query()\
1548 .filter(CacheKey.cache_args == self.repo_name)\
1548 .filter(CacheKey.cache_args == self.repo_name)\
1549 .order_by(CacheKey.cache_key)\
1549 .order_by(CacheKey.cache_key)\
1550 .all()
1550 .all()
1551
1551
1552 def get_new_name(self, repo_name):
1552 def get_new_name(self, repo_name):
1553 """
1553 """
1554 returns new full repository name based on assigned group and new new
1554 returns new full repository name based on assigned group and new new
1555
1555
1556 :param group_name:
1556 :param group_name:
1557 """
1557 """
1558 path_prefix = self.group.full_path_splitted if self.group else []
1558 path_prefix = self.group.full_path_splitted if self.group else []
1559 return self.NAME_SEP.join(path_prefix + [repo_name])
1559 return self.NAME_SEP.join(path_prefix + [repo_name])
1560
1560
1561 @property
1561 @property
1562 def _config(self):
1562 def _config(self):
1563 """
1563 """
1564 Returns db based config object.
1564 Returns db based config object.
1565 """
1565 """
1566 from rhodecode.lib.utils import make_db_config
1566 from rhodecode.lib.utils import make_db_config
1567 return make_db_config(clear_session=False, repo=self)
1567 return make_db_config(clear_session=False, repo=self)
1568
1568
1569 def permissions(self, with_admins=True, with_owner=True):
1569 def permissions(self, with_admins=True, with_owner=True):
1570 q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self)
1570 q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self)
1571 q = q.options(joinedload(UserRepoToPerm.repository),
1571 q = q.options(joinedload(UserRepoToPerm.repository),
1572 joinedload(UserRepoToPerm.user),
1572 joinedload(UserRepoToPerm.user),
1573 joinedload(UserRepoToPerm.permission),)
1573 joinedload(UserRepoToPerm.permission),)
1574
1574
1575 # get owners and admins and permissions. We do a trick of re-writing
1575 # get owners and admins and permissions. We do a trick of re-writing
1576 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1576 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1577 # has a global reference and changing one object propagates to all
1577 # has a global reference and changing one object propagates to all
1578 # others. This means if admin is also an owner admin_row that change
1578 # others. This means if admin is also an owner admin_row that change
1579 # would propagate to both objects
1579 # would propagate to both objects
1580 perm_rows = []
1580 perm_rows = []
1581 for _usr in q.all():
1581 for _usr in q.all():
1582 usr = AttributeDict(_usr.user.get_dict())
1582 usr = AttributeDict(_usr.user.get_dict())
1583 usr.permission = _usr.permission.permission_name
1583 usr.permission = _usr.permission.permission_name
1584 perm_rows.append(usr)
1584 perm_rows.append(usr)
1585
1585
1586 # filter the perm rows by 'default' first and then sort them by
1586 # filter the perm rows by 'default' first and then sort them by
1587 # admin,write,read,none permissions sorted again alphabetically in
1587 # admin,write,read,none permissions sorted again alphabetically in
1588 # each group
1588 # each group
1589 perm_rows = sorted(perm_rows, key=display_sort)
1589 perm_rows = sorted(perm_rows, key=display_sort)
1590
1590
1591 _admin_perm = 'repository.admin'
1591 _admin_perm = 'repository.admin'
1592 owner_row = []
1592 owner_row = []
1593 if with_owner:
1593 if with_owner:
1594 usr = AttributeDict(self.user.get_dict())
1594 usr = AttributeDict(self.user.get_dict())
1595 usr.owner_row = True
1595 usr.owner_row = True
1596 usr.permission = _admin_perm
1596 usr.permission = _admin_perm
1597 owner_row.append(usr)
1597 owner_row.append(usr)
1598
1598
1599 super_admin_rows = []
1599 super_admin_rows = []
1600 if with_admins:
1600 if with_admins:
1601 for usr in User.get_all_super_admins():
1601 for usr in User.get_all_super_admins():
1602 # if this admin is also owner, don't double the record
1602 # if this admin is also owner, don't double the record
1603 if usr.user_id == owner_row[0].user_id:
1603 if usr.user_id == owner_row[0].user_id:
1604 owner_row[0].admin_row = True
1604 owner_row[0].admin_row = True
1605 else:
1605 else:
1606 usr = AttributeDict(usr.get_dict())
1606 usr = AttributeDict(usr.get_dict())
1607 usr.admin_row = True
1607 usr.admin_row = True
1608 usr.permission = _admin_perm
1608 usr.permission = _admin_perm
1609 super_admin_rows.append(usr)
1609 super_admin_rows.append(usr)
1610
1610
1611 return super_admin_rows + owner_row + perm_rows
1611 return super_admin_rows + owner_row + perm_rows
1612
1612
1613 def permission_user_groups(self):
1613 def permission_user_groups(self):
1614 q = UserGroupRepoToPerm.query().filter(
1614 q = UserGroupRepoToPerm.query().filter(
1615 UserGroupRepoToPerm.repository == self)
1615 UserGroupRepoToPerm.repository == self)
1616 q = q.options(joinedload(UserGroupRepoToPerm.repository),
1616 q = q.options(joinedload(UserGroupRepoToPerm.repository),
1617 joinedload(UserGroupRepoToPerm.users_group),
1617 joinedload(UserGroupRepoToPerm.users_group),
1618 joinedload(UserGroupRepoToPerm.permission),)
1618 joinedload(UserGroupRepoToPerm.permission),)
1619
1619
1620 perm_rows = []
1620 perm_rows = []
1621 for _user_group in q.all():
1621 for _user_group in q.all():
1622 usr = AttributeDict(_user_group.users_group.get_dict())
1622 usr = AttributeDict(_user_group.users_group.get_dict())
1623 usr.permission = _user_group.permission.permission_name
1623 usr.permission = _user_group.permission.permission_name
1624 perm_rows.append(usr)
1624 perm_rows.append(usr)
1625
1625
1626 return perm_rows
1626 return perm_rows
1627
1627
1628 def get_api_data(self, include_secrets=False):
1628 def get_api_data(self, include_secrets=False):
1629 """
1629 """
1630 Common function for generating repo api data
1630 Common function for generating repo api data
1631
1631
1632 :param include_secrets: See :meth:`User.get_api_data`.
1632 :param include_secrets: See :meth:`User.get_api_data`.
1633
1633
1634 """
1634 """
1635 # TODO: mikhail: Here there is an anti-pattern, we probably need to
1635 # TODO: mikhail: Here there is an anti-pattern, we probably need to
1636 # move this methods on models level.
1636 # move this methods on models level.
1637 from rhodecode.model.settings import SettingsModel
1637 from rhodecode.model.settings import SettingsModel
1638
1638
1639 repo = self
1639 repo = self
1640 _user_id, _time, _reason = self.locked
1640 _user_id, _time, _reason = self.locked
1641
1641
1642 data = {
1642 data = {
1643 'repo_id': repo.repo_id,
1643 'repo_id': repo.repo_id,
1644 'repo_name': repo.repo_name,
1644 'repo_name': repo.repo_name,
1645 'repo_type': repo.repo_type,
1645 'repo_type': repo.repo_type,
1646 'clone_uri': repo.clone_uri or '',
1646 'clone_uri': repo.clone_uri or '',
1647 'url': url('summary_home', repo_name=self.repo_name, qualified=True),
1647 'url': url('summary_home', repo_name=self.repo_name, qualified=True),
1648 'private': repo.private,
1648 'private': repo.private,
1649 'created_on': repo.created_on,
1649 'created_on': repo.created_on,
1650 'description': repo.description,
1650 'description': repo.description,
1651 'landing_rev': repo.landing_rev,
1651 'landing_rev': repo.landing_rev,
1652 'owner': repo.user.username,
1652 'owner': repo.user.username,
1653 'fork_of': repo.fork.repo_name if repo.fork else None,
1653 'fork_of': repo.fork.repo_name if repo.fork else None,
1654 'enable_statistics': repo.enable_statistics,
1654 'enable_statistics': repo.enable_statistics,
1655 'enable_locking': repo.enable_locking,
1655 'enable_locking': repo.enable_locking,
1656 'enable_downloads': repo.enable_downloads,
1656 'enable_downloads': repo.enable_downloads,
1657 'last_changeset': repo.changeset_cache,
1657 'last_changeset': repo.changeset_cache,
1658 'locked_by': User.get(_user_id).get_api_data(
1658 'locked_by': User.get(_user_id).get_api_data(
1659 include_secrets=include_secrets) if _user_id else None,
1659 include_secrets=include_secrets) if _user_id else None,
1660 'locked_date': time_to_datetime(_time) if _time else None,
1660 'locked_date': time_to_datetime(_time) if _time else None,
1661 'lock_reason': _reason if _reason else None,
1661 'lock_reason': _reason if _reason else None,
1662 }
1662 }
1663
1663
1664 # TODO: mikhail: should be per-repo settings here
1664 # TODO: mikhail: should be per-repo settings here
1665 rc_config = SettingsModel().get_all_settings()
1665 rc_config = SettingsModel().get_all_settings()
1666 repository_fields = str2bool(
1666 repository_fields = str2bool(
1667 rc_config.get('rhodecode_repository_fields'))
1667 rc_config.get('rhodecode_repository_fields'))
1668 if repository_fields:
1668 if repository_fields:
1669 for f in self.extra_fields:
1669 for f in self.extra_fields:
1670 data[f.field_key_prefixed] = f.field_value
1670 data[f.field_key_prefixed] = f.field_value
1671
1671
1672 return data
1672 return data
1673
1673
1674 @classmethod
1674 @classmethod
1675 def lock(cls, repo, user_id, lock_time=None, lock_reason=None):
1675 def lock(cls, repo, user_id, lock_time=None, lock_reason=None):
1676 if not lock_time:
1676 if not lock_time:
1677 lock_time = time.time()
1677 lock_time = time.time()
1678 if not lock_reason:
1678 if not lock_reason:
1679 lock_reason = cls.LOCK_AUTOMATIC
1679 lock_reason = cls.LOCK_AUTOMATIC
1680 repo.locked = [user_id, lock_time, lock_reason]
1680 repo.locked = [user_id, lock_time, lock_reason]
1681 Session().add(repo)
1681 Session().add(repo)
1682 Session().commit()
1682 Session().commit()
1683
1683
1684 @classmethod
1684 @classmethod
1685 def unlock(cls, repo):
1685 def unlock(cls, repo):
1686 repo.locked = None
1686 repo.locked = None
1687 Session().add(repo)
1687 Session().add(repo)
1688 Session().commit()
1688 Session().commit()
1689
1689
1690 @classmethod
1690 @classmethod
1691 def getlock(cls, repo):
1691 def getlock(cls, repo):
1692 return repo.locked
1692 return repo.locked
1693
1693
1694 def is_user_lock(self, user_id):
1694 def is_user_lock(self, user_id):
1695 if self.lock[0]:
1695 if self.lock[0]:
1696 lock_user_id = safe_int(self.lock[0])
1696 lock_user_id = safe_int(self.lock[0])
1697 user_id = safe_int(user_id)
1697 user_id = safe_int(user_id)
1698 # both are ints, and they are equal
1698 # both are ints, and they are equal
1699 return all([lock_user_id, user_id]) and lock_user_id == user_id
1699 return all([lock_user_id, user_id]) and lock_user_id == user_id
1700
1700
1701 return False
1701 return False
1702
1702
1703 def get_locking_state(self, action, user_id, only_when_enabled=True):
1703 def get_locking_state(self, action, user_id, only_when_enabled=True):
1704 """
1704 """
1705 Checks locking on this repository, if locking is enabled and lock is
1705 Checks locking on this repository, if locking is enabled and lock is
1706 present returns a tuple of make_lock, locked, locked_by.
1706 present returns a tuple of make_lock, locked, locked_by.
1707 make_lock can have 3 states None (do nothing) True, make lock
1707 make_lock can have 3 states None (do nothing) True, make lock
1708 False release lock, This value is later propagated to hooks, which
1708 False release lock, This value is later propagated to hooks, which
1709 do the locking. Think about this as signals passed to hooks what to do.
1709 do the locking. Think about this as signals passed to hooks what to do.
1710
1710
1711 """
1711 """
1712 # TODO: johbo: This is part of the business logic and should be moved
1712 # TODO: johbo: This is part of the business logic and should be moved
1713 # into the RepositoryModel.
1713 # into the RepositoryModel.
1714
1714
1715 if action not in ('push', 'pull'):
1715 if action not in ('push', 'pull'):
1716 raise ValueError("Invalid action value: %s" % repr(action))
1716 raise ValueError("Invalid action value: %s" % repr(action))
1717
1717
1718 # defines if locked error should be thrown to user
1718 # defines if locked error should be thrown to user
1719 currently_locked = False
1719 currently_locked = False
1720 # defines if new lock should be made, tri-state
1720 # defines if new lock should be made, tri-state
1721 make_lock = None
1721 make_lock = None
1722 repo = self
1722 repo = self
1723 user = User.get(user_id)
1723 user = User.get(user_id)
1724
1724
1725 lock_info = repo.locked
1725 lock_info = repo.locked
1726
1726
1727 if repo and (repo.enable_locking or not only_when_enabled):
1727 if repo and (repo.enable_locking or not only_when_enabled):
1728 if action == 'push':
1728 if action == 'push':
1729 # check if it's already locked !, if it is compare users
1729 # check if it's already locked !, if it is compare users
1730 locked_by_user_id = lock_info[0]
1730 locked_by_user_id = lock_info[0]
1731 if user.user_id == locked_by_user_id:
1731 if user.user_id == locked_by_user_id:
1732 log.debug(
1732 log.debug(
1733 'Got `push` action from user %s, now unlocking', user)
1733 'Got `push` action from user %s, now unlocking', user)
1734 # unlock if we have push from user who locked
1734 # unlock if we have push from user who locked
1735 make_lock = False
1735 make_lock = False
1736 else:
1736 else:
1737 # we're not the same user who locked, ban with
1737 # we're not the same user who locked, ban with
1738 # code defined in settings (default is 423 HTTP Locked) !
1738 # code defined in settings (default is 423 HTTP Locked) !
1739 log.debug('Repo %s is currently locked by %s', repo, user)
1739 log.debug('Repo %s is currently locked by %s', repo, user)
1740 currently_locked = True
1740 currently_locked = True
1741 elif action == 'pull':
1741 elif action == 'pull':
1742 # [0] user [1] date
1742 # [0] user [1] date
1743 if lock_info[0] and lock_info[1]:
1743 if lock_info[0] and lock_info[1]:
1744 log.debug('Repo %s is currently locked by %s', repo, user)
1744 log.debug('Repo %s is currently locked by %s', repo, user)
1745 currently_locked = True
1745 currently_locked = True
1746 else:
1746 else:
1747 log.debug('Setting lock on repo %s by %s', repo, user)
1747 log.debug('Setting lock on repo %s by %s', repo, user)
1748 make_lock = True
1748 make_lock = True
1749
1749
1750 else:
1750 else:
1751 log.debug('Repository %s do not have locking enabled', repo)
1751 log.debug('Repository %s do not have locking enabled', repo)
1752
1752
1753 log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s',
1753 log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s',
1754 make_lock, currently_locked, lock_info)
1754 make_lock, currently_locked, lock_info)
1755
1755
1756 from rhodecode.lib.auth import HasRepoPermissionAny
1756 from rhodecode.lib.auth import HasRepoPermissionAny
1757 perm_check = HasRepoPermissionAny('repository.write', 'repository.admin')
1757 perm_check = HasRepoPermissionAny('repository.write', 'repository.admin')
1758 if make_lock and not perm_check(repo_name=repo.repo_name, user=user):
1758 if make_lock and not perm_check(repo_name=repo.repo_name, user=user):
1759 # if we don't have at least write permission we cannot make a lock
1759 # if we don't have at least write permission we cannot make a lock
1760 log.debug('lock state reset back to FALSE due to lack '
1760 log.debug('lock state reset back to FALSE due to lack '
1761 'of at least read permission')
1761 'of at least read permission')
1762 make_lock = False
1762 make_lock = False
1763
1763
1764 return make_lock, currently_locked, lock_info
1764 return make_lock, currently_locked, lock_info
1765
1765
1766 @property
1766 @property
1767 def last_db_change(self):
1767 def last_db_change(self):
1768 return self.updated_on
1768 return self.updated_on
1769
1769
1770 @property
1770 @property
1771 def clone_uri_hidden(self):
1771 def clone_uri_hidden(self):
1772 clone_uri = self.clone_uri
1772 clone_uri = self.clone_uri
1773 if clone_uri:
1773 if clone_uri:
1774 import urlobject
1774 import urlobject
1775 url_obj = urlobject.URLObject(clone_uri)
1775 url_obj = urlobject.URLObject(clone_uri)
1776 if url_obj.password:
1776 if url_obj.password:
1777 clone_uri = url_obj.with_password('*****')
1777 clone_uri = url_obj.with_password('*****')
1778 return clone_uri
1778 return clone_uri
1779
1779
1780 def clone_url(self, **override):
1780 def clone_url(self, **override):
1781 qualified_home_url = url('home', qualified=True)
1781 qualified_home_url = url('home', qualified=True)
1782
1782
1783 uri_tmpl = None
1783 uri_tmpl = None
1784 if 'with_id' in override:
1784 if 'with_id' in override:
1785 uri_tmpl = self.DEFAULT_CLONE_URI_ID
1785 uri_tmpl = self.DEFAULT_CLONE_URI_ID
1786 del override['with_id']
1786 del override['with_id']
1787
1787
1788 if 'uri_tmpl' in override:
1788 if 'uri_tmpl' in override:
1789 uri_tmpl = override['uri_tmpl']
1789 uri_tmpl = override['uri_tmpl']
1790 del override['uri_tmpl']
1790 del override['uri_tmpl']
1791
1791
1792 # we didn't override our tmpl from **overrides
1792 # we didn't override our tmpl from **overrides
1793 if not uri_tmpl:
1793 if not uri_tmpl:
1794 uri_tmpl = self.DEFAULT_CLONE_URI
1794 uri_tmpl = self.DEFAULT_CLONE_URI
1795 try:
1795 try:
1796 from pylons import tmpl_context as c
1796 from pylons import tmpl_context as c
1797 uri_tmpl = c.clone_uri_tmpl
1797 uri_tmpl = c.clone_uri_tmpl
1798 except Exception:
1798 except Exception:
1799 # in any case if we call this outside of request context,
1799 # in any case if we call this outside of request context,
1800 # ie, not having tmpl_context set up
1800 # ie, not having tmpl_context set up
1801 pass
1801 pass
1802
1802
1803 return get_clone_url(uri_tmpl=uri_tmpl,
1803 return get_clone_url(uri_tmpl=uri_tmpl,
1804 qualifed_home_url=qualified_home_url,
1804 qualifed_home_url=qualified_home_url,
1805 repo_name=self.repo_name,
1805 repo_name=self.repo_name,
1806 repo_id=self.repo_id, **override)
1806 repo_id=self.repo_id, **override)
1807
1807
1808 def set_state(self, state):
1808 def set_state(self, state):
1809 self.repo_state = state
1809 self.repo_state = state
1810 Session().add(self)
1810 Session().add(self)
1811 #==========================================================================
1811 #==========================================================================
1812 # SCM PROPERTIES
1812 # SCM PROPERTIES
1813 #==========================================================================
1813 #==========================================================================
1814
1814
1815 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None):
1815 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None):
1816 return get_commit_safe(
1816 return get_commit_safe(
1817 self.scm_instance(), commit_id, commit_idx, pre_load=pre_load)
1817 self.scm_instance(), commit_id, commit_idx, pre_load=pre_load)
1818
1818
1819 def get_changeset(self, rev=None, pre_load=None):
1819 def get_changeset(self, rev=None, pre_load=None):
1820 warnings.warn("Use get_commit", DeprecationWarning)
1820 warnings.warn("Use get_commit", DeprecationWarning)
1821 commit_id = None
1821 commit_id = None
1822 commit_idx = None
1822 commit_idx = None
1823 if isinstance(rev, basestring):
1823 if isinstance(rev, basestring):
1824 commit_id = rev
1824 commit_id = rev
1825 else:
1825 else:
1826 commit_idx = rev
1826 commit_idx = rev
1827 return self.get_commit(commit_id=commit_id, commit_idx=commit_idx,
1827 return self.get_commit(commit_id=commit_id, commit_idx=commit_idx,
1828 pre_load=pre_load)
1828 pre_load=pre_load)
1829
1829
1830 def get_landing_commit(self):
1830 def get_landing_commit(self):
1831 """
1831 """
1832 Returns landing commit, or if that doesn't exist returns the tip
1832 Returns landing commit, or if that doesn't exist returns the tip
1833 """
1833 """
1834 _rev_type, _rev = self.landing_rev
1834 _rev_type, _rev = self.landing_rev
1835 commit = self.get_commit(_rev)
1835 commit = self.get_commit(_rev)
1836 if isinstance(commit, EmptyCommit):
1836 if isinstance(commit, EmptyCommit):
1837 return self.get_commit()
1837 return self.get_commit()
1838 return commit
1838 return commit
1839
1839
1840 def update_commit_cache(self, cs_cache=None, config=None):
1840 def update_commit_cache(self, cs_cache=None, config=None):
1841 """
1841 """
1842 Update cache of last changeset for repository, keys should be::
1842 Update cache of last changeset for repository, keys should be::
1843
1843
1844 short_id
1844 short_id
1845 raw_id
1845 raw_id
1846 revision
1846 revision
1847 parents
1847 parents
1848 message
1848 message
1849 date
1849 date
1850 author
1850 author
1851
1851
1852 :param cs_cache:
1852 :param cs_cache:
1853 """
1853 """
1854 from rhodecode.lib.vcs.backends.base import BaseChangeset
1854 from rhodecode.lib.vcs.backends.base import BaseChangeset
1855 if cs_cache is None:
1855 if cs_cache is None:
1856 # use no-cache version here
1856 # use no-cache version here
1857 scm_repo = self.scm_instance(cache=False, config=config)
1857 scm_repo = self.scm_instance(cache=False, config=config)
1858 if scm_repo:
1858 if scm_repo:
1859 cs_cache = scm_repo.get_commit(
1859 cs_cache = scm_repo.get_commit(
1860 pre_load=["author", "date", "message", "parents"])
1860 pre_load=["author", "date", "message", "parents"])
1861 else:
1861 else:
1862 cs_cache = EmptyCommit()
1862 cs_cache = EmptyCommit()
1863
1863
1864 if isinstance(cs_cache, BaseChangeset):
1864 if isinstance(cs_cache, BaseChangeset):
1865 cs_cache = cs_cache.__json__()
1865 cs_cache = cs_cache.__json__()
1866
1866
1867 def is_outdated(new_cs_cache):
1867 def is_outdated(new_cs_cache):
1868 if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or
1868 if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or
1869 new_cs_cache['revision'] != self.changeset_cache['revision']):
1869 new_cs_cache['revision'] != self.changeset_cache['revision']):
1870 return True
1870 return True
1871 return False
1871 return False
1872
1872
1873 # check if we have maybe already latest cached revision
1873 # check if we have maybe already latest cached revision
1874 if is_outdated(cs_cache) or not self.changeset_cache:
1874 if is_outdated(cs_cache) or not self.changeset_cache:
1875 _default = datetime.datetime.fromtimestamp(0)
1875 _default = datetime.datetime.fromtimestamp(0)
1876 last_change = cs_cache.get('date') or _default
1876 last_change = cs_cache.get('date') or _default
1877 log.debug('updated repo %s with new cs cache %s',
1877 log.debug('updated repo %s with new cs cache %s',
1878 self.repo_name, cs_cache)
1878 self.repo_name, cs_cache)
1879 self.updated_on = last_change
1879 self.updated_on = last_change
1880 self.changeset_cache = cs_cache
1880 self.changeset_cache = cs_cache
1881 Session().add(self)
1881 Session().add(self)
1882 Session().commit()
1882 Session().commit()
1883 else:
1883 else:
1884 log.debug('Skipping update_commit_cache for repo:`%s` '
1884 log.debug('Skipping update_commit_cache for repo:`%s` '
1885 'commit already with latest changes', self.repo_name)
1885 'commit already with latest changes', self.repo_name)
1886
1886
1887 @property
1887 @property
1888 def tip(self):
1888 def tip(self):
1889 return self.get_commit('tip')
1889 return self.get_commit('tip')
1890
1890
1891 @property
1891 @property
1892 def author(self):
1892 def author(self):
1893 return self.tip.author
1893 return self.tip.author
1894
1894
1895 @property
1895 @property
1896 def last_change(self):
1896 def last_change(self):
1897 return self.scm_instance().last_change
1897 return self.scm_instance().last_change
1898
1898
1899 def get_comments(self, revisions=None):
1899 def get_comments(self, revisions=None):
1900 """
1900 """
1901 Returns comments for this repository grouped by revisions
1901 Returns comments for this repository grouped by revisions
1902
1902
1903 :param revisions: filter query by revisions only
1903 :param revisions: filter query by revisions only
1904 """
1904 """
1905 cmts = ChangesetComment.query()\
1905 cmts = ChangesetComment.query()\
1906 .filter(ChangesetComment.repo == self)
1906 .filter(ChangesetComment.repo == self)
1907 if revisions:
1907 if revisions:
1908 cmts = cmts.filter(ChangesetComment.revision.in_(revisions))
1908 cmts = cmts.filter(ChangesetComment.revision.in_(revisions))
1909 grouped = collections.defaultdict(list)
1909 grouped = collections.defaultdict(list)
1910 for cmt in cmts.all():
1910 for cmt in cmts.all():
1911 grouped[cmt.revision].append(cmt)
1911 grouped[cmt.revision].append(cmt)
1912 return grouped
1912 return grouped
1913
1913
1914 def statuses(self, revisions=None):
1914 def statuses(self, revisions=None):
1915 """
1915 """
1916 Returns statuses for this repository
1916 Returns statuses for this repository
1917
1917
1918 :param revisions: list of revisions to get statuses for
1918 :param revisions: list of revisions to get statuses for
1919 """
1919 """
1920 statuses = ChangesetStatus.query()\
1920 statuses = ChangesetStatus.query()\
1921 .filter(ChangesetStatus.repo == self)\
1921 .filter(ChangesetStatus.repo == self)\
1922 .filter(ChangesetStatus.version == 0)
1922 .filter(ChangesetStatus.version == 0)
1923
1923
1924 if revisions:
1924 if revisions:
1925 # Try doing the filtering in chunks to avoid hitting limits
1925 # Try doing the filtering in chunks to avoid hitting limits
1926 size = 500
1926 size = 500
1927 status_results = []
1927 status_results = []
1928 for chunk in xrange(0, len(revisions), size):
1928 for chunk in xrange(0, len(revisions), size):
1929 status_results += statuses.filter(
1929 status_results += statuses.filter(
1930 ChangesetStatus.revision.in_(
1930 ChangesetStatus.revision.in_(
1931 revisions[chunk: chunk+size])
1931 revisions[chunk: chunk+size])
1932 ).all()
1932 ).all()
1933 else:
1933 else:
1934 status_results = statuses.all()
1934 status_results = statuses.all()
1935
1935
1936 grouped = {}
1936 grouped = {}
1937
1937
1938 # maybe we have open new pullrequest without a status?
1938 # maybe we have open new pullrequest without a status?
1939 stat = ChangesetStatus.STATUS_UNDER_REVIEW
1939 stat = ChangesetStatus.STATUS_UNDER_REVIEW
1940 status_lbl = ChangesetStatus.get_status_lbl(stat)
1940 status_lbl = ChangesetStatus.get_status_lbl(stat)
1941 for pr in PullRequest.query().filter(PullRequest.source_repo == self).all():
1941 for pr in PullRequest.query().filter(PullRequest.source_repo == self).all():
1942 for rev in pr.revisions:
1942 for rev in pr.revisions:
1943 pr_id = pr.pull_request_id
1943 pr_id = pr.pull_request_id
1944 pr_repo = pr.target_repo.repo_name
1944 pr_repo = pr.target_repo.repo_name
1945 grouped[rev] = [stat, status_lbl, pr_id, pr_repo]
1945 grouped[rev] = [stat, status_lbl, pr_id, pr_repo]
1946
1946
1947 for stat in status_results:
1947 for stat in status_results:
1948 pr_id = pr_repo = None
1948 pr_id = pr_repo = None
1949 if stat.pull_request:
1949 if stat.pull_request:
1950 pr_id = stat.pull_request.pull_request_id
1950 pr_id = stat.pull_request.pull_request_id
1951 pr_repo = stat.pull_request.target_repo.repo_name
1951 pr_repo = stat.pull_request.target_repo.repo_name
1952 grouped[stat.revision] = [str(stat.status), stat.status_lbl,
1952 grouped[stat.revision] = [str(stat.status), stat.status_lbl,
1953 pr_id, pr_repo]
1953 pr_id, pr_repo]
1954 return grouped
1954 return grouped
1955
1955
1956 # ==========================================================================
1956 # ==========================================================================
1957 # SCM CACHE INSTANCE
1957 # SCM CACHE INSTANCE
1958 # ==========================================================================
1958 # ==========================================================================
1959
1959
1960 def scm_instance(self, **kwargs):
1960 def scm_instance(self, **kwargs):
1961 import rhodecode
1961 import rhodecode
1962
1962
1963 # Passing a config will not hit the cache currently only used
1963 # Passing a config will not hit the cache currently only used
1964 # for repo2dbmapper
1964 # for repo2dbmapper
1965 config = kwargs.pop('config', None)
1965 config = kwargs.pop('config', None)
1966 cache = kwargs.pop('cache', None)
1966 cache = kwargs.pop('cache', None)
1967 full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache'))
1967 full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache'))
1968 # if cache is NOT defined use default global, else we have a full
1968 # if cache is NOT defined use default global, else we have a full
1969 # control over cache behaviour
1969 # control over cache behaviour
1970 if cache is None and full_cache and not config:
1970 if cache is None and full_cache and not config:
1971 return self._get_instance_cached()
1971 return self._get_instance_cached()
1972 return self._get_instance(cache=bool(cache), config=config)
1972 return self._get_instance(cache=bool(cache), config=config)
1973
1973
1974 def _get_instance_cached(self):
1974 def _get_instance_cached(self):
1975 @cache_region('long_term')
1975 @cache_region('long_term')
1976 def _get_repo(cache_key):
1976 def _get_repo(cache_key):
1977 return self._get_instance()
1977 return self._get_instance()
1978
1978
1979 invalidator_context = CacheKey.repo_context_cache(
1979 invalidator_context = CacheKey.repo_context_cache(
1980 _get_repo, self.repo_name, None, thread_scoped=True)
1980 _get_repo, self.repo_name, None, thread_scoped=True)
1981
1981
1982 with invalidator_context as context:
1982 with invalidator_context as context:
1983 context.invalidate()
1983 context.invalidate()
1984 repo = context.compute()
1984 repo = context.compute()
1985
1985
1986 return repo
1986 return repo
1987
1987
1988 def _get_instance(self, cache=True, config=None):
1988 def _get_instance(self, cache=True, config=None):
1989 config = config or self._config
1989 config = config or self._config
1990 custom_wire = {
1990 custom_wire = {
1991 'cache': cache # controls the vcs.remote cache
1991 'cache': cache # controls the vcs.remote cache
1992 }
1992 }
1993
1993
1994 repo = get_vcs_instance(
1994 repo = get_vcs_instance(
1995 repo_path=safe_str(self.repo_full_path),
1995 repo_path=safe_str(self.repo_full_path),
1996 config=config,
1996 config=config,
1997 with_wire=custom_wire,
1997 with_wire=custom_wire,
1998 create=False)
1998 create=False)
1999
1999
2000 return repo
2000 return repo
2001
2001
2002 def __json__(self):
2002 def __json__(self):
2003 return {'landing_rev': self.landing_rev}
2003 return {'landing_rev': self.landing_rev}
2004
2004
2005 def get_dict(self):
2005 def get_dict(self):
2006
2006
2007 # Since we transformed `repo_name` to a hybrid property, we need to
2007 # Since we transformed `repo_name` to a hybrid property, we need to
2008 # keep compatibility with the code which uses `repo_name` field.
2008 # keep compatibility with the code which uses `repo_name` field.
2009
2009
2010 result = super(Repository, self).get_dict()
2010 result = super(Repository, self).get_dict()
2011 result['repo_name'] = result.pop('_repo_name', None)
2011 result['repo_name'] = result.pop('_repo_name', None)
2012 return result
2012 return result
2013
2013
2014
2014
2015 class RepoGroup(Base, BaseModel):
2015 class RepoGroup(Base, BaseModel):
2016 __tablename__ = 'groups'
2016 __tablename__ = 'groups'
2017 __table_args__ = (
2017 __table_args__ = (
2018 UniqueConstraint('group_name', 'group_parent_id'),
2018 UniqueConstraint('group_name', 'group_parent_id'),
2019 CheckConstraint('group_id != group_parent_id'),
2019 CheckConstraint('group_id != group_parent_id'),
2020 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2020 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2021 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2021 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2022 )
2022 )
2023 __mapper_args__ = {'order_by': 'group_name'}
2023 __mapper_args__ = {'order_by': 'group_name'}
2024
2024
2025 CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups
2025 CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups
2026
2026
2027 group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2027 group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2028 group_name = Column("group_name", String(255), nullable=False, unique=True, default=None)
2028 group_name = Column("group_name", String(255), nullable=False, unique=True, default=None)
2029 group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None)
2029 group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None)
2030 group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None)
2030 group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None)
2031 enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False)
2031 enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False)
2032 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
2032 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
2033 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2033 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2034
2034
2035 repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id')
2035 repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id')
2036 users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
2036 users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
2037 parent_group = relationship('RepoGroup', remote_side=group_id)
2037 parent_group = relationship('RepoGroup', remote_side=group_id)
2038 user = relationship('User')
2038 user = relationship('User')
2039
2039
2040 def __init__(self, group_name='', parent_group=None):
2040 def __init__(self, group_name='', parent_group=None):
2041 self.group_name = group_name
2041 self.group_name = group_name
2042 self.parent_group = parent_group
2042 self.parent_group = parent_group
2043
2043
2044 def __unicode__(self):
2044 def __unicode__(self):
2045 return u"<%s('id:%s:%s')>" % (self.__class__.__name__, self.group_id,
2045 return u"<%s('id:%s:%s')>" % (self.__class__.__name__, self.group_id,
2046 self.group_name)
2046 self.group_name)
2047
2047
2048 @classmethod
2048 @classmethod
2049 def _generate_choice(cls, repo_group):
2049 def _generate_choice(cls, repo_group):
2050 from webhelpers.html import literal as _literal
2050 from webhelpers.html import literal as _literal
2051 _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k))
2051 _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k))
2052 return repo_group.group_id, _name(repo_group.full_path_splitted)
2052 return repo_group.group_id, _name(repo_group.full_path_splitted)
2053
2053
2054 @classmethod
2054 @classmethod
2055 def groups_choices(cls, groups=None, show_empty_group=True):
2055 def groups_choices(cls, groups=None, show_empty_group=True):
2056 if not groups:
2056 if not groups:
2057 groups = cls.query().all()
2057 groups = cls.query().all()
2058
2058
2059 repo_groups = []
2059 repo_groups = []
2060 if show_empty_group:
2060 if show_empty_group:
2061 repo_groups = [('-1', u'-- %s --' % _('No parent'))]
2061 repo_groups = [('-1', u'-- %s --' % _('No parent'))]
2062
2062
2063 repo_groups.extend([cls._generate_choice(x) for x in groups])
2063 repo_groups.extend([cls._generate_choice(x) for x in groups])
2064
2064
2065 repo_groups = sorted(
2065 repo_groups = sorted(
2066 repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0])
2066 repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0])
2067 return repo_groups
2067 return repo_groups
2068
2068
2069 @classmethod
2069 @classmethod
2070 def url_sep(cls):
2070 def url_sep(cls):
2071 return URL_SEP
2071 return URL_SEP
2072
2072
2073 @classmethod
2073 @classmethod
2074 def get_by_group_name(cls, group_name, cache=False, case_insensitive=False):
2074 def get_by_group_name(cls, group_name, cache=False, case_insensitive=False):
2075 if case_insensitive:
2075 if case_insensitive:
2076 gr = cls.query().filter(func.lower(cls.group_name)
2076 gr = cls.query().filter(func.lower(cls.group_name)
2077 == func.lower(group_name))
2077 == func.lower(group_name))
2078 else:
2078 else:
2079 gr = cls.query().filter(cls.group_name == group_name)
2079 gr = cls.query().filter(cls.group_name == group_name)
2080 if cache:
2080 if cache:
2081 gr = gr.options(FromCache(
2081 gr = gr.options(FromCache(
2082 "sql_cache_short",
2082 "sql_cache_short",
2083 "get_group_%s" % _hash_key(group_name)))
2083 "get_group_%s" % _hash_key(group_name)))
2084 return gr.scalar()
2084 return gr.scalar()
2085
2085
2086 @classmethod
2086 @classmethod
2087 def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None),
2087 def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None),
2088 case_insensitive=True):
2088 case_insensitive=True):
2089 q = RepoGroup.query()
2089 q = RepoGroup.query()
2090
2090
2091 if not isinstance(user_id, Optional):
2091 if not isinstance(user_id, Optional):
2092 q = q.filter(RepoGroup.user_id == user_id)
2092 q = q.filter(RepoGroup.user_id == user_id)
2093
2093
2094 if not isinstance(group_id, Optional):
2094 if not isinstance(group_id, Optional):
2095 q = q.filter(RepoGroup.group_parent_id == group_id)
2095 q = q.filter(RepoGroup.group_parent_id == group_id)
2096
2096
2097 if case_insensitive:
2097 if case_insensitive:
2098 q = q.order_by(func.lower(RepoGroup.group_name))
2098 q = q.order_by(func.lower(RepoGroup.group_name))
2099 else:
2099 else:
2100 q = q.order_by(RepoGroup.group_name)
2100 q = q.order_by(RepoGroup.group_name)
2101 return q.all()
2101 return q.all()
2102
2102
2103 @property
2103 @property
2104 def parents(self):
2104 def parents(self):
2105 parents_recursion_limit = 10
2105 parents_recursion_limit = 10
2106 groups = []
2106 groups = []
2107 if self.parent_group is None:
2107 if self.parent_group is None:
2108 return groups
2108 return groups
2109 cur_gr = self.parent_group
2109 cur_gr = self.parent_group
2110 groups.insert(0, cur_gr)
2110 groups.insert(0, cur_gr)
2111 cnt = 0
2111 cnt = 0
2112 while 1:
2112 while 1:
2113 cnt += 1
2113 cnt += 1
2114 gr = getattr(cur_gr, 'parent_group', None)
2114 gr = getattr(cur_gr, 'parent_group', None)
2115 cur_gr = cur_gr.parent_group
2115 cur_gr = cur_gr.parent_group
2116 if gr is None:
2116 if gr is None:
2117 break
2117 break
2118 if cnt == parents_recursion_limit:
2118 if cnt == parents_recursion_limit:
2119 # this will prevent accidental infinit loops
2119 # this will prevent accidental infinit loops
2120 log.error(('more than %s parents found for group %s, stopping '
2120 log.error(('more than %s parents found for group %s, stopping '
2121 'recursive parent fetching' % (parents_recursion_limit, self)))
2121 'recursive parent fetching' % (parents_recursion_limit, self)))
2122 break
2122 break
2123
2123
2124 groups.insert(0, gr)
2124 groups.insert(0, gr)
2125 return groups
2125 return groups
2126
2126
2127 @property
2127 @property
2128 def children(self):
2128 def children(self):
2129 return RepoGroup.query().filter(RepoGroup.parent_group == self)
2129 return RepoGroup.query().filter(RepoGroup.parent_group == self)
2130
2130
2131 @property
2131 @property
2132 def name(self):
2132 def name(self):
2133 return self.group_name.split(RepoGroup.url_sep())[-1]
2133 return self.group_name.split(RepoGroup.url_sep())[-1]
2134
2134
2135 @property
2135 @property
2136 def full_path(self):
2136 def full_path(self):
2137 return self.group_name
2137 return self.group_name
2138
2138
2139 @property
2139 @property
2140 def full_path_splitted(self):
2140 def full_path_splitted(self):
2141 return self.group_name.split(RepoGroup.url_sep())
2141 return self.group_name.split(RepoGroup.url_sep())
2142
2142
2143 @property
2143 @property
2144 def repositories(self):
2144 def repositories(self):
2145 return Repository.query()\
2145 return Repository.query()\
2146 .filter(Repository.group == self)\
2146 .filter(Repository.group == self)\
2147 .order_by(Repository.repo_name)
2147 .order_by(Repository.repo_name)
2148
2148
2149 @property
2149 @property
2150 def repositories_recursive_count(self):
2150 def repositories_recursive_count(self):
2151 cnt = self.repositories.count()
2151 cnt = self.repositories.count()
2152
2152
2153 def children_count(group):
2153 def children_count(group):
2154 cnt = 0
2154 cnt = 0
2155 for child in group.children:
2155 for child in group.children:
2156 cnt += child.repositories.count()
2156 cnt += child.repositories.count()
2157 cnt += children_count(child)
2157 cnt += children_count(child)
2158 return cnt
2158 return cnt
2159
2159
2160 return cnt + children_count(self)
2160 return cnt + children_count(self)
2161
2161
2162 def _recursive_objects(self, include_repos=True):
2162 def _recursive_objects(self, include_repos=True):
2163 all_ = []
2163 all_ = []
2164
2164
2165 def _get_members(root_gr):
2165 def _get_members(root_gr):
2166 if include_repos:
2166 if include_repos:
2167 for r in root_gr.repositories:
2167 for r in root_gr.repositories:
2168 all_.append(r)
2168 all_.append(r)
2169 childs = root_gr.children.all()
2169 childs = root_gr.children.all()
2170 if childs:
2170 if childs:
2171 for gr in childs:
2171 for gr in childs:
2172 all_.append(gr)
2172 all_.append(gr)
2173 _get_members(gr)
2173 _get_members(gr)
2174
2174
2175 _get_members(self)
2175 _get_members(self)
2176 return [self] + all_
2176 return [self] + all_
2177
2177
2178 def recursive_groups_and_repos(self):
2178 def recursive_groups_and_repos(self):
2179 """
2179 """
2180 Recursive return all groups, with repositories in those groups
2180 Recursive return all groups, with repositories in those groups
2181 """
2181 """
2182 return self._recursive_objects()
2182 return self._recursive_objects()
2183
2183
2184 def recursive_groups(self):
2184 def recursive_groups(self):
2185 """
2185 """
2186 Returns all children groups for this group including children of children
2186 Returns all children groups for this group including children of children
2187 """
2187 """
2188 return self._recursive_objects(include_repos=False)
2188 return self._recursive_objects(include_repos=False)
2189
2189
2190 def get_new_name(self, group_name):
2190 def get_new_name(self, group_name):
2191 """
2191 """
2192 returns new full group name based on parent and new name
2192 returns new full group name based on parent and new name
2193
2193
2194 :param group_name:
2194 :param group_name:
2195 """
2195 """
2196 path_prefix = (self.parent_group.full_path_splitted if
2196 path_prefix = (self.parent_group.full_path_splitted if
2197 self.parent_group else [])
2197 self.parent_group else [])
2198 return RepoGroup.url_sep().join(path_prefix + [group_name])
2198 return RepoGroup.url_sep().join(path_prefix + [group_name])
2199
2199
2200 def permissions(self, with_admins=True, with_owner=True):
2200 def permissions(self, with_admins=True, with_owner=True):
2201 q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self)
2201 q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self)
2202 q = q.options(joinedload(UserRepoGroupToPerm.group),
2202 q = q.options(joinedload(UserRepoGroupToPerm.group),
2203 joinedload(UserRepoGroupToPerm.user),
2203 joinedload(UserRepoGroupToPerm.user),
2204 joinedload(UserRepoGroupToPerm.permission),)
2204 joinedload(UserRepoGroupToPerm.permission),)
2205
2205
2206 # get owners and admins and permissions. We do a trick of re-writing
2206 # get owners and admins and permissions. We do a trick of re-writing
2207 # objects from sqlalchemy to named-tuples due to sqlalchemy session
2207 # objects from sqlalchemy to named-tuples due to sqlalchemy session
2208 # has a global reference and changing one object propagates to all
2208 # has a global reference and changing one object propagates to all
2209 # others. This means if admin is also an owner admin_row that change
2209 # others. This means if admin is also an owner admin_row that change
2210 # would propagate to both objects
2210 # would propagate to both objects
2211 perm_rows = []
2211 perm_rows = []
2212 for _usr in q.all():
2212 for _usr in q.all():
2213 usr = AttributeDict(_usr.user.get_dict())
2213 usr = AttributeDict(_usr.user.get_dict())
2214 usr.permission = _usr.permission.permission_name
2214 usr.permission = _usr.permission.permission_name
2215 perm_rows.append(usr)
2215 perm_rows.append(usr)
2216
2216
2217 # filter the perm rows by 'default' first and then sort them by
2217 # filter the perm rows by 'default' first and then sort them by
2218 # admin,write,read,none permissions sorted again alphabetically in
2218 # admin,write,read,none permissions sorted again alphabetically in
2219 # each group
2219 # each group
2220 perm_rows = sorted(perm_rows, key=display_sort)
2220 perm_rows = sorted(perm_rows, key=display_sort)
2221
2221
2222 _admin_perm = 'group.admin'
2222 _admin_perm = 'group.admin'
2223 owner_row = []
2223 owner_row = []
2224 if with_owner:
2224 if with_owner:
2225 usr = AttributeDict(self.user.get_dict())
2225 usr = AttributeDict(self.user.get_dict())
2226 usr.owner_row = True
2226 usr.owner_row = True
2227 usr.permission = _admin_perm
2227 usr.permission = _admin_perm
2228 owner_row.append(usr)
2228 owner_row.append(usr)
2229
2229
2230 super_admin_rows = []
2230 super_admin_rows = []
2231 if with_admins:
2231 if with_admins:
2232 for usr in User.get_all_super_admins():
2232 for usr in User.get_all_super_admins():
2233 # if this admin is also owner, don't double the record
2233 # if this admin is also owner, don't double the record
2234 if usr.user_id == owner_row[0].user_id:
2234 if usr.user_id == owner_row[0].user_id:
2235 owner_row[0].admin_row = True
2235 owner_row[0].admin_row = True
2236 else:
2236 else:
2237 usr = AttributeDict(usr.get_dict())
2237 usr = AttributeDict(usr.get_dict())
2238 usr.admin_row = True
2238 usr.admin_row = True
2239 usr.permission = _admin_perm
2239 usr.permission = _admin_perm
2240 super_admin_rows.append(usr)
2240 super_admin_rows.append(usr)
2241
2241
2242 return super_admin_rows + owner_row + perm_rows
2242 return super_admin_rows + owner_row + perm_rows
2243
2243
2244 def permission_user_groups(self):
2244 def permission_user_groups(self):
2245 q = UserGroupRepoGroupToPerm.query().filter(UserGroupRepoGroupToPerm.group == self)
2245 q = UserGroupRepoGroupToPerm.query().filter(UserGroupRepoGroupToPerm.group == self)
2246 q = q.options(joinedload(UserGroupRepoGroupToPerm.group),
2246 q = q.options(joinedload(UserGroupRepoGroupToPerm.group),
2247 joinedload(UserGroupRepoGroupToPerm.users_group),
2247 joinedload(UserGroupRepoGroupToPerm.users_group),
2248 joinedload(UserGroupRepoGroupToPerm.permission),)
2248 joinedload(UserGroupRepoGroupToPerm.permission),)
2249
2249
2250 perm_rows = []
2250 perm_rows = []
2251 for _user_group in q.all():
2251 for _user_group in q.all():
2252 usr = AttributeDict(_user_group.users_group.get_dict())
2252 usr = AttributeDict(_user_group.users_group.get_dict())
2253 usr.permission = _user_group.permission.permission_name
2253 usr.permission = _user_group.permission.permission_name
2254 perm_rows.append(usr)
2254 perm_rows.append(usr)
2255
2255
2256 return perm_rows
2256 return perm_rows
2257
2257
2258 def get_api_data(self):
2258 def get_api_data(self):
2259 """
2259 """
2260 Common function for generating api data
2260 Common function for generating api data
2261
2261
2262 """
2262 """
2263 group = self
2263 group = self
2264 data = {
2264 data = {
2265 'group_id': group.group_id,
2265 'group_id': group.group_id,
2266 'group_name': group.group_name,
2266 'group_name': group.group_name,
2267 'group_description': group.group_description,
2267 'group_description': group.group_description,
2268 'parent_group': group.parent_group.group_name if group.parent_group else None,
2268 'parent_group': group.parent_group.group_name if group.parent_group else None,
2269 'repositories': [x.repo_name for x in group.repositories],
2269 'repositories': [x.repo_name for x in group.repositories],
2270 'owner': group.user.username,
2270 'owner': group.user.username,
2271 }
2271 }
2272 return data
2272 return data
2273
2273
2274
2274
2275 class Permission(Base, BaseModel):
2275 class Permission(Base, BaseModel):
2276 __tablename__ = 'permissions'
2276 __tablename__ = 'permissions'
2277 __table_args__ = (
2277 __table_args__ = (
2278 Index('p_perm_name_idx', 'permission_name'),
2278 Index('p_perm_name_idx', 'permission_name'),
2279 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2279 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2280 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2280 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2281 )
2281 )
2282 PERMS = [
2282 PERMS = [
2283 ('hg.admin', _('RhodeCode Super Administrator')),
2283 ('hg.admin', _('RhodeCode Super Administrator')),
2284
2284
2285 ('repository.none', _('Repository no access')),
2285 ('repository.none', _('Repository no access')),
2286 ('repository.read', _('Repository read access')),
2286 ('repository.read', _('Repository read access')),
2287 ('repository.write', _('Repository write access')),
2287 ('repository.write', _('Repository write access')),
2288 ('repository.admin', _('Repository admin access')),
2288 ('repository.admin', _('Repository admin access')),
2289
2289
2290 ('group.none', _('Repository group no access')),
2290 ('group.none', _('Repository group no access')),
2291 ('group.read', _('Repository group read access')),
2291 ('group.read', _('Repository group read access')),
2292 ('group.write', _('Repository group write access')),
2292 ('group.write', _('Repository group write access')),
2293 ('group.admin', _('Repository group admin access')),
2293 ('group.admin', _('Repository group admin access')),
2294
2294
2295 ('usergroup.none', _('User group no access')),
2295 ('usergroup.none', _('User group no access')),
2296 ('usergroup.read', _('User group read access')),
2296 ('usergroup.read', _('User group read access')),
2297 ('usergroup.write', _('User group write access')),
2297 ('usergroup.write', _('User group write access')),
2298 ('usergroup.admin', _('User group admin access')),
2298 ('usergroup.admin', _('User group admin access')),
2299
2299
2300 ('hg.repogroup.create.false', _('Repository Group creation disabled')),
2300 ('hg.repogroup.create.false', _('Repository Group creation disabled')),
2301 ('hg.repogroup.create.true', _('Repository Group creation enabled')),
2301 ('hg.repogroup.create.true', _('Repository Group creation enabled')),
2302
2302
2303 ('hg.usergroup.create.false', _('User Group creation disabled')),
2303 ('hg.usergroup.create.false', _('User Group creation disabled')),
2304 ('hg.usergroup.create.true', _('User Group creation enabled')),
2304 ('hg.usergroup.create.true', _('User Group creation enabled')),
2305
2305
2306 ('hg.create.none', _('Repository creation disabled')),
2306 ('hg.create.none', _('Repository creation disabled')),
2307 ('hg.create.repository', _('Repository creation enabled')),
2307 ('hg.create.repository', _('Repository creation enabled')),
2308 ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')),
2308 ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')),
2309 ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')),
2309 ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')),
2310
2310
2311 ('hg.fork.none', _('Repository forking disabled')),
2311 ('hg.fork.none', _('Repository forking disabled')),
2312 ('hg.fork.repository', _('Repository forking enabled')),
2312 ('hg.fork.repository', _('Repository forking enabled')),
2313
2313
2314 ('hg.register.none', _('Registration disabled')),
2314 ('hg.register.none', _('Registration disabled')),
2315 ('hg.register.manual_activate', _('User Registration with manual account activation')),
2315 ('hg.register.manual_activate', _('User Registration with manual account activation')),
2316 ('hg.register.auto_activate', _('User Registration with automatic account activation')),
2316 ('hg.register.auto_activate', _('User Registration with automatic account activation')),
2317
2317
2318 ('hg.extern_activate.manual', _('Manual activation of external account')),
2318 ('hg.extern_activate.manual', _('Manual activation of external account')),
2319 ('hg.extern_activate.auto', _('Automatic activation of external account')),
2319 ('hg.extern_activate.auto', _('Automatic activation of external account')),
2320
2320
2321 ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')),
2321 ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')),
2322 ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')),
2322 ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')),
2323 ]
2323 ]
2324
2324
2325 # definition of system default permissions for DEFAULT user
2325 # definition of system default permissions for DEFAULT user
2326 DEFAULT_USER_PERMISSIONS = [
2326 DEFAULT_USER_PERMISSIONS = [
2327 'repository.read',
2327 'repository.read',
2328 'group.read',
2328 'group.read',
2329 'usergroup.read',
2329 'usergroup.read',
2330 'hg.create.repository',
2330 'hg.create.repository',
2331 'hg.repogroup.create.false',
2331 'hg.repogroup.create.false',
2332 'hg.usergroup.create.false',
2332 'hg.usergroup.create.false',
2333 'hg.create.write_on_repogroup.true',
2333 'hg.create.write_on_repogroup.true',
2334 'hg.fork.repository',
2334 'hg.fork.repository',
2335 'hg.register.manual_activate',
2335 'hg.register.manual_activate',
2336 'hg.extern_activate.auto',
2336 'hg.extern_activate.auto',
2337 'hg.inherit_default_perms.true',
2337 'hg.inherit_default_perms.true',
2338 ]
2338 ]
2339
2339
2340 # defines which permissions are more important higher the more important
2340 # defines which permissions are more important higher the more important
2341 # Weight defines which permissions are more important.
2341 # Weight defines which permissions are more important.
2342 # The higher number the more important.
2342 # The higher number the more important.
2343 PERM_WEIGHTS = {
2343 PERM_WEIGHTS = {
2344 'repository.none': 0,
2344 'repository.none': 0,
2345 'repository.read': 1,
2345 'repository.read': 1,
2346 'repository.write': 3,
2346 'repository.write': 3,
2347 'repository.admin': 4,
2347 'repository.admin': 4,
2348
2348
2349 'group.none': 0,
2349 'group.none': 0,
2350 'group.read': 1,
2350 'group.read': 1,
2351 'group.write': 3,
2351 'group.write': 3,
2352 'group.admin': 4,
2352 'group.admin': 4,
2353
2353
2354 'usergroup.none': 0,
2354 'usergroup.none': 0,
2355 'usergroup.read': 1,
2355 'usergroup.read': 1,
2356 'usergroup.write': 3,
2356 'usergroup.write': 3,
2357 'usergroup.admin': 4,
2357 'usergroup.admin': 4,
2358
2358
2359 'hg.repogroup.create.false': 0,
2359 'hg.repogroup.create.false': 0,
2360 'hg.repogroup.create.true': 1,
2360 'hg.repogroup.create.true': 1,
2361
2361
2362 'hg.usergroup.create.false': 0,
2362 'hg.usergroup.create.false': 0,
2363 'hg.usergroup.create.true': 1,
2363 'hg.usergroup.create.true': 1,
2364
2364
2365 'hg.fork.none': 0,
2365 'hg.fork.none': 0,
2366 'hg.fork.repository': 1,
2366 'hg.fork.repository': 1,
2367 'hg.create.none': 0,
2367 'hg.create.none': 0,
2368 'hg.create.repository': 1
2368 'hg.create.repository': 1
2369 }
2369 }
2370
2370
2371 permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2371 permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2372 permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None)
2372 permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None)
2373 permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None)
2373 permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None)
2374
2374
2375 def __unicode__(self):
2375 def __unicode__(self):
2376 return u"<%s('%s:%s')>" % (
2376 return u"<%s('%s:%s')>" % (
2377 self.__class__.__name__, self.permission_id, self.permission_name
2377 self.__class__.__name__, self.permission_id, self.permission_name
2378 )
2378 )
2379
2379
2380 @classmethod
2380 @classmethod
2381 def get_by_key(cls, key):
2381 def get_by_key(cls, key):
2382 return cls.query().filter(cls.permission_name == key).scalar()
2382 return cls.query().filter(cls.permission_name == key).scalar()
2383
2383
2384 @classmethod
2384 @classmethod
2385 def get_default_repo_perms(cls, user_id, repo_id=None):
2385 def get_default_repo_perms(cls, user_id, repo_id=None):
2386 q = Session().query(UserRepoToPerm, Repository, Permission)\
2386 q = Session().query(UserRepoToPerm, Repository, Permission)\
2387 .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\
2387 .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\
2388 .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\
2388 .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\
2389 .filter(UserRepoToPerm.user_id == user_id)
2389 .filter(UserRepoToPerm.user_id == user_id)
2390 if repo_id:
2390 if repo_id:
2391 q = q.filter(UserRepoToPerm.repository_id == repo_id)
2391 q = q.filter(UserRepoToPerm.repository_id == repo_id)
2392 return q.all()
2392 return q.all()
2393
2393
2394 @classmethod
2394 @classmethod
2395 def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None):
2395 def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None):
2396 q = Session().query(UserGroupRepoToPerm, Repository, Permission)\
2396 q = Session().query(UserGroupRepoToPerm, Repository, Permission)\
2397 .join(
2397 .join(
2398 Permission,
2398 Permission,
2399 UserGroupRepoToPerm.permission_id == Permission.permission_id)\
2399 UserGroupRepoToPerm.permission_id == Permission.permission_id)\
2400 .join(
2400 .join(
2401 Repository,
2401 Repository,
2402 UserGroupRepoToPerm.repository_id == Repository.repo_id)\
2402 UserGroupRepoToPerm.repository_id == Repository.repo_id)\
2403 .join(
2403 .join(
2404 UserGroup,
2404 UserGroup,
2405 UserGroupRepoToPerm.users_group_id ==
2405 UserGroupRepoToPerm.users_group_id ==
2406 UserGroup.users_group_id)\
2406 UserGroup.users_group_id)\
2407 .join(
2407 .join(
2408 UserGroupMember,
2408 UserGroupMember,
2409 UserGroupRepoToPerm.users_group_id ==
2409 UserGroupRepoToPerm.users_group_id ==
2410 UserGroupMember.users_group_id)\
2410 UserGroupMember.users_group_id)\
2411 .filter(
2411 .filter(
2412 UserGroupMember.user_id == user_id,
2412 UserGroupMember.user_id == user_id,
2413 UserGroup.users_group_active == true())
2413 UserGroup.users_group_active == true())
2414 if repo_id:
2414 if repo_id:
2415 q = q.filter(UserGroupRepoToPerm.repository_id == repo_id)
2415 q = q.filter(UserGroupRepoToPerm.repository_id == repo_id)
2416 return q.all()
2416 return q.all()
2417
2417
2418 @classmethod
2418 @classmethod
2419 def get_default_group_perms(cls, user_id, repo_group_id=None):
2419 def get_default_group_perms(cls, user_id, repo_group_id=None):
2420 q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\
2420 q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\
2421 .join((Permission, UserRepoGroupToPerm.permission_id == Permission.permission_id))\
2421 .join((Permission, UserRepoGroupToPerm.permission_id == Permission.permission_id))\
2422 .join((RepoGroup, UserRepoGroupToPerm.group_id == RepoGroup.group_id))\
2422 .join((RepoGroup, UserRepoGroupToPerm.group_id == RepoGroup.group_id))\
2423 .filter(UserRepoGroupToPerm.user_id == user_id)
2423 .filter(UserRepoGroupToPerm.user_id == user_id)
2424 if repo_group_id:
2424 if repo_group_id:
2425 q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id)
2425 q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id)
2426 return q.all()
2426 return q.all()
2427
2427
2428 @classmethod
2428 @classmethod
2429 def get_default_group_perms_from_user_group(
2429 def get_default_group_perms_from_user_group(
2430 cls, user_id, repo_group_id=None):
2430 cls, user_id, repo_group_id=None):
2431 q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\
2431 q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\
2432 .join(
2432 .join(
2433 Permission,
2433 Permission,
2434 UserGroupRepoGroupToPerm.permission_id ==
2434 UserGroupRepoGroupToPerm.permission_id ==
2435 Permission.permission_id)\
2435 Permission.permission_id)\
2436 .join(
2436 .join(
2437 RepoGroup,
2437 RepoGroup,
2438 UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\
2438 UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\
2439 .join(
2439 .join(
2440 UserGroup,
2440 UserGroup,
2441 UserGroupRepoGroupToPerm.users_group_id ==
2441 UserGroupRepoGroupToPerm.users_group_id ==
2442 UserGroup.users_group_id)\
2442 UserGroup.users_group_id)\
2443 .join(
2443 .join(
2444 UserGroupMember,
2444 UserGroupMember,
2445 UserGroupRepoGroupToPerm.users_group_id ==
2445 UserGroupRepoGroupToPerm.users_group_id ==
2446 UserGroupMember.users_group_id)\
2446 UserGroupMember.users_group_id)\
2447 .filter(
2447 .filter(
2448 UserGroupMember.user_id == user_id,
2448 UserGroupMember.user_id == user_id,
2449 UserGroup.users_group_active == true())
2449 UserGroup.users_group_active == true())
2450 if repo_group_id:
2450 if repo_group_id:
2451 q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id)
2451 q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id)
2452 return q.all()
2452 return q.all()
2453
2453
2454 @classmethod
2454 @classmethod
2455 def get_default_user_group_perms(cls, user_id, user_group_id=None):
2455 def get_default_user_group_perms(cls, user_id, user_group_id=None):
2456 q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\
2456 q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\
2457 .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\
2457 .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\
2458 .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\
2458 .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\
2459 .filter(UserUserGroupToPerm.user_id == user_id)
2459 .filter(UserUserGroupToPerm.user_id == user_id)
2460 if user_group_id:
2460 if user_group_id:
2461 q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id)
2461 q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id)
2462 return q.all()
2462 return q.all()
2463
2463
2464 @classmethod
2464 @classmethod
2465 def get_default_user_group_perms_from_user_group(
2465 def get_default_user_group_perms_from_user_group(
2466 cls, user_id, user_group_id=None):
2466 cls, user_id, user_group_id=None):
2467 TargetUserGroup = aliased(UserGroup, name='target_user_group')
2467 TargetUserGroup = aliased(UserGroup, name='target_user_group')
2468 q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\
2468 q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\
2469 .join(
2469 .join(
2470 Permission,
2470 Permission,
2471 UserGroupUserGroupToPerm.permission_id ==
2471 UserGroupUserGroupToPerm.permission_id ==
2472 Permission.permission_id)\
2472 Permission.permission_id)\
2473 .join(
2473 .join(
2474 TargetUserGroup,
2474 TargetUserGroup,
2475 UserGroupUserGroupToPerm.target_user_group_id ==
2475 UserGroupUserGroupToPerm.target_user_group_id ==
2476 TargetUserGroup.users_group_id)\
2476 TargetUserGroup.users_group_id)\
2477 .join(
2477 .join(
2478 UserGroup,
2478 UserGroup,
2479 UserGroupUserGroupToPerm.user_group_id ==
2479 UserGroupUserGroupToPerm.user_group_id ==
2480 UserGroup.users_group_id)\
2480 UserGroup.users_group_id)\
2481 .join(
2481 .join(
2482 UserGroupMember,
2482 UserGroupMember,
2483 UserGroupUserGroupToPerm.user_group_id ==
2483 UserGroupUserGroupToPerm.user_group_id ==
2484 UserGroupMember.users_group_id)\
2484 UserGroupMember.users_group_id)\
2485 .filter(
2485 .filter(
2486 UserGroupMember.user_id == user_id,
2486 UserGroupMember.user_id == user_id,
2487 UserGroup.users_group_active == true())
2487 UserGroup.users_group_active == true())
2488 if user_group_id:
2488 if user_group_id:
2489 q = q.filter(
2489 q = q.filter(
2490 UserGroupUserGroupToPerm.user_group_id == user_group_id)
2490 UserGroupUserGroupToPerm.user_group_id == user_group_id)
2491
2491
2492 return q.all()
2492 return q.all()
2493
2493
2494
2494
2495 class UserRepoToPerm(Base, BaseModel):
2495 class UserRepoToPerm(Base, BaseModel):
2496 __tablename__ = 'repo_to_perm'
2496 __tablename__ = 'repo_to_perm'
2497 __table_args__ = (
2497 __table_args__ = (
2498 UniqueConstraint('user_id', 'repository_id', 'permission_id'),
2498 UniqueConstraint('user_id', 'repository_id', 'permission_id'),
2499 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2499 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2500 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2500 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2501 )
2501 )
2502 repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2502 repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2503 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2503 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2504 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2504 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2505 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2505 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2506
2506
2507 user = relationship('User')
2507 user = relationship('User')
2508 repository = relationship('Repository')
2508 repository = relationship('Repository')
2509 permission = relationship('Permission')
2509 permission = relationship('Permission')
2510
2510
2511 @classmethod
2511 @classmethod
2512 def create(cls, user, repository, permission):
2512 def create(cls, user, repository, permission):
2513 n = cls()
2513 n = cls()
2514 n.user = user
2514 n.user = user
2515 n.repository = repository
2515 n.repository = repository
2516 n.permission = permission
2516 n.permission = permission
2517 Session().add(n)
2517 Session().add(n)
2518 return n
2518 return n
2519
2519
2520 def __unicode__(self):
2520 def __unicode__(self):
2521 return u'<%s => %s >' % (self.user, self.repository)
2521 return u'<%s => %s >' % (self.user, self.repository)
2522
2522
2523
2523
2524 class UserUserGroupToPerm(Base, BaseModel):
2524 class UserUserGroupToPerm(Base, BaseModel):
2525 __tablename__ = 'user_user_group_to_perm'
2525 __tablename__ = 'user_user_group_to_perm'
2526 __table_args__ = (
2526 __table_args__ = (
2527 UniqueConstraint('user_id', 'user_group_id', 'permission_id'),
2527 UniqueConstraint('user_id', 'user_group_id', 'permission_id'),
2528 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2528 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2529 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2529 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2530 )
2530 )
2531 user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2531 user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2532 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2532 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2533 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2533 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2534 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2534 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2535
2535
2536 user = relationship('User')
2536 user = relationship('User')
2537 user_group = relationship('UserGroup')
2537 user_group = relationship('UserGroup')
2538 permission = relationship('Permission')
2538 permission = relationship('Permission')
2539
2539
2540 @classmethod
2540 @classmethod
2541 def create(cls, user, user_group, permission):
2541 def create(cls, user, user_group, permission):
2542 n = cls()
2542 n = cls()
2543 n.user = user
2543 n.user = user
2544 n.user_group = user_group
2544 n.user_group = user_group
2545 n.permission = permission
2545 n.permission = permission
2546 Session().add(n)
2546 Session().add(n)
2547 return n
2547 return n
2548
2548
2549 def __unicode__(self):
2549 def __unicode__(self):
2550 return u'<%s => %s >' % (self.user, self.user_group)
2550 return u'<%s => %s >' % (self.user, self.user_group)
2551
2551
2552
2552
2553 class UserToPerm(Base, BaseModel):
2553 class UserToPerm(Base, BaseModel):
2554 __tablename__ = 'user_to_perm'
2554 __tablename__ = 'user_to_perm'
2555 __table_args__ = (
2555 __table_args__ = (
2556 UniqueConstraint('user_id', 'permission_id'),
2556 UniqueConstraint('user_id', 'permission_id'),
2557 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2557 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2558 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2558 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2559 )
2559 )
2560 user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2560 user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2561 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2561 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2562 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2562 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2563
2563
2564 user = relationship('User')
2564 user = relationship('User')
2565 permission = relationship('Permission', lazy='joined')
2565 permission = relationship('Permission', lazy='joined')
2566
2566
2567 def __unicode__(self):
2567 def __unicode__(self):
2568 return u'<%s => %s >' % (self.user, self.permission)
2568 return u'<%s => %s >' % (self.user, self.permission)
2569
2569
2570
2570
2571 class UserGroupRepoToPerm(Base, BaseModel):
2571 class UserGroupRepoToPerm(Base, BaseModel):
2572 __tablename__ = 'users_group_repo_to_perm'
2572 __tablename__ = 'users_group_repo_to_perm'
2573 __table_args__ = (
2573 __table_args__ = (
2574 UniqueConstraint('repository_id', 'users_group_id', 'permission_id'),
2574 UniqueConstraint('repository_id', 'users_group_id', 'permission_id'),
2575 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2575 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2576 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2576 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2577 )
2577 )
2578 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2578 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2579 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2579 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2580 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2580 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2581 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2581 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2582
2582
2583 users_group = relationship('UserGroup')
2583 users_group = relationship('UserGroup')
2584 permission = relationship('Permission')
2584 permission = relationship('Permission')
2585 repository = relationship('Repository')
2585 repository = relationship('Repository')
2586
2586
2587 @classmethod
2587 @classmethod
2588 def create(cls, users_group, repository, permission):
2588 def create(cls, users_group, repository, permission):
2589 n = cls()
2589 n = cls()
2590 n.users_group = users_group
2590 n.users_group = users_group
2591 n.repository = repository
2591 n.repository = repository
2592 n.permission = permission
2592 n.permission = permission
2593 Session().add(n)
2593 Session().add(n)
2594 return n
2594 return n
2595
2595
2596 def __unicode__(self):
2596 def __unicode__(self):
2597 return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository)
2597 return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository)
2598
2598
2599
2599
2600 class UserGroupUserGroupToPerm(Base, BaseModel):
2600 class UserGroupUserGroupToPerm(Base, BaseModel):
2601 __tablename__ = 'user_group_user_group_to_perm'
2601 __tablename__ = 'user_group_user_group_to_perm'
2602 __table_args__ = (
2602 __table_args__ = (
2603 UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
2603 UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
2604 CheckConstraint('target_user_group_id != user_group_id'),
2604 CheckConstraint('target_user_group_id != user_group_id'),
2605 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2605 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2606 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2606 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2607 )
2607 )
2608 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)
2608 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)
2609 target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2609 target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2610 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2610 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2611 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2611 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2612
2612
2613 target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id')
2613 target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id')
2614 user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id')
2614 user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id')
2615 permission = relationship('Permission')
2615 permission = relationship('Permission')
2616
2616
2617 @classmethod
2617 @classmethod
2618 def create(cls, target_user_group, user_group, permission):
2618 def create(cls, target_user_group, user_group, permission):
2619 n = cls()
2619 n = cls()
2620 n.target_user_group = target_user_group
2620 n.target_user_group = target_user_group
2621 n.user_group = user_group
2621 n.user_group = user_group
2622 n.permission = permission
2622 n.permission = permission
2623 Session().add(n)
2623 Session().add(n)
2624 return n
2624 return n
2625
2625
2626 def __unicode__(self):
2626 def __unicode__(self):
2627 return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group)
2627 return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group)
2628
2628
2629
2629
2630 class UserGroupToPerm(Base, BaseModel):
2630 class UserGroupToPerm(Base, BaseModel):
2631 __tablename__ = 'users_group_to_perm'
2631 __tablename__ = 'users_group_to_perm'
2632 __table_args__ = (
2632 __table_args__ = (
2633 UniqueConstraint('users_group_id', 'permission_id',),
2633 UniqueConstraint('users_group_id', 'permission_id',),
2634 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2634 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2635 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2635 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2636 )
2636 )
2637 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2637 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2638 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2638 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2639 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2639 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2640
2640
2641 users_group = relationship('UserGroup')
2641 users_group = relationship('UserGroup')
2642 permission = relationship('Permission')
2642 permission = relationship('Permission')
2643
2643
2644
2644
2645 class UserRepoGroupToPerm(Base, BaseModel):
2645 class UserRepoGroupToPerm(Base, BaseModel):
2646 __tablename__ = 'user_repo_group_to_perm'
2646 __tablename__ = 'user_repo_group_to_perm'
2647 __table_args__ = (
2647 __table_args__ = (
2648 UniqueConstraint('user_id', 'group_id', 'permission_id'),
2648 UniqueConstraint('user_id', 'group_id', 'permission_id'),
2649 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2649 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2650 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2650 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2651 )
2651 )
2652
2652
2653 group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2653 group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2654 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2654 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2655 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2655 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2656 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2656 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2657
2657
2658 user = relationship('User')
2658 user = relationship('User')
2659 group = relationship('RepoGroup')
2659 group = relationship('RepoGroup')
2660 permission = relationship('Permission')
2660 permission = relationship('Permission')
2661
2661
2662 @classmethod
2662 @classmethod
2663 def create(cls, user, repository_group, permission):
2663 def create(cls, user, repository_group, permission):
2664 n = cls()
2664 n = cls()
2665 n.user = user
2665 n.user = user
2666 n.group = repository_group
2666 n.group = repository_group
2667 n.permission = permission
2667 n.permission = permission
2668 Session().add(n)
2668 Session().add(n)
2669 return n
2669 return n
2670
2670
2671
2671
2672 class UserGroupRepoGroupToPerm(Base, BaseModel):
2672 class UserGroupRepoGroupToPerm(Base, BaseModel):
2673 __tablename__ = 'users_group_repo_group_to_perm'
2673 __tablename__ = 'users_group_repo_group_to_perm'
2674 __table_args__ = (
2674 __table_args__ = (
2675 UniqueConstraint('users_group_id', 'group_id'),
2675 UniqueConstraint('users_group_id', 'group_id'),
2676 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2676 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2677 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2677 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2678 )
2678 )
2679
2679
2680 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)
2680 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)
2681 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2681 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2682 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2682 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2683 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2683 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2684
2684
2685 users_group = relationship('UserGroup')
2685 users_group = relationship('UserGroup')
2686 permission = relationship('Permission')
2686 permission = relationship('Permission')
2687 group = relationship('RepoGroup')
2687 group = relationship('RepoGroup')
2688
2688
2689 @classmethod
2689 @classmethod
2690 def create(cls, user_group, repository_group, permission):
2690 def create(cls, user_group, repository_group, permission):
2691 n = cls()
2691 n = cls()
2692 n.users_group = user_group
2692 n.users_group = user_group
2693 n.group = repository_group
2693 n.group = repository_group
2694 n.permission = permission
2694 n.permission = permission
2695 Session().add(n)
2695 Session().add(n)
2696 return n
2696 return n
2697
2697
2698 def __unicode__(self):
2698 def __unicode__(self):
2699 return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group)
2699 return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group)
2700
2700
2701
2701
2702 class Statistics(Base, BaseModel):
2702 class Statistics(Base, BaseModel):
2703 __tablename__ = 'statistics'
2703 __tablename__ = 'statistics'
2704 __table_args__ = (
2704 __table_args__ = (
2705 UniqueConstraint('repository_id'),
2705 UniqueConstraint('repository_id'),
2706 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2706 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2707 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2707 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2708 )
2708 )
2709 stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2709 stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2710 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None)
2710 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None)
2711 stat_on_revision = Column("stat_on_revision", Integer(), nullable=False)
2711 stat_on_revision = Column("stat_on_revision", Integer(), nullable=False)
2712 commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data
2712 commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data
2713 commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data
2713 commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data
2714 languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data
2714 languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data
2715
2715
2716 repository = relationship('Repository', single_parent=True)
2716 repository = relationship('Repository', single_parent=True)
2717
2717
2718
2718
2719 class UserFollowing(Base, BaseModel):
2719 class UserFollowing(Base, BaseModel):
2720 __tablename__ = 'user_followings'
2720 __tablename__ = 'user_followings'
2721 __table_args__ = (
2721 __table_args__ = (
2722 UniqueConstraint('user_id', 'follows_repository_id'),
2722 UniqueConstraint('user_id', 'follows_repository_id'),
2723 UniqueConstraint('user_id', 'follows_user_id'),
2723 UniqueConstraint('user_id', 'follows_user_id'),
2724 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2724 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2725 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2725 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2726 )
2726 )
2727
2727
2728 user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2728 user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2729 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2729 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2730 follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None)
2730 follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None)
2731 follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
2731 follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
2732 follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
2732 follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
2733
2733
2734 user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id')
2734 user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id')
2735
2735
2736 follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id')
2736 follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id')
2737 follows_repository = relationship('Repository', order_by='Repository.repo_name')
2737 follows_repository = relationship('Repository', order_by='Repository.repo_name')
2738
2738
2739 @classmethod
2739 @classmethod
2740 def get_repo_followers(cls, repo_id):
2740 def get_repo_followers(cls, repo_id):
2741 return cls.query().filter(cls.follows_repo_id == repo_id)
2741 return cls.query().filter(cls.follows_repo_id == repo_id)
2742
2742
2743
2743
2744 class CacheKey(Base, BaseModel):
2744 class CacheKey(Base, BaseModel):
2745 __tablename__ = 'cache_invalidation'
2745 __tablename__ = 'cache_invalidation'
2746 __table_args__ = (
2746 __table_args__ = (
2747 UniqueConstraint('cache_key'),
2747 UniqueConstraint('cache_key'),
2748 Index('key_idx', 'cache_key'),
2748 Index('key_idx', 'cache_key'),
2749 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2749 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2750 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2750 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2751 )
2751 )
2752 CACHE_TYPE_ATOM = 'ATOM'
2752 CACHE_TYPE_ATOM = 'ATOM'
2753 CACHE_TYPE_RSS = 'RSS'
2753 CACHE_TYPE_RSS = 'RSS'
2754 CACHE_TYPE_README = 'README'
2754 CACHE_TYPE_README = 'README'
2755
2755
2756 cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2756 cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2757 cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None)
2757 cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None)
2758 cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None)
2758 cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None)
2759 cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False)
2759 cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False)
2760
2760
2761 def __init__(self, cache_key, cache_args=''):
2761 def __init__(self, cache_key, cache_args=''):
2762 self.cache_key = cache_key
2762 self.cache_key = cache_key
2763 self.cache_args = cache_args
2763 self.cache_args = cache_args
2764 self.cache_active = False
2764 self.cache_active = False
2765
2765
2766 def __unicode__(self):
2766 def __unicode__(self):
2767 return u"<%s('%s:%s[%s]')>" % (
2767 return u"<%s('%s:%s[%s]')>" % (
2768 self.__class__.__name__,
2768 self.__class__.__name__,
2769 self.cache_id, self.cache_key, self.cache_active)
2769 self.cache_id, self.cache_key, self.cache_active)
2770
2770
2771 def _cache_key_partition(self):
2771 def _cache_key_partition(self):
2772 prefix, repo_name, suffix = self.cache_key.partition(self.cache_args)
2772 prefix, repo_name, suffix = self.cache_key.partition(self.cache_args)
2773 return prefix, repo_name, suffix
2773 return prefix, repo_name, suffix
2774
2774
2775 def get_prefix(self):
2775 def get_prefix(self):
2776 """
2776 """
2777 Try to extract prefix from existing cache key. The key could consist
2777 Try to extract prefix from existing cache key. The key could consist
2778 of prefix, repo_name, suffix
2778 of prefix, repo_name, suffix
2779 """
2779 """
2780 # this returns prefix, repo_name, suffix
2780 # this returns prefix, repo_name, suffix
2781 return self._cache_key_partition()[0]
2781 return self._cache_key_partition()[0]
2782
2782
2783 def get_suffix(self):
2783 def get_suffix(self):
2784 """
2784 """
2785 get suffix that might have been used in _get_cache_key to
2785 get suffix that might have been used in _get_cache_key to
2786 generate self.cache_key. Only used for informational purposes
2786 generate self.cache_key. Only used for informational purposes
2787 in repo_edit.html.
2787 in repo_edit.html.
2788 """
2788 """
2789 # prefix, repo_name, suffix
2789 # prefix, repo_name, suffix
2790 return self._cache_key_partition()[2]
2790 return self._cache_key_partition()[2]
2791
2791
2792 @classmethod
2792 @classmethod
2793 def delete_all_cache(cls):
2793 def delete_all_cache(cls):
2794 """
2794 """
2795 Delete all cache keys from database.
2795 Delete all cache keys from database.
2796 Should only be run when all instances are down and all entries
2796 Should only be run when all instances are down and all entries
2797 thus stale.
2797 thus stale.
2798 """
2798 """
2799 cls.query().delete()
2799 cls.query().delete()
2800 Session().commit()
2800 Session().commit()
2801
2801
2802 @classmethod
2802 @classmethod
2803 def get_cache_key(cls, repo_name, cache_type):
2803 def get_cache_key(cls, repo_name, cache_type):
2804 """
2804 """
2805
2805
2806 Generate a cache key for this process of RhodeCode instance.
2806 Generate a cache key for this process of RhodeCode instance.
2807 Prefix most likely will be process id or maybe explicitly set
2807 Prefix most likely will be process id or maybe explicitly set
2808 instance_id from .ini file.
2808 instance_id from .ini file.
2809 """
2809 """
2810 import rhodecode
2810 import rhodecode
2811 prefix = safe_unicode(rhodecode.CONFIG.get('instance_id') or '')
2811 prefix = safe_unicode(rhodecode.CONFIG.get('instance_id') or '')
2812
2812
2813 repo_as_unicode = safe_unicode(repo_name)
2813 repo_as_unicode = safe_unicode(repo_name)
2814 key = u'{}_{}'.format(repo_as_unicode, cache_type) \
2814 key = u'{}_{}'.format(repo_as_unicode, cache_type) \
2815 if cache_type else repo_as_unicode
2815 if cache_type else repo_as_unicode
2816
2816
2817 return u'{}{}'.format(prefix, key)
2817 return u'{}{}'.format(prefix, key)
2818
2818
2819 @classmethod
2819 @classmethod
2820 def set_invalidate(cls, repo_name, delete=False):
2820 def set_invalidate(cls, repo_name, delete=False):
2821 """
2821 """
2822 Mark all caches of a repo as invalid in the database.
2822 Mark all caches of a repo as invalid in the database.
2823 """
2823 """
2824
2824
2825 try:
2825 try:
2826 qry = Session().query(cls).filter(cls.cache_args == repo_name)
2826 qry = Session().query(cls).filter(cls.cache_args == repo_name)
2827 if delete:
2827 if delete:
2828 log.debug('cache objects deleted for repo %s',
2828 log.debug('cache objects deleted for repo %s',
2829 safe_str(repo_name))
2829 safe_str(repo_name))
2830 qry.delete()
2830 qry.delete()
2831 else:
2831 else:
2832 log.debug('cache objects marked as invalid for repo %s',
2832 log.debug('cache objects marked as invalid for repo %s',
2833 safe_str(repo_name))
2833 safe_str(repo_name))
2834 qry.update({"cache_active": False})
2834 qry.update({"cache_active": False})
2835
2835
2836 Session().commit()
2836 Session().commit()
2837 except Exception:
2837 except Exception:
2838 log.exception(
2838 log.exception(
2839 'Cache key invalidation failed for repository %s',
2839 'Cache key invalidation failed for repository %s',
2840 safe_str(repo_name))
2840 safe_str(repo_name))
2841 Session().rollback()
2841 Session().rollback()
2842
2842
2843 @classmethod
2843 @classmethod
2844 def get_active_cache(cls, cache_key):
2844 def get_active_cache(cls, cache_key):
2845 inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar()
2845 inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar()
2846 if inv_obj:
2846 if inv_obj:
2847 return inv_obj
2847 return inv_obj
2848 return None
2848 return None
2849
2849
2850 @classmethod
2850 @classmethod
2851 def repo_context_cache(cls, compute_func, repo_name, cache_type,
2851 def repo_context_cache(cls, compute_func, repo_name, cache_type,
2852 thread_scoped=False):
2852 thread_scoped=False):
2853 """
2853 """
2854 @cache_region('long_term')
2854 @cache_region('long_term')
2855 def _heavy_calculation(cache_key):
2855 def _heavy_calculation(cache_key):
2856 return 'result'
2856 return 'result'
2857
2857
2858 cache_context = CacheKey.repo_context_cache(
2858 cache_context = CacheKey.repo_context_cache(
2859 _heavy_calculation, repo_name, cache_type)
2859 _heavy_calculation, repo_name, cache_type)
2860
2860
2861 with cache_context as context:
2861 with cache_context as context:
2862 context.invalidate()
2862 context.invalidate()
2863 computed = context.compute()
2863 computed = context.compute()
2864
2864
2865 assert computed == 'result'
2865 assert computed == 'result'
2866 """
2866 """
2867 from rhodecode.lib import caches
2867 from rhodecode.lib import caches
2868 return caches.InvalidationContext(
2868 return caches.InvalidationContext(
2869 compute_func, repo_name, cache_type, thread_scoped=thread_scoped)
2869 compute_func, repo_name, cache_type, thread_scoped=thread_scoped)
2870
2870
2871
2871
2872 class ChangesetComment(Base, BaseModel):
2872 class ChangesetComment(Base, BaseModel):
2873 __tablename__ = 'changeset_comments'
2873 __tablename__ = 'changeset_comments'
2874 __table_args__ = (
2874 __table_args__ = (
2875 Index('cc_revision_idx', 'revision'),
2875 Index('cc_revision_idx', 'revision'),
2876 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2876 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2877 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2877 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2878 )
2878 )
2879
2879
2880 COMMENT_OUTDATED = u'comment_outdated'
2880 COMMENT_OUTDATED = u'comment_outdated'
2881
2881
2882 comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True)
2882 comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True)
2883 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2883 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2884 revision = Column('revision', String(40), nullable=True)
2884 revision = Column('revision', String(40), nullable=True)
2885 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2885 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2886 pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True)
2886 pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True)
2887 line_no = Column('line_no', Unicode(10), nullable=True)
2887 line_no = Column('line_no', Unicode(10), nullable=True)
2888 hl_lines = Column('hl_lines', Unicode(512), nullable=True)
2888 hl_lines = Column('hl_lines', Unicode(512), nullable=True)
2889 f_path = Column('f_path', Unicode(1000), nullable=True)
2889 f_path = Column('f_path', Unicode(1000), nullable=True)
2890 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
2890 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
2891 text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False)
2891 text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False)
2892 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2892 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2893 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2893 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2894 renderer = Column('renderer', Unicode(64), nullable=True)
2894 renderer = Column('renderer', Unicode(64), nullable=True)
2895 display_state = Column('display_state', Unicode(128), nullable=True)
2895 display_state = Column('display_state', Unicode(128), nullable=True)
2896
2896
2897 author = relationship('User', lazy='joined')
2897 author = relationship('User', lazy='joined')
2898 repo = relationship('Repository')
2898 repo = relationship('Repository')
2899 status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan")
2899 status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan")
2900 pull_request = relationship('PullRequest', lazy='joined')
2900 pull_request = relationship('PullRequest', lazy='joined')
2901 pull_request_version = relationship('PullRequestVersion')
2901 pull_request_version = relationship('PullRequestVersion')
2902
2902
2903 @classmethod
2903 @classmethod
2904 def get_users(cls, revision=None, pull_request_id=None):
2904 def get_users(cls, revision=None, pull_request_id=None):
2905 """
2905 """
2906 Returns user associated with this ChangesetComment. ie those
2906 Returns user associated with this ChangesetComment. ie those
2907 who actually commented
2907 who actually commented
2908
2908
2909 :param cls:
2909 :param cls:
2910 :param revision:
2910 :param revision:
2911 """
2911 """
2912 q = Session().query(User)\
2912 q = Session().query(User)\
2913 .join(ChangesetComment.author)
2913 .join(ChangesetComment.author)
2914 if revision:
2914 if revision:
2915 q = q.filter(cls.revision == revision)
2915 q = q.filter(cls.revision == revision)
2916 elif pull_request_id:
2916 elif pull_request_id:
2917 q = q.filter(cls.pull_request_id == pull_request_id)
2917 q = q.filter(cls.pull_request_id == pull_request_id)
2918 return q.all()
2918 return q.all()
2919
2919
2920 def render(self, mentions=False):
2920 def render(self, mentions=False):
2921 from rhodecode.lib import helpers as h
2921 from rhodecode.lib import helpers as h
2922 return h.render(self.text, renderer=self.renderer, mentions=mentions)
2922 return h.render(self.text, renderer=self.renderer, mentions=mentions)
2923
2923
2924 def __repr__(self):
2924 def __repr__(self):
2925 if self.comment_id:
2925 if self.comment_id:
2926 return '<DB:ChangesetComment #%s>' % self.comment_id
2926 return '<DB:ChangesetComment #%s>' % self.comment_id
2927 else:
2927 else:
2928 return '<DB:ChangesetComment at %#x>' % id(self)
2928 return '<DB:ChangesetComment at %#x>' % id(self)
2929
2929
2930
2930
2931 class ChangesetStatus(Base, BaseModel):
2931 class ChangesetStatus(Base, BaseModel):
2932 __tablename__ = 'changeset_statuses'
2932 __tablename__ = 'changeset_statuses'
2933 __table_args__ = (
2933 __table_args__ = (
2934 Index('cs_revision_idx', 'revision'),
2934 Index('cs_revision_idx', 'revision'),
2935 Index('cs_version_idx', 'version'),
2935 Index('cs_version_idx', 'version'),
2936 UniqueConstraint('repo_id', 'revision', 'version'),
2936 UniqueConstraint('repo_id', 'revision', 'version'),
2937 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2937 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2938 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2938 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2939 )
2939 )
2940 STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
2940 STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
2941 STATUS_APPROVED = 'approved'
2941 STATUS_APPROVED = 'approved'
2942 STATUS_REJECTED = 'rejected'
2942 STATUS_REJECTED = 'rejected'
2943 STATUS_UNDER_REVIEW = 'under_review'
2943 STATUS_UNDER_REVIEW = 'under_review'
2944
2944
2945 STATUSES = [
2945 STATUSES = [
2946 (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default
2946 (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default
2947 (STATUS_APPROVED, _("Approved")),
2947 (STATUS_APPROVED, _("Approved")),
2948 (STATUS_REJECTED, _("Rejected")),
2948 (STATUS_REJECTED, _("Rejected")),
2949 (STATUS_UNDER_REVIEW, _("Under Review")),
2949 (STATUS_UNDER_REVIEW, _("Under Review")),
2950 ]
2950 ]
2951
2951
2952 changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True)
2952 changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True)
2953 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2953 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2954 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None)
2954 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None)
2955 revision = Column('revision', String(40), nullable=False)
2955 revision = Column('revision', String(40), nullable=False)
2956 status = Column('status', String(128), nullable=False, default=DEFAULT)
2956 status = Column('status', String(128), nullable=False, default=DEFAULT)
2957 changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'))
2957 changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'))
2958 modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now)
2958 modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now)
2959 version = Column('version', Integer(), nullable=False, default=0)
2959 version = Column('version', Integer(), nullable=False, default=0)
2960 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2960 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2961
2961
2962 author = relationship('User', lazy='joined')
2962 author = relationship('User', lazy='joined')
2963 repo = relationship('Repository')
2963 repo = relationship('Repository')
2964 comment = relationship('ChangesetComment', lazy='joined')
2964 comment = relationship('ChangesetComment', lazy='joined')
2965 pull_request = relationship('PullRequest', lazy='joined')
2965 pull_request = relationship('PullRequest', lazy='joined')
2966
2966
2967 def __unicode__(self):
2967 def __unicode__(self):
2968 return u"<%s('%s[%s]:%s')>" % (
2968 return u"<%s('%s[%s]:%s')>" % (
2969 self.__class__.__name__,
2969 self.__class__.__name__,
2970 self.status, self.version, self.author
2970 self.status, self.version, self.author
2971 )
2971 )
2972
2972
2973 @classmethod
2973 @classmethod
2974 def get_status_lbl(cls, value):
2974 def get_status_lbl(cls, value):
2975 return dict(cls.STATUSES).get(value)
2975 return dict(cls.STATUSES).get(value)
2976
2976
2977 @property
2977 @property
2978 def status_lbl(self):
2978 def status_lbl(self):
2979 return ChangesetStatus.get_status_lbl(self.status)
2979 return ChangesetStatus.get_status_lbl(self.status)
2980
2980
2981
2981
2982 class _PullRequestBase(BaseModel):
2982 class _PullRequestBase(BaseModel):
2983 """
2983 """
2984 Common attributes of pull request and version entries.
2984 Common attributes of pull request and version entries.
2985 """
2985 """
2986
2986
2987 # .status values
2987 # .status values
2988 STATUS_NEW = u'new'
2988 STATUS_NEW = u'new'
2989 STATUS_OPEN = u'open'
2989 STATUS_OPEN = u'open'
2990 STATUS_CLOSED = u'closed'
2990 STATUS_CLOSED = u'closed'
2991
2991
2992 title = Column('title', Unicode(255), nullable=True)
2992 title = Column('title', Unicode(255), nullable=True)
2993 description = Column(
2993 description = Column(
2994 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'),
2994 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'),
2995 nullable=True)
2995 nullable=True)
2996 # new/open/closed status of pull request (not approve/reject/etc)
2996 # new/open/closed status of pull request (not approve/reject/etc)
2997 status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW)
2997 status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW)
2998 created_on = Column(
2998 created_on = Column(
2999 'created_on', DateTime(timezone=False), nullable=False,
2999 'created_on', DateTime(timezone=False), nullable=False,
3000 default=datetime.datetime.now)
3000 default=datetime.datetime.now)
3001 updated_on = Column(
3001 updated_on = Column(
3002 'updated_on', DateTime(timezone=False), nullable=False,
3002 'updated_on', DateTime(timezone=False), nullable=False,
3003 default=datetime.datetime.now)
3003 default=datetime.datetime.now)
3004
3004
3005 @declared_attr
3005 @declared_attr
3006 def user_id(cls):
3006 def user_id(cls):
3007 return Column(
3007 return Column(
3008 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
3008 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
3009 unique=None)
3009 unique=None)
3010
3010
3011 # 500 revisions max
3011 # 500 revisions max
3012 _revisions = Column(
3012 _revisions = Column(
3013 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql'))
3013 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql'))
3014
3014
3015 @declared_attr
3015 @declared_attr
3016 def source_repo_id(cls):
3016 def source_repo_id(cls):
3017 # TODO: dan: rename column to source_repo_id
3017 # TODO: dan: rename column to source_repo_id
3018 return Column(
3018 return Column(
3019 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3019 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3020 nullable=False)
3020 nullable=False)
3021
3021
3022 source_ref = Column('org_ref', Unicode(255), nullable=False)
3022 source_ref = Column('org_ref', Unicode(255), nullable=False)
3023
3023
3024 @declared_attr
3024 @declared_attr
3025 def target_repo_id(cls):
3025 def target_repo_id(cls):
3026 # TODO: dan: rename column to target_repo_id
3026 # TODO: dan: rename column to target_repo_id
3027 return Column(
3027 return Column(
3028 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3028 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3029 nullable=False)
3029 nullable=False)
3030
3030
3031 target_ref = Column('other_ref', Unicode(255), nullable=False)
3031 target_ref = Column('other_ref', Unicode(255), nullable=False)
3032
3032
3033 # TODO: dan: rename column to last_merge_source_rev
3033 # TODO: dan: rename column to last_merge_source_rev
3034 _last_merge_source_rev = Column(
3034 _last_merge_source_rev = Column(
3035 'last_merge_org_rev', String(40), nullable=True)
3035 'last_merge_org_rev', String(40), nullable=True)
3036 # TODO: dan: rename column to last_merge_target_rev
3036 # TODO: dan: rename column to last_merge_target_rev
3037 _last_merge_target_rev = Column(
3037 _last_merge_target_rev = Column(
3038 'last_merge_other_rev', String(40), nullable=True)
3038 'last_merge_other_rev', String(40), nullable=True)
3039 _last_merge_status = Column('merge_status', Integer(), nullable=True)
3039 _last_merge_status = Column('merge_status', Integer(), nullable=True)
3040 merge_rev = Column('merge_rev', String(40), nullable=True)
3040 merge_rev = Column('merge_rev', String(40), nullable=True)
3041
3041
3042 @hybrid_property
3042 @hybrid_property
3043 def revisions(self):
3043 def revisions(self):
3044 return self._revisions.split(':') if self._revisions else []
3044 return self._revisions.split(':') if self._revisions else []
3045
3045
3046 @revisions.setter
3046 @revisions.setter
3047 def revisions(self, val):
3047 def revisions(self, val):
3048 self._revisions = ':'.join(val)
3048 self._revisions = ':'.join(val)
3049
3049
3050 @declared_attr
3050 @declared_attr
3051 def author(cls):
3051 def author(cls):
3052 return relationship('User', lazy='joined')
3052 return relationship('User', lazy='joined')
3053
3053
3054 @declared_attr
3054 @declared_attr
3055 def source_repo(cls):
3055 def source_repo(cls):
3056 return relationship(
3056 return relationship(
3057 'Repository',
3057 'Repository',
3058 primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__)
3058 primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__)
3059
3059
3060 @property
3060 @property
3061 def source_ref_parts(self):
3061 def source_ref_parts(self):
3062 refs = self.source_ref.split(':')
3062 refs = self.source_ref.split(':')
3063 return Reference(refs[0], refs[1], refs[2])
3063 return Reference(refs[0], refs[1], refs[2])
3064
3064
3065 @declared_attr
3065 @declared_attr
3066 def target_repo(cls):
3066 def target_repo(cls):
3067 return relationship(
3067 return relationship(
3068 'Repository',
3068 'Repository',
3069 primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__)
3069 primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__)
3070
3070
3071 @property
3071 @property
3072 def target_ref_parts(self):
3072 def target_ref_parts(self):
3073 refs = self.target_ref.split(':')
3073 refs = self.target_ref.split(':')
3074 return Reference(refs[0], refs[1], refs[2])
3074 return Reference(refs[0], refs[1], refs[2])
3075
3075
3076
3076
3077 class PullRequest(Base, _PullRequestBase):
3077 class PullRequest(Base, _PullRequestBase):
3078 __tablename__ = 'pull_requests'
3078 __tablename__ = 'pull_requests'
3079 __table_args__ = (
3079 __table_args__ = (
3080 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3080 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3081 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3081 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3082 )
3082 )
3083
3083
3084 pull_request_id = Column(
3084 pull_request_id = Column(
3085 'pull_request_id', Integer(), nullable=False, primary_key=True)
3085 'pull_request_id', Integer(), nullable=False, primary_key=True)
3086
3086
3087 def __repr__(self):
3087 def __repr__(self):
3088 if self.pull_request_id:
3088 if self.pull_request_id:
3089 return '<DB:PullRequest #%s>' % self.pull_request_id
3089 return '<DB:PullRequest #%s>' % self.pull_request_id
3090 else:
3090 else:
3091 return '<DB:PullRequest at %#x>' % id(self)
3091 return '<DB:PullRequest at %#x>' % id(self)
3092
3092
3093 reviewers = relationship('PullRequestReviewers',
3093 reviewers = relationship('PullRequestReviewers',
3094 cascade="all, delete, delete-orphan")
3094 cascade="all, delete, delete-orphan")
3095 statuses = relationship('ChangesetStatus')
3095 statuses = relationship('ChangesetStatus')
3096 comments = relationship('ChangesetComment',
3096 comments = relationship('ChangesetComment',
3097 cascade="all, delete, delete-orphan")
3097 cascade="all, delete, delete-orphan")
3098 versions = relationship('PullRequestVersion',
3098 versions = relationship('PullRequestVersion',
3099 cascade="all, delete, delete-orphan")
3099 cascade="all, delete, delete-orphan")
3100
3100
3101 def is_closed(self):
3101 def is_closed(self):
3102 return self.status == self.STATUS_CLOSED
3102 return self.status == self.STATUS_CLOSED
3103
3103
3104 def get_api_data(self):
3104 def get_api_data(self):
3105 from rhodecode.model.pull_request import PullRequestModel
3105 from rhodecode.model.pull_request import PullRequestModel
3106 pull_request = self
3106 pull_request = self
3107 merge_status = PullRequestModel().merge_status(pull_request)
3107 merge_status = PullRequestModel().merge_status(pull_request)
3108 data = {
3108 data = {
3109 'pull_request_id': pull_request.pull_request_id,
3109 'pull_request_id': pull_request.pull_request_id,
3110 'url': url('pullrequest_show', repo_name=self.target_repo.repo_name,
3110 'url': url('pullrequest_show', repo_name=self.target_repo.repo_name,
3111 pull_request_id=self.pull_request_id,
3111 pull_request_id=self.pull_request_id,
3112 qualified=True),
3112 qualified=True),
3113 'title': pull_request.title,
3113 'title': pull_request.title,
3114 'description': pull_request.description,
3114 'description': pull_request.description,
3115 'status': pull_request.status,
3115 'status': pull_request.status,
3116 'created_on': pull_request.created_on,
3116 'created_on': pull_request.created_on,
3117 'updated_on': pull_request.updated_on,
3117 'updated_on': pull_request.updated_on,
3118 'commit_ids': pull_request.revisions,
3118 'commit_ids': pull_request.revisions,
3119 'review_status': pull_request.calculated_review_status(),
3119 'review_status': pull_request.calculated_review_status(),
3120 'mergeable': {
3120 'mergeable': {
3121 'status': merge_status[0],
3121 'status': merge_status[0],
3122 'message': unicode(merge_status[1]),
3122 'message': unicode(merge_status[1]),
3123 },
3123 },
3124 'source': {
3124 'source': {
3125 'clone_url': pull_request.source_repo.clone_url(),
3125 'clone_url': pull_request.source_repo.clone_url(),
3126 'repository': pull_request.source_repo.repo_name,
3126 'repository': pull_request.source_repo.repo_name,
3127 'reference': {
3127 'reference': {
3128 'name': pull_request.source_ref_parts.name,
3128 'name': pull_request.source_ref_parts.name,
3129 'type': pull_request.source_ref_parts.type,
3129 'type': pull_request.source_ref_parts.type,
3130 'commit_id': pull_request.source_ref_parts.commit_id,
3130 'commit_id': pull_request.source_ref_parts.commit_id,
3131 },
3131 },
3132 },
3132 },
3133 'target': {
3133 'target': {
3134 'clone_url': pull_request.target_repo.clone_url(),
3134 'clone_url': pull_request.target_repo.clone_url(),
3135 'repository': pull_request.target_repo.repo_name,
3135 'repository': pull_request.target_repo.repo_name,
3136 'reference': {
3136 'reference': {
3137 'name': pull_request.target_ref_parts.name,
3137 'name': pull_request.target_ref_parts.name,
3138 'type': pull_request.target_ref_parts.type,
3138 'type': pull_request.target_ref_parts.type,
3139 'commit_id': pull_request.target_ref_parts.commit_id,
3139 'commit_id': pull_request.target_ref_parts.commit_id,
3140 },
3140 },
3141 },
3141 },
3142 'author': pull_request.author.get_api_data(include_secrets=False,
3142 'author': pull_request.author.get_api_data(include_secrets=False,
3143 details='basic'),
3143 details='basic'),
3144 'reviewers': [
3144 'reviewers': [
3145 {
3145 {
3146 'user': reviewer.get_api_data(include_secrets=False,
3146 'user': reviewer.get_api_data(include_secrets=False,
3147 details='basic'),
3147 details='basic'),
3148 'review_status': st[0][1].status if st else 'not_reviewed',
3148 'review_status': st[0][1].status if st else 'not_reviewed',
3149 }
3149 }
3150 for reviewer, st in pull_request.reviewers_statuses()
3150 for reviewer, st in pull_request.reviewers_statuses()
3151 ]
3151 ]
3152 }
3152 }
3153
3153
3154 return data
3154 return data
3155
3155
3156 def __json__(self):
3156 def __json__(self):
3157 return {
3157 return {
3158 'revisions': self.revisions,
3158 'revisions': self.revisions,
3159 }
3159 }
3160
3160
3161 def calculated_review_status(self):
3161 def calculated_review_status(self):
3162 # TODO: anderson: 13.05.15 Used only on templates/my_account_pullrequests.html
3162 # TODO: anderson: 13.05.15 Used only on templates/my_account_pullrequests.html
3163 # because it's tricky on how to use ChangesetStatusModel from there
3163 # because it's tricky on how to use ChangesetStatusModel from there
3164 warnings.warn("Use calculated_review_status from ChangesetStatusModel", DeprecationWarning)
3164 warnings.warn("Use calculated_review_status from ChangesetStatusModel", DeprecationWarning)
3165 from rhodecode.model.changeset_status import ChangesetStatusModel
3165 from rhodecode.model.changeset_status import ChangesetStatusModel
3166 return ChangesetStatusModel().calculated_review_status(self)
3166 return ChangesetStatusModel().calculated_review_status(self)
3167
3167
3168 def reviewers_statuses(self):
3168 def reviewers_statuses(self):
3169 warnings.warn("Use reviewers_statuses from ChangesetStatusModel", DeprecationWarning)
3169 warnings.warn("Use reviewers_statuses from ChangesetStatusModel", DeprecationWarning)
3170 from rhodecode.model.changeset_status import ChangesetStatusModel
3170 from rhodecode.model.changeset_status import ChangesetStatusModel
3171 return ChangesetStatusModel().reviewers_statuses(self)
3171 return ChangesetStatusModel().reviewers_statuses(self)
3172
3172
3173
3173
3174 class PullRequestVersion(Base, _PullRequestBase):
3174 class PullRequestVersion(Base, _PullRequestBase):
3175 __tablename__ = 'pull_request_versions'
3175 __tablename__ = 'pull_request_versions'
3176 __table_args__ = (
3176 __table_args__ = (
3177 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3177 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3178 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3178 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3179 )
3179 )
3180
3180
3181 pull_request_version_id = Column(
3181 pull_request_version_id = Column(
3182 'pull_request_version_id', Integer(), nullable=False, primary_key=True)
3182 'pull_request_version_id', Integer(), nullable=False, primary_key=True)
3183 pull_request_id = Column(
3183 pull_request_id = Column(
3184 'pull_request_id', Integer(),
3184 'pull_request_id', Integer(),
3185 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3185 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3186 pull_request = relationship('PullRequest')
3186 pull_request = relationship('PullRequest')
3187
3187
3188 def __repr__(self):
3188 def __repr__(self):
3189 if self.pull_request_version_id:
3189 if self.pull_request_version_id:
3190 return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id
3190 return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id
3191 else:
3191 else:
3192 return '<DB:PullRequestVersion at %#x>' % id(self)
3192 return '<DB:PullRequestVersion at %#x>' % id(self)
3193
3193
3194
3194
3195 class PullRequestReviewers(Base, BaseModel):
3195 class PullRequestReviewers(Base, BaseModel):
3196 __tablename__ = 'pull_request_reviewers'
3196 __tablename__ = 'pull_request_reviewers'
3197 __table_args__ = (
3197 __table_args__ = (
3198 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3198 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3199 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3199 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3200 )
3200 )
3201
3201
3202 def __init__(self, user=None, pull_request=None):
3202 def __init__(self, user=None, pull_request=None):
3203 self.user = user
3203 self.user = user
3204 self.pull_request = pull_request
3204 self.pull_request = pull_request
3205
3205
3206 pull_requests_reviewers_id = Column(
3206 pull_requests_reviewers_id = Column(
3207 'pull_requests_reviewers_id', Integer(), nullable=False,
3207 'pull_requests_reviewers_id', Integer(), nullable=False,
3208 primary_key=True)
3208 primary_key=True)
3209 pull_request_id = Column(
3209 pull_request_id = Column(
3210 "pull_request_id", Integer(),
3210 "pull_request_id", Integer(),
3211 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3211 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3212 user_id = Column(
3212 user_id = Column(
3213 "user_id", Integer(), ForeignKey('users.user_id'), nullable=True)
3213 "user_id", Integer(), ForeignKey('users.user_id'), nullable=True)
3214
3214
3215 user = relationship('User')
3215 user = relationship('User')
3216 pull_request = relationship('PullRequest')
3216 pull_request = relationship('PullRequest')
3217
3217
3218
3218
3219 class Notification(Base, BaseModel):
3219 class Notification(Base, BaseModel):
3220 __tablename__ = 'notifications'
3220 __tablename__ = 'notifications'
3221 __table_args__ = (
3221 __table_args__ = (
3222 Index('notification_type_idx', 'type'),
3222 Index('notification_type_idx', 'type'),
3223 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3223 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3224 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3224 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3225 )
3225 )
3226
3226
3227 TYPE_CHANGESET_COMMENT = u'cs_comment'
3227 TYPE_CHANGESET_COMMENT = u'cs_comment'
3228 TYPE_MESSAGE = u'message'
3228 TYPE_MESSAGE = u'message'
3229 TYPE_MENTION = u'mention'
3229 TYPE_MENTION = u'mention'
3230 TYPE_REGISTRATION = u'registration'
3230 TYPE_REGISTRATION = u'registration'
3231 TYPE_PULL_REQUEST = u'pull_request'
3231 TYPE_PULL_REQUEST = u'pull_request'
3232 TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment'
3232 TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment'
3233
3233
3234 notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True)
3234 notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True)
3235 subject = Column('subject', Unicode(512), nullable=True)
3235 subject = Column('subject', Unicode(512), nullable=True)
3236 body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True)
3236 body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True)
3237 created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True)
3237 created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True)
3238 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3238 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3239 type_ = Column('type', Unicode(255))
3239 type_ = Column('type', Unicode(255))
3240
3240
3241 created_by_user = relationship('User')
3241 created_by_user = relationship('User')
3242 notifications_to_users = relationship('UserNotification', lazy='joined',
3242 notifications_to_users = relationship('UserNotification', lazy='joined',
3243 cascade="all, delete, delete-orphan")
3243 cascade="all, delete, delete-orphan")
3244
3244
3245 @property
3245 @property
3246 def recipients(self):
3246 def recipients(self):
3247 return [x.user for x in UserNotification.query()\
3247 return [x.user for x in UserNotification.query()\
3248 .filter(UserNotification.notification == self)\
3248 .filter(UserNotification.notification == self)\
3249 .order_by(UserNotification.user_id.asc()).all()]
3249 .order_by(UserNotification.user_id.asc()).all()]
3250
3250
3251 @classmethod
3251 @classmethod
3252 def create(cls, created_by, subject, body, recipients, type_=None):
3252 def create(cls, created_by, subject, body, recipients, type_=None):
3253 if type_ is None:
3253 if type_ is None:
3254 type_ = Notification.TYPE_MESSAGE
3254 type_ = Notification.TYPE_MESSAGE
3255
3255
3256 notification = cls()
3256 notification = cls()
3257 notification.created_by_user = created_by
3257 notification.created_by_user = created_by
3258 notification.subject = subject
3258 notification.subject = subject
3259 notification.body = body
3259 notification.body = body
3260 notification.type_ = type_
3260 notification.type_ = type_
3261 notification.created_on = datetime.datetime.now()
3261 notification.created_on = datetime.datetime.now()
3262
3262
3263 for u in recipients:
3263 for u in recipients:
3264 assoc = UserNotification()
3264 assoc = UserNotification()
3265 assoc.notification = notification
3265 assoc.notification = notification
3266
3266
3267 # if created_by is inside recipients mark his notification
3267 # if created_by is inside recipients mark his notification
3268 # as read
3268 # as read
3269 if u.user_id == created_by.user_id:
3269 if u.user_id == created_by.user_id:
3270 assoc.read = True
3270 assoc.read = True
3271
3271
3272 u.notifications.append(assoc)
3272 u.notifications.append(assoc)
3273 Session().add(notification)
3273 Session().add(notification)
3274
3274
3275 return notification
3275 return notification
3276
3276
3277 @property
3277 @property
3278 def description(self):
3278 def description(self):
3279 from rhodecode.model.notification import NotificationModel
3279 from rhodecode.model.notification import NotificationModel
3280 return NotificationModel().make_description(self)
3280 return NotificationModel().make_description(self)
3281
3281
3282
3282
3283 class UserNotification(Base, BaseModel):
3283 class UserNotification(Base, BaseModel):
3284 __tablename__ = 'user_to_notification'
3284 __tablename__ = 'user_to_notification'
3285 __table_args__ = (
3285 __table_args__ = (
3286 UniqueConstraint('user_id', 'notification_id'),
3286 UniqueConstraint('user_id', 'notification_id'),
3287 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3287 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3288 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3288 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3289 )
3289 )
3290 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
3290 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
3291 notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True)
3291 notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True)
3292 read = Column('read', Boolean, default=False)
3292 read = Column('read', Boolean, default=False)
3293 sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None)
3293 sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None)
3294
3294
3295 user = relationship('User', lazy="joined")
3295 user = relationship('User', lazy="joined")
3296 notification = relationship('Notification', lazy="joined",
3296 notification = relationship('Notification', lazy="joined",
3297 order_by=lambda: Notification.created_on.desc(),)
3297 order_by=lambda: Notification.created_on.desc(),)
3298
3298
3299 def mark_as_read(self):
3299 def mark_as_read(self):
3300 self.read = True
3300 self.read = True
3301 Session().add(self)
3301 Session().add(self)
3302
3302
3303
3303
3304 class Gist(Base, BaseModel):
3304 class Gist(Base, BaseModel):
3305 __tablename__ = 'gists'
3305 __tablename__ = 'gists'
3306 __table_args__ = (
3306 __table_args__ = (
3307 Index('g_gist_access_id_idx', 'gist_access_id'),
3307 Index('g_gist_access_id_idx', 'gist_access_id'),
3308 Index('g_created_on_idx', 'created_on'),
3308 Index('g_created_on_idx', 'created_on'),
3309 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3309 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3310 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3310 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3311 )
3311 )
3312 GIST_PUBLIC = u'public'
3312 GIST_PUBLIC = u'public'
3313 GIST_PRIVATE = u'private'
3313 GIST_PRIVATE = u'private'
3314 DEFAULT_FILENAME = u'gistfile1.txt'
3314 DEFAULT_FILENAME = u'gistfile1.txt'
3315
3315
3316 ACL_LEVEL_PUBLIC = u'acl_public'
3316 ACL_LEVEL_PUBLIC = u'acl_public'
3317 ACL_LEVEL_PRIVATE = u'acl_private'
3317 ACL_LEVEL_PRIVATE = u'acl_private'
3318
3318
3319 gist_id = Column('gist_id', Integer(), primary_key=True)
3319 gist_id = Column('gist_id', Integer(), primary_key=True)
3320 gist_access_id = Column('gist_access_id', Unicode(250))
3320 gist_access_id = Column('gist_access_id', Unicode(250))
3321 gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
3321 gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
3322 gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True)
3322 gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True)
3323 gist_expires = Column('gist_expires', Float(53), nullable=False)
3323 gist_expires = Column('gist_expires', Float(53), nullable=False)
3324 gist_type = Column('gist_type', Unicode(128), nullable=False)
3324 gist_type = Column('gist_type', Unicode(128), nullable=False)
3325 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3325 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3326 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3326 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3327 acl_level = Column('acl_level', Unicode(128), nullable=True)
3327 acl_level = Column('acl_level', Unicode(128), nullable=True)
3328
3328
3329 owner = relationship('User')
3329 owner = relationship('User')
3330
3330
3331 def __repr__(self):
3331 def __repr__(self):
3332 return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id)
3332 return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id)
3333
3333
3334 @classmethod
3334 @classmethod
3335 def get_or_404(cls, id_):
3335 def get_or_404(cls, id_):
3336 res = cls.query().filter(cls.gist_access_id == id_).scalar()
3336 res = cls.query().filter(cls.gist_access_id == id_).scalar()
3337 if not res:
3337 if not res:
3338 raise HTTPNotFound
3338 raise HTTPNotFound
3339 return res
3339 return res
3340
3340
3341 @classmethod
3341 @classmethod
3342 def get_by_access_id(cls, gist_access_id):
3342 def get_by_access_id(cls, gist_access_id):
3343 return cls.query().filter(cls.gist_access_id == gist_access_id).scalar()
3343 return cls.query().filter(cls.gist_access_id == gist_access_id).scalar()
3344
3344
3345 def gist_url(self):
3345 def gist_url(self):
3346 import rhodecode
3346 import rhodecode
3347 alias_url = rhodecode.CONFIG.get('gist_alias_url')
3347 alias_url = rhodecode.CONFIG.get('gist_alias_url')
3348 if alias_url:
3348 if alias_url:
3349 return alias_url.replace('{gistid}', self.gist_access_id)
3349 return alias_url.replace('{gistid}', self.gist_access_id)
3350
3350
3351 return url('gist', gist_id=self.gist_access_id, qualified=True)
3351 return url('gist', gist_id=self.gist_access_id, qualified=True)
3352
3352
3353 @classmethod
3353 @classmethod
3354 def base_path(cls):
3354 def base_path(cls):
3355 """
3355 """
3356 Returns base path when all gists are stored
3356 Returns base path when all gists are stored
3357
3357
3358 :param cls:
3358 :param cls:
3359 """
3359 """
3360 from rhodecode.model.gist import GIST_STORE_LOC
3360 from rhodecode.model.gist import GIST_STORE_LOC
3361 q = Session().query(RhodeCodeUi)\
3361 q = Session().query(RhodeCodeUi)\
3362 .filter(RhodeCodeUi.ui_key == URL_SEP)
3362 .filter(RhodeCodeUi.ui_key == URL_SEP)
3363 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
3363 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
3364 return os.path.join(q.one().ui_value, GIST_STORE_LOC)
3364 return os.path.join(q.one().ui_value, GIST_STORE_LOC)
3365
3365
3366 def get_api_data(self):
3366 def get_api_data(self):
3367 """
3367 """
3368 Common function for generating gist related data for API
3368 Common function for generating gist related data for API
3369 """
3369 """
3370 gist = self
3370 gist = self
3371 data = {
3371 data = {
3372 'gist_id': gist.gist_id,
3372 'gist_id': gist.gist_id,
3373 'type': gist.gist_type,
3373 'type': gist.gist_type,
3374 'access_id': gist.gist_access_id,
3374 'access_id': gist.gist_access_id,
3375 'description': gist.gist_description,
3375 'description': gist.gist_description,
3376 'url': gist.gist_url(),
3376 'url': gist.gist_url(),
3377 'expires': gist.gist_expires,
3377 'expires': gist.gist_expires,
3378 'created_on': gist.created_on,
3378 'created_on': gist.created_on,
3379 'modified_at': gist.modified_at,
3379 'modified_at': gist.modified_at,
3380 'content': None,
3380 'content': None,
3381 'acl_level': gist.acl_level,
3381 'acl_level': gist.acl_level,
3382 }
3382 }
3383 return data
3383 return data
3384
3384
3385 def __json__(self):
3385 def __json__(self):
3386 data = dict(
3386 data = dict(
3387 )
3387 )
3388 data.update(self.get_api_data())
3388 data.update(self.get_api_data())
3389 return data
3389 return data
3390 # SCM functions
3390 # SCM functions
3391
3391
3392 def scm_instance(self, **kwargs):
3392 def scm_instance(self, **kwargs):
3393 full_repo_path = os.path.join(self.base_path(), self.gist_access_id)
3393 full_repo_path = os.path.join(self.base_path(), self.gist_access_id)
3394 return get_vcs_instance(
3394 return get_vcs_instance(
3395 repo_path=safe_str(full_repo_path), create=False)
3395 repo_path=safe_str(full_repo_path), create=False)
3396
3396
3397
3397
3398 class DbMigrateVersion(Base, BaseModel):
3398 class DbMigrateVersion(Base, BaseModel):
3399 __tablename__ = 'db_migrate_version'
3399 __tablename__ = 'db_migrate_version'
3400 __table_args__ = (
3400 __table_args__ = (
3401 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3401 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3402 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3402 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3403 )
3403 )
3404 repository_id = Column('repository_id', String(250), primary_key=True)
3404 repository_id = Column('repository_id', String(250), primary_key=True)
3405 repository_path = Column('repository_path', Text)
3405 repository_path = Column('repository_path', Text)
3406 version = Column('version', Integer)
3406 version = Column('version', Integer)
3407
3407
3408
3408
3409 class ExternalIdentity(Base, BaseModel):
3409 class ExternalIdentity(Base, BaseModel):
3410 __tablename__ = 'external_identities'
3410 __tablename__ = 'external_identities'
3411 __table_args__ = (
3411 __table_args__ = (
3412 Index('local_user_id_idx', 'local_user_id'),
3412 Index('local_user_id_idx', 'local_user_id'),
3413 Index('external_id_idx', 'external_id'),
3413 Index('external_id_idx', 'external_id'),
3414 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3414 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3415 'mysql_charset': 'utf8'})
3415 'mysql_charset': 'utf8'})
3416
3416
3417 external_id = Column('external_id', Unicode(255), default=u'',
3417 external_id = Column('external_id', Unicode(255), default=u'',
3418 primary_key=True)
3418 primary_key=True)
3419 external_username = Column('external_username', Unicode(1024), default=u'')
3419 external_username = Column('external_username', Unicode(1024), default=u'')
3420 local_user_id = Column('local_user_id', Integer(),
3420 local_user_id = Column('local_user_id', Integer(),
3421 ForeignKey('users.user_id'), primary_key=True)
3421 ForeignKey('users.user_id'), primary_key=True)
3422 provider_name = Column('provider_name', Unicode(255), default=u'',
3422 provider_name = Column('provider_name', Unicode(255), default=u'',
3423 primary_key=True)
3423 primary_key=True)
3424 access_token = Column('access_token', String(1024), default=u'')
3424 access_token = Column('access_token', String(1024), default=u'')
3425 alt_token = Column('alt_token', String(1024), default=u'')
3425 alt_token = Column('alt_token', String(1024), default=u'')
3426 token_secret = Column('token_secret', String(1024), default=u'')
3426 token_secret = Column('token_secret', String(1024), default=u'')
3427
3427
3428 @classmethod
3428 @classmethod
3429 def by_external_id_and_provider(cls, external_id, provider_name,
3429 def by_external_id_and_provider(cls, external_id, provider_name,
3430 local_user_id=None):
3430 local_user_id=None):
3431 """
3431 """
3432 Returns ExternalIdentity instance based on search params
3432 Returns ExternalIdentity instance based on search params
3433
3433
3434 :param external_id:
3434 :param external_id:
3435 :param provider_name:
3435 :param provider_name:
3436 :return: ExternalIdentity
3436 :return: ExternalIdentity
3437 """
3437 """
3438 query = cls.query()
3438 query = cls.query()
3439 query = query.filter(cls.external_id == external_id)
3439 query = query.filter(cls.external_id == external_id)
3440 query = query.filter(cls.provider_name == provider_name)
3440 query = query.filter(cls.provider_name == provider_name)
3441 if local_user_id:
3441 if local_user_id:
3442 query = query.filter(cls.local_user_id == local_user_id)
3442 query = query.filter(cls.local_user_id == local_user_id)
3443 return query.first()
3443 return query.first()
3444
3444
3445 @classmethod
3445 @classmethod
3446 def user_by_external_id_and_provider(cls, external_id, provider_name):
3446 def user_by_external_id_and_provider(cls, external_id, provider_name):
3447 """
3447 """
3448 Returns User instance based on search params
3448 Returns User instance based on search params
3449
3449
3450 :param external_id:
3450 :param external_id:
3451 :param provider_name:
3451 :param provider_name:
3452 :return: User
3452 :return: User
3453 """
3453 """
3454 query = User.query()
3454 query = User.query()
3455 query = query.filter(cls.external_id == external_id)
3455 query = query.filter(cls.external_id == external_id)
3456 query = query.filter(cls.provider_name == provider_name)
3456 query = query.filter(cls.provider_name == provider_name)
3457 query = query.filter(User.user_id == cls.local_user_id)
3457 query = query.filter(User.user_id == cls.local_user_id)
3458 return query.first()
3458 return query.first()
3459
3459
3460 @classmethod
3460 @classmethod
3461 def by_local_user_id(cls, local_user_id):
3461 def by_local_user_id(cls, local_user_id):
3462 """
3462 """
3463 Returns all tokens for user
3463 Returns all tokens for user
3464
3464
3465 :param local_user_id:
3465 :param local_user_id:
3466 :return: ExternalIdentity
3466 :return: ExternalIdentity
3467 """
3467 """
3468 query = cls.query()
3468 query = cls.query()
3469 query = query.filter(cls.local_user_id == local_user_id)
3469 query = query.filter(cls.local_user_id == local_user_id)
3470 return query
3470 return query
3471
3471
3472
3472
3473 class Integration(Base, BaseModel):
3473 class Integration(Base, BaseModel):
3474 __tablename__ = 'integrations'
3474 __tablename__ = 'integrations'
3475 __table_args__ = (
3475 __table_args__ = (
3476 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3476 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3477 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3477 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3478 )
3478 )
3479
3479
3480 integration_id = Column('integration_id', Integer(), primary_key=True)
3480 integration_id = Column('integration_id', Integer(), primary_key=True)
3481 integration_type = Column('integration_type', String(255))
3481 integration_type = Column('integration_type', String(255))
3482 enabled = Column('enabled', Boolean(), nullable=False)
3482 enabled = Column('enabled', Boolean(), nullable=False)
3483 name = Column('name', String(255), nullable=False)
3483 name = Column('name', String(255), nullable=False)
3484
3485 settings = Column(
3484 settings = Column(
3486 'settings_json', MutationObj.as_mutable(
3485 'settings_json', MutationObj.as_mutable(
3487 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
3486 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
3488 repo_id = Column(
3487 repo_id = Column(
3489 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
3488 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
3490 nullable=True, unique=None, default=None)
3489 nullable=True, unique=None, default=None)
3491 repo = relationship('Repository', lazy='joined')
3490 repo = relationship('Repository', lazy='joined')
3492
3491
3493 repo_group_id = Column(
3492 repo_group_id = Column(
3494 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
3493 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
3495 nullable=True, unique=None, default=None)
3494 nullable=True, unique=None, default=None)
3496 repo_group = relationship('RepoGroup', lazy='joined')
3495 repo_group = relationship('RepoGroup', lazy='joined')
3497
3496
3498 def __repr__(self):
3497 def __repr__(self):
3499 if self.repo:
3498 if self.repo:
3500 scope = 'repo=%r' % self.repo
3499 scope = 'repo=%r' % self.repo
3501 elif self.repo_group:
3500 elif self.repo_group:
3502 scope = 'repo_group=%r' % self.repo_group
3501 scope = 'repo_group=%r' % self.repo_group
3503 else:
3502 else:
3504 scope = 'global'
3503 scope = 'global'
3505
3504
3506 return '<Integration(%r, %r)>' % (self.integration_type, scope)
3505 return '<Integration(%r, %r)>' % (self.integration_type, scope)
@@ -1,3506 +1,3534 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 """
21 """
22 Database Models for RhodeCode Enterprise
22 Database Models for RhodeCode Enterprise
23 """
23 """
24
24
25 import os
25 import os
26 import sys
26 import sys
27 import time
27 import time
28 import hashlib
28 import hashlib
29 import logging
29 import logging
30 import datetime
30 import datetime
31 import warnings
31 import warnings
32 import ipaddress
32 import ipaddress
33 import functools
33 import functools
34 import traceback
34 import traceback
35 import collections
35 import collections
36
36
37
37
38 from sqlalchemy import *
38 from sqlalchemy import *
39 from sqlalchemy.exc import IntegrityError
39 from sqlalchemy.exc import IntegrityError
40 from sqlalchemy.ext.declarative import declared_attr
40 from sqlalchemy.ext.declarative import declared_attr
41 from sqlalchemy.ext.hybrid import hybrid_property
41 from sqlalchemy.ext.hybrid import hybrid_property
42 from sqlalchemy.orm import (
42 from sqlalchemy.orm import (
43 relationship, joinedload, class_mapper, validates, aliased)
43 relationship, joinedload, class_mapper, validates, aliased)
44 from sqlalchemy.sql.expression import true
44 from sqlalchemy.sql.expression import true
45 from beaker.cache import cache_region, region_invalidate
45 from beaker.cache import cache_region, region_invalidate
46 from webob.exc import HTTPNotFound
46 from webob.exc import HTTPNotFound
47 from zope.cachedescriptors.property import Lazy as LazyProperty
47 from zope.cachedescriptors.property import Lazy as LazyProperty
48
48
49 from pylons import url
49 from pylons import url
50 from pylons.i18n.translation import lazy_ugettext as _
50 from pylons.i18n.translation import lazy_ugettext as _
51
51
52 from rhodecode.lib.vcs import get_backend, get_vcs_instance
52 from rhodecode.lib.vcs import get_backend, get_vcs_instance
53 from rhodecode.lib.vcs.utils.helpers import get_scm
53 from rhodecode.lib.vcs.utils.helpers import get_scm
54 from rhodecode.lib.vcs.exceptions import VCSError
54 from rhodecode.lib.vcs.exceptions import VCSError
55 from rhodecode.lib.vcs.backends.base import (
55 from rhodecode.lib.vcs.backends.base import (
56 EmptyCommit, Reference, MergeFailureReason)
56 EmptyCommit, Reference, MergeFailureReason)
57 from rhodecode.lib.utils2 import (
57 from rhodecode.lib.utils2 import (
58 str2bool, safe_str, get_commit_safe, safe_unicode, remove_prefix, md5_safe,
58 str2bool, safe_str, get_commit_safe, safe_unicode, remove_prefix, md5_safe,
59 time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict)
59 time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict)
60 from rhodecode.lib.jsonalchemy import MutationObj, JsonType, JSONDict
60 from rhodecode.lib.jsonalchemy import MutationObj, JsonType, JSONDict
61 from rhodecode.lib.ext_json import json
61 from rhodecode.lib.ext_json import json
62 from rhodecode.lib.caching_query import FromCache
62 from rhodecode.lib.caching_query import FromCache
63 from rhodecode.lib.encrypt import AESCipher
63 from rhodecode.lib.encrypt import AESCipher
64
64
65 from rhodecode.model.meta import Base, Session
65 from rhodecode.model.meta import Base, Session
66
66
67 URL_SEP = '/'
67 URL_SEP = '/'
68 log = logging.getLogger(__name__)
68 log = logging.getLogger(__name__)
69
69
70 # =============================================================================
70 # =============================================================================
71 # BASE CLASSES
71 # BASE CLASSES
72 # =============================================================================
72 # =============================================================================
73
73
74 # this is propagated from .ini file rhodecode.encrypted_values.secret or
74 # this is propagated from .ini file rhodecode.encrypted_values.secret or
75 # beaker.session.secret if first is not set.
75 # beaker.session.secret if first is not set.
76 # and initialized at environment.py
76 # and initialized at environment.py
77 ENCRYPTION_KEY = None
77 ENCRYPTION_KEY = None
78
78
79 # used to sort permissions by types, '#' used here is not allowed to be in
79 # used to sort permissions by types, '#' used here is not allowed to be in
80 # usernames, and it's very early in sorted string.printable table.
80 # usernames, and it's very early in sorted string.printable table.
81 PERMISSION_TYPE_SORT = {
81 PERMISSION_TYPE_SORT = {
82 'admin': '####',
82 'admin': '####',
83 'write': '###',
83 'write': '###',
84 'read': '##',
84 'read': '##',
85 'none': '#',
85 'none': '#',
86 }
86 }
87
87
88
88
89 def display_sort(obj):
89 def display_sort(obj):
90 """
90 """
91 Sort function used to sort permissions in .permissions() function of
91 Sort function used to sort permissions in .permissions() function of
92 Repository, RepoGroup, UserGroup. Also it put the default user in front
92 Repository, RepoGroup, UserGroup. Also it put the default user in front
93 of all other resources
93 of all other resources
94 """
94 """
95
95
96 if obj.username == User.DEFAULT_USER:
96 if obj.username == User.DEFAULT_USER:
97 return '#####'
97 return '#####'
98 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
98 prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '')
99 return prefix + obj.username
99 return prefix + obj.username
100
100
101
101
102 def _hash_key(k):
102 def _hash_key(k):
103 return md5_safe(k)
103 return md5_safe(k)
104
104
105
105
106 class EncryptedTextValue(TypeDecorator):
106 class EncryptedTextValue(TypeDecorator):
107 """
107 """
108 Special column for encrypted long text data, use like::
108 Special column for encrypted long text data, use like::
109
109
110 value = Column("encrypted_value", EncryptedValue(), nullable=False)
110 value = Column("encrypted_value", EncryptedValue(), nullable=False)
111
111
112 This column is intelligent so if value is in unencrypted form it return
112 This column is intelligent so if value is in unencrypted form it return
113 unencrypted form, but on save it always encrypts
113 unencrypted form, but on save it always encrypts
114 """
114 """
115 impl = Text
115 impl = Text
116
116
117 def process_bind_param(self, value, dialect):
117 def process_bind_param(self, value, dialect):
118 if not value:
118 if not value:
119 return value
119 return value
120 if value.startswith('enc$aes$') or value.startswith('enc$aes_hmac$'):
120 if value.startswith('enc$aes$') or value.startswith('enc$aes_hmac$'):
121 # protect against double encrypting if someone manually starts
121 # protect against double encrypting if someone manually starts
122 # doing
122 # doing
123 raise ValueError('value needs to be in unencrypted format, ie. '
123 raise ValueError('value needs to be in unencrypted format, ie. '
124 'not starting with enc$aes')
124 'not starting with enc$aes')
125 return 'enc$aes_hmac$%s' % AESCipher(
125 return 'enc$aes_hmac$%s' % AESCipher(
126 ENCRYPTION_KEY, hmac=True).encrypt(value)
126 ENCRYPTION_KEY, hmac=True).encrypt(value)
127
127
128 def process_result_value(self, value, dialect):
128 def process_result_value(self, value, dialect):
129 import rhodecode
129 import rhodecode
130
130
131 if not value:
131 if not value:
132 return value
132 return value
133
133
134 parts = value.split('$', 3)
134 parts = value.split('$', 3)
135 if not len(parts) == 3:
135 if not len(parts) == 3:
136 # probably not encrypted values
136 # probably not encrypted values
137 return value
137 return value
138 else:
138 else:
139 if parts[0] != 'enc':
139 if parts[0] != 'enc':
140 # parts ok but without our header ?
140 # parts ok but without our header ?
141 return value
141 return value
142 enc_strict_mode = str2bool(rhodecode.CONFIG.get(
142 enc_strict_mode = str2bool(rhodecode.CONFIG.get(
143 'rhodecode.encrypted_values.strict') or True)
143 'rhodecode.encrypted_values.strict') or True)
144 # at that stage we know it's our encryption
144 # at that stage we know it's our encryption
145 if parts[1] == 'aes':
145 if parts[1] == 'aes':
146 decrypted_data = AESCipher(ENCRYPTION_KEY).decrypt(parts[2])
146 decrypted_data = AESCipher(ENCRYPTION_KEY).decrypt(parts[2])
147 elif parts[1] == 'aes_hmac':
147 elif parts[1] == 'aes_hmac':
148 decrypted_data = AESCipher(
148 decrypted_data = AESCipher(
149 ENCRYPTION_KEY, hmac=True,
149 ENCRYPTION_KEY, hmac=True,
150 strict_verification=enc_strict_mode).decrypt(parts[2])
150 strict_verification=enc_strict_mode).decrypt(parts[2])
151 else:
151 else:
152 raise ValueError(
152 raise ValueError(
153 'Encryption type part is wrong, must be `aes` '
153 'Encryption type part is wrong, must be `aes` '
154 'or `aes_hmac`, got `%s` instead' % (parts[1]))
154 'or `aes_hmac`, got `%s` instead' % (parts[1]))
155 return decrypted_data
155 return decrypted_data
156
156
157
157
158 class BaseModel(object):
158 class BaseModel(object):
159 """
159 """
160 Base Model for all classes
160 Base Model for all classes
161 """
161 """
162
162
163 @classmethod
163 @classmethod
164 def _get_keys(cls):
164 def _get_keys(cls):
165 """return column names for this model """
165 """return column names for this model """
166 return class_mapper(cls).c.keys()
166 return class_mapper(cls).c.keys()
167
167
168 def get_dict(self):
168 def get_dict(self):
169 """
169 """
170 return dict with keys and values corresponding
170 return dict with keys and values corresponding
171 to this model data """
171 to this model data """
172
172
173 d = {}
173 d = {}
174 for k in self._get_keys():
174 for k in self._get_keys():
175 d[k] = getattr(self, k)
175 d[k] = getattr(self, k)
176
176
177 # also use __json__() if present to get additional fields
177 # also use __json__() if present to get additional fields
178 _json_attr = getattr(self, '__json__', None)
178 _json_attr = getattr(self, '__json__', None)
179 if _json_attr:
179 if _json_attr:
180 # update with attributes from __json__
180 # update with attributes from __json__
181 if callable(_json_attr):
181 if callable(_json_attr):
182 _json_attr = _json_attr()
182 _json_attr = _json_attr()
183 for k, val in _json_attr.iteritems():
183 for k, val in _json_attr.iteritems():
184 d[k] = val
184 d[k] = val
185 return d
185 return d
186
186
187 def get_appstruct(self):
187 def get_appstruct(self):
188 """return list with keys and values tuples corresponding
188 """return list with keys and values tuples corresponding
189 to this model data """
189 to this model data """
190
190
191 l = []
191 l = []
192 for k in self._get_keys():
192 for k in self._get_keys():
193 l.append((k, getattr(self, k),))
193 l.append((k, getattr(self, k),))
194 return l
194 return l
195
195
196 def populate_obj(self, populate_dict):
196 def populate_obj(self, populate_dict):
197 """populate model with data from given populate_dict"""
197 """populate model with data from given populate_dict"""
198
198
199 for k in self._get_keys():
199 for k in self._get_keys():
200 if k in populate_dict:
200 if k in populate_dict:
201 setattr(self, k, populate_dict[k])
201 setattr(self, k, populate_dict[k])
202
202
203 @classmethod
203 @classmethod
204 def query(cls):
204 def query(cls):
205 return Session().query(cls)
205 return Session().query(cls)
206
206
207 @classmethod
207 @classmethod
208 def get(cls, id_):
208 def get(cls, id_):
209 if id_:
209 if id_:
210 return cls.query().get(id_)
210 return cls.query().get(id_)
211
211
212 @classmethod
212 @classmethod
213 def get_or_404(cls, id_):
213 def get_or_404(cls, id_):
214 try:
214 try:
215 id_ = int(id_)
215 id_ = int(id_)
216 except (TypeError, ValueError):
216 except (TypeError, ValueError):
217 raise HTTPNotFound
217 raise HTTPNotFound
218
218
219 res = cls.query().get(id_)
219 res = cls.query().get(id_)
220 if not res:
220 if not res:
221 raise HTTPNotFound
221 raise HTTPNotFound
222 return res
222 return res
223
223
224 @classmethod
224 @classmethod
225 def getAll(cls):
225 def getAll(cls):
226 # deprecated and left for backward compatibility
226 # deprecated and left for backward compatibility
227 return cls.get_all()
227 return cls.get_all()
228
228
229 @classmethod
229 @classmethod
230 def get_all(cls):
230 def get_all(cls):
231 return cls.query().all()
231 return cls.query().all()
232
232
233 @classmethod
233 @classmethod
234 def delete(cls, id_):
234 def delete(cls, id_):
235 obj = cls.query().get(id_)
235 obj = cls.query().get(id_)
236 Session().delete(obj)
236 Session().delete(obj)
237
237
238 @classmethod
238 @classmethod
239 def identity_cache(cls, session, attr_name, value):
239 def identity_cache(cls, session, attr_name, value):
240 exist_in_session = []
240 exist_in_session = []
241 for (item_cls, pkey), instance in session.identity_map.items():
241 for (item_cls, pkey), instance in session.identity_map.items():
242 if cls == item_cls and getattr(instance, attr_name) == value:
242 if cls == item_cls and getattr(instance, attr_name) == value:
243 exist_in_session.append(instance)
243 exist_in_session.append(instance)
244 if exist_in_session:
244 if exist_in_session:
245 if len(exist_in_session) == 1:
245 if len(exist_in_session) == 1:
246 return exist_in_session[0]
246 return exist_in_session[0]
247 log.exception(
247 log.exception(
248 'multiple objects with attr %s and '
248 'multiple objects with attr %s and '
249 'value %s found with same name: %r',
249 'value %s found with same name: %r',
250 attr_name, value, exist_in_session)
250 attr_name, value, exist_in_session)
251
251
252 def __repr__(self):
252 def __repr__(self):
253 if hasattr(self, '__unicode__'):
253 if hasattr(self, '__unicode__'):
254 # python repr needs to return str
254 # python repr needs to return str
255 try:
255 try:
256 return safe_str(self.__unicode__())
256 return safe_str(self.__unicode__())
257 except UnicodeDecodeError:
257 except UnicodeDecodeError:
258 pass
258 pass
259 return '<DB:%s>' % (self.__class__.__name__)
259 return '<DB:%s>' % (self.__class__.__name__)
260
260
261
261
262 class RhodeCodeSetting(Base, BaseModel):
262 class RhodeCodeSetting(Base, BaseModel):
263 __tablename__ = 'rhodecode_settings'
263 __tablename__ = 'rhodecode_settings'
264 __table_args__ = (
264 __table_args__ = (
265 UniqueConstraint('app_settings_name'),
265 UniqueConstraint('app_settings_name'),
266 {'extend_existing': True, 'mysql_engine': 'InnoDB',
266 {'extend_existing': True, 'mysql_engine': 'InnoDB',
267 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
267 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
268 )
268 )
269
269
270 SETTINGS_TYPES = {
270 SETTINGS_TYPES = {
271 'str': safe_str,
271 'str': safe_str,
272 'int': safe_int,
272 'int': safe_int,
273 'unicode': safe_unicode,
273 'unicode': safe_unicode,
274 'bool': str2bool,
274 'bool': str2bool,
275 'list': functools.partial(aslist, sep=',')
275 'list': functools.partial(aslist, sep=',')
276 }
276 }
277 DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions'
277 DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions'
278 GLOBAL_CONF_KEY = 'app_settings'
278 GLOBAL_CONF_KEY = 'app_settings'
279
279
280 app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
280 app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
281 app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None)
281 app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None)
282 _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None)
282 _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None)
283 _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None)
283 _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None)
284
284
285 def __init__(self, key='', val='', type='unicode'):
285 def __init__(self, key='', val='', type='unicode'):
286 self.app_settings_name = key
286 self.app_settings_name = key
287 self.app_settings_type = type
287 self.app_settings_type = type
288 self.app_settings_value = val
288 self.app_settings_value = val
289
289
290 @validates('_app_settings_value')
290 @validates('_app_settings_value')
291 def validate_settings_value(self, key, val):
291 def validate_settings_value(self, key, val):
292 assert type(val) == unicode
292 assert type(val) == unicode
293 return val
293 return val
294
294
295 @hybrid_property
295 @hybrid_property
296 def app_settings_value(self):
296 def app_settings_value(self):
297 v = self._app_settings_value
297 v = self._app_settings_value
298 _type = self.app_settings_type
298 _type = self.app_settings_type
299 if _type:
299 if _type:
300 _type = self.app_settings_type.split('.')[0]
300 _type = self.app_settings_type.split('.')[0]
301 # decode the encrypted value
301 # decode the encrypted value
302 if 'encrypted' in self.app_settings_type:
302 if 'encrypted' in self.app_settings_type:
303 cipher = EncryptedTextValue()
303 cipher = EncryptedTextValue()
304 v = safe_unicode(cipher.process_result_value(v, None))
304 v = safe_unicode(cipher.process_result_value(v, None))
305
305
306 converter = self.SETTINGS_TYPES.get(_type) or \
306 converter = self.SETTINGS_TYPES.get(_type) or \
307 self.SETTINGS_TYPES['unicode']
307 self.SETTINGS_TYPES['unicode']
308 return converter(v)
308 return converter(v)
309
309
310 @app_settings_value.setter
310 @app_settings_value.setter
311 def app_settings_value(self, val):
311 def app_settings_value(self, val):
312 """
312 """
313 Setter that will always make sure we use unicode in app_settings_value
313 Setter that will always make sure we use unicode in app_settings_value
314
314
315 :param val:
315 :param val:
316 """
316 """
317 val = safe_unicode(val)
317 val = safe_unicode(val)
318 # encode the encrypted value
318 # encode the encrypted value
319 if 'encrypted' in self.app_settings_type:
319 if 'encrypted' in self.app_settings_type:
320 cipher = EncryptedTextValue()
320 cipher = EncryptedTextValue()
321 val = safe_unicode(cipher.process_bind_param(val, None))
321 val = safe_unicode(cipher.process_bind_param(val, None))
322 self._app_settings_value = val
322 self._app_settings_value = val
323
323
324 @hybrid_property
324 @hybrid_property
325 def app_settings_type(self):
325 def app_settings_type(self):
326 return self._app_settings_type
326 return self._app_settings_type
327
327
328 @app_settings_type.setter
328 @app_settings_type.setter
329 def app_settings_type(self, val):
329 def app_settings_type(self, val):
330 if val.split('.')[0] not in self.SETTINGS_TYPES:
330 if val.split('.')[0] not in self.SETTINGS_TYPES:
331 raise Exception('type must be one of %s got %s'
331 raise Exception('type must be one of %s got %s'
332 % (self.SETTINGS_TYPES.keys(), val))
332 % (self.SETTINGS_TYPES.keys(), val))
333 self._app_settings_type = val
333 self._app_settings_type = val
334
334
335 def __unicode__(self):
335 def __unicode__(self):
336 return u"<%s('%s:%s[%s]')>" % (
336 return u"<%s('%s:%s[%s]')>" % (
337 self.__class__.__name__,
337 self.__class__.__name__,
338 self.app_settings_name, self.app_settings_value,
338 self.app_settings_name, self.app_settings_value,
339 self.app_settings_type
339 self.app_settings_type
340 )
340 )
341
341
342
342
343 class RhodeCodeUi(Base, BaseModel):
343 class RhodeCodeUi(Base, BaseModel):
344 __tablename__ = 'rhodecode_ui'
344 __tablename__ = 'rhodecode_ui'
345 __table_args__ = (
345 __table_args__ = (
346 UniqueConstraint('ui_key'),
346 UniqueConstraint('ui_key'),
347 {'extend_existing': True, 'mysql_engine': 'InnoDB',
347 {'extend_existing': True, 'mysql_engine': 'InnoDB',
348 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
348 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
349 )
349 )
350
350
351 HOOK_REPO_SIZE = 'changegroup.repo_size'
351 HOOK_REPO_SIZE = 'changegroup.repo_size'
352 # HG
352 # HG
353 HOOK_PRE_PULL = 'preoutgoing.pre_pull'
353 HOOK_PRE_PULL = 'preoutgoing.pre_pull'
354 HOOK_PULL = 'outgoing.pull_logger'
354 HOOK_PULL = 'outgoing.pull_logger'
355 HOOK_PRE_PUSH = 'prechangegroup.pre_push'
355 HOOK_PRE_PUSH = 'prechangegroup.pre_push'
356 HOOK_PUSH = 'changegroup.push_logger'
356 HOOK_PUSH = 'changegroup.push_logger'
357
357
358 # TODO: johbo: Unify way how hooks are configured for git and hg,
358 # TODO: johbo: Unify way how hooks are configured for git and hg,
359 # git part is currently hardcoded.
359 # git part is currently hardcoded.
360
360
361 # SVN PATTERNS
361 # SVN PATTERNS
362 SVN_BRANCH_ID = 'vcs_svn_branch'
362 SVN_BRANCH_ID = 'vcs_svn_branch'
363 SVN_TAG_ID = 'vcs_svn_tag'
363 SVN_TAG_ID = 'vcs_svn_tag'
364
364
365 ui_id = Column(
365 ui_id = Column(
366 "ui_id", Integer(), nullable=False, unique=True, default=None,
366 "ui_id", Integer(), nullable=False, unique=True, default=None,
367 primary_key=True)
367 primary_key=True)
368 ui_section = Column(
368 ui_section = Column(
369 "ui_section", String(255), nullable=True, unique=None, default=None)
369 "ui_section", String(255), nullable=True, unique=None, default=None)
370 ui_key = Column(
370 ui_key = Column(
371 "ui_key", String(255), nullable=True, unique=None, default=None)
371 "ui_key", String(255), nullable=True, unique=None, default=None)
372 ui_value = Column(
372 ui_value = Column(
373 "ui_value", String(255), nullable=True, unique=None, default=None)
373 "ui_value", String(255), nullable=True, unique=None, default=None)
374 ui_active = Column(
374 ui_active = Column(
375 "ui_active", Boolean(), nullable=True, unique=None, default=True)
375 "ui_active", Boolean(), nullable=True, unique=None, default=True)
376
376
377 def __repr__(self):
377 def __repr__(self):
378 return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section,
378 return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section,
379 self.ui_key, self.ui_value)
379 self.ui_key, self.ui_value)
380
380
381
381
382 class RepoRhodeCodeSetting(Base, BaseModel):
382 class RepoRhodeCodeSetting(Base, BaseModel):
383 __tablename__ = 'repo_rhodecode_settings'
383 __tablename__ = 'repo_rhodecode_settings'
384 __table_args__ = (
384 __table_args__ = (
385 UniqueConstraint(
385 UniqueConstraint(
386 'app_settings_name', 'repository_id',
386 'app_settings_name', 'repository_id',
387 name='uq_repo_rhodecode_setting_name_repo_id'),
387 name='uq_repo_rhodecode_setting_name_repo_id'),
388 {'extend_existing': True, 'mysql_engine': 'InnoDB',
388 {'extend_existing': True, 'mysql_engine': 'InnoDB',
389 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
389 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
390 )
390 )
391
391
392 repository_id = Column(
392 repository_id = Column(
393 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
393 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
394 nullable=False)
394 nullable=False)
395 app_settings_id = Column(
395 app_settings_id = Column(
396 "app_settings_id", Integer(), nullable=False, unique=True,
396 "app_settings_id", Integer(), nullable=False, unique=True,
397 default=None, primary_key=True)
397 default=None, primary_key=True)
398 app_settings_name = Column(
398 app_settings_name = Column(
399 "app_settings_name", String(255), nullable=True, unique=None,
399 "app_settings_name", String(255), nullable=True, unique=None,
400 default=None)
400 default=None)
401 _app_settings_value = Column(
401 _app_settings_value = Column(
402 "app_settings_value", String(4096), nullable=True, unique=None,
402 "app_settings_value", String(4096), nullable=True, unique=None,
403 default=None)
403 default=None)
404 _app_settings_type = Column(
404 _app_settings_type = Column(
405 "app_settings_type", String(255), nullable=True, unique=None,
405 "app_settings_type", String(255), nullable=True, unique=None,
406 default=None)
406 default=None)
407
407
408 repository = relationship('Repository')
408 repository = relationship('Repository')
409
409
410 def __init__(self, repository_id, key='', val='', type='unicode'):
410 def __init__(self, repository_id, key='', val='', type='unicode'):
411 self.repository_id = repository_id
411 self.repository_id = repository_id
412 self.app_settings_name = key
412 self.app_settings_name = key
413 self.app_settings_type = type
413 self.app_settings_type = type
414 self.app_settings_value = val
414 self.app_settings_value = val
415
415
416 @validates('_app_settings_value')
416 @validates('_app_settings_value')
417 def validate_settings_value(self, key, val):
417 def validate_settings_value(self, key, val):
418 assert type(val) == unicode
418 assert type(val) == unicode
419 return val
419 return val
420
420
421 @hybrid_property
421 @hybrid_property
422 def app_settings_value(self):
422 def app_settings_value(self):
423 v = self._app_settings_value
423 v = self._app_settings_value
424 type_ = self.app_settings_type
424 type_ = self.app_settings_type
425 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
425 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
426 converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode']
426 converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode']
427 return converter(v)
427 return converter(v)
428
428
429 @app_settings_value.setter
429 @app_settings_value.setter
430 def app_settings_value(self, val):
430 def app_settings_value(self, val):
431 """
431 """
432 Setter that will always make sure we use unicode in app_settings_value
432 Setter that will always make sure we use unicode in app_settings_value
433
433
434 :param val:
434 :param val:
435 """
435 """
436 self._app_settings_value = safe_unicode(val)
436 self._app_settings_value = safe_unicode(val)
437
437
438 @hybrid_property
438 @hybrid_property
439 def app_settings_type(self):
439 def app_settings_type(self):
440 return self._app_settings_type
440 return self._app_settings_type
441
441
442 @app_settings_type.setter
442 @app_settings_type.setter
443 def app_settings_type(self, val):
443 def app_settings_type(self, val):
444 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
444 SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES
445 if val not in SETTINGS_TYPES:
445 if val not in SETTINGS_TYPES:
446 raise Exception('type must be one of %s got %s'
446 raise Exception('type must be one of %s got %s'
447 % (SETTINGS_TYPES.keys(), val))
447 % (SETTINGS_TYPES.keys(), val))
448 self._app_settings_type = val
448 self._app_settings_type = val
449
449
450 def __unicode__(self):
450 def __unicode__(self):
451 return u"<%s('%s:%s:%s[%s]')>" % (
451 return u"<%s('%s:%s:%s[%s]')>" % (
452 self.__class__.__name__, self.repository.repo_name,
452 self.__class__.__name__, self.repository.repo_name,
453 self.app_settings_name, self.app_settings_value,
453 self.app_settings_name, self.app_settings_value,
454 self.app_settings_type
454 self.app_settings_type
455 )
455 )
456
456
457
457
458 class RepoRhodeCodeUi(Base, BaseModel):
458 class RepoRhodeCodeUi(Base, BaseModel):
459 __tablename__ = 'repo_rhodecode_ui'
459 __tablename__ = 'repo_rhodecode_ui'
460 __table_args__ = (
460 __table_args__ = (
461 UniqueConstraint(
461 UniqueConstraint(
462 'repository_id', 'ui_section', 'ui_key',
462 'repository_id', 'ui_section', 'ui_key',
463 name='uq_repo_rhodecode_ui_repository_id_section_key'),
463 name='uq_repo_rhodecode_ui_repository_id_section_key'),
464 {'extend_existing': True, 'mysql_engine': 'InnoDB',
464 {'extend_existing': True, 'mysql_engine': 'InnoDB',
465 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
465 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
466 )
466 )
467
467
468 repository_id = Column(
468 repository_id = Column(
469 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
469 "repository_id", Integer(), ForeignKey('repositories.repo_id'),
470 nullable=False)
470 nullable=False)
471 ui_id = Column(
471 ui_id = Column(
472 "ui_id", Integer(), nullable=False, unique=True, default=None,
472 "ui_id", Integer(), nullable=False, unique=True, default=None,
473 primary_key=True)
473 primary_key=True)
474 ui_section = Column(
474 ui_section = Column(
475 "ui_section", String(255), nullable=True, unique=None, default=None)
475 "ui_section", String(255), nullable=True, unique=None, default=None)
476 ui_key = Column(
476 ui_key = Column(
477 "ui_key", String(255), nullable=True, unique=None, default=None)
477 "ui_key", String(255), nullable=True, unique=None, default=None)
478 ui_value = Column(
478 ui_value = Column(
479 "ui_value", String(255), nullable=True, unique=None, default=None)
479 "ui_value", String(255), nullable=True, unique=None, default=None)
480 ui_active = Column(
480 ui_active = Column(
481 "ui_active", Boolean(), nullable=True, unique=None, default=True)
481 "ui_active", Boolean(), nullable=True, unique=None, default=True)
482
482
483 repository = relationship('Repository')
483 repository = relationship('Repository')
484
484
485 def __repr__(self):
485 def __repr__(self):
486 return '<%s[%s:%s]%s=>%s]>' % (
486 return '<%s[%s:%s]%s=>%s]>' % (
487 self.__class__.__name__, self.repository.repo_name,
487 self.__class__.__name__, self.repository.repo_name,
488 self.ui_section, self.ui_key, self.ui_value)
488 self.ui_section, self.ui_key, self.ui_value)
489
489
490
490
491 class User(Base, BaseModel):
491 class User(Base, BaseModel):
492 __tablename__ = 'users'
492 __tablename__ = 'users'
493 __table_args__ = (
493 __table_args__ = (
494 UniqueConstraint('username'), UniqueConstraint('email'),
494 UniqueConstraint('username'), UniqueConstraint('email'),
495 Index('u_username_idx', 'username'),
495 Index('u_username_idx', 'username'),
496 Index('u_email_idx', 'email'),
496 Index('u_email_idx', 'email'),
497 {'extend_existing': True, 'mysql_engine': 'InnoDB',
497 {'extend_existing': True, 'mysql_engine': 'InnoDB',
498 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
498 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
499 )
499 )
500 DEFAULT_USER = 'default'
500 DEFAULT_USER = 'default'
501 DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org'
501 DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org'
502 DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}'
502 DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}'
503
503
504 user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
504 user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
505 username = Column("username", String(255), nullable=True, unique=None, default=None)
505 username = Column("username", String(255), nullable=True, unique=None, default=None)
506 password = Column("password", String(255), nullable=True, unique=None, default=None)
506 password = Column("password", String(255), nullable=True, unique=None, default=None)
507 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
507 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
508 admin = Column("admin", Boolean(), nullable=True, unique=None, default=False)
508 admin = Column("admin", Boolean(), nullable=True, unique=None, default=False)
509 name = Column("firstname", String(255), nullable=True, unique=None, default=None)
509 name = Column("firstname", String(255), nullable=True, unique=None, default=None)
510 lastname = Column("lastname", String(255), nullable=True, unique=None, default=None)
510 lastname = Column("lastname", String(255), nullable=True, unique=None, default=None)
511 _email = Column("email", String(255), nullable=True, unique=None, default=None)
511 _email = Column("email", String(255), nullable=True, unique=None, default=None)
512 last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None)
512 last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None)
513 extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None)
513 extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None)
514 extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None)
514 extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None)
515 api_key = Column("api_key", String(255), nullable=True, unique=None, default=None)
515 api_key = Column("api_key", String(255), nullable=True, unique=None, default=None)
516 inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
516 inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
517 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
517 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
518 _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data
518 _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data
519
519
520 user_log = relationship('UserLog')
520 user_log = relationship('UserLog')
521 user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all')
521 user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all')
522
522
523 repositories = relationship('Repository')
523 repositories = relationship('Repository')
524 repository_groups = relationship('RepoGroup')
524 repository_groups = relationship('RepoGroup')
525 user_groups = relationship('UserGroup')
525 user_groups = relationship('UserGroup')
526
526
527 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
527 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
528 followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all')
528 followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all')
529
529
530 repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all')
530 repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all')
531 repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all')
531 repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all')
532 user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all')
532 user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all')
533
533
534 group_member = relationship('UserGroupMember', cascade='all')
534 group_member = relationship('UserGroupMember', cascade='all')
535
535
536 notifications = relationship('UserNotification', cascade='all')
536 notifications = relationship('UserNotification', cascade='all')
537 # notifications assigned to this user
537 # notifications assigned to this user
538 user_created_notifications = relationship('Notification', cascade='all')
538 user_created_notifications = relationship('Notification', cascade='all')
539 # comments created by this user
539 # comments created by this user
540 user_comments = relationship('ChangesetComment', cascade='all')
540 user_comments = relationship('ChangesetComment', cascade='all')
541 # user profile extra info
541 # user profile extra info
542 user_emails = relationship('UserEmailMap', cascade='all')
542 user_emails = relationship('UserEmailMap', cascade='all')
543 user_ip_map = relationship('UserIpMap', cascade='all')
543 user_ip_map = relationship('UserIpMap', cascade='all')
544 user_auth_tokens = relationship('UserApiKeys', cascade='all')
544 user_auth_tokens = relationship('UserApiKeys', cascade='all')
545 # gists
545 # gists
546 user_gists = relationship('Gist', cascade='all')
546 user_gists = relationship('Gist', cascade='all')
547 # user pull requests
547 # user pull requests
548 user_pull_requests = relationship('PullRequest', cascade='all')
548 user_pull_requests = relationship('PullRequest', cascade='all')
549 # external identities
549 # external identities
550 extenal_identities = relationship(
550 extenal_identities = relationship(
551 'ExternalIdentity',
551 'ExternalIdentity',
552 primaryjoin="User.user_id==ExternalIdentity.local_user_id",
552 primaryjoin="User.user_id==ExternalIdentity.local_user_id",
553 cascade='all')
553 cascade='all')
554
554
555 def __unicode__(self):
555 def __unicode__(self):
556 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
556 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
557 self.user_id, self.username)
557 self.user_id, self.username)
558
558
559 @hybrid_property
559 @hybrid_property
560 def email(self):
560 def email(self):
561 return self._email
561 return self._email
562
562
563 @email.setter
563 @email.setter
564 def email(self, val):
564 def email(self, val):
565 self._email = val.lower() if val else None
565 self._email = val.lower() if val else None
566
566
567 @property
567 @property
568 def firstname(self):
568 def firstname(self):
569 # alias for future
569 # alias for future
570 return self.name
570 return self.name
571
571
572 @property
572 @property
573 def emails(self):
573 def emails(self):
574 other = UserEmailMap.query().filter(UserEmailMap.user==self).all()
574 other = UserEmailMap.query().filter(UserEmailMap.user==self).all()
575 return [self.email] + [x.email for x in other]
575 return [self.email] + [x.email for x in other]
576
576
577 @property
577 @property
578 def auth_tokens(self):
578 def auth_tokens(self):
579 return [self.api_key] + [x.api_key for x in self.extra_auth_tokens]
579 return [self.api_key] + [x.api_key for x in self.extra_auth_tokens]
580
580
581 @property
581 @property
582 def extra_auth_tokens(self):
582 def extra_auth_tokens(self):
583 return UserApiKeys.query().filter(UserApiKeys.user == self).all()
583 return UserApiKeys.query().filter(UserApiKeys.user == self).all()
584
584
585 @property
585 @property
586 def feed_token(self):
586 def feed_token(self):
587 feed_tokens = UserApiKeys.query()\
587 feed_tokens = UserApiKeys.query()\
588 .filter(UserApiKeys.user == self)\
588 .filter(UserApiKeys.user == self)\
589 .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)\
589 .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)\
590 .all()
590 .all()
591 if feed_tokens:
591 if feed_tokens:
592 return feed_tokens[0].api_key
592 return feed_tokens[0].api_key
593 else:
593 else:
594 # use the main token so we don't end up with nothing...
594 # use the main token so we don't end up with nothing...
595 return self.api_key
595 return self.api_key
596
596
597 @classmethod
597 @classmethod
598 def extra_valid_auth_tokens(cls, user, role=None):
598 def extra_valid_auth_tokens(cls, user, role=None):
599 tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\
599 tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\
600 .filter(or_(UserApiKeys.expires == -1,
600 .filter(or_(UserApiKeys.expires == -1,
601 UserApiKeys.expires >= time.time()))
601 UserApiKeys.expires >= time.time()))
602 if role:
602 if role:
603 tokens = tokens.filter(or_(UserApiKeys.role == role,
603 tokens = tokens.filter(or_(UserApiKeys.role == role,
604 UserApiKeys.role == UserApiKeys.ROLE_ALL))
604 UserApiKeys.role == UserApiKeys.ROLE_ALL))
605 return tokens.all()
605 return tokens.all()
606
606
607 @property
607 @property
608 def ip_addresses(self):
608 def ip_addresses(self):
609 ret = UserIpMap.query().filter(UserIpMap.user == self).all()
609 ret = UserIpMap.query().filter(UserIpMap.user == self).all()
610 return [x.ip_addr for x in ret]
610 return [x.ip_addr for x in ret]
611
611
612 @property
612 @property
613 def username_and_name(self):
613 def username_and_name(self):
614 return '%s (%s %s)' % (self.username, self.firstname, self.lastname)
614 return '%s (%s %s)' % (self.username, self.firstname, self.lastname)
615
615
616 @property
616 @property
617 def username_or_name_or_email(self):
617 def username_or_name_or_email(self):
618 full_name = self.full_name if self.full_name is not ' ' else None
618 full_name = self.full_name if self.full_name is not ' ' else None
619 return self.username or full_name or self.email
619 return self.username or full_name or self.email
620
620
621 @property
621 @property
622 def full_name(self):
622 def full_name(self):
623 return '%s %s' % (self.firstname, self.lastname)
623 return '%s %s' % (self.firstname, self.lastname)
624
624
625 @property
625 @property
626 def full_name_or_username(self):
626 def full_name_or_username(self):
627 return ('%s %s' % (self.firstname, self.lastname)
627 return ('%s %s' % (self.firstname, self.lastname)
628 if (self.firstname and self.lastname) else self.username)
628 if (self.firstname and self.lastname) else self.username)
629
629
630 @property
630 @property
631 def full_contact(self):
631 def full_contact(self):
632 return '%s %s <%s>' % (self.firstname, self.lastname, self.email)
632 return '%s %s <%s>' % (self.firstname, self.lastname, self.email)
633
633
634 @property
634 @property
635 def short_contact(self):
635 def short_contact(self):
636 return '%s %s' % (self.firstname, self.lastname)
636 return '%s %s' % (self.firstname, self.lastname)
637
637
638 @property
638 @property
639 def is_admin(self):
639 def is_admin(self):
640 return self.admin
640 return self.admin
641
641
642 @property
642 @property
643 def AuthUser(self):
643 def AuthUser(self):
644 """
644 """
645 Returns instance of AuthUser for this user
645 Returns instance of AuthUser for this user
646 """
646 """
647 from rhodecode.lib.auth import AuthUser
647 from rhodecode.lib.auth import AuthUser
648 return AuthUser(user_id=self.user_id, api_key=self.api_key,
648 return AuthUser(user_id=self.user_id, api_key=self.api_key,
649 username=self.username)
649 username=self.username)
650
650
651 @hybrid_property
651 @hybrid_property
652 def user_data(self):
652 def user_data(self):
653 if not self._user_data:
653 if not self._user_data:
654 return {}
654 return {}
655
655
656 try:
656 try:
657 return json.loads(self._user_data)
657 return json.loads(self._user_data)
658 except TypeError:
658 except TypeError:
659 return {}
659 return {}
660
660
661 @user_data.setter
661 @user_data.setter
662 def user_data(self, val):
662 def user_data(self, val):
663 if not isinstance(val, dict):
663 if not isinstance(val, dict):
664 raise Exception('user_data must be dict, got %s' % type(val))
664 raise Exception('user_data must be dict, got %s' % type(val))
665 try:
665 try:
666 self._user_data = json.dumps(val)
666 self._user_data = json.dumps(val)
667 except Exception:
667 except Exception:
668 log.error(traceback.format_exc())
668 log.error(traceback.format_exc())
669
669
670 @classmethod
670 @classmethod
671 def get_by_username(cls, username, case_insensitive=False,
671 def get_by_username(cls, username, case_insensitive=False,
672 cache=False, identity_cache=False):
672 cache=False, identity_cache=False):
673 session = Session()
673 session = Session()
674
674
675 if case_insensitive:
675 if case_insensitive:
676 q = cls.query().filter(
676 q = cls.query().filter(
677 func.lower(cls.username) == func.lower(username))
677 func.lower(cls.username) == func.lower(username))
678 else:
678 else:
679 q = cls.query().filter(cls.username == username)
679 q = cls.query().filter(cls.username == username)
680
680
681 if cache:
681 if cache:
682 if identity_cache:
682 if identity_cache:
683 val = cls.identity_cache(session, 'username', username)
683 val = cls.identity_cache(session, 'username', username)
684 if val:
684 if val:
685 return val
685 return val
686 else:
686 else:
687 q = q.options(
687 q = q.options(
688 FromCache("sql_cache_short",
688 FromCache("sql_cache_short",
689 "get_user_by_name_%s" % _hash_key(username)))
689 "get_user_by_name_%s" % _hash_key(username)))
690
690
691 return q.scalar()
691 return q.scalar()
692
692
693 @classmethod
693 @classmethod
694 def get_by_auth_token(cls, auth_token, cache=False, fallback=True):
694 def get_by_auth_token(cls, auth_token, cache=False, fallback=True):
695 q = cls.query().filter(cls.api_key == auth_token)
695 q = cls.query().filter(cls.api_key == auth_token)
696
696
697 if cache:
697 if cache:
698 q = q.options(FromCache("sql_cache_short",
698 q = q.options(FromCache("sql_cache_short",
699 "get_auth_token_%s" % auth_token))
699 "get_auth_token_%s" % auth_token))
700 res = q.scalar()
700 res = q.scalar()
701
701
702 if fallback and not res:
702 if fallback and not res:
703 #fallback to additional keys
703 #fallback to additional keys
704 _res = UserApiKeys.query()\
704 _res = UserApiKeys.query()\
705 .filter(UserApiKeys.api_key == auth_token)\
705 .filter(UserApiKeys.api_key == auth_token)\
706 .filter(or_(UserApiKeys.expires == -1,
706 .filter(or_(UserApiKeys.expires == -1,
707 UserApiKeys.expires >= time.time()))\
707 UserApiKeys.expires >= time.time()))\
708 .first()
708 .first()
709 if _res:
709 if _res:
710 res = _res.user
710 res = _res.user
711 return res
711 return res
712
712
713 @classmethod
713 @classmethod
714 def get_by_email(cls, email, case_insensitive=False, cache=False):
714 def get_by_email(cls, email, case_insensitive=False, cache=False):
715
715
716 if case_insensitive:
716 if case_insensitive:
717 q = cls.query().filter(func.lower(cls.email) == func.lower(email))
717 q = cls.query().filter(func.lower(cls.email) == func.lower(email))
718
718
719 else:
719 else:
720 q = cls.query().filter(cls.email == email)
720 q = cls.query().filter(cls.email == email)
721
721
722 if cache:
722 if cache:
723 q = q.options(FromCache("sql_cache_short",
723 q = q.options(FromCache("sql_cache_short",
724 "get_email_key_%s" % _hash_key(email)))
724 "get_email_key_%s" % _hash_key(email)))
725
725
726 ret = q.scalar()
726 ret = q.scalar()
727 if ret is None:
727 if ret is None:
728 q = UserEmailMap.query()
728 q = UserEmailMap.query()
729 # try fetching in alternate email map
729 # try fetching in alternate email map
730 if case_insensitive:
730 if case_insensitive:
731 q = q.filter(func.lower(UserEmailMap.email) == func.lower(email))
731 q = q.filter(func.lower(UserEmailMap.email) == func.lower(email))
732 else:
732 else:
733 q = q.filter(UserEmailMap.email == email)
733 q = q.filter(UserEmailMap.email == email)
734 q = q.options(joinedload(UserEmailMap.user))
734 q = q.options(joinedload(UserEmailMap.user))
735 if cache:
735 if cache:
736 q = q.options(FromCache("sql_cache_short",
736 q = q.options(FromCache("sql_cache_short",
737 "get_email_map_key_%s" % email))
737 "get_email_map_key_%s" % email))
738 ret = getattr(q.scalar(), 'user', None)
738 ret = getattr(q.scalar(), 'user', None)
739
739
740 return ret
740 return ret
741
741
742 @classmethod
742 @classmethod
743 def get_from_cs_author(cls, author):
743 def get_from_cs_author(cls, author):
744 """
744 """
745 Tries to get User objects out of commit author string
745 Tries to get User objects out of commit author string
746
746
747 :param author:
747 :param author:
748 """
748 """
749 from rhodecode.lib.helpers import email, author_name
749 from rhodecode.lib.helpers import email, author_name
750 # Valid email in the attribute passed, see if they're in the system
750 # Valid email in the attribute passed, see if they're in the system
751 _email = email(author)
751 _email = email(author)
752 if _email:
752 if _email:
753 user = cls.get_by_email(_email, case_insensitive=True)
753 user = cls.get_by_email(_email, case_insensitive=True)
754 if user:
754 if user:
755 return user
755 return user
756 # Maybe we can match by username?
756 # Maybe we can match by username?
757 _author = author_name(author)
757 _author = author_name(author)
758 user = cls.get_by_username(_author, case_insensitive=True)
758 user = cls.get_by_username(_author, case_insensitive=True)
759 if user:
759 if user:
760 return user
760 return user
761
761
762 def update_userdata(self, **kwargs):
762 def update_userdata(self, **kwargs):
763 usr = self
763 usr = self
764 old = usr.user_data
764 old = usr.user_data
765 old.update(**kwargs)
765 old.update(**kwargs)
766 usr.user_data = old
766 usr.user_data = old
767 Session().add(usr)
767 Session().add(usr)
768 log.debug('updated userdata with ', kwargs)
768 log.debug('updated userdata with ', kwargs)
769
769
770 def update_lastlogin(self):
770 def update_lastlogin(self):
771 """Update user lastlogin"""
771 """Update user lastlogin"""
772 self.last_login = datetime.datetime.now()
772 self.last_login = datetime.datetime.now()
773 Session().add(self)
773 Session().add(self)
774 log.debug('updated user %s lastlogin', self.username)
774 log.debug('updated user %s lastlogin', self.username)
775
775
776 def update_lastactivity(self):
776 def update_lastactivity(self):
777 """Update user lastactivity"""
777 """Update user lastactivity"""
778 usr = self
778 usr = self
779 old = usr.user_data
779 old = usr.user_data
780 old.update({'last_activity': time.time()})
780 old.update({'last_activity': time.time()})
781 usr.user_data = old
781 usr.user_data = old
782 Session().add(usr)
782 Session().add(usr)
783 log.debug('updated user %s lastactivity', usr.username)
783 log.debug('updated user %s lastactivity', usr.username)
784
784
785 def update_password(self, new_password, change_api_key=False):
785 def update_password(self, new_password, change_api_key=False):
786 from rhodecode.lib.auth import get_crypt_password,generate_auth_token
786 from rhodecode.lib.auth import get_crypt_password,generate_auth_token
787
787
788 self.password = get_crypt_password(new_password)
788 self.password = get_crypt_password(new_password)
789 if change_api_key:
789 if change_api_key:
790 self.api_key = generate_auth_token(self.username)
790 self.api_key = generate_auth_token(self.username)
791 Session().add(self)
791 Session().add(self)
792
792
793 @classmethod
793 @classmethod
794 def get_first_super_admin(cls):
794 def get_first_super_admin(cls):
795 user = User.query().filter(User.admin == true()).first()
795 user = User.query().filter(User.admin == true()).first()
796 if user is None:
796 if user is None:
797 raise Exception('FATAL: Missing administrative account!')
797 raise Exception('FATAL: Missing administrative account!')
798 return user
798 return user
799
799
800 @classmethod
800 @classmethod
801 def get_all_super_admins(cls):
801 def get_all_super_admins(cls):
802 """
802 """
803 Returns all admin accounts sorted by username
803 Returns all admin accounts sorted by username
804 """
804 """
805 return User.query().filter(User.admin == true())\
805 return User.query().filter(User.admin == true())\
806 .order_by(User.username.asc()).all()
806 .order_by(User.username.asc()).all()
807
807
808 @classmethod
808 @classmethod
809 def get_default_user(cls, cache=False):
809 def get_default_user(cls, cache=False):
810 user = User.get_by_username(User.DEFAULT_USER, cache=cache)
810 user = User.get_by_username(User.DEFAULT_USER, cache=cache)
811 if user is None:
811 if user is None:
812 raise Exception('FATAL: Missing default account!')
812 raise Exception('FATAL: Missing default account!')
813 return user
813 return user
814
814
815 def _get_default_perms(self, user, suffix=''):
815 def _get_default_perms(self, user, suffix=''):
816 from rhodecode.model.permission import PermissionModel
816 from rhodecode.model.permission import PermissionModel
817 return PermissionModel().get_default_perms(user.user_perms, suffix)
817 return PermissionModel().get_default_perms(user.user_perms, suffix)
818
818
819 def get_default_perms(self, suffix=''):
819 def get_default_perms(self, suffix=''):
820 return self._get_default_perms(self, suffix)
820 return self._get_default_perms(self, suffix)
821
821
822 def get_api_data(self, include_secrets=False, details='full'):
822 def get_api_data(self, include_secrets=False, details='full'):
823 """
823 """
824 Common function for generating user related data for API
824 Common function for generating user related data for API
825
825
826 :param include_secrets: By default secrets in the API data will be replaced
826 :param include_secrets: By default secrets in the API data will be replaced
827 by a placeholder value to prevent exposing this data by accident. In case
827 by a placeholder value to prevent exposing this data by accident. In case
828 this data shall be exposed, set this flag to ``True``.
828 this data shall be exposed, set this flag to ``True``.
829
829
830 :param details: details can be 'basic|full' basic gives only a subset of
830 :param details: details can be 'basic|full' basic gives only a subset of
831 the available user information that includes user_id, name and emails.
831 the available user information that includes user_id, name and emails.
832 """
832 """
833 user = self
833 user = self
834 user_data = self.user_data
834 user_data = self.user_data
835 data = {
835 data = {
836 'user_id': user.user_id,
836 'user_id': user.user_id,
837 'username': user.username,
837 'username': user.username,
838 'firstname': user.name,
838 'firstname': user.name,
839 'lastname': user.lastname,
839 'lastname': user.lastname,
840 'email': user.email,
840 'email': user.email,
841 'emails': user.emails,
841 'emails': user.emails,
842 }
842 }
843 if details == 'basic':
843 if details == 'basic':
844 return data
844 return data
845
845
846 api_key_length = 40
846 api_key_length = 40
847 api_key_replacement = '*' * api_key_length
847 api_key_replacement = '*' * api_key_length
848
848
849 extras = {
849 extras = {
850 'api_key': api_key_replacement,
850 'api_key': api_key_replacement,
851 'api_keys': [api_key_replacement],
851 'api_keys': [api_key_replacement],
852 'active': user.active,
852 'active': user.active,
853 'admin': user.admin,
853 'admin': user.admin,
854 'extern_type': user.extern_type,
854 'extern_type': user.extern_type,
855 'extern_name': user.extern_name,
855 'extern_name': user.extern_name,
856 'last_login': user.last_login,
856 'last_login': user.last_login,
857 'ip_addresses': user.ip_addresses,
857 'ip_addresses': user.ip_addresses,
858 'language': user_data.get('language')
858 'language': user_data.get('language')
859 }
859 }
860 data.update(extras)
860 data.update(extras)
861
861
862 if include_secrets:
862 if include_secrets:
863 data['api_key'] = user.api_key
863 data['api_key'] = user.api_key
864 data['api_keys'] = user.auth_tokens
864 data['api_keys'] = user.auth_tokens
865 return data
865 return data
866
866
867 def __json__(self):
867 def __json__(self):
868 data = {
868 data = {
869 'full_name': self.full_name,
869 'full_name': self.full_name,
870 'full_name_or_username': self.full_name_or_username,
870 'full_name_or_username': self.full_name_or_username,
871 'short_contact': self.short_contact,
871 'short_contact': self.short_contact,
872 'full_contact': self.full_contact,
872 'full_contact': self.full_contact,
873 }
873 }
874 data.update(self.get_api_data())
874 data.update(self.get_api_data())
875 return data
875 return data
876
876
877
877
878 class UserApiKeys(Base, BaseModel):
878 class UserApiKeys(Base, BaseModel):
879 __tablename__ = 'user_api_keys'
879 __tablename__ = 'user_api_keys'
880 __table_args__ = (
880 __table_args__ = (
881 Index('uak_api_key_idx', 'api_key'),
881 Index('uak_api_key_idx', 'api_key'),
882 Index('uak_api_key_expires_idx', 'api_key', 'expires'),
882 Index('uak_api_key_expires_idx', 'api_key', 'expires'),
883 UniqueConstraint('api_key'),
883 UniqueConstraint('api_key'),
884 {'extend_existing': True, 'mysql_engine': 'InnoDB',
884 {'extend_existing': True, 'mysql_engine': 'InnoDB',
885 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
885 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
886 )
886 )
887 __mapper_args__ = {}
887 __mapper_args__ = {}
888
888
889 # ApiKey role
889 # ApiKey role
890 ROLE_ALL = 'token_role_all'
890 ROLE_ALL = 'token_role_all'
891 ROLE_HTTP = 'token_role_http'
891 ROLE_HTTP = 'token_role_http'
892 ROLE_VCS = 'token_role_vcs'
892 ROLE_VCS = 'token_role_vcs'
893 ROLE_API = 'token_role_api'
893 ROLE_API = 'token_role_api'
894 ROLE_FEED = 'token_role_feed'
894 ROLE_FEED = 'token_role_feed'
895 ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED]
895 ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED]
896
896
897 user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
897 user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
898 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
898 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
899 api_key = Column("api_key", String(255), nullable=False, unique=True)
899 api_key = Column("api_key", String(255), nullable=False, unique=True)
900 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
900 description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
901 expires = Column('expires', Float(53), nullable=False)
901 expires = Column('expires', Float(53), nullable=False)
902 role = Column('role', String(255), nullable=True)
902 role = Column('role', String(255), nullable=True)
903 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
903 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
904
904
905 user = relationship('User', lazy='joined')
905 user = relationship('User', lazy='joined')
906
906
907 @classmethod
907 @classmethod
908 def _get_role_name(cls, role):
908 def _get_role_name(cls, role):
909 return {
909 return {
910 cls.ROLE_ALL: _('all'),
910 cls.ROLE_ALL: _('all'),
911 cls.ROLE_HTTP: _('http/web interface'),
911 cls.ROLE_HTTP: _('http/web interface'),
912 cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'),
912 cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'),
913 cls.ROLE_API: _('api calls'),
913 cls.ROLE_API: _('api calls'),
914 cls.ROLE_FEED: _('feed access'),
914 cls.ROLE_FEED: _('feed access'),
915 }.get(role, role)
915 }.get(role, role)
916
916
917 @property
917 @property
918 def expired(self):
918 def expired(self):
919 if self.expires == -1:
919 if self.expires == -1:
920 return False
920 return False
921 return time.time() > self.expires
921 return time.time() > self.expires
922
922
923 @property
923 @property
924 def role_humanized(self):
924 def role_humanized(self):
925 return self._get_role_name(self.role)
925 return self._get_role_name(self.role)
926
926
927
927
928 class UserEmailMap(Base, BaseModel):
928 class UserEmailMap(Base, BaseModel):
929 __tablename__ = 'user_email_map'
929 __tablename__ = 'user_email_map'
930 __table_args__ = (
930 __table_args__ = (
931 Index('uem_email_idx', 'email'),
931 Index('uem_email_idx', 'email'),
932 UniqueConstraint('email'),
932 UniqueConstraint('email'),
933 {'extend_existing': True, 'mysql_engine': 'InnoDB',
933 {'extend_existing': True, 'mysql_engine': 'InnoDB',
934 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
934 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
935 )
935 )
936 __mapper_args__ = {}
936 __mapper_args__ = {}
937
937
938 email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
938 email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
939 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
939 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
940 _email = Column("email", String(255), nullable=True, unique=False, default=None)
940 _email = Column("email", String(255), nullable=True, unique=False, default=None)
941 user = relationship('User', lazy='joined')
941 user = relationship('User', lazy='joined')
942
942
943 @validates('_email')
943 @validates('_email')
944 def validate_email(self, key, email):
944 def validate_email(self, key, email):
945 # check if this email is not main one
945 # check if this email is not main one
946 main_email = Session().query(User).filter(User.email == email).scalar()
946 main_email = Session().query(User).filter(User.email == email).scalar()
947 if main_email is not None:
947 if main_email is not None:
948 raise AttributeError('email %s is present is user table' % email)
948 raise AttributeError('email %s is present is user table' % email)
949 return email
949 return email
950
950
951 @hybrid_property
951 @hybrid_property
952 def email(self):
952 def email(self):
953 return self._email
953 return self._email
954
954
955 @email.setter
955 @email.setter
956 def email(self, val):
956 def email(self, val):
957 self._email = val.lower() if val else None
957 self._email = val.lower() if val else None
958
958
959
959
960 class UserIpMap(Base, BaseModel):
960 class UserIpMap(Base, BaseModel):
961 __tablename__ = 'user_ip_map'
961 __tablename__ = 'user_ip_map'
962 __table_args__ = (
962 __table_args__ = (
963 UniqueConstraint('user_id', 'ip_addr'),
963 UniqueConstraint('user_id', 'ip_addr'),
964 {'extend_existing': True, 'mysql_engine': 'InnoDB',
964 {'extend_existing': True, 'mysql_engine': 'InnoDB',
965 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
965 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
966 )
966 )
967 __mapper_args__ = {}
967 __mapper_args__ = {}
968
968
969 ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
969 ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
970 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
970 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
971 ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None)
971 ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None)
972 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
972 active = Column("active", Boolean(), nullable=True, unique=None, default=True)
973 description = Column("description", String(10000), nullable=True, unique=None, default=None)
973 description = Column("description", String(10000), nullable=True, unique=None, default=None)
974 user = relationship('User', lazy='joined')
974 user = relationship('User', lazy='joined')
975
975
976 @classmethod
976 @classmethod
977 def _get_ip_range(cls, ip_addr):
977 def _get_ip_range(cls, ip_addr):
978 net = ipaddress.ip_network(ip_addr, strict=False)
978 net = ipaddress.ip_network(ip_addr, strict=False)
979 return [str(net.network_address), str(net.broadcast_address)]
979 return [str(net.network_address), str(net.broadcast_address)]
980
980
981 def __json__(self):
981 def __json__(self):
982 return {
982 return {
983 'ip_addr': self.ip_addr,
983 'ip_addr': self.ip_addr,
984 'ip_range': self._get_ip_range(self.ip_addr),
984 'ip_range': self._get_ip_range(self.ip_addr),
985 }
985 }
986
986
987 def __unicode__(self):
987 def __unicode__(self):
988 return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__,
988 return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__,
989 self.user_id, self.ip_addr)
989 self.user_id, self.ip_addr)
990
990
991 class UserLog(Base, BaseModel):
991 class UserLog(Base, BaseModel):
992 __tablename__ = 'user_logs'
992 __tablename__ = 'user_logs'
993 __table_args__ = (
993 __table_args__ = (
994 {'extend_existing': True, 'mysql_engine': 'InnoDB',
994 {'extend_existing': True, 'mysql_engine': 'InnoDB',
995 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
995 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
996 )
996 )
997 user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
997 user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
998 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
998 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
999 username = Column("username", String(255), nullable=True, unique=None, default=None)
999 username = Column("username", String(255), nullable=True, unique=None, default=None)
1000 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True)
1000 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True)
1001 repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None)
1001 repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None)
1002 user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None)
1002 user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None)
1003 action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None)
1003 action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None)
1004 action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None)
1004 action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None)
1005
1005
1006 def __unicode__(self):
1006 def __unicode__(self):
1007 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1007 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1008 self.repository_name,
1008 self.repository_name,
1009 self.action)
1009 self.action)
1010
1010
1011 @property
1011 @property
1012 def action_as_day(self):
1012 def action_as_day(self):
1013 return datetime.date(*self.action_date.timetuple()[:3])
1013 return datetime.date(*self.action_date.timetuple()[:3])
1014
1014
1015 user = relationship('User')
1015 user = relationship('User')
1016 repository = relationship('Repository', cascade='')
1016 repository = relationship('Repository', cascade='')
1017
1017
1018
1018
1019 class UserGroup(Base, BaseModel):
1019 class UserGroup(Base, BaseModel):
1020 __tablename__ = 'users_groups'
1020 __tablename__ = 'users_groups'
1021 __table_args__ = (
1021 __table_args__ = (
1022 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1022 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1023 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1023 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1024 )
1024 )
1025
1025
1026 users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1026 users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1027 users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None)
1027 users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None)
1028 user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None)
1028 user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None)
1029 users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None)
1029 users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None)
1030 inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
1030 inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True)
1031 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
1031 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
1032 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1032 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1033 _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data
1033 _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data
1034
1034
1035 members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined")
1035 members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined")
1036 users_group_to_perm = relationship('UserGroupToPerm', cascade='all')
1036 users_group_to_perm = relationship('UserGroupToPerm', cascade='all')
1037 users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1037 users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1038 users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
1038 users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
1039 user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all')
1039 user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all')
1040 user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all')
1040 user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all')
1041
1041
1042 user = relationship('User')
1042 user = relationship('User')
1043
1043
1044 @hybrid_property
1044 @hybrid_property
1045 def group_data(self):
1045 def group_data(self):
1046 if not self._group_data:
1046 if not self._group_data:
1047 return {}
1047 return {}
1048
1048
1049 try:
1049 try:
1050 return json.loads(self._group_data)
1050 return json.loads(self._group_data)
1051 except TypeError:
1051 except TypeError:
1052 return {}
1052 return {}
1053
1053
1054 @group_data.setter
1054 @group_data.setter
1055 def group_data(self, val):
1055 def group_data(self, val):
1056 try:
1056 try:
1057 self._group_data = json.dumps(val)
1057 self._group_data = json.dumps(val)
1058 except Exception:
1058 except Exception:
1059 log.error(traceback.format_exc())
1059 log.error(traceback.format_exc())
1060
1060
1061 def __unicode__(self):
1061 def __unicode__(self):
1062 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1062 return u"<%s('id:%s:%s')>" % (self.__class__.__name__,
1063 self.users_group_id,
1063 self.users_group_id,
1064 self.users_group_name)
1064 self.users_group_name)
1065
1065
1066 @classmethod
1066 @classmethod
1067 def get_by_group_name(cls, group_name, cache=False,
1067 def get_by_group_name(cls, group_name, cache=False,
1068 case_insensitive=False):
1068 case_insensitive=False):
1069 if case_insensitive:
1069 if case_insensitive:
1070 q = cls.query().filter(func.lower(cls.users_group_name) ==
1070 q = cls.query().filter(func.lower(cls.users_group_name) ==
1071 func.lower(group_name))
1071 func.lower(group_name))
1072
1072
1073 else:
1073 else:
1074 q = cls.query().filter(cls.users_group_name == group_name)
1074 q = cls.query().filter(cls.users_group_name == group_name)
1075 if cache:
1075 if cache:
1076 q = q.options(FromCache(
1076 q = q.options(FromCache(
1077 "sql_cache_short",
1077 "sql_cache_short",
1078 "get_group_%s" % _hash_key(group_name)))
1078 "get_group_%s" % _hash_key(group_name)))
1079 return q.scalar()
1079 return q.scalar()
1080
1080
1081 @classmethod
1081 @classmethod
1082 def get(cls, user_group_id, cache=False):
1082 def get(cls, user_group_id, cache=False):
1083 user_group = cls.query()
1083 user_group = cls.query()
1084 if cache:
1084 if cache:
1085 user_group = user_group.options(FromCache("sql_cache_short",
1085 user_group = user_group.options(FromCache("sql_cache_short",
1086 "get_users_group_%s" % user_group_id))
1086 "get_users_group_%s" % user_group_id))
1087 return user_group.get(user_group_id)
1087 return user_group.get(user_group_id)
1088
1088
1089 def permissions(self, with_admins=True, with_owner=True):
1089 def permissions(self, with_admins=True, with_owner=True):
1090 q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self)
1090 q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self)
1091 q = q.options(joinedload(UserUserGroupToPerm.user_group),
1091 q = q.options(joinedload(UserUserGroupToPerm.user_group),
1092 joinedload(UserUserGroupToPerm.user),
1092 joinedload(UserUserGroupToPerm.user),
1093 joinedload(UserUserGroupToPerm.permission),)
1093 joinedload(UserUserGroupToPerm.permission),)
1094
1094
1095 # get owners and admins and permissions. We do a trick of re-writing
1095 # get owners and admins and permissions. We do a trick of re-writing
1096 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1096 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1097 # has a global reference and changing one object propagates to all
1097 # has a global reference and changing one object propagates to all
1098 # others. This means if admin is also an owner admin_row that change
1098 # others. This means if admin is also an owner admin_row that change
1099 # would propagate to both objects
1099 # would propagate to both objects
1100 perm_rows = []
1100 perm_rows = []
1101 for _usr in q.all():
1101 for _usr in q.all():
1102 usr = AttributeDict(_usr.user.get_dict())
1102 usr = AttributeDict(_usr.user.get_dict())
1103 usr.permission = _usr.permission.permission_name
1103 usr.permission = _usr.permission.permission_name
1104 perm_rows.append(usr)
1104 perm_rows.append(usr)
1105
1105
1106 # filter the perm rows by 'default' first and then sort them by
1106 # filter the perm rows by 'default' first and then sort them by
1107 # admin,write,read,none permissions sorted again alphabetically in
1107 # admin,write,read,none permissions sorted again alphabetically in
1108 # each group
1108 # each group
1109 perm_rows = sorted(perm_rows, key=display_sort)
1109 perm_rows = sorted(perm_rows, key=display_sort)
1110
1110
1111 _admin_perm = 'usergroup.admin'
1111 _admin_perm = 'usergroup.admin'
1112 owner_row = []
1112 owner_row = []
1113 if with_owner:
1113 if with_owner:
1114 usr = AttributeDict(self.user.get_dict())
1114 usr = AttributeDict(self.user.get_dict())
1115 usr.owner_row = True
1115 usr.owner_row = True
1116 usr.permission = _admin_perm
1116 usr.permission = _admin_perm
1117 owner_row.append(usr)
1117 owner_row.append(usr)
1118
1118
1119 super_admin_rows = []
1119 super_admin_rows = []
1120 if with_admins:
1120 if with_admins:
1121 for usr in User.get_all_super_admins():
1121 for usr in User.get_all_super_admins():
1122 # if this admin is also owner, don't double the record
1122 # if this admin is also owner, don't double the record
1123 if usr.user_id == owner_row[0].user_id:
1123 if usr.user_id == owner_row[0].user_id:
1124 owner_row[0].admin_row = True
1124 owner_row[0].admin_row = True
1125 else:
1125 else:
1126 usr = AttributeDict(usr.get_dict())
1126 usr = AttributeDict(usr.get_dict())
1127 usr.admin_row = True
1127 usr.admin_row = True
1128 usr.permission = _admin_perm
1128 usr.permission = _admin_perm
1129 super_admin_rows.append(usr)
1129 super_admin_rows.append(usr)
1130
1130
1131 return super_admin_rows + owner_row + perm_rows
1131 return super_admin_rows + owner_row + perm_rows
1132
1132
1133 def permission_user_groups(self):
1133 def permission_user_groups(self):
1134 q = UserGroupUserGroupToPerm.query().filter(UserGroupUserGroupToPerm.target_user_group == self)
1134 q = UserGroupUserGroupToPerm.query().filter(UserGroupUserGroupToPerm.target_user_group == self)
1135 q = q.options(joinedload(UserGroupUserGroupToPerm.user_group),
1135 q = q.options(joinedload(UserGroupUserGroupToPerm.user_group),
1136 joinedload(UserGroupUserGroupToPerm.target_user_group),
1136 joinedload(UserGroupUserGroupToPerm.target_user_group),
1137 joinedload(UserGroupUserGroupToPerm.permission),)
1137 joinedload(UserGroupUserGroupToPerm.permission),)
1138
1138
1139 perm_rows = []
1139 perm_rows = []
1140 for _user_group in q.all():
1140 for _user_group in q.all():
1141 usr = AttributeDict(_user_group.user_group.get_dict())
1141 usr = AttributeDict(_user_group.user_group.get_dict())
1142 usr.permission = _user_group.permission.permission_name
1142 usr.permission = _user_group.permission.permission_name
1143 perm_rows.append(usr)
1143 perm_rows.append(usr)
1144
1144
1145 return perm_rows
1145 return perm_rows
1146
1146
1147 def _get_default_perms(self, user_group, suffix=''):
1147 def _get_default_perms(self, user_group, suffix=''):
1148 from rhodecode.model.permission import PermissionModel
1148 from rhodecode.model.permission import PermissionModel
1149 return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix)
1149 return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix)
1150
1150
1151 def get_default_perms(self, suffix=''):
1151 def get_default_perms(self, suffix=''):
1152 return self._get_default_perms(self, suffix)
1152 return self._get_default_perms(self, suffix)
1153
1153
1154 def get_api_data(self, with_group_members=True, include_secrets=False):
1154 def get_api_data(self, with_group_members=True, include_secrets=False):
1155 """
1155 """
1156 :param include_secrets: See :meth:`User.get_api_data`, this parameter is
1156 :param include_secrets: See :meth:`User.get_api_data`, this parameter is
1157 basically forwarded.
1157 basically forwarded.
1158
1158
1159 """
1159 """
1160 user_group = self
1160 user_group = self
1161
1161
1162 data = {
1162 data = {
1163 'users_group_id': user_group.users_group_id,
1163 'users_group_id': user_group.users_group_id,
1164 'group_name': user_group.users_group_name,
1164 'group_name': user_group.users_group_name,
1165 'group_description': user_group.user_group_description,
1165 'group_description': user_group.user_group_description,
1166 'active': user_group.users_group_active,
1166 'active': user_group.users_group_active,
1167 'owner': user_group.user.username,
1167 'owner': user_group.user.username,
1168 }
1168 }
1169 if with_group_members:
1169 if with_group_members:
1170 users = []
1170 users = []
1171 for user in user_group.members:
1171 for user in user_group.members:
1172 user = user.user
1172 user = user.user
1173 users.append(user.get_api_data(include_secrets=include_secrets))
1173 users.append(user.get_api_data(include_secrets=include_secrets))
1174 data['users'] = users
1174 data['users'] = users
1175
1175
1176 return data
1176 return data
1177
1177
1178
1178
1179 class UserGroupMember(Base, BaseModel):
1179 class UserGroupMember(Base, BaseModel):
1180 __tablename__ = 'users_groups_members'
1180 __tablename__ = 'users_groups_members'
1181 __table_args__ = (
1181 __table_args__ = (
1182 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1182 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1183 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1183 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1184 )
1184 )
1185
1185
1186 users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1186 users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1187 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
1187 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
1188 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
1188 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
1189
1189
1190 user = relationship('User', lazy='joined')
1190 user = relationship('User', lazy='joined')
1191 users_group = relationship('UserGroup')
1191 users_group = relationship('UserGroup')
1192
1192
1193 def __init__(self, gr_id='', u_id=''):
1193 def __init__(self, gr_id='', u_id=''):
1194 self.users_group_id = gr_id
1194 self.users_group_id = gr_id
1195 self.user_id = u_id
1195 self.user_id = u_id
1196
1196
1197
1197
1198 class RepositoryField(Base, BaseModel):
1198 class RepositoryField(Base, BaseModel):
1199 __tablename__ = 'repositories_fields'
1199 __tablename__ = 'repositories_fields'
1200 __table_args__ = (
1200 __table_args__ = (
1201 UniqueConstraint('repository_id', 'field_key'), # no-multi field
1201 UniqueConstraint('repository_id', 'field_key'), # no-multi field
1202 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1202 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1203 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1203 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1204 )
1204 )
1205 PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields
1205 PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields
1206
1206
1207 repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1207 repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
1208 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
1208 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
1209 field_key = Column("field_key", String(250))
1209 field_key = Column("field_key", String(250))
1210 field_label = Column("field_label", String(1024), nullable=False)
1210 field_label = Column("field_label", String(1024), nullable=False)
1211 field_value = Column("field_value", String(10000), nullable=False)
1211 field_value = Column("field_value", String(10000), nullable=False)
1212 field_desc = Column("field_desc", String(1024), nullable=False)
1212 field_desc = Column("field_desc", String(1024), nullable=False)
1213 field_type = Column("field_type", String(255), nullable=False, unique=None)
1213 field_type = Column("field_type", String(255), nullable=False, unique=None)
1214 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1214 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
1215
1215
1216 repository = relationship('Repository')
1216 repository = relationship('Repository')
1217
1217
1218 @property
1218 @property
1219 def field_key_prefixed(self):
1219 def field_key_prefixed(self):
1220 return 'ex_%s' % self.field_key
1220 return 'ex_%s' % self.field_key
1221
1221
1222 @classmethod
1222 @classmethod
1223 def un_prefix_key(cls, key):
1223 def un_prefix_key(cls, key):
1224 if key.startswith(cls.PREFIX):
1224 if key.startswith(cls.PREFIX):
1225 return key[len(cls.PREFIX):]
1225 return key[len(cls.PREFIX):]
1226 return key
1226 return key
1227
1227
1228 @classmethod
1228 @classmethod
1229 def get_by_key_name(cls, key, repo):
1229 def get_by_key_name(cls, key, repo):
1230 row = cls.query()\
1230 row = cls.query()\
1231 .filter(cls.repository == repo)\
1231 .filter(cls.repository == repo)\
1232 .filter(cls.field_key == key).scalar()
1232 .filter(cls.field_key == key).scalar()
1233 return row
1233 return row
1234
1234
1235
1235
1236 class Repository(Base, BaseModel):
1236 class Repository(Base, BaseModel):
1237 __tablename__ = 'repositories'
1237 __tablename__ = 'repositories'
1238 __table_args__ = (
1238 __table_args__ = (
1239 Index('r_repo_name_idx', 'repo_name', mysql_length=255),
1239 Index('r_repo_name_idx', 'repo_name', mysql_length=255),
1240 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1240 {'extend_existing': True, 'mysql_engine': 'InnoDB',
1241 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1241 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
1242 )
1242 )
1243 DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}'
1243 DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}'
1244 DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}'
1244 DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}'
1245
1245
1246 STATE_CREATED = 'repo_state_created'
1246 STATE_CREATED = 'repo_state_created'
1247 STATE_PENDING = 'repo_state_pending'
1247 STATE_PENDING = 'repo_state_pending'
1248 STATE_ERROR = 'repo_state_error'
1248 STATE_ERROR = 'repo_state_error'
1249
1249
1250 LOCK_AUTOMATIC = 'lock_auto'
1250 LOCK_AUTOMATIC = 'lock_auto'
1251 LOCK_API = 'lock_api'
1251 LOCK_API = 'lock_api'
1252 LOCK_WEB = 'lock_web'
1252 LOCK_WEB = 'lock_web'
1253 LOCK_PULL = 'lock_pull'
1253 LOCK_PULL = 'lock_pull'
1254
1254
1255 NAME_SEP = URL_SEP
1255 NAME_SEP = URL_SEP
1256
1256
1257 repo_id = Column(
1257 repo_id = Column(
1258 "repo_id", Integer(), nullable=False, unique=True, default=None,
1258 "repo_id", Integer(), nullable=False, unique=True, default=None,
1259 primary_key=True)
1259 primary_key=True)
1260 _repo_name = Column(
1260 _repo_name = Column(
1261 "repo_name", Text(), nullable=False, default=None)
1261 "repo_name", Text(), nullable=False, default=None)
1262 _repo_name_hash = Column(
1262 _repo_name_hash = Column(
1263 "repo_name_hash", String(255), nullable=False, unique=True)
1263 "repo_name_hash", String(255), nullable=False, unique=True)
1264 repo_state = Column("repo_state", String(255), nullable=True)
1264 repo_state = Column("repo_state", String(255), nullable=True)
1265
1265
1266 clone_uri = Column(
1266 clone_uri = Column(
1267 "clone_uri", EncryptedTextValue(), nullable=True, unique=False,
1267 "clone_uri", EncryptedTextValue(), nullable=True, unique=False,
1268 default=None)
1268 default=None)
1269 repo_type = Column(
1269 repo_type = Column(
1270 "repo_type", String(255), nullable=False, unique=False, default=None)
1270 "repo_type", String(255), nullable=False, unique=False, default=None)
1271 user_id = Column(
1271 user_id = Column(
1272 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
1272 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
1273 unique=False, default=None)
1273 unique=False, default=None)
1274 private = Column(
1274 private = Column(
1275 "private", Boolean(), nullable=True, unique=None, default=None)
1275 "private", Boolean(), nullable=True, unique=None, default=None)
1276 enable_statistics = Column(
1276 enable_statistics = Column(
1277 "statistics", Boolean(), nullable=True, unique=None, default=True)
1277 "statistics", Boolean(), nullable=True, unique=None, default=True)
1278 enable_downloads = Column(
1278 enable_downloads = Column(
1279 "downloads", Boolean(), nullable=True, unique=None, default=True)
1279 "downloads", Boolean(), nullable=True, unique=None, default=True)
1280 description = Column(
1280 description = Column(
1281 "description", String(10000), nullable=True, unique=None, default=None)
1281 "description", String(10000), nullable=True, unique=None, default=None)
1282 created_on = Column(
1282 created_on = Column(
1283 'created_on', DateTime(timezone=False), nullable=True, unique=None,
1283 'created_on', DateTime(timezone=False), nullable=True, unique=None,
1284 default=datetime.datetime.now)
1284 default=datetime.datetime.now)
1285 updated_on = Column(
1285 updated_on = Column(
1286 'updated_on', DateTime(timezone=False), nullable=True, unique=None,
1286 'updated_on', DateTime(timezone=False), nullable=True, unique=None,
1287 default=datetime.datetime.now)
1287 default=datetime.datetime.now)
1288 _landing_revision = Column(
1288 _landing_revision = Column(
1289 "landing_revision", String(255), nullable=False, unique=False,
1289 "landing_revision", String(255), nullable=False, unique=False,
1290 default=None)
1290 default=None)
1291 enable_locking = Column(
1291 enable_locking = Column(
1292 "enable_locking", Boolean(), nullable=False, unique=None,
1292 "enable_locking", Boolean(), nullable=False, unique=None,
1293 default=False)
1293 default=False)
1294 _locked = Column(
1294 _locked = Column(
1295 "locked", String(255), nullable=True, unique=False, default=None)
1295 "locked", String(255), nullable=True, unique=False, default=None)
1296 _changeset_cache = Column(
1296 _changeset_cache = Column(
1297 "changeset_cache", LargeBinary(), nullable=True) # JSON data
1297 "changeset_cache", LargeBinary(), nullable=True) # JSON data
1298
1298
1299 fork_id = Column(
1299 fork_id = Column(
1300 "fork_id", Integer(), ForeignKey('repositories.repo_id'),
1300 "fork_id", Integer(), ForeignKey('repositories.repo_id'),
1301 nullable=True, unique=False, default=None)
1301 nullable=True, unique=False, default=None)
1302 group_id = Column(
1302 group_id = Column(
1303 "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True,
1303 "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True,
1304 unique=False, default=None)
1304 unique=False, default=None)
1305
1305
1306 user = relationship('User', lazy='joined')
1306 user = relationship('User', lazy='joined')
1307 fork = relationship('Repository', remote_side=repo_id, lazy='joined')
1307 fork = relationship('Repository', remote_side=repo_id, lazy='joined')
1308 group = relationship('RepoGroup', lazy='joined')
1308 group = relationship('RepoGroup', lazy='joined')
1309 repo_to_perm = relationship(
1309 repo_to_perm = relationship(
1310 'UserRepoToPerm', cascade='all',
1310 'UserRepoToPerm', cascade='all',
1311 order_by='UserRepoToPerm.repo_to_perm_id')
1311 order_by='UserRepoToPerm.repo_to_perm_id')
1312 users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1312 users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all')
1313 stats = relationship('Statistics', cascade='all', uselist=False)
1313 stats = relationship('Statistics', cascade='all', uselist=False)
1314
1314
1315 followers = relationship(
1315 followers = relationship(
1316 'UserFollowing',
1316 'UserFollowing',
1317 primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id',
1317 primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id',
1318 cascade='all')
1318 cascade='all')
1319 extra_fields = relationship(
1319 extra_fields = relationship(
1320 'RepositoryField', cascade="all, delete, delete-orphan")
1320 'RepositoryField', cascade="all, delete, delete-orphan")
1321 logs = relationship('UserLog')
1321 logs = relationship('UserLog')
1322 comments = relationship(
1322 comments = relationship(
1323 'ChangesetComment', cascade="all, delete, delete-orphan")
1323 'ChangesetComment', cascade="all, delete, delete-orphan")
1324 pull_requests_source = relationship(
1324 pull_requests_source = relationship(
1325 'PullRequest',
1325 'PullRequest',
1326 primaryjoin='PullRequest.source_repo_id==Repository.repo_id',
1326 primaryjoin='PullRequest.source_repo_id==Repository.repo_id',
1327 cascade="all, delete, delete-orphan")
1327 cascade="all, delete, delete-orphan")
1328 pull_requests_target = relationship(
1328 pull_requests_target = relationship(
1329 'PullRequest',
1329 'PullRequest',
1330 primaryjoin='PullRequest.target_repo_id==Repository.repo_id',
1330 primaryjoin='PullRequest.target_repo_id==Repository.repo_id',
1331 cascade="all, delete, delete-orphan")
1331 cascade="all, delete, delete-orphan")
1332 ui = relationship('RepoRhodeCodeUi', cascade="all")
1332 ui = relationship('RepoRhodeCodeUi', cascade="all")
1333 settings = relationship('RepoRhodeCodeSetting', cascade="all")
1333 settings = relationship('RepoRhodeCodeSetting', cascade="all")
1334 integrations = relationship('Integration',
1334 integrations = relationship('Integration',
1335 cascade="all, delete, delete-orphan")
1335 cascade="all, delete, delete-orphan")
1336
1336
1337 def __unicode__(self):
1337 def __unicode__(self):
1338 return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id,
1338 return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id,
1339 safe_unicode(self.repo_name))
1339 safe_unicode(self.repo_name))
1340
1340
1341 @hybrid_property
1341 @hybrid_property
1342 def landing_rev(self):
1342 def landing_rev(self):
1343 # always should return [rev_type, rev]
1343 # always should return [rev_type, rev]
1344 if self._landing_revision:
1344 if self._landing_revision:
1345 _rev_info = self._landing_revision.split(':')
1345 _rev_info = self._landing_revision.split(':')
1346 if len(_rev_info) < 2:
1346 if len(_rev_info) < 2:
1347 _rev_info.insert(0, 'rev')
1347 _rev_info.insert(0, 'rev')
1348 return [_rev_info[0], _rev_info[1]]
1348 return [_rev_info[0], _rev_info[1]]
1349 return [None, None]
1349 return [None, None]
1350
1350
1351 @landing_rev.setter
1351 @landing_rev.setter
1352 def landing_rev(self, val):
1352 def landing_rev(self, val):
1353 if ':' not in val:
1353 if ':' not in val:
1354 raise ValueError('value must be delimited with `:` and consist '
1354 raise ValueError('value must be delimited with `:` and consist '
1355 'of <rev_type>:<rev>, got %s instead' % val)
1355 'of <rev_type>:<rev>, got %s instead' % val)
1356 self._landing_revision = val
1356 self._landing_revision = val
1357
1357
1358 @hybrid_property
1358 @hybrid_property
1359 def locked(self):
1359 def locked(self):
1360 if self._locked:
1360 if self._locked:
1361 user_id, timelocked, reason = self._locked.split(':')
1361 user_id, timelocked, reason = self._locked.split(':')
1362 lock_values = int(user_id), timelocked, reason
1362 lock_values = int(user_id), timelocked, reason
1363 else:
1363 else:
1364 lock_values = [None, None, None]
1364 lock_values = [None, None, None]
1365 return lock_values
1365 return lock_values
1366
1366
1367 @locked.setter
1367 @locked.setter
1368 def locked(self, val):
1368 def locked(self, val):
1369 if val and isinstance(val, (list, tuple)):
1369 if val and isinstance(val, (list, tuple)):
1370 self._locked = ':'.join(map(str, val))
1370 self._locked = ':'.join(map(str, val))
1371 else:
1371 else:
1372 self._locked = None
1372 self._locked = None
1373
1373
1374 @hybrid_property
1374 @hybrid_property
1375 def changeset_cache(self):
1375 def changeset_cache(self):
1376 from rhodecode.lib.vcs.backends.base import EmptyCommit
1376 from rhodecode.lib.vcs.backends.base import EmptyCommit
1377 dummy = EmptyCommit().__json__()
1377 dummy = EmptyCommit().__json__()
1378 if not self._changeset_cache:
1378 if not self._changeset_cache:
1379 return dummy
1379 return dummy
1380 try:
1380 try:
1381 return json.loads(self._changeset_cache)
1381 return json.loads(self._changeset_cache)
1382 except TypeError:
1382 except TypeError:
1383 return dummy
1383 return dummy
1384 except Exception:
1384 except Exception:
1385 log.error(traceback.format_exc())
1385 log.error(traceback.format_exc())
1386 return dummy
1386 return dummy
1387
1387
1388 @changeset_cache.setter
1388 @changeset_cache.setter
1389 def changeset_cache(self, val):
1389 def changeset_cache(self, val):
1390 try:
1390 try:
1391 self._changeset_cache = json.dumps(val)
1391 self._changeset_cache = json.dumps(val)
1392 except Exception:
1392 except Exception:
1393 log.error(traceback.format_exc())
1393 log.error(traceback.format_exc())
1394
1394
1395 @hybrid_property
1395 @hybrid_property
1396 def repo_name(self):
1396 def repo_name(self):
1397 return self._repo_name
1397 return self._repo_name
1398
1398
1399 @repo_name.setter
1399 @repo_name.setter
1400 def repo_name(self, value):
1400 def repo_name(self, value):
1401 self._repo_name = value
1401 self._repo_name = value
1402 self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest()
1402 self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest()
1403
1403
1404 @classmethod
1404 @classmethod
1405 def normalize_repo_name(cls, repo_name):
1405 def normalize_repo_name(cls, repo_name):
1406 """
1406 """
1407 Normalizes os specific repo_name to the format internally stored inside
1407 Normalizes os specific repo_name to the format internally stored inside
1408 database using URL_SEP
1408 database using URL_SEP
1409
1409
1410 :param cls:
1410 :param cls:
1411 :param repo_name:
1411 :param repo_name:
1412 """
1412 """
1413 return cls.NAME_SEP.join(repo_name.split(os.sep))
1413 return cls.NAME_SEP.join(repo_name.split(os.sep))
1414
1414
1415 @classmethod
1415 @classmethod
1416 def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False):
1416 def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False):
1417 session = Session()
1417 session = Session()
1418 q = session.query(cls).filter(cls.repo_name == repo_name)
1418 q = session.query(cls).filter(cls.repo_name == repo_name)
1419
1419
1420 if cache:
1420 if cache:
1421 if identity_cache:
1421 if identity_cache:
1422 val = cls.identity_cache(session, 'repo_name', repo_name)
1422 val = cls.identity_cache(session, 'repo_name', repo_name)
1423 if val:
1423 if val:
1424 return val
1424 return val
1425 else:
1425 else:
1426 q = q.options(
1426 q = q.options(
1427 FromCache("sql_cache_short",
1427 FromCache("sql_cache_short",
1428 "get_repo_by_name_%s" % _hash_key(repo_name)))
1428 "get_repo_by_name_%s" % _hash_key(repo_name)))
1429
1429
1430 return q.scalar()
1430 return q.scalar()
1431
1431
1432 @classmethod
1432 @classmethod
1433 def get_by_full_path(cls, repo_full_path):
1433 def get_by_full_path(cls, repo_full_path):
1434 repo_name = repo_full_path.split(cls.base_path(), 1)[-1]
1434 repo_name = repo_full_path.split(cls.base_path(), 1)[-1]
1435 repo_name = cls.normalize_repo_name(repo_name)
1435 repo_name = cls.normalize_repo_name(repo_name)
1436 return cls.get_by_repo_name(repo_name.strip(URL_SEP))
1436 return cls.get_by_repo_name(repo_name.strip(URL_SEP))
1437
1437
1438 @classmethod
1438 @classmethod
1439 def get_repo_forks(cls, repo_id):
1439 def get_repo_forks(cls, repo_id):
1440 return cls.query().filter(Repository.fork_id == repo_id)
1440 return cls.query().filter(Repository.fork_id == repo_id)
1441
1441
1442 @classmethod
1442 @classmethod
1443 def base_path(cls):
1443 def base_path(cls):
1444 """
1444 """
1445 Returns base path when all repos are stored
1445 Returns base path when all repos are stored
1446
1446
1447 :param cls:
1447 :param cls:
1448 """
1448 """
1449 q = Session().query(RhodeCodeUi)\
1449 q = Session().query(RhodeCodeUi)\
1450 .filter(RhodeCodeUi.ui_key == cls.NAME_SEP)
1450 .filter(RhodeCodeUi.ui_key == cls.NAME_SEP)
1451 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1451 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1452 return q.one().ui_value
1452 return q.one().ui_value
1453
1453
1454 @classmethod
1454 @classmethod
1455 def is_valid(cls, repo_name):
1455 def is_valid(cls, repo_name):
1456 """
1456 """
1457 returns True if given repo name is a valid filesystem repository
1457 returns True if given repo name is a valid filesystem repository
1458
1458
1459 :param cls:
1459 :param cls:
1460 :param repo_name:
1460 :param repo_name:
1461 """
1461 """
1462 from rhodecode.lib.utils import is_valid_repo
1462 from rhodecode.lib.utils import is_valid_repo
1463
1463
1464 return is_valid_repo(repo_name, cls.base_path())
1464 return is_valid_repo(repo_name, cls.base_path())
1465
1465
1466 @classmethod
1466 @classmethod
1467 def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None),
1467 def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None),
1468 case_insensitive=True):
1468 case_insensitive=True):
1469 q = Repository.query()
1469 q = Repository.query()
1470
1470
1471 if not isinstance(user_id, Optional):
1471 if not isinstance(user_id, Optional):
1472 q = q.filter(Repository.user_id == user_id)
1472 q = q.filter(Repository.user_id == user_id)
1473
1473
1474 if not isinstance(group_id, Optional):
1474 if not isinstance(group_id, Optional):
1475 q = q.filter(Repository.group_id == group_id)
1475 q = q.filter(Repository.group_id == group_id)
1476
1476
1477 if case_insensitive:
1477 if case_insensitive:
1478 q = q.order_by(func.lower(Repository.repo_name))
1478 q = q.order_by(func.lower(Repository.repo_name))
1479 else:
1479 else:
1480 q = q.order_by(Repository.repo_name)
1480 q = q.order_by(Repository.repo_name)
1481 return q.all()
1481 return q.all()
1482
1482
1483 @property
1483 @property
1484 def forks(self):
1484 def forks(self):
1485 """
1485 """
1486 Return forks of this repo
1486 Return forks of this repo
1487 """
1487 """
1488 return Repository.get_repo_forks(self.repo_id)
1488 return Repository.get_repo_forks(self.repo_id)
1489
1489
1490 @property
1490 @property
1491 def parent(self):
1491 def parent(self):
1492 """
1492 """
1493 Returns fork parent
1493 Returns fork parent
1494 """
1494 """
1495 return self.fork
1495 return self.fork
1496
1496
1497 @property
1497 @property
1498 def just_name(self):
1498 def just_name(self):
1499 return self.repo_name.split(self.NAME_SEP)[-1]
1499 return self.repo_name.split(self.NAME_SEP)[-1]
1500
1500
1501 @property
1501 @property
1502 def groups_with_parents(self):
1502 def groups_with_parents(self):
1503 groups = []
1503 groups = []
1504 if self.group is None:
1504 if self.group is None:
1505 return groups
1505 return groups
1506
1506
1507 cur_gr = self.group
1507 cur_gr = self.group
1508 groups.insert(0, cur_gr)
1508 groups.insert(0, cur_gr)
1509 while 1:
1509 while 1:
1510 gr = getattr(cur_gr, 'parent_group', None)
1510 gr = getattr(cur_gr, 'parent_group', None)
1511 cur_gr = cur_gr.parent_group
1511 cur_gr = cur_gr.parent_group
1512 if gr is None:
1512 if gr is None:
1513 break
1513 break
1514 groups.insert(0, gr)
1514 groups.insert(0, gr)
1515
1515
1516 return groups
1516 return groups
1517
1517
1518 @property
1518 @property
1519 def groups_and_repo(self):
1519 def groups_and_repo(self):
1520 return self.groups_with_parents, self
1520 return self.groups_with_parents, self
1521
1521
1522 @LazyProperty
1522 @LazyProperty
1523 def repo_path(self):
1523 def repo_path(self):
1524 """
1524 """
1525 Returns base full path for that repository means where it actually
1525 Returns base full path for that repository means where it actually
1526 exists on a filesystem
1526 exists on a filesystem
1527 """
1527 """
1528 q = Session().query(RhodeCodeUi).filter(
1528 q = Session().query(RhodeCodeUi).filter(
1529 RhodeCodeUi.ui_key == self.NAME_SEP)
1529 RhodeCodeUi.ui_key == self.NAME_SEP)
1530 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1530 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
1531 return q.one().ui_value
1531 return q.one().ui_value
1532
1532
1533 @property
1533 @property
1534 def repo_full_path(self):
1534 def repo_full_path(self):
1535 p = [self.repo_path]
1535 p = [self.repo_path]
1536 # we need to split the name by / since this is how we store the
1536 # we need to split the name by / since this is how we store the
1537 # names in the database, but that eventually needs to be converted
1537 # names in the database, but that eventually needs to be converted
1538 # into a valid system path
1538 # into a valid system path
1539 p += self.repo_name.split(self.NAME_SEP)
1539 p += self.repo_name.split(self.NAME_SEP)
1540 return os.path.join(*map(safe_unicode, p))
1540 return os.path.join(*map(safe_unicode, p))
1541
1541
1542 @property
1542 @property
1543 def cache_keys(self):
1543 def cache_keys(self):
1544 """
1544 """
1545 Returns associated cache keys for that repo
1545 Returns associated cache keys for that repo
1546 """
1546 """
1547 return CacheKey.query()\
1547 return CacheKey.query()\
1548 .filter(CacheKey.cache_args == self.repo_name)\
1548 .filter(CacheKey.cache_args == self.repo_name)\
1549 .order_by(CacheKey.cache_key)\
1549 .order_by(CacheKey.cache_key)\
1550 .all()
1550 .all()
1551
1551
1552 def get_new_name(self, repo_name):
1552 def get_new_name(self, repo_name):
1553 """
1553 """
1554 returns new full repository name based on assigned group and new new
1554 returns new full repository name based on assigned group and new new
1555
1555
1556 :param group_name:
1556 :param group_name:
1557 """
1557 """
1558 path_prefix = self.group.full_path_splitted if self.group else []
1558 path_prefix = self.group.full_path_splitted if self.group else []
1559 return self.NAME_SEP.join(path_prefix + [repo_name])
1559 return self.NAME_SEP.join(path_prefix + [repo_name])
1560
1560
1561 @property
1561 @property
1562 def _config(self):
1562 def _config(self):
1563 """
1563 """
1564 Returns db based config object.
1564 Returns db based config object.
1565 """
1565 """
1566 from rhodecode.lib.utils import make_db_config
1566 from rhodecode.lib.utils import make_db_config
1567 return make_db_config(clear_session=False, repo=self)
1567 return make_db_config(clear_session=False, repo=self)
1568
1568
1569 def permissions(self, with_admins=True, with_owner=True):
1569 def permissions(self, with_admins=True, with_owner=True):
1570 q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self)
1570 q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self)
1571 q = q.options(joinedload(UserRepoToPerm.repository),
1571 q = q.options(joinedload(UserRepoToPerm.repository),
1572 joinedload(UserRepoToPerm.user),
1572 joinedload(UserRepoToPerm.user),
1573 joinedload(UserRepoToPerm.permission),)
1573 joinedload(UserRepoToPerm.permission),)
1574
1574
1575 # get owners and admins and permissions. We do a trick of re-writing
1575 # get owners and admins and permissions. We do a trick of re-writing
1576 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1576 # objects from sqlalchemy to named-tuples due to sqlalchemy session
1577 # has a global reference and changing one object propagates to all
1577 # has a global reference and changing one object propagates to all
1578 # others. This means if admin is also an owner admin_row that change
1578 # others. This means if admin is also an owner admin_row that change
1579 # would propagate to both objects
1579 # would propagate to both objects
1580 perm_rows = []
1580 perm_rows = []
1581 for _usr in q.all():
1581 for _usr in q.all():
1582 usr = AttributeDict(_usr.user.get_dict())
1582 usr = AttributeDict(_usr.user.get_dict())
1583 usr.permission = _usr.permission.permission_name
1583 usr.permission = _usr.permission.permission_name
1584 perm_rows.append(usr)
1584 perm_rows.append(usr)
1585
1585
1586 # filter the perm rows by 'default' first and then sort them by
1586 # filter the perm rows by 'default' first and then sort them by
1587 # admin,write,read,none permissions sorted again alphabetically in
1587 # admin,write,read,none permissions sorted again alphabetically in
1588 # each group
1588 # each group
1589 perm_rows = sorted(perm_rows, key=display_sort)
1589 perm_rows = sorted(perm_rows, key=display_sort)
1590
1590
1591 _admin_perm = 'repository.admin'
1591 _admin_perm = 'repository.admin'
1592 owner_row = []
1592 owner_row = []
1593 if with_owner:
1593 if with_owner:
1594 usr = AttributeDict(self.user.get_dict())
1594 usr = AttributeDict(self.user.get_dict())
1595 usr.owner_row = True
1595 usr.owner_row = True
1596 usr.permission = _admin_perm
1596 usr.permission = _admin_perm
1597 owner_row.append(usr)
1597 owner_row.append(usr)
1598
1598
1599 super_admin_rows = []
1599 super_admin_rows = []
1600 if with_admins:
1600 if with_admins:
1601 for usr in User.get_all_super_admins():
1601 for usr in User.get_all_super_admins():
1602 # if this admin is also owner, don't double the record
1602 # if this admin is also owner, don't double the record
1603 if usr.user_id == owner_row[0].user_id:
1603 if usr.user_id == owner_row[0].user_id:
1604 owner_row[0].admin_row = True
1604 owner_row[0].admin_row = True
1605 else:
1605 else:
1606 usr = AttributeDict(usr.get_dict())
1606 usr = AttributeDict(usr.get_dict())
1607 usr.admin_row = True
1607 usr.admin_row = True
1608 usr.permission = _admin_perm
1608 usr.permission = _admin_perm
1609 super_admin_rows.append(usr)
1609 super_admin_rows.append(usr)
1610
1610
1611 return super_admin_rows + owner_row + perm_rows
1611 return super_admin_rows + owner_row + perm_rows
1612
1612
1613 def permission_user_groups(self):
1613 def permission_user_groups(self):
1614 q = UserGroupRepoToPerm.query().filter(
1614 q = UserGroupRepoToPerm.query().filter(
1615 UserGroupRepoToPerm.repository == self)
1615 UserGroupRepoToPerm.repository == self)
1616 q = q.options(joinedload(UserGroupRepoToPerm.repository),
1616 q = q.options(joinedload(UserGroupRepoToPerm.repository),
1617 joinedload(UserGroupRepoToPerm.users_group),
1617 joinedload(UserGroupRepoToPerm.users_group),
1618 joinedload(UserGroupRepoToPerm.permission),)
1618 joinedload(UserGroupRepoToPerm.permission),)
1619
1619
1620 perm_rows = []
1620 perm_rows = []
1621 for _user_group in q.all():
1621 for _user_group in q.all():
1622 usr = AttributeDict(_user_group.users_group.get_dict())
1622 usr = AttributeDict(_user_group.users_group.get_dict())
1623 usr.permission = _user_group.permission.permission_name
1623 usr.permission = _user_group.permission.permission_name
1624 perm_rows.append(usr)
1624 perm_rows.append(usr)
1625
1625
1626 return perm_rows
1626 return perm_rows
1627
1627
1628 def get_api_data(self, include_secrets=False):
1628 def get_api_data(self, include_secrets=False):
1629 """
1629 """
1630 Common function for generating repo api data
1630 Common function for generating repo api data
1631
1631
1632 :param include_secrets: See :meth:`User.get_api_data`.
1632 :param include_secrets: See :meth:`User.get_api_data`.
1633
1633
1634 """
1634 """
1635 # TODO: mikhail: Here there is an anti-pattern, we probably need to
1635 # TODO: mikhail: Here there is an anti-pattern, we probably need to
1636 # move this methods on models level.
1636 # move this methods on models level.
1637 from rhodecode.model.settings import SettingsModel
1637 from rhodecode.model.settings import SettingsModel
1638
1638
1639 repo = self
1639 repo = self
1640 _user_id, _time, _reason = self.locked
1640 _user_id, _time, _reason = self.locked
1641
1641
1642 data = {
1642 data = {
1643 'repo_id': repo.repo_id,
1643 'repo_id': repo.repo_id,
1644 'repo_name': repo.repo_name,
1644 'repo_name': repo.repo_name,
1645 'repo_type': repo.repo_type,
1645 'repo_type': repo.repo_type,
1646 'clone_uri': repo.clone_uri or '',
1646 'clone_uri': repo.clone_uri or '',
1647 'url': url('summary_home', repo_name=self.repo_name, qualified=True),
1647 'url': url('summary_home', repo_name=self.repo_name, qualified=True),
1648 'private': repo.private,
1648 'private': repo.private,
1649 'created_on': repo.created_on,
1649 'created_on': repo.created_on,
1650 'description': repo.description,
1650 'description': repo.description,
1651 'landing_rev': repo.landing_rev,
1651 'landing_rev': repo.landing_rev,
1652 'owner': repo.user.username,
1652 'owner': repo.user.username,
1653 'fork_of': repo.fork.repo_name if repo.fork else None,
1653 'fork_of': repo.fork.repo_name if repo.fork else None,
1654 'enable_statistics': repo.enable_statistics,
1654 'enable_statistics': repo.enable_statistics,
1655 'enable_locking': repo.enable_locking,
1655 'enable_locking': repo.enable_locking,
1656 'enable_downloads': repo.enable_downloads,
1656 'enable_downloads': repo.enable_downloads,
1657 'last_changeset': repo.changeset_cache,
1657 'last_changeset': repo.changeset_cache,
1658 'locked_by': User.get(_user_id).get_api_data(
1658 'locked_by': User.get(_user_id).get_api_data(
1659 include_secrets=include_secrets) if _user_id else None,
1659 include_secrets=include_secrets) if _user_id else None,
1660 'locked_date': time_to_datetime(_time) if _time else None,
1660 'locked_date': time_to_datetime(_time) if _time else None,
1661 'lock_reason': _reason if _reason else None,
1661 'lock_reason': _reason if _reason else None,
1662 }
1662 }
1663
1663
1664 # TODO: mikhail: should be per-repo settings here
1664 # TODO: mikhail: should be per-repo settings here
1665 rc_config = SettingsModel().get_all_settings()
1665 rc_config = SettingsModel().get_all_settings()
1666 repository_fields = str2bool(
1666 repository_fields = str2bool(
1667 rc_config.get('rhodecode_repository_fields'))
1667 rc_config.get('rhodecode_repository_fields'))
1668 if repository_fields:
1668 if repository_fields:
1669 for f in self.extra_fields:
1669 for f in self.extra_fields:
1670 data[f.field_key_prefixed] = f.field_value
1670 data[f.field_key_prefixed] = f.field_value
1671
1671
1672 return data
1672 return data
1673
1673
1674 @classmethod
1674 @classmethod
1675 def lock(cls, repo, user_id, lock_time=None, lock_reason=None):
1675 def lock(cls, repo, user_id, lock_time=None, lock_reason=None):
1676 if not lock_time:
1676 if not lock_time:
1677 lock_time = time.time()
1677 lock_time = time.time()
1678 if not lock_reason:
1678 if not lock_reason:
1679 lock_reason = cls.LOCK_AUTOMATIC
1679 lock_reason = cls.LOCK_AUTOMATIC
1680 repo.locked = [user_id, lock_time, lock_reason]
1680 repo.locked = [user_id, lock_time, lock_reason]
1681 Session().add(repo)
1681 Session().add(repo)
1682 Session().commit()
1682 Session().commit()
1683
1683
1684 @classmethod
1684 @classmethod
1685 def unlock(cls, repo):
1685 def unlock(cls, repo):
1686 repo.locked = None
1686 repo.locked = None
1687 Session().add(repo)
1687 Session().add(repo)
1688 Session().commit()
1688 Session().commit()
1689
1689
1690 @classmethod
1690 @classmethod
1691 def getlock(cls, repo):
1691 def getlock(cls, repo):
1692 return repo.locked
1692 return repo.locked
1693
1693
1694 def is_user_lock(self, user_id):
1694 def is_user_lock(self, user_id):
1695 if self.lock[0]:
1695 if self.lock[0]:
1696 lock_user_id = safe_int(self.lock[0])
1696 lock_user_id = safe_int(self.lock[0])
1697 user_id = safe_int(user_id)
1697 user_id = safe_int(user_id)
1698 # both are ints, and they are equal
1698 # both are ints, and they are equal
1699 return all([lock_user_id, user_id]) and lock_user_id == user_id
1699 return all([lock_user_id, user_id]) and lock_user_id == user_id
1700
1700
1701 return False
1701 return False
1702
1702
1703 def get_locking_state(self, action, user_id, only_when_enabled=True):
1703 def get_locking_state(self, action, user_id, only_when_enabled=True):
1704 """
1704 """
1705 Checks locking on this repository, if locking is enabled and lock is
1705 Checks locking on this repository, if locking is enabled and lock is
1706 present returns a tuple of make_lock, locked, locked_by.
1706 present returns a tuple of make_lock, locked, locked_by.
1707 make_lock can have 3 states None (do nothing) True, make lock
1707 make_lock can have 3 states None (do nothing) True, make lock
1708 False release lock, This value is later propagated to hooks, which
1708 False release lock, This value is later propagated to hooks, which
1709 do the locking. Think about this as signals passed to hooks what to do.
1709 do the locking. Think about this as signals passed to hooks what to do.
1710
1710
1711 """
1711 """
1712 # TODO: johbo: This is part of the business logic and should be moved
1712 # TODO: johbo: This is part of the business logic and should be moved
1713 # into the RepositoryModel.
1713 # into the RepositoryModel.
1714
1714
1715 if action not in ('push', 'pull'):
1715 if action not in ('push', 'pull'):
1716 raise ValueError("Invalid action value: %s" % repr(action))
1716 raise ValueError("Invalid action value: %s" % repr(action))
1717
1717
1718 # defines if locked error should be thrown to user
1718 # defines if locked error should be thrown to user
1719 currently_locked = False
1719 currently_locked = False
1720 # defines if new lock should be made, tri-state
1720 # defines if new lock should be made, tri-state
1721 make_lock = None
1721 make_lock = None
1722 repo = self
1722 repo = self
1723 user = User.get(user_id)
1723 user = User.get(user_id)
1724
1724
1725 lock_info = repo.locked
1725 lock_info = repo.locked
1726
1726
1727 if repo and (repo.enable_locking or not only_when_enabled):
1727 if repo and (repo.enable_locking or not only_when_enabled):
1728 if action == 'push':
1728 if action == 'push':
1729 # check if it's already locked !, if it is compare users
1729 # check if it's already locked !, if it is compare users
1730 locked_by_user_id = lock_info[0]
1730 locked_by_user_id = lock_info[0]
1731 if user.user_id == locked_by_user_id:
1731 if user.user_id == locked_by_user_id:
1732 log.debug(
1732 log.debug(
1733 'Got `push` action from user %s, now unlocking', user)
1733 'Got `push` action from user %s, now unlocking', user)
1734 # unlock if we have push from user who locked
1734 # unlock if we have push from user who locked
1735 make_lock = False
1735 make_lock = False
1736 else:
1736 else:
1737 # we're not the same user who locked, ban with
1737 # we're not the same user who locked, ban with
1738 # code defined in settings (default is 423 HTTP Locked) !
1738 # code defined in settings (default is 423 HTTP Locked) !
1739 log.debug('Repo %s is currently locked by %s', repo, user)
1739 log.debug('Repo %s is currently locked by %s', repo, user)
1740 currently_locked = True
1740 currently_locked = True
1741 elif action == 'pull':
1741 elif action == 'pull':
1742 # [0] user [1] date
1742 # [0] user [1] date
1743 if lock_info[0] and lock_info[1]:
1743 if lock_info[0] and lock_info[1]:
1744 log.debug('Repo %s is currently locked by %s', repo, user)
1744 log.debug('Repo %s is currently locked by %s', repo, user)
1745 currently_locked = True
1745 currently_locked = True
1746 else:
1746 else:
1747 log.debug('Setting lock on repo %s by %s', repo, user)
1747 log.debug('Setting lock on repo %s by %s', repo, user)
1748 make_lock = True
1748 make_lock = True
1749
1749
1750 else:
1750 else:
1751 log.debug('Repository %s do not have locking enabled', repo)
1751 log.debug('Repository %s do not have locking enabled', repo)
1752
1752
1753 log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s',
1753 log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s',
1754 make_lock, currently_locked, lock_info)
1754 make_lock, currently_locked, lock_info)
1755
1755
1756 from rhodecode.lib.auth import HasRepoPermissionAny
1756 from rhodecode.lib.auth import HasRepoPermissionAny
1757 perm_check = HasRepoPermissionAny('repository.write', 'repository.admin')
1757 perm_check = HasRepoPermissionAny('repository.write', 'repository.admin')
1758 if make_lock and not perm_check(repo_name=repo.repo_name, user=user):
1758 if make_lock and not perm_check(repo_name=repo.repo_name, user=user):
1759 # if we don't have at least write permission we cannot make a lock
1759 # if we don't have at least write permission we cannot make a lock
1760 log.debug('lock state reset back to FALSE due to lack '
1760 log.debug('lock state reset back to FALSE due to lack '
1761 'of at least read permission')
1761 'of at least read permission')
1762 make_lock = False
1762 make_lock = False
1763
1763
1764 return make_lock, currently_locked, lock_info
1764 return make_lock, currently_locked, lock_info
1765
1765
1766 @property
1766 @property
1767 def last_db_change(self):
1767 def last_db_change(self):
1768 return self.updated_on
1768 return self.updated_on
1769
1769
1770 @property
1770 @property
1771 def clone_uri_hidden(self):
1771 def clone_uri_hidden(self):
1772 clone_uri = self.clone_uri
1772 clone_uri = self.clone_uri
1773 if clone_uri:
1773 if clone_uri:
1774 import urlobject
1774 import urlobject
1775 url_obj = urlobject.URLObject(clone_uri)
1775 url_obj = urlobject.URLObject(clone_uri)
1776 if url_obj.password:
1776 if url_obj.password:
1777 clone_uri = url_obj.with_password('*****')
1777 clone_uri = url_obj.with_password('*****')
1778 return clone_uri
1778 return clone_uri
1779
1779
1780 def clone_url(self, **override):
1780 def clone_url(self, **override):
1781 qualified_home_url = url('home', qualified=True)
1781 qualified_home_url = url('home', qualified=True)
1782
1782
1783 uri_tmpl = None
1783 uri_tmpl = None
1784 if 'with_id' in override:
1784 if 'with_id' in override:
1785 uri_tmpl = self.DEFAULT_CLONE_URI_ID
1785 uri_tmpl = self.DEFAULT_CLONE_URI_ID
1786 del override['with_id']
1786 del override['with_id']
1787
1787
1788 if 'uri_tmpl' in override:
1788 if 'uri_tmpl' in override:
1789 uri_tmpl = override['uri_tmpl']
1789 uri_tmpl = override['uri_tmpl']
1790 del override['uri_tmpl']
1790 del override['uri_tmpl']
1791
1791
1792 # we didn't override our tmpl from **overrides
1792 # we didn't override our tmpl from **overrides
1793 if not uri_tmpl:
1793 if not uri_tmpl:
1794 uri_tmpl = self.DEFAULT_CLONE_URI
1794 uri_tmpl = self.DEFAULT_CLONE_URI
1795 try:
1795 try:
1796 from pylons import tmpl_context as c
1796 from pylons import tmpl_context as c
1797 uri_tmpl = c.clone_uri_tmpl
1797 uri_tmpl = c.clone_uri_tmpl
1798 except Exception:
1798 except Exception:
1799 # in any case if we call this outside of request context,
1799 # in any case if we call this outside of request context,
1800 # ie, not having tmpl_context set up
1800 # ie, not having tmpl_context set up
1801 pass
1801 pass
1802
1802
1803 return get_clone_url(uri_tmpl=uri_tmpl,
1803 return get_clone_url(uri_tmpl=uri_tmpl,
1804 qualifed_home_url=qualified_home_url,
1804 qualifed_home_url=qualified_home_url,
1805 repo_name=self.repo_name,
1805 repo_name=self.repo_name,
1806 repo_id=self.repo_id, **override)
1806 repo_id=self.repo_id, **override)
1807
1807
1808 def set_state(self, state):
1808 def set_state(self, state):
1809 self.repo_state = state
1809 self.repo_state = state
1810 Session().add(self)
1810 Session().add(self)
1811 #==========================================================================
1811 #==========================================================================
1812 # SCM PROPERTIES
1812 # SCM PROPERTIES
1813 #==========================================================================
1813 #==========================================================================
1814
1814
1815 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None):
1815 def get_commit(self, commit_id=None, commit_idx=None, pre_load=None):
1816 return get_commit_safe(
1816 return get_commit_safe(
1817 self.scm_instance(), commit_id, commit_idx, pre_load=pre_load)
1817 self.scm_instance(), commit_id, commit_idx, pre_load=pre_load)
1818
1818
1819 def get_changeset(self, rev=None, pre_load=None):
1819 def get_changeset(self, rev=None, pre_load=None):
1820 warnings.warn("Use get_commit", DeprecationWarning)
1820 warnings.warn("Use get_commit", DeprecationWarning)
1821 commit_id = None
1821 commit_id = None
1822 commit_idx = None
1822 commit_idx = None
1823 if isinstance(rev, basestring):
1823 if isinstance(rev, basestring):
1824 commit_id = rev
1824 commit_id = rev
1825 else:
1825 else:
1826 commit_idx = rev
1826 commit_idx = rev
1827 return self.get_commit(commit_id=commit_id, commit_idx=commit_idx,
1827 return self.get_commit(commit_id=commit_id, commit_idx=commit_idx,
1828 pre_load=pre_load)
1828 pre_load=pre_load)
1829
1829
1830 def get_landing_commit(self):
1830 def get_landing_commit(self):
1831 """
1831 """
1832 Returns landing commit, or if that doesn't exist returns the tip
1832 Returns landing commit, or if that doesn't exist returns the tip
1833 """
1833 """
1834 _rev_type, _rev = self.landing_rev
1834 _rev_type, _rev = self.landing_rev
1835 commit = self.get_commit(_rev)
1835 commit = self.get_commit(_rev)
1836 if isinstance(commit, EmptyCommit):
1836 if isinstance(commit, EmptyCommit):
1837 return self.get_commit()
1837 return self.get_commit()
1838 return commit
1838 return commit
1839
1839
1840 def update_commit_cache(self, cs_cache=None, config=None):
1840 def update_commit_cache(self, cs_cache=None, config=None):
1841 """
1841 """
1842 Update cache of last changeset for repository, keys should be::
1842 Update cache of last changeset for repository, keys should be::
1843
1843
1844 short_id
1844 short_id
1845 raw_id
1845 raw_id
1846 revision
1846 revision
1847 parents
1847 parents
1848 message
1848 message
1849 date
1849 date
1850 author
1850 author
1851
1851
1852 :param cs_cache:
1852 :param cs_cache:
1853 """
1853 """
1854 from rhodecode.lib.vcs.backends.base import BaseChangeset
1854 from rhodecode.lib.vcs.backends.base import BaseChangeset
1855 if cs_cache is None:
1855 if cs_cache is None:
1856 # use no-cache version here
1856 # use no-cache version here
1857 scm_repo = self.scm_instance(cache=False, config=config)
1857 scm_repo = self.scm_instance(cache=False, config=config)
1858 if scm_repo:
1858 if scm_repo:
1859 cs_cache = scm_repo.get_commit(
1859 cs_cache = scm_repo.get_commit(
1860 pre_load=["author", "date", "message", "parents"])
1860 pre_load=["author", "date", "message", "parents"])
1861 else:
1861 else:
1862 cs_cache = EmptyCommit()
1862 cs_cache = EmptyCommit()
1863
1863
1864 if isinstance(cs_cache, BaseChangeset):
1864 if isinstance(cs_cache, BaseChangeset):
1865 cs_cache = cs_cache.__json__()
1865 cs_cache = cs_cache.__json__()
1866
1866
1867 def is_outdated(new_cs_cache):
1867 def is_outdated(new_cs_cache):
1868 if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or
1868 if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or
1869 new_cs_cache['revision'] != self.changeset_cache['revision']):
1869 new_cs_cache['revision'] != self.changeset_cache['revision']):
1870 return True
1870 return True
1871 return False
1871 return False
1872
1872
1873 # check if we have maybe already latest cached revision
1873 # check if we have maybe already latest cached revision
1874 if is_outdated(cs_cache) or not self.changeset_cache:
1874 if is_outdated(cs_cache) or not self.changeset_cache:
1875 _default = datetime.datetime.fromtimestamp(0)
1875 _default = datetime.datetime.fromtimestamp(0)
1876 last_change = cs_cache.get('date') or _default
1876 last_change = cs_cache.get('date') or _default
1877 log.debug('updated repo %s with new cs cache %s',
1877 log.debug('updated repo %s with new cs cache %s',
1878 self.repo_name, cs_cache)
1878 self.repo_name, cs_cache)
1879 self.updated_on = last_change
1879 self.updated_on = last_change
1880 self.changeset_cache = cs_cache
1880 self.changeset_cache = cs_cache
1881 Session().add(self)
1881 Session().add(self)
1882 Session().commit()
1882 Session().commit()
1883 else:
1883 else:
1884 log.debug('Skipping update_commit_cache for repo:`%s` '
1884 log.debug('Skipping update_commit_cache for repo:`%s` '
1885 'commit already with latest changes', self.repo_name)
1885 'commit already with latest changes', self.repo_name)
1886
1886
1887 @property
1887 @property
1888 def tip(self):
1888 def tip(self):
1889 return self.get_commit('tip')
1889 return self.get_commit('tip')
1890
1890
1891 @property
1891 @property
1892 def author(self):
1892 def author(self):
1893 return self.tip.author
1893 return self.tip.author
1894
1894
1895 @property
1895 @property
1896 def last_change(self):
1896 def last_change(self):
1897 return self.scm_instance().last_change
1897 return self.scm_instance().last_change
1898
1898
1899 def get_comments(self, revisions=None):
1899 def get_comments(self, revisions=None):
1900 """
1900 """
1901 Returns comments for this repository grouped by revisions
1901 Returns comments for this repository grouped by revisions
1902
1902
1903 :param revisions: filter query by revisions only
1903 :param revisions: filter query by revisions only
1904 """
1904 """
1905 cmts = ChangesetComment.query()\
1905 cmts = ChangesetComment.query()\
1906 .filter(ChangesetComment.repo == self)
1906 .filter(ChangesetComment.repo == self)
1907 if revisions:
1907 if revisions:
1908 cmts = cmts.filter(ChangesetComment.revision.in_(revisions))
1908 cmts = cmts.filter(ChangesetComment.revision.in_(revisions))
1909 grouped = collections.defaultdict(list)
1909 grouped = collections.defaultdict(list)
1910 for cmt in cmts.all():
1910 for cmt in cmts.all():
1911 grouped[cmt.revision].append(cmt)
1911 grouped[cmt.revision].append(cmt)
1912 return grouped
1912 return grouped
1913
1913
1914 def statuses(self, revisions=None):
1914 def statuses(self, revisions=None):
1915 """
1915 """
1916 Returns statuses for this repository
1916 Returns statuses for this repository
1917
1917
1918 :param revisions: list of revisions to get statuses for
1918 :param revisions: list of revisions to get statuses for
1919 """
1919 """
1920 statuses = ChangesetStatus.query()\
1920 statuses = ChangesetStatus.query()\
1921 .filter(ChangesetStatus.repo == self)\
1921 .filter(ChangesetStatus.repo == self)\
1922 .filter(ChangesetStatus.version == 0)
1922 .filter(ChangesetStatus.version == 0)
1923
1923
1924 if revisions:
1924 if revisions:
1925 # Try doing the filtering in chunks to avoid hitting limits
1925 # Try doing the filtering in chunks to avoid hitting limits
1926 size = 500
1926 size = 500
1927 status_results = []
1927 status_results = []
1928 for chunk in xrange(0, len(revisions), size):
1928 for chunk in xrange(0, len(revisions), size):
1929 status_results += statuses.filter(
1929 status_results += statuses.filter(
1930 ChangesetStatus.revision.in_(
1930 ChangesetStatus.revision.in_(
1931 revisions[chunk: chunk+size])
1931 revisions[chunk: chunk+size])
1932 ).all()
1932 ).all()
1933 else:
1933 else:
1934 status_results = statuses.all()
1934 status_results = statuses.all()
1935
1935
1936 grouped = {}
1936 grouped = {}
1937
1937
1938 # maybe we have open new pullrequest without a status?
1938 # maybe we have open new pullrequest without a status?
1939 stat = ChangesetStatus.STATUS_UNDER_REVIEW
1939 stat = ChangesetStatus.STATUS_UNDER_REVIEW
1940 status_lbl = ChangesetStatus.get_status_lbl(stat)
1940 status_lbl = ChangesetStatus.get_status_lbl(stat)
1941 for pr in PullRequest.query().filter(PullRequest.source_repo == self).all():
1941 for pr in PullRequest.query().filter(PullRequest.source_repo == self).all():
1942 for rev in pr.revisions:
1942 for rev in pr.revisions:
1943 pr_id = pr.pull_request_id
1943 pr_id = pr.pull_request_id
1944 pr_repo = pr.target_repo.repo_name
1944 pr_repo = pr.target_repo.repo_name
1945 grouped[rev] = [stat, status_lbl, pr_id, pr_repo]
1945 grouped[rev] = [stat, status_lbl, pr_id, pr_repo]
1946
1946
1947 for stat in status_results:
1947 for stat in status_results:
1948 pr_id = pr_repo = None
1948 pr_id = pr_repo = None
1949 if stat.pull_request:
1949 if stat.pull_request:
1950 pr_id = stat.pull_request.pull_request_id
1950 pr_id = stat.pull_request.pull_request_id
1951 pr_repo = stat.pull_request.target_repo.repo_name
1951 pr_repo = stat.pull_request.target_repo.repo_name
1952 grouped[stat.revision] = [str(stat.status), stat.status_lbl,
1952 grouped[stat.revision] = [str(stat.status), stat.status_lbl,
1953 pr_id, pr_repo]
1953 pr_id, pr_repo]
1954 return grouped
1954 return grouped
1955
1955
1956 # ==========================================================================
1956 # ==========================================================================
1957 # SCM CACHE INSTANCE
1957 # SCM CACHE INSTANCE
1958 # ==========================================================================
1958 # ==========================================================================
1959
1959
1960 def scm_instance(self, **kwargs):
1960 def scm_instance(self, **kwargs):
1961 import rhodecode
1961 import rhodecode
1962
1962
1963 # Passing a config will not hit the cache currently only used
1963 # Passing a config will not hit the cache currently only used
1964 # for repo2dbmapper
1964 # for repo2dbmapper
1965 config = kwargs.pop('config', None)
1965 config = kwargs.pop('config', None)
1966 cache = kwargs.pop('cache', None)
1966 cache = kwargs.pop('cache', None)
1967 full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache'))
1967 full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache'))
1968 # if cache is NOT defined use default global, else we have a full
1968 # if cache is NOT defined use default global, else we have a full
1969 # control over cache behaviour
1969 # control over cache behaviour
1970 if cache is None and full_cache and not config:
1970 if cache is None and full_cache and not config:
1971 return self._get_instance_cached()
1971 return self._get_instance_cached()
1972 return self._get_instance(cache=bool(cache), config=config)
1972 return self._get_instance(cache=bool(cache), config=config)
1973
1973
1974 def _get_instance_cached(self):
1974 def _get_instance_cached(self):
1975 @cache_region('long_term')
1975 @cache_region('long_term')
1976 def _get_repo(cache_key):
1976 def _get_repo(cache_key):
1977 return self._get_instance()
1977 return self._get_instance()
1978
1978
1979 invalidator_context = CacheKey.repo_context_cache(
1979 invalidator_context = CacheKey.repo_context_cache(
1980 _get_repo, self.repo_name, None, thread_scoped=True)
1980 _get_repo, self.repo_name, None, thread_scoped=True)
1981
1981
1982 with invalidator_context as context:
1982 with invalidator_context as context:
1983 context.invalidate()
1983 context.invalidate()
1984 repo = context.compute()
1984 repo = context.compute()
1985
1985
1986 return repo
1986 return repo
1987
1987
1988 def _get_instance(self, cache=True, config=None):
1988 def _get_instance(self, cache=True, config=None):
1989 config = config or self._config
1989 config = config or self._config
1990 custom_wire = {
1990 custom_wire = {
1991 'cache': cache # controls the vcs.remote cache
1991 'cache': cache # controls the vcs.remote cache
1992 }
1992 }
1993
1993
1994 repo = get_vcs_instance(
1994 repo = get_vcs_instance(
1995 repo_path=safe_str(self.repo_full_path),
1995 repo_path=safe_str(self.repo_full_path),
1996 config=config,
1996 config=config,
1997 with_wire=custom_wire,
1997 with_wire=custom_wire,
1998 create=False)
1998 create=False)
1999
1999
2000 return repo
2000 return repo
2001
2001
2002 def __json__(self):
2002 def __json__(self):
2003 return {'landing_rev': self.landing_rev}
2003 return {'landing_rev': self.landing_rev}
2004
2004
2005 def get_dict(self):
2005 def get_dict(self):
2006
2006
2007 # Since we transformed `repo_name` to a hybrid property, we need to
2007 # Since we transformed `repo_name` to a hybrid property, we need to
2008 # keep compatibility with the code which uses `repo_name` field.
2008 # keep compatibility with the code which uses `repo_name` field.
2009
2009
2010 result = super(Repository, self).get_dict()
2010 result = super(Repository, self).get_dict()
2011 result['repo_name'] = result.pop('_repo_name', None)
2011 result['repo_name'] = result.pop('_repo_name', None)
2012 return result
2012 return result
2013
2013
2014
2014
2015 class RepoGroup(Base, BaseModel):
2015 class RepoGroup(Base, BaseModel):
2016 __tablename__ = 'groups'
2016 __tablename__ = 'groups'
2017 __table_args__ = (
2017 __table_args__ = (
2018 UniqueConstraint('group_name', 'group_parent_id'),
2018 UniqueConstraint('group_name', 'group_parent_id'),
2019 CheckConstraint('group_id != group_parent_id'),
2019 CheckConstraint('group_id != group_parent_id'),
2020 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2020 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2021 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2021 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2022 )
2022 )
2023 __mapper_args__ = {'order_by': 'group_name'}
2023 __mapper_args__ = {'order_by': 'group_name'}
2024
2024
2025 CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups
2025 CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups
2026
2026
2027 group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2027 group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2028 group_name = Column("group_name", String(255), nullable=False, unique=True, default=None)
2028 group_name = Column("group_name", String(255), nullable=False, unique=True, default=None)
2029 group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None)
2029 group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None)
2030 group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None)
2030 group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None)
2031 enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False)
2031 enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False)
2032 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
2032 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None)
2033 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2033 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2034
2034
2035 repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id')
2035 repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id')
2036 users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
2036 users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all')
2037 parent_group = relationship('RepoGroup', remote_side=group_id)
2037 parent_group = relationship('RepoGroup', remote_side=group_id)
2038 user = relationship('User')
2038 user = relationship('User')
2039 integrations = relationship('Integration',
2040 cascade="all, delete, delete-orphan")
2039
2041
2040 def __init__(self, group_name='', parent_group=None):
2042 def __init__(self, group_name='', parent_group=None):
2041 self.group_name = group_name
2043 self.group_name = group_name
2042 self.parent_group = parent_group
2044 self.parent_group = parent_group
2043
2045
2044 def __unicode__(self):
2046 def __unicode__(self):
2045 return u"<%s('id:%s:%s')>" % (self.__class__.__name__, self.group_id,
2047 return u"<%s('id:%s:%s')>" % (self.__class__.__name__, self.group_id,
2046 self.group_name)
2048 self.group_name)
2047
2049
2048 @classmethod
2050 @classmethod
2049 def _generate_choice(cls, repo_group):
2051 def _generate_choice(cls, repo_group):
2050 from webhelpers.html import literal as _literal
2052 from webhelpers.html import literal as _literal
2051 _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k))
2053 _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k))
2052 return repo_group.group_id, _name(repo_group.full_path_splitted)
2054 return repo_group.group_id, _name(repo_group.full_path_splitted)
2053
2055
2054 @classmethod
2056 @classmethod
2055 def groups_choices(cls, groups=None, show_empty_group=True):
2057 def groups_choices(cls, groups=None, show_empty_group=True):
2056 if not groups:
2058 if not groups:
2057 groups = cls.query().all()
2059 groups = cls.query().all()
2058
2060
2059 repo_groups = []
2061 repo_groups = []
2060 if show_empty_group:
2062 if show_empty_group:
2061 repo_groups = [('-1', u'-- %s --' % _('No parent'))]
2063 repo_groups = [('-1', u'-- %s --' % _('No parent'))]
2062
2064
2063 repo_groups.extend([cls._generate_choice(x) for x in groups])
2065 repo_groups.extend([cls._generate_choice(x) for x in groups])
2064
2066
2065 repo_groups = sorted(
2067 repo_groups = sorted(
2066 repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0])
2068 repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0])
2067 return repo_groups
2069 return repo_groups
2068
2070
2069 @classmethod
2071 @classmethod
2070 def url_sep(cls):
2072 def url_sep(cls):
2071 return URL_SEP
2073 return URL_SEP
2072
2074
2073 @classmethod
2075 @classmethod
2074 def get_by_group_name(cls, group_name, cache=False, case_insensitive=False):
2076 def get_by_group_name(cls, group_name, cache=False, case_insensitive=False):
2075 if case_insensitive:
2077 if case_insensitive:
2076 gr = cls.query().filter(func.lower(cls.group_name)
2078 gr = cls.query().filter(func.lower(cls.group_name)
2077 == func.lower(group_name))
2079 == func.lower(group_name))
2078 else:
2080 else:
2079 gr = cls.query().filter(cls.group_name == group_name)
2081 gr = cls.query().filter(cls.group_name == group_name)
2080 if cache:
2082 if cache:
2081 gr = gr.options(FromCache(
2083 gr = gr.options(FromCache(
2082 "sql_cache_short",
2084 "sql_cache_short",
2083 "get_group_%s" % _hash_key(group_name)))
2085 "get_group_%s" % _hash_key(group_name)))
2084 return gr.scalar()
2086 return gr.scalar()
2085
2087
2086 @classmethod
2088 @classmethod
2087 def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None),
2089 def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None),
2088 case_insensitive=True):
2090 case_insensitive=True):
2089 q = RepoGroup.query()
2091 q = RepoGroup.query()
2090
2092
2091 if not isinstance(user_id, Optional):
2093 if not isinstance(user_id, Optional):
2092 q = q.filter(RepoGroup.user_id == user_id)
2094 q = q.filter(RepoGroup.user_id == user_id)
2093
2095
2094 if not isinstance(group_id, Optional):
2096 if not isinstance(group_id, Optional):
2095 q = q.filter(RepoGroup.group_parent_id == group_id)
2097 q = q.filter(RepoGroup.group_parent_id == group_id)
2096
2098
2097 if case_insensitive:
2099 if case_insensitive:
2098 q = q.order_by(func.lower(RepoGroup.group_name))
2100 q = q.order_by(func.lower(RepoGroup.group_name))
2099 else:
2101 else:
2100 q = q.order_by(RepoGroup.group_name)
2102 q = q.order_by(RepoGroup.group_name)
2101 return q.all()
2103 return q.all()
2102
2104
2103 @property
2105 @property
2104 def parents(self):
2106 def parents(self):
2105 parents_recursion_limit = 10
2107 parents_recursion_limit = 10
2106 groups = []
2108 groups = []
2107 if self.parent_group is None:
2109 if self.parent_group is None:
2108 return groups
2110 return groups
2109 cur_gr = self.parent_group
2111 cur_gr = self.parent_group
2110 groups.insert(0, cur_gr)
2112 groups.insert(0, cur_gr)
2111 cnt = 0
2113 cnt = 0
2112 while 1:
2114 while 1:
2113 cnt += 1
2115 cnt += 1
2114 gr = getattr(cur_gr, 'parent_group', None)
2116 gr = getattr(cur_gr, 'parent_group', None)
2115 cur_gr = cur_gr.parent_group
2117 cur_gr = cur_gr.parent_group
2116 if gr is None:
2118 if gr is None:
2117 break
2119 break
2118 if cnt == parents_recursion_limit:
2120 if cnt == parents_recursion_limit:
2119 # this will prevent accidental infinit loops
2121 # this will prevent accidental infinit loops
2120 log.error(('more than %s parents found for group %s, stopping '
2122 log.error(('more than %s parents found for group %s, stopping '
2121 'recursive parent fetching' % (parents_recursion_limit, self)))
2123 'recursive parent fetching' % (parents_recursion_limit, self)))
2122 break
2124 break
2123
2125
2124 groups.insert(0, gr)
2126 groups.insert(0, gr)
2125 return groups
2127 return groups
2126
2128
2127 @property
2129 @property
2128 def children(self):
2130 def children(self):
2129 return RepoGroup.query().filter(RepoGroup.parent_group == self)
2131 return RepoGroup.query().filter(RepoGroup.parent_group == self)
2130
2132
2131 @property
2133 @property
2132 def name(self):
2134 def name(self):
2133 return self.group_name.split(RepoGroup.url_sep())[-1]
2135 return self.group_name.split(RepoGroup.url_sep())[-1]
2134
2136
2135 @property
2137 @property
2136 def full_path(self):
2138 def full_path(self):
2137 return self.group_name
2139 return self.group_name
2138
2140
2139 @property
2141 @property
2140 def full_path_splitted(self):
2142 def full_path_splitted(self):
2141 return self.group_name.split(RepoGroup.url_sep())
2143 return self.group_name.split(RepoGroup.url_sep())
2142
2144
2143 @property
2145 @property
2144 def repositories(self):
2146 def repositories(self):
2145 return Repository.query()\
2147 return Repository.query()\
2146 .filter(Repository.group == self)\
2148 .filter(Repository.group == self)\
2147 .order_by(Repository.repo_name)
2149 .order_by(Repository.repo_name)
2148
2150
2149 @property
2151 @property
2150 def repositories_recursive_count(self):
2152 def repositories_recursive_count(self):
2151 cnt = self.repositories.count()
2153 cnt = self.repositories.count()
2152
2154
2153 def children_count(group):
2155 def children_count(group):
2154 cnt = 0
2156 cnt = 0
2155 for child in group.children:
2157 for child in group.children:
2156 cnt += child.repositories.count()
2158 cnt += child.repositories.count()
2157 cnt += children_count(child)
2159 cnt += children_count(child)
2158 return cnt
2160 return cnt
2159
2161
2160 return cnt + children_count(self)
2162 return cnt + children_count(self)
2161
2163
2162 def _recursive_objects(self, include_repos=True):
2164 def _recursive_objects(self, include_repos=True):
2163 all_ = []
2165 all_ = []
2164
2166
2165 def _get_members(root_gr):
2167 def _get_members(root_gr):
2166 if include_repos:
2168 if include_repos:
2167 for r in root_gr.repositories:
2169 for r in root_gr.repositories:
2168 all_.append(r)
2170 all_.append(r)
2169 childs = root_gr.children.all()
2171 childs = root_gr.children.all()
2170 if childs:
2172 if childs:
2171 for gr in childs:
2173 for gr in childs:
2172 all_.append(gr)
2174 all_.append(gr)
2173 _get_members(gr)
2175 _get_members(gr)
2174
2176
2175 _get_members(self)
2177 _get_members(self)
2176 return [self] + all_
2178 return [self] + all_
2177
2179
2178 def recursive_groups_and_repos(self):
2180 def recursive_groups_and_repos(self):
2179 """
2181 """
2180 Recursive return all groups, with repositories in those groups
2182 Recursive return all groups, with repositories in those groups
2181 """
2183 """
2182 return self._recursive_objects()
2184 return self._recursive_objects()
2183
2185
2184 def recursive_groups(self):
2186 def recursive_groups(self):
2185 """
2187 """
2186 Returns all children groups for this group including children of children
2188 Returns all children groups for this group including children of children
2187 """
2189 """
2188 return self._recursive_objects(include_repos=False)
2190 return self._recursive_objects(include_repos=False)
2189
2191
2190 def get_new_name(self, group_name):
2192 def get_new_name(self, group_name):
2191 """
2193 """
2192 returns new full group name based on parent and new name
2194 returns new full group name based on parent and new name
2193
2195
2194 :param group_name:
2196 :param group_name:
2195 """
2197 """
2196 path_prefix = (self.parent_group.full_path_splitted if
2198 path_prefix = (self.parent_group.full_path_splitted if
2197 self.parent_group else [])
2199 self.parent_group else [])
2198 return RepoGroup.url_sep().join(path_prefix + [group_name])
2200 return RepoGroup.url_sep().join(path_prefix + [group_name])
2199
2201
2200 def permissions(self, with_admins=True, with_owner=True):
2202 def permissions(self, with_admins=True, with_owner=True):
2201 q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self)
2203 q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self)
2202 q = q.options(joinedload(UserRepoGroupToPerm.group),
2204 q = q.options(joinedload(UserRepoGroupToPerm.group),
2203 joinedload(UserRepoGroupToPerm.user),
2205 joinedload(UserRepoGroupToPerm.user),
2204 joinedload(UserRepoGroupToPerm.permission),)
2206 joinedload(UserRepoGroupToPerm.permission),)
2205
2207
2206 # get owners and admins and permissions. We do a trick of re-writing
2208 # get owners and admins and permissions. We do a trick of re-writing
2207 # objects from sqlalchemy to named-tuples due to sqlalchemy session
2209 # objects from sqlalchemy to named-tuples due to sqlalchemy session
2208 # has a global reference and changing one object propagates to all
2210 # has a global reference and changing one object propagates to all
2209 # others. This means if admin is also an owner admin_row that change
2211 # others. This means if admin is also an owner admin_row that change
2210 # would propagate to both objects
2212 # would propagate to both objects
2211 perm_rows = []
2213 perm_rows = []
2212 for _usr in q.all():
2214 for _usr in q.all():
2213 usr = AttributeDict(_usr.user.get_dict())
2215 usr = AttributeDict(_usr.user.get_dict())
2214 usr.permission = _usr.permission.permission_name
2216 usr.permission = _usr.permission.permission_name
2215 perm_rows.append(usr)
2217 perm_rows.append(usr)
2216
2218
2217 # filter the perm rows by 'default' first and then sort them by
2219 # filter the perm rows by 'default' first and then sort them by
2218 # admin,write,read,none permissions sorted again alphabetically in
2220 # admin,write,read,none permissions sorted again alphabetically in
2219 # each group
2221 # each group
2220 perm_rows = sorted(perm_rows, key=display_sort)
2222 perm_rows = sorted(perm_rows, key=display_sort)
2221
2223
2222 _admin_perm = 'group.admin'
2224 _admin_perm = 'group.admin'
2223 owner_row = []
2225 owner_row = []
2224 if with_owner:
2226 if with_owner:
2225 usr = AttributeDict(self.user.get_dict())
2227 usr = AttributeDict(self.user.get_dict())
2226 usr.owner_row = True
2228 usr.owner_row = True
2227 usr.permission = _admin_perm
2229 usr.permission = _admin_perm
2228 owner_row.append(usr)
2230 owner_row.append(usr)
2229
2231
2230 super_admin_rows = []
2232 super_admin_rows = []
2231 if with_admins:
2233 if with_admins:
2232 for usr in User.get_all_super_admins():
2234 for usr in User.get_all_super_admins():
2233 # if this admin is also owner, don't double the record
2235 # if this admin is also owner, don't double the record
2234 if usr.user_id == owner_row[0].user_id:
2236 if usr.user_id == owner_row[0].user_id:
2235 owner_row[0].admin_row = True
2237 owner_row[0].admin_row = True
2236 else:
2238 else:
2237 usr = AttributeDict(usr.get_dict())
2239 usr = AttributeDict(usr.get_dict())
2238 usr.admin_row = True
2240 usr.admin_row = True
2239 usr.permission = _admin_perm
2241 usr.permission = _admin_perm
2240 super_admin_rows.append(usr)
2242 super_admin_rows.append(usr)
2241
2243
2242 return super_admin_rows + owner_row + perm_rows
2244 return super_admin_rows + owner_row + perm_rows
2243
2245
2244 def permission_user_groups(self):
2246 def permission_user_groups(self):
2245 q = UserGroupRepoGroupToPerm.query().filter(UserGroupRepoGroupToPerm.group == self)
2247 q = UserGroupRepoGroupToPerm.query().filter(UserGroupRepoGroupToPerm.group == self)
2246 q = q.options(joinedload(UserGroupRepoGroupToPerm.group),
2248 q = q.options(joinedload(UserGroupRepoGroupToPerm.group),
2247 joinedload(UserGroupRepoGroupToPerm.users_group),
2249 joinedload(UserGroupRepoGroupToPerm.users_group),
2248 joinedload(UserGroupRepoGroupToPerm.permission),)
2250 joinedload(UserGroupRepoGroupToPerm.permission),)
2249
2251
2250 perm_rows = []
2252 perm_rows = []
2251 for _user_group in q.all():
2253 for _user_group in q.all():
2252 usr = AttributeDict(_user_group.users_group.get_dict())
2254 usr = AttributeDict(_user_group.users_group.get_dict())
2253 usr.permission = _user_group.permission.permission_name
2255 usr.permission = _user_group.permission.permission_name
2254 perm_rows.append(usr)
2256 perm_rows.append(usr)
2255
2257
2256 return perm_rows
2258 return perm_rows
2257
2259
2258 def get_api_data(self):
2260 def get_api_data(self):
2259 """
2261 """
2260 Common function for generating api data
2262 Common function for generating api data
2261
2263
2262 """
2264 """
2263 group = self
2265 group = self
2264 data = {
2266 data = {
2265 'group_id': group.group_id,
2267 'group_id': group.group_id,
2266 'group_name': group.group_name,
2268 'group_name': group.group_name,
2267 'group_description': group.group_description,
2269 'group_description': group.group_description,
2268 'parent_group': group.parent_group.group_name if group.parent_group else None,
2270 'parent_group': group.parent_group.group_name if group.parent_group else None,
2269 'repositories': [x.repo_name for x in group.repositories],
2271 'repositories': [x.repo_name for x in group.repositories],
2270 'owner': group.user.username,
2272 'owner': group.user.username,
2271 }
2273 }
2272 return data
2274 return data
2273
2275
2274
2276
2275 class Permission(Base, BaseModel):
2277 class Permission(Base, BaseModel):
2276 __tablename__ = 'permissions'
2278 __tablename__ = 'permissions'
2277 __table_args__ = (
2279 __table_args__ = (
2278 Index('p_perm_name_idx', 'permission_name'),
2280 Index('p_perm_name_idx', 'permission_name'),
2279 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2281 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2280 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2282 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2281 )
2283 )
2282 PERMS = [
2284 PERMS = [
2283 ('hg.admin', _('RhodeCode Super Administrator')),
2285 ('hg.admin', _('RhodeCode Super Administrator')),
2284
2286
2285 ('repository.none', _('Repository no access')),
2287 ('repository.none', _('Repository no access')),
2286 ('repository.read', _('Repository read access')),
2288 ('repository.read', _('Repository read access')),
2287 ('repository.write', _('Repository write access')),
2289 ('repository.write', _('Repository write access')),
2288 ('repository.admin', _('Repository admin access')),
2290 ('repository.admin', _('Repository admin access')),
2289
2291
2290 ('group.none', _('Repository group no access')),
2292 ('group.none', _('Repository group no access')),
2291 ('group.read', _('Repository group read access')),
2293 ('group.read', _('Repository group read access')),
2292 ('group.write', _('Repository group write access')),
2294 ('group.write', _('Repository group write access')),
2293 ('group.admin', _('Repository group admin access')),
2295 ('group.admin', _('Repository group admin access')),
2294
2296
2295 ('usergroup.none', _('User group no access')),
2297 ('usergroup.none', _('User group no access')),
2296 ('usergroup.read', _('User group read access')),
2298 ('usergroup.read', _('User group read access')),
2297 ('usergroup.write', _('User group write access')),
2299 ('usergroup.write', _('User group write access')),
2298 ('usergroup.admin', _('User group admin access')),
2300 ('usergroup.admin', _('User group admin access')),
2299
2301
2300 ('hg.repogroup.create.false', _('Repository Group creation disabled')),
2302 ('hg.repogroup.create.false', _('Repository Group creation disabled')),
2301 ('hg.repogroup.create.true', _('Repository Group creation enabled')),
2303 ('hg.repogroup.create.true', _('Repository Group creation enabled')),
2302
2304
2303 ('hg.usergroup.create.false', _('User Group creation disabled')),
2305 ('hg.usergroup.create.false', _('User Group creation disabled')),
2304 ('hg.usergroup.create.true', _('User Group creation enabled')),
2306 ('hg.usergroup.create.true', _('User Group creation enabled')),
2305
2307
2306 ('hg.create.none', _('Repository creation disabled')),
2308 ('hg.create.none', _('Repository creation disabled')),
2307 ('hg.create.repository', _('Repository creation enabled')),
2309 ('hg.create.repository', _('Repository creation enabled')),
2308 ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')),
2310 ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')),
2309 ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')),
2311 ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')),
2310
2312
2311 ('hg.fork.none', _('Repository forking disabled')),
2313 ('hg.fork.none', _('Repository forking disabled')),
2312 ('hg.fork.repository', _('Repository forking enabled')),
2314 ('hg.fork.repository', _('Repository forking enabled')),
2313
2315
2314 ('hg.register.none', _('Registration disabled')),
2316 ('hg.register.none', _('Registration disabled')),
2315 ('hg.register.manual_activate', _('User Registration with manual account activation')),
2317 ('hg.register.manual_activate', _('User Registration with manual account activation')),
2316 ('hg.register.auto_activate', _('User Registration with automatic account activation')),
2318 ('hg.register.auto_activate', _('User Registration with automatic account activation')),
2317
2319
2318 ('hg.extern_activate.manual', _('Manual activation of external account')),
2320 ('hg.extern_activate.manual', _('Manual activation of external account')),
2319 ('hg.extern_activate.auto', _('Automatic activation of external account')),
2321 ('hg.extern_activate.auto', _('Automatic activation of external account')),
2320
2322
2321 ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')),
2323 ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')),
2322 ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')),
2324 ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')),
2323 ]
2325 ]
2324
2326
2325 # definition of system default permissions for DEFAULT user
2327 # definition of system default permissions for DEFAULT user
2326 DEFAULT_USER_PERMISSIONS = [
2328 DEFAULT_USER_PERMISSIONS = [
2327 'repository.read',
2329 'repository.read',
2328 'group.read',
2330 'group.read',
2329 'usergroup.read',
2331 'usergroup.read',
2330 'hg.create.repository',
2332 'hg.create.repository',
2331 'hg.repogroup.create.false',
2333 'hg.repogroup.create.false',
2332 'hg.usergroup.create.false',
2334 'hg.usergroup.create.false',
2333 'hg.create.write_on_repogroup.true',
2335 'hg.create.write_on_repogroup.true',
2334 'hg.fork.repository',
2336 'hg.fork.repository',
2335 'hg.register.manual_activate',
2337 'hg.register.manual_activate',
2336 'hg.extern_activate.auto',
2338 'hg.extern_activate.auto',
2337 'hg.inherit_default_perms.true',
2339 'hg.inherit_default_perms.true',
2338 ]
2340 ]
2339
2341
2340 # defines which permissions are more important higher the more important
2342 # defines which permissions are more important higher the more important
2341 # Weight defines which permissions are more important.
2343 # Weight defines which permissions are more important.
2342 # The higher number the more important.
2344 # The higher number the more important.
2343 PERM_WEIGHTS = {
2345 PERM_WEIGHTS = {
2344 'repository.none': 0,
2346 'repository.none': 0,
2345 'repository.read': 1,
2347 'repository.read': 1,
2346 'repository.write': 3,
2348 'repository.write': 3,
2347 'repository.admin': 4,
2349 'repository.admin': 4,
2348
2350
2349 'group.none': 0,
2351 'group.none': 0,
2350 'group.read': 1,
2352 'group.read': 1,
2351 'group.write': 3,
2353 'group.write': 3,
2352 'group.admin': 4,
2354 'group.admin': 4,
2353
2355
2354 'usergroup.none': 0,
2356 'usergroup.none': 0,
2355 'usergroup.read': 1,
2357 'usergroup.read': 1,
2356 'usergroup.write': 3,
2358 'usergroup.write': 3,
2357 'usergroup.admin': 4,
2359 'usergroup.admin': 4,
2358
2360
2359 'hg.repogroup.create.false': 0,
2361 'hg.repogroup.create.false': 0,
2360 'hg.repogroup.create.true': 1,
2362 'hg.repogroup.create.true': 1,
2361
2363
2362 'hg.usergroup.create.false': 0,
2364 'hg.usergroup.create.false': 0,
2363 'hg.usergroup.create.true': 1,
2365 'hg.usergroup.create.true': 1,
2364
2366
2365 'hg.fork.none': 0,
2367 'hg.fork.none': 0,
2366 'hg.fork.repository': 1,
2368 'hg.fork.repository': 1,
2367 'hg.create.none': 0,
2369 'hg.create.none': 0,
2368 'hg.create.repository': 1
2370 'hg.create.repository': 1
2369 }
2371 }
2370
2372
2371 permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2373 permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2372 permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None)
2374 permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None)
2373 permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None)
2375 permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None)
2374
2376
2375 def __unicode__(self):
2377 def __unicode__(self):
2376 return u"<%s('%s:%s')>" % (
2378 return u"<%s('%s:%s')>" % (
2377 self.__class__.__name__, self.permission_id, self.permission_name
2379 self.__class__.__name__, self.permission_id, self.permission_name
2378 )
2380 )
2379
2381
2380 @classmethod
2382 @classmethod
2381 def get_by_key(cls, key):
2383 def get_by_key(cls, key):
2382 return cls.query().filter(cls.permission_name == key).scalar()
2384 return cls.query().filter(cls.permission_name == key).scalar()
2383
2385
2384 @classmethod
2386 @classmethod
2385 def get_default_repo_perms(cls, user_id, repo_id=None):
2387 def get_default_repo_perms(cls, user_id, repo_id=None):
2386 q = Session().query(UserRepoToPerm, Repository, Permission)\
2388 q = Session().query(UserRepoToPerm, Repository, Permission)\
2387 .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\
2389 .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\
2388 .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\
2390 .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\
2389 .filter(UserRepoToPerm.user_id == user_id)
2391 .filter(UserRepoToPerm.user_id == user_id)
2390 if repo_id:
2392 if repo_id:
2391 q = q.filter(UserRepoToPerm.repository_id == repo_id)
2393 q = q.filter(UserRepoToPerm.repository_id == repo_id)
2392 return q.all()
2394 return q.all()
2393
2395
2394 @classmethod
2396 @classmethod
2395 def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None):
2397 def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None):
2396 q = Session().query(UserGroupRepoToPerm, Repository, Permission)\
2398 q = Session().query(UserGroupRepoToPerm, Repository, Permission)\
2397 .join(
2399 .join(
2398 Permission,
2400 Permission,
2399 UserGroupRepoToPerm.permission_id == Permission.permission_id)\
2401 UserGroupRepoToPerm.permission_id == Permission.permission_id)\
2400 .join(
2402 .join(
2401 Repository,
2403 Repository,
2402 UserGroupRepoToPerm.repository_id == Repository.repo_id)\
2404 UserGroupRepoToPerm.repository_id == Repository.repo_id)\
2403 .join(
2405 .join(
2404 UserGroup,
2406 UserGroup,
2405 UserGroupRepoToPerm.users_group_id ==
2407 UserGroupRepoToPerm.users_group_id ==
2406 UserGroup.users_group_id)\
2408 UserGroup.users_group_id)\
2407 .join(
2409 .join(
2408 UserGroupMember,
2410 UserGroupMember,
2409 UserGroupRepoToPerm.users_group_id ==
2411 UserGroupRepoToPerm.users_group_id ==
2410 UserGroupMember.users_group_id)\
2412 UserGroupMember.users_group_id)\
2411 .filter(
2413 .filter(
2412 UserGroupMember.user_id == user_id,
2414 UserGroupMember.user_id == user_id,
2413 UserGroup.users_group_active == true())
2415 UserGroup.users_group_active == true())
2414 if repo_id:
2416 if repo_id:
2415 q = q.filter(UserGroupRepoToPerm.repository_id == repo_id)
2417 q = q.filter(UserGroupRepoToPerm.repository_id == repo_id)
2416 return q.all()
2418 return q.all()
2417
2419
2418 @classmethod
2420 @classmethod
2419 def get_default_group_perms(cls, user_id, repo_group_id=None):
2421 def get_default_group_perms(cls, user_id, repo_group_id=None):
2420 q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\
2422 q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\
2421 .join((Permission, UserRepoGroupToPerm.permission_id == Permission.permission_id))\
2423 .join((Permission, UserRepoGroupToPerm.permission_id == Permission.permission_id))\
2422 .join((RepoGroup, UserRepoGroupToPerm.group_id == RepoGroup.group_id))\
2424 .join((RepoGroup, UserRepoGroupToPerm.group_id == RepoGroup.group_id))\
2423 .filter(UserRepoGroupToPerm.user_id == user_id)
2425 .filter(UserRepoGroupToPerm.user_id == user_id)
2424 if repo_group_id:
2426 if repo_group_id:
2425 q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id)
2427 q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id)
2426 return q.all()
2428 return q.all()
2427
2429
2428 @classmethod
2430 @classmethod
2429 def get_default_group_perms_from_user_group(
2431 def get_default_group_perms_from_user_group(
2430 cls, user_id, repo_group_id=None):
2432 cls, user_id, repo_group_id=None):
2431 q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\
2433 q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\
2432 .join(
2434 .join(
2433 Permission,
2435 Permission,
2434 UserGroupRepoGroupToPerm.permission_id ==
2436 UserGroupRepoGroupToPerm.permission_id ==
2435 Permission.permission_id)\
2437 Permission.permission_id)\
2436 .join(
2438 .join(
2437 RepoGroup,
2439 RepoGroup,
2438 UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\
2440 UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\
2439 .join(
2441 .join(
2440 UserGroup,
2442 UserGroup,
2441 UserGroupRepoGroupToPerm.users_group_id ==
2443 UserGroupRepoGroupToPerm.users_group_id ==
2442 UserGroup.users_group_id)\
2444 UserGroup.users_group_id)\
2443 .join(
2445 .join(
2444 UserGroupMember,
2446 UserGroupMember,
2445 UserGroupRepoGroupToPerm.users_group_id ==
2447 UserGroupRepoGroupToPerm.users_group_id ==
2446 UserGroupMember.users_group_id)\
2448 UserGroupMember.users_group_id)\
2447 .filter(
2449 .filter(
2448 UserGroupMember.user_id == user_id,
2450 UserGroupMember.user_id == user_id,
2449 UserGroup.users_group_active == true())
2451 UserGroup.users_group_active == true())
2450 if repo_group_id:
2452 if repo_group_id:
2451 q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id)
2453 q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id)
2452 return q.all()
2454 return q.all()
2453
2455
2454 @classmethod
2456 @classmethod
2455 def get_default_user_group_perms(cls, user_id, user_group_id=None):
2457 def get_default_user_group_perms(cls, user_id, user_group_id=None):
2456 q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\
2458 q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\
2457 .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\
2459 .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\
2458 .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\
2460 .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\
2459 .filter(UserUserGroupToPerm.user_id == user_id)
2461 .filter(UserUserGroupToPerm.user_id == user_id)
2460 if user_group_id:
2462 if user_group_id:
2461 q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id)
2463 q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id)
2462 return q.all()
2464 return q.all()
2463
2465
2464 @classmethod
2466 @classmethod
2465 def get_default_user_group_perms_from_user_group(
2467 def get_default_user_group_perms_from_user_group(
2466 cls, user_id, user_group_id=None):
2468 cls, user_id, user_group_id=None):
2467 TargetUserGroup = aliased(UserGroup, name='target_user_group')
2469 TargetUserGroup = aliased(UserGroup, name='target_user_group')
2468 q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\
2470 q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\
2469 .join(
2471 .join(
2470 Permission,
2472 Permission,
2471 UserGroupUserGroupToPerm.permission_id ==
2473 UserGroupUserGroupToPerm.permission_id ==
2472 Permission.permission_id)\
2474 Permission.permission_id)\
2473 .join(
2475 .join(
2474 TargetUserGroup,
2476 TargetUserGroup,
2475 UserGroupUserGroupToPerm.target_user_group_id ==
2477 UserGroupUserGroupToPerm.target_user_group_id ==
2476 TargetUserGroup.users_group_id)\
2478 TargetUserGroup.users_group_id)\
2477 .join(
2479 .join(
2478 UserGroup,
2480 UserGroup,
2479 UserGroupUserGroupToPerm.user_group_id ==
2481 UserGroupUserGroupToPerm.user_group_id ==
2480 UserGroup.users_group_id)\
2482 UserGroup.users_group_id)\
2481 .join(
2483 .join(
2482 UserGroupMember,
2484 UserGroupMember,
2483 UserGroupUserGroupToPerm.user_group_id ==
2485 UserGroupUserGroupToPerm.user_group_id ==
2484 UserGroupMember.users_group_id)\
2486 UserGroupMember.users_group_id)\
2485 .filter(
2487 .filter(
2486 UserGroupMember.user_id == user_id,
2488 UserGroupMember.user_id == user_id,
2487 UserGroup.users_group_active == true())
2489 UserGroup.users_group_active == true())
2488 if user_group_id:
2490 if user_group_id:
2489 q = q.filter(
2491 q = q.filter(
2490 UserGroupUserGroupToPerm.user_group_id == user_group_id)
2492 UserGroupUserGroupToPerm.user_group_id == user_group_id)
2491
2493
2492 return q.all()
2494 return q.all()
2493
2495
2494
2496
2495 class UserRepoToPerm(Base, BaseModel):
2497 class UserRepoToPerm(Base, BaseModel):
2496 __tablename__ = 'repo_to_perm'
2498 __tablename__ = 'repo_to_perm'
2497 __table_args__ = (
2499 __table_args__ = (
2498 UniqueConstraint('user_id', 'repository_id', 'permission_id'),
2500 UniqueConstraint('user_id', 'repository_id', 'permission_id'),
2499 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2501 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2500 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2502 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2501 )
2503 )
2502 repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2504 repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2503 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2505 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2504 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2506 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2505 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2507 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2506
2508
2507 user = relationship('User')
2509 user = relationship('User')
2508 repository = relationship('Repository')
2510 repository = relationship('Repository')
2509 permission = relationship('Permission')
2511 permission = relationship('Permission')
2510
2512
2511 @classmethod
2513 @classmethod
2512 def create(cls, user, repository, permission):
2514 def create(cls, user, repository, permission):
2513 n = cls()
2515 n = cls()
2514 n.user = user
2516 n.user = user
2515 n.repository = repository
2517 n.repository = repository
2516 n.permission = permission
2518 n.permission = permission
2517 Session().add(n)
2519 Session().add(n)
2518 return n
2520 return n
2519
2521
2520 def __unicode__(self):
2522 def __unicode__(self):
2521 return u'<%s => %s >' % (self.user, self.repository)
2523 return u'<%s => %s >' % (self.user, self.repository)
2522
2524
2523
2525
2524 class UserUserGroupToPerm(Base, BaseModel):
2526 class UserUserGroupToPerm(Base, BaseModel):
2525 __tablename__ = 'user_user_group_to_perm'
2527 __tablename__ = 'user_user_group_to_perm'
2526 __table_args__ = (
2528 __table_args__ = (
2527 UniqueConstraint('user_id', 'user_group_id', 'permission_id'),
2529 UniqueConstraint('user_id', 'user_group_id', 'permission_id'),
2528 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2530 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2529 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2531 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2530 )
2532 )
2531 user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2533 user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2532 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2534 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2533 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2535 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2534 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2536 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2535
2537
2536 user = relationship('User')
2538 user = relationship('User')
2537 user_group = relationship('UserGroup')
2539 user_group = relationship('UserGroup')
2538 permission = relationship('Permission')
2540 permission = relationship('Permission')
2539
2541
2540 @classmethod
2542 @classmethod
2541 def create(cls, user, user_group, permission):
2543 def create(cls, user, user_group, permission):
2542 n = cls()
2544 n = cls()
2543 n.user = user
2545 n.user = user
2544 n.user_group = user_group
2546 n.user_group = user_group
2545 n.permission = permission
2547 n.permission = permission
2546 Session().add(n)
2548 Session().add(n)
2547 return n
2549 return n
2548
2550
2549 def __unicode__(self):
2551 def __unicode__(self):
2550 return u'<%s => %s >' % (self.user, self.user_group)
2552 return u'<%s => %s >' % (self.user, self.user_group)
2551
2553
2552
2554
2553 class UserToPerm(Base, BaseModel):
2555 class UserToPerm(Base, BaseModel):
2554 __tablename__ = 'user_to_perm'
2556 __tablename__ = 'user_to_perm'
2555 __table_args__ = (
2557 __table_args__ = (
2556 UniqueConstraint('user_id', 'permission_id'),
2558 UniqueConstraint('user_id', 'permission_id'),
2557 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2559 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2558 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2560 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2559 )
2561 )
2560 user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2562 user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2561 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2563 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2562 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2564 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2563
2565
2564 user = relationship('User')
2566 user = relationship('User')
2565 permission = relationship('Permission', lazy='joined')
2567 permission = relationship('Permission', lazy='joined')
2566
2568
2567 def __unicode__(self):
2569 def __unicode__(self):
2568 return u'<%s => %s >' % (self.user, self.permission)
2570 return u'<%s => %s >' % (self.user, self.permission)
2569
2571
2570
2572
2571 class UserGroupRepoToPerm(Base, BaseModel):
2573 class UserGroupRepoToPerm(Base, BaseModel):
2572 __tablename__ = 'users_group_repo_to_perm'
2574 __tablename__ = 'users_group_repo_to_perm'
2573 __table_args__ = (
2575 __table_args__ = (
2574 UniqueConstraint('repository_id', 'users_group_id', 'permission_id'),
2576 UniqueConstraint('repository_id', 'users_group_id', 'permission_id'),
2575 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2577 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2576 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2578 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2577 )
2579 )
2578 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2580 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2579 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2581 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2580 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2582 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2581 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2583 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None)
2582
2584
2583 users_group = relationship('UserGroup')
2585 users_group = relationship('UserGroup')
2584 permission = relationship('Permission')
2586 permission = relationship('Permission')
2585 repository = relationship('Repository')
2587 repository = relationship('Repository')
2586
2588
2587 @classmethod
2589 @classmethod
2588 def create(cls, users_group, repository, permission):
2590 def create(cls, users_group, repository, permission):
2589 n = cls()
2591 n = cls()
2590 n.users_group = users_group
2592 n.users_group = users_group
2591 n.repository = repository
2593 n.repository = repository
2592 n.permission = permission
2594 n.permission = permission
2593 Session().add(n)
2595 Session().add(n)
2594 return n
2596 return n
2595
2597
2596 def __unicode__(self):
2598 def __unicode__(self):
2597 return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository)
2599 return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository)
2598
2600
2599
2601
2600 class UserGroupUserGroupToPerm(Base, BaseModel):
2602 class UserGroupUserGroupToPerm(Base, BaseModel):
2601 __tablename__ = 'user_group_user_group_to_perm'
2603 __tablename__ = 'user_group_user_group_to_perm'
2602 __table_args__ = (
2604 __table_args__ = (
2603 UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
2605 UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
2604 CheckConstraint('target_user_group_id != user_group_id'),
2606 CheckConstraint('target_user_group_id != user_group_id'),
2605 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2607 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2606 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2608 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2607 )
2609 )
2608 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)
2610 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)
2609 target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2611 target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2610 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2612 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2611 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2613 user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2612
2614
2613 target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id')
2615 target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id')
2614 user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id')
2616 user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id')
2615 permission = relationship('Permission')
2617 permission = relationship('Permission')
2616
2618
2617 @classmethod
2619 @classmethod
2618 def create(cls, target_user_group, user_group, permission):
2620 def create(cls, target_user_group, user_group, permission):
2619 n = cls()
2621 n = cls()
2620 n.target_user_group = target_user_group
2622 n.target_user_group = target_user_group
2621 n.user_group = user_group
2623 n.user_group = user_group
2622 n.permission = permission
2624 n.permission = permission
2623 Session().add(n)
2625 Session().add(n)
2624 return n
2626 return n
2625
2627
2626 def __unicode__(self):
2628 def __unicode__(self):
2627 return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group)
2629 return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group)
2628
2630
2629
2631
2630 class UserGroupToPerm(Base, BaseModel):
2632 class UserGroupToPerm(Base, BaseModel):
2631 __tablename__ = 'users_group_to_perm'
2633 __tablename__ = 'users_group_to_perm'
2632 __table_args__ = (
2634 __table_args__ = (
2633 UniqueConstraint('users_group_id', 'permission_id',),
2635 UniqueConstraint('users_group_id', 'permission_id',),
2634 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2636 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2635 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2637 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2636 )
2638 )
2637 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2639 users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2638 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2640 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2639 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2641 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2640
2642
2641 users_group = relationship('UserGroup')
2643 users_group = relationship('UserGroup')
2642 permission = relationship('Permission')
2644 permission = relationship('Permission')
2643
2645
2644
2646
2645 class UserRepoGroupToPerm(Base, BaseModel):
2647 class UserRepoGroupToPerm(Base, BaseModel):
2646 __tablename__ = 'user_repo_group_to_perm'
2648 __tablename__ = 'user_repo_group_to_perm'
2647 __table_args__ = (
2649 __table_args__ = (
2648 UniqueConstraint('user_id', 'group_id', 'permission_id'),
2650 UniqueConstraint('user_id', 'group_id', 'permission_id'),
2649 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2651 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2650 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2652 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2651 )
2653 )
2652
2654
2653 group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2655 group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2654 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2656 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2655 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2657 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2656 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2658 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2657
2659
2658 user = relationship('User')
2660 user = relationship('User')
2659 group = relationship('RepoGroup')
2661 group = relationship('RepoGroup')
2660 permission = relationship('Permission')
2662 permission = relationship('Permission')
2661
2663
2662 @classmethod
2664 @classmethod
2663 def create(cls, user, repository_group, permission):
2665 def create(cls, user, repository_group, permission):
2664 n = cls()
2666 n = cls()
2665 n.user = user
2667 n.user = user
2666 n.group = repository_group
2668 n.group = repository_group
2667 n.permission = permission
2669 n.permission = permission
2668 Session().add(n)
2670 Session().add(n)
2669 return n
2671 return n
2670
2672
2671
2673
2672 class UserGroupRepoGroupToPerm(Base, BaseModel):
2674 class UserGroupRepoGroupToPerm(Base, BaseModel):
2673 __tablename__ = 'users_group_repo_group_to_perm'
2675 __tablename__ = 'users_group_repo_group_to_perm'
2674 __table_args__ = (
2676 __table_args__ = (
2675 UniqueConstraint('users_group_id', 'group_id'),
2677 UniqueConstraint('users_group_id', 'group_id'),
2676 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2678 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2677 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2679 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2678 )
2680 )
2679
2681
2680 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)
2682 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)
2681 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2683 users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None)
2682 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2684 group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None)
2683 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2685 permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None)
2684
2686
2685 users_group = relationship('UserGroup')
2687 users_group = relationship('UserGroup')
2686 permission = relationship('Permission')
2688 permission = relationship('Permission')
2687 group = relationship('RepoGroup')
2689 group = relationship('RepoGroup')
2688
2690
2689 @classmethod
2691 @classmethod
2690 def create(cls, user_group, repository_group, permission):
2692 def create(cls, user_group, repository_group, permission):
2691 n = cls()
2693 n = cls()
2692 n.users_group = user_group
2694 n.users_group = user_group
2693 n.group = repository_group
2695 n.group = repository_group
2694 n.permission = permission
2696 n.permission = permission
2695 Session().add(n)
2697 Session().add(n)
2696 return n
2698 return n
2697
2699
2698 def __unicode__(self):
2700 def __unicode__(self):
2699 return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group)
2701 return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group)
2700
2702
2701
2703
2702 class Statistics(Base, BaseModel):
2704 class Statistics(Base, BaseModel):
2703 __tablename__ = 'statistics'
2705 __tablename__ = 'statistics'
2704 __table_args__ = (
2706 __table_args__ = (
2705 UniqueConstraint('repository_id'),
2707 UniqueConstraint('repository_id'),
2706 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2708 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2707 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2709 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2708 )
2710 )
2709 stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2711 stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2710 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None)
2712 repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None)
2711 stat_on_revision = Column("stat_on_revision", Integer(), nullable=False)
2713 stat_on_revision = Column("stat_on_revision", Integer(), nullable=False)
2712 commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data
2714 commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data
2713 commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data
2715 commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data
2714 languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data
2716 languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data
2715
2717
2716 repository = relationship('Repository', single_parent=True)
2718 repository = relationship('Repository', single_parent=True)
2717
2719
2718
2720
2719 class UserFollowing(Base, BaseModel):
2721 class UserFollowing(Base, BaseModel):
2720 __tablename__ = 'user_followings'
2722 __tablename__ = 'user_followings'
2721 __table_args__ = (
2723 __table_args__ = (
2722 UniqueConstraint('user_id', 'follows_repository_id'),
2724 UniqueConstraint('user_id', 'follows_repository_id'),
2723 UniqueConstraint('user_id', 'follows_user_id'),
2725 UniqueConstraint('user_id', 'follows_user_id'),
2724 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2726 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2725 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2727 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2726 )
2728 )
2727
2729
2728 user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2730 user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2729 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2731 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None)
2730 follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None)
2732 follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None)
2731 follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
2733 follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None)
2732 follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
2734 follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now)
2733
2735
2734 user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id')
2736 user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id')
2735
2737
2736 follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id')
2738 follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id')
2737 follows_repository = relationship('Repository', order_by='Repository.repo_name')
2739 follows_repository = relationship('Repository', order_by='Repository.repo_name')
2738
2740
2739 @classmethod
2741 @classmethod
2740 def get_repo_followers(cls, repo_id):
2742 def get_repo_followers(cls, repo_id):
2741 return cls.query().filter(cls.follows_repo_id == repo_id)
2743 return cls.query().filter(cls.follows_repo_id == repo_id)
2742
2744
2743
2745
2744 class CacheKey(Base, BaseModel):
2746 class CacheKey(Base, BaseModel):
2745 __tablename__ = 'cache_invalidation'
2747 __tablename__ = 'cache_invalidation'
2746 __table_args__ = (
2748 __table_args__ = (
2747 UniqueConstraint('cache_key'),
2749 UniqueConstraint('cache_key'),
2748 Index('key_idx', 'cache_key'),
2750 Index('key_idx', 'cache_key'),
2749 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2751 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2750 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2752 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2751 )
2753 )
2752 CACHE_TYPE_ATOM = 'ATOM'
2754 CACHE_TYPE_ATOM = 'ATOM'
2753 CACHE_TYPE_RSS = 'RSS'
2755 CACHE_TYPE_RSS = 'RSS'
2754 CACHE_TYPE_README = 'README'
2756 CACHE_TYPE_README = 'README'
2755
2757
2756 cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2758 cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True)
2757 cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None)
2759 cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None)
2758 cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None)
2760 cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None)
2759 cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False)
2761 cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False)
2760
2762
2761 def __init__(self, cache_key, cache_args=''):
2763 def __init__(self, cache_key, cache_args=''):
2762 self.cache_key = cache_key
2764 self.cache_key = cache_key
2763 self.cache_args = cache_args
2765 self.cache_args = cache_args
2764 self.cache_active = False
2766 self.cache_active = False
2765
2767
2766 def __unicode__(self):
2768 def __unicode__(self):
2767 return u"<%s('%s:%s[%s]')>" % (
2769 return u"<%s('%s:%s[%s]')>" % (
2768 self.__class__.__name__,
2770 self.__class__.__name__,
2769 self.cache_id, self.cache_key, self.cache_active)
2771 self.cache_id, self.cache_key, self.cache_active)
2770
2772
2771 def _cache_key_partition(self):
2773 def _cache_key_partition(self):
2772 prefix, repo_name, suffix = self.cache_key.partition(self.cache_args)
2774 prefix, repo_name, suffix = self.cache_key.partition(self.cache_args)
2773 return prefix, repo_name, suffix
2775 return prefix, repo_name, suffix
2774
2776
2775 def get_prefix(self):
2777 def get_prefix(self):
2776 """
2778 """
2777 Try to extract prefix from existing cache key. The key could consist
2779 Try to extract prefix from existing cache key. The key could consist
2778 of prefix, repo_name, suffix
2780 of prefix, repo_name, suffix
2779 """
2781 """
2780 # this returns prefix, repo_name, suffix
2782 # this returns prefix, repo_name, suffix
2781 return self._cache_key_partition()[0]
2783 return self._cache_key_partition()[0]
2782
2784
2783 def get_suffix(self):
2785 def get_suffix(self):
2784 """
2786 """
2785 get suffix that might have been used in _get_cache_key to
2787 get suffix that might have been used in _get_cache_key to
2786 generate self.cache_key. Only used for informational purposes
2788 generate self.cache_key. Only used for informational purposes
2787 in repo_edit.html.
2789 in repo_edit.html.
2788 """
2790 """
2789 # prefix, repo_name, suffix
2791 # prefix, repo_name, suffix
2790 return self._cache_key_partition()[2]
2792 return self._cache_key_partition()[2]
2791
2793
2792 @classmethod
2794 @classmethod
2793 def delete_all_cache(cls):
2795 def delete_all_cache(cls):
2794 """
2796 """
2795 Delete all cache keys from database.
2797 Delete all cache keys from database.
2796 Should only be run when all instances are down and all entries
2798 Should only be run when all instances are down and all entries
2797 thus stale.
2799 thus stale.
2798 """
2800 """
2799 cls.query().delete()
2801 cls.query().delete()
2800 Session().commit()
2802 Session().commit()
2801
2803
2802 @classmethod
2804 @classmethod
2803 def get_cache_key(cls, repo_name, cache_type):
2805 def get_cache_key(cls, repo_name, cache_type):
2804 """
2806 """
2805
2807
2806 Generate a cache key for this process of RhodeCode instance.
2808 Generate a cache key for this process of RhodeCode instance.
2807 Prefix most likely will be process id or maybe explicitly set
2809 Prefix most likely will be process id or maybe explicitly set
2808 instance_id from .ini file.
2810 instance_id from .ini file.
2809 """
2811 """
2810 import rhodecode
2812 import rhodecode
2811 prefix = safe_unicode(rhodecode.CONFIG.get('instance_id') or '')
2813 prefix = safe_unicode(rhodecode.CONFIG.get('instance_id') or '')
2812
2814
2813 repo_as_unicode = safe_unicode(repo_name)
2815 repo_as_unicode = safe_unicode(repo_name)
2814 key = u'{}_{}'.format(repo_as_unicode, cache_type) \
2816 key = u'{}_{}'.format(repo_as_unicode, cache_type) \
2815 if cache_type else repo_as_unicode
2817 if cache_type else repo_as_unicode
2816
2818
2817 return u'{}{}'.format(prefix, key)
2819 return u'{}{}'.format(prefix, key)
2818
2820
2819 @classmethod
2821 @classmethod
2820 def set_invalidate(cls, repo_name, delete=False):
2822 def set_invalidate(cls, repo_name, delete=False):
2821 """
2823 """
2822 Mark all caches of a repo as invalid in the database.
2824 Mark all caches of a repo as invalid in the database.
2823 """
2825 """
2824
2826
2825 try:
2827 try:
2826 qry = Session().query(cls).filter(cls.cache_args == repo_name)
2828 qry = Session().query(cls).filter(cls.cache_args == repo_name)
2827 if delete:
2829 if delete:
2828 log.debug('cache objects deleted for repo %s',
2830 log.debug('cache objects deleted for repo %s',
2829 safe_str(repo_name))
2831 safe_str(repo_name))
2830 qry.delete()
2832 qry.delete()
2831 else:
2833 else:
2832 log.debug('cache objects marked as invalid for repo %s',
2834 log.debug('cache objects marked as invalid for repo %s',
2833 safe_str(repo_name))
2835 safe_str(repo_name))
2834 qry.update({"cache_active": False})
2836 qry.update({"cache_active": False})
2835
2837
2836 Session().commit()
2838 Session().commit()
2837 except Exception:
2839 except Exception:
2838 log.exception(
2840 log.exception(
2839 'Cache key invalidation failed for repository %s',
2841 'Cache key invalidation failed for repository %s',
2840 safe_str(repo_name))
2842 safe_str(repo_name))
2841 Session().rollback()
2843 Session().rollback()
2842
2844
2843 @classmethod
2845 @classmethod
2844 def get_active_cache(cls, cache_key):
2846 def get_active_cache(cls, cache_key):
2845 inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar()
2847 inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar()
2846 if inv_obj:
2848 if inv_obj:
2847 return inv_obj
2849 return inv_obj
2848 return None
2850 return None
2849
2851
2850 @classmethod
2852 @classmethod
2851 def repo_context_cache(cls, compute_func, repo_name, cache_type,
2853 def repo_context_cache(cls, compute_func, repo_name, cache_type,
2852 thread_scoped=False):
2854 thread_scoped=False):
2853 """
2855 """
2854 @cache_region('long_term')
2856 @cache_region('long_term')
2855 def _heavy_calculation(cache_key):
2857 def _heavy_calculation(cache_key):
2856 return 'result'
2858 return 'result'
2857
2859
2858 cache_context = CacheKey.repo_context_cache(
2860 cache_context = CacheKey.repo_context_cache(
2859 _heavy_calculation, repo_name, cache_type)
2861 _heavy_calculation, repo_name, cache_type)
2860
2862
2861 with cache_context as context:
2863 with cache_context as context:
2862 context.invalidate()
2864 context.invalidate()
2863 computed = context.compute()
2865 computed = context.compute()
2864
2866
2865 assert computed == 'result'
2867 assert computed == 'result'
2866 """
2868 """
2867 from rhodecode.lib import caches
2869 from rhodecode.lib import caches
2868 return caches.InvalidationContext(
2870 return caches.InvalidationContext(
2869 compute_func, repo_name, cache_type, thread_scoped=thread_scoped)
2871 compute_func, repo_name, cache_type, thread_scoped=thread_scoped)
2870
2872
2871
2873
2872 class ChangesetComment(Base, BaseModel):
2874 class ChangesetComment(Base, BaseModel):
2873 __tablename__ = 'changeset_comments'
2875 __tablename__ = 'changeset_comments'
2874 __table_args__ = (
2876 __table_args__ = (
2875 Index('cc_revision_idx', 'revision'),
2877 Index('cc_revision_idx', 'revision'),
2876 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2878 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2877 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2879 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
2878 )
2880 )
2879
2881
2880 COMMENT_OUTDATED = u'comment_outdated'
2882 COMMENT_OUTDATED = u'comment_outdated'
2881
2883
2882 comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True)
2884 comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True)
2883 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2885 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2884 revision = Column('revision', String(40), nullable=True)
2886 revision = Column('revision', String(40), nullable=True)
2885 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2887 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2886 pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True)
2888 pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True)
2887 line_no = Column('line_no', Unicode(10), nullable=True)
2889 line_no = Column('line_no', Unicode(10), nullable=True)
2888 hl_lines = Column('hl_lines', Unicode(512), nullable=True)
2890 hl_lines = Column('hl_lines', Unicode(512), nullable=True)
2889 f_path = Column('f_path', Unicode(1000), nullable=True)
2891 f_path = Column('f_path', Unicode(1000), nullable=True)
2890 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
2892 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
2891 text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False)
2893 text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False)
2892 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2894 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2893 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2895 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
2894 renderer = Column('renderer', Unicode(64), nullable=True)
2896 renderer = Column('renderer', Unicode(64), nullable=True)
2895 display_state = Column('display_state', Unicode(128), nullable=True)
2897 display_state = Column('display_state', Unicode(128), nullable=True)
2896
2898
2897 author = relationship('User', lazy='joined')
2899 author = relationship('User', lazy='joined')
2898 repo = relationship('Repository')
2900 repo = relationship('Repository')
2899 status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan")
2901 status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan")
2900 pull_request = relationship('PullRequest', lazy='joined')
2902 pull_request = relationship('PullRequest', lazy='joined')
2901 pull_request_version = relationship('PullRequestVersion')
2903 pull_request_version = relationship('PullRequestVersion')
2902
2904
2903 @classmethod
2905 @classmethod
2904 def get_users(cls, revision=None, pull_request_id=None):
2906 def get_users(cls, revision=None, pull_request_id=None):
2905 """
2907 """
2906 Returns user associated with this ChangesetComment. ie those
2908 Returns user associated with this ChangesetComment. ie those
2907 who actually commented
2909 who actually commented
2908
2910
2909 :param cls:
2911 :param cls:
2910 :param revision:
2912 :param revision:
2911 """
2913 """
2912 q = Session().query(User)\
2914 q = Session().query(User)\
2913 .join(ChangesetComment.author)
2915 .join(ChangesetComment.author)
2914 if revision:
2916 if revision:
2915 q = q.filter(cls.revision == revision)
2917 q = q.filter(cls.revision == revision)
2916 elif pull_request_id:
2918 elif pull_request_id:
2917 q = q.filter(cls.pull_request_id == pull_request_id)
2919 q = q.filter(cls.pull_request_id == pull_request_id)
2918 return q.all()
2920 return q.all()
2919
2921
2920 def render(self, mentions=False):
2922 def render(self, mentions=False):
2921 from rhodecode.lib import helpers as h
2923 from rhodecode.lib import helpers as h
2922 return h.render(self.text, renderer=self.renderer, mentions=mentions)
2924 return h.render(self.text, renderer=self.renderer, mentions=mentions)
2923
2925
2924 def __repr__(self):
2926 def __repr__(self):
2925 if self.comment_id:
2927 if self.comment_id:
2926 return '<DB:ChangesetComment #%s>' % self.comment_id
2928 return '<DB:ChangesetComment #%s>' % self.comment_id
2927 else:
2929 else:
2928 return '<DB:ChangesetComment at %#x>' % id(self)
2930 return '<DB:ChangesetComment at %#x>' % id(self)
2929
2931
2930
2932
2931 class ChangesetStatus(Base, BaseModel):
2933 class ChangesetStatus(Base, BaseModel):
2932 __tablename__ = 'changeset_statuses'
2934 __tablename__ = 'changeset_statuses'
2933 __table_args__ = (
2935 __table_args__ = (
2934 Index('cs_revision_idx', 'revision'),
2936 Index('cs_revision_idx', 'revision'),
2935 Index('cs_version_idx', 'version'),
2937 Index('cs_version_idx', 'version'),
2936 UniqueConstraint('repo_id', 'revision', 'version'),
2938 UniqueConstraint('repo_id', 'revision', 'version'),
2937 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2939 {'extend_existing': True, 'mysql_engine': 'InnoDB',
2938 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2940 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
2939 )
2941 )
2940 STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
2942 STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
2941 STATUS_APPROVED = 'approved'
2943 STATUS_APPROVED = 'approved'
2942 STATUS_REJECTED = 'rejected'
2944 STATUS_REJECTED = 'rejected'
2943 STATUS_UNDER_REVIEW = 'under_review'
2945 STATUS_UNDER_REVIEW = 'under_review'
2944
2946
2945 STATUSES = [
2947 STATUSES = [
2946 (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default
2948 (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default
2947 (STATUS_APPROVED, _("Approved")),
2949 (STATUS_APPROVED, _("Approved")),
2948 (STATUS_REJECTED, _("Rejected")),
2950 (STATUS_REJECTED, _("Rejected")),
2949 (STATUS_UNDER_REVIEW, _("Under Review")),
2951 (STATUS_UNDER_REVIEW, _("Under Review")),
2950 ]
2952 ]
2951
2953
2952 changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True)
2954 changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True)
2953 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2955 repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False)
2954 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None)
2956 user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None)
2955 revision = Column('revision', String(40), nullable=False)
2957 revision = Column('revision', String(40), nullable=False)
2956 status = Column('status', String(128), nullable=False, default=DEFAULT)
2958 status = Column('status', String(128), nullable=False, default=DEFAULT)
2957 changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'))
2959 changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'))
2958 modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now)
2960 modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now)
2959 version = Column('version', Integer(), nullable=False, default=0)
2961 version = Column('version', Integer(), nullable=False, default=0)
2960 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2962 pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
2961
2963
2962 author = relationship('User', lazy='joined')
2964 author = relationship('User', lazy='joined')
2963 repo = relationship('Repository')
2965 repo = relationship('Repository')
2964 comment = relationship('ChangesetComment', lazy='joined')
2966 comment = relationship('ChangesetComment', lazy='joined')
2965 pull_request = relationship('PullRequest', lazy='joined')
2967 pull_request = relationship('PullRequest', lazy='joined')
2966
2968
2967 def __unicode__(self):
2969 def __unicode__(self):
2968 return u"<%s('%s[%s]:%s')>" % (
2970 return u"<%s('%s[%s]:%s')>" % (
2969 self.__class__.__name__,
2971 self.__class__.__name__,
2970 self.status, self.version, self.author
2972 self.status, self.version, self.author
2971 )
2973 )
2972
2974
2973 @classmethod
2975 @classmethod
2974 def get_status_lbl(cls, value):
2976 def get_status_lbl(cls, value):
2975 return dict(cls.STATUSES).get(value)
2977 return dict(cls.STATUSES).get(value)
2976
2978
2977 @property
2979 @property
2978 def status_lbl(self):
2980 def status_lbl(self):
2979 return ChangesetStatus.get_status_lbl(self.status)
2981 return ChangesetStatus.get_status_lbl(self.status)
2980
2982
2981
2983
2982 class _PullRequestBase(BaseModel):
2984 class _PullRequestBase(BaseModel):
2983 """
2985 """
2984 Common attributes of pull request and version entries.
2986 Common attributes of pull request and version entries.
2985 """
2987 """
2986
2988
2987 # .status values
2989 # .status values
2988 STATUS_NEW = u'new'
2990 STATUS_NEW = u'new'
2989 STATUS_OPEN = u'open'
2991 STATUS_OPEN = u'open'
2990 STATUS_CLOSED = u'closed'
2992 STATUS_CLOSED = u'closed'
2991
2993
2992 title = Column('title', Unicode(255), nullable=True)
2994 title = Column('title', Unicode(255), nullable=True)
2993 description = Column(
2995 description = Column(
2994 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'),
2996 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'),
2995 nullable=True)
2997 nullable=True)
2996 # new/open/closed status of pull request (not approve/reject/etc)
2998 # new/open/closed status of pull request (not approve/reject/etc)
2997 status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW)
2999 status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW)
2998 created_on = Column(
3000 created_on = Column(
2999 'created_on', DateTime(timezone=False), nullable=False,
3001 'created_on', DateTime(timezone=False), nullable=False,
3000 default=datetime.datetime.now)
3002 default=datetime.datetime.now)
3001 updated_on = Column(
3003 updated_on = Column(
3002 'updated_on', DateTime(timezone=False), nullable=False,
3004 'updated_on', DateTime(timezone=False), nullable=False,
3003 default=datetime.datetime.now)
3005 default=datetime.datetime.now)
3004
3006
3005 @declared_attr
3007 @declared_attr
3006 def user_id(cls):
3008 def user_id(cls):
3007 return Column(
3009 return Column(
3008 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
3010 "user_id", Integer(), ForeignKey('users.user_id'), nullable=False,
3009 unique=None)
3011 unique=None)
3010
3012
3011 # 500 revisions max
3013 # 500 revisions max
3012 _revisions = Column(
3014 _revisions = Column(
3013 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql'))
3015 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql'))
3014
3016
3015 @declared_attr
3017 @declared_attr
3016 def source_repo_id(cls):
3018 def source_repo_id(cls):
3017 # TODO: dan: rename column to source_repo_id
3019 # TODO: dan: rename column to source_repo_id
3018 return Column(
3020 return Column(
3019 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3021 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3020 nullable=False)
3022 nullable=False)
3021
3023
3022 source_ref = Column('org_ref', Unicode(255), nullable=False)
3024 source_ref = Column('org_ref', Unicode(255), nullable=False)
3023
3025
3024 @declared_attr
3026 @declared_attr
3025 def target_repo_id(cls):
3027 def target_repo_id(cls):
3026 # TODO: dan: rename column to target_repo_id
3028 # TODO: dan: rename column to target_repo_id
3027 return Column(
3029 return Column(
3028 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3030 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'),
3029 nullable=False)
3031 nullable=False)
3030
3032
3031 target_ref = Column('other_ref', Unicode(255), nullable=False)
3033 target_ref = Column('other_ref', Unicode(255), nullable=False)
3032
3034
3033 # TODO: dan: rename column to last_merge_source_rev
3035 # TODO: dan: rename column to last_merge_source_rev
3034 _last_merge_source_rev = Column(
3036 _last_merge_source_rev = Column(
3035 'last_merge_org_rev', String(40), nullable=True)
3037 'last_merge_org_rev', String(40), nullable=True)
3036 # TODO: dan: rename column to last_merge_target_rev
3038 # TODO: dan: rename column to last_merge_target_rev
3037 _last_merge_target_rev = Column(
3039 _last_merge_target_rev = Column(
3038 'last_merge_other_rev', String(40), nullable=True)
3040 'last_merge_other_rev', String(40), nullable=True)
3039 _last_merge_status = Column('merge_status', Integer(), nullable=True)
3041 _last_merge_status = Column('merge_status', Integer(), nullable=True)
3040 merge_rev = Column('merge_rev', String(40), nullable=True)
3042 merge_rev = Column('merge_rev', String(40), nullable=True)
3041
3043
3042 @hybrid_property
3044 @hybrid_property
3043 def revisions(self):
3045 def revisions(self):
3044 return self._revisions.split(':') if self._revisions else []
3046 return self._revisions.split(':') if self._revisions else []
3045
3047
3046 @revisions.setter
3048 @revisions.setter
3047 def revisions(self, val):
3049 def revisions(self, val):
3048 self._revisions = ':'.join(val)
3050 self._revisions = ':'.join(val)
3049
3051
3050 @declared_attr
3052 @declared_attr
3051 def author(cls):
3053 def author(cls):
3052 return relationship('User', lazy='joined')
3054 return relationship('User', lazy='joined')
3053
3055
3054 @declared_attr
3056 @declared_attr
3055 def source_repo(cls):
3057 def source_repo(cls):
3056 return relationship(
3058 return relationship(
3057 'Repository',
3059 'Repository',
3058 primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__)
3060 primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__)
3059
3061
3060 @property
3062 @property
3061 def source_ref_parts(self):
3063 def source_ref_parts(self):
3062 refs = self.source_ref.split(':')
3064 refs = self.source_ref.split(':')
3063 return Reference(refs[0], refs[1], refs[2])
3065 return Reference(refs[0], refs[1], refs[2])
3064
3066
3065 @declared_attr
3067 @declared_attr
3066 def target_repo(cls):
3068 def target_repo(cls):
3067 return relationship(
3069 return relationship(
3068 'Repository',
3070 'Repository',
3069 primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__)
3071 primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__)
3070
3072
3071 @property
3073 @property
3072 def target_ref_parts(self):
3074 def target_ref_parts(self):
3073 refs = self.target_ref.split(':')
3075 refs = self.target_ref.split(':')
3074 return Reference(refs[0], refs[1], refs[2])
3076 return Reference(refs[0], refs[1], refs[2])
3075
3077
3076
3078
3077 class PullRequest(Base, _PullRequestBase):
3079 class PullRequest(Base, _PullRequestBase):
3078 __tablename__ = 'pull_requests'
3080 __tablename__ = 'pull_requests'
3079 __table_args__ = (
3081 __table_args__ = (
3080 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3082 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3081 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3083 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3082 )
3084 )
3083
3085
3084 pull_request_id = Column(
3086 pull_request_id = Column(
3085 'pull_request_id', Integer(), nullable=False, primary_key=True)
3087 'pull_request_id', Integer(), nullable=False, primary_key=True)
3086
3088
3087 def __repr__(self):
3089 def __repr__(self):
3088 if self.pull_request_id:
3090 if self.pull_request_id:
3089 return '<DB:PullRequest #%s>' % self.pull_request_id
3091 return '<DB:PullRequest #%s>' % self.pull_request_id
3090 else:
3092 else:
3091 return '<DB:PullRequest at %#x>' % id(self)
3093 return '<DB:PullRequest at %#x>' % id(self)
3092
3094
3093 reviewers = relationship('PullRequestReviewers',
3095 reviewers = relationship('PullRequestReviewers',
3094 cascade="all, delete, delete-orphan")
3096 cascade="all, delete, delete-orphan")
3095 statuses = relationship('ChangesetStatus')
3097 statuses = relationship('ChangesetStatus')
3096 comments = relationship('ChangesetComment',
3098 comments = relationship('ChangesetComment',
3097 cascade="all, delete, delete-orphan")
3099 cascade="all, delete, delete-orphan")
3098 versions = relationship('PullRequestVersion',
3100 versions = relationship('PullRequestVersion',
3099 cascade="all, delete, delete-orphan")
3101 cascade="all, delete, delete-orphan")
3100
3102
3101 def is_closed(self):
3103 def is_closed(self):
3102 return self.status == self.STATUS_CLOSED
3104 return self.status == self.STATUS_CLOSED
3103
3105
3104 def get_api_data(self):
3106 def get_api_data(self):
3105 from rhodecode.model.pull_request import PullRequestModel
3107 from rhodecode.model.pull_request import PullRequestModel
3106 pull_request = self
3108 pull_request = self
3107 merge_status = PullRequestModel().merge_status(pull_request)
3109 merge_status = PullRequestModel().merge_status(pull_request)
3108 data = {
3110 data = {
3109 'pull_request_id': pull_request.pull_request_id,
3111 'pull_request_id': pull_request.pull_request_id,
3110 'url': url('pullrequest_show', repo_name=self.target_repo.repo_name,
3112 'url': url('pullrequest_show', repo_name=self.target_repo.repo_name,
3111 pull_request_id=self.pull_request_id,
3113 pull_request_id=self.pull_request_id,
3112 qualified=True),
3114 qualified=True),
3113 'title': pull_request.title,
3115 'title': pull_request.title,
3114 'description': pull_request.description,
3116 'description': pull_request.description,
3115 'status': pull_request.status,
3117 'status': pull_request.status,
3116 'created_on': pull_request.created_on,
3118 'created_on': pull_request.created_on,
3117 'updated_on': pull_request.updated_on,
3119 'updated_on': pull_request.updated_on,
3118 'commit_ids': pull_request.revisions,
3120 'commit_ids': pull_request.revisions,
3119 'review_status': pull_request.calculated_review_status(),
3121 'review_status': pull_request.calculated_review_status(),
3120 'mergeable': {
3122 'mergeable': {
3121 'status': merge_status[0],
3123 'status': merge_status[0],
3122 'message': unicode(merge_status[1]),
3124 'message': unicode(merge_status[1]),
3123 },
3125 },
3124 'source': {
3126 'source': {
3125 'clone_url': pull_request.source_repo.clone_url(),
3127 'clone_url': pull_request.source_repo.clone_url(),
3126 'repository': pull_request.source_repo.repo_name,
3128 'repository': pull_request.source_repo.repo_name,
3127 'reference': {
3129 'reference': {
3128 'name': pull_request.source_ref_parts.name,
3130 'name': pull_request.source_ref_parts.name,
3129 'type': pull_request.source_ref_parts.type,
3131 'type': pull_request.source_ref_parts.type,
3130 'commit_id': pull_request.source_ref_parts.commit_id,
3132 'commit_id': pull_request.source_ref_parts.commit_id,
3131 },
3133 },
3132 },
3134 },
3133 'target': {
3135 'target': {
3134 'clone_url': pull_request.target_repo.clone_url(),
3136 'clone_url': pull_request.target_repo.clone_url(),
3135 'repository': pull_request.target_repo.repo_name,
3137 'repository': pull_request.target_repo.repo_name,
3136 'reference': {
3138 'reference': {
3137 'name': pull_request.target_ref_parts.name,
3139 'name': pull_request.target_ref_parts.name,
3138 'type': pull_request.target_ref_parts.type,
3140 'type': pull_request.target_ref_parts.type,
3139 'commit_id': pull_request.target_ref_parts.commit_id,
3141 'commit_id': pull_request.target_ref_parts.commit_id,
3140 },
3142 },
3141 },
3143 },
3142 'author': pull_request.author.get_api_data(include_secrets=False,
3144 'author': pull_request.author.get_api_data(include_secrets=False,
3143 details='basic'),
3145 details='basic'),
3144 'reviewers': [
3146 'reviewers': [
3145 {
3147 {
3146 'user': reviewer.get_api_data(include_secrets=False,
3148 'user': reviewer.get_api_data(include_secrets=False,
3147 details='basic'),
3149 details='basic'),
3148 'review_status': st[0][1].status if st else 'not_reviewed',
3150 'review_status': st[0][1].status if st else 'not_reviewed',
3149 }
3151 }
3150 for reviewer, st in pull_request.reviewers_statuses()
3152 for reviewer, st in pull_request.reviewers_statuses()
3151 ]
3153 ]
3152 }
3154 }
3153
3155
3154 return data
3156 return data
3155
3157
3156 def __json__(self):
3158 def __json__(self):
3157 return {
3159 return {
3158 'revisions': self.revisions,
3160 'revisions': self.revisions,
3159 }
3161 }
3160
3162
3161 def calculated_review_status(self):
3163 def calculated_review_status(self):
3162 # TODO: anderson: 13.05.15 Used only on templates/my_account_pullrequests.html
3164 # TODO: anderson: 13.05.15 Used only on templates/my_account_pullrequests.html
3163 # because it's tricky on how to use ChangesetStatusModel from there
3165 # because it's tricky on how to use ChangesetStatusModel from there
3164 warnings.warn("Use calculated_review_status from ChangesetStatusModel", DeprecationWarning)
3166 warnings.warn("Use calculated_review_status from ChangesetStatusModel", DeprecationWarning)
3165 from rhodecode.model.changeset_status import ChangesetStatusModel
3167 from rhodecode.model.changeset_status import ChangesetStatusModel
3166 return ChangesetStatusModel().calculated_review_status(self)
3168 return ChangesetStatusModel().calculated_review_status(self)
3167
3169
3168 def reviewers_statuses(self):
3170 def reviewers_statuses(self):
3169 warnings.warn("Use reviewers_statuses from ChangesetStatusModel", DeprecationWarning)
3171 warnings.warn("Use reviewers_statuses from ChangesetStatusModel", DeprecationWarning)
3170 from rhodecode.model.changeset_status import ChangesetStatusModel
3172 from rhodecode.model.changeset_status import ChangesetStatusModel
3171 return ChangesetStatusModel().reviewers_statuses(self)
3173 return ChangesetStatusModel().reviewers_statuses(self)
3172
3174
3173
3175
3174 class PullRequestVersion(Base, _PullRequestBase):
3176 class PullRequestVersion(Base, _PullRequestBase):
3175 __tablename__ = 'pull_request_versions'
3177 __tablename__ = 'pull_request_versions'
3176 __table_args__ = (
3178 __table_args__ = (
3177 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3179 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3178 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3180 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3179 )
3181 )
3180
3182
3181 pull_request_version_id = Column(
3183 pull_request_version_id = Column(
3182 'pull_request_version_id', Integer(), nullable=False, primary_key=True)
3184 'pull_request_version_id', Integer(), nullable=False, primary_key=True)
3183 pull_request_id = Column(
3185 pull_request_id = Column(
3184 'pull_request_id', Integer(),
3186 'pull_request_id', Integer(),
3185 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3187 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3186 pull_request = relationship('PullRequest')
3188 pull_request = relationship('PullRequest')
3187
3189
3188 def __repr__(self):
3190 def __repr__(self):
3189 if self.pull_request_version_id:
3191 if self.pull_request_version_id:
3190 return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id
3192 return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id
3191 else:
3193 else:
3192 return '<DB:PullRequestVersion at %#x>' % id(self)
3194 return '<DB:PullRequestVersion at %#x>' % id(self)
3193
3195
3194
3196
3195 class PullRequestReviewers(Base, BaseModel):
3197 class PullRequestReviewers(Base, BaseModel):
3196 __tablename__ = 'pull_request_reviewers'
3198 __tablename__ = 'pull_request_reviewers'
3197 __table_args__ = (
3199 __table_args__ = (
3198 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3200 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3199 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3201 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3200 )
3202 )
3201
3203
3202 def __init__(self, user=None, pull_request=None):
3204 def __init__(self, user=None, pull_request=None):
3203 self.user = user
3205 self.user = user
3204 self.pull_request = pull_request
3206 self.pull_request = pull_request
3205
3207
3206 pull_requests_reviewers_id = Column(
3208 pull_requests_reviewers_id = Column(
3207 'pull_requests_reviewers_id', Integer(), nullable=False,
3209 'pull_requests_reviewers_id', Integer(), nullable=False,
3208 primary_key=True)
3210 primary_key=True)
3209 pull_request_id = Column(
3211 pull_request_id = Column(
3210 "pull_request_id", Integer(),
3212 "pull_request_id", Integer(),
3211 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3213 ForeignKey('pull_requests.pull_request_id'), nullable=False)
3212 user_id = Column(
3214 user_id = Column(
3213 "user_id", Integer(), ForeignKey('users.user_id'), nullable=True)
3215 "user_id", Integer(), ForeignKey('users.user_id'), nullable=True)
3214
3216
3215 user = relationship('User')
3217 user = relationship('User')
3216 pull_request = relationship('PullRequest')
3218 pull_request = relationship('PullRequest')
3217
3219
3218
3220
3219 class Notification(Base, BaseModel):
3221 class Notification(Base, BaseModel):
3220 __tablename__ = 'notifications'
3222 __tablename__ = 'notifications'
3221 __table_args__ = (
3223 __table_args__ = (
3222 Index('notification_type_idx', 'type'),
3224 Index('notification_type_idx', 'type'),
3223 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3225 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3224 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3226 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3225 )
3227 )
3226
3228
3227 TYPE_CHANGESET_COMMENT = u'cs_comment'
3229 TYPE_CHANGESET_COMMENT = u'cs_comment'
3228 TYPE_MESSAGE = u'message'
3230 TYPE_MESSAGE = u'message'
3229 TYPE_MENTION = u'mention'
3231 TYPE_MENTION = u'mention'
3230 TYPE_REGISTRATION = u'registration'
3232 TYPE_REGISTRATION = u'registration'
3231 TYPE_PULL_REQUEST = u'pull_request'
3233 TYPE_PULL_REQUEST = u'pull_request'
3232 TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment'
3234 TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment'
3233
3235
3234 notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True)
3236 notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True)
3235 subject = Column('subject', Unicode(512), nullable=True)
3237 subject = Column('subject', Unicode(512), nullable=True)
3236 body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True)
3238 body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True)
3237 created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True)
3239 created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True)
3238 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3240 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3239 type_ = Column('type', Unicode(255))
3241 type_ = Column('type', Unicode(255))
3240
3242
3241 created_by_user = relationship('User')
3243 created_by_user = relationship('User')
3242 notifications_to_users = relationship('UserNotification', lazy='joined',
3244 notifications_to_users = relationship('UserNotification', lazy='joined',
3243 cascade="all, delete, delete-orphan")
3245 cascade="all, delete, delete-orphan")
3244
3246
3245 @property
3247 @property
3246 def recipients(self):
3248 def recipients(self):
3247 return [x.user for x in UserNotification.query()\
3249 return [x.user for x in UserNotification.query()\
3248 .filter(UserNotification.notification == self)\
3250 .filter(UserNotification.notification == self)\
3249 .order_by(UserNotification.user_id.asc()).all()]
3251 .order_by(UserNotification.user_id.asc()).all()]
3250
3252
3251 @classmethod
3253 @classmethod
3252 def create(cls, created_by, subject, body, recipients, type_=None):
3254 def create(cls, created_by, subject, body, recipients, type_=None):
3253 if type_ is None:
3255 if type_ is None:
3254 type_ = Notification.TYPE_MESSAGE
3256 type_ = Notification.TYPE_MESSAGE
3255
3257
3256 notification = cls()
3258 notification = cls()
3257 notification.created_by_user = created_by
3259 notification.created_by_user = created_by
3258 notification.subject = subject
3260 notification.subject = subject
3259 notification.body = body
3261 notification.body = body
3260 notification.type_ = type_
3262 notification.type_ = type_
3261 notification.created_on = datetime.datetime.now()
3263 notification.created_on = datetime.datetime.now()
3262
3264
3263 for u in recipients:
3265 for u in recipients:
3264 assoc = UserNotification()
3266 assoc = UserNotification()
3265 assoc.notification = notification
3267 assoc.notification = notification
3266
3268
3267 # if created_by is inside recipients mark his notification
3269 # if created_by is inside recipients mark his notification
3268 # as read
3270 # as read
3269 if u.user_id == created_by.user_id:
3271 if u.user_id == created_by.user_id:
3270 assoc.read = True
3272 assoc.read = True
3271
3273
3272 u.notifications.append(assoc)
3274 u.notifications.append(assoc)
3273 Session().add(notification)
3275 Session().add(notification)
3274
3276
3275 return notification
3277 return notification
3276
3278
3277 @property
3279 @property
3278 def description(self):
3280 def description(self):
3279 from rhodecode.model.notification import NotificationModel
3281 from rhodecode.model.notification import NotificationModel
3280 return NotificationModel().make_description(self)
3282 return NotificationModel().make_description(self)
3281
3283
3282
3284
3283 class UserNotification(Base, BaseModel):
3285 class UserNotification(Base, BaseModel):
3284 __tablename__ = 'user_to_notification'
3286 __tablename__ = 'user_to_notification'
3285 __table_args__ = (
3287 __table_args__ = (
3286 UniqueConstraint('user_id', 'notification_id'),
3288 UniqueConstraint('user_id', 'notification_id'),
3287 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3289 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3288 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3290 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3289 )
3291 )
3290 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
3292 user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True)
3291 notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True)
3293 notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True)
3292 read = Column('read', Boolean, default=False)
3294 read = Column('read', Boolean, default=False)
3293 sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None)
3295 sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None)
3294
3296
3295 user = relationship('User', lazy="joined")
3297 user = relationship('User', lazy="joined")
3296 notification = relationship('Notification', lazy="joined",
3298 notification = relationship('Notification', lazy="joined",
3297 order_by=lambda: Notification.created_on.desc(),)
3299 order_by=lambda: Notification.created_on.desc(),)
3298
3300
3299 def mark_as_read(self):
3301 def mark_as_read(self):
3300 self.read = True
3302 self.read = True
3301 Session().add(self)
3303 Session().add(self)
3302
3304
3303
3305
3304 class Gist(Base, BaseModel):
3306 class Gist(Base, BaseModel):
3305 __tablename__ = 'gists'
3307 __tablename__ = 'gists'
3306 __table_args__ = (
3308 __table_args__ = (
3307 Index('g_gist_access_id_idx', 'gist_access_id'),
3309 Index('g_gist_access_id_idx', 'gist_access_id'),
3308 Index('g_created_on_idx', 'created_on'),
3310 Index('g_created_on_idx', 'created_on'),
3309 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3311 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3310 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3312 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3311 )
3313 )
3312 GIST_PUBLIC = u'public'
3314 GIST_PUBLIC = u'public'
3313 GIST_PRIVATE = u'private'
3315 GIST_PRIVATE = u'private'
3314 DEFAULT_FILENAME = u'gistfile1.txt'
3316 DEFAULT_FILENAME = u'gistfile1.txt'
3315
3317
3316 ACL_LEVEL_PUBLIC = u'acl_public'
3318 ACL_LEVEL_PUBLIC = u'acl_public'
3317 ACL_LEVEL_PRIVATE = u'acl_private'
3319 ACL_LEVEL_PRIVATE = u'acl_private'
3318
3320
3319 gist_id = Column('gist_id', Integer(), primary_key=True)
3321 gist_id = Column('gist_id', Integer(), primary_key=True)
3320 gist_access_id = Column('gist_access_id', Unicode(250))
3322 gist_access_id = Column('gist_access_id', Unicode(250))
3321 gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
3323 gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql'))
3322 gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True)
3324 gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True)
3323 gist_expires = Column('gist_expires', Float(53), nullable=False)
3325 gist_expires = Column('gist_expires', Float(53), nullable=False)
3324 gist_type = Column('gist_type', Unicode(128), nullable=False)
3326 gist_type = Column('gist_type', Unicode(128), nullable=False)
3325 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3327 created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3326 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3328 modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)
3327 acl_level = Column('acl_level', Unicode(128), nullable=True)
3329 acl_level = Column('acl_level', Unicode(128), nullable=True)
3328
3330
3329 owner = relationship('User')
3331 owner = relationship('User')
3330
3332
3331 def __repr__(self):
3333 def __repr__(self):
3332 return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id)
3334 return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id)
3333
3335
3334 @classmethod
3336 @classmethod
3335 def get_or_404(cls, id_):
3337 def get_or_404(cls, id_):
3336 res = cls.query().filter(cls.gist_access_id == id_).scalar()
3338 res = cls.query().filter(cls.gist_access_id == id_).scalar()
3337 if not res:
3339 if not res:
3338 raise HTTPNotFound
3340 raise HTTPNotFound
3339 return res
3341 return res
3340
3342
3341 @classmethod
3343 @classmethod
3342 def get_by_access_id(cls, gist_access_id):
3344 def get_by_access_id(cls, gist_access_id):
3343 return cls.query().filter(cls.gist_access_id == gist_access_id).scalar()
3345 return cls.query().filter(cls.gist_access_id == gist_access_id).scalar()
3344
3346
3345 def gist_url(self):
3347 def gist_url(self):
3346 import rhodecode
3348 import rhodecode
3347 alias_url = rhodecode.CONFIG.get('gist_alias_url')
3349 alias_url = rhodecode.CONFIG.get('gist_alias_url')
3348 if alias_url:
3350 if alias_url:
3349 return alias_url.replace('{gistid}', self.gist_access_id)
3351 return alias_url.replace('{gistid}', self.gist_access_id)
3350
3352
3351 return url('gist', gist_id=self.gist_access_id, qualified=True)
3353 return url('gist', gist_id=self.gist_access_id, qualified=True)
3352
3354
3353 @classmethod
3355 @classmethod
3354 def base_path(cls):
3356 def base_path(cls):
3355 """
3357 """
3356 Returns base path when all gists are stored
3358 Returns base path when all gists are stored
3357
3359
3358 :param cls:
3360 :param cls:
3359 """
3361 """
3360 from rhodecode.model.gist import GIST_STORE_LOC
3362 from rhodecode.model.gist import GIST_STORE_LOC
3361 q = Session().query(RhodeCodeUi)\
3363 q = Session().query(RhodeCodeUi)\
3362 .filter(RhodeCodeUi.ui_key == URL_SEP)
3364 .filter(RhodeCodeUi.ui_key == URL_SEP)
3363 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
3365 q = q.options(FromCache("sql_cache_short", "repository_repo_path"))
3364 return os.path.join(q.one().ui_value, GIST_STORE_LOC)
3366 return os.path.join(q.one().ui_value, GIST_STORE_LOC)
3365
3367
3366 def get_api_data(self):
3368 def get_api_data(self):
3367 """
3369 """
3368 Common function for generating gist related data for API
3370 Common function for generating gist related data for API
3369 """
3371 """
3370 gist = self
3372 gist = self
3371 data = {
3373 data = {
3372 'gist_id': gist.gist_id,
3374 'gist_id': gist.gist_id,
3373 'type': gist.gist_type,
3375 'type': gist.gist_type,
3374 'access_id': gist.gist_access_id,
3376 'access_id': gist.gist_access_id,
3375 'description': gist.gist_description,
3377 'description': gist.gist_description,
3376 'url': gist.gist_url(),
3378 'url': gist.gist_url(),
3377 'expires': gist.gist_expires,
3379 'expires': gist.gist_expires,
3378 'created_on': gist.created_on,
3380 'created_on': gist.created_on,
3379 'modified_at': gist.modified_at,
3381 'modified_at': gist.modified_at,
3380 'content': None,
3382 'content': None,
3381 'acl_level': gist.acl_level,
3383 'acl_level': gist.acl_level,
3382 }
3384 }
3383 return data
3385 return data
3384
3386
3385 def __json__(self):
3387 def __json__(self):
3386 data = dict(
3388 data = dict(
3387 )
3389 )
3388 data.update(self.get_api_data())
3390 data.update(self.get_api_data())
3389 return data
3391 return data
3390 # SCM functions
3392 # SCM functions
3391
3393
3392 def scm_instance(self, **kwargs):
3394 def scm_instance(self, **kwargs):
3393 full_repo_path = os.path.join(self.base_path(), self.gist_access_id)
3395 full_repo_path = os.path.join(self.base_path(), self.gist_access_id)
3394 return get_vcs_instance(
3396 return get_vcs_instance(
3395 repo_path=safe_str(full_repo_path), create=False)
3397 repo_path=safe_str(full_repo_path), create=False)
3396
3398
3397
3399
3398 class DbMigrateVersion(Base, BaseModel):
3400 class DbMigrateVersion(Base, BaseModel):
3399 __tablename__ = 'db_migrate_version'
3401 __tablename__ = 'db_migrate_version'
3400 __table_args__ = (
3402 __table_args__ = (
3401 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3403 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3402 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3404 'mysql_charset': 'utf8', 'sqlite_autoincrement': True},
3403 )
3405 )
3404 repository_id = Column('repository_id', String(250), primary_key=True)
3406 repository_id = Column('repository_id', String(250), primary_key=True)
3405 repository_path = Column('repository_path', Text)
3407 repository_path = Column('repository_path', Text)
3406 version = Column('version', Integer)
3408 version = Column('version', Integer)
3407
3409
3408
3410
3409 class ExternalIdentity(Base, BaseModel):
3411 class ExternalIdentity(Base, BaseModel):
3410 __tablename__ = 'external_identities'
3412 __tablename__ = 'external_identities'
3411 __table_args__ = (
3413 __table_args__ = (
3412 Index('local_user_id_idx', 'local_user_id'),
3414 Index('local_user_id_idx', 'local_user_id'),
3413 Index('external_id_idx', 'external_id'),
3415 Index('external_id_idx', 'external_id'),
3414 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3416 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3415 'mysql_charset': 'utf8'})
3417 'mysql_charset': 'utf8'})
3416
3418
3417 external_id = Column('external_id', Unicode(255), default=u'',
3419 external_id = Column('external_id', Unicode(255), default=u'',
3418 primary_key=True)
3420 primary_key=True)
3419 external_username = Column('external_username', Unicode(1024), default=u'')
3421 external_username = Column('external_username', Unicode(1024), default=u'')
3420 local_user_id = Column('local_user_id', Integer(),
3422 local_user_id = Column('local_user_id', Integer(),
3421 ForeignKey('users.user_id'), primary_key=True)
3423 ForeignKey('users.user_id'), primary_key=True)
3422 provider_name = Column('provider_name', Unicode(255), default=u'',
3424 provider_name = Column('provider_name', Unicode(255), default=u'',
3423 primary_key=True)
3425 primary_key=True)
3424 access_token = Column('access_token', String(1024), default=u'')
3426 access_token = Column('access_token', String(1024), default=u'')
3425 alt_token = Column('alt_token', String(1024), default=u'')
3427 alt_token = Column('alt_token', String(1024), default=u'')
3426 token_secret = Column('token_secret', String(1024), default=u'')
3428 token_secret = Column('token_secret', String(1024), default=u'')
3427
3429
3428 @classmethod
3430 @classmethod
3429 def by_external_id_and_provider(cls, external_id, provider_name,
3431 def by_external_id_and_provider(cls, external_id, provider_name,
3430 local_user_id=None):
3432 local_user_id=None):
3431 """
3433 """
3432 Returns ExternalIdentity instance based on search params
3434 Returns ExternalIdentity instance based on search params
3433
3435
3434 :param external_id:
3436 :param external_id:
3435 :param provider_name:
3437 :param provider_name:
3436 :return: ExternalIdentity
3438 :return: ExternalIdentity
3437 """
3439 """
3438 query = cls.query()
3440 query = cls.query()
3439 query = query.filter(cls.external_id == external_id)
3441 query = query.filter(cls.external_id == external_id)
3440 query = query.filter(cls.provider_name == provider_name)
3442 query = query.filter(cls.provider_name == provider_name)
3441 if local_user_id:
3443 if local_user_id:
3442 query = query.filter(cls.local_user_id == local_user_id)
3444 query = query.filter(cls.local_user_id == local_user_id)
3443 return query.first()
3445 return query.first()
3444
3446
3445 @classmethod
3447 @classmethod
3446 def user_by_external_id_and_provider(cls, external_id, provider_name):
3448 def user_by_external_id_and_provider(cls, external_id, provider_name):
3447 """
3449 """
3448 Returns User instance based on search params
3450 Returns User instance based on search params
3449
3451
3450 :param external_id:
3452 :param external_id:
3451 :param provider_name:
3453 :param provider_name:
3452 :return: User
3454 :return: User
3453 """
3455 """
3454 query = User.query()
3456 query = User.query()
3455 query = query.filter(cls.external_id == external_id)
3457 query = query.filter(cls.external_id == external_id)
3456 query = query.filter(cls.provider_name == provider_name)
3458 query = query.filter(cls.provider_name == provider_name)
3457 query = query.filter(User.user_id == cls.local_user_id)
3459 query = query.filter(User.user_id == cls.local_user_id)
3458 return query.first()
3460 return query.first()
3459
3461
3460 @classmethod
3462 @classmethod
3461 def by_local_user_id(cls, local_user_id):
3463 def by_local_user_id(cls, local_user_id):
3462 """
3464 """
3463 Returns all tokens for user
3465 Returns all tokens for user
3464
3466
3465 :param local_user_id:
3467 :param local_user_id:
3466 :return: ExternalIdentity
3468 :return: ExternalIdentity
3467 """
3469 """
3468 query = cls.query()
3470 query = cls.query()
3469 query = query.filter(cls.local_user_id == local_user_id)
3471 query = query.filter(cls.local_user_id == local_user_id)
3470 return query
3472 return query
3471
3473
3472
3474
3473 class Integration(Base, BaseModel):
3475 class Integration(Base, BaseModel):
3474 __tablename__ = 'integrations'
3476 __tablename__ = 'integrations'
3475 __table_args__ = (
3477 __table_args__ = (
3476 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3478 {'extend_existing': True, 'mysql_engine': 'InnoDB',
3477 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3479 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}
3478 )
3480 )
3479
3481
3480 integration_id = Column('integration_id', Integer(), primary_key=True)
3482 integration_id = Column('integration_id', Integer(), primary_key=True)
3481 integration_type = Column('integration_type', String(255))
3483 integration_type = Column('integration_type', String(255))
3482 enabled = Column('enabled', Boolean(), nullable=False)
3484 enabled = Column('enabled', Boolean(), nullable=False)
3483 name = Column('name', String(255), nullable=False)
3485 name = Column('name', String(255), nullable=False)
3486 child_repos_only = Column('child_repos_only', Boolean(), nullable=False,
3487 default=False)
3484
3488
3485 settings = Column(
3489 settings = Column(
3486 'settings_json', MutationObj.as_mutable(
3490 'settings_json', MutationObj.as_mutable(
3487 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
3491 JsonType(dialect_map=dict(mysql=UnicodeText(16384)))))
3488 repo_id = Column(
3492 repo_id = Column(
3489 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
3493 'repo_id', Integer(), ForeignKey('repositories.repo_id'),
3490 nullable=True, unique=None, default=None)
3494 nullable=True, unique=None, default=None)
3491 repo = relationship('Repository', lazy='joined')
3495 repo = relationship('Repository', lazy='joined')
3492
3496
3493 repo_group_id = Column(
3497 repo_group_id = Column(
3494 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
3498 'repo_group_id', Integer(), ForeignKey('groups.group_id'),
3495 nullable=True, unique=None, default=None)
3499 nullable=True, unique=None, default=None)
3496 repo_group = relationship('RepoGroup', lazy='joined')
3500 repo_group = relationship('RepoGroup', lazy='joined')
3497
3501
3498 def __repr__(self):
3502 @hybrid_property
3503 def scope(self):
3499 if self.repo:
3504 if self.repo:
3500 scope = 'repo=%r' % self.repo
3505 return self.repo
3501 elif self.repo_group:
3506 if self.repo_group:
3502 scope = 'repo_group=%r' % self.repo_group
3507 return self.repo_group
3508 if self.child_repos_only:
3509 return 'root_repos'
3510 return 'global'
3511
3512 @scope.setter
3513 def scope(self, value):
3514 self.repo = None
3515 self.repo_id = None
3516 self.repo_group_id = None
3517 self.repo_group = None
3518 self.child_repos_only = False
3519 if isinstance(value, Repository):
3520 self.repo_id = value.repo_id
3521 self.repo = value
3522 elif isinstance(value, RepoGroup):
3523 self.repo_group_id = value.group_id
3524 self.repo_group = value
3525 elif value == 'root_repos':
3526 self.child_repos_only = True
3527 elif value == 'global':
3528 pass
3503 else:
3529 else:
3504 scope = 'global'
3530 raise Exception("invalid scope: %s, must be one of "
3505
3531 "['global', 'root_repos', <RepoGroup>. <Repository>]" % value)
3506 return '<Integration(%r, %r)>' % (self.integration_type, scope)
3532
3533 def __repr__(self):
3534 return '<Integration(%r, %r)>' % (self.integration_type, self.scope)
@@ -1,140 +1,213 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2011-2016 RhodeCode GmbH
3 # Copyright (C) 2011-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21
21
22 """
22 """
23 Model for integrations
23 Model for integrations
24 """
24 """
25
25
26
26
27 import logging
27 import logging
28 import traceback
28 import traceback
29
29
30 from pylons import tmpl_context as c
30 from pylons import tmpl_context as c
31 from pylons.i18n.translation import _, ungettext
31 from pylons.i18n.translation import _, ungettext
32 from sqlalchemy import or_
32 from sqlalchemy import or_, and_
33 from sqlalchemy.sql.expression import false, true
33 from sqlalchemy.sql.expression import false, true
34 from mako import exceptions
34 from mako import exceptions
35
35
36 import rhodecode
36 import rhodecode
37 from rhodecode import events
37 from rhodecode import events
38 from rhodecode.lib import helpers as h
38 from rhodecode.lib import helpers as h
39 from rhodecode.lib.caching_query import FromCache
39 from rhodecode.lib.caching_query import FromCache
40 from rhodecode.lib.utils import PartialRenderer
40 from rhodecode.lib.utils import PartialRenderer
41 from rhodecode.model import BaseModel
41 from rhodecode.model import BaseModel
42 from rhodecode.model.db import Integration, User
42 from rhodecode.model.db import Integration, User, Repository, RepoGroup
43 from rhodecode.model.meta import Session
43 from rhodecode.model.meta import Session
44 from rhodecode.integrations import integration_type_registry
44 from rhodecode.integrations import integration_type_registry
45 from rhodecode.integrations.types.base import IntegrationTypeBase
45 from rhodecode.integrations.types.base import IntegrationTypeBase
46
46
47 log = logging.getLogger(__name__)
47 log = logging.getLogger(__name__)
48
48
49
49
50 class IntegrationModel(BaseModel):
50 class IntegrationModel(BaseModel):
51
51
52 cls = Integration
52 cls = Integration
53
53
54 def __get_integration(self, integration):
54 def __get_integration(self, integration):
55 if isinstance(integration, Integration):
55 if isinstance(integration, Integration):
56 return integration
56 return integration
57 elif isinstance(integration, (int, long)):
57 elif isinstance(integration, (int, long)):
58 return self.sa.query(Integration).get(integration)
58 return self.sa.query(Integration).get(integration)
59 else:
59 else:
60 if integration:
60 if integration:
61 raise Exception('integration must be int, long or Instance'
61 raise Exception('integration must be int, long or Instance'
62 ' of Integration got %s' % type(integration))
62 ' of Integration got %s' % type(integration))
63
63
64 def create(self, IntegrationType, enabled, name, settings, repo=None):
64 def create(self, IntegrationType, name, enabled, scope, settings):
65 """ Create an IntegrationType integration """
65 """ Create an IntegrationType integration """
66 integration = Integration()
66 integration = Integration()
67 integration.integration_type = IntegrationType.key
67 integration.integration_type = IntegrationType.key
68 integration.settings = {}
69 integration.repo = repo
70 integration.enabled = enabled
71 integration.name = name
72
73 self.sa.add(integration)
68 self.sa.add(integration)
69 self.update_integration(integration, name, enabled, scope, settings)
74 self.sa.commit()
70 self.sa.commit()
75 return integration
71 return integration
76
72
73 def update_integration(self, integration, name, enabled, scope, settings):
74 """
75 :param scope: one of ['global', 'root_repos', <RepoGroup>. <Repository>]
76 """
77
78 integration = self.__get_integration(integration)
79
80 integration.scope = scope
81 integration.name = name
82 integration.enabled = enabled
83 integration.settings = settings
84
85 return integration
86
77 def delete(self, integration):
87 def delete(self, integration):
78 try:
88 integration = self.__get_integration(integration)
79 integration = self.__get_integration(integration)
89 if integration:
80 if integration:
90 self.sa.delete(integration)
81 self.sa.delete(integration)
91 return True
82 return True
83 except Exception:
84 log.error(traceback.format_exc())
85 raise
86 return False
92 return False
87
93
88 def get_integration_handler(self, integration):
94 def get_integration_handler(self, integration):
89 TypeClass = integration_type_registry.get(integration.integration_type)
95 TypeClass = integration_type_registry.get(integration.integration_type)
90 if not TypeClass:
96 if not TypeClass:
91 log.error('No class could be found for integration type: {}'.format(
97 log.error('No class could be found for integration type: {}'.format(
92 integration.integration_type))
98 integration.integration_type))
93 return None
99 return None
94
100
95 return TypeClass(integration.settings)
101 return TypeClass(integration.settings)
96
102
97 def send_event(self, integration, event):
103 def send_event(self, integration, event):
98 """ Send an event to an integration """
104 """ Send an event to an integration """
99 handler = self.get_integration_handler(integration)
105 handler = self.get_integration_handler(integration)
100 if handler:
106 if handler:
101 handler.send_event(event)
107 handler.send_event(event)
102
108
103 def get_integrations(self, repo=None, repo_group=None):
109 def get_integrations(self, scope, IntegrationType=None):
104 if repo:
110 """
105 return self.sa.query(Integration).filter(
111 Return integrations for a scope, which must be one of:
106 Integration.repo_id==repo.repo_id).all()
112
107 elif repo_group:
113 'all' - every integration, global/repogroup/repo
108 return self.sa.query(Integration).filter(
114 'global' - global integrations only
109 Integration.repo_group_id==repo_group.group_id).all()
115 <Repository> instance - integrations for this repo only
116 <RepoGroup> instance - integrations for this repogroup only
117 """
110
118
111 # global integrations
119 if isinstance(scope, Repository):
112 return self.sa.query(Integration).filter(
120 query = self.sa.query(Integration).filter(
113 Integration.repo_id==None).all()
121 Integration.repo==scope)
122 elif isinstance(scope, RepoGroup):
123 query = self.sa.query(Integration).filter(
124 Integration.repo_group==scope)
125 elif scope == 'global':
126 # global integrations
127 query = self.sa.query(Integration).filter(
128 and_(Integration.repo_id==None, Integration.repo_group_id==None)
129 )
130 elif scope == 'root_repos':
131 query = self.sa.query(Integration).filter(
132 and_(Integration.repo_id==None,
133 Integration.repo_group_id==None,
134 Integration.child_repos_only==True)
135 )
136 elif scope == 'all':
137 query = self.sa.query(Integration)
138 else:
139 raise Exception(
140 "invalid `scope`, must be one of: "
141 "['global', 'all', <Repository>, <RepoGroup>]")
142
143 if IntegrationType is not None:
144 query = query.filter(
145 Integration.integration_type==IntegrationType.key)
146
147 result = []
148 for integration in query.all():
149 IntType = integration_type_registry.get(integration.integration_type)
150 result.append((IntType, integration))
151 return result
114
152
115 def get_for_event(self, event, cache=False):
153 def get_for_event(self, event, cache=False):
116 """
154 """
117 Get integrations that match an event
155 Get integrations that match an event
118 """
156 """
119 query = self.sa.query(Integration).filter(Integration.enabled==True)
157 query = self.sa.query(
158 Integration
159 ).filter(
160 Integration.enabled==True
161 )
162
163 global_integrations_filter = and_(
164 Integration.repo_id==None,
165 Integration.repo_group_id==None,
166 Integration.child_repos_only==False,
167 )
168
169 if isinstance(event, events.RepoEvent):
170 root_repos_integrations_filter = and_(
171 Integration.repo_id==None,
172 Integration.repo_group_id==None,
173 Integration.child_repos_only==True,
174 )
175
176 clauses = [
177 global_integrations_filter,
178 ]
120
179
121 if isinstance(event, events.RepoEvent): # global + repo integrations
180 # repo integrations
122 # + repo_group integrations
181 if event.repo.repo_id: # pre create events dont have a repo_id yet
123 parent_groups = event.repo.groups_with_parents
182 clauses.append(
124 query = query.filter(
183 Integration.repo_id==event.repo.repo_id
125 or_(Integration.repo_id==None,
184 )
126 Integration.repo_id==event.repo.repo_id,
185
127 Integration.repo_group_id.in_(
186 if event.repo.group:
128 [group.group_id for group in parent_groups]
187 clauses.append(
129 )))
188 Integration.repo_group_id == event.repo.group.group_id
189 )
190 # repo group cascade to kids (maybe implement this sometime?)
191 # clauses.append(Integration.repo_group_id.in_(
192 # [group.group_id for group in
193 # event.repo.groups_with_parents]
194 # ))
195
196
197 if not event.repo.group: # root repo
198 clauses.append(root_repos_integrations_filter)
199
200 query = query.filter(or_(*clauses))
201
130 if cache:
202 if cache:
131 query = query.options(FromCache(
203 query = query.options(FromCache(
132 "sql_cache_short",
204 "sql_cache_short",
133 "get_enabled_repo_integrations_%i" % event.repo.repo_id))
205 "get_enabled_repo_integrations_%i" % event.repo.repo_id))
134 else: # only global integrations
206 else: # only global integrations
135 query = query.filter(Integration.repo_id==None)
207 query = query.filter(global_integrations_filter)
136 if cache:
208 if cache:
137 query = query.options(FromCache(
209 query = query.options(FromCache(
138 "sql_cache_short", "get_enabled_global_integrations"))
210 "sql_cache_short", "get_enabled_global_integrations"))
139
211
140 return query.all()
212 result = query.all()
213 return result No newline at end of file
@@ -1,656 +1,659 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2011-2016 RhodeCode GmbH
3 # Copyright (C) 2011-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21
21
22 """
22 """
23 repo group model for RhodeCode
23 repo group model for RhodeCode
24 """
24 """
25
25
26
26
27 import datetime
27 import datetime
28 import itertools
28 import itertools
29 import logging
29 import logging
30 import os
30 import os
31 import shutil
31 import shutil
32 import traceback
32 import traceback
33
33
34 from zope.cachedescriptors.property import Lazy as LazyProperty
34 from zope.cachedescriptors.property import Lazy as LazyProperty
35
35
36 from rhodecode import events
36 from rhodecode import events
37 from rhodecode.model import BaseModel
37 from rhodecode.model import BaseModel
38 from rhodecode.model.db import (
38 from rhodecode.model.db import (
39 RepoGroup, UserRepoGroupToPerm, User, Permission, UserGroupRepoGroupToPerm,
39 RepoGroup, UserRepoGroupToPerm, User, Permission, UserGroupRepoGroupToPerm,
40 UserGroup, Repository)
40 UserGroup, Repository)
41 from rhodecode.model.settings import VcsSettingsModel
41 from rhodecode.model.settings import VcsSettingsModel
42 from rhodecode.lib.caching_query import FromCache
42 from rhodecode.lib.caching_query import FromCache
43 from rhodecode.lib.utils2 import action_logger_generic
43 from rhodecode.lib.utils2 import action_logger_generic
44
44
45 log = logging.getLogger(__name__)
45 log = logging.getLogger(__name__)
46
46
47
47
48 class RepoGroupModel(BaseModel):
48 class RepoGroupModel(BaseModel):
49
49
50 cls = RepoGroup
50 cls = RepoGroup
51 PERSONAL_GROUP_DESC = '[personal] repo group: owner `%(username)s`'
51 PERSONAL_GROUP_DESC = '[personal] repo group: owner `%(username)s`'
52
52
53 def _get_user_group(self, users_group):
53 def _get_user_group(self, users_group):
54 return self._get_instance(UserGroup, users_group,
54 return self._get_instance(UserGroup, users_group,
55 callback=UserGroup.get_by_group_name)
55 callback=UserGroup.get_by_group_name)
56
56
57 def _get_repo_group(self, repo_group):
57 def _get_repo_group(self, repo_group):
58 return self._get_instance(RepoGroup, repo_group,
58 return self._get_instance(RepoGroup, repo_group,
59 callback=RepoGroup.get_by_group_name)
59 callback=RepoGroup.get_by_group_name)
60
60
61 @LazyProperty
61 @LazyProperty
62 def repos_path(self):
62 def repos_path(self):
63 """
63 """
64 Gets the repositories root path from database
64 Gets the repositories root path from database
65 """
65 """
66
66
67 settings_model = VcsSettingsModel(sa=self.sa)
67 settings_model = VcsSettingsModel(sa=self.sa)
68 return settings_model.get_repos_location()
68 return settings_model.get_repos_location()
69
69
70 def get_by_group_name(self, repo_group_name, cache=None):
70 def get_by_group_name(self, repo_group_name, cache=None):
71 repo = self.sa.query(RepoGroup) \
71 repo = self.sa.query(RepoGroup) \
72 .filter(RepoGroup.group_name == repo_group_name)
72 .filter(RepoGroup.group_name == repo_group_name)
73
73
74 if cache:
74 if cache:
75 repo = repo.options(FromCache(
75 repo = repo.options(FromCache(
76 "sql_cache_short", "get_repo_group_%s" % repo_group_name))
76 "sql_cache_short", "get_repo_group_%s" % repo_group_name))
77 return repo.scalar()
77 return repo.scalar()
78
78
79 def _create_default_perms(self, new_group):
79 def _create_default_perms(self, new_group):
80 # create default permission
80 # create default permission
81 default_perm = 'group.read'
81 default_perm = 'group.read'
82 def_user = User.get_default_user()
82 def_user = User.get_default_user()
83 for p in def_user.user_perms:
83 for p in def_user.user_perms:
84 if p.permission.permission_name.startswith('group.'):
84 if p.permission.permission_name.startswith('group.'):
85 default_perm = p.permission.permission_name
85 default_perm = p.permission.permission_name
86 break
86 break
87
87
88 repo_group_to_perm = UserRepoGroupToPerm()
88 repo_group_to_perm = UserRepoGroupToPerm()
89 repo_group_to_perm.permission = Permission.get_by_key(default_perm)
89 repo_group_to_perm.permission = Permission.get_by_key(default_perm)
90
90
91 repo_group_to_perm.group = new_group
91 repo_group_to_perm.group = new_group
92 repo_group_to_perm.user_id = def_user.user_id
92 repo_group_to_perm.user_id = def_user.user_id
93 return repo_group_to_perm
93 return repo_group_to_perm
94
94
95 def _get_group_name_and_parent(self, group_name_full, repo_in_path=False):
95 def _get_group_name_and_parent(self, group_name_full, repo_in_path=False):
96 """
96 """
97 Get's the group name and a parent group name from given group name.
97 Get's the group name and a parent group name from given group name.
98 If repo_in_path is set to truth, we asume the full path also includes
98 If repo_in_path is set to truth, we asume the full path also includes
99 repo name, in such case we clean the last element.
99 repo name, in such case we clean the last element.
100
100
101 :param group_name_full:
101 :param group_name_full:
102 """
102 """
103 split_paths = 1
103 split_paths = 1
104 if repo_in_path:
104 if repo_in_path:
105 split_paths = 2
105 split_paths = 2
106 _parts = group_name_full.rsplit(RepoGroup.url_sep(), split_paths)
106 _parts = group_name_full.rsplit(RepoGroup.url_sep(), split_paths)
107
107
108 if repo_in_path and len(_parts) > 1:
108 if repo_in_path and len(_parts) > 1:
109 # such case last element is the repo_name
109 # such case last element is the repo_name
110 _parts.pop(-1)
110 _parts.pop(-1)
111 group_name_cleaned = _parts[-1] # just the group name
111 group_name_cleaned = _parts[-1] # just the group name
112 parent_repo_group_name = None
112 parent_repo_group_name = None
113
113
114 if len(_parts) > 1:
114 if len(_parts) > 1:
115 parent_repo_group_name = _parts[0]
115 parent_repo_group_name = _parts[0]
116
116
117 if parent_repo_group_name:
117 if parent_repo_group_name:
118 parent_group = RepoGroup.get_by_group_name(parent_repo_group_name)
118 parent_group = RepoGroup.get_by_group_name(parent_repo_group_name)
119
119
120 return group_name_cleaned, parent_repo_group_name
120 return group_name_cleaned, parent_repo_group_name
121
121
122 def check_exist_filesystem(self, group_name, exc_on_failure=True):
122 def check_exist_filesystem(self, group_name, exc_on_failure=True):
123 create_path = os.path.join(self.repos_path, group_name)
123 create_path = os.path.join(self.repos_path, group_name)
124 log.debug('creating new group in %s', create_path)
124 log.debug('creating new group in %s', create_path)
125
125
126 if os.path.isdir(create_path):
126 if os.path.isdir(create_path):
127 if exc_on_failure:
127 if exc_on_failure:
128 raise Exception('That directory already exists !')
128 raise Exception('That directory already exists !')
129 return False
129 return False
130 return True
130 return True
131
131
132 def _create_group(self, group_name):
132 def _create_group(self, group_name):
133 """
133 """
134 makes repository group on filesystem
134 makes repository group on filesystem
135
135
136 :param repo_name:
136 :param repo_name:
137 :param parent_id:
137 :param parent_id:
138 """
138 """
139
139
140 self.check_exist_filesystem(group_name)
140 self.check_exist_filesystem(group_name)
141 create_path = os.path.join(self.repos_path, group_name)
141 create_path = os.path.join(self.repos_path, group_name)
142 log.debug('creating new group in %s', create_path)
142 log.debug('creating new group in %s', create_path)
143 os.makedirs(create_path, mode=0755)
143 os.makedirs(create_path, mode=0755)
144 log.debug('created group in %s', create_path)
144 log.debug('created group in %s', create_path)
145
145
146 def _rename_group(self, old, new):
146 def _rename_group(self, old, new):
147 """
147 """
148 Renames a group on filesystem
148 Renames a group on filesystem
149
149
150 :param group_name:
150 :param group_name:
151 """
151 """
152
152
153 if old == new:
153 if old == new:
154 log.debug('skipping group rename')
154 log.debug('skipping group rename')
155 return
155 return
156
156
157 log.debug('renaming repository group from %s to %s', old, new)
157 log.debug('renaming repository group from %s to %s', old, new)
158
158
159 old_path = os.path.join(self.repos_path, old)
159 old_path = os.path.join(self.repos_path, old)
160 new_path = os.path.join(self.repos_path, new)
160 new_path = os.path.join(self.repos_path, new)
161
161
162 log.debug('renaming repos paths from %s to %s', old_path, new_path)
162 log.debug('renaming repos paths from %s to %s', old_path, new_path)
163
163
164 if os.path.isdir(new_path):
164 if os.path.isdir(new_path):
165 raise Exception('Was trying to rename to already '
165 raise Exception('Was trying to rename to already '
166 'existing dir %s' % new_path)
166 'existing dir %s' % new_path)
167 shutil.move(old_path, new_path)
167 shutil.move(old_path, new_path)
168
168
169 def _delete_filesystem_group(self, group, force_delete=False):
169 def _delete_filesystem_group(self, group, force_delete=False):
170 """
170 """
171 Deletes a group from a filesystem
171 Deletes a group from a filesystem
172
172
173 :param group: instance of group from database
173 :param group: instance of group from database
174 :param force_delete: use shutil rmtree to remove all objects
174 :param force_delete: use shutil rmtree to remove all objects
175 """
175 """
176 paths = group.full_path.split(RepoGroup.url_sep())
176 paths = group.full_path.split(RepoGroup.url_sep())
177 paths = os.sep.join(paths)
177 paths = os.sep.join(paths)
178
178
179 rm_path = os.path.join(self.repos_path, paths)
179 rm_path = os.path.join(self.repos_path, paths)
180 log.info("Removing group %s", rm_path)
180 log.info("Removing group %s", rm_path)
181 # delete only if that path really exists
181 # delete only if that path really exists
182 if os.path.isdir(rm_path):
182 if os.path.isdir(rm_path):
183 if force_delete:
183 if force_delete:
184 shutil.rmtree(rm_path)
184 shutil.rmtree(rm_path)
185 else:
185 else:
186 # archive that group`
186 # archive that group`
187 _now = datetime.datetime.now()
187 _now = datetime.datetime.now()
188 _ms = str(_now.microsecond).rjust(6, '0')
188 _ms = str(_now.microsecond).rjust(6, '0')
189 _d = 'rm__%s_GROUP_%s' % (
189 _d = 'rm__%s_GROUP_%s' % (
190 _now.strftime('%Y%m%d_%H%M%S_' + _ms), group.name)
190 _now.strftime('%Y%m%d_%H%M%S_' + _ms), group.name)
191 shutil.move(rm_path, os.path.join(self.repos_path, _d))
191 shutil.move(rm_path, os.path.join(self.repos_path, _d))
192
192
193 def create(self, group_name, group_description, owner, just_db=False,
193 def create(self, group_name, group_description, owner, just_db=False,
194 copy_permissions=False, commit_early=True):
194 copy_permissions=False, commit_early=True):
195
195
196 (group_name_cleaned,
196 (group_name_cleaned,
197 parent_group_name) = RepoGroupModel()._get_group_name_and_parent(group_name)
197 parent_group_name) = RepoGroupModel()._get_group_name_and_parent(group_name)
198
198
199 parent_group = None
199 parent_group = None
200 if parent_group_name:
200 if parent_group_name:
201 parent_group = self._get_repo_group(parent_group_name)
201 parent_group = self._get_repo_group(parent_group_name)
202
202
203 # becase we are doing a cleanup, we need to check if such directory
203 # becase we are doing a cleanup, we need to check if such directory
204 # already exists. If we don't do that we can accidentally delete existing
204 # already exists. If we don't do that we can accidentally delete existing
205 # directory via cleanup that can cause data issues, since delete does a
205 # directory via cleanup that can cause data issues, since delete does a
206 # folder rename to special syntax later cleanup functions can delete this
206 # folder rename to special syntax later cleanup functions can delete this
207 cleanup_group = self.check_exist_filesystem(group_name,
207 cleanup_group = self.check_exist_filesystem(group_name,
208 exc_on_failure=False)
208 exc_on_failure=False)
209 try:
209 try:
210 user = self._get_user(owner)
210 user = self._get_user(owner)
211 new_repo_group = RepoGroup()
211 new_repo_group = RepoGroup()
212 new_repo_group.user = user
212 new_repo_group.user = user
213 new_repo_group.group_description = group_description or group_name
213 new_repo_group.group_description = group_description or group_name
214 new_repo_group.parent_group = parent_group
214 new_repo_group.parent_group = parent_group
215 new_repo_group.group_name = group_name
215 new_repo_group.group_name = group_name
216
216
217 self.sa.add(new_repo_group)
217 self.sa.add(new_repo_group)
218
218
219 # create an ADMIN permission for owner except if we're super admin,
219 # create an ADMIN permission for owner except if we're super admin,
220 # later owner should go into the owner field of groups
220 # later owner should go into the owner field of groups
221 if not user.is_admin:
221 if not user.is_admin:
222 self.grant_user_permission(repo_group=new_repo_group,
222 self.grant_user_permission(repo_group=new_repo_group,
223 user=owner, perm='group.admin')
223 user=owner, perm='group.admin')
224
224
225 if parent_group and copy_permissions:
225 if parent_group and copy_permissions:
226 # copy permissions from parent
226 # copy permissions from parent
227 user_perms = UserRepoGroupToPerm.query() \
227 user_perms = UserRepoGroupToPerm.query() \
228 .filter(UserRepoGroupToPerm.group == parent_group).all()
228 .filter(UserRepoGroupToPerm.group == parent_group).all()
229
229
230 group_perms = UserGroupRepoGroupToPerm.query() \
230 group_perms = UserGroupRepoGroupToPerm.query() \
231 .filter(UserGroupRepoGroupToPerm.group == parent_group).all()
231 .filter(UserGroupRepoGroupToPerm.group == parent_group).all()
232
232
233 for perm in user_perms:
233 for perm in user_perms:
234 # don't copy over the permission for user who is creating
234 # don't copy over the permission for user who is creating
235 # this group, if he is not super admin he get's admin
235 # this group, if he is not super admin he get's admin
236 # permission set above
236 # permission set above
237 if perm.user != user or user.is_admin:
237 if perm.user != user or user.is_admin:
238 UserRepoGroupToPerm.create(
238 UserRepoGroupToPerm.create(
239 perm.user, new_repo_group, perm.permission)
239 perm.user, new_repo_group, perm.permission)
240
240
241 for perm in group_perms:
241 for perm in group_perms:
242 UserGroupRepoGroupToPerm.create(
242 UserGroupRepoGroupToPerm.create(
243 perm.users_group, new_repo_group, perm.permission)
243 perm.users_group, new_repo_group, perm.permission)
244 else:
244 else:
245 perm_obj = self._create_default_perms(new_repo_group)
245 perm_obj = self._create_default_perms(new_repo_group)
246 self.sa.add(perm_obj)
246 self.sa.add(perm_obj)
247
247
248 # now commit the changes, earlier so we are sure everything is in
248 # now commit the changes, earlier so we are sure everything is in
249 # the database.
249 # the database.
250 if commit_early:
250 if commit_early:
251 self.sa.commit()
251 self.sa.commit()
252 if not just_db:
252 if not just_db:
253 self._create_group(new_repo_group.group_name)
253 self._create_group(new_repo_group.group_name)
254
254
255 # trigger the post hook
255 # trigger the post hook
256 from rhodecode.lib.hooks_base import log_create_repository_group
256 from rhodecode.lib.hooks_base import log_create_repository_group
257 repo_group = RepoGroup.get_by_group_name(group_name)
257 repo_group = RepoGroup.get_by_group_name(group_name)
258 log_create_repository_group(
258 log_create_repository_group(
259 created_by=user.username, **repo_group.get_dict())
259 created_by=user.username, **repo_group.get_dict())
260
260
261 # Trigger create event.
261 # Trigger create event.
262 events.trigger(events.RepoGroupCreateEvent(repo_group))
262 events.trigger(events.RepoGroupCreateEvent(repo_group))
263
263
264 return new_repo_group
264 return new_repo_group
265 except Exception:
265 except Exception:
266 self.sa.rollback()
266 self.sa.rollback()
267 log.exception('Exception occurred when creating repository group, '
267 log.exception('Exception occurred when creating repository group, '
268 'doing cleanup...')
268 'doing cleanup...')
269 # rollback things manually !
269 # rollback things manually !
270 repo_group = RepoGroup.get_by_group_name(group_name)
270 repo_group = RepoGroup.get_by_group_name(group_name)
271 if repo_group:
271 if repo_group:
272 RepoGroup.delete(repo_group.group_id)
272 RepoGroup.delete(repo_group.group_id)
273 self.sa.commit()
273 self.sa.commit()
274 if cleanup_group:
274 if cleanup_group:
275 RepoGroupModel()._delete_filesystem_group(repo_group)
275 RepoGroupModel()._delete_filesystem_group(repo_group)
276 raise
276 raise
277
277
278 def update_permissions(
278 def update_permissions(
279 self, repo_group, perm_additions=None, perm_updates=None,
279 self, repo_group, perm_additions=None, perm_updates=None,
280 perm_deletions=None, recursive=None, check_perms=True,
280 perm_deletions=None, recursive=None, check_perms=True,
281 cur_user=None):
281 cur_user=None):
282 from rhodecode.model.repo import RepoModel
282 from rhodecode.model.repo import RepoModel
283 from rhodecode.lib.auth import HasUserGroupPermissionAny
283 from rhodecode.lib.auth import HasUserGroupPermissionAny
284
284
285 if not perm_additions:
285 if not perm_additions:
286 perm_additions = []
286 perm_additions = []
287 if not perm_updates:
287 if not perm_updates:
288 perm_updates = []
288 perm_updates = []
289 if not perm_deletions:
289 if not perm_deletions:
290 perm_deletions = []
290 perm_deletions = []
291
291
292 req_perms = ('usergroup.read', 'usergroup.write', 'usergroup.admin')
292 req_perms = ('usergroup.read', 'usergroup.write', 'usergroup.admin')
293
293
294 def _set_perm_user(obj, user, perm):
294 def _set_perm_user(obj, user, perm):
295 if isinstance(obj, RepoGroup):
295 if isinstance(obj, RepoGroup):
296 self.grant_user_permission(
296 self.grant_user_permission(
297 repo_group=obj, user=user, perm=perm)
297 repo_group=obj, user=user, perm=perm)
298 elif isinstance(obj, Repository):
298 elif isinstance(obj, Repository):
299 # private repos will not allow to change the default
299 # private repos will not allow to change the default
300 # permissions using recursive mode
300 # permissions using recursive mode
301 if obj.private and user == User.DEFAULT_USER:
301 if obj.private and user == User.DEFAULT_USER:
302 return
302 return
303
303
304 # we set group permission but we have to switch to repo
304 # we set group permission but we have to switch to repo
305 # permission
305 # permission
306 perm = perm.replace('group.', 'repository.')
306 perm = perm.replace('group.', 'repository.')
307 RepoModel().grant_user_permission(
307 RepoModel().grant_user_permission(
308 repo=obj, user=user, perm=perm)
308 repo=obj, user=user, perm=perm)
309
309
310 def _set_perm_group(obj, users_group, perm):
310 def _set_perm_group(obj, users_group, perm):
311 if isinstance(obj, RepoGroup):
311 if isinstance(obj, RepoGroup):
312 self.grant_user_group_permission(
312 self.grant_user_group_permission(
313 repo_group=obj, group_name=users_group, perm=perm)
313 repo_group=obj, group_name=users_group, perm=perm)
314 elif isinstance(obj, Repository):
314 elif isinstance(obj, Repository):
315 # we set group permission but we have to switch to repo
315 # we set group permission but we have to switch to repo
316 # permission
316 # permission
317 perm = perm.replace('group.', 'repository.')
317 perm = perm.replace('group.', 'repository.')
318 RepoModel().grant_user_group_permission(
318 RepoModel().grant_user_group_permission(
319 repo=obj, group_name=users_group, perm=perm)
319 repo=obj, group_name=users_group, perm=perm)
320
320
321 def _revoke_perm_user(obj, user):
321 def _revoke_perm_user(obj, user):
322 if isinstance(obj, RepoGroup):
322 if isinstance(obj, RepoGroup):
323 self.revoke_user_permission(repo_group=obj, user=user)
323 self.revoke_user_permission(repo_group=obj, user=user)
324 elif isinstance(obj, Repository):
324 elif isinstance(obj, Repository):
325 RepoModel().revoke_user_permission(repo=obj, user=user)
325 RepoModel().revoke_user_permission(repo=obj, user=user)
326
326
327 def _revoke_perm_group(obj, user_group):
327 def _revoke_perm_group(obj, user_group):
328 if isinstance(obj, RepoGroup):
328 if isinstance(obj, RepoGroup):
329 self.revoke_user_group_permission(
329 self.revoke_user_group_permission(
330 repo_group=obj, group_name=user_group)
330 repo_group=obj, group_name=user_group)
331 elif isinstance(obj, Repository):
331 elif isinstance(obj, Repository):
332 RepoModel().revoke_user_group_permission(
332 RepoModel().revoke_user_group_permission(
333 repo=obj, group_name=user_group)
333 repo=obj, group_name=user_group)
334
334
335 # start updates
335 # start updates
336 updates = []
336 updates = []
337 log.debug('Now updating permissions for %s in recursive mode:%s',
337 log.debug('Now updating permissions for %s in recursive mode:%s',
338 repo_group, recursive)
338 repo_group, recursive)
339
339
340 # initialize check function, we'll call that multiple times
340 # initialize check function, we'll call that multiple times
341 has_group_perm = HasUserGroupPermissionAny(*req_perms)
341 has_group_perm = HasUserGroupPermissionAny(*req_perms)
342
342
343 for obj in repo_group.recursive_groups_and_repos():
343 for obj in repo_group.recursive_groups_and_repos():
344 # iterated obj is an instance of a repos group or repository in
344 # iterated obj is an instance of a repos group or repository in
345 # that group, recursive option can be: none, repos, groups, all
345 # that group, recursive option can be: none, repos, groups, all
346 if recursive == 'all':
346 if recursive == 'all':
347 obj = obj
347 obj = obj
348 elif recursive == 'repos':
348 elif recursive == 'repos':
349 # skip groups, other than this one
349 # skip groups, other than this one
350 if isinstance(obj, RepoGroup) and not obj == repo_group:
350 if isinstance(obj, RepoGroup) and not obj == repo_group:
351 continue
351 continue
352 elif recursive == 'groups':
352 elif recursive == 'groups':
353 # skip repos
353 # skip repos
354 if isinstance(obj, Repository):
354 if isinstance(obj, Repository):
355 continue
355 continue
356 else: # recursive == 'none':
356 else: # recursive == 'none':
357 # DEFAULT option - don't apply to iterated objects
357 # DEFAULT option - don't apply to iterated objects
358 # also we do a break at the end of this loop. if we are not
358 # also we do a break at the end of this loop. if we are not
359 # in recursive mode
359 # in recursive mode
360 obj = repo_group
360 obj = repo_group
361
361
362 # update permissions
362 # update permissions
363 for member_id, perm, member_type in perm_updates:
363 for member_id, perm, member_type in perm_updates:
364 member_id = int(member_id)
364 member_id = int(member_id)
365 if member_type == 'user':
365 if member_type == 'user':
366 # this updates also current one if found
366 # this updates also current one if found
367 _set_perm_user(obj, user=member_id, perm=perm)
367 _set_perm_user(obj, user=member_id, perm=perm)
368 else: # set for user group
368 else: # set for user group
369 member_name = UserGroup.get(member_id).users_group_name
369 member_name = UserGroup.get(member_id).users_group_name
370 if not check_perms or has_group_perm(member_name,
370 if not check_perms or has_group_perm(member_name,
371 user=cur_user):
371 user=cur_user):
372 _set_perm_group(obj, users_group=member_id, perm=perm)
372 _set_perm_group(obj, users_group=member_id, perm=perm)
373
373
374 # set new permissions
374 # set new permissions
375 for member_id, perm, member_type in perm_additions:
375 for member_id, perm, member_type in perm_additions:
376 member_id = int(member_id)
376 member_id = int(member_id)
377 if member_type == 'user':
377 if member_type == 'user':
378 _set_perm_user(obj, user=member_id, perm=perm)
378 _set_perm_user(obj, user=member_id, perm=perm)
379 else: # set for user group
379 else: # set for user group
380 # check if we have permissions to alter this usergroup
380 # check if we have permissions to alter this usergroup
381 member_name = UserGroup.get(member_id).users_group_name
381 member_name = UserGroup.get(member_id).users_group_name
382 if not check_perms or has_group_perm(member_name,
382 if not check_perms or has_group_perm(member_name,
383 user=cur_user):
383 user=cur_user):
384 _set_perm_group(obj, users_group=member_id, perm=perm)
384 _set_perm_group(obj, users_group=member_id, perm=perm)
385
385
386 # delete permissions
386 # delete permissions
387 for member_id, perm, member_type in perm_deletions:
387 for member_id, perm, member_type in perm_deletions:
388 member_id = int(member_id)
388 member_id = int(member_id)
389 if member_type == 'user':
389 if member_type == 'user':
390 _revoke_perm_user(obj, user=member_id)
390 _revoke_perm_user(obj, user=member_id)
391 else: # set for user group
391 else: # set for user group
392 # check if we have permissions to alter this usergroup
392 # check if we have permissions to alter this usergroup
393 member_name = UserGroup.get(member_id).users_group_name
393 member_name = UserGroup.get(member_id).users_group_name
394 if not check_perms or has_group_perm(member_name,
394 if not check_perms or has_group_perm(member_name,
395 user=cur_user):
395 user=cur_user):
396 _revoke_perm_group(obj, user_group=member_id)
396 _revoke_perm_group(obj, user_group=member_id)
397
397
398 updates.append(obj)
398 updates.append(obj)
399 # if it's not recursive call for all,repos,groups
399 # if it's not recursive call for all,repos,groups
400 # break the loop and don't proceed with other changes
400 # break the loop and don't proceed with other changes
401 if recursive not in ['all', 'repos', 'groups']:
401 if recursive not in ['all', 'repos', 'groups']:
402 break
402 break
403
403
404 return updates
404 return updates
405
405
406 def update(self, repo_group, form_data):
406 def update(self, repo_group, form_data):
407 try:
407 try:
408 repo_group = self._get_repo_group(repo_group)
408 repo_group = self._get_repo_group(repo_group)
409 old_path = repo_group.full_path
409 old_path = repo_group.full_path
410
410
411 # change properties
411 # change properties
412 if 'group_description' in form_data:
412 if 'group_description' in form_data:
413 repo_group.group_description = form_data['group_description']
413 repo_group.group_description = form_data['group_description']
414
414
415 if 'enable_locking' in form_data:
415 if 'enable_locking' in form_data:
416 repo_group.enable_locking = form_data['enable_locking']
416 repo_group.enable_locking = form_data['enable_locking']
417
417
418 if 'group_parent_id' in form_data:
418 if 'group_parent_id' in form_data:
419 parent_group = (
419 parent_group = (
420 self._get_repo_group(form_data['group_parent_id']))
420 self._get_repo_group(form_data['group_parent_id']))
421 repo_group.group_parent_id = (
421 repo_group.group_parent_id = (
422 parent_group.group_id if parent_group else None)
422 parent_group.group_id if parent_group else None)
423 repo_group.parent_group = parent_group
423 repo_group.parent_group = parent_group
424
424
425 # mikhail: to update the full_path, we have to explicitly
425 # mikhail: to update the full_path, we have to explicitly
426 # update group_name
426 # update group_name
427 group_name = form_data.get('group_name', repo_group.name)
427 group_name = form_data.get('group_name', repo_group.name)
428 repo_group.group_name = repo_group.get_new_name(group_name)
428 repo_group.group_name = repo_group.get_new_name(group_name)
429
429
430 new_path = repo_group.full_path
430 new_path = repo_group.full_path
431
431
432 if 'user' in form_data:
432 if 'user' in form_data:
433 repo_group.user = User.get_by_username(form_data['user'])
433 repo_group.user = User.get_by_username(form_data['user'])
434
434
435 self.sa.add(repo_group)
435 self.sa.add(repo_group)
436
436
437 # iterate over all members of this groups and do fixes
437 # iterate over all members of this groups and do fixes
438 # set locking if given
438 # set locking if given
439 # if obj is a repoGroup also fix the name of the group according
439 # if obj is a repoGroup also fix the name of the group according
440 # to the parent
440 # to the parent
441 # if obj is a Repo fix it's name
441 # if obj is a Repo fix it's name
442 # this can be potentially heavy operation
442 # this can be potentially heavy operation
443 for obj in repo_group.recursive_groups_and_repos():
443 for obj in repo_group.recursive_groups_and_repos():
444 # set the value from it's parent
444 # set the value from it's parent
445 obj.enable_locking = repo_group.enable_locking
445 obj.enable_locking = repo_group.enable_locking
446 if isinstance(obj, RepoGroup):
446 if isinstance(obj, RepoGroup):
447 new_name = obj.get_new_name(obj.name)
447 new_name = obj.get_new_name(obj.name)
448 log.debug('Fixing group %s to new name %s',
448 log.debug('Fixing group %s to new name %s',
449 obj.group_name, new_name)
449 obj.group_name, new_name)
450 obj.group_name = new_name
450 obj.group_name = new_name
451 elif isinstance(obj, Repository):
451 elif isinstance(obj, Repository):
452 # we need to get all repositories from this new group and
452 # we need to get all repositories from this new group and
453 # rename them accordingly to new group path
453 # rename them accordingly to new group path
454 new_name = obj.get_new_name(obj.just_name)
454 new_name = obj.get_new_name(obj.just_name)
455 log.debug('Fixing repo %s to new name %s',
455 log.debug('Fixing repo %s to new name %s',
456 obj.repo_name, new_name)
456 obj.repo_name, new_name)
457 obj.repo_name = new_name
457 obj.repo_name = new_name
458 self.sa.add(obj)
458 self.sa.add(obj)
459
459
460 self._rename_group(old_path, new_path)
460 self._rename_group(old_path, new_path)
461
461
462 # Trigger update event.
462 # Trigger update event.
463 events.trigger(events.RepoGroupUpdateEvent(repo_group))
463 events.trigger(events.RepoGroupUpdateEvent(repo_group))
464
464
465 return repo_group
465 return repo_group
466 except Exception:
466 except Exception:
467 log.error(traceback.format_exc())
467 log.error(traceback.format_exc())
468 raise
468 raise
469
469
470 def delete(self, repo_group, force_delete=False, fs_remove=True):
470 def delete(self, repo_group, force_delete=False, fs_remove=True):
471 repo_group = self._get_repo_group(repo_group)
471 repo_group = self._get_repo_group(repo_group)
472 if not repo_group:
473 return False
472 try:
474 try:
473 self.sa.delete(repo_group)
475 self.sa.delete(repo_group)
474 if fs_remove:
476 if fs_remove:
475 self._delete_filesystem_group(repo_group, force_delete)
477 self._delete_filesystem_group(repo_group, force_delete)
476 else:
478 else:
477 log.debug('skipping removal from filesystem')
479 log.debug('skipping removal from filesystem')
478
480
479 # Trigger delete event.
481 # Trigger delete event.
480 events.trigger(events.RepoGroupDeleteEvent(repo_group))
482 events.trigger(events.RepoGroupDeleteEvent(repo_group))
483 return True
481
484
482 except Exception:
485 except Exception:
483 log.error('Error removing repo_group %s', repo_group)
486 log.error('Error removing repo_group %s', repo_group)
484 raise
487 raise
485
488
486 def grant_user_permission(self, repo_group, user, perm):
489 def grant_user_permission(self, repo_group, user, perm):
487 """
490 """
488 Grant permission for user on given repository group, or update
491 Grant permission for user on given repository group, or update
489 existing one if found
492 existing one if found
490
493
491 :param repo_group: Instance of RepoGroup, repositories_group_id,
494 :param repo_group: Instance of RepoGroup, repositories_group_id,
492 or repositories_group name
495 or repositories_group name
493 :param user: Instance of User, user_id or username
496 :param user: Instance of User, user_id or username
494 :param perm: Instance of Permission, or permission_name
497 :param perm: Instance of Permission, or permission_name
495 """
498 """
496
499
497 repo_group = self._get_repo_group(repo_group)
500 repo_group = self._get_repo_group(repo_group)
498 user = self._get_user(user)
501 user = self._get_user(user)
499 permission = self._get_perm(perm)
502 permission = self._get_perm(perm)
500
503
501 # check if we have that permission already
504 # check if we have that permission already
502 obj = self.sa.query(UserRepoGroupToPerm)\
505 obj = self.sa.query(UserRepoGroupToPerm)\
503 .filter(UserRepoGroupToPerm.user == user)\
506 .filter(UserRepoGroupToPerm.user == user)\
504 .filter(UserRepoGroupToPerm.group == repo_group)\
507 .filter(UserRepoGroupToPerm.group == repo_group)\
505 .scalar()
508 .scalar()
506 if obj is None:
509 if obj is None:
507 # create new !
510 # create new !
508 obj = UserRepoGroupToPerm()
511 obj = UserRepoGroupToPerm()
509 obj.group = repo_group
512 obj.group = repo_group
510 obj.user = user
513 obj.user = user
511 obj.permission = permission
514 obj.permission = permission
512 self.sa.add(obj)
515 self.sa.add(obj)
513 log.debug('Granted perm %s to %s on %s', perm, user, repo_group)
516 log.debug('Granted perm %s to %s on %s', perm, user, repo_group)
514 action_logger_generic(
517 action_logger_generic(
515 'granted permission: {} to user: {} on repogroup: {}'.format(
518 'granted permission: {} to user: {} on repogroup: {}'.format(
516 perm, user, repo_group), namespace='security.repogroup')
519 perm, user, repo_group), namespace='security.repogroup')
517 return obj
520 return obj
518
521
519 def revoke_user_permission(self, repo_group, user):
522 def revoke_user_permission(self, repo_group, user):
520 """
523 """
521 Revoke permission for user on given repository group
524 Revoke permission for user on given repository group
522
525
523 :param repo_group: Instance of RepoGroup, repositories_group_id,
526 :param repo_group: Instance of RepoGroup, repositories_group_id,
524 or repositories_group name
527 or repositories_group name
525 :param user: Instance of User, user_id or username
528 :param user: Instance of User, user_id or username
526 """
529 """
527
530
528 repo_group = self._get_repo_group(repo_group)
531 repo_group = self._get_repo_group(repo_group)
529 user = self._get_user(user)
532 user = self._get_user(user)
530
533
531 obj = self.sa.query(UserRepoGroupToPerm)\
534 obj = self.sa.query(UserRepoGroupToPerm)\
532 .filter(UserRepoGroupToPerm.user == user)\
535 .filter(UserRepoGroupToPerm.user == user)\
533 .filter(UserRepoGroupToPerm.group == repo_group)\
536 .filter(UserRepoGroupToPerm.group == repo_group)\
534 .scalar()
537 .scalar()
535 if obj:
538 if obj:
536 self.sa.delete(obj)
539 self.sa.delete(obj)
537 log.debug('Revoked perm on %s on %s', repo_group, user)
540 log.debug('Revoked perm on %s on %s', repo_group, user)
538 action_logger_generic(
541 action_logger_generic(
539 'revoked permission from user: {} on repogroup: {}'.format(
542 'revoked permission from user: {} on repogroup: {}'.format(
540 user, repo_group), namespace='security.repogroup')
543 user, repo_group), namespace='security.repogroup')
541
544
542 def grant_user_group_permission(self, repo_group, group_name, perm):
545 def grant_user_group_permission(self, repo_group, group_name, perm):
543 """
546 """
544 Grant permission for user group on given repository group, or update
547 Grant permission for user group on given repository group, or update
545 existing one if found
548 existing one if found
546
549
547 :param repo_group: Instance of RepoGroup, repositories_group_id,
550 :param repo_group: Instance of RepoGroup, repositories_group_id,
548 or repositories_group name
551 or repositories_group name
549 :param group_name: Instance of UserGroup, users_group_id,
552 :param group_name: Instance of UserGroup, users_group_id,
550 or user group name
553 or user group name
551 :param perm: Instance of Permission, or permission_name
554 :param perm: Instance of Permission, or permission_name
552 """
555 """
553 repo_group = self._get_repo_group(repo_group)
556 repo_group = self._get_repo_group(repo_group)
554 group_name = self._get_user_group(group_name)
557 group_name = self._get_user_group(group_name)
555 permission = self._get_perm(perm)
558 permission = self._get_perm(perm)
556
559
557 # check if we have that permission already
560 # check if we have that permission already
558 obj = self.sa.query(UserGroupRepoGroupToPerm)\
561 obj = self.sa.query(UserGroupRepoGroupToPerm)\
559 .filter(UserGroupRepoGroupToPerm.group == repo_group)\
562 .filter(UserGroupRepoGroupToPerm.group == repo_group)\
560 .filter(UserGroupRepoGroupToPerm.users_group == group_name)\
563 .filter(UserGroupRepoGroupToPerm.users_group == group_name)\
561 .scalar()
564 .scalar()
562
565
563 if obj is None:
566 if obj is None:
564 # create new
567 # create new
565 obj = UserGroupRepoGroupToPerm()
568 obj = UserGroupRepoGroupToPerm()
566
569
567 obj.group = repo_group
570 obj.group = repo_group
568 obj.users_group = group_name
571 obj.users_group = group_name
569 obj.permission = permission
572 obj.permission = permission
570 self.sa.add(obj)
573 self.sa.add(obj)
571 log.debug('Granted perm %s to %s on %s', perm, group_name, repo_group)
574 log.debug('Granted perm %s to %s on %s', perm, group_name, repo_group)
572 action_logger_generic(
575 action_logger_generic(
573 'granted permission: {} to usergroup: {} on repogroup: {}'.format(
576 'granted permission: {} to usergroup: {} on repogroup: {}'.format(
574 perm, group_name, repo_group), namespace='security.repogroup')
577 perm, group_name, repo_group), namespace='security.repogroup')
575 return obj
578 return obj
576
579
577 def revoke_user_group_permission(self, repo_group, group_name):
580 def revoke_user_group_permission(self, repo_group, group_name):
578 """
581 """
579 Revoke permission for user group on given repository group
582 Revoke permission for user group on given repository group
580
583
581 :param repo_group: Instance of RepoGroup, repositories_group_id,
584 :param repo_group: Instance of RepoGroup, repositories_group_id,
582 or repositories_group name
585 or repositories_group name
583 :param group_name: Instance of UserGroup, users_group_id,
586 :param group_name: Instance of UserGroup, users_group_id,
584 or user group name
587 or user group name
585 """
588 """
586 repo_group = self._get_repo_group(repo_group)
589 repo_group = self._get_repo_group(repo_group)
587 group_name = self._get_user_group(group_name)
590 group_name = self._get_user_group(group_name)
588
591
589 obj = self.sa.query(UserGroupRepoGroupToPerm)\
592 obj = self.sa.query(UserGroupRepoGroupToPerm)\
590 .filter(UserGroupRepoGroupToPerm.group == repo_group)\
593 .filter(UserGroupRepoGroupToPerm.group == repo_group)\
591 .filter(UserGroupRepoGroupToPerm.users_group == group_name)\
594 .filter(UserGroupRepoGroupToPerm.users_group == group_name)\
592 .scalar()
595 .scalar()
593 if obj:
596 if obj:
594 self.sa.delete(obj)
597 self.sa.delete(obj)
595 log.debug('Revoked perm to %s on %s', repo_group, group_name)
598 log.debug('Revoked perm to %s on %s', repo_group, group_name)
596 action_logger_generic(
599 action_logger_generic(
597 'revoked permission from usergroup: {} on repogroup: {}'.format(
600 'revoked permission from usergroup: {} on repogroup: {}'.format(
598 group_name, repo_group), namespace='security.repogroup')
601 group_name, repo_group), namespace='security.repogroup')
599
602
600 def get_repo_groups_as_dict(self, repo_group_list=None, admin=False,
603 def get_repo_groups_as_dict(self, repo_group_list=None, admin=False,
601 super_user_actions=False):
604 super_user_actions=False):
602
605
603 from rhodecode.lib.utils import PartialRenderer
606 from rhodecode.lib.utils import PartialRenderer
604 _render = PartialRenderer('data_table/_dt_elements.html')
607 _render = PartialRenderer('data_table/_dt_elements.html')
605 c = _render.c
608 c = _render.c
606 h = _render.h
609 h = _render.h
607
610
608 def quick_menu(repo_group_name):
611 def quick_menu(repo_group_name):
609 return _render('quick_repo_group_menu', repo_group_name)
612 return _render('quick_repo_group_menu', repo_group_name)
610
613
611 def repo_group_lnk(repo_group_name):
614 def repo_group_lnk(repo_group_name):
612 return _render('repo_group_name', repo_group_name)
615 return _render('repo_group_name', repo_group_name)
613
616
614 def desc(desc):
617 def desc(desc):
615 if c.visual.stylify_metatags:
618 if c.visual.stylify_metatags:
616 return h.urlify_text(h.escaped_stylize(h.truncate(desc, 60)))
619 return h.urlify_text(h.escaped_stylize(h.truncate(desc, 60)))
617 else:
620 else:
618 return h.urlify_text(h.html_escape(h.truncate(desc, 60)))
621 return h.urlify_text(h.html_escape(h.truncate(desc, 60)))
619
622
620 def repo_group_actions(repo_group_id, repo_group_name, gr_count):
623 def repo_group_actions(repo_group_id, repo_group_name, gr_count):
621 return _render(
624 return _render(
622 'repo_group_actions', repo_group_id, repo_group_name, gr_count)
625 'repo_group_actions', repo_group_id, repo_group_name, gr_count)
623
626
624 def repo_group_name(repo_group_name, children_groups):
627 def repo_group_name(repo_group_name, children_groups):
625 return _render("repo_group_name", repo_group_name, children_groups)
628 return _render("repo_group_name", repo_group_name, children_groups)
626
629
627 def user_profile(username):
630 def user_profile(username):
628 return _render('user_profile', username)
631 return _render('user_profile', username)
629
632
630 repo_group_data = []
633 repo_group_data = []
631 for group in repo_group_list:
634 for group in repo_group_list:
632
635
633 row = {
636 row = {
634 "menu": quick_menu(group.group_name),
637 "menu": quick_menu(group.group_name),
635 "name": repo_group_lnk(group.group_name),
638 "name": repo_group_lnk(group.group_name),
636 "name_raw": group.group_name,
639 "name_raw": group.group_name,
637 "desc": desc(group.group_description),
640 "desc": desc(group.group_description),
638 "top_level_repos": 0,
641 "top_level_repos": 0,
639 "owner": user_profile(group.user.username)
642 "owner": user_profile(group.user.username)
640 }
643 }
641 if admin:
644 if admin:
642 repo_count = group.repositories.count()
645 repo_count = group.repositories.count()
643 children_groups = map(
646 children_groups = map(
644 h.safe_unicode,
647 h.safe_unicode,
645 itertools.chain((g.name for g in group.parents),
648 itertools.chain((g.name for g in group.parents),
646 (x.name for x in [group])))
649 (x.name for x in [group])))
647 row.update({
650 row.update({
648 "action": repo_group_actions(
651 "action": repo_group_actions(
649 group.group_id, group.group_name, repo_count),
652 group.group_id, group.group_name, repo_count),
650 "top_level_repos": repo_count,
653 "top_level_repos": repo_count,
651 "name": repo_group_name(group.group_name, children_groups),
654 "name": repo_group_name(group.group_name, children_groups),
652
655
653 })
656 })
654 repo_group_data.append(row)
657 repo_group_data.append(row)
655
658
656 return repo_group_data
659 return repo_group_data
@@ -1,106 +1,117 b''
1 .deform {
1 .deform {
2
2
3 * {
3 * {
4 box-sizing: border-box;
4 box-sizing: border-box;
5 }
5 }
6
6
7 .required:after {
7 .required:after {
8 color: #e32;
8 color: #e32;
9 content: '*';
9 content: '*';
10 display:inline;
10 display:inline;
11 }
11 }
12
12
13 .control-label {
13 .control-label {
14 width: 200px;
14 width: 200px;
15 padding: 10px;
15 padding: 10px;
16 float: left;
16 float: left;
17 }
17 }
18 .control-inputs {
18 .control-inputs {
19 width: 400px;
19 width: 400px;
20 float: left;
20 float: left;
21 }
21 }
22 .form-group .radio, .form-group .checkbox {
22 .form-group .radio, .form-group .checkbox {
23 position: relative;
23 position: relative;
24 display: block;
24 display: block;
25 /* margin-bottom: 10px; */
25 /* margin-bottom: 10px; */
26 }
26 }
27
27
28 .form-group {
28 .form-group {
29 clear: left;
29 clear: left;
30 margin-bottom: 20px;
30 margin-bottom: 20px;
31
31
32 &:after { /* clear fix */
32 &:after { /* clear fix */
33 content: " ";
33 content: " ";
34 display: block;
34 display: block;
35 clear: left;
35 clear: left;
36 }
36 }
37 }
37 }
38
38
39 .form-control {
39 .form-control {
40 width: 100%;
40 width: 100%;
41 padding: 0.9em;
42 border: 1px solid #979797;
43 border-radius: 2px;
44 }
45 .form-control.select2-container {
46 padding: 0; /* padding already applied in .drop-menu a */
47 }
48
49 .form-control.readonly {
50 background: #eeeeee;
51 cursor: not-allowed;
41 }
52 }
42
53
43 .error-block {
54 .error-block {
44 color: red;
55 color: red;
45 margin: 0;
56 margin: 0;
46 }
57 }
47
58
48 .help-block {
59 .help-block {
49 margin: 0;
60 margin: 0;
50 }
61 }
51
62
52 .deform-seq-container .control-inputs {
63 .deform-seq-container .control-inputs {
53 width: 100%;
64 width: 100%;
54 }
65 }
55
66
56 .deform-seq-container .deform-seq-item-handle {
67 .deform-seq-container .deform-seq-item-handle {
57 width: 8.3%;
68 width: 8.3%;
58 float: left;
69 float: left;
59 }
70 }
60
71
61 .deform-seq-container .deform-seq-item-group {
72 .deform-seq-container .deform-seq-item-group {
62 width: 91.6%;
73 width: 91.6%;
63 float: left;
74 float: left;
64 }
75 }
65
76
66 .form-control {
77 .form-control {
67 input {
78 input {
68 height: 40px;
79 height: 40px;
69 }
80 }
70 input[type=checkbox], input[type=radio] {
81 input[type=checkbox], input[type=radio] {
71 height: auto;
82 height: auto;
72 }
83 }
73 select {
84 select {
74 height: 40px;
85 height: 40px;
75 }
86 }
76 }
87 }
77
88
78 .form-control.select2-container {
89 .form-control.select2-container {
79 height: 40px;
90 height: 40px;
80 }
91 }
81
92
82 .deform-two-field-sequence .deform-seq-container .deform-seq-item label {
93 .deform-two-field-sequence .deform-seq-container .deform-seq-item label {
83 display: none;
94 display: none;
84 }
95 }
85 .deform-two-field-sequence .deform-seq-container .deform-seq-item:first-child label {
96 .deform-two-field-sequence .deform-seq-container .deform-seq-item:first-child label {
86 display: block;
97 display: block;
87 }
98 }
88 .deform-two-field-sequence .deform-seq-container .deform-seq-item .panel-heading {
99 .deform-two-field-sequence .deform-seq-container .deform-seq-item .panel-heading {
89 display: none;
100 display: none;
90 }
101 }
91 .deform-two-field-sequence .deform-seq-container .deform-seq-item.form-group {
102 .deform-two-field-sequence .deform-seq-container .deform-seq-item.form-group {
92 margin: 0;
103 margin: 0;
93 }
104 }
94 .deform-two-field-sequence .deform-seq-container .deform-seq-item .deform-seq-item-group .form-group {
105 .deform-two-field-sequence .deform-seq-container .deform-seq-item .deform-seq-item-group .form-group {
95 width: 45%; padding: 0 2px; float: left; clear: none;
106 width: 45%; padding: 0 2px; float: left; clear: none;
96 }
107 }
97 .deform-two-field-sequence .deform-seq-container .deform-seq-item .deform-seq-item-group > .panel {
108 .deform-two-field-sequence .deform-seq-container .deform-seq-item .deform-seq-item-group > .panel {
98 padding: 0;
109 padding: 0;
99 margin: 5px 0;
110 margin: 5px 0;
100 border: none;
111 border: none;
101 }
112 }
102 .deform-two-field-sequence .deform-seq-container .deform-seq-item .deform-seq-item-group > .panel > .panel-body {
113 .deform-two-field-sequence .deform-seq-container .deform-seq-item .deform-seq-item-group > .panel > .panel-body {
103 padding: 0;
114 padding: 0;
104 }
115 }
105
116
106 }
117 }
@@ -1,2109 +1,2147 b''
1 //Primary CSS
1 //Primary CSS
2
2
3 //--- IMPORTS ------------------//
3 //--- IMPORTS ------------------//
4
4
5 @import 'helpers';
5 @import 'helpers';
6 @import 'mixins';
6 @import 'mixins';
7 @import 'rcicons';
7 @import 'rcicons';
8 @import 'fonts';
8 @import 'fonts';
9 @import 'variables';
9 @import 'variables';
10 @import 'bootstrap-variables';
10 @import 'bootstrap-variables';
11 @import 'form-bootstrap';
11 @import 'form-bootstrap';
12 @import 'codemirror';
12 @import 'codemirror';
13 @import 'legacy_code_styles';
13 @import 'legacy_code_styles';
14 @import 'progress-bar';
14 @import 'progress-bar';
15
15
16 @import 'type';
16 @import 'type';
17 @import 'alerts';
17 @import 'alerts';
18 @import 'buttons';
18 @import 'buttons';
19 @import 'tags';
19 @import 'tags';
20 @import 'code-block';
20 @import 'code-block';
21 @import 'examples';
21 @import 'examples';
22 @import 'login';
22 @import 'login';
23 @import 'main-content';
23 @import 'main-content';
24 @import 'select2';
24 @import 'select2';
25 @import 'comments';
25 @import 'comments';
26 @import 'panels-bootstrap';
26 @import 'panels-bootstrap';
27 @import 'panels';
27 @import 'panels';
28 @import 'deform';
28 @import 'deform';
29
29
30
30
31 //--- BASE ------------------//
31 //--- BASE ------------------//
32 .noscript-error {
32 .noscript-error {
33 top: 0;
33 top: 0;
34 left: 0;
34 left: 0;
35 width: 100%;
35 width: 100%;
36 z-index: 101;
36 z-index: 101;
37 text-align: center;
37 text-align: center;
38 font-family: @text-semibold;
38 font-family: @text-semibold;
39 font-size: 120%;
39 font-size: 120%;
40 color: white;
40 color: white;
41 background-color: @alert2;
41 background-color: @alert2;
42 padding: 5px 0 5px 0;
42 padding: 5px 0 5px 0;
43 }
43 }
44
44
45 html {
45 html {
46 display: table;
46 display: table;
47 height: 100%;
47 height: 100%;
48 width: 100%;
48 width: 100%;
49 }
49 }
50
50
51 body {
51 body {
52 display: table-cell;
52 display: table-cell;
53 width: 100%;
53 width: 100%;
54 }
54 }
55
55
56 //--- LAYOUT ------------------//
56 //--- LAYOUT ------------------//
57
57
58 .hidden{
58 .hidden{
59 display: none !important;
59 display: none !important;
60 }
60 }
61
61
62 .box{
62 .box{
63 float: left;
63 float: left;
64 width: 100%;
64 width: 100%;
65 }
65 }
66
66
67 .browser-header {
67 .browser-header {
68 clear: both;
68 clear: both;
69 }
69 }
70 .main {
70 .main {
71 clear: both;
71 clear: both;
72 padding:0 0 @pagepadding;
72 padding:0 0 @pagepadding;
73 height: auto;
73 height: auto;
74
74
75 &:after { //clearfix
75 &:after { //clearfix
76 content:"";
76 content:"";
77 clear:both;
77 clear:both;
78 width:100%;
78 width:100%;
79 display:block;
79 display:block;
80 }
80 }
81 }
81 }
82
82
83 .action-link{
83 .action-link{
84 margin-left: @padding;
84 margin-left: @padding;
85 padding-left: @padding;
85 padding-left: @padding;
86 border-left: @border-thickness solid @border-default-color;
86 border-left: @border-thickness solid @border-default-color;
87 }
87 }
88
88
89 input + .action-link, .action-link.first{
89 input + .action-link, .action-link.first{
90 border-left: none;
90 border-left: none;
91 }
91 }
92
92
93 .action-link.last{
93 .action-link.last{
94 margin-right: @padding;
94 margin-right: @padding;
95 padding-right: @padding;
95 padding-right: @padding;
96 }
96 }
97
97
98 .action-link.active,
98 .action-link.active,
99 .action-link.active a{
99 .action-link.active a{
100 color: @grey4;
100 color: @grey4;
101 }
101 }
102
102
103 ul.simple-list{
103 ul.simple-list{
104 list-style: none;
104 list-style: none;
105 margin: 0;
105 margin: 0;
106 padding: 0;
106 padding: 0;
107 }
107 }
108
108
109 .main-content {
109 .main-content {
110 padding-bottom: @pagepadding;
110 padding-bottom: @pagepadding;
111 }
111 }
112
112
113 .wrapper {
113 .wrapper {
114 position: relative;
114 position: relative;
115 max-width: @wrapper-maxwidth;
115 max-width: @wrapper-maxwidth;
116 margin: 0 auto;
116 margin: 0 auto;
117 }
117 }
118
118
119 #content {
119 #content {
120 clear: both;
120 clear: both;
121 padding: 0 @contentpadding;
121 padding: 0 @contentpadding;
122 }
122 }
123
123
124 .advanced-settings-fields{
124 .advanced-settings-fields{
125 input{
125 input{
126 margin-left: @textmargin;
126 margin-left: @textmargin;
127 margin-right: @padding/2;
127 margin-right: @padding/2;
128 }
128 }
129 }
129 }
130
130
131 .cs_files_title {
131 .cs_files_title {
132 margin: @pagepadding 0 0;
132 margin: @pagepadding 0 0;
133 }
133 }
134
134
135 input.inline[type="file"] {
135 input.inline[type="file"] {
136 display: inline;
136 display: inline;
137 }
137 }
138
138
139 .error_page {
139 .error_page {
140 margin: 10% auto;
140 margin: 10% auto;
141
141
142 h1 {
142 h1 {
143 color: @grey2;
143 color: @grey2;
144 }
144 }
145
145
146 .error-branding {
146 .error-branding {
147 font-family: @text-semibold;
147 font-family: @text-semibold;
148 color: @grey4;
148 color: @grey4;
149 }
149 }
150
150
151 .error_message {
151 .error_message {
152 font-family: @text-regular;
152 font-family: @text-regular;
153 }
153 }
154
154
155 .sidebar {
155 .sidebar {
156 min-height: 275px;
156 min-height: 275px;
157 margin: 0;
157 margin: 0;
158 padding: 0 0 @sidebarpadding @sidebarpadding;
158 padding: 0 0 @sidebarpadding @sidebarpadding;
159 border: none;
159 border: none;
160 }
160 }
161
161
162 .main-content {
162 .main-content {
163 position: relative;
163 position: relative;
164 margin: 0 @sidebarpadding @sidebarpadding;
164 margin: 0 @sidebarpadding @sidebarpadding;
165 padding: 0 0 0 @sidebarpadding;
165 padding: 0 0 0 @sidebarpadding;
166 border-left: @border-thickness solid @grey5;
166 border-left: @border-thickness solid @grey5;
167
167
168 @media (max-width:767px) {
168 @media (max-width:767px) {
169 clear: both;
169 clear: both;
170 width: 100%;
170 width: 100%;
171 margin: 0;
171 margin: 0;
172 border: none;
172 border: none;
173 }
173 }
174 }
174 }
175
175
176 .inner-column {
176 .inner-column {
177 float: left;
177 float: left;
178 width: 29.75%;
178 width: 29.75%;
179 min-height: 150px;
179 min-height: 150px;
180 margin: @sidebarpadding 2% 0 0;
180 margin: @sidebarpadding 2% 0 0;
181 padding: 0 2% 0 0;
181 padding: 0 2% 0 0;
182 border-right: @border-thickness solid @grey5;
182 border-right: @border-thickness solid @grey5;
183
183
184 @media (max-width:767px) {
184 @media (max-width:767px) {
185 clear: both;
185 clear: both;
186 width: 100%;
186 width: 100%;
187 border: none;
187 border: none;
188 }
188 }
189
189
190 ul {
190 ul {
191 padding-left: 1.25em;
191 padding-left: 1.25em;
192 }
192 }
193
193
194 &:last-child {
194 &:last-child {
195 margin: @sidebarpadding 0 0;
195 margin: @sidebarpadding 0 0;
196 border: none;
196 border: none;
197 }
197 }
198
198
199 h4 {
199 h4 {
200 margin: 0 0 @padding;
200 margin: 0 0 @padding;
201 font-family: @text-semibold;
201 font-family: @text-semibold;
202 }
202 }
203 }
203 }
204 }
204 }
205 .error-page-logo {
205 .error-page-logo {
206 width: 130px;
206 width: 130px;
207 height: 160px;
207 height: 160px;
208 }
208 }
209
209
210 // HEADER
210 // HEADER
211 .header {
211 .header {
212
212
213 // TODO: johbo: Fix login pages, so that they work without a min-height
213 // TODO: johbo: Fix login pages, so that they work without a min-height
214 // for the header and then remove the min-height. I chose a smaller value
214 // for the header and then remove the min-height. I chose a smaller value
215 // intentionally here to avoid rendering issues in the main navigation.
215 // intentionally here to avoid rendering issues in the main navigation.
216 min-height: 49px;
216 min-height: 49px;
217
217
218 position: relative;
218 position: relative;
219 vertical-align: bottom;
219 vertical-align: bottom;
220 padding: 0 @header-padding;
220 padding: 0 @header-padding;
221 background-color: @grey2;
221 background-color: @grey2;
222 color: @grey5;
222 color: @grey5;
223
223
224 .title {
224 .title {
225 overflow: visible;
225 overflow: visible;
226 }
226 }
227
227
228 &:before,
228 &:before,
229 &:after {
229 &:after {
230 content: "";
230 content: "";
231 clear: both;
231 clear: both;
232 width: 100%;
232 width: 100%;
233 }
233 }
234
234
235 // TODO: johbo: Avoids breaking "Repositories" chooser
235 // TODO: johbo: Avoids breaking "Repositories" chooser
236 .select2-container .select2-choice .select2-arrow {
236 .select2-container .select2-choice .select2-arrow {
237 display: none;
237 display: none;
238 }
238 }
239 }
239 }
240
240
241 #header-inner {
241 #header-inner {
242 &.title {
242 &.title {
243 margin: 0;
243 margin: 0;
244 }
244 }
245 &:before,
245 &:before,
246 &:after {
246 &:after {
247 content: "";
247 content: "";
248 clear: both;
248 clear: both;
249 }
249 }
250 }
250 }
251
251
252 // Gists
252 // Gists
253 #files_data {
253 #files_data {
254 clear: both; //for firefox
254 clear: both; //for firefox
255 }
255 }
256 #gistid {
256 #gistid {
257 margin-right: @padding;
257 margin-right: @padding;
258 }
258 }
259
259
260 // Global Settings Editor
260 // Global Settings Editor
261 .textarea.editor {
261 .textarea.editor {
262 float: left;
262 float: left;
263 position: relative;
263 position: relative;
264 max-width: @texteditor-width;
264 max-width: @texteditor-width;
265
265
266 select {
266 select {
267 position: absolute;
267 position: absolute;
268 top:10px;
268 top:10px;
269 right:0;
269 right:0;
270 }
270 }
271
271
272 .CodeMirror {
272 .CodeMirror {
273 margin: 0;
273 margin: 0;
274 }
274 }
275
275
276 .help-block {
276 .help-block {
277 margin: 0 0 @padding;
277 margin: 0 0 @padding;
278 padding:.5em;
278 padding:.5em;
279 background-color: @grey6;
279 background-color: @grey6;
280 }
280 }
281 }
281 }
282
282
283 ul.auth_plugins {
283 ul.auth_plugins {
284 margin: @padding 0 @padding @legend-width;
284 margin: @padding 0 @padding @legend-width;
285 padding: 0;
285 padding: 0;
286
286
287 li {
287 li {
288 margin-bottom: @padding;
288 margin-bottom: @padding;
289 line-height: 1em;
289 line-height: 1em;
290 list-style-type: none;
290 list-style-type: none;
291
291
292 .auth_buttons .btn {
292 .auth_buttons .btn {
293 margin-right: @padding;
293 margin-right: @padding;
294 }
294 }
295
295
296 &:before { content: none; }
296 &:before { content: none; }
297 }
297 }
298 }
298 }
299
299
300
300
301 // My Account PR list
301 // My Account PR list
302
302
303 #show_closed {
303 #show_closed {
304 margin: 0 1em 0 0;
304 margin: 0 1em 0 0;
305 }
305 }
306
306
307 .pullrequestlist {
307 .pullrequestlist {
308 .closed {
308 .closed {
309 background-color: @grey6;
309 background-color: @grey6;
310 }
310 }
311 .td-status {
311 .td-status {
312 padding-left: .5em;
312 padding-left: .5em;
313 }
313 }
314 .log-container .truncate {
314 .log-container .truncate {
315 height: 2.75em;
315 height: 2.75em;
316 white-space: pre-line;
316 white-space: pre-line;
317 }
317 }
318 table.rctable .user {
318 table.rctable .user {
319 padding-left: 0;
319 padding-left: 0;
320 }
320 }
321 table.rctable {
321 table.rctable {
322 td.td-description,
322 td.td-description,
323 .rc-user {
323 .rc-user {
324 min-width: auto;
324 min-width: auto;
325 }
325 }
326 }
326 }
327 }
327 }
328
328
329 // Pull Requests
329 // Pull Requests
330
330
331 .pullrequests_section_head {
331 .pullrequests_section_head {
332 display: block;
332 display: block;
333 clear: both;
333 clear: both;
334 margin: @padding 0;
334 margin: @padding 0;
335 font-family: @text-bold;
335 font-family: @text-bold;
336 }
336 }
337
337
338 .pr-origininfo, .pr-targetinfo {
338 .pr-origininfo, .pr-targetinfo {
339 position: relative;
339 position: relative;
340
340
341 .tag {
341 .tag {
342 display: inline-block;
342 display: inline-block;
343 margin: 0 1em .5em 0;
343 margin: 0 1em .5em 0;
344 }
344 }
345
345
346 .clone-url {
346 .clone-url {
347 display: inline-block;
347 display: inline-block;
348 margin: 0 0 .5em 0;
348 margin: 0 0 .5em 0;
349 padding: 0;
349 padding: 0;
350 line-height: 1.2em;
350 line-height: 1.2em;
351 }
351 }
352 }
352 }
353
353
354 .pr-pullinfo {
354 .pr-pullinfo {
355 clear: both;
355 clear: both;
356 margin: .5em 0;
356 margin: .5em 0;
357 }
357 }
358
358
359 #pr-title-input {
359 #pr-title-input {
360 width: 72%;
360 width: 72%;
361 font-size: 1em;
361 font-size: 1em;
362 font-family: @text-bold;
362 font-family: @text-bold;
363 margin: 0;
363 margin: 0;
364 padding: 0 0 0 @padding/4;
364 padding: 0 0 0 @padding/4;
365 line-height: 1.7em;
365 line-height: 1.7em;
366 color: @text-color;
366 color: @text-color;
367 letter-spacing: .02em;
367 letter-spacing: .02em;
368 }
368 }
369
369
370 #pullrequest_title {
370 #pullrequest_title {
371 width: 100%;
371 width: 100%;
372 box-sizing: border-box;
372 box-sizing: border-box;
373 }
373 }
374
374
375 #pr_open_message {
375 #pr_open_message {
376 border: @border-thickness solid #fff;
376 border: @border-thickness solid #fff;
377 border-radius: @border-radius;
377 border-radius: @border-radius;
378 padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0;
378 padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0;
379 text-align: right;
379 text-align: right;
380 overflow: hidden;
380 overflow: hidden;
381 }
381 }
382
382
383 .pr-submit-button {
383 .pr-submit-button {
384 float: right;
384 float: right;
385 margin: 0 0 0 5px;
385 margin: 0 0 0 5px;
386 }
386 }
387
387
388 .pr-spacing-container {
388 .pr-spacing-container {
389 padding: 20px;
389 padding: 20px;
390 clear: both
390 clear: both
391 }
391 }
392
392
393 #pr-description-input {
393 #pr-description-input {
394 margin-bottom: 0;
394 margin-bottom: 0;
395 }
395 }
396
396
397 .pr-description-label {
397 .pr-description-label {
398 vertical-align: top;
398 vertical-align: top;
399 }
399 }
400
400
401 .perms_section_head {
401 .perms_section_head {
402 min-width: 625px;
402 min-width: 625px;
403
403
404 h2 {
404 h2 {
405 margin-bottom: 0;
405 margin-bottom: 0;
406 }
406 }
407
407
408 .label-checkbox {
408 .label-checkbox {
409 float: left;
409 float: left;
410 }
410 }
411
411
412 &.field {
412 &.field {
413 margin: @space 0 @padding;
413 margin: @space 0 @padding;
414 }
414 }
415
415
416 &:first-child.field {
416 &:first-child.field {
417 margin-top: 0;
417 margin-top: 0;
418
418
419 .label {
419 .label {
420 margin-top: 0;
420 margin-top: 0;
421 padding-top: 0;
421 padding-top: 0;
422 }
422 }
423
423
424 .radios {
424 .radios {
425 padding-top: 0;
425 padding-top: 0;
426 }
426 }
427 }
427 }
428
428
429 .radios {
429 .radios {
430 float: right;
430 float: right;
431 position: relative;
431 position: relative;
432 width: 405px;
432 width: 405px;
433 }
433 }
434 }
434 }
435
435
436 //--- MODULES ------------------//
436 //--- MODULES ------------------//
437
437
438
438
439 // Fixed Sidebar Column
439 // Fixed Sidebar Column
440 .sidebar-col-wrapper {
440 .sidebar-col-wrapper {
441 padding-left: @sidebar-all-width;
441 padding-left: @sidebar-all-width;
442
442
443 .sidebar {
443 .sidebar {
444 width: @sidebar-width;
444 width: @sidebar-width;
445 margin-left: -@sidebar-all-width;
445 margin-left: -@sidebar-all-width;
446 }
446 }
447 }
447 }
448
448
449 .sidebar-col-wrapper.scw-small {
449 .sidebar-col-wrapper.scw-small {
450 padding-left: @sidebar-small-all-width;
450 padding-left: @sidebar-small-all-width;
451
451
452 .sidebar {
452 .sidebar {
453 width: @sidebar-small-width;
453 width: @sidebar-small-width;
454 margin-left: -@sidebar-small-all-width;
454 margin-left: -@sidebar-small-all-width;
455 }
455 }
456 }
456 }
457
457
458
458
459 // FOOTER
459 // FOOTER
460 #footer {
460 #footer {
461 padding: 0;
461 padding: 0;
462 text-align: center;
462 text-align: center;
463 vertical-align: middle;
463 vertical-align: middle;
464 color: @grey2;
464 color: @grey2;
465 background-color: @grey6;
465 background-color: @grey6;
466
466
467 p {
467 p {
468 margin: 0;
468 margin: 0;
469 padding: 1em;
469 padding: 1em;
470 line-height: 1em;
470 line-height: 1em;
471 }
471 }
472
472
473 .server-instance { //server instance
473 .server-instance { //server instance
474 display: none;
474 display: none;
475 }
475 }
476
476
477 .title {
477 .title {
478 float: none;
478 float: none;
479 margin: 0 auto;
479 margin: 0 auto;
480 }
480 }
481 }
481 }
482
482
483 button.close {
483 button.close {
484 padding: 0;
484 padding: 0;
485 cursor: pointer;
485 cursor: pointer;
486 background: transparent;
486 background: transparent;
487 border: 0;
487 border: 0;
488 .box-shadow(none);
488 .box-shadow(none);
489 -webkit-appearance: none;
489 -webkit-appearance: none;
490 }
490 }
491
491
492 .close {
492 .close {
493 float: right;
493 float: right;
494 font-size: 21px;
494 font-size: 21px;
495 font-family: @text-bootstrap;
495 font-family: @text-bootstrap;
496 line-height: 1em;
496 line-height: 1em;
497 font-weight: bold;
497 font-weight: bold;
498 color: @grey2;
498 color: @grey2;
499
499
500 &:hover,
500 &:hover,
501 &:focus {
501 &:focus {
502 color: @grey1;
502 color: @grey1;
503 text-decoration: none;
503 text-decoration: none;
504 cursor: pointer;
504 cursor: pointer;
505 }
505 }
506 }
506 }
507
507
508 // GRID
508 // GRID
509 .sorting,
509 .sorting,
510 .sorting_desc,
510 .sorting_desc,
511 .sorting_asc {
511 .sorting_asc {
512 cursor: pointer;
512 cursor: pointer;
513 }
513 }
514 .sorting_desc:after {
514 .sorting_desc:after {
515 content: "\00A0\25B2";
515 content: "\00A0\25B2";
516 font-size: .75em;
516 font-size: .75em;
517 }
517 }
518 .sorting_asc:after {
518 .sorting_asc:after {
519 content: "\00A0\25BC";
519 content: "\00A0\25BC";
520 font-size: .68em;
520 font-size: .68em;
521 }
521 }
522
522
523
523
524 .user_auth_tokens {
524 .user_auth_tokens {
525
525
526 &.truncate {
526 &.truncate {
527 white-space: nowrap;
527 white-space: nowrap;
528 overflow: hidden;
528 overflow: hidden;
529 text-overflow: ellipsis;
529 text-overflow: ellipsis;
530 }
530 }
531
531
532 .fields .field .input {
532 .fields .field .input {
533 margin: 0;
533 margin: 0;
534 }
534 }
535
535
536 input#description {
536 input#description {
537 width: 100px;
537 width: 100px;
538 margin: 0;
538 margin: 0;
539 }
539 }
540
540
541 .drop-menu {
541 .drop-menu {
542 // TODO: johbo: Remove this, should work out of the box when
542 // TODO: johbo: Remove this, should work out of the box when
543 // having multiple inputs inline
543 // having multiple inputs inline
544 margin: 0 0 0 5px;
544 margin: 0 0 0 5px;
545 }
545 }
546 }
546 }
547 #user_list_table {
547 #user_list_table {
548 .closed {
548 .closed {
549 background-color: @grey6;
549 background-color: @grey6;
550 }
550 }
551 }
551 }
552
552
553
553
554 input {
554 input {
555 &.disabled {
555 &.disabled {
556 opacity: .5;
556 opacity: .5;
557 }
557 }
558 }
558 }
559
559
560 // remove extra padding in firefox
560 // remove extra padding in firefox
561 input::-moz-focus-inner { border:0; padding:0 }
561 input::-moz-focus-inner { border:0; padding:0 }
562
562
563 .adjacent input {
563 .adjacent input {
564 margin-bottom: @padding;
564 margin-bottom: @padding;
565 }
565 }
566
566
567 .permissions_boxes {
567 .permissions_boxes {
568 display: block;
568 display: block;
569 }
569 }
570
570
571 //TODO: lisa: this should be in tables
571 //TODO: lisa: this should be in tables
572 .show_more_col {
572 .show_more_col {
573 width: 20px;
573 width: 20px;
574 }
574 }
575
575
576 //FORMS
576 //FORMS
577
577
578 .medium-inline,
578 .medium-inline,
579 input#description.medium-inline {
579 input#description.medium-inline {
580 display: inline;
580 display: inline;
581 width: @medium-inline-input-width;
581 width: @medium-inline-input-width;
582 min-width: 100px;
582 min-width: 100px;
583 }
583 }
584
584
585 select {
585 select {
586 //reset
586 //reset
587 -webkit-appearance: none;
587 -webkit-appearance: none;
588 -moz-appearance: none;
588 -moz-appearance: none;
589
589
590 display: inline-block;
590 display: inline-block;
591 height: 28px;
591 height: 28px;
592 width: auto;
592 width: auto;
593 margin: 0 @padding @padding 0;
593 margin: 0 @padding @padding 0;
594 padding: 0 18px 0 8px;
594 padding: 0 18px 0 8px;
595 line-height:1em;
595 line-height:1em;
596 font-size: @basefontsize;
596 font-size: @basefontsize;
597 border: @border-thickness solid @rcblue;
597 border: @border-thickness solid @rcblue;
598 background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%;
598 background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%;
599 color: @rcblue;
599 color: @rcblue;
600
600
601 &:after {
601 &:after {
602 content: "\00A0\25BE";
602 content: "\00A0\25BE";
603 }
603 }
604
604
605 &:focus {
605 &:focus {
606 outline: none;
606 outline: none;
607 }
607 }
608 }
608 }
609
609
610 option {
610 option {
611 &:focus {
611 &:focus {
612 outline: none;
612 outline: none;
613 }
613 }
614 }
614 }
615
615
616 input,
616 input,
617 textarea {
617 textarea {
618 padding: @input-padding;
618 padding: @input-padding;
619 border: @input-border-thickness solid @border-highlight-color;
619 border: @input-border-thickness solid @border-highlight-color;
620 .border-radius (@border-radius);
620 .border-radius (@border-radius);
621 font-family: @text-light;
621 font-family: @text-light;
622 font-size: @basefontsize;
622 font-size: @basefontsize;
623
623
624 &.input-sm {
624 &.input-sm {
625 padding: 5px;
625 padding: 5px;
626 }
626 }
627
627
628 &#description {
628 &#description {
629 min-width: @input-description-minwidth;
629 min-width: @input-description-minwidth;
630 min-height: 1em;
630 min-height: 1em;
631 padding: 10px;
631 padding: 10px;
632 }
632 }
633 }
633 }
634
634
635 .field-sm {
635 .field-sm {
636 input,
636 input,
637 textarea {
637 textarea {
638 padding: 5px;
638 padding: 5px;
639 }
639 }
640 }
640 }
641
641
642 textarea {
642 textarea {
643 display: block;
643 display: block;
644 clear: both;
644 clear: both;
645 width: 100%;
645 width: 100%;
646 min-height: 100px;
646 min-height: 100px;
647 margin-bottom: @padding;
647 margin-bottom: @padding;
648 .box-sizing(border-box);
648 .box-sizing(border-box);
649 overflow: auto;
649 overflow: auto;
650 }
650 }
651
651
652 label {
652 label {
653 font-family: @text-light;
653 font-family: @text-light;
654 }
654 }
655
655
656 // GRAVATARS
656 // GRAVATARS
657 // centers gravatar on username to the right
657 // centers gravatar on username to the right
658
658
659 .gravatar {
659 .gravatar {
660 display: inline;
660 display: inline;
661 min-width: 16px;
661 min-width: 16px;
662 min-height: 16px;
662 min-height: 16px;
663 margin: -5px 0;
663 margin: -5px 0;
664 padding: 0;
664 padding: 0;
665 line-height: 1em;
665 line-height: 1em;
666 border: 1px solid @grey4;
666 border: 1px solid @grey4;
667
667
668 &.gravatar-large {
668 &.gravatar-large {
669 margin: -0.5em .25em -0.5em 0;
669 margin: -0.5em .25em -0.5em 0;
670 }
670 }
671
671
672 & + .user {
672 & + .user {
673 display: inline;
673 display: inline;
674 margin: 0;
674 margin: 0;
675 padding: 0 0 0 .17em;
675 padding: 0 0 0 .17em;
676 line-height: 1em;
676 line-height: 1em;
677 }
677 }
678 }
678 }
679
679
680 .user-inline-data {
680 .user-inline-data {
681 display: inline-block;
681 display: inline-block;
682 float: left;
682 float: left;
683 padding-left: .5em;
683 padding-left: .5em;
684 line-height: 1.3em;
684 line-height: 1.3em;
685 }
685 }
686
686
687 .rc-user { // gravatar + user wrapper
687 .rc-user { // gravatar + user wrapper
688 float: left;
688 float: left;
689 position: relative;
689 position: relative;
690 min-width: 100px;
690 min-width: 100px;
691 max-width: 200px;
691 max-width: 200px;
692 min-height: (@gravatar-size + @border-thickness * 2); // account for border
692 min-height: (@gravatar-size + @border-thickness * 2); // account for border
693 display: block;
693 display: block;
694 padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2);
694 padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2);
695
695
696
696
697 .gravatar {
697 .gravatar {
698 display: block;
698 display: block;
699 position: absolute;
699 position: absolute;
700 top: 0;
700 top: 0;
701 left: 0;
701 left: 0;
702 min-width: @gravatar-size;
702 min-width: @gravatar-size;
703 min-height: @gravatar-size;
703 min-height: @gravatar-size;
704 margin: 0;
704 margin: 0;
705 }
705 }
706
706
707 .user {
707 .user {
708 display: block;
708 display: block;
709 max-width: 175px;
709 max-width: 175px;
710 padding-top: 2px;
710 padding-top: 2px;
711 overflow: hidden;
711 overflow: hidden;
712 text-overflow: ellipsis;
712 text-overflow: ellipsis;
713 }
713 }
714 }
714 }
715
715
716 .gist-gravatar,
716 .gist-gravatar,
717 .journal_container {
717 .journal_container {
718 .gravatar-large {
718 .gravatar-large {
719 margin: 0 .5em -10px 0;
719 margin: 0 .5em -10px 0;
720 }
720 }
721 }
721 }
722
722
723
723
724 // ADMIN SETTINGS
724 // ADMIN SETTINGS
725
725
726 // Tag Patterns
726 // Tag Patterns
727 .tag_patterns {
727 .tag_patterns {
728 .tag_input {
728 .tag_input {
729 margin-bottom: @padding;
729 margin-bottom: @padding;
730 }
730 }
731 }
731 }
732
732
733 .locked_input {
733 .locked_input {
734 position: relative;
734 position: relative;
735
735
736 input {
736 input {
737 display: inline;
737 display: inline;
738 margin-top: 3px;
738 margin-top: 3px;
739 }
739 }
740
740
741 br {
741 br {
742 display: none;
742 display: none;
743 }
743 }
744
744
745 .error-message {
745 .error-message {
746 float: left;
746 float: left;
747 width: 100%;
747 width: 100%;
748 }
748 }
749
749
750 .lock_input_button {
750 .lock_input_button {
751 display: inline;
751 display: inline;
752 }
752 }
753
753
754 .help-block {
754 .help-block {
755 clear: both;
755 clear: both;
756 }
756 }
757 }
757 }
758
758
759 // Notifications
759 // Notifications
760
760
761 .notifications_buttons {
761 .notifications_buttons {
762 margin: 0 0 @space 0;
762 margin: 0 0 @space 0;
763 padding: 0;
763 padding: 0;
764
764
765 .btn {
765 .btn {
766 display: inline-block;
766 display: inline-block;
767 }
767 }
768 }
768 }
769
769
770 .notification-list {
770 .notification-list {
771
771
772 div {
772 div {
773 display: inline-block;
773 display: inline-block;
774 vertical-align: middle;
774 vertical-align: middle;
775 }
775 }
776
776
777 .container {
777 .container {
778 display: block;
778 display: block;
779 margin: 0 0 @padding 0;
779 margin: 0 0 @padding 0;
780 }
780 }
781
781
782 .delete-notifications {
782 .delete-notifications {
783 margin-left: @padding;
783 margin-left: @padding;
784 text-align: right;
784 text-align: right;
785 cursor: pointer;
785 cursor: pointer;
786 }
786 }
787
787
788 .read-notifications {
788 .read-notifications {
789 margin-left: @padding/2;
789 margin-left: @padding/2;
790 text-align: right;
790 text-align: right;
791 width: 35px;
791 width: 35px;
792 cursor: pointer;
792 cursor: pointer;
793 }
793 }
794
794
795 .icon-minus-sign {
795 .icon-minus-sign {
796 color: @alert2;
796 color: @alert2;
797 }
797 }
798
798
799 .icon-ok-sign {
799 .icon-ok-sign {
800 color: @alert1;
800 color: @alert1;
801 }
801 }
802 }
802 }
803
803
804 .user_settings {
804 .user_settings {
805 float: left;
805 float: left;
806 clear: both;
806 clear: both;
807 display: block;
807 display: block;
808 width: 100%;
808 width: 100%;
809
809
810 .gravatar_box {
810 .gravatar_box {
811 margin-bottom: @padding;
811 margin-bottom: @padding;
812
812
813 &:after {
813 &:after {
814 content: " ";
814 content: " ";
815 clear: both;
815 clear: both;
816 width: 100%;
816 width: 100%;
817 }
817 }
818 }
818 }
819
819
820 .fields .field {
820 .fields .field {
821 clear: both;
821 clear: both;
822 }
822 }
823 }
823 }
824
824
825 .advanced_settings {
825 .advanced_settings {
826 margin-bottom: @space;
826 margin-bottom: @space;
827
827
828 .help-block {
828 .help-block {
829 margin-left: 0;
829 margin-left: 0;
830 }
830 }
831
831
832 button + .help-block {
832 button + .help-block {
833 margin-top: @padding;
833 margin-top: @padding;
834 }
834 }
835 }
835 }
836
836
837 // admin settings radio buttons and labels
837 // admin settings radio buttons and labels
838 .label-2 {
838 .label-2 {
839 float: left;
839 float: left;
840 width: @label2-width;
840 width: @label2-width;
841
841
842 label {
842 label {
843 color: @grey1;
843 color: @grey1;
844 }
844 }
845 }
845 }
846 .checkboxes {
846 .checkboxes {
847 float: left;
847 float: left;
848 width: @checkboxes-width;
848 width: @checkboxes-width;
849 margin-bottom: @padding;
849 margin-bottom: @padding;
850
850
851 .checkbox {
851 .checkbox {
852 width: 100%;
852 width: 100%;
853
853
854 label {
854 label {
855 margin: 0;
855 margin: 0;
856 padding: 0;
856 padding: 0;
857 }
857 }
858 }
858 }
859
859
860 .checkbox + .checkbox {
860 .checkbox + .checkbox {
861 display: inline-block;
861 display: inline-block;
862 }
862 }
863
863
864 label {
864 label {
865 margin-right: 1em;
865 margin-right: 1em;
866 }
866 }
867 }
867 }
868
868
869 // CHANGELOG
869 // CHANGELOG
870 .container_header {
870 .container_header {
871 float: left;
871 float: left;
872 display: block;
872 display: block;
873 width: 100%;
873 width: 100%;
874 margin: @padding 0 @padding;
874 margin: @padding 0 @padding;
875
875
876 #filter_changelog {
876 #filter_changelog {
877 float: left;
877 float: left;
878 margin-right: @padding;
878 margin-right: @padding;
879 }
879 }
880
880
881 .breadcrumbs_light {
881 .breadcrumbs_light {
882 display: inline-block;
882 display: inline-block;
883 }
883 }
884 }
884 }
885
885
886 .info_box {
886 .info_box {
887 float: right;
887 float: right;
888 }
888 }
889
889
890
890
891 #graph_nodes {
891 #graph_nodes {
892 padding-top: 43px;
892 padding-top: 43px;
893 }
893 }
894
894
895 #graph_content{
895 #graph_content{
896
896
897 // adjust for table headers so that graph renders properly
897 // adjust for table headers so that graph renders properly
898 // #graph_nodes padding - table cell padding
898 // #graph_nodes padding - table cell padding
899 padding-top: (@space - (@basefontsize * 2.4));
899 padding-top: (@space - (@basefontsize * 2.4));
900
900
901 &.graph_full_width {
901 &.graph_full_width {
902 width: 100%;
902 width: 100%;
903 max-width: 100%;
903 max-width: 100%;
904 }
904 }
905 }
905 }
906
906
907 #graph {
907 #graph {
908 .flag_status {
908 .flag_status {
909 margin: 0;
909 margin: 0;
910 }
910 }
911
911
912 .pagination-left {
912 .pagination-left {
913 float: left;
913 float: left;
914 clear: both;
914 clear: both;
915 }
915 }
916
916
917 .log-container {
917 .log-container {
918 max-width: 345px;
918 max-width: 345px;
919
919
920 .message{
920 .message{
921 max-width: 340px;
921 max-width: 340px;
922 }
922 }
923 }
923 }
924
924
925 .graph-col-wrapper {
925 .graph-col-wrapper {
926 padding-left: 110px;
926 padding-left: 110px;
927
927
928 #graph_nodes {
928 #graph_nodes {
929 width: 100px;
929 width: 100px;
930 margin-left: -110px;
930 margin-left: -110px;
931 float: left;
931 float: left;
932 clear: left;
932 clear: left;
933 }
933 }
934 }
934 }
935 }
935 }
936
936
937 #filter_changelog {
937 #filter_changelog {
938 float: left;
938 float: left;
939 }
939 }
940
940
941
941
942 //--- THEME ------------------//
942 //--- THEME ------------------//
943
943
944 #logo {
944 #logo {
945 float: left;
945 float: left;
946 margin: 9px 0 0 0;
946 margin: 9px 0 0 0;
947
947
948 .header {
948 .header {
949 background-color: transparent;
949 background-color: transparent;
950 }
950 }
951
951
952 a {
952 a {
953 display: inline-block;
953 display: inline-block;
954 }
954 }
955
955
956 img {
956 img {
957 height:30px;
957 height:30px;
958 }
958 }
959 }
959 }
960
960
961 .logo-wrapper {
961 .logo-wrapper {
962 float:left;
962 float:left;
963 }
963 }
964
964
965 .branding{
965 .branding{
966 float: left;
966 float: left;
967 padding: 9px 2px;
967 padding: 9px 2px;
968 line-height: 1em;
968 line-height: 1em;
969 font-size: @navigation-fontsize;
969 font-size: @navigation-fontsize;
970 }
970 }
971
971
972 img {
972 img {
973 border: none;
973 border: none;
974 outline: none;
974 outline: none;
975 }
975 }
976 user-profile-header
976 user-profile-header
977 label {
977 label {
978
978
979 input[type="checkbox"] {
979 input[type="checkbox"] {
980 margin-right: 1em;
980 margin-right: 1em;
981 }
981 }
982 input[type="radio"] {
982 input[type="radio"] {
983 margin-right: 1em;
983 margin-right: 1em;
984 }
984 }
985 }
985 }
986
986
987 .flag_status {
987 .flag_status {
988 margin: 2px 8px 6px 2px;
988 margin: 2px 8px 6px 2px;
989 &.under_review {
989 &.under_review {
990 .circle(5px, @alert3);
990 .circle(5px, @alert3);
991 }
991 }
992 &.approved {
992 &.approved {
993 .circle(5px, @alert1);
993 .circle(5px, @alert1);
994 }
994 }
995 &.rejected,
995 &.rejected,
996 &.forced_closed{
996 &.forced_closed{
997 .circle(5px, @alert2);
997 .circle(5px, @alert2);
998 }
998 }
999 &.not_reviewed {
999 &.not_reviewed {
1000 .circle(5px, @grey5);
1000 .circle(5px, @grey5);
1001 }
1001 }
1002 }
1002 }
1003
1003
1004 .flag_status_comment_box {
1004 .flag_status_comment_box {
1005 margin: 5px 6px 0px 2px;
1005 margin: 5px 6px 0px 2px;
1006 }
1006 }
1007 .test_pattern_preview {
1007 .test_pattern_preview {
1008 margin: @space 0;
1008 margin: @space 0;
1009
1009
1010 p {
1010 p {
1011 margin-bottom: 0;
1011 margin-bottom: 0;
1012 border-bottom: @border-thickness solid @border-default-color;
1012 border-bottom: @border-thickness solid @border-default-color;
1013 color: @grey3;
1013 color: @grey3;
1014 }
1014 }
1015
1015
1016 .btn {
1016 .btn {
1017 margin-bottom: @padding;
1017 margin-bottom: @padding;
1018 }
1018 }
1019 }
1019 }
1020 #test_pattern_result {
1020 #test_pattern_result {
1021 display: none;
1021 display: none;
1022 &:extend(pre);
1022 &:extend(pre);
1023 padding: .9em;
1023 padding: .9em;
1024 color: @grey3;
1024 color: @grey3;
1025 background-color: @grey7;
1025 background-color: @grey7;
1026 border-right: @border-thickness solid @border-default-color;
1026 border-right: @border-thickness solid @border-default-color;
1027 border-bottom: @border-thickness solid @border-default-color;
1027 border-bottom: @border-thickness solid @border-default-color;
1028 border-left: @border-thickness solid @border-default-color;
1028 border-left: @border-thickness solid @border-default-color;
1029 }
1029 }
1030
1030
1031 #repo_vcs_settings {
1031 #repo_vcs_settings {
1032 #inherit_overlay_vcs_default {
1032 #inherit_overlay_vcs_default {
1033 display: none;
1033 display: none;
1034 }
1034 }
1035 #inherit_overlay_vcs_custom {
1035 #inherit_overlay_vcs_custom {
1036 display: custom;
1036 display: custom;
1037 }
1037 }
1038 &.inherited {
1038 &.inherited {
1039 #inherit_overlay_vcs_default {
1039 #inherit_overlay_vcs_default {
1040 display: block;
1040 display: block;
1041 }
1041 }
1042 #inherit_overlay_vcs_custom {
1042 #inherit_overlay_vcs_custom {
1043 display: none;
1043 display: none;
1044 }
1044 }
1045 }
1045 }
1046 }
1046 }
1047
1047
1048 .issue-tracker-link {
1048 .issue-tracker-link {
1049 color: @rcblue;
1049 color: @rcblue;
1050 }
1050 }
1051
1051
1052 // Issue Tracker Table Show/Hide
1052 // Issue Tracker Table Show/Hide
1053 #repo_issue_tracker {
1053 #repo_issue_tracker {
1054 #inherit_overlay {
1054 #inherit_overlay {
1055 display: none;
1055 display: none;
1056 }
1056 }
1057 #custom_overlay {
1057 #custom_overlay {
1058 display: custom;
1058 display: custom;
1059 }
1059 }
1060 &.inherited {
1060 &.inherited {
1061 #inherit_overlay {
1061 #inherit_overlay {
1062 display: block;
1062 display: block;
1063 }
1063 }
1064 #custom_overlay {
1064 #custom_overlay {
1065 display: none;
1065 display: none;
1066 }
1066 }
1067 }
1067 }
1068 }
1068 }
1069 table.issuetracker {
1069 table.issuetracker {
1070 &.readonly {
1070 &.readonly {
1071 tr, td {
1071 tr, td {
1072 color: @grey3;
1072 color: @grey3;
1073 }
1073 }
1074 }
1074 }
1075 .edit {
1075 .edit {
1076 display: none;
1076 display: none;
1077 }
1077 }
1078 .editopen {
1078 .editopen {
1079 .edit {
1079 .edit {
1080 display: inline;
1080 display: inline;
1081 }
1081 }
1082 .entry {
1082 .entry {
1083 display: none;
1083 display: none;
1084 }
1084 }
1085 }
1085 }
1086 tr td.td-action {
1086 tr td.td-action {
1087 min-width: 117px;
1087 min-width: 117px;
1088 }
1088 }
1089 td input {
1089 td input {
1090 max-width: none;
1090 max-width: none;
1091 min-width: 30px;
1091 min-width: 30px;
1092 width: 80%;
1092 width: 80%;
1093 }
1093 }
1094 .issuetracker_pref input {
1094 .issuetracker_pref input {
1095 width: 40%;
1095 width: 40%;
1096 }
1096 }
1097 input.edit_issuetracker_update {
1097 input.edit_issuetracker_update {
1098 margin-right: 0;
1098 margin-right: 0;
1099 width: auto;
1099 width: auto;
1100 }
1100 }
1101 }
1101 }
1102
1102
1103 table.integrations {
1104 .td-icon {
1105 width: 20px;
1106 .integration-icon {
1107 height: 20px;
1108 width: 20px;
1109 }
1110 }
1111 }
1112
1113 .integrations {
1114 a.integration-box {
1115 color: @text-color;
1116 &:hover {
1117 .panel {
1118 background: #fbfbfb;
1119 }
1120 }
1121 .integration-icon {
1122 width: 30px;
1123 height: 30px;
1124 margin-right: 20px;
1125 float: left;
1126 }
1127
1128 .panel-body {
1129 padding: 10px;
1130 }
1131 .panel {
1132 margin-bottom: 10px;
1133 }
1134 h2 {
1135 display: inline-block;
1136 margin: 0;
1137 min-width: 140px;
1138 }
1139 }
1140 }
1103
1141
1104 //Permissions Settings
1142 //Permissions Settings
1105 #add_perm {
1143 #add_perm {
1106 margin: 0 0 @padding;
1144 margin: 0 0 @padding;
1107 cursor: pointer;
1145 cursor: pointer;
1108 }
1146 }
1109
1147
1110 .perm_ac {
1148 .perm_ac {
1111 input {
1149 input {
1112 width: 95%;
1150 width: 95%;
1113 }
1151 }
1114 }
1152 }
1115
1153
1116 .autocomplete-suggestions {
1154 .autocomplete-suggestions {
1117 width: auto !important; // overrides autocomplete.js
1155 width: auto !important; // overrides autocomplete.js
1118 margin: 0;
1156 margin: 0;
1119 border: @border-thickness solid @rcblue;
1157 border: @border-thickness solid @rcblue;
1120 border-radius: @border-radius;
1158 border-radius: @border-radius;
1121 color: @rcblue;
1159 color: @rcblue;
1122 background-color: white;
1160 background-color: white;
1123 }
1161 }
1124 .autocomplete-selected {
1162 .autocomplete-selected {
1125 background: #F0F0F0;
1163 background: #F0F0F0;
1126 }
1164 }
1127 .ac-container-wrap {
1165 .ac-container-wrap {
1128 margin: 0;
1166 margin: 0;
1129 padding: 8px;
1167 padding: 8px;
1130 border-bottom: @border-thickness solid @rclightblue;
1168 border-bottom: @border-thickness solid @rclightblue;
1131 list-style-type: none;
1169 list-style-type: none;
1132 cursor: pointer;
1170 cursor: pointer;
1133
1171
1134 &:hover {
1172 &:hover {
1135 background-color: @rclightblue;
1173 background-color: @rclightblue;
1136 }
1174 }
1137
1175
1138 img {
1176 img {
1139 margin-right: 1em;
1177 margin-right: 1em;
1140 }
1178 }
1141
1179
1142 strong {
1180 strong {
1143 font-weight: normal;
1181 font-weight: normal;
1144 }
1182 }
1145 }
1183 }
1146
1184
1147 // Settings Dropdown
1185 // Settings Dropdown
1148 .user-menu .container {
1186 .user-menu .container {
1149 padding: 0 4px;
1187 padding: 0 4px;
1150 margin: 0;
1188 margin: 0;
1151 }
1189 }
1152
1190
1153 .user-menu .gravatar {
1191 .user-menu .gravatar {
1154 cursor: pointer;
1192 cursor: pointer;
1155 }
1193 }
1156
1194
1157 .codeblock {
1195 .codeblock {
1158 margin-bottom: @padding;
1196 margin-bottom: @padding;
1159 clear: both;
1197 clear: both;
1160
1198
1161 .stats{
1199 .stats{
1162 overflow: hidden;
1200 overflow: hidden;
1163 }
1201 }
1164
1202
1165 .message{
1203 .message{
1166 textarea{
1204 textarea{
1167 margin: 0;
1205 margin: 0;
1168 }
1206 }
1169 }
1207 }
1170
1208
1171 .code-header {
1209 .code-header {
1172 .stats {
1210 .stats {
1173 line-height: 2em;
1211 line-height: 2em;
1174
1212
1175 .revision_id {
1213 .revision_id {
1176 margin-left: 0;
1214 margin-left: 0;
1177 }
1215 }
1178 .buttons {
1216 .buttons {
1179 padding-right: 0;
1217 padding-right: 0;
1180 }
1218 }
1181 }
1219 }
1182
1220
1183 .item{
1221 .item{
1184 margin-right: 0.5em;
1222 margin-right: 0.5em;
1185 }
1223 }
1186 }
1224 }
1187
1225
1188 #editor_container{
1226 #editor_container{
1189 position: relative;
1227 position: relative;
1190 margin: @padding;
1228 margin: @padding;
1191 }
1229 }
1192 }
1230 }
1193
1231
1194 #file_history_container {
1232 #file_history_container {
1195 display: none;
1233 display: none;
1196 }
1234 }
1197
1235
1198 .file-history-inner {
1236 .file-history-inner {
1199 margin-bottom: 10px;
1237 margin-bottom: 10px;
1200 }
1238 }
1201
1239
1202 // Pull Requests
1240 // Pull Requests
1203 .summary-details {
1241 .summary-details {
1204 width: 72%;
1242 width: 72%;
1205 }
1243 }
1206 .pr-summary {
1244 .pr-summary {
1207 border-bottom: @border-thickness solid @grey5;
1245 border-bottom: @border-thickness solid @grey5;
1208 margin-bottom: @space;
1246 margin-bottom: @space;
1209 }
1247 }
1210 .reviewers-title {
1248 .reviewers-title {
1211 width: 25%;
1249 width: 25%;
1212 min-width: 200px;
1250 min-width: 200px;
1213 }
1251 }
1214 .reviewers {
1252 .reviewers {
1215 width: 25%;
1253 width: 25%;
1216 min-width: 200px;
1254 min-width: 200px;
1217 }
1255 }
1218 .reviewers ul li {
1256 .reviewers ul li {
1219 position: relative;
1257 position: relative;
1220 width: 100%;
1258 width: 100%;
1221 margin-bottom: 8px;
1259 margin-bottom: 8px;
1222 }
1260 }
1223 .reviewers_member {
1261 .reviewers_member {
1224 width: 100%;
1262 width: 100%;
1225 overflow: auto;
1263 overflow: auto;
1226 }
1264 }
1227 .reviewer_status {
1265 .reviewer_status {
1228 display: inline-block;
1266 display: inline-block;
1229 vertical-align: top;
1267 vertical-align: top;
1230 width: 7%;
1268 width: 7%;
1231 min-width: 20px;
1269 min-width: 20px;
1232 height: 1.2em;
1270 height: 1.2em;
1233 margin-top: 3px;
1271 margin-top: 3px;
1234 line-height: 1em;
1272 line-height: 1em;
1235 }
1273 }
1236
1274
1237 .reviewer_name {
1275 .reviewer_name {
1238 display: inline-block;
1276 display: inline-block;
1239 max-width: 83%;
1277 max-width: 83%;
1240 padding-right: 20px;
1278 padding-right: 20px;
1241 vertical-align: middle;
1279 vertical-align: middle;
1242 line-height: 1;
1280 line-height: 1;
1243
1281
1244 .rc-user {
1282 .rc-user {
1245 min-width: 0;
1283 min-width: 0;
1246 margin: -2px 1em 0 0;
1284 margin: -2px 1em 0 0;
1247 }
1285 }
1248
1286
1249 .reviewer {
1287 .reviewer {
1250 float: left;
1288 float: left;
1251 }
1289 }
1252
1290
1253 &.to-delete {
1291 &.to-delete {
1254 .user,
1292 .user,
1255 .reviewer {
1293 .reviewer {
1256 text-decoration: line-through;
1294 text-decoration: line-through;
1257 }
1295 }
1258 }
1296 }
1259 }
1297 }
1260
1298
1261 .reviewer_member_remove {
1299 .reviewer_member_remove {
1262 position: absolute;
1300 position: absolute;
1263 right: 0;
1301 right: 0;
1264 top: 0;
1302 top: 0;
1265 width: 16px;
1303 width: 16px;
1266 margin-bottom: 10px;
1304 margin-bottom: 10px;
1267 padding: 0;
1305 padding: 0;
1268 color: black;
1306 color: black;
1269 }
1307 }
1270 .reviewer_member_status {
1308 .reviewer_member_status {
1271 margin-top: 5px;
1309 margin-top: 5px;
1272 }
1310 }
1273 .pr-summary #summary{
1311 .pr-summary #summary{
1274 width: 100%;
1312 width: 100%;
1275 }
1313 }
1276 .pr-summary .action_button:hover {
1314 .pr-summary .action_button:hover {
1277 border: 0;
1315 border: 0;
1278 cursor: pointer;
1316 cursor: pointer;
1279 }
1317 }
1280 .pr-details-title {
1318 .pr-details-title {
1281 padding-bottom: 8px;
1319 padding-bottom: 8px;
1282 border-bottom: @border-thickness solid @grey5;
1320 border-bottom: @border-thickness solid @grey5;
1283 .action_button {
1321 .action_button {
1284 color: @rcblue;
1322 color: @rcblue;
1285 }
1323 }
1286 }
1324 }
1287 .pr-details-content {
1325 .pr-details-content {
1288 margin-top: @textmargin;
1326 margin-top: @textmargin;
1289 margin-bottom: @textmargin;
1327 margin-bottom: @textmargin;
1290 }
1328 }
1291 .pr-description {
1329 .pr-description {
1292 white-space:pre-wrap;
1330 white-space:pre-wrap;
1293 }
1331 }
1294 .group_members {
1332 .group_members {
1295 margin-top: 0;
1333 margin-top: 0;
1296 padding: 0;
1334 padding: 0;
1297 list-style: outside none none;
1335 list-style: outside none none;
1298 }
1336 }
1299 .reviewer_ac .ac-input {
1337 .reviewer_ac .ac-input {
1300 width: 92%;
1338 width: 92%;
1301 margin-bottom: 1em;
1339 margin-bottom: 1em;
1302 }
1340 }
1303 #update_commits {
1341 #update_commits {
1304 float: right;
1342 float: right;
1305 }
1343 }
1306 .compare_view_commits tr{
1344 .compare_view_commits tr{
1307 height: 20px;
1345 height: 20px;
1308 }
1346 }
1309 .compare_view_commits td {
1347 .compare_view_commits td {
1310 vertical-align: top;
1348 vertical-align: top;
1311 padding-top: 10px;
1349 padding-top: 10px;
1312 }
1350 }
1313 .compare_view_commits .author {
1351 .compare_view_commits .author {
1314 margin-left: 5px;
1352 margin-left: 5px;
1315 }
1353 }
1316
1354
1317 .compare_view_files {
1355 .compare_view_files {
1318 width: 100%;
1356 width: 100%;
1319
1357
1320 td {
1358 td {
1321 vertical-align: middle;
1359 vertical-align: middle;
1322 }
1360 }
1323 }
1361 }
1324
1362
1325 .compare_view_filepath {
1363 .compare_view_filepath {
1326 color: @grey1;
1364 color: @grey1;
1327 }
1365 }
1328
1366
1329 .show_more {
1367 .show_more {
1330 display: inline-block;
1368 display: inline-block;
1331 position: relative;
1369 position: relative;
1332 vertical-align: middle;
1370 vertical-align: middle;
1333 width: 4px;
1371 width: 4px;
1334 height: @basefontsize;
1372 height: @basefontsize;
1335
1373
1336 &:after {
1374 &:after {
1337 content: "\00A0\25BE";
1375 content: "\00A0\25BE";
1338 display: inline-block;
1376 display: inline-block;
1339 width:10px;
1377 width:10px;
1340 line-height: 5px;
1378 line-height: 5px;
1341 font-size: 12px;
1379 font-size: 12px;
1342 cursor: pointer;
1380 cursor: pointer;
1343 }
1381 }
1344 }
1382 }
1345
1383
1346 .journal_more .show_more {
1384 .journal_more .show_more {
1347 display: inline;
1385 display: inline;
1348
1386
1349 &:after {
1387 &:after {
1350 content: none;
1388 content: none;
1351 }
1389 }
1352 }
1390 }
1353
1391
1354 .open .show_more:after,
1392 .open .show_more:after,
1355 .select2-dropdown-open .show_more:after {
1393 .select2-dropdown-open .show_more:after {
1356 .rotate(180deg);
1394 .rotate(180deg);
1357 margin-left: 4px;
1395 margin-left: 4px;
1358 }
1396 }
1359
1397
1360
1398
1361 .compare_view_commits .collapse_commit:after {
1399 .compare_view_commits .collapse_commit:after {
1362 cursor: pointer;
1400 cursor: pointer;
1363 content: "\00A0\25B4";
1401 content: "\00A0\25B4";
1364 margin-left: -3px;
1402 margin-left: -3px;
1365 font-size: 17px;
1403 font-size: 17px;
1366 color: @grey4;
1404 color: @grey4;
1367 }
1405 }
1368
1406
1369 .diff_links {
1407 .diff_links {
1370 margin-left: 8px;
1408 margin-left: 8px;
1371 }
1409 }
1372
1410
1373 p.ancestor {
1411 p.ancestor {
1374 margin: @padding 0;
1412 margin: @padding 0;
1375 }
1413 }
1376
1414
1377 .cs_icon_td input[type="checkbox"] {
1415 .cs_icon_td input[type="checkbox"] {
1378 display: none;
1416 display: none;
1379 }
1417 }
1380
1418
1381 .cs_icon_td .expand_file_icon:after {
1419 .cs_icon_td .expand_file_icon:after {
1382 cursor: pointer;
1420 cursor: pointer;
1383 content: "\00A0\25B6";
1421 content: "\00A0\25B6";
1384 font-size: 12px;
1422 font-size: 12px;
1385 color: @grey4;
1423 color: @grey4;
1386 }
1424 }
1387
1425
1388 .cs_icon_td .collapse_file_icon:after {
1426 .cs_icon_td .collapse_file_icon:after {
1389 cursor: pointer;
1427 cursor: pointer;
1390 content: "\00A0\25BC";
1428 content: "\00A0\25BC";
1391 font-size: 12px;
1429 font-size: 12px;
1392 color: @grey4;
1430 color: @grey4;
1393 }
1431 }
1394
1432
1395 /*new binary
1433 /*new binary
1396 NEW_FILENODE = 1
1434 NEW_FILENODE = 1
1397 DEL_FILENODE = 2
1435 DEL_FILENODE = 2
1398 MOD_FILENODE = 3
1436 MOD_FILENODE = 3
1399 RENAMED_FILENODE = 4
1437 RENAMED_FILENODE = 4
1400 COPIED_FILENODE = 5
1438 COPIED_FILENODE = 5
1401 CHMOD_FILENODE = 6
1439 CHMOD_FILENODE = 6
1402 BIN_FILENODE = 7
1440 BIN_FILENODE = 7
1403 */
1441 */
1404 .cs_files_expand {
1442 .cs_files_expand {
1405 font-size: @basefontsize + 5px;
1443 font-size: @basefontsize + 5px;
1406 line-height: 1.8em;
1444 line-height: 1.8em;
1407 float: right;
1445 float: right;
1408 }
1446 }
1409
1447
1410 .cs_files_expand span{
1448 .cs_files_expand span{
1411 color: @rcblue;
1449 color: @rcblue;
1412 cursor: pointer;
1450 cursor: pointer;
1413 }
1451 }
1414 .cs_files {
1452 .cs_files {
1415 clear: both;
1453 clear: both;
1416 padding-bottom: @padding;
1454 padding-bottom: @padding;
1417
1455
1418 .cur_cs {
1456 .cur_cs {
1419 margin: 10px 2px;
1457 margin: 10px 2px;
1420 font-weight: bold;
1458 font-weight: bold;
1421 }
1459 }
1422
1460
1423 .node {
1461 .node {
1424 float: left;
1462 float: left;
1425 }
1463 }
1426
1464
1427 .changes {
1465 .changes {
1428 float: right;
1466 float: right;
1429 color: white;
1467 color: white;
1430 font-size: @basefontsize - 4px;
1468 font-size: @basefontsize - 4px;
1431 margin-top: 4px;
1469 margin-top: 4px;
1432 opacity: 0.6;
1470 opacity: 0.6;
1433 filter: Alpha(opacity=60); /* IE8 and earlier */
1471 filter: Alpha(opacity=60); /* IE8 and earlier */
1434
1472
1435 .added {
1473 .added {
1436 background-color: @alert1;
1474 background-color: @alert1;
1437 float: left;
1475 float: left;
1438 text-align: center;
1476 text-align: center;
1439 }
1477 }
1440
1478
1441 .deleted {
1479 .deleted {
1442 background-color: @alert2;
1480 background-color: @alert2;
1443 float: left;
1481 float: left;
1444 text-align: center;
1482 text-align: center;
1445 }
1483 }
1446
1484
1447 .bin {
1485 .bin {
1448 background-color: @alert1;
1486 background-color: @alert1;
1449 text-align: center;
1487 text-align: center;
1450 }
1488 }
1451
1489
1452 /*new binary*/
1490 /*new binary*/
1453 .bin.bin1 {
1491 .bin.bin1 {
1454 background-color: @alert1;
1492 background-color: @alert1;
1455 text-align: center;
1493 text-align: center;
1456 }
1494 }
1457
1495
1458 /*deleted binary*/
1496 /*deleted binary*/
1459 .bin.bin2 {
1497 .bin.bin2 {
1460 background-color: @alert2;
1498 background-color: @alert2;
1461 text-align: center;
1499 text-align: center;
1462 }
1500 }
1463
1501
1464 /*mod binary*/
1502 /*mod binary*/
1465 .bin.bin3 {
1503 .bin.bin3 {
1466 background-color: @grey2;
1504 background-color: @grey2;
1467 text-align: center;
1505 text-align: center;
1468 }
1506 }
1469
1507
1470 /*rename file*/
1508 /*rename file*/
1471 .bin.bin4 {
1509 .bin.bin4 {
1472 background-color: @alert4;
1510 background-color: @alert4;
1473 text-align: center;
1511 text-align: center;
1474 }
1512 }
1475
1513
1476 /*copied file*/
1514 /*copied file*/
1477 .bin.bin5 {
1515 .bin.bin5 {
1478 background-color: @alert4;
1516 background-color: @alert4;
1479 text-align: center;
1517 text-align: center;
1480 }
1518 }
1481
1519
1482 /*chmod file*/
1520 /*chmod file*/
1483 .bin.bin6 {
1521 .bin.bin6 {
1484 background-color: @grey2;
1522 background-color: @grey2;
1485 text-align: center;
1523 text-align: center;
1486 }
1524 }
1487 }
1525 }
1488 }
1526 }
1489
1527
1490 .cs_files .cs_added, .cs_files .cs_A,
1528 .cs_files .cs_added, .cs_files .cs_A,
1491 .cs_files .cs_added, .cs_files .cs_M,
1529 .cs_files .cs_added, .cs_files .cs_M,
1492 .cs_files .cs_added, .cs_files .cs_D {
1530 .cs_files .cs_added, .cs_files .cs_D {
1493 height: 16px;
1531 height: 16px;
1494 padding-right: 10px;
1532 padding-right: 10px;
1495 margin-top: 7px;
1533 margin-top: 7px;
1496 text-align: left;
1534 text-align: left;
1497 }
1535 }
1498
1536
1499 .cs_icon_td {
1537 .cs_icon_td {
1500 min-width: 16px;
1538 min-width: 16px;
1501 width: 16px;
1539 width: 16px;
1502 }
1540 }
1503
1541
1504 .pull-request-merge {
1542 .pull-request-merge {
1505 padding: 10px 0;
1543 padding: 10px 0;
1506 margin-top: 10px;
1544 margin-top: 10px;
1507 margin-bottom: 20px;
1545 margin-bottom: 20px;
1508 }
1546 }
1509
1547
1510 .pull-request-merge .pull-request-wrap {
1548 .pull-request-merge .pull-request-wrap {
1511 height: 25px;
1549 height: 25px;
1512 padding: 5px 0;
1550 padding: 5px 0;
1513 }
1551 }
1514
1552
1515 .pull-request-merge span {
1553 .pull-request-merge span {
1516 margin-right: 10px;
1554 margin-right: 10px;
1517 }
1555 }
1518 #close_pull_request {
1556 #close_pull_request {
1519 margin-right: 0px;
1557 margin-right: 0px;
1520 }
1558 }
1521
1559
1522 .empty_data {
1560 .empty_data {
1523 color: @grey4;
1561 color: @grey4;
1524 }
1562 }
1525
1563
1526 #changeset_compare_view_content {
1564 #changeset_compare_view_content {
1527 margin-bottom: @space;
1565 margin-bottom: @space;
1528 clear: both;
1566 clear: both;
1529 width: 100%;
1567 width: 100%;
1530 box-sizing: border-box;
1568 box-sizing: border-box;
1531 .border-radius(@border-radius);
1569 .border-radius(@border-radius);
1532
1570
1533 .help-block {
1571 .help-block {
1534 margin: @padding 0;
1572 margin: @padding 0;
1535 color: @text-color;
1573 color: @text-color;
1536 }
1574 }
1537
1575
1538 .empty_data {
1576 .empty_data {
1539 margin: @padding 0;
1577 margin: @padding 0;
1540 }
1578 }
1541
1579
1542 .alert {
1580 .alert {
1543 margin-bottom: @space;
1581 margin-bottom: @space;
1544 }
1582 }
1545 }
1583 }
1546
1584
1547 .table_disp {
1585 .table_disp {
1548 .status {
1586 .status {
1549 width: auto;
1587 width: auto;
1550
1588
1551 .flag_status {
1589 .flag_status {
1552 float: left;
1590 float: left;
1553 }
1591 }
1554 }
1592 }
1555 }
1593 }
1556
1594
1557 .status_box_menu {
1595 .status_box_menu {
1558 margin: 0;
1596 margin: 0;
1559 }
1597 }
1560
1598
1561 .notification-table{
1599 .notification-table{
1562 margin-bottom: @space;
1600 margin-bottom: @space;
1563 display: table;
1601 display: table;
1564 width: 100%;
1602 width: 100%;
1565
1603
1566 .container{
1604 .container{
1567 display: table-row;
1605 display: table-row;
1568
1606
1569 .notification-header{
1607 .notification-header{
1570 border-bottom: @border-thickness solid @border-default-color;
1608 border-bottom: @border-thickness solid @border-default-color;
1571 }
1609 }
1572
1610
1573 .notification-subject{
1611 .notification-subject{
1574 display: table-cell;
1612 display: table-cell;
1575 }
1613 }
1576 }
1614 }
1577 }
1615 }
1578
1616
1579 // Notifications
1617 // Notifications
1580 .notification-header{
1618 .notification-header{
1581 display: table;
1619 display: table;
1582 width: 100%;
1620 width: 100%;
1583 padding: floor(@basefontsize/2) 0;
1621 padding: floor(@basefontsize/2) 0;
1584 line-height: 1em;
1622 line-height: 1em;
1585
1623
1586 .desc, .delete-notifications, .read-notifications{
1624 .desc, .delete-notifications, .read-notifications{
1587 display: table-cell;
1625 display: table-cell;
1588 text-align: left;
1626 text-align: left;
1589 }
1627 }
1590
1628
1591 .desc{
1629 .desc{
1592 width: 1163px;
1630 width: 1163px;
1593 }
1631 }
1594
1632
1595 .delete-notifications, .read-notifications{
1633 .delete-notifications, .read-notifications{
1596 width: 35px;
1634 width: 35px;
1597 min-width: 35px; //fixes when only one button is displayed
1635 min-width: 35px; //fixes when only one button is displayed
1598 }
1636 }
1599 }
1637 }
1600
1638
1601 .notification-body {
1639 .notification-body {
1602 .markdown-block,
1640 .markdown-block,
1603 .rst-block {
1641 .rst-block {
1604 padding: @padding 0;
1642 padding: @padding 0;
1605 }
1643 }
1606
1644
1607 .notification-subject {
1645 .notification-subject {
1608 padding: @textmargin 0;
1646 padding: @textmargin 0;
1609 border-bottom: @border-thickness solid @border-default-color;
1647 border-bottom: @border-thickness solid @border-default-color;
1610 }
1648 }
1611 }
1649 }
1612
1650
1613
1651
1614 .notifications_buttons{
1652 .notifications_buttons{
1615 float: right;
1653 float: right;
1616 }
1654 }
1617
1655
1618 #notification-status{
1656 #notification-status{
1619 display: inline;
1657 display: inline;
1620 }
1658 }
1621
1659
1622 // Repositories
1660 // Repositories
1623
1661
1624 #summary.fields{
1662 #summary.fields{
1625 display: table;
1663 display: table;
1626
1664
1627 .field{
1665 .field{
1628 display: table-row;
1666 display: table-row;
1629
1667
1630 .label-summary{
1668 .label-summary{
1631 display: table-cell;
1669 display: table-cell;
1632 min-width: @label-summary-minwidth;
1670 min-width: @label-summary-minwidth;
1633 padding-top: @padding/2;
1671 padding-top: @padding/2;
1634 padding-bottom: @padding/2;
1672 padding-bottom: @padding/2;
1635 padding-right: @padding/2;
1673 padding-right: @padding/2;
1636 }
1674 }
1637
1675
1638 .input{
1676 .input{
1639 display: table-cell;
1677 display: table-cell;
1640 padding: @padding/2;
1678 padding: @padding/2;
1641
1679
1642 input{
1680 input{
1643 min-width: 29em;
1681 min-width: 29em;
1644 padding: @padding/4;
1682 padding: @padding/4;
1645 }
1683 }
1646 }
1684 }
1647 .statistics, .downloads{
1685 .statistics, .downloads{
1648 .disabled{
1686 .disabled{
1649 color: @grey4;
1687 color: @grey4;
1650 }
1688 }
1651 }
1689 }
1652 }
1690 }
1653 }
1691 }
1654
1692
1655 #summary{
1693 #summary{
1656 width: 70%;
1694 width: 70%;
1657 }
1695 }
1658
1696
1659
1697
1660 // Journal
1698 // Journal
1661 .journal.title {
1699 .journal.title {
1662 h5 {
1700 h5 {
1663 float: left;
1701 float: left;
1664 margin: 0;
1702 margin: 0;
1665 width: 70%;
1703 width: 70%;
1666 }
1704 }
1667
1705
1668 ul {
1706 ul {
1669 float: right;
1707 float: right;
1670 display: inline-block;
1708 display: inline-block;
1671 margin: 0;
1709 margin: 0;
1672 width: 30%;
1710 width: 30%;
1673 text-align: right;
1711 text-align: right;
1674
1712
1675 li {
1713 li {
1676 display: inline;
1714 display: inline;
1677 font-size: @journal-fontsize;
1715 font-size: @journal-fontsize;
1678 line-height: 1em;
1716 line-height: 1em;
1679
1717
1680 &:before { content: none; }
1718 &:before { content: none; }
1681 }
1719 }
1682 }
1720 }
1683 }
1721 }
1684
1722
1685 .filterexample {
1723 .filterexample {
1686 position: absolute;
1724 position: absolute;
1687 top: 95px;
1725 top: 95px;
1688 left: @contentpadding;
1726 left: @contentpadding;
1689 color: @rcblue;
1727 color: @rcblue;
1690 font-size: 11px;
1728 font-size: 11px;
1691 font-family: @text-regular;
1729 font-family: @text-regular;
1692 cursor: help;
1730 cursor: help;
1693
1731
1694 &:hover {
1732 &:hover {
1695 color: @rcdarkblue;
1733 color: @rcdarkblue;
1696 }
1734 }
1697
1735
1698 @media (max-width:768px) {
1736 @media (max-width:768px) {
1699 position: relative;
1737 position: relative;
1700 top: auto;
1738 top: auto;
1701 left: auto;
1739 left: auto;
1702 display: block;
1740 display: block;
1703 }
1741 }
1704 }
1742 }
1705
1743
1706
1744
1707 #journal{
1745 #journal{
1708 margin-bottom: @space;
1746 margin-bottom: @space;
1709
1747
1710 .journal_day{
1748 .journal_day{
1711 margin-bottom: @textmargin/2;
1749 margin-bottom: @textmargin/2;
1712 padding-bottom: @textmargin/2;
1750 padding-bottom: @textmargin/2;
1713 font-size: @journal-fontsize;
1751 font-size: @journal-fontsize;
1714 border-bottom: @border-thickness solid @border-default-color;
1752 border-bottom: @border-thickness solid @border-default-color;
1715 }
1753 }
1716
1754
1717 .journal_container{
1755 .journal_container{
1718 margin-bottom: @space;
1756 margin-bottom: @space;
1719
1757
1720 .journal_user{
1758 .journal_user{
1721 display: inline-block;
1759 display: inline-block;
1722 }
1760 }
1723 .journal_action_container{
1761 .journal_action_container{
1724 display: block;
1762 display: block;
1725 margin-top: @textmargin;
1763 margin-top: @textmargin;
1726
1764
1727 div{
1765 div{
1728 display: inline;
1766 display: inline;
1729 }
1767 }
1730
1768
1731 div.journal_action_params{
1769 div.journal_action_params{
1732 display: block;
1770 display: block;
1733 }
1771 }
1734
1772
1735 div.journal_repo:after{
1773 div.journal_repo:after{
1736 content: "\A";
1774 content: "\A";
1737 white-space: pre;
1775 white-space: pre;
1738 }
1776 }
1739
1777
1740 div.date{
1778 div.date{
1741 display: block;
1779 display: block;
1742 margin-bottom: @textmargin;
1780 margin-bottom: @textmargin;
1743 }
1781 }
1744 }
1782 }
1745 }
1783 }
1746 }
1784 }
1747
1785
1748 // Files
1786 // Files
1749 .edit-file-title {
1787 .edit-file-title {
1750 border-bottom: @border-thickness solid @border-default-color;
1788 border-bottom: @border-thickness solid @border-default-color;
1751
1789
1752 .breadcrumbs {
1790 .breadcrumbs {
1753 margin-bottom: 0;
1791 margin-bottom: 0;
1754 }
1792 }
1755 }
1793 }
1756
1794
1757 .edit-file-fieldset {
1795 .edit-file-fieldset {
1758 margin-top: @sidebarpadding;
1796 margin-top: @sidebarpadding;
1759
1797
1760 .fieldset {
1798 .fieldset {
1761 .left-label {
1799 .left-label {
1762 width: 13%;
1800 width: 13%;
1763 }
1801 }
1764 .right-content {
1802 .right-content {
1765 width: 87%;
1803 width: 87%;
1766 max-width: 100%;
1804 max-width: 100%;
1767 }
1805 }
1768 .filename-label {
1806 .filename-label {
1769 margin-top: 13px;
1807 margin-top: 13px;
1770 }
1808 }
1771 .commit-message-label {
1809 .commit-message-label {
1772 margin-top: 4px;
1810 margin-top: 4px;
1773 }
1811 }
1774 .file-upload-input {
1812 .file-upload-input {
1775 input {
1813 input {
1776 display: none;
1814 display: none;
1777 }
1815 }
1778 }
1816 }
1779 p {
1817 p {
1780 margin-top: 5px;
1818 margin-top: 5px;
1781 }
1819 }
1782
1820
1783 }
1821 }
1784 .custom-path-link {
1822 .custom-path-link {
1785 margin-left: 5px;
1823 margin-left: 5px;
1786 }
1824 }
1787 #commit {
1825 #commit {
1788 resize: vertical;
1826 resize: vertical;
1789 }
1827 }
1790 }
1828 }
1791
1829
1792 .delete-file-preview {
1830 .delete-file-preview {
1793 max-height: 250px;
1831 max-height: 250px;
1794 }
1832 }
1795
1833
1796 .new-file,
1834 .new-file,
1797 #filter_activate,
1835 #filter_activate,
1798 #filter_deactivate {
1836 #filter_deactivate {
1799 float: left;
1837 float: left;
1800 margin: 0 0 0 15px;
1838 margin: 0 0 0 15px;
1801 }
1839 }
1802
1840
1803 h3.files_location{
1841 h3.files_location{
1804 line-height: 2.4em;
1842 line-height: 2.4em;
1805 }
1843 }
1806
1844
1807 .browser-nav {
1845 .browser-nav {
1808 display: table;
1846 display: table;
1809 margin-bottom: @space;
1847 margin-bottom: @space;
1810
1848
1811
1849
1812 .info_box {
1850 .info_box {
1813 display: inline-table;
1851 display: inline-table;
1814 height: 2.5em;
1852 height: 2.5em;
1815
1853
1816 .browser-cur-rev, .info_box_elem {
1854 .browser-cur-rev, .info_box_elem {
1817 display: table-cell;
1855 display: table-cell;
1818 vertical-align: middle;
1856 vertical-align: middle;
1819 }
1857 }
1820
1858
1821 .info_box_elem {
1859 .info_box_elem {
1822 border-top: @border-thickness solid @rcblue;
1860 border-top: @border-thickness solid @rcblue;
1823 border-bottom: @border-thickness solid @rcblue;
1861 border-bottom: @border-thickness solid @rcblue;
1824
1862
1825 #at_rev, a {
1863 #at_rev, a {
1826 padding: 0.6em 0.9em;
1864 padding: 0.6em 0.9em;
1827 margin: 0;
1865 margin: 0;
1828 .box-shadow(none);
1866 .box-shadow(none);
1829 border: 0;
1867 border: 0;
1830 height: 12px;
1868 height: 12px;
1831 }
1869 }
1832
1870
1833 input#at_rev {
1871 input#at_rev {
1834 max-width: 50px;
1872 max-width: 50px;
1835 text-align: right;
1873 text-align: right;
1836 }
1874 }
1837
1875
1838 &.previous {
1876 &.previous {
1839 border: @border-thickness solid @rcblue;
1877 border: @border-thickness solid @rcblue;
1840 .disabled {
1878 .disabled {
1841 color: @grey4;
1879 color: @grey4;
1842 cursor: not-allowed;
1880 cursor: not-allowed;
1843 }
1881 }
1844 }
1882 }
1845
1883
1846 &.next {
1884 &.next {
1847 border: @border-thickness solid @rcblue;
1885 border: @border-thickness solid @rcblue;
1848 .disabled {
1886 .disabled {
1849 color: @grey4;
1887 color: @grey4;
1850 cursor: not-allowed;
1888 cursor: not-allowed;
1851 }
1889 }
1852 }
1890 }
1853 }
1891 }
1854
1892
1855 .browser-cur-rev {
1893 .browser-cur-rev {
1856
1894
1857 span{
1895 span{
1858 margin: 0;
1896 margin: 0;
1859 color: @rcblue;
1897 color: @rcblue;
1860 height: 12px;
1898 height: 12px;
1861 display: inline-block;
1899 display: inline-block;
1862 padding: 0.7em 1em ;
1900 padding: 0.7em 1em ;
1863 border: @border-thickness solid @rcblue;
1901 border: @border-thickness solid @rcblue;
1864 margin-right: @padding;
1902 margin-right: @padding;
1865 }
1903 }
1866 }
1904 }
1867 }
1905 }
1868
1906
1869 .search_activate {
1907 .search_activate {
1870 display: table-cell;
1908 display: table-cell;
1871 vertical-align: middle;
1909 vertical-align: middle;
1872
1910
1873 input, label{
1911 input, label{
1874 margin: 0;
1912 margin: 0;
1875 padding: 0;
1913 padding: 0;
1876 }
1914 }
1877
1915
1878 input{
1916 input{
1879 margin-left: @textmargin;
1917 margin-left: @textmargin;
1880 }
1918 }
1881
1919
1882 }
1920 }
1883 }
1921 }
1884
1922
1885 .browser-cur-rev{
1923 .browser-cur-rev{
1886 margin-bottom: @textmargin;
1924 margin-bottom: @textmargin;
1887 }
1925 }
1888
1926
1889 #node_filter_box_loading{
1927 #node_filter_box_loading{
1890 .info_text;
1928 .info_text;
1891 }
1929 }
1892
1930
1893 .browser-search {
1931 .browser-search {
1894 margin: -25px 0px 5px 0px;
1932 margin: -25px 0px 5px 0px;
1895 }
1933 }
1896
1934
1897 .node-filter {
1935 .node-filter {
1898 font-size: @repo-title-fontsize;
1936 font-size: @repo-title-fontsize;
1899 padding: 4px 0px 0px 0px;
1937 padding: 4px 0px 0px 0px;
1900
1938
1901 .node-filter-path {
1939 .node-filter-path {
1902 float: left;
1940 float: left;
1903 color: @grey4;
1941 color: @grey4;
1904 }
1942 }
1905 .node-filter-input {
1943 .node-filter-input {
1906 float: left;
1944 float: left;
1907 margin: -2px 0px 0px 2px;
1945 margin: -2px 0px 0px 2px;
1908 input {
1946 input {
1909 padding: 2px;
1947 padding: 2px;
1910 border: none;
1948 border: none;
1911 font-size: @repo-title-fontsize;
1949 font-size: @repo-title-fontsize;
1912 }
1950 }
1913 }
1951 }
1914 }
1952 }
1915
1953
1916
1954
1917 .browser-result{
1955 .browser-result{
1918 td a{
1956 td a{
1919 margin-left: 0.5em;
1957 margin-left: 0.5em;
1920 display: inline-block;
1958 display: inline-block;
1921
1959
1922 em{
1960 em{
1923 font-family: @text-bold;
1961 font-family: @text-bold;
1924 }
1962 }
1925 }
1963 }
1926 }
1964 }
1927
1965
1928 .browser-highlight{
1966 .browser-highlight{
1929 background-color: @grey5-alpha;
1967 background-color: @grey5-alpha;
1930 }
1968 }
1931
1969
1932
1970
1933 // Search
1971 // Search
1934
1972
1935 .search-form{
1973 .search-form{
1936 #q {
1974 #q {
1937 width: @search-form-width;
1975 width: @search-form-width;
1938 }
1976 }
1939 .fields{
1977 .fields{
1940 margin: 0 0 @space;
1978 margin: 0 0 @space;
1941 }
1979 }
1942
1980
1943 label{
1981 label{
1944 display: inline-block;
1982 display: inline-block;
1945 margin-right: @textmargin;
1983 margin-right: @textmargin;
1946 padding-top: 0.25em;
1984 padding-top: 0.25em;
1947 }
1985 }
1948
1986
1949
1987
1950 .results{
1988 .results{
1951 clear: both;
1989 clear: both;
1952 margin: 0 0 @padding;
1990 margin: 0 0 @padding;
1953 }
1991 }
1954 }
1992 }
1955
1993
1956 div.search-feedback-items {
1994 div.search-feedback-items {
1957 display: inline-block;
1995 display: inline-block;
1958 padding:0px 0px 0px 96px;
1996 padding:0px 0px 0px 96px;
1959 }
1997 }
1960
1998
1961 div.search-code-body {
1999 div.search-code-body {
1962 background-color: #ffffff; padding: 5px 0 5px 10px;
2000 background-color: #ffffff; padding: 5px 0 5px 10px;
1963 pre {
2001 pre {
1964 .match { background-color: #faffa6;}
2002 .match { background-color: #faffa6;}
1965 .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; }
2003 .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; }
1966 }
2004 }
1967 }
2005 }
1968
2006
1969 .expand_commit.search {
2007 .expand_commit.search {
1970 .show_more.open {
2008 .show_more.open {
1971 height: auto;
2009 height: auto;
1972 max-height: none;
2010 max-height: none;
1973 }
2011 }
1974 }
2012 }
1975
2013
1976 .search-results {
2014 .search-results {
1977
2015
1978 h2 {
2016 h2 {
1979 margin-bottom: 0;
2017 margin-bottom: 0;
1980 }
2018 }
1981 .codeblock {
2019 .codeblock {
1982 border: none;
2020 border: none;
1983 background: transparent;
2021 background: transparent;
1984 }
2022 }
1985
2023
1986 .codeblock-header {
2024 .codeblock-header {
1987 border: none;
2025 border: none;
1988 background: transparent;
2026 background: transparent;
1989 }
2027 }
1990
2028
1991 .code-body {
2029 .code-body {
1992 border: @border-thickness solid @border-default-color;
2030 border: @border-thickness solid @border-default-color;
1993 .border-radius(@border-radius);
2031 .border-radius(@border-radius);
1994 }
2032 }
1995
2033
1996 .td-commit {
2034 .td-commit {
1997 &:extend(pre);
2035 &:extend(pre);
1998 border-bottom: @border-thickness solid @border-default-color;
2036 border-bottom: @border-thickness solid @border-default-color;
1999 }
2037 }
2000
2038
2001 .message {
2039 .message {
2002 height: auto;
2040 height: auto;
2003 max-width: 350px;
2041 max-width: 350px;
2004 white-space: normal;
2042 white-space: normal;
2005 text-overflow: initial;
2043 text-overflow: initial;
2006 overflow: visible;
2044 overflow: visible;
2007
2045
2008 .match { background-color: #faffa6;}
2046 .match { background-color: #faffa6;}
2009 .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; }
2047 .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; }
2010 }
2048 }
2011
2049
2012 }
2050 }
2013
2051
2014 table.rctable td.td-search-results div {
2052 table.rctable td.td-search-results div {
2015 max-width: 100%;
2053 max-width: 100%;
2016 }
2054 }
2017
2055
2018 #tip-box, .tip-box{
2056 #tip-box, .tip-box{
2019 padding: @menupadding/2;
2057 padding: @menupadding/2;
2020 display: block;
2058 display: block;
2021 border: @border-thickness solid @border-highlight-color;
2059 border: @border-thickness solid @border-highlight-color;
2022 .border-radius(@border-radius);
2060 .border-radius(@border-radius);
2023 background-color: white;
2061 background-color: white;
2024 z-index: 99;
2062 z-index: 99;
2025 white-space: pre-wrap;
2063 white-space: pre-wrap;
2026 }
2064 }
2027
2065
2028 #linktt {
2066 #linktt {
2029 width: 79px;
2067 width: 79px;
2030 }
2068 }
2031
2069
2032 #help_kb .modal-content{
2070 #help_kb .modal-content{
2033 max-width: 750px;
2071 max-width: 750px;
2034 margin: 10% auto;
2072 margin: 10% auto;
2035
2073
2036 table{
2074 table{
2037 td,th{
2075 td,th{
2038 border-bottom: none;
2076 border-bottom: none;
2039 line-height: 2.5em;
2077 line-height: 2.5em;
2040 }
2078 }
2041 th{
2079 th{
2042 padding-bottom: @textmargin/2;
2080 padding-bottom: @textmargin/2;
2043 }
2081 }
2044 td.keys{
2082 td.keys{
2045 text-align: center;
2083 text-align: center;
2046 }
2084 }
2047 }
2085 }
2048
2086
2049 .block-left{
2087 .block-left{
2050 width: 45%;
2088 width: 45%;
2051 margin-right: 5%;
2089 margin-right: 5%;
2052 }
2090 }
2053 .modal-footer{
2091 .modal-footer{
2054 clear: both;
2092 clear: both;
2055 }
2093 }
2056 .key.tag{
2094 .key.tag{
2057 padding: 0.5em;
2095 padding: 0.5em;
2058 background-color: @rcblue;
2096 background-color: @rcblue;
2059 color: white;
2097 color: white;
2060 border-color: @rcblue;
2098 border-color: @rcblue;
2061 .box-shadow(none);
2099 .box-shadow(none);
2062 }
2100 }
2063 }
2101 }
2064
2102
2065
2103
2066
2104
2067 //--- IMPORTS FOR REFACTORED STYLES ------------------//
2105 //--- IMPORTS FOR REFACTORED STYLES ------------------//
2068
2106
2069 @import 'statistics-graph';
2107 @import 'statistics-graph';
2070 @import 'tables';
2108 @import 'tables';
2071 @import 'forms';
2109 @import 'forms';
2072 @import 'diff';
2110 @import 'diff';
2073 @import 'summary';
2111 @import 'summary';
2074 @import 'navigation';
2112 @import 'navigation';
2075
2113
2076 //--- SHOW/HIDE SECTIONS --//
2114 //--- SHOW/HIDE SECTIONS --//
2077
2115
2078 .btn-collapse {
2116 .btn-collapse {
2079 float: right;
2117 float: right;
2080 text-align: right;
2118 text-align: right;
2081 font-family: @text-light;
2119 font-family: @text-light;
2082 font-size: @basefontsize;
2120 font-size: @basefontsize;
2083 cursor: pointer;
2121 cursor: pointer;
2084 border: none;
2122 border: none;
2085 color: @rcblue;
2123 color: @rcblue;
2086 }
2124 }
2087
2125
2088 table.rctable,
2126 table.rctable,
2089 table.dataTable {
2127 table.dataTable {
2090 .btn-collapse {
2128 .btn-collapse {
2091 float: right;
2129 float: right;
2092 text-align: right;
2130 text-align: right;
2093 }
2131 }
2094 }
2132 }
2095
2133
2096
2134
2097 // TODO: johbo: Fix for IE10, this avoids that we see a border
2135 // TODO: johbo: Fix for IE10, this avoids that we see a border
2098 // and padding around checkboxes and radio boxes. Move to the right place,
2136 // and padding around checkboxes and radio boxes. Move to the right place,
2099 // or better: Remove this once we did the form refactoring.
2137 // or better: Remove this once we did the form refactoring.
2100 input[type=checkbox],
2138 input[type=checkbox],
2101 input[type=radio] {
2139 input[type=radio] {
2102 padding: 0;
2140 padding: 0;
2103 border: none;
2141 border: none;
2104 }
2142 }
2105
2143
2106 .toggle-ajax-spinner{
2144 .toggle-ajax-spinner{
2107 height: 16px;
2145 height: 16px;
2108 width: 16px;
2146 width: 16px;
2109 }
2147 }
@@ -1,542 +1,542 b''
1 //
1 //
2 // Typography
2 // Typography
3 // modified from Bootstrap
3 // modified from Bootstrap
4 // --------------------------------------------------
4 // --------------------------------------------------
5
5
6 // Base
6 // Base
7 body {
7 body {
8 font-size: @basefontsize;
8 font-size: @basefontsize;
9 font-family: @text-light;
9 font-family: @text-light;
10 letter-spacing: .02em;
10 letter-spacing: .02em;
11 color: @grey2;
11 color: @grey2;
12 }
12 }
13
13
14 #content, label{
14 #content, label{
15 font-size: @basefontsize;
15 font-size: @basefontsize;
16 }
16 }
17
17
18 label {
18 label {
19 color: @grey2;
19 color: @grey2;
20 }
20 }
21
21
22 ::selection { background: @rchighlightblue; }
22 ::selection { background: @rchighlightblue; }
23
23
24 // Headings
24 // Headings
25 // -------------------------
25 // -------------------------
26
26
27 h1, h2, h3, h4, h5, h6,
27 h1, h2, h3, h4, h5, h6,
28 .h1, .h2, .h3, .h4, .h5, .h6 {
28 .h1, .h2, .h3, .h4, .h5, .h6 {
29 margin: 0 0 @textmargin 0;
29 margin: 0 0 @textmargin 0;
30 padding: 0;
30 padding: 0;
31 line-height: 1.8em;
31 line-height: 1.8em;
32 color: @text-color;
32 color: @text-color;
33 a {
33 a {
34 color: @rcblue;
34 color: @rcblue;
35 }
35 }
36 }
36 }
37
37
38 h1, .h1 { font-size: 1.54em; font-family: @text-bold; }
38 h1, .h1 { font-size: 1.54em; font-family: @text-bold; }
39 h2, .h2 { font-size: 1.23em; font-family: @text-semibold; }
39 h2, .h2 { font-size: 1.23em; font-family: @text-semibold; }
40 h3, .h3 { font-size: 1.23em; font-family: @text-regular; }
40 h3, .h3 { font-size: 1.23em; font-family: @text-regular; }
41 h4, .h4 { font-size: 1em; font-family: @text-bold; }
41 h4, .h4 { font-size: 1em; font-family: @text-bold; }
42 h5, .h5 { font-size: 1em; font-family: @text-bold-italic; }
42 h5, .h5 { font-size: 1em; font-family: @text-bold-italic; }
43 h6, .h6 { font-size: 1em; font-family: @text-bold-italic; }
43 h6, .h6 { font-size: 1em; font-family: @text-bold-italic; }
44
44
45 // Breadcrumbs
45 // Breadcrumbs
46 .breadcrumbs {
46 .breadcrumbs {
47 &:extend(h1);
47 &:extend(h1);
48 margin: 0;
48 margin: 0;
49 }
49 }
50
50
51 .breadcrumbs_light {
51 .breadcrumbs_light {
52 float:left;
52 float:left;
53 margin: @padding 0;
53 margin: @padding 0;
54 }
54 }
55
55
56 // Body text
56 // Body text
57 // -------------------------
57 // -------------------------
58
58
59 p {
59 p {
60 margin: 0 0 @textmargin 0;
60 margin: 0 0 @textmargin 0;
61 padding: 0;
61 padding: 0;
62 line-height: 2em;
62 line-height: 2em;
63 }
63 }
64
64
65 .lead {
65 .lead {
66 margin-bottom: @textmargin;
66 margin-bottom: @textmargin;
67 font-weight: 300;
67 font-weight: 300;
68 line-height: 1.4;
68 line-height: 1.4;
69
69
70 @media (min-width: @screen-sm-min) {
70 @media (min-width: @screen-sm-min) {
71 font-size: (@basefontsize * 1.5);
71 font-size: (@basefontsize * 1.5);
72 }
72 }
73 }
73 }
74
74
75 a,
75 a,
76 .link {
76 .link {
77 color: @rcblue;
77 color: @rcblue;
78 text-decoration: none;
78 text-decoration: none;
79 outline: none;
79 outline: none;
80 cursor: pointer;
80 cursor: pointer;
81
81
82 &:focus {
82 &:focus {
83 outline: none;
83 outline: none;
84 }
84 }
85
85
86 &:hover {
86 &:hover {
87 color: @rcdarkblue;
87 color: @rcdarkblue;
88 }
88 }
89 }
89 }
90
90
91 img {
91 img {
92 border: none;
92 border: none;
93 outline: none;
93 outline: none;
94 }
94 }
95
95
96 strong {
96 strong {
97 font-family: @text-bold;
97 font-family: @text-bold;
98 }
98 }
99
99
100 em {
100 em {
101 font-family: @text-italic;
101 font-family: @text-italic;
102 }
102 }
103
103
104 strong em,
104 strong em,
105 em strong {
105 em strong {
106 font-family: @text-bold-italic;
106 font-family: @text-bold-italic;
107 }
107 }
108
108
109 //TODO: lisa: b and i are depreciated, but we are still using them in places.
109 //TODO: lisa: b and i are depreciated, but we are still using them in places.
110 // Should probably make some decision whether to keep or lose these.
110 // Should probably make some decision whether to keep or lose these.
111 b {
111 b {
112
112
113 }
113 }
114
114
115 i {
115 i {
116 font-style: normal;
116 font-style: normal;
117 }
117 }
118
118
119 label {
119 label {
120 color: @text-color;
120 color: @text-color;
121
121
122 input[type="checkbox"] {
122 input[type="checkbox"] {
123 margin-right: 1em;
123 margin-right: 1em;
124 }
124 }
125 input[type="radio"] {
125 input[type="radio"] {
126 margin-right: 1em;
126 margin-right: 1em;
127 }
127 }
128 }
128 }
129
129
130 code,
130 code,
131 .code {
131 .code {
132 font-size: .95em;
132 font-size: .95em;
133 font-family: "Lucida Console", Monaco, monospace;
133 font-family: "Lucida Console", Monaco, monospace;
134 color: @grey3;
134 color: @grey3;
135
135
136 a {
136 a {
137 color: lighten(@rcblue,10%)
137 color: lighten(@rcblue,10%)
138 }
138 }
139 }
139 }
140
140
141 pre {
141 pre {
142 margin: 0;
142 margin: 0;
143 padding: 0;
143 padding: 0;
144 border: 0;
144 border: 0;
145 outline: 0;
145 outline: 0;
146 font-size: @basefontsize*.95;
146 font-size: @basefontsize*.95;
147 line-height: 1.4em;
147 line-height: 1.4em;
148 font-family: "Lucida Console", Monaco, monospace;
148 font-family: "Lucida Console", Monaco, monospace;
149 color: @grey3;
149 color: @grey3;
150 }
150 }
151
151
152 // Emphasis & misc
152 // Emphasis & misc
153 // -------------------------
153 // -------------------------
154
154
155 small,
155 small,
156 .small {
156 .small {
157 font-size: 75%;
157 font-size: 75%;
158 font-weight: normal;
158 font-weight: normal;
159 line-height: 1em;
159 line-height: 1em;
160 }
160 }
161
161
162 mark,
162 mark,
163 .mark {
163 .mark {
164 background-color: @rclightblue;
164 background-color: @rclightblue;
165 padding: .2em;
165 padding: .2em;
166 }
166 }
167
167
168 // Alignment
168 // Alignment
169 .text-left { text-align: left; }
169 .text-left { text-align: left; }
170 .text-right { text-align: right; }
170 .text-right { text-align: right; }
171 .text-center { text-align: center; }
171 .text-center { text-align: center; }
172 .text-justify { text-align: justify; }
172 .text-justify { text-align: justify; }
173 .text-nowrap { white-space: nowrap; }
173 .text-nowrap { white-space: nowrap; }
174
174
175 // Transformation
175 // Transformation
176 .text-lowercase { text-transform: lowercase; }
176 .text-lowercase { text-transform: lowercase; }
177 .text-uppercase { text-transform: uppercase; }
177 .text-uppercase { text-transform: uppercase; }
178 .text-capitalize { text-transform: capitalize; }
178 .text-capitalize { text-transform: capitalize; }
179
179
180 // Contextual colors
180 // Contextual colors
181 .text-muted {
181 .text-muted {
182 color: @grey4;
182 color: @grey4;
183 }
183 }
184 .text-primary {
184 .text-primary {
185 color: @rcblue;
185 color: @rcblue;
186 }
186 }
187 .text-success {
187 .text-success {
188 color: @alert1;
188 color: @alert1;
189 }
189 }
190 .text-info {
190 .text-info {
191 color: @alert4;
191 color: @alert4;
192 }
192 }
193 .text-warning {
193 .text-warning {
194 color: @alert3;
194 color: @alert3;
195 }
195 }
196 .text-danger {
196 .text-danger {
197 color: @alert2;
197 color: @alert2;
198 }
198 }
199
199
200 // Contextual backgrounds
200 // Contextual backgrounds
201 .bg-primary {
201 .bg-primary {
202 background-color: white;
202 background-color: white;
203 }
203 }
204 .bg-success {
204 .bg-success {
205 background-color: @alert1;
205 background-color: @alert1;
206 }
206 }
207 .bg-info {
207 .bg-info {
208 background-color: @alert4;
208 background-color: @alert4;
209 }
209 }
210 .bg-warning {
210 .bg-warning {
211 background-color: @alert3;
211 background-color: @alert3;
212 }
212 }
213 .bg-danger {
213 .bg-danger {
214 background-color: @alert2;
214 background-color: @alert2;
215 }
215 }
216
216
217
217
218 // Page header
218 // Page header
219 // -------------------------
219 // -------------------------
220
220
221 .page-header {
221 .page-header {
222 margin: @pagepadding 0 @textmargin;
222 margin: @pagepadding 0 @textmargin;
223 border-bottom: @border-thickness solid @grey5;
223 border-bottom: @border-thickness solid @grey5;
224 }
224 }
225
225
226 .title {
226 .title {
227 clear: both;
227 clear: both;
228 float: left;
228 float: left;
229 width: 100%;
229 width: 100%;
230 margin: @pagepadding 0 @pagepadding;
230 margin: @pagepadding 0 @pagepadding;
231
231
232 .breadcrumbs{
232 .breadcrumbs{
233 float: left;
233 float: left;
234 clear: both;
234 clear: both;
235 width: 700px;
235 width: 700px;
236 margin: 0;
236 margin: 0;
237
237
238 .q_filter_box {
238 .q_filter_box {
239 margin-right: @padding;
239 margin-right: @padding;
240 }
240 }
241 }
241 }
242
242
243 h1 a {
243 h1 a {
244 color: @rcblue;
244 color: @rcblue;
245 }
245 }
246
246
247 input{
247 input{
248 margin-right: @padding;
248 margin-right: @padding;
249 }
249 }
250
250
251 h5, .h5 {
251 h5, .h5 {
252 color: @grey1;
252 color: @grey1;
253 margin-bottom: @space;
253 margin-bottom: @space;
254
254
255 span {
255 span {
256 display: inline-block;
256 display: inline-block;
257 }
257 }
258 }
258 }
259
259
260 p {
260 p {
261 margin-bottom: 0;
261 margin-bottom: 0;
262 }
262 }
263
263
264 .links{
264 .links {
265 float: right;
265 float: right;
266 display: inline;
266 display: inline;
267 margin: 0;
267 margin: 0;
268 padding-left: 0;
268 padding-left: 0;
269 list-style: none;
269 list-style: none;
270 text-align: right;
270 text-align: right;
271
271
272 li:before { content: none; }
272 li:before { content: none; }
273
273 li { float: right; }
274 a {
274 a {
275 display: inline-block;
275 display: inline-block;
276 margin-left: @textmargin/2;
276 margin-left: @textmargin/2;
277 }
277 }
278 }
278 }
279
279
280 .title-content {
280 .title-content {
281 float: left;
281 float: left;
282 margin: 0;
282 margin: 0;
283 padding: 0;
283 padding: 0;
284
284
285 & + .breadcrumbs {
285 & + .breadcrumbs {
286 margin-top: @padding;
286 margin-top: @padding;
287 }
287 }
288
288
289 & + .links {
289 & + .links {
290 margin-top: -@button-padding;
290 margin-top: -@button-padding;
291
291
292 & + .breadcrumbs {
292 & + .breadcrumbs {
293 margin-top: @padding;
293 margin-top: @padding;
294 }
294 }
295 }
295 }
296 }
296 }
297
297
298 .title-main {
298 .title-main {
299 font-size: @repo-title-fontsize;
299 font-size: @repo-title-fontsize;
300 }
300 }
301
301
302 .title-description {
302 .title-description {
303 margin-top: .5em;
303 margin-top: .5em;
304 }
304 }
305
305
306 .q_filter_box {
306 .q_filter_box {
307 width: 200px;
307 width: 200px;
308 }
308 }
309
309
310 }
310 }
311
311
312 #readme .title {
312 #readme .title {
313 text-transform: none;
313 text-transform: none;
314 }
314 }
315
315
316 // Lists
316 // Lists
317 // -------------------------
317 // -------------------------
318
318
319 // Unordered and Ordered lists
319 // Unordered and Ordered lists
320 ul,
320 ul,
321 ol {
321 ol {
322 margin-top: 0;
322 margin-top: 0;
323 margin-bottom: @textmargin;
323 margin-bottom: @textmargin;
324 ul,
324 ul,
325 ol {
325 ol {
326 margin-bottom: 0;
326 margin-bottom: 0;
327 }
327 }
328 }
328 }
329
329
330 li {
330 li {
331 line-height: 2em;
331 line-height: 2em;
332 }
332 }
333
333
334 ul li {
334 ul li {
335 position: relative;
335 position: relative;
336 display: block;
336 display: block;
337 list-style-type: none;
337 list-style-type: none;
338
338
339 &:before {
339 &:before {
340 content: "\2014\00A0";
340 content: "\2014\00A0";
341 position: absolute;
341 position: absolute;
342 top: 0;
342 top: 0;
343 left: -1.25em;
343 left: -1.25em;
344 }
344 }
345
345
346 p:first-child {
346 p:first-child {
347 display:inline;
347 display:inline;
348 }
348 }
349 }
349 }
350
350
351 // List options
351 // List options
352
352
353 // Unstyled keeps list items block level, just removes default browser padding and list-style
353 // Unstyled keeps list items block level, just removes default browser padding and list-style
354 .list-unstyled {
354 .list-unstyled {
355 padding-left: 0;
355 padding-left: 0;
356 list-style: none;
356 list-style: none;
357 li:before { content: none; }
357 li:before { content: none; }
358 }
358 }
359
359
360 // Inline turns list items into inline-block
360 // Inline turns list items into inline-block
361 .list-inline {
361 .list-inline {
362 .list-unstyled();
362 .list-unstyled();
363 margin-left: -5px;
363 margin-left: -5px;
364
364
365 > li {
365 > li {
366 display: inline-block;
366 display: inline-block;
367 padding-left: 5px;
367 padding-left: 5px;
368 padding-right: 5px;
368 padding-right: 5px;
369 }
369 }
370 }
370 }
371
371
372 // Description Lists
372 // Description Lists
373
373
374 dl {
374 dl {
375 margin-top: 0; // Remove browser default
375 margin-top: 0; // Remove browser default
376 margin-bottom: @textmargin;
376 margin-bottom: @textmargin;
377 }
377 }
378
378
379 dt,
379 dt,
380 dd {
380 dd {
381 line-height: 1.4em;
381 line-height: 1.4em;
382 }
382 }
383
383
384 dt {
384 dt {
385 margin: @textmargin 0 0 0;
385 margin: @textmargin 0 0 0;
386 font-family: @text-bold;
386 font-family: @text-bold;
387 }
387 }
388
388
389 dd {
389 dd {
390 margin-left: 0; // Undo browser default
390 margin-left: 0; // Undo browser default
391 }
391 }
392
392
393 // Horizontal description lists
393 // Horizontal description lists
394 // Defaults to being stacked without any of the below styles applied, until the
394 // Defaults to being stacked without any of the below styles applied, until the
395 // grid breakpoint is reached (default of ~768px).
395 // grid breakpoint is reached (default of ~768px).
396 // These are used in forms as well; see style guide.
396 // These are used in forms as well; see style guide.
397 // TODO: lisa: These should really not be used in forms.
397 // TODO: lisa: These should really not be used in forms.
398
398
399 .dl-horizontal {
399 .dl-horizontal {
400
400
401 overflow: hidden;
401 overflow: hidden;
402 margin-top: -5px;
402 margin-top: -5px;
403 margin-bottom: @space;
403 margin-bottom: @space;
404
404
405 dt, dd {
405 dt, dd {
406 float: left;
406 float: left;
407 margin: 5px 0 5px 0;
407 margin: 5px 0 5px 0;
408 }
408 }
409
409
410 dt {
410 dt {
411 clear: left;
411 clear: left;
412 width: @label-width - @form-vertical-margin;
412 width: @label-width - @form-vertical-margin;
413 }
413 }
414
414
415 dd {
415 dd {
416 &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
416 &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
417 margin-left: @form-vertical-margin;
417 margin-left: @form-vertical-margin;
418 max-width: @form-max-width - (@label-width - @form-vertical-margin) - @form-vertical-margin;
418 max-width: @form-max-width - (@label-width - @form-vertical-margin) - @form-vertical-margin;
419 }
419 }
420
420
421 pre {
421 pre {
422 margin: 0;
422 margin: 0;
423 }
423 }
424
424
425 &.settings {
425 &.settings {
426 dt {
426 dt {
427 text-align: left;
427 text-align: left;
428 }
428 }
429 }
429 }
430
430
431 @media (min-width: 768px) {
431 @media (min-width: 768px) {
432 dt {
432 dt {
433 float: left;
433 float: left;
434 width: 180px;
434 width: 180px;
435 clear: left;
435 clear: left;
436 text-align: right;
436 text-align: right;
437 }
437 }
438 dd {
438 dd {
439 margin-left: 20px;
439 margin-left: 20px;
440 }
440 }
441 }
441 }
442 }
442 }
443
443
444
444
445 // Misc
445 // Misc
446 // -------------------------
446 // -------------------------
447
447
448 // Abbreviations and acronyms
448 // Abbreviations and acronyms
449 abbr[title],
449 abbr[title],
450 abbr[data-original-title] {
450 abbr[data-original-title] {
451 cursor: help;
451 cursor: help;
452 border-bottom: @border-thickness dotted @grey4;
452 border-bottom: @border-thickness dotted @grey4;
453 }
453 }
454 .initialism {
454 .initialism {
455 font-size: 90%;
455 font-size: 90%;
456 text-transform: uppercase;
456 text-transform: uppercase;
457 }
457 }
458
458
459 // Blockquotes
459 // Blockquotes
460 blockquote {
460 blockquote {
461 padding: 1em 2em;
461 padding: 1em 2em;
462 margin: 0 0 2em;
462 margin: 0 0 2em;
463 font-size: @basefontsize;
463 font-size: @basefontsize;
464 border-left: 2px solid @grey6;
464 border-left: 2px solid @grey6;
465
465
466 p,
466 p,
467 ul,
467 ul,
468 ol {
468 ol {
469 &:last-child {
469 &:last-child {
470 margin-bottom: 0;
470 margin-bottom: 0;
471 }
471 }
472 }
472 }
473
473
474 footer,
474 footer,
475 small,
475 small,
476 .small {
476 .small {
477 display: block;
477 display: block;
478 font-size: 80%;
478 font-size: 80%;
479
479
480 &:before {
480 &:before {
481 content: '\2014 \00A0'; // em dash, nbsp
481 content: '\2014 \00A0'; // em dash, nbsp
482 }
482 }
483 }
483 }
484 }
484 }
485
485
486 // Opposite alignment of blockquote
486 // Opposite alignment of blockquote
487 //
487 //
488 .blockquote-reverse,
488 .blockquote-reverse,
489 blockquote.pull-right {
489 blockquote.pull-right {
490 padding-right: 15px;
490 padding-right: 15px;
491 padding-left: 0;
491 padding-left: 0;
492 border-right: 5px solid @grey6;
492 border-right: 5px solid @grey6;
493 border-left: 0;
493 border-left: 0;
494 text-align: right;
494 text-align: right;
495
495
496 // Account for citation
496 // Account for citation
497 footer,
497 footer,
498 small,
498 small,
499 .small {
499 .small {
500 &:before { content: ''; }
500 &:before { content: ''; }
501 &:after {
501 &:after {
502 content: '\00A0 \2014'; // nbsp, em dash
502 content: '\00A0 \2014'; // nbsp, em dash
503 }
503 }
504 }
504 }
505 }
505 }
506
506
507 // Addresses
507 // Addresses
508 address {
508 address {
509 margin-bottom: 2em;
509 margin-bottom: 2em;
510 font-style: normal;
510 font-style: normal;
511 line-height: 1.8em;
511 line-height: 1.8em;
512 }
512 }
513
513
514 .error-message {
514 .error-message {
515 display: block;
515 display: block;
516 margin: @padding/3 0;
516 margin: @padding/3 0;
517 color: @alert2;
517 color: @alert2;
518 }
518 }
519
519
520 .issue-tracker-link {
520 .issue-tracker-link {
521 color: @rcblue;
521 color: @rcblue;
522 }
522 }
523
523
524 .info_text{
524 .info_text{
525 font-size: @basefontsize;
525 font-size: @basefontsize;
526 color: @grey4;
526 color: @grey4;
527 font-family: @text-regular;
527 font-family: @text-regular;
528 }
528 }
529
529
530 // help block text
530 // help block text
531 .help-block {
531 .help-block {
532 display: block;
532 display: block;
533 margin: 0 0 @padding;
533 margin: 0 0 @padding;
534 color: @grey4;
534 color: @grey4;
535 font-family: @text-light;
535 font-family: @text-light;
536 }
536 }
537
537
538 .error-message {
538 .error-message {
539 display: block;
539 display: block;
540 margin: @padding/3 0;
540 margin: @padding/3 0;
541 color: @alert2;
541 color: @alert2;
542 }
542 }
@@ -1,43 +1,69 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <%inherit file="base.html"/>
2 <%inherit file="base.html"/>
3
3
4 <%def name="breadcrumbs_links()">
4 <%def name="breadcrumbs_links()">
5 %if c.repo:
5 %if c.repo:
6 ${h.link_to('Settings',h.url('edit_repo', repo_name=c.repo.repo_name))}
6 ${h.link_to('Settings',h.url('edit_repo', repo_name=c.repo.repo_name))}
7 &raquo;
7 &raquo;
8 ${h.link_to(_('Integrations'),request.route_url(route_name='repo_integrations_home', repo_name=c.repo.repo_name))}
8 ${h.link_to(_('Integrations'),request.route_url(route_name='repo_integrations_home', repo_name=c.repo.repo_name))}
9 &raquo;
9 &raquo;
10 ${h.link_to(current_IntegrationType.display_name,
10 ${h.link_to(current_IntegrationType.display_name,
11 request.route_url(route_name='repo_integrations_list',
11 request.route_url(route_name='repo_integrations_list',
12 repo_name=c.repo.repo_name,
12 repo_name=c.repo.repo_name,
13 integration=current_IntegrationType.key))}
13 integration=current_IntegrationType.key))}
14 %elif c.repo_group:
15 ${h.link_to(_('Admin'),h.url('admin_home'))}
16 &raquo;
17 ${h.link_to(_('Repository Groups'),h.url('repo_groups'))}
18 &raquo;
19 ${h.link_to(c.repo_group.group_name,h.url('edit_repo_group', group_name=c.repo_group.group_name))}
20 &raquo;
21 ${h.link_to(_('Integrations'),request.route_url(route_name='repo_group_integrations_home', repo_group_name=c.repo_group.group_name))}
22 &raquo;
23 ${h.link_to(current_IntegrationType.display_name,
24 request.route_url(route_name='repo_group_integrations_list',
25 repo_group_name=c.repo_group.group_name,
26 integration=current_IntegrationType.key))}
14 %else:
27 %else:
15 ${h.link_to(_('Admin'),h.url('admin_home'))}
28 ${h.link_to(_('Admin'),h.url('admin_home'))}
16 &raquo;
29 &raquo;
17 ${h.link_to(_('Settings'),h.url('admin_settings'))}
30 ${h.link_to(_('Settings'),h.url('admin_settings'))}
18 &raquo;
31 &raquo;
19 ${h.link_to(_('Integrations'),request.route_url(route_name='global_integrations_home'))}
32 ${h.link_to(_('Integrations'),request.route_url(route_name='global_integrations_home'))}
20 &raquo;
33 &raquo;
21 ${h.link_to(current_IntegrationType.display_name,
34 ${h.link_to(current_IntegrationType.display_name,
22 request.route_url(route_name='global_integrations_list',
35 request.route_url(route_name='global_integrations_list',
23 integration=current_IntegrationType.key))}
36 integration=current_IntegrationType.key))}
24 %endif
37 %endif
38
25 %if integration:
39 %if integration:
26 &raquo;
40 &raquo;
27 ${integration.name}
41 ${integration.name}
42 %elif current_IntegrationType:
43 &raquo;
44 ${current_IntegrationType.display_name}
28 %endif
45 %endif
29 </%def>
46 </%def>
47
48 <style>
49 .control-inputs.item-options, .control-inputs.item-settings {
50 float: left;
51 width: 100%;
52 }
53 </style>
30 <div class="panel panel-default">
54 <div class="panel panel-default">
31 <div class="panel-heading">
55 <div class="panel-heading">
32 <h2 class="panel-title">
56 <h2 class="panel-title">
33 %if integration:
57 %if integration:
34 ${current_IntegrationType.display_name} - ${integration.name}
58 ${current_IntegrationType.display_name} - ${integration.name}
35 %else:
59 %else:
36 ${_('Create New %(integration_type)s Integration') % {'integration_type': current_IntegrationType.display_name}}
60 ${_('Create New %(integration_type)s Integration') % {
61 'integration_type': current_IntegrationType.display_name
62 }}
37 %endif
63 %endif
38 </h2>
64 </h2>
39 </div>
65 </div>
40 <div class="panel-body">
66 <div class="panel-body">
41 ${form.render() | n}
67 ${form.render() | n}
42 </div>
68 </div>
43 </div>
69 </div>
@@ -1,156 +1,249 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <%inherit file="base.html"/>
2 <%inherit file="base.html"/>
3
3
4 <%def name="breadcrumbs_links()">
4 <%def name="breadcrumbs_links()">
5 %if c.repo:
5 %if c.repo:
6 ${h.link_to('Settings',h.url('edit_repo', repo_name=c.repo.repo_name))}
6 ${h.link_to('Settings',h.url('edit_repo', repo_name=c.repo.repo_name))}
7 %elif c.repo_group:
8 ${h.link_to(_('Admin'),h.url('admin_home'))}
9 &raquo;
10 ${h.link_to(_('Repository Groups'),h.url('repo_groups'))}
11 &raquo;
12 ${h.link_to(c.repo_group.group_name,h.url('edit_repo_group', group_name=c.repo_group.group_name))}
7 %else:
13 %else:
8 ${h.link_to(_('Admin'),h.url('admin_home'))}
14 ${h.link_to(_('Admin'),h.url('admin_home'))}
9 &raquo;
15 &raquo;
10 ${h.link_to(_('Settings'),h.url('admin_settings'))}
16 ${h.link_to(_('Settings'),h.url('admin_settings'))}
11 %endif
17 %endif
12 %if current_IntegrationType:
18 %if current_IntegrationType:
13 &raquo;
19 &raquo;
14 %if c.repo:
20 %if c.repo:
15 ${h.link_to(_('Integrations'),
21 ${h.link_to(_('Integrations'),
16 request.route_url(route_name='repo_integrations_home',
22 request.route_url(route_name='repo_integrations_home',
17 repo_name=c.repo.repo_name))}
23 repo_name=c.repo.repo_name))}
24 %elif c.repo_group:
25 ${h.link_to(_('Integrations'),
26 request.route_url(route_name='repo_group_integrations_home',
27 repo_group_name=c.repo_group.group_name))}
18 %else:
28 %else:
19 ${h.link_to(_('Integrations'),
29 ${h.link_to(_('Integrations'),
20 request.route_url(route_name='global_integrations_home'))}
30 request.route_url(route_name='global_integrations_home'))}
21 %endif
31 %endif
22 &raquo;
32 &raquo;
23 ${current_IntegrationType.display_name}
33 ${current_IntegrationType.display_name}
24 %else:
34 %else:
25 &raquo;
35 &raquo;
26 ${_('Integrations')}
36 ${_('Integrations')}
27 %endif
37 %endif
28 </%def>
38 </%def>
39
29 <div class="panel panel-default">
40 <div class="panel panel-default">
30 <div class="panel-heading">
41 <div class="panel-heading">
31 <h3 class="panel-title">${_('Create New Integration')}</h3>
42 <h3 class="panel-title">
43 %if c.repo:
44 ${_('Current Integrations for Repository: {repo_name}').format(repo_name=c.repo.repo_name)}
45 %elif c.repo_group:
46 ${_('Current Integrations for repository group: {repo_group_name}').format(repo_group_name=c.repo_group.group_name)}
47 %else:
48 ${_('Current Integrations')}
49 %endif
50 </h3>
32 </div>
51 </div>
33 <div class="panel-body">
52 <div class="panel-body">
34 %if not available_integrations:
53 <%
35 ${_('No integrations available.')}
54 if c.repo:
36 %else:
55 home_url = request.route_path('repo_integrations_home',
37 %for integration in available_integrations:
56 repo_name=c.repo.repo_name)
38 <%
57 elif c.repo_group:
39 if c.repo:
58 home_url = request.route_path('repo_group_integrations_home',
40 create_url = request.route_path('repo_integrations_create',
59 repo_group_name=c.repo_group.group_name)
60 else:
61 home_url = request.route_path('global_integrations_home')
62 %>
63
64 <a href="${home_url}" class="btn ${not current_IntegrationType and 'btn-primary' or ''}">${_('All')}</a>
65
66 %for integration_key, IntegrationType in available_integrations.items():
67 <%
68 if c.repo:
69 list_url = request.route_path('repo_integrations_list',
41 repo_name=c.repo.repo_name,
70 repo_name=c.repo.repo_name,
42 integration=integration)
71 integration=integration_key)
43 elif c.repo_group:
72 elif c.repo_group:
44 create_url = request.route_path('repo_group_integrations_create',
73 list_url = request.route_path('repo_group_integrations_list',
45 repo_group_name=c.repo_group.group_name,
74 repo_group_name=c.repo_group.group_name,
46 integration=integration)
75 integration=integration_key)
47 else:
76 else:
48 create_url = request.route_path('global_integrations_create',
77 list_url = request.route_path('global_integrations_list',
49 integration=integration)
78 integration=integration_key)
50 %>
79 %>
51 <a href="${create_url}" class="btn">
80 <a href="${list_url}"
52 ${integration}
81 class="btn ${current_IntegrationType and integration_key == current_IntegrationType.key and 'btn-primary' or ''}">
82 ${IntegrationType.display_name}
53 </a>
83 </a>
54 %endfor
84 %endfor
55 %endif
85
56 </div>
86 <%
57 </div>
87 if c.repo:
58 <div class="panel panel-default">
88 create_url = h.route_path('repo_integrations_new', repo_name=c.repo.repo_name)
59 <div class="panel-heading">
89 elif c.repo_group:
60 <h3 class="panel-title">${_('Current Integrations')}</h3>
90 create_url = h.route_path('repo_group_integrations_new', repo_group_name=c.repo_group.group_name)
61 </div>
91 else:
62 <div class="panel-body">
92 create_url = h.route_path('global_integrations_new')
63 <table class="rctable issuetracker">
93 %>
94 <p class="pull-right">
95 <a href="${create_url}" class="btn btn-small btn-success">${_(u'Create new integration')}</a>
96 </p>
97
98 <table class="rctable integrations">
64 <thead>
99 <thead>
65 <tr>
100 <tr>
66 <th>${_('Enabled')}</th>
101 <th><a href="?sort=enabled:${rev_sort_dir}">${_('Enabled')}</a></th>
67 <th>${_('Description')}</th>
102 <th><a href="?sort=name:${rev_sort_dir}">${_('Name')}</a></th>
68 <th>${_('Type')}</th>
103 <th colspan="2"><a href="?sort=integration_type:${rev_sort_dir}">${_('Type')}</a></th>
104 <th><a href="?sort=scope:${rev_sort_dir}">${_('Scope')}</a></th>
69 <th>${_('Actions')}</th>
105 <th>${_('Actions')}</th>
70 <th></th>
106 <th></th>
71 </tr>
107 </tr>
72 </thead>
108 </thead>
73 <tbody>
109 <tbody>
110 %if not integrations_list:
111 <tr>
112 <td colspan="7">
113 <% integration_type = current_IntegrationType and current_IntegrationType.display_name or '' %>
114 %if c.repo:
115 ${_('No {type} integrations for repo {repo} exist yet.').format(type=integration_type, repo=c.repo.repo_name)}
116 %elif c.repo_group:
117 ${_('No {type} integrations for repogroup {repogroup} exist yet.').format(type=integration_type, repogroup=c.repo_group.group_name)}
118 %else:
119 ${_('No {type} integrations exist yet.').format(type=integration_type)}
120 %endif
74
121
75 %for integration_type, integrations in sorted(current_integrations.items()):
122 %if current_IntegrationType:
76 %for integration in sorted(integrations, key=lambda x: x.name):
123 <%
124 if c.repo:
125 create_url = h.route_path('repo_integrations_create', repo_name=c.repo.repo_name, integration=current_IntegrationType.key)
126 elif c.repo_group:
127 create_url = h.route_path('repo_group_integrations_create', repo_group_name=c.repo_group.group_name, integration=current_IntegrationType.key)
128 else:
129 create_url = h.route_path('global_integrations_create', integration=current_IntegrationType.key)
130 %>
131 %endif
132
133 <a href="${create_url}">${_(u'Create one')}</a>
134 </td>
135 </tr>
136 %endif
137 %for IntegrationType, integration in integrations_list:
77 <tr id="integration_${integration.integration_id}">
138 <tr id="integration_${integration.integration_id}">
78 <td class="td-enabled">
139 <td class="td-enabled">
79 %if integration.enabled:
140 %if integration.enabled:
80 <div class="flag_status approved pull-left"></div>
141 <div class="flag_status approved pull-left"></div>
81 %else:
142 %else:
82 <div class="flag_status rejected pull-left"></div>
143 <div class="flag_status rejected pull-left"></div>
83 %endif
144 %endif
84 </td>
145 </td>
85 <td class="td-description">
146 <td class="td-description">
86 ${integration.name}
147 ${integration.name}
87 </td>
148 </td>
88 <td class="td-regex">
149 <td class="td-icon">
150 %if integration.integration_type in available_integrations:
151 <div class="integration-icon">
152 ${available_integrations[integration.integration_type].icon|n}
153 </div>
154 %else:
155 ?
156 %endif
157 </td>
158 <td class="td-type">
89 ${integration.integration_type}
159 ${integration.integration_type}
90 </td>
160 </td>
161 <td class="td-scope">
162 %if integration.repo:
163 <a href="${h.url('summary_home', repo_name=integration.repo.repo_name)}">
164 ${_('repo')}:${integration.repo.repo_name}
165 </a>
166 %elif integration.repo_group:
167 <a href="${h.url('repo_group_home', group_name=integration.repo_group.group_name)}">
168 ${_('repogroup')}:${integration.repo_group.group_name}
169 </a>
170 %else:
171 %if integration.scope == 'root_repos':
172 ${_('top level repos only')}
173 %elif integration.scope == 'global':
174 ${_('global')}
175 %else:
176 ${_('unknown scope')}: ${integration.scope}
177 %endif
178 </td>
179 %endif
91 <td class="td-action">
180 <td class="td-action">
92 %if integration_type not in available_integrations:
181 %if not IntegrationType:
93 ${_('unknown integration')}
182 ${_('unknown integration')}
94 %else:
183 %else:
95 <%
184 <%
96 if c.repo:
185 if c.repo:
97 edit_url = request.route_path('repo_integrations_edit',
186 edit_url = request.route_path('repo_integrations_edit',
98 repo_name=c.repo.repo_name,
187 repo_name=c.repo.repo_name,
99 integration=integration.integration_type,
188 integration=integration.integration_type,
100 integration_id=integration.integration_id)
189 integration_id=integration.integration_id)
101 elif c.repo_group:
190 elif c.repo_group:
102 edit_url = request.route_path('repo_group_integrations_edit',
191 edit_url = request.route_path('repo_group_integrations_edit',
103 repo_group_name=c.repo_group.group_name,
192 repo_group_name=c.repo_group.group_name,
104 integration=integration.integration_type,
193 integration=integration.integration_type,
105 integration_id=integration.integration_id)
194 integration_id=integration.integration_id)
106 else:
195 else:
107 edit_url = request.route_path('global_integrations_edit',
196 edit_url = request.route_path('global_integrations_edit',
108 integration=integration.integration_type,
197 integration=integration.integration_type,
109 integration_id=integration.integration_id)
198 integration_id=integration.integration_id)
110 %>
199 %>
111 <div class="grid_edit">
200 <div class="grid_edit">
112 <a href="${edit_url}">${_('Edit')}</a>
201 <a href="${edit_url}">${_('Edit')}</a>
113 </div>
202 </div>
114 <div class="grid_delete">
203 <div class="grid_delete">
115 <a href="${edit_url}"
204 <a href="${edit_url}"
116 class="btn btn-link btn-danger delete_integration_entry"
205 class="btn btn-link btn-danger delete_integration_entry"
117 data-desc="${integration.name}"
206 data-desc="${integration.name}"
118 data-uid="${integration.integration_id}">
207 data-uid="${integration.integration_id}">
119 ${_('Delete')}
208 ${_('Delete')}
120 </a>
209 </a>
121 </div>
210 </div>
122 %endif
211 %endif
123 </td>
212 </td>
124 </tr>
213 </tr>
125 %endfor
126 %endfor
214 %endfor
127 <tr id="last-row"></tr>
215 <tr id="last-row"></tr>
128 </tbody>
216 </tbody>
129 </table>
217 </table>
218 <div class="integrations-paginator">
219 <div class="pagination-wh pagination-left">
220 ${integrations_list.pager('$link_previous ~2~ $link_next')}
221 </div>
222 </div>
130 </div>
223 </div>
131 </div>
224 </div>
132 <script type="text/javascript">
225 <script type="text/javascript">
133 var delete_integration = function(entry) {
226 var delete_integration = function(entry) {
134 if (confirm("Confirm to remove this integration: "+$(entry).data('desc'))) {
227 if (confirm("Confirm to remove this integration: "+$(entry).data('desc'))) {
135 var request = $.ajax({
228 var request = $.ajax({
136 type: "POST",
229 type: "POST",
137 url: $(entry).attr('href'),
230 url: $(entry).attr('href'),
138 data: {
231 data: {
139 'delete': 'delete',
232 'delete': 'delete',
140 'csrf_token': CSRF_TOKEN
233 'csrf_token': CSRF_TOKEN
141 },
234 },
142 success: function(){
235 success: function(){
143 location.reload();
236 location.reload();
144 },
237 },
145 error: function(data, textStatus, errorThrown){
238 error: function(data, textStatus, errorThrown){
146 alert("Error while deleting entry.\nError code {0} ({1}). URL: {2}".format(data.status,data.statusText,$(entry)[0].url));
239 alert("Error while deleting entry.\nError code {0} ({1}). URL: {2}".format(data.status,data.statusText,$(entry)[0].url));
147 }
240 }
148 });
241 });
149 };
242 };
150 }
243 }
151
244
152 $('.delete_integration_entry').on('click', function(e){
245 $('.delete_integration_entry').on('click', function(e){
153 e.preventDefault();
246 e.preventDefault();
154 delete_integration(this);
247 delete_integration(this);
155 });
248 });
156 </script> No newline at end of file
249 </script>
@@ -1,47 +1,46 b''
1 <div tal:define="error_class error_class|field.widget.error_class;
1 <div tal:define="error_class error_class|field.widget.error_class;
2 description description|field.description;
2 description description|field.description;
3 title title|field.title;
3 title title|field.title;
4 oid oid|field.oid;
4 oid oid|field.oid;
5 hidden hidden|field.widget.hidden;
5 hidden hidden|field.widget.hidden;
6 category category|field.widget.category;
6 category category|field.widget.category;
7 structural hidden or category == 'structural';
7 structural hidden or category == 'structural';
8 required required|field.required;"
8 required required|field.required;"
9 class="form-group ${field.error and 'has-error' or ''} ${field.widget.item_css_class or ''}"
9 class="form-group ${field.error and 'has-error' or ''} ${field.widget.item_css_class or ''}"
10 id="item-${oid}"
10 id="item-${oid}"
11 tal:omit-tag="structural"
11 tal:omit-tag="structural"
12 i18n:domain="deform">
12 i18n:domain="deform">
13
14 <label for="${oid}"
13 <label for="${oid}"
15 class="control-label ${required and 'required' or ''}"
14 class="control-label ${required and 'required' or ''}"
16 tal:condition="not structural"
15 tal:condition="not structural"
17 id="req-${oid}"
16 id="req-${oid}"
18 >
17 >
19 ${title}
18 ${title}
20 </label>
19 </label>
21 <div class="control-inputs">
20 <div class="control-inputs ${field.widget.item_css_class or ''}">
22 <div tal:define="input_prepend field.widget.input_prepend | None;
21 <div tal:define="input_prepend field.widget.input_prepend | None;
23 input_append field.widget.input_append | None"
22 input_append field.widget.input_append | None"
24 tal:omit-tag="not (input_prepend or input_append)"
23 tal:omit-tag="not (input_prepend or input_append)"
25 class="input-group">
24 class="input-group">
26 <span class="input-group-addon"
25 <span class="input-group-addon"
27 tal:condition="input_prepend">${input_prepend}</span
26 tal:condition="input_prepend">${input_prepend}</span
28 ><span tal:replace="structure field.serialize(cstruct).strip()"
27 ><span tal:replace="structure field.serialize(cstruct).strip()"
29 /><span class="input-group-addon"
28 /><span class="input-group-addon"
30 tal:condition="input_append">${input_append}</span>
29 tal:condition="input_append">${input_append}</span>
31 </div>
30 </div>
32 <p class="help-block error-block"
31 <p class="help-block error-block"
33 tal:define="errstr 'error-%s' % field.oid"
32 tal:define="errstr 'error-%s' % field.oid"
34 tal:repeat="msg field.error.messages()"
33 tal:repeat="msg field.error.messages()"
35 i18n:translate=""
34 i18n:translate=""
36 tal:attributes="id repeat.msg.index==0 and errstr or
35 tal:attributes="id repeat.msg.index==0 and errstr or
37 ('%s-%s' % (errstr, repeat.msg.index))"
36 ('%s-%s' % (errstr, repeat.msg.index))"
38 tal:condition="field.error and not field.widget.hidden and not field.typ.__class__.__name__=='Mapping'">
37 tal:condition="field.error and not field.widget.hidden and not field.typ.__class__.__name__=='Mapping'">
39 ${msg}
38 ${msg}
40 </p>
39 </p>
41
40
42 <p tal:condition="field.description and not field.widget.hidden"
41 <p tal:condition="field.description and not field.widget.hidden"
43 class="help-block" >
42 class="help-block" >
44 ${field.description}
43 ${field.description}
45 </p>
44 </p>
46 </div>
45 </div>
47 </div> No newline at end of file
46 </div>
@@ -1,10 +1,18 b''
1 <%def name="panel(title, class_='default')">
1 <%def name="panel(title='', category='default', class_='')">
2 <div class="panel panel-${class_}">
2 <div class="panel panel-${category} ${class_}">
3 %if title or hasattr(caller, 'title'):
3 <div class="panel-heading">
4 <div class="panel-heading">
4 <h3 class="panel-title">${title}</h3>
5 <h3 class="panel-title">
6 %if title:
7 ${title}
8 %else:
9 ${caller.title()}
10 %endif
11 </h3>
5 </div>
12 </div>
13 %endif
6 <div class="panel-body">
14 <div class="panel-body">
7 ${caller.body()}
15 ${caller.body()}
8 </div>
16 </div>
9 </div>
17 </div>
10 </%def>
18 </%def>
@@ -1,78 +1,192 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import time
21 import pytest
22 import pytest
22 import requests
23 from mock import Mock, patch
24
23
25 from rhodecode import events
24 from rhodecode import events
25 from rhodecode.tests.fixture import Fixture
26 from rhodecode.model.db import Session, Integration
26 from rhodecode.model.db import Session, Integration
27 from rhodecode.model.integration import IntegrationModel
27 from rhodecode.model.integration import IntegrationModel
28 from rhodecode.integrations.types.base import IntegrationTypeBase
28 from rhodecode.integrations.types.base import IntegrationTypeBase
29
29
30
30
31 class TestIntegrationType(IntegrationTypeBase):
31 class TestDeleteScopesDeletesIntegrations(object):
32 """ Test integration type class """
32 def test_delete_repo_with_integration_deletes_integration(self,
33
33 repo_integration_stub):
34 key = 'test-integration'
34 Session().delete(repo_integration_stub.repo)
35 display_name = 'Test integration type'
35 Session().commit()
36 Session().expire_all()
37 integration = Integration.get(repo_integration_stub.integration_id)
38 assert integration is None
36
39
37 def __init__(self, settings):
38 super(IntegrationTypeBase, self).__init__(settings)
39 self.sent_events = [] # for testing
40
40
41 def send_event(self, event):
41 def test_delete_repo_group_with_integration_deletes_integration(self,
42 self.sent_events.append(event)
42 repogroup_integration_stub):
43 Session().delete(repogroup_integration_stub.repo_group)
44 Session().commit()
45 Session().expire_all()
46 integration = Integration.get(repogroup_integration_stub.integration_id)
47 assert integration is None
43
48
44
49
45 @pytest.fixture
50 @pytest.fixture
46 def repo_integration_stub(request, repo_stub):
51 def integration_repos(request, StubIntegrationType, stub_integration_settings):
47 settings = {'test_key': 'test_value'}
52 """
48 integration = IntegrationModel().create(
53 Create repositories and integrations for testing, and destroy them after
49 TestIntegrationType, settings=settings, repo=repo_stub, enabled=True,
54 """
50 name='test repo integration')
55 fixture = Fixture()
56
57 repo_group_1_id = 'int_test_repo_group_1_%s' % time.time()
58 repo_group_1 = fixture.create_repo_group(repo_group_1_id)
59 repo_group_2_id = 'int_test_repo_group_2_%s' % time.time()
60 repo_group_2 = fixture.create_repo_group(repo_group_2_id)
61
62 repo_1_id = 'int_test_repo_1_%s' % time.time()
63 repo_1 = fixture.create_repo(repo_1_id, repo_group=repo_group_1)
64 repo_2_id = 'int_test_repo_2_%s' % time.time()
65 repo_2 = fixture.create_repo(repo_2_id, repo_group=repo_group_2)
66
67 root_repo_id = 'int_test_repo_root_%s' % time.time()
68 root_repo = fixture.create_repo(root_repo_id)
51
69
52 @request.addfinalizer
70 integration_global = IntegrationModel().create(
53 def cleanup():
71 StubIntegrationType, settings=stub_integration_settings,
54 IntegrationModel().delete(integration)
72 enabled=True, name='test global integration', scope='global')
73 integration_root_repos = IntegrationModel().create(
74 StubIntegrationType, settings=stub_integration_settings,
75 enabled=True, name='test root repos integration', scope='root_repos')
76 integration_repo_1 = IntegrationModel().create(
77 StubIntegrationType, settings=stub_integration_settings,
78 enabled=True, name='test repo 1 integration', scope=repo_1)
79 integration_repo_group_1 = IntegrationModel().create(
80 StubIntegrationType, settings=stub_integration_settings,
81 enabled=True, name='test repo group 1 integration', scope=repo_group_1)
82 integration_repo_2 = IntegrationModel().create(
83 StubIntegrationType, settings=stub_integration_settings,
84 enabled=True, name='test repo 2 integration', scope=repo_2)
85 integration_repo_group_2 = IntegrationModel().create(
86 StubIntegrationType, settings=stub_integration_settings,
87 enabled=True, name='test repo group 2 integration', scope=repo_group_2)
88
89 Session().commit()
55
90
56 return integration
91 def _cleanup():
92 Session().delete(integration_global)
93 Session().delete(integration_root_repos)
94 Session().delete(integration_repo_1)
95 Session().delete(integration_repo_group_1)
96 Session().delete(integration_repo_2)
97 Session().delete(integration_repo_group_2)
98 fixture.destroy_repo(root_repo)
99 fixture.destroy_repo(repo_1)
100 fixture.destroy_repo(repo_2)
101 fixture.destroy_repo_group(repo_group_1)
102 fixture.destroy_repo_group(repo_group_2)
103
104 request.addfinalizer(_cleanup)
105
106 return {
107 'repos': {
108 'repo_1': repo_1,
109 'repo_2': repo_2,
110 'root_repo': root_repo,
111 },
112 'repo_groups': {
113 'repo_group_1': repo_group_1,
114 'repo_group_2': repo_group_2,
115 },
116 'integrations': {
117 'global': integration_global,
118 'root_repos': integration_root_repos,
119 'repo_1': integration_repo_1,
120 'repo_2': integration_repo_2,
121 'repo_group_1': integration_repo_group_1,
122 'repo_group_2': integration_repo_group_2,
123 }
124 }
57
125
58
126
59 @pytest.fixture
127 def test_enabled_integration_repo_scopes(integration_repos):
60 def global_integration_stub(request):
128 integrations = integration_repos['integrations']
61 settings = {'test_key': 'test_value'}
129 repos = integration_repos['repos']
62 integration = IntegrationModel().create(
130
63 TestIntegrationType, settings=settings, enabled=True,
131 triggered_integrations = IntegrationModel().get_for_event(
64 name='test global integration')
132 events.RepoEvent(repos['root_repo']))
133
134 assert triggered_integrations == [
135 integrations['global'],
136 integrations['root_repos']
137 ]
138
139
140 triggered_integrations = IntegrationModel().get_for_event(
141 events.RepoEvent(repos['repo_1']))
65
142
66 @request.addfinalizer
143 assert triggered_integrations == [
67 def cleanup():
144 integrations['global'],
68 IntegrationModel().delete(integration)
145 integrations['repo_1'],
146 integrations['repo_group_1']
147 ]
148
69
149
70 return integration
150 triggered_integrations = IntegrationModel().get_for_event(
151 events.RepoEvent(repos['repo_2']))
152
153 assert triggered_integrations == [
154 integrations['global'],
155 integrations['repo_2'],
156 integrations['repo_group_2'],
157 ]
71
158
72
159
73 def test_delete_repo_with_integration_deletes_integration(repo_integration_stub):
160 def test_disabled_integration_repo_scopes(integration_repos):
74 Session().delete(repo_integration_stub.repo)
161 integrations = integration_repos['integrations']
162 repos = integration_repos['repos']
163
164 for integration in integrations.values():
165 integration.enabled = False
75 Session().commit()
166 Session().commit()
76 Session().expire_all()
167
77 assert Integration.get(repo_integration_stub.integration_id) is None
168 triggered_integrations = IntegrationModel().get_for_event(
169 events.RepoEvent(repos['root_repo']))
170
171 assert triggered_integrations == []
172
173
174 triggered_integrations = IntegrationModel().get_for_event(
175 events.RepoEvent(repos['repo_1']))
176
177 assert triggered_integrations == []
178
78
179
180 triggered_integrations = IntegrationModel().get_for_event(
181 events.RepoEvent(repos['repo_2']))
182
183 assert triggered_integrations == []
184
185
186 def test_enabled_non_repo_integrations(integration_repos):
187 integrations = integration_repos['integrations']
188
189 triggered_integrations = IntegrationModel().get_for_event(
190 events.UserPreCreate({}))
191
192 assert triggered_integrations == [integrations['global']]
@@ -1,1638 +1,1740 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2016 RhodeCode GmbH
3 # Copyright (C) 2010-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import collections
21 import collections
22 import datetime
22 import datetime
23 import hashlib
23 import hashlib
24 import os
24 import os
25 import re
25 import re
26 import pprint
26 import pprint
27 import shutil
27 import shutil
28 import socket
28 import socket
29 import subprocess
29 import subprocess
30 import time
30 import time
31 import uuid
31 import uuid
32
32
33 import mock
33 import mock
34 import pyramid.testing
34 import pyramid.testing
35 import pytest
35 import pytest
36 import colander
36 import requests
37 import requests
37 from webtest.app import TestApp
38 from webtest.app import TestApp
38
39
39 import rhodecode
40 import rhodecode
40 from rhodecode.model.changeset_status import ChangesetStatusModel
41 from rhodecode.model.changeset_status import ChangesetStatusModel
41 from rhodecode.model.comment import ChangesetCommentsModel
42 from rhodecode.model.comment import ChangesetCommentsModel
42 from rhodecode.model.db import (
43 from rhodecode.model.db import (
43 PullRequest, Repository, RhodeCodeSetting, ChangesetStatus, RepoGroup,
44 PullRequest, Repository, RhodeCodeSetting, ChangesetStatus, RepoGroup,
44 UserGroup, RepoRhodeCodeUi, RepoRhodeCodeSetting, RhodeCodeUi)
45 UserGroup, RepoRhodeCodeUi, RepoRhodeCodeSetting, RhodeCodeUi, Integration)
45 from rhodecode.model.meta import Session
46 from rhodecode.model.meta import Session
46 from rhodecode.model.pull_request import PullRequestModel
47 from rhodecode.model.pull_request import PullRequestModel
47 from rhodecode.model.repo import RepoModel
48 from rhodecode.model.repo import RepoModel
48 from rhodecode.model.repo_group import RepoGroupModel
49 from rhodecode.model.repo_group import RepoGroupModel
49 from rhodecode.model.user import UserModel
50 from rhodecode.model.user import UserModel
50 from rhodecode.model.settings import VcsSettingsModel
51 from rhodecode.model.settings import VcsSettingsModel
51 from rhodecode.model.user_group import UserGroupModel
52 from rhodecode.model.user_group import UserGroupModel
53 from rhodecode.model.integration import IntegrationModel
54 from rhodecode.integrations import integration_type_registry
55 from rhodecode.integrations.types.base import IntegrationTypeBase
52 from rhodecode.lib.utils import repo2db_mapper
56 from rhodecode.lib.utils import repo2db_mapper
53 from rhodecode.lib.vcs import create_vcsserver_proxy
57 from rhodecode.lib.vcs import create_vcsserver_proxy
54 from rhodecode.lib.vcs.backends import get_backend
58 from rhodecode.lib.vcs.backends import get_backend
55 from rhodecode.lib.vcs.nodes import FileNode
59 from rhodecode.lib.vcs.nodes import FileNode
56 from rhodecode.tests import (
60 from rhodecode.tests import (
57 login_user_session, get_new_dir, utils, TESTS_TMP_PATH,
61 login_user_session, get_new_dir, utils, TESTS_TMP_PATH,
58 TEST_USER_ADMIN_LOGIN, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR2_LOGIN,
62 TEST_USER_ADMIN_LOGIN, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR2_LOGIN,
59 TEST_USER_REGULAR_PASS)
63 TEST_USER_REGULAR_PASS)
60 from rhodecode.tests.fixture import Fixture
64 from rhodecode.tests.fixture import Fixture
61
65
62
66
63 def _split_comma(value):
67 def _split_comma(value):
64 return value.split(',')
68 return value.split(',')
65
69
66
70
67 def pytest_addoption(parser):
71 def pytest_addoption(parser):
68 parser.addoption(
72 parser.addoption(
69 '--keep-tmp-path', action='store_true',
73 '--keep-tmp-path', action='store_true',
70 help="Keep the test temporary directories")
74 help="Keep the test temporary directories")
71 parser.addoption(
75 parser.addoption(
72 '--backends', action='store', type=_split_comma,
76 '--backends', action='store', type=_split_comma,
73 default=['git', 'hg', 'svn'],
77 default=['git', 'hg', 'svn'],
74 help="Select which backends to test for backend specific tests.")
78 help="Select which backends to test for backend specific tests.")
75 parser.addoption(
79 parser.addoption(
76 '--dbs', action='store', type=_split_comma,
80 '--dbs', action='store', type=_split_comma,
77 default=['sqlite'],
81 default=['sqlite'],
78 help="Select which database to test for database specific tests. "
82 help="Select which database to test for database specific tests. "
79 "Possible options are sqlite,postgres,mysql")
83 "Possible options are sqlite,postgres,mysql")
80 parser.addoption(
84 parser.addoption(
81 '--appenlight', '--ae', action='store_true',
85 '--appenlight', '--ae', action='store_true',
82 help="Track statistics in appenlight.")
86 help="Track statistics in appenlight.")
83 parser.addoption(
87 parser.addoption(
84 '--appenlight-api-key', '--ae-key',
88 '--appenlight-api-key', '--ae-key',
85 help="API key for Appenlight.")
89 help="API key for Appenlight.")
86 parser.addoption(
90 parser.addoption(
87 '--appenlight-url', '--ae-url',
91 '--appenlight-url', '--ae-url',
88 default="https://ae.rhodecode.com",
92 default="https://ae.rhodecode.com",
89 help="Appenlight service URL, defaults to https://ae.rhodecode.com")
93 help="Appenlight service URL, defaults to https://ae.rhodecode.com")
90 parser.addoption(
94 parser.addoption(
91 '--sqlite-connection-string', action='store',
95 '--sqlite-connection-string', action='store',
92 default='', help="Connection string for the dbs tests with SQLite")
96 default='', help="Connection string for the dbs tests with SQLite")
93 parser.addoption(
97 parser.addoption(
94 '--postgres-connection-string', action='store',
98 '--postgres-connection-string', action='store',
95 default='', help="Connection string for the dbs tests with Postgres")
99 default='', help="Connection string for the dbs tests with Postgres")
96 parser.addoption(
100 parser.addoption(
97 '--mysql-connection-string', action='store',
101 '--mysql-connection-string', action='store',
98 default='', help="Connection string for the dbs tests with MySQL")
102 default='', help="Connection string for the dbs tests with MySQL")
99 parser.addoption(
103 parser.addoption(
100 '--repeat', type=int, default=100,
104 '--repeat', type=int, default=100,
101 help="Number of repetitions in performance tests.")
105 help="Number of repetitions in performance tests.")
102
106
103
107
104 def pytest_configure(config):
108 def pytest_configure(config):
105 # Appy the kombu patch early on, needed for test discovery on Python 2.7.11
109 # Appy the kombu patch early on, needed for test discovery on Python 2.7.11
106 from rhodecode.config import patches
110 from rhodecode.config import patches
107 patches.kombu_1_5_1_python_2_7_11()
111 patches.kombu_1_5_1_python_2_7_11()
108
112
109
113
110 def pytest_collection_modifyitems(session, config, items):
114 def pytest_collection_modifyitems(session, config, items):
111 # nottest marked, compare nose, used for transition from nose to pytest
115 # nottest marked, compare nose, used for transition from nose to pytest
112 remaining = [
116 remaining = [
113 i for i in items if getattr(i.obj, '__test__', True)]
117 i for i in items if getattr(i.obj, '__test__', True)]
114 items[:] = remaining
118 items[:] = remaining
115
119
116
120
117 def pytest_generate_tests(metafunc):
121 def pytest_generate_tests(metafunc):
118 # Support test generation based on --backend parameter
122 # Support test generation based on --backend parameter
119 if 'backend_alias' in metafunc.fixturenames:
123 if 'backend_alias' in metafunc.fixturenames:
120 backends = get_backends_from_metafunc(metafunc)
124 backends = get_backends_from_metafunc(metafunc)
121 scope = None
125 scope = None
122 if not backends:
126 if not backends:
123 pytest.skip("Not enabled for any of selected backends")
127 pytest.skip("Not enabled for any of selected backends")
124 metafunc.parametrize('backend_alias', backends, scope=scope)
128 metafunc.parametrize('backend_alias', backends, scope=scope)
125 elif hasattr(metafunc.function, 'backends'):
129 elif hasattr(metafunc.function, 'backends'):
126 backends = get_backends_from_metafunc(metafunc)
130 backends = get_backends_from_metafunc(metafunc)
127 if not backends:
131 if not backends:
128 pytest.skip("Not enabled for any of selected backends")
132 pytest.skip("Not enabled for any of selected backends")
129
133
130
134
131 def get_backends_from_metafunc(metafunc):
135 def get_backends_from_metafunc(metafunc):
132 requested_backends = set(metafunc.config.getoption('--backends'))
136 requested_backends = set(metafunc.config.getoption('--backends'))
133 if hasattr(metafunc.function, 'backends'):
137 if hasattr(metafunc.function, 'backends'):
134 # Supported backends by this test function, created from
138 # Supported backends by this test function, created from
135 # pytest.mark.backends
139 # pytest.mark.backends
136 backends = metafunc.function.backends.args
140 backends = metafunc.function.backends.args
137 elif hasattr(metafunc.cls, 'backend_alias'):
141 elif hasattr(metafunc.cls, 'backend_alias'):
138 # Support class attribute "backend_alias", this is mainly
142 # Support class attribute "backend_alias", this is mainly
139 # for legacy reasons for tests not yet using pytest.mark.backends
143 # for legacy reasons for tests not yet using pytest.mark.backends
140 backends = [metafunc.cls.backend_alias]
144 backends = [metafunc.cls.backend_alias]
141 else:
145 else:
142 backends = metafunc.config.getoption('--backends')
146 backends = metafunc.config.getoption('--backends')
143 return requested_backends.intersection(backends)
147 return requested_backends.intersection(backends)
144
148
145
149
146 @pytest.fixture(scope='session', autouse=True)
150 @pytest.fixture(scope='session', autouse=True)
147 def activate_example_rcextensions(request):
151 def activate_example_rcextensions(request):
148 """
152 """
149 Patch in an example rcextensions module which verifies passed in kwargs.
153 Patch in an example rcextensions module which verifies passed in kwargs.
150 """
154 """
151 from rhodecode.tests.other import example_rcextensions
155 from rhodecode.tests.other import example_rcextensions
152
156
153 old_extensions = rhodecode.EXTENSIONS
157 old_extensions = rhodecode.EXTENSIONS
154 rhodecode.EXTENSIONS = example_rcextensions
158 rhodecode.EXTENSIONS = example_rcextensions
155
159
156 @request.addfinalizer
160 @request.addfinalizer
157 def cleanup():
161 def cleanup():
158 rhodecode.EXTENSIONS = old_extensions
162 rhodecode.EXTENSIONS = old_extensions
159
163
160
164
161 @pytest.fixture
165 @pytest.fixture
162 def capture_rcextensions():
166 def capture_rcextensions():
163 """
167 """
164 Returns the recorded calls to entry points in rcextensions.
168 Returns the recorded calls to entry points in rcextensions.
165 """
169 """
166 calls = rhodecode.EXTENSIONS.calls
170 calls = rhodecode.EXTENSIONS.calls
167 calls.clear()
171 calls.clear()
168 # Note: At this moment, it is still the empty dict, but that will
172 # Note: At this moment, it is still the empty dict, but that will
169 # be filled during the test run and since it is a reference this
173 # be filled during the test run and since it is a reference this
170 # is enough to make it work.
174 # is enough to make it work.
171 return calls
175 return calls
172
176
173
177
174 @pytest.fixture(scope='session')
178 @pytest.fixture(scope='session')
175 def http_environ_session():
179 def http_environ_session():
176 """
180 """
177 Allow to use "http_environ" in session scope.
181 Allow to use "http_environ" in session scope.
178 """
182 """
179 return http_environ(
183 return http_environ(
180 http_host_stub=http_host_stub())
184 http_host_stub=http_host_stub())
181
185
182
186
183 @pytest.fixture
187 @pytest.fixture
184 def http_host_stub():
188 def http_host_stub():
185 """
189 """
186 Value of HTTP_HOST in the test run.
190 Value of HTTP_HOST in the test run.
187 """
191 """
188 return 'test.example.com:80'
192 return 'test.example.com:80'
189
193
190
194
191 @pytest.fixture
195 @pytest.fixture
192 def http_environ(http_host_stub):
196 def http_environ(http_host_stub):
193 """
197 """
194 HTTP extra environ keys.
198 HTTP extra environ keys.
195
199
196 User by the test application and as well for setting up the pylons
200 User by the test application and as well for setting up the pylons
197 environment. In the case of the fixture "app" it should be possible
201 environment. In the case of the fixture "app" it should be possible
198 to override this for a specific test case.
202 to override this for a specific test case.
199 """
203 """
200 return {
204 return {
201 'SERVER_NAME': http_host_stub.split(':')[0],
205 'SERVER_NAME': http_host_stub.split(':')[0],
202 'SERVER_PORT': http_host_stub.split(':')[1],
206 'SERVER_PORT': http_host_stub.split(':')[1],
203 'HTTP_HOST': http_host_stub,
207 'HTTP_HOST': http_host_stub,
204 }
208 }
205
209
206
210
207 @pytest.fixture(scope='function')
211 @pytest.fixture(scope='function')
208 def app(request, pylonsapp, http_environ):
212 def app(request, pylonsapp, http_environ):
209 app = TestApp(
213 app = TestApp(
210 pylonsapp,
214 pylonsapp,
211 extra_environ=http_environ)
215 extra_environ=http_environ)
212 if request.cls:
216 if request.cls:
213 request.cls.app = app
217 request.cls.app = app
214 return app
218 return app
215
219
216
220
217 @pytest.fixture()
221 @pytest.fixture()
218 def app_settings(pylonsapp, pylons_config):
222 def app_settings(pylonsapp, pylons_config):
219 """
223 """
220 Settings dictionary used to create the app.
224 Settings dictionary used to create the app.
221
225
222 Parses the ini file and passes the result through the sanitize and apply
226 Parses the ini file and passes the result through the sanitize and apply
223 defaults mechanism in `rhodecode.config.middleware`.
227 defaults mechanism in `rhodecode.config.middleware`.
224 """
228 """
225 from paste.deploy.loadwsgi import loadcontext, APP
229 from paste.deploy.loadwsgi import loadcontext, APP
226 from rhodecode.config.middleware import (
230 from rhodecode.config.middleware import (
227 sanitize_settings_and_apply_defaults)
231 sanitize_settings_and_apply_defaults)
228 context = loadcontext(APP, 'config:' + pylons_config)
232 context = loadcontext(APP, 'config:' + pylons_config)
229 settings = sanitize_settings_and_apply_defaults(context.config())
233 settings = sanitize_settings_and_apply_defaults(context.config())
230 return settings
234 return settings
231
235
232
236
233 LoginData = collections.namedtuple('LoginData', ('csrf_token', 'user'))
237 LoginData = collections.namedtuple('LoginData', ('csrf_token', 'user'))
234
238
235
239
236 def _autologin_user(app, *args):
240 def _autologin_user(app, *args):
237 session = login_user_session(app, *args)
241 session = login_user_session(app, *args)
238 csrf_token = rhodecode.lib.auth.get_csrf_token(session)
242 csrf_token = rhodecode.lib.auth.get_csrf_token(session)
239 return LoginData(csrf_token, session['rhodecode_user'])
243 return LoginData(csrf_token, session['rhodecode_user'])
240
244
241
245
242 @pytest.fixture
246 @pytest.fixture
243 def autologin_user(app):
247 def autologin_user(app):
244 """
248 """
245 Utility fixture which makes sure that the admin user is logged in
249 Utility fixture which makes sure that the admin user is logged in
246 """
250 """
247 return _autologin_user(app)
251 return _autologin_user(app)
248
252
249
253
250 @pytest.fixture
254 @pytest.fixture
251 def autologin_regular_user(app):
255 def autologin_regular_user(app):
252 """
256 """
253 Utility fixture which makes sure that the regular user is logged in
257 Utility fixture which makes sure that the regular user is logged in
254 """
258 """
255 return _autologin_user(
259 return _autologin_user(
256 app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS)
260 app, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS)
257
261
258
262
259 @pytest.fixture(scope='function')
263 @pytest.fixture(scope='function')
260 def csrf_token(request, autologin_user):
264 def csrf_token(request, autologin_user):
261 return autologin_user.csrf_token
265 return autologin_user.csrf_token
262
266
263
267
264 @pytest.fixture(scope='function')
268 @pytest.fixture(scope='function')
265 def xhr_header(request):
269 def xhr_header(request):
266 return {'HTTP_X_REQUESTED_WITH': 'XMLHttpRequest'}
270 return {'HTTP_X_REQUESTED_WITH': 'XMLHttpRequest'}
267
271
268
272
269 @pytest.fixture
273 @pytest.fixture
270 def real_crypto_backend(monkeypatch):
274 def real_crypto_backend(monkeypatch):
271 """
275 """
272 Switch the production crypto backend on for this test.
276 Switch the production crypto backend on for this test.
273
277
274 During the test run the crypto backend is replaced with a faster
278 During the test run the crypto backend is replaced with a faster
275 implementation based on the MD5 algorithm.
279 implementation based on the MD5 algorithm.
276 """
280 """
277 monkeypatch.setattr(rhodecode, 'is_test', False)
281 monkeypatch.setattr(rhodecode, 'is_test', False)
278
282
279
283
280 @pytest.fixture(scope='class')
284 @pytest.fixture(scope='class')
281 def index_location(request, pylonsapp):
285 def index_location(request, pylonsapp):
282 index_location = pylonsapp.config['app_conf']['search.location']
286 index_location = pylonsapp.config['app_conf']['search.location']
283 if request.cls:
287 if request.cls:
284 request.cls.index_location = index_location
288 request.cls.index_location = index_location
285 return index_location
289 return index_location
286
290
287
291
288 @pytest.fixture(scope='session', autouse=True)
292 @pytest.fixture(scope='session', autouse=True)
289 def tests_tmp_path(request):
293 def tests_tmp_path(request):
290 """
294 """
291 Create temporary directory to be used during the test session.
295 Create temporary directory to be used during the test session.
292 """
296 """
293 if not os.path.exists(TESTS_TMP_PATH):
297 if not os.path.exists(TESTS_TMP_PATH):
294 os.makedirs(TESTS_TMP_PATH)
298 os.makedirs(TESTS_TMP_PATH)
295
299
296 if not request.config.getoption('--keep-tmp-path'):
300 if not request.config.getoption('--keep-tmp-path'):
297 @request.addfinalizer
301 @request.addfinalizer
298 def remove_tmp_path():
302 def remove_tmp_path():
299 shutil.rmtree(TESTS_TMP_PATH)
303 shutil.rmtree(TESTS_TMP_PATH)
300
304
301 return TESTS_TMP_PATH
305 return TESTS_TMP_PATH
302
306
303
307
304 @pytest.fixture(scope='session', autouse=True)
308 @pytest.fixture(scope='session', autouse=True)
305 def patch_pyro_request_scope_proxy_factory(request):
309 def patch_pyro_request_scope_proxy_factory(request):
306 """
310 """
307 Patch the pyro proxy factory to always use the same dummy request object
311 Patch the pyro proxy factory to always use the same dummy request object
308 when under test. This will return the same pyro proxy on every call.
312 when under test. This will return the same pyro proxy on every call.
309 """
313 """
310 dummy_request = pyramid.testing.DummyRequest()
314 dummy_request = pyramid.testing.DummyRequest()
311
315
312 def mocked_call(self, request=None):
316 def mocked_call(self, request=None):
313 return self.getProxy(request=dummy_request)
317 return self.getProxy(request=dummy_request)
314
318
315 patcher = mock.patch(
319 patcher = mock.patch(
316 'rhodecode.lib.vcs.client.RequestScopeProxyFactory.__call__',
320 'rhodecode.lib.vcs.client.RequestScopeProxyFactory.__call__',
317 new=mocked_call)
321 new=mocked_call)
318 patcher.start()
322 patcher.start()
319
323
320 @request.addfinalizer
324 @request.addfinalizer
321 def undo_patching():
325 def undo_patching():
322 patcher.stop()
326 patcher.stop()
323
327
324
328
325 @pytest.fixture
329 @pytest.fixture
326 def test_repo_group(request):
330 def test_repo_group(request):
327 """
331 """
328 Create a temporary repository group, and destroy it after
332 Create a temporary repository group, and destroy it after
329 usage automatically
333 usage automatically
330 """
334 """
331 fixture = Fixture()
335 fixture = Fixture()
332 repogroupid = 'test_repo_group_%s' % int(time.time())
336 repogroupid = 'test_repo_group_%s' % int(time.time())
333 repo_group = fixture.create_repo_group(repogroupid)
337 repo_group = fixture.create_repo_group(repogroupid)
334
338
335 def _cleanup():
339 def _cleanup():
336 fixture.destroy_repo_group(repogroupid)
340 fixture.destroy_repo_group(repogroupid)
337
341
338 request.addfinalizer(_cleanup)
342 request.addfinalizer(_cleanup)
339 return repo_group
343 return repo_group
340
344
341
345
342 @pytest.fixture
346 @pytest.fixture
343 def test_user_group(request):
347 def test_user_group(request):
344 """
348 """
345 Create a temporary user group, and destroy it after
349 Create a temporary user group, and destroy it after
346 usage automatically
350 usage automatically
347 """
351 """
348 fixture = Fixture()
352 fixture = Fixture()
349 usergroupid = 'test_user_group_%s' % int(time.time())
353 usergroupid = 'test_user_group_%s' % int(time.time())
350 user_group = fixture.create_user_group(usergroupid)
354 user_group = fixture.create_user_group(usergroupid)
351
355
352 def _cleanup():
356 def _cleanup():
353 fixture.destroy_user_group(user_group)
357 fixture.destroy_user_group(user_group)
354
358
355 request.addfinalizer(_cleanup)
359 request.addfinalizer(_cleanup)
356 return user_group
360 return user_group
357
361
358
362
359 @pytest.fixture(scope='session')
363 @pytest.fixture(scope='session')
360 def test_repo(request):
364 def test_repo(request):
361 container = TestRepoContainer()
365 container = TestRepoContainer()
362 request.addfinalizer(container._cleanup)
366 request.addfinalizer(container._cleanup)
363 return container
367 return container
364
368
365
369
366 class TestRepoContainer(object):
370 class TestRepoContainer(object):
367 """
371 """
368 Container for test repositories which are used read only.
372 Container for test repositories which are used read only.
369
373
370 Repositories will be created on demand and re-used during the lifetime
374 Repositories will be created on demand and re-used during the lifetime
371 of this object.
375 of this object.
372
376
373 Usage to get the svn test repository "minimal"::
377 Usage to get the svn test repository "minimal"::
374
378
375 test_repo = TestContainer()
379 test_repo = TestContainer()
376 repo = test_repo('minimal', 'svn')
380 repo = test_repo('minimal', 'svn')
377
381
378 """
382 """
379
383
380 dump_extractors = {
384 dump_extractors = {
381 'git': utils.extract_git_repo_from_dump,
385 'git': utils.extract_git_repo_from_dump,
382 'hg': utils.extract_hg_repo_from_dump,
386 'hg': utils.extract_hg_repo_from_dump,
383 'svn': utils.extract_svn_repo_from_dump,
387 'svn': utils.extract_svn_repo_from_dump,
384 }
388 }
385
389
386 def __init__(self):
390 def __init__(self):
387 self._cleanup_repos = []
391 self._cleanup_repos = []
388 self._fixture = Fixture()
392 self._fixture = Fixture()
389 self._repos = {}
393 self._repos = {}
390
394
391 def __call__(self, dump_name, backend_alias):
395 def __call__(self, dump_name, backend_alias):
392 key = (dump_name, backend_alias)
396 key = (dump_name, backend_alias)
393 if key not in self._repos:
397 if key not in self._repos:
394 repo = self._create_repo(dump_name, backend_alias)
398 repo = self._create_repo(dump_name, backend_alias)
395 self._repos[key] = repo.repo_id
399 self._repos[key] = repo.repo_id
396 return Repository.get(self._repos[key])
400 return Repository.get(self._repos[key])
397
401
398 def _create_repo(self, dump_name, backend_alias):
402 def _create_repo(self, dump_name, backend_alias):
399 repo_name = '%s-%s' % (backend_alias, dump_name)
403 repo_name = '%s-%s' % (backend_alias, dump_name)
400 backend_class = get_backend(backend_alias)
404 backend_class = get_backend(backend_alias)
401 dump_extractor = self.dump_extractors[backend_alias]
405 dump_extractor = self.dump_extractors[backend_alias]
402 repo_path = dump_extractor(dump_name, repo_name)
406 repo_path = dump_extractor(dump_name, repo_name)
403 vcs_repo = backend_class(repo_path)
407 vcs_repo = backend_class(repo_path)
404 repo2db_mapper({repo_name: vcs_repo})
408 repo2db_mapper({repo_name: vcs_repo})
405 repo = RepoModel().get_by_repo_name(repo_name)
409 repo = RepoModel().get_by_repo_name(repo_name)
406 self._cleanup_repos.append(repo_name)
410 self._cleanup_repos.append(repo_name)
407 return repo
411 return repo
408
412
409 def _cleanup(self):
413 def _cleanup(self):
410 for repo_name in reversed(self._cleanup_repos):
414 for repo_name in reversed(self._cleanup_repos):
411 self._fixture.destroy_repo(repo_name)
415 self._fixture.destroy_repo(repo_name)
412
416
413
417
414 @pytest.fixture
418 @pytest.fixture
415 def backend(request, backend_alias, pylonsapp, test_repo):
419 def backend(request, backend_alias, pylonsapp, test_repo):
416 """
420 """
417 Parametrized fixture which represents a single backend implementation.
421 Parametrized fixture which represents a single backend implementation.
418
422
419 It respects the option `--backends` to focus the test run on specific
423 It respects the option `--backends` to focus the test run on specific
420 backend implementations.
424 backend implementations.
421
425
422 It also supports `pytest.mark.xfail_backends` to mark tests as failing
426 It also supports `pytest.mark.xfail_backends` to mark tests as failing
423 for specific backends. This is intended as a utility for incremental
427 for specific backends. This is intended as a utility for incremental
424 development of a new backend implementation.
428 development of a new backend implementation.
425 """
429 """
426 if backend_alias not in request.config.getoption('--backends'):
430 if backend_alias not in request.config.getoption('--backends'):
427 pytest.skip("Backend %s not selected." % (backend_alias, ))
431 pytest.skip("Backend %s not selected." % (backend_alias, ))
428
432
429 utils.check_xfail_backends(request.node, backend_alias)
433 utils.check_xfail_backends(request.node, backend_alias)
430 utils.check_skip_backends(request.node, backend_alias)
434 utils.check_skip_backends(request.node, backend_alias)
431
435
432 repo_name = 'vcs_test_%s' % (backend_alias, )
436 repo_name = 'vcs_test_%s' % (backend_alias, )
433 backend = Backend(
437 backend = Backend(
434 alias=backend_alias,
438 alias=backend_alias,
435 repo_name=repo_name,
439 repo_name=repo_name,
436 test_name=request.node.name,
440 test_name=request.node.name,
437 test_repo_container=test_repo)
441 test_repo_container=test_repo)
438 request.addfinalizer(backend.cleanup)
442 request.addfinalizer(backend.cleanup)
439 return backend
443 return backend
440
444
441
445
442 @pytest.fixture
446 @pytest.fixture
443 def backend_git(request, pylonsapp, test_repo):
447 def backend_git(request, pylonsapp, test_repo):
444 return backend(request, 'git', pylonsapp, test_repo)
448 return backend(request, 'git', pylonsapp, test_repo)
445
449
446
450
447 @pytest.fixture
451 @pytest.fixture
448 def backend_hg(request, pylonsapp, test_repo):
452 def backend_hg(request, pylonsapp, test_repo):
449 return backend(request, 'hg', pylonsapp, test_repo)
453 return backend(request, 'hg', pylonsapp, test_repo)
450
454
451
455
452 @pytest.fixture
456 @pytest.fixture
453 def backend_svn(request, pylonsapp, test_repo):
457 def backend_svn(request, pylonsapp, test_repo):
454 return backend(request, 'svn', pylonsapp, test_repo)
458 return backend(request, 'svn', pylonsapp, test_repo)
455
459
456
460
457 @pytest.fixture
461 @pytest.fixture
458 def backend_random(backend_git):
462 def backend_random(backend_git):
459 """
463 """
460 Use this to express that your tests need "a backend.
464 Use this to express that your tests need "a backend.
461
465
462 A few of our tests need a backend, so that we can run the code. This
466 A few of our tests need a backend, so that we can run the code. This
463 fixture is intended to be used for such cases. It will pick one of the
467 fixture is intended to be used for such cases. It will pick one of the
464 backends and run the tests.
468 backends and run the tests.
465
469
466 The fixture `backend` would run the test multiple times for each
470 The fixture `backend` would run the test multiple times for each
467 available backend which is a pure waste of time if the test is
471 available backend which is a pure waste of time if the test is
468 independent of the backend type.
472 independent of the backend type.
469 """
473 """
470 # TODO: johbo: Change this to pick a random backend
474 # TODO: johbo: Change this to pick a random backend
471 return backend_git
475 return backend_git
472
476
473
477
474 @pytest.fixture
478 @pytest.fixture
475 def backend_stub(backend_git):
479 def backend_stub(backend_git):
476 """
480 """
477 Use this to express that your tests need a backend stub
481 Use this to express that your tests need a backend stub
478
482
479 TODO: mikhail: Implement a real stub logic instead of returning
483 TODO: mikhail: Implement a real stub logic instead of returning
480 a git backend
484 a git backend
481 """
485 """
482 return backend_git
486 return backend_git
483
487
484
488
485 @pytest.fixture
489 @pytest.fixture
486 def repo_stub(backend_stub):
490 def repo_stub(backend_stub):
487 """
491 """
488 Use this to express that your tests need a repository stub
492 Use this to express that your tests need a repository stub
489 """
493 """
490 return backend_stub.create_repo()
494 return backend_stub.create_repo()
491
495
492
496
493 class Backend(object):
497 class Backend(object):
494 """
498 """
495 Represents the test configuration for one supported backend
499 Represents the test configuration for one supported backend
496
500
497 Provides easy access to different test repositories based on
501 Provides easy access to different test repositories based on
498 `__getitem__`. Such repositories will only be created once per test
502 `__getitem__`. Such repositories will only be created once per test
499 session.
503 session.
500 """
504 """
501
505
502 invalid_repo_name = re.compile(r'[^0-9a-zA-Z]+')
506 invalid_repo_name = re.compile(r'[^0-9a-zA-Z]+')
503 _master_repo = None
507 _master_repo = None
504 _commit_ids = {}
508 _commit_ids = {}
505
509
506 def __init__(self, alias, repo_name, test_name, test_repo_container):
510 def __init__(self, alias, repo_name, test_name, test_repo_container):
507 self.alias = alias
511 self.alias = alias
508 self.repo_name = repo_name
512 self.repo_name = repo_name
509 self._cleanup_repos = []
513 self._cleanup_repos = []
510 self._test_name = test_name
514 self._test_name = test_name
511 self._test_repo_container = test_repo_container
515 self._test_repo_container = test_repo_container
512 # TODO: johbo: Used as a delegate interim. Not yet sure if Backend or
516 # TODO: johbo: Used as a delegate interim. Not yet sure if Backend or
513 # Fixture will survive in the end.
517 # Fixture will survive in the end.
514 self._fixture = Fixture()
518 self._fixture = Fixture()
515
519
516 def __getitem__(self, key):
520 def __getitem__(self, key):
517 return self._test_repo_container(key, self.alias)
521 return self._test_repo_container(key, self.alias)
518
522
519 @property
523 @property
520 def repo(self):
524 def repo(self):
521 """
525 """
522 Returns the "current" repository. This is the vcs_test repo or the
526 Returns the "current" repository. This is the vcs_test repo or the
523 last repo which has been created with `create_repo`.
527 last repo which has been created with `create_repo`.
524 """
528 """
525 from rhodecode.model.db import Repository
529 from rhodecode.model.db import Repository
526 return Repository.get_by_repo_name(self.repo_name)
530 return Repository.get_by_repo_name(self.repo_name)
527
531
528 @property
532 @property
529 def default_branch_name(self):
533 def default_branch_name(self):
530 VcsRepository = get_backend(self.alias)
534 VcsRepository = get_backend(self.alias)
531 return VcsRepository.DEFAULT_BRANCH_NAME
535 return VcsRepository.DEFAULT_BRANCH_NAME
532
536
533 @property
537 @property
534 def default_head_id(self):
538 def default_head_id(self):
535 """
539 """
536 Returns the default head id of the underlying backend.
540 Returns the default head id of the underlying backend.
537
541
538 This will be the default branch name in case the backend does have a
542 This will be the default branch name in case the backend does have a
539 default branch. In the other cases it will point to a valid head
543 default branch. In the other cases it will point to a valid head
540 which can serve as the base to create a new commit on top of it.
544 which can serve as the base to create a new commit on top of it.
541 """
545 """
542 vcsrepo = self.repo.scm_instance()
546 vcsrepo = self.repo.scm_instance()
543 head_id = (
547 head_id = (
544 vcsrepo.DEFAULT_BRANCH_NAME or
548 vcsrepo.DEFAULT_BRANCH_NAME or
545 vcsrepo.commit_ids[-1])
549 vcsrepo.commit_ids[-1])
546 return head_id
550 return head_id
547
551
548 @property
552 @property
549 def commit_ids(self):
553 def commit_ids(self):
550 """
554 """
551 Returns the list of commits for the last created repository
555 Returns the list of commits for the last created repository
552 """
556 """
553 return self._commit_ids
557 return self._commit_ids
554
558
555 def create_master_repo(self, commits):
559 def create_master_repo(self, commits):
556 """
560 """
557 Create a repository and remember it as a template.
561 Create a repository and remember it as a template.
558
562
559 This allows to easily create derived repositories to construct
563 This allows to easily create derived repositories to construct
560 more complex scenarios for diff, compare and pull requests.
564 more complex scenarios for diff, compare and pull requests.
561
565
562 Returns a commit map which maps from commit message to raw_id.
566 Returns a commit map which maps from commit message to raw_id.
563 """
567 """
564 self._master_repo = self.create_repo(commits=commits)
568 self._master_repo = self.create_repo(commits=commits)
565 return self._commit_ids
569 return self._commit_ids
566
570
567 def create_repo(
571 def create_repo(
568 self, commits=None, number_of_commits=0, heads=None,
572 self, commits=None, number_of_commits=0, heads=None,
569 name_suffix=u'', **kwargs):
573 name_suffix=u'', **kwargs):
570 """
574 """
571 Create a repository and record it for later cleanup.
575 Create a repository and record it for later cleanup.
572
576
573 :param commits: Optional. A sequence of dict instances.
577 :param commits: Optional. A sequence of dict instances.
574 Will add a commit per entry to the new repository.
578 Will add a commit per entry to the new repository.
575 :param number_of_commits: Optional. If set to a number, this number of
579 :param number_of_commits: Optional. If set to a number, this number of
576 commits will be added to the new repository.
580 commits will be added to the new repository.
577 :param heads: Optional. Can be set to a sequence of of commit
581 :param heads: Optional. Can be set to a sequence of of commit
578 names which shall be pulled in from the master repository.
582 names which shall be pulled in from the master repository.
579
583
580 """
584 """
581 self.repo_name = self._next_repo_name() + name_suffix
585 self.repo_name = self._next_repo_name() + name_suffix
582 repo = self._fixture.create_repo(
586 repo = self._fixture.create_repo(
583 self.repo_name, repo_type=self.alias, **kwargs)
587 self.repo_name, repo_type=self.alias, **kwargs)
584 self._cleanup_repos.append(repo.repo_name)
588 self._cleanup_repos.append(repo.repo_name)
585
589
586 commits = commits or [
590 commits = commits or [
587 {'message': 'Commit %s of %s' % (x, self.repo_name)}
591 {'message': 'Commit %s of %s' % (x, self.repo_name)}
588 for x in xrange(number_of_commits)]
592 for x in xrange(number_of_commits)]
589 self._add_commits_to_repo(repo.scm_instance(), commits)
593 self._add_commits_to_repo(repo.scm_instance(), commits)
590 if heads:
594 if heads:
591 self.pull_heads(repo, heads)
595 self.pull_heads(repo, heads)
592
596
593 return repo
597 return repo
594
598
595 def pull_heads(self, repo, heads):
599 def pull_heads(self, repo, heads):
596 """
600 """
597 Make sure that repo contains all commits mentioned in `heads`
601 Make sure that repo contains all commits mentioned in `heads`
598 """
602 """
599 vcsmaster = self._master_repo.scm_instance()
603 vcsmaster = self._master_repo.scm_instance()
600 vcsrepo = repo.scm_instance()
604 vcsrepo = repo.scm_instance()
601 vcsrepo.config.clear_section('hooks')
605 vcsrepo.config.clear_section('hooks')
602 commit_ids = [self._commit_ids[h] for h in heads]
606 commit_ids = [self._commit_ids[h] for h in heads]
603 vcsrepo.pull(vcsmaster.path, commit_ids=commit_ids)
607 vcsrepo.pull(vcsmaster.path, commit_ids=commit_ids)
604
608
605 def create_fork(self):
609 def create_fork(self):
606 repo_to_fork = self.repo_name
610 repo_to_fork = self.repo_name
607 self.repo_name = self._next_repo_name()
611 self.repo_name = self._next_repo_name()
608 repo = self._fixture.create_fork(repo_to_fork, self.repo_name)
612 repo = self._fixture.create_fork(repo_to_fork, self.repo_name)
609 self._cleanup_repos.append(self.repo_name)
613 self._cleanup_repos.append(self.repo_name)
610 return repo
614 return repo
611
615
612 def new_repo_name(self, suffix=u''):
616 def new_repo_name(self, suffix=u''):
613 self.repo_name = self._next_repo_name() + suffix
617 self.repo_name = self._next_repo_name() + suffix
614 self._cleanup_repos.append(self.repo_name)
618 self._cleanup_repos.append(self.repo_name)
615 return self.repo_name
619 return self.repo_name
616
620
617 def _next_repo_name(self):
621 def _next_repo_name(self):
618 return u"%s_%s" % (
622 return u"%s_%s" % (
619 self.invalid_repo_name.sub(u'_', self._test_name),
623 self.invalid_repo_name.sub(u'_', self._test_name),
620 len(self._cleanup_repos))
624 len(self._cleanup_repos))
621
625
622 def ensure_file(self, filename, content='Test content\n'):
626 def ensure_file(self, filename, content='Test content\n'):
623 assert self._cleanup_repos, "Avoid writing into vcs_test repos"
627 assert self._cleanup_repos, "Avoid writing into vcs_test repos"
624 commits = [
628 commits = [
625 {'added': [
629 {'added': [
626 FileNode(filename, content=content),
630 FileNode(filename, content=content),
627 ]},
631 ]},
628 ]
632 ]
629 self._add_commits_to_repo(self.repo.scm_instance(), commits)
633 self._add_commits_to_repo(self.repo.scm_instance(), commits)
630
634
631 def enable_downloads(self):
635 def enable_downloads(self):
632 repo = self.repo
636 repo = self.repo
633 repo.enable_downloads = True
637 repo.enable_downloads = True
634 Session().add(repo)
638 Session().add(repo)
635 Session().commit()
639 Session().commit()
636
640
637 def cleanup(self):
641 def cleanup(self):
638 for repo_name in reversed(self._cleanup_repos):
642 for repo_name in reversed(self._cleanup_repos):
639 self._fixture.destroy_repo(repo_name)
643 self._fixture.destroy_repo(repo_name)
640
644
641 def _add_commits_to_repo(self, repo, commits):
645 def _add_commits_to_repo(self, repo, commits):
642 if not commits:
646 if not commits:
643 return
647 return
644
648
645 imc = repo.in_memory_commit
649 imc = repo.in_memory_commit
646 commit = None
650 commit = None
647 self._commit_ids = {}
651 self._commit_ids = {}
648
652
649 for idx, commit in enumerate(commits):
653 for idx, commit in enumerate(commits):
650 message = unicode(commit.get('message', 'Commit %s' % idx))
654 message = unicode(commit.get('message', 'Commit %s' % idx))
651
655
652 for node in commit.get('added', []):
656 for node in commit.get('added', []):
653 imc.add(FileNode(node.path, content=node.content))
657 imc.add(FileNode(node.path, content=node.content))
654 for node in commit.get('changed', []):
658 for node in commit.get('changed', []):
655 imc.change(FileNode(node.path, content=node.content))
659 imc.change(FileNode(node.path, content=node.content))
656 for node in commit.get('removed', []):
660 for node in commit.get('removed', []):
657 imc.remove(FileNode(node.path))
661 imc.remove(FileNode(node.path))
658
662
659 parents = [
663 parents = [
660 repo.get_commit(commit_id=self._commit_ids[p])
664 repo.get_commit(commit_id=self._commit_ids[p])
661 for p in commit.get('parents', [])]
665 for p in commit.get('parents', [])]
662
666
663 operations = ('added', 'changed', 'removed')
667 operations = ('added', 'changed', 'removed')
664 if not any((commit.get(o) for o in operations)):
668 if not any((commit.get(o) for o in operations)):
665 imc.add(FileNode('file_%s' % idx, content=message))
669 imc.add(FileNode('file_%s' % idx, content=message))
666
670
667 commit = imc.commit(
671 commit = imc.commit(
668 message=message,
672 message=message,
669 author=unicode(commit.get('author', 'Automatic')),
673 author=unicode(commit.get('author', 'Automatic')),
670 date=commit.get('date'),
674 date=commit.get('date'),
671 branch=commit.get('branch'),
675 branch=commit.get('branch'),
672 parents=parents)
676 parents=parents)
673
677
674 self._commit_ids[commit.message] = commit.raw_id
678 self._commit_ids[commit.message] = commit.raw_id
675
679
676 # Creating refs for Git to allow fetching them from remote repository
680 # Creating refs for Git to allow fetching them from remote repository
677 if self.alias == 'git':
681 if self.alias == 'git':
678 refs = {}
682 refs = {}
679 for message in self._commit_ids:
683 for message in self._commit_ids:
680 # TODO: mikhail: do more special chars replacements
684 # TODO: mikhail: do more special chars replacements
681 ref_name = 'refs/test-refs/{}'.format(
685 ref_name = 'refs/test-refs/{}'.format(
682 message.replace(' ', ''))
686 message.replace(' ', ''))
683 refs[ref_name] = self._commit_ids[message]
687 refs[ref_name] = self._commit_ids[message]
684 self._create_refs(repo, refs)
688 self._create_refs(repo, refs)
685
689
686 return commit
690 return commit
687
691
688 def _create_refs(self, repo, refs):
692 def _create_refs(self, repo, refs):
689 for ref_name in refs:
693 for ref_name in refs:
690 repo.set_refs(ref_name, refs[ref_name])
694 repo.set_refs(ref_name, refs[ref_name])
691
695
692
696
693 @pytest.fixture
697 @pytest.fixture
694 def vcsbackend(request, backend_alias, tests_tmp_path, pylonsapp, test_repo):
698 def vcsbackend(request, backend_alias, tests_tmp_path, pylonsapp, test_repo):
695 """
699 """
696 Parametrized fixture which represents a single vcs backend implementation.
700 Parametrized fixture which represents a single vcs backend implementation.
697
701
698 See the fixture `backend` for more details. This one implements the same
702 See the fixture `backend` for more details. This one implements the same
699 concept, but on vcs level. So it does not provide model instances etc.
703 concept, but on vcs level. So it does not provide model instances etc.
700
704
701 Parameters are generated dynamically, see :func:`pytest_generate_tests`
705 Parameters are generated dynamically, see :func:`pytest_generate_tests`
702 for how this works.
706 for how this works.
703 """
707 """
704 if backend_alias not in request.config.getoption('--backends'):
708 if backend_alias not in request.config.getoption('--backends'):
705 pytest.skip("Backend %s not selected." % (backend_alias, ))
709 pytest.skip("Backend %s not selected." % (backend_alias, ))
706
710
707 utils.check_xfail_backends(request.node, backend_alias)
711 utils.check_xfail_backends(request.node, backend_alias)
708 utils.check_skip_backends(request.node, backend_alias)
712 utils.check_skip_backends(request.node, backend_alias)
709
713
710 repo_name = 'vcs_test_%s' % (backend_alias, )
714 repo_name = 'vcs_test_%s' % (backend_alias, )
711 repo_path = os.path.join(tests_tmp_path, repo_name)
715 repo_path = os.path.join(tests_tmp_path, repo_name)
712 backend = VcsBackend(
716 backend = VcsBackend(
713 alias=backend_alias,
717 alias=backend_alias,
714 repo_path=repo_path,
718 repo_path=repo_path,
715 test_name=request.node.name,
719 test_name=request.node.name,
716 test_repo_container=test_repo)
720 test_repo_container=test_repo)
717 request.addfinalizer(backend.cleanup)
721 request.addfinalizer(backend.cleanup)
718 return backend
722 return backend
719
723
720
724
721 @pytest.fixture
725 @pytest.fixture
722 def vcsbackend_git(request, tests_tmp_path, pylonsapp, test_repo):
726 def vcsbackend_git(request, tests_tmp_path, pylonsapp, test_repo):
723 return vcsbackend(request, 'git', tests_tmp_path, pylonsapp, test_repo)
727 return vcsbackend(request, 'git', tests_tmp_path, pylonsapp, test_repo)
724
728
725
729
726 @pytest.fixture
730 @pytest.fixture
727 def vcsbackend_hg(request, tests_tmp_path, pylonsapp, test_repo):
731 def vcsbackend_hg(request, tests_tmp_path, pylonsapp, test_repo):
728 return vcsbackend(request, 'hg', tests_tmp_path, pylonsapp, test_repo)
732 return vcsbackend(request, 'hg', tests_tmp_path, pylonsapp, test_repo)
729
733
730
734
731 @pytest.fixture
735 @pytest.fixture
732 def vcsbackend_svn(request, tests_tmp_path, pylonsapp, test_repo):
736 def vcsbackend_svn(request, tests_tmp_path, pylonsapp, test_repo):
733 return vcsbackend(request, 'svn', tests_tmp_path, pylonsapp, test_repo)
737 return vcsbackend(request, 'svn', tests_tmp_path, pylonsapp, test_repo)
734
738
735
739
736 @pytest.fixture
740 @pytest.fixture
737 def vcsbackend_random(vcsbackend_git):
741 def vcsbackend_random(vcsbackend_git):
738 """
742 """
739 Use this to express that your tests need "a vcsbackend".
743 Use this to express that your tests need "a vcsbackend".
740
744
741 The fixture `vcsbackend` would run the test multiple times for each
745 The fixture `vcsbackend` would run the test multiple times for each
742 available vcs backend which is a pure waste of time if the test is
746 available vcs backend which is a pure waste of time if the test is
743 independent of the vcs backend type.
747 independent of the vcs backend type.
744 """
748 """
745 # TODO: johbo: Change this to pick a random backend
749 # TODO: johbo: Change this to pick a random backend
746 return vcsbackend_git
750 return vcsbackend_git
747
751
748
752
749 class VcsBackend(object):
753 class VcsBackend(object):
750 """
754 """
751 Represents the test configuration for one supported vcs backend.
755 Represents the test configuration for one supported vcs backend.
752 """
756 """
753
757
754 invalid_repo_name = re.compile(r'[^0-9a-zA-Z]+')
758 invalid_repo_name = re.compile(r'[^0-9a-zA-Z]+')
755
759
756 def __init__(self, alias, repo_path, test_name, test_repo_container):
760 def __init__(self, alias, repo_path, test_name, test_repo_container):
757 self.alias = alias
761 self.alias = alias
758 self._repo_path = repo_path
762 self._repo_path = repo_path
759 self._cleanup_repos = []
763 self._cleanup_repos = []
760 self._test_name = test_name
764 self._test_name = test_name
761 self._test_repo_container = test_repo_container
765 self._test_repo_container = test_repo_container
762
766
763 def __getitem__(self, key):
767 def __getitem__(self, key):
764 return self._test_repo_container(key, self.alias).scm_instance()
768 return self._test_repo_container(key, self.alias).scm_instance()
765
769
766 @property
770 @property
767 def repo(self):
771 def repo(self):
768 """
772 """
769 Returns the "current" repository. This is the vcs_test repo of the last
773 Returns the "current" repository. This is the vcs_test repo of the last
770 repo which has been created.
774 repo which has been created.
771 """
775 """
772 Repository = get_backend(self.alias)
776 Repository = get_backend(self.alias)
773 return Repository(self._repo_path)
777 return Repository(self._repo_path)
774
778
775 @property
779 @property
776 def backend(self):
780 def backend(self):
777 """
781 """
778 Returns the backend implementation class.
782 Returns the backend implementation class.
779 """
783 """
780 return get_backend(self.alias)
784 return get_backend(self.alias)
781
785
782 def create_repo(self, number_of_commits=0, _clone_repo=None):
786 def create_repo(self, number_of_commits=0, _clone_repo=None):
783 repo_name = self._next_repo_name()
787 repo_name = self._next_repo_name()
784 self._repo_path = get_new_dir(repo_name)
788 self._repo_path = get_new_dir(repo_name)
785 Repository = get_backend(self.alias)
789 Repository = get_backend(self.alias)
786 src_url = None
790 src_url = None
787 if _clone_repo:
791 if _clone_repo:
788 src_url = _clone_repo.path
792 src_url = _clone_repo.path
789 repo = Repository(self._repo_path, create=True, src_url=src_url)
793 repo = Repository(self._repo_path, create=True, src_url=src_url)
790 self._cleanup_repos.append(repo)
794 self._cleanup_repos.append(repo)
791 for idx in xrange(number_of_commits):
795 for idx in xrange(number_of_commits):
792 self.ensure_file(filename='file_%s' % idx, content=repo.name)
796 self.ensure_file(filename='file_%s' % idx, content=repo.name)
793 return repo
797 return repo
794
798
795 def clone_repo(self, repo):
799 def clone_repo(self, repo):
796 return self.create_repo(_clone_repo=repo)
800 return self.create_repo(_clone_repo=repo)
797
801
798 def cleanup(self):
802 def cleanup(self):
799 for repo in self._cleanup_repos:
803 for repo in self._cleanup_repos:
800 shutil.rmtree(repo.path)
804 shutil.rmtree(repo.path)
801
805
802 def new_repo_path(self):
806 def new_repo_path(self):
803 repo_name = self._next_repo_name()
807 repo_name = self._next_repo_name()
804 self._repo_path = get_new_dir(repo_name)
808 self._repo_path = get_new_dir(repo_name)
805 return self._repo_path
809 return self._repo_path
806
810
807 def _next_repo_name(self):
811 def _next_repo_name(self):
808 return "%s_%s" % (
812 return "%s_%s" % (
809 self.invalid_repo_name.sub('_', self._test_name),
813 self.invalid_repo_name.sub('_', self._test_name),
810 len(self._cleanup_repos))
814 len(self._cleanup_repos))
811
815
812 def add_file(self, repo, filename, content='Test content\n'):
816 def add_file(self, repo, filename, content='Test content\n'):
813 imc = repo.in_memory_commit
817 imc = repo.in_memory_commit
814 imc.add(FileNode(filename, content=content))
818 imc.add(FileNode(filename, content=content))
815 imc.commit(
819 imc.commit(
816 message=u'Automatic commit from vcsbackend fixture',
820 message=u'Automatic commit from vcsbackend fixture',
817 author=u'Automatic')
821 author=u'Automatic')
818
822
819 def ensure_file(self, filename, content='Test content\n'):
823 def ensure_file(self, filename, content='Test content\n'):
820 assert self._cleanup_repos, "Avoid writing into vcs_test repos"
824 assert self._cleanup_repos, "Avoid writing into vcs_test repos"
821 self.add_file(self.repo, filename, content)
825 self.add_file(self.repo, filename, content)
822
826
823
827
824 @pytest.fixture
828 @pytest.fixture
825 def reposerver(request):
829 def reposerver(request):
826 """
830 """
827 Allows to serve a backend repository
831 Allows to serve a backend repository
828 """
832 """
829
833
830 repo_server = RepoServer()
834 repo_server = RepoServer()
831 request.addfinalizer(repo_server.cleanup)
835 request.addfinalizer(repo_server.cleanup)
832 return repo_server
836 return repo_server
833
837
834
838
835 class RepoServer(object):
839 class RepoServer(object):
836 """
840 """
837 Utility to serve a local repository for the duration of a test case.
841 Utility to serve a local repository for the duration of a test case.
838
842
839 Supports only Subversion so far.
843 Supports only Subversion so far.
840 """
844 """
841
845
842 url = None
846 url = None
843
847
844 def __init__(self):
848 def __init__(self):
845 self._cleanup_servers = []
849 self._cleanup_servers = []
846
850
847 def serve(self, vcsrepo):
851 def serve(self, vcsrepo):
848 if vcsrepo.alias != 'svn':
852 if vcsrepo.alias != 'svn':
849 raise TypeError("Backend %s not supported" % vcsrepo.alias)
853 raise TypeError("Backend %s not supported" % vcsrepo.alias)
850
854
851 proc = subprocess.Popen(
855 proc = subprocess.Popen(
852 ['svnserve', '-d', '--foreground', '--listen-host', 'localhost',
856 ['svnserve', '-d', '--foreground', '--listen-host', 'localhost',
853 '--root', vcsrepo.path])
857 '--root', vcsrepo.path])
854 self._cleanup_servers.append(proc)
858 self._cleanup_servers.append(proc)
855 self.url = 'svn://localhost'
859 self.url = 'svn://localhost'
856
860
857 def cleanup(self):
861 def cleanup(self):
858 for proc in self._cleanup_servers:
862 for proc in self._cleanup_servers:
859 proc.terminate()
863 proc.terminate()
860
864
861
865
862 @pytest.fixture
866 @pytest.fixture
863 def pr_util(backend, request):
867 def pr_util(backend, request):
864 """
868 """
865 Utility for tests of models and for functional tests around pull requests.
869 Utility for tests of models and for functional tests around pull requests.
866
870
867 It gives an instance of :class:`PRTestUtility` which provides various
871 It gives an instance of :class:`PRTestUtility` which provides various
868 utility methods around one pull request.
872 utility methods around one pull request.
869
873
870 This fixture uses `backend` and inherits its parameterization.
874 This fixture uses `backend` and inherits its parameterization.
871 """
875 """
872
876
873 util = PRTestUtility(backend)
877 util = PRTestUtility(backend)
874
878
875 @request.addfinalizer
879 @request.addfinalizer
876 def cleanup():
880 def cleanup():
877 util.cleanup()
881 util.cleanup()
878
882
879 return util
883 return util
880
884
881
885
882 class PRTestUtility(object):
886 class PRTestUtility(object):
883
887
884 pull_request = None
888 pull_request = None
885 pull_request_id = None
889 pull_request_id = None
886 mergeable_patcher = None
890 mergeable_patcher = None
887 mergeable_mock = None
891 mergeable_mock = None
888 notification_patcher = None
892 notification_patcher = None
889
893
890 def __init__(self, backend):
894 def __init__(self, backend):
891 self.backend = backend
895 self.backend = backend
892
896
893 def create_pull_request(
897 def create_pull_request(
894 self, commits=None, target_head=None, source_head=None,
898 self, commits=None, target_head=None, source_head=None,
895 revisions=None, approved=False, author=None, mergeable=False,
899 revisions=None, approved=False, author=None, mergeable=False,
896 enable_notifications=True, name_suffix=u'', reviewers=None,
900 enable_notifications=True, name_suffix=u'', reviewers=None,
897 title=u"Test", description=u"Description"):
901 title=u"Test", description=u"Description"):
898 self.set_mergeable(mergeable)
902 self.set_mergeable(mergeable)
899 if not enable_notifications:
903 if not enable_notifications:
900 # mock notification side effect
904 # mock notification side effect
901 self.notification_patcher = mock.patch(
905 self.notification_patcher = mock.patch(
902 'rhodecode.model.notification.NotificationModel.create')
906 'rhodecode.model.notification.NotificationModel.create')
903 self.notification_patcher.start()
907 self.notification_patcher.start()
904
908
905 if not self.pull_request:
909 if not self.pull_request:
906 if not commits:
910 if not commits:
907 commits = [
911 commits = [
908 {'message': 'c1'},
912 {'message': 'c1'},
909 {'message': 'c2'},
913 {'message': 'c2'},
910 {'message': 'c3'},
914 {'message': 'c3'},
911 ]
915 ]
912 target_head = 'c1'
916 target_head = 'c1'
913 source_head = 'c2'
917 source_head = 'c2'
914 revisions = ['c2']
918 revisions = ['c2']
915
919
916 self.commit_ids = self.backend.create_master_repo(commits)
920 self.commit_ids = self.backend.create_master_repo(commits)
917 self.target_repository = self.backend.create_repo(
921 self.target_repository = self.backend.create_repo(
918 heads=[target_head], name_suffix=name_suffix)
922 heads=[target_head], name_suffix=name_suffix)
919 self.source_repository = self.backend.create_repo(
923 self.source_repository = self.backend.create_repo(
920 heads=[source_head], name_suffix=name_suffix)
924 heads=[source_head], name_suffix=name_suffix)
921 self.author = author or UserModel().get_by_username(
925 self.author = author or UserModel().get_by_username(
922 TEST_USER_ADMIN_LOGIN)
926 TEST_USER_ADMIN_LOGIN)
923
927
924 model = PullRequestModel()
928 model = PullRequestModel()
925 self.create_parameters = {
929 self.create_parameters = {
926 'created_by': self.author,
930 'created_by': self.author,
927 'source_repo': self.source_repository.repo_name,
931 'source_repo': self.source_repository.repo_name,
928 'source_ref': self._default_branch_reference(source_head),
932 'source_ref': self._default_branch_reference(source_head),
929 'target_repo': self.target_repository.repo_name,
933 'target_repo': self.target_repository.repo_name,
930 'target_ref': self._default_branch_reference(target_head),
934 'target_ref': self._default_branch_reference(target_head),
931 'revisions': [self.commit_ids[r] for r in revisions],
935 'revisions': [self.commit_ids[r] for r in revisions],
932 'reviewers': reviewers or self._get_reviewers(),
936 'reviewers': reviewers or self._get_reviewers(),
933 'title': title,
937 'title': title,
934 'description': description,
938 'description': description,
935 }
939 }
936 self.pull_request = model.create(**self.create_parameters)
940 self.pull_request = model.create(**self.create_parameters)
937 assert model.get_versions(self.pull_request) == []
941 assert model.get_versions(self.pull_request) == []
938
942
939 self.pull_request_id = self.pull_request.pull_request_id
943 self.pull_request_id = self.pull_request.pull_request_id
940
944
941 if approved:
945 if approved:
942 self.approve()
946 self.approve()
943
947
944 Session().add(self.pull_request)
948 Session().add(self.pull_request)
945 Session().commit()
949 Session().commit()
946
950
947 return self.pull_request
951 return self.pull_request
948
952
949 def approve(self):
953 def approve(self):
950 self.create_status_votes(
954 self.create_status_votes(
951 ChangesetStatus.STATUS_APPROVED,
955 ChangesetStatus.STATUS_APPROVED,
952 *self.pull_request.reviewers)
956 *self.pull_request.reviewers)
953
957
954 def close(self):
958 def close(self):
955 PullRequestModel().close_pull_request(self.pull_request, self.author)
959 PullRequestModel().close_pull_request(self.pull_request, self.author)
956
960
957 def _default_branch_reference(self, commit_message):
961 def _default_branch_reference(self, commit_message):
958 reference = '%s:%s:%s' % (
962 reference = '%s:%s:%s' % (
959 'branch',
963 'branch',
960 self.backend.default_branch_name,
964 self.backend.default_branch_name,
961 self.commit_ids[commit_message])
965 self.commit_ids[commit_message])
962 return reference
966 return reference
963
967
964 def _get_reviewers(self):
968 def _get_reviewers(self):
965 model = UserModel()
969 model = UserModel()
966 return [
970 return [
967 model.get_by_username(TEST_USER_REGULAR_LOGIN),
971 model.get_by_username(TEST_USER_REGULAR_LOGIN),
968 model.get_by_username(TEST_USER_REGULAR2_LOGIN),
972 model.get_by_username(TEST_USER_REGULAR2_LOGIN),
969 ]
973 ]
970
974
971 def update_source_repository(self, head=None):
975 def update_source_repository(self, head=None):
972 heads = [head or 'c3']
976 heads = [head or 'c3']
973 self.backend.pull_heads(self.source_repository, heads=heads)
977 self.backend.pull_heads(self.source_repository, heads=heads)
974
978
975 def add_one_commit(self, head=None):
979 def add_one_commit(self, head=None):
976 self.update_source_repository(head=head)
980 self.update_source_repository(head=head)
977 old_commit_ids = set(self.pull_request.revisions)
981 old_commit_ids = set(self.pull_request.revisions)
978 PullRequestModel().update_commits(self.pull_request)
982 PullRequestModel().update_commits(self.pull_request)
979 commit_ids = set(self.pull_request.revisions)
983 commit_ids = set(self.pull_request.revisions)
980 new_commit_ids = commit_ids - old_commit_ids
984 new_commit_ids = commit_ids - old_commit_ids
981 assert len(new_commit_ids) == 1
985 assert len(new_commit_ids) == 1
982 return new_commit_ids.pop()
986 return new_commit_ids.pop()
983
987
984 def remove_one_commit(self):
988 def remove_one_commit(self):
985 assert len(self.pull_request.revisions) == 2
989 assert len(self.pull_request.revisions) == 2
986 source_vcs = self.source_repository.scm_instance()
990 source_vcs = self.source_repository.scm_instance()
987 removed_commit_id = source_vcs.commit_ids[-1]
991 removed_commit_id = source_vcs.commit_ids[-1]
988
992
989 # TODO: johbo: Git and Mercurial have an inconsistent vcs api here,
993 # TODO: johbo: Git and Mercurial have an inconsistent vcs api here,
990 # remove the if once that's sorted out.
994 # remove the if once that's sorted out.
991 if self.backend.alias == "git":
995 if self.backend.alias == "git":
992 kwargs = {'branch_name': self.backend.default_branch_name}
996 kwargs = {'branch_name': self.backend.default_branch_name}
993 else:
997 else:
994 kwargs = {}
998 kwargs = {}
995 source_vcs.strip(removed_commit_id, **kwargs)
999 source_vcs.strip(removed_commit_id, **kwargs)
996
1000
997 PullRequestModel().update_commits(self.pull_request)
1001 PullRequestModel().update_commits(self.pull_request)
998 assert len(self.pull_request.revisions) == 1
1002 assert len(self.pull_request.revisions) == 1
999 return removed_commit_id
1003 return removed_commit_id
1000
1004
1001 def create_comment(self, linked_to=None):
1005 def create_comment(self, linked_to=None):
1002 comment = ChangesetCommentsModel().create(
1006 comment = ChangesetCommentsModel().create(
1003 text=u"Test comment",
1007 text=u"Test comment",
1004 repo=self.target_repository.repo_name,
1008 repo=self.target_repository.repo_name,
1005 user=self.author,
1009 user=self.author,
1006 pull_request=self.pull_request)
1010 pull_request=self.pull_request)
1007 assert comment.pull_request_version_id is None
1011 assert comment.pull_request_version_id is None
1008
1012
1009 if linked_to:
1013 if linked_to:
1010 PullRequestModel()._link_comments_to_version(linked_to)
1014 PullRequestModel()._link_comments_to_version(linked_to)
1011
1015
1012 return comment
1016 return comment
1013
1017
1014 def create_inline_comment(
1018 def create_inline_comment(
1015 self, linked_to=None, line_no=u'n1', file_path='file_1'):
1019 self, linked_to=None, line_no=u'n1', file_path='file_1'):
1016 comment = ChangesetCommentsModel().create(
1020 comment = ChangesetCommentsModel().create(
1017 text=u"Test comment",
1021 text=u"Test comment",
1018 repo=self.target_repository.repo_name,
1022 repo=self.target_repository.repo_name,
1019 user=self.author,
1023 user=self.author,
1020 line_no=line_no,
1024 line_no=line_no,
1021 f_path=file_path,
1025 f_path=file_path,
1022 pull_request=self.pull_request)
1026 pull_request=self.pull_request)
1023 assert comment.pull_request_version_id is None
1027 assert comment.pull_request_version_id is None
1024
1028
1025 if linked_to:
1029 if linked_to:
1026 PullRequestModel()._link_comments_to_version(linked_to)
1030 PullRequestModel()._link_comments_to_version(linked_to)
1027
1031
1028 return comment
1032 return comment
1029
1033
1030 def create_version_of_pull_request(self):
1034 def create_version_of_pull_request(self):
1031 pull_request = self.create_pull_request()
1035 pull_request = self.create_pull_request()
1032 version = PullRequestModel()._create_version_from_snapshot(
1036 version = PullRequestModel()._create_version_from_snapshot(
1033 pull_request)
1037 pull_request)
1034 return version
1038 return version
1035
1039
1036 def create_status_votes(self, status, *reviewers):
1040 def create_status_votes(self, status, *reviewers):
1037 for reviewer in reviewers:
1041 for reviewer in reviewers:
1038 ChangesetStatusModel().set_status(
1042 ChangesetStatusModel().set_status(
1039 repo=self.pull_request.target_repo,
1043 repo=self.pull_request.target_repo,
1040 status=status,
1044 status=status,
1041 user=reviewer.user_id,
1045 user=reviewer.user_id,
1042 pull_request=self.pull_request)
1046 pull_request=self.pull_request)
1043
1047
1044 def set_mergeable(self, value):
1048 def set_mergeable(self, value):
1045 if not self.mergeable_patcher:
1049 if not self.mergeable_patcher:
1046 self.mergeable_patcher = mock.patch.object(
1050 self.mergeable_patcher = mock.patch.object(
1047 VcsSettingsModel, 'get_general_settings')
1051 VcsSettingsModel, 'get_general_settings')
1048 self.mergeable_mock = self.mergeable_patcher.start()
1052 self.mergeable_mock = self.mergeable_patcher.start()
1049 self.mergeable_mock.return_value = {
1053 self.mergeable_mock.return_value = {
1050 'rhodecode_pr_merge_enabled': value}
1054 'rhodecode_pr_merge_enabled': value}
1051
1055
1052 def cleanup(self):
1056 def cleanup(self):
1053 # In case the source repository is already cleaned up, the pull
1057 # In case the source repository is already cleaned up, the pull
1054 # request will already be deleted.
1058 # request will already be deleted.
1055 pull_request = PullRequest().get(self.pull_request_id)
1059 pull_request = PullRequest().get(self.pull_request_id)
1056 if pull_request:
1060 if pull_request:
1057 PullRequestModel().delete(pull_request)
1061 PullRequestModel().delete(pull_request)
1058 Session().commit()
1062 Session().commit()
1059
1063
1060 if self.notification_patcher:
1064 if self.notification_patcher:
1061 self.notification_patcher.stop()
1065 self.notification_patcher.stop()
1062
1066
1063 if self.mergeable_patcher:
1067 if self.mergeable_patcher:
1064 self.mergeable_patcher.stop()
1068 self.mergeable_patcher.stop()
1065
1069
1066
1070
1067 @pytest.fixture
1071 @pytest.fixture
1068 def user_admin(pylonsapp):
1072 def user_admin(pylonsapp):
1069 """
1073 """
1070 Provides the default admin test user as an instance of `db.User`.
1074 Provides the default admin test user as an instance of `db.User`.
1071 """
1075 """
1072 user = UserModel().get_by_username(TEST_USER_ADMIN_LOGIN)
1076 user = UserModel().get_by_username(TEST_USER_ADMIN_LOGIN)
1073 return user
1077 return user
1074
1078
1075
1079
1076 @pytest.fixture
1080 @pytest.fixture
1077 def user_regular(pylonsapp):
1081 def user_regular(pylonsapp):
1078 """
1082 """
1079 Provides the default regular test user as an instance of `db.User`.
1083 Provides the default regular test user as an instance of `db.User`.
1080 """
1084 """
1081 user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN)
1085 user = UserModel().get_by_username(TEST_USER_REGULAR_LOGIN)
1082 return user
1086 return user
1083
1087
1084
1088
1085 @pytest.fixture
1089 @pytest.fixture
1086 def user_util(request, pylonsapp):
1090 def user_util(request, pylonsapp):
1087 """
1091 """
1088 Provides a wired instance of `UserUtility` with integrated cleanup.
1092 Provides a wired instance of `UserUtility` with integrated cleanup.
1089 """
1093 """
1090 utility = UserUtility(test_name=request.node.name)
1094 utility = UserUtility(test_name=request.node.name)
1091 request.addfinalizer(utility.cleanup)
1095 request.addfinalizer(utility.cleanup)
1092 return utility
1096 return utility
1093
1097
1094
1098
1095 # TODO: johbo: Split this up into utilities per domain or something similar
1099 # TODO: johbo: Split this up into utilities per domain or something similar
1096 class UserUtility(object):
1100 class UserUtility(object):
1097
1101
1098 def __init__(self, test_name="test"):
1102 def __init__(self, test_name="test"):
1099 self._test_name = test_name
1103 self._test_name = test_name
1100 self.fixture = Fixture()
1104 self.fixture = Fixture()
1101 self.repo_group_ids = []
1105 self.repo_group_ids = []
1102 self.user_ids = []
1106 self.user_ids = []
1103 self.user_group_ids = []
1107 self.user_group_ids = []
1104 self.user_repo_permission_ids = []
1108 self.user_repo_permission_ids = []
1105 self.user_group_repo_permission_ids = []
1109 self.user_group_repo_permission_ids = []
1106 self.user_repo_group_permission_ids = []
1110 self.user_repo_group_permission_ids = []
1107 self.user_group_repo_group_permission_ids = []
1111 self.user_group_repo_group_permission_ids = []
1108 self.user_user_group_permission_ids = []
1112 self.user_user_group_permission_ids = []
1109 self.user_group_user_group_permission_ids = []
1113 self.user_group_user_group_permission_ids = []
1110 self.user_permissions = []
1114 self.user_permissions = []
1111
1115
1112 def create_repo_group(
1116 def create_repo_group(
1113 self, owner=TEST_USER_ADMIN_LOGIN, auto_cleanup=True):
1117 self, owner=TEST_USER_ADMIN_LOGIN, auto_cleanup=True):
1114 group_name = "{prefix}_repogroup_{count}".format(
1118 group_name = "{prefix}_repogroup_{count}".format(
1115 prefix=self._test_name,
1119 prefix=self._test_name,
1116 count=len(self.repo_group_ids))
1120 count=len(self.repo_group_ids))
1117 repo_group = self.fixture.create_repo_group(
1121 repo_group = self.fixture.create_repo_group(
1118 group_name, cur_user=owner)
1122 group_name, cur_user=owner)
1119 if auto_cleanup:
1123 if auto_cleanup:
1120 self.repo_group_ids.append(repo_group.group_id)
1124 self.repo_group_ids.append(repo_group.group_id)
1121 return repo_group
1125 return repo_group
1122
1126
1123 def create_user(self, auto_cleanup=True, **kwargs):
1127 def create_user(self, auto_cleanup=True, **kwargs):
1124 user_name = "{prefix}_user_{count}".format(
1128 user_name = "{prefix}_user_{count}".format(
1125 prefix=self._test_name,
1129 prefix=self._test_name,
1126 count=len(self.user_ids))
1130 count=len(self.user_ids))
1127 user = self.fixture.create_user(user_name, **kwargs)
1131 user = self.fixture.create_user(user_name, **kwargs)
1128 if auto_cleanup:
1132 if auto_cleanup:
1129 self.user_ids.append(user.user_id)
1133 self.user_ids.append(user.user_id)
1130 return user
1134 return user
1131
1135
1132 def create_user_with_group(self):
1136 def create_user_with_group(self):
1133 user = self.create_user()
1137 user = self.create_user()
1134 user_group = self.create_user_group(members=[user])
1138 user_group = self.create_user_group(members=[user])
1135 return user, user_group
1139 return user, user_group
1136
1140
1137 def create_user_group(self, members=None, auto_cleanup=True, **kwargs):
1141 def create_user_group(self, members=None, auto_cleanup=True, **kwargs):
1138 group_name = "{prefix}_usergroup_{count}".format(
1142 group_name = "{prefix}_usergroup_{count}".format(
1139 prefix=self._test_name,
1143 prefix=self._test_name,
1140 count=len(self.user_group_ids))
1144 count=len(self.user_group_ids))
1141 user_group = self.fixture.create_user_group(group_name, **kwargs)
1145 user_group = self.fixture.create_user_group(group_name, **kwargs)
1142 if auto_cleanup:
1146 if auto_cleanup:
1143 self.user_group_ids.append(user_group.users_group_id)
1147 self.user_group_ids.append(user_group.users_group_id)
1144 if members:
1148 if members:
1145 for user in members:
1149 for user in members:
1146 UserGroupModel().add_user_to_group(user_group, user)
1150 UserGroupModel().add_user_to_group(user_group, user)
1147 return user_group
1151 return user_group
1148
1152
1149 def grant_user_permission(self, user_name, permission_name):
1153 def grant_user_permission(self, user_name, permission_name):
1150 self._inherit_default_user_permissions(user_name, False)
1154 self._inherit_default_user_permissions(user_name, False)
1151 self.user_permissions.append((user_name, permission_name))
1155 self.user_permissions.append((user_name, permission_name))
1152
1156
1153 def grant_user_permission_to_repo_group(
1157 def grant_user_permission_to_repo_group(
1154 self, repo_group, user, permission_name):
1158 self, repo_group, user, permission_name):
1155 permission = RepoGroupModel().grant_user_permission(
1159 permission = RepoGroupModel().grant_user_permission(
1156 repo_group, user, permission_name)
1160 repo_group, user, permission_name)
1157 self.user_repo_group_permission_ids.append(
1161 self.user_repo_group_permission_ids.append(
1158 (repo_group.group_id, user.user_id))
1162 (repo_group.group_id, user.user_id))
1159 return permission
1163 return permission
1160
1164
1161 def grant_user_group_permission_to_repo_group(
1165 def grant_user_group_permission_to_repo_group(
1162 self, repo_group, user_group, permission_name):
1166 self, repo_group, user_group, permission_name):
1163 permission = RepoGroupModel().grant_user_group_permission(
1167 permission = RepoGroupModel().grant_user_group_permission(
1164 repo_group, user_group, permission_name)
1168 repo_group, user_group, permission_name)
1165 self.user_group_repo_group_permission_ids.append(
1169 self.user_group_repo_group_permission_ids.append(
1166 (repo_group.group_id, user_group.users_group_id))
1170 (repo_group.group_id, user_group.users_group_id))
1167 return permission
1171 return permission
1168
1172
1169 def grant_user_permission_to_repo(
1173 def grant_user_permission_to_repo(
1170 self, repo, user, permission_name):
1174 self, repo, user, permission_name):
1171 permission = RepoModel().grant_user_permission(
1175 permission = RepoModel().grant_user_permission(
1172 repo, user, permission_name)
1176 repo, user, permission_name)
1173 self.user_repo_permission_ids.append(
1177 self.user_repo_permission_ids.append(
1174 (repo.repo_id, user.user_id))
1178 (repo.repo_id, user.user_id))
1175 return permission
1179 return permission
1176
1180
1177 def grant_user_group_permission_to_repo(
1181 def grant_user_group_permission_to_repo(
1178 self, repo, user_group, permission_name):
1182 self, repo, user_group, permission_name):
1179 permission = RepoModel().grant_user_group_permission(
1183 permission = RepoModel().grant_user_group_permission(
1180 repo, user_group, permission_name)
1184 repo, user_group, permission_name)
1181 self.user_group_repo_permission_ids.append(
1185 self.user_group_repo_permission_ids.append(
1182 (repo.repo_id, user_group.users_group_id))
1186 (repo.repo_id, user_group.users_group_id))
1183 return permission
1187 return permission
1184
1188
1185 def grant_user_permission_to_user_group(
1189 def grant_user_permission_to_user_group(
1186 self, target_user_group, user, permission_name):
1190 self, target_user_group, user, permission_name):
1187 permission = UserGroupModel().grant_user_permission(
1191 permission = UserGroupModel().grant_user_permission(
1188 target_user_group, user, permission_name)
1192 target_user_group, user, permission_name)
1189 self.user_user_group_permission_ids.append(
1193 self.user_user_group_permission_ids.append(
1190 (target_user_group.users_group_id, user.user_id))
1194 (target_user_group.users_group_id, user.user_id))
1191 return permission
1195 return permission
1192
1196
1193 def grant_user_group_permission_to_user_group(
1197 def grant_user_group_permission_to_user_group(
1194 self, target_user_group, user_group, permission_name):
1198 self, target_user_group, user_group, permission_name):
1195 permission = UserGroupModel().grant_user_group_permission(
1199 permission = UserGroupModel().grant_user_group_permission(
1196 target_user_group, user_group, permission_name)
1200 target_user_group, user_group, permission_name)
1197 self.user_group_user_group_permission_ids.append(
1201 self.user_group_user_group_permission_ids.append(
1198 (target_user_group.users_group_id, user_group.users_group_id))
1202 (target_user_group.users_group_id, user_group.users_group_id))
1199 return permission
1203 return permission
1200
1204
1201 def revoke_user_permission(self, user_name, permission_name):
1205 def revoke_user_permission(self, user_name, permission_name):
1202 self._inherit_default_user_permissions(user_name, True)
1206 self._inherit_default_user_permissions(user_name, True)
1203 UserModel().revoke_perm(user_name, permission_name)
1207 UserModel().revoke_perm(user_name, permission_name)
1204
1208
1205 def _inherit_default_user_permissions(self, user_name, value):
1209 def _inherit_default_user_permissions(self, user_name, value):
1206 user = UserModel().get_by_username(user_name)
1210 user = UserModel().get_by_username(user_name)
1207 user.inherit_default_permissions = value
1211 user.inherit_default_permissions = value
1208 Session().add(user)
1212 Session().add(user)
1209 Session().commit()
1213 Session().commit()
1210
1214
1211 def cleanup(self):
1215 def cleanup(self):
1212 self._cleanup_permissions()
1216 self._cleanup_permissions()
1213 self._cleanup_repo_groups()
1217 self._cleanup_repo_groups()
1214 self._cleanup_user_groups()
1218 self._cleanup_user_groups()
1215 self._cleanup_users()
1219 self._cleanup_users()
1216
1220
1217 def _cleanup_permissions(self):
1221 def _cleanup_permissions(self):
1218 if self.user_permissions:
1222 if self.user_permissions:
1219 for user_name, permission_name in self.user_permissions:
1223 for user_name, permission_name in self.user_permissions:
1220 self.revoke_user_permission(user_name, permission_name)
1224 self.revoke_user_permission(user_name, permission_name)
1221
1225
1222 for permission in self.user_repo_permission_ids:
1226 for permission in self.user_repo_permission_ids:
1223 RepoModel().revoke_user_permission(*permission)
1227 RepoModel().revoke_user_permission(*permission)
1224
1228
1225 for permission in self.user_group_repo_permission_ids:
1229 for permission in self.user_group_repo_permission_ids:
1226 RepoModel().revoke_user_group_permission(*permission)
1230 RepoModel().revoke_user_group_permission(*permission)
1227
1231
1228 for permission in self.user_repo_group_permission_ids:
1232 for permission in self.user_repo_group_permission_ids:
1229 RepoGroupModel().revoke_user_permission(*permission)
1233 RepoGroupModel().revoke_user_permission(*permission)
1230
1234
1231 for permission in self.user_group_repo_group_permission_ids:
1235 for permission in self.user_group_repo_group_permission_ids:
1232 RepoGroupModel().revoke_user_group_permission(*permission)
1236 RepoGroupModel().revoke_user_group_permission(*permission)
1233
1237
1234 for permission in self.user_user_group_permission_ids:
1238 for permission in self.user_user_group_permission_ids:
1235 UserGroupModel().revoke_user_permission(*permission)
1239 UserGroupModel().revoke_user_permission(*permission)
1236
1240
1237 for permission in self.user_group_user_group_permission_ids:
1241 for permission in self.user_group_user_group_permission_ids:
1238 UserGroupModel().revoke_user_group_permission(*permission)
1242 UserGroupModel().revoke_user_group_permission(*permission)
1239
1243
1240 def _cleanup_repo_groups(self):
1244 def _cleanup_repo_groups(self):
1241 def _repo_group_compare(first_group_id, second_group_id):
1245 def _repo_group_compare(first_group_id, second_group_id):
1242 """
1246 """
1243 Gives higher priority to the groups with the most complex paths
1247 Gives higher priority to the groups with the most complex paths
1244 """
1248 """
1245 first_group = RepoGroup.get(first_group_id)
1249 first_group = RepoGroup.get(first_group_id)
1246 second_group = RepoGroup.get(second_group_id)
1250 second_group = RepoGroup.get(second_group_id)
1247 first_group_parts = (
1251 first_group_parts = (
1248 len(first_group.group_name.split('/')) if first_group else 0)
1252 len(first_group.group_name.split('/')) if first_group else 0)
1249 second_group_parts = (
1253 second_group_parts = (
1250 len(second_group.group_name.split('/')) if second_group else 0)
1254 len(second_group.group_name.split('/')) if second_group else 0)
1251 return cmp(second_group_parts, first_group_parts)
1255 return cmp(second_group_parts, first_group_parts)
1252
1256
1253 sorted_repo_group_ids = sorted(
1257 sorted_repo_group_ids = sorted(
1254 self.repo_group_ids, cmp=_repo_group_compare)
1258 self.repo_group_ids, cmp=_repo_group_compare)
1255 for repo_group_id in sorted_repo_group_ids:
1259 for repo_group_id in sorted_repo_group_ids:
1256 self.fixture.destroy_repo_group(repo_group_id)
1260 self.fixture.destroy_repo_group(repo_group_id)
1257
1261
1258 def _cleanup_user_groups(self):
1262 def _cleanup_user_groups(self):
1259 def _user_group_compare(first_group_id, second_group_id):
1263 def _user_group_compare(first_group_id, second_group_id):
1260 """
1264 """
1261 Gives higher priority to the groups with the most complex paths
1265 Gives higher priority to the groups with the most complex paths
1262 """
1266 """
1263 first_group = UserGroup.get(first_group_id)
1267 first_group = UserGroup.get(first_group_id)
1264 second_group = UserGroup.get(second_group_id)
1268 second_group = UserGroup.get(second_group_id)
1265 first_group_parts = (
1269 first_group_parts = (
1266 len(first_group.users_group_name.split('/'))
1270 len(first_group.users_group_name.split('/'))
1267 if first_group else 0)
1271 if first_group else 0)
1268 second_group_parts = (
1272 second_group_parts = (
1269 len(second_group.users_group_name.split('/'))
1273 len(second_group.users_group_name.split('/'))
1270 if second_group else 0)
1274 if second_group else 0)
1271 return cmp(second_group_parts, first_group_parts)
1275 return cmp(second_group_parts, first_group_parts)
1272
1276
1273 sorted_user_group_ids = sorted(
1277 sorted_user_group_ids = sorted(
1274 self.user_group_ids, cmp=_user_group_compare)
1278 self.user_group_ids, cmp=_user_group_compare)
1275 for user_group_id in sorted_user_group_ids:
1279 for user_group_id in sorted_user_group_ids:
1276 self.fixture.destroy_user_group(user_group_id)
1280 self.fixture.destroy_user_group(user_group_id)
1277
1281
1278 def _cleanup_users(self):
1282 def _cleanup_users(self):
1279 for user_id in self.user_ids:
1283 for user_id in self.user_ids:
1280 self.fixture.destroy_user(user_id)
1284 self.fixture.destroy_user(user_id)
1281
1285
1282
1286
1283 # TODO: Think about moving this into a pytest-pyro package and make it a
1287 # TODO: Think about moving this into a pytest-pyro package and make it a
1284 # pytest plugin
1288 # pytest plugin
1285 @pytest.hookimpl(tryfirst=True, hookwrapper=True)
1289 @pytest.hookimpl(tryfirst=True, hookwrapper=True)
1286 def pytest_runtest_makereport(item, call):
1290 def pytest_runtest_makereport(item, call):
1287 """
1291 """
1288 Adding the remote traceback if the exception has this information.
1292 Adding the remote traceback if the exception has this information.
1289
1293
1290 Pyro4 attaches this information as the attribute `_pyroTraceback`
1294 Pyro4 attaches this information as the attribute `_pyroTraceback`
1291 to the exception instance.
1295 to the exception instance.
1292 """
1296 """
1293 outcome = yield
1297 outcome = yield
1294 report = outcome.get_result()
1298 report = outcome.get_result()
1295 if call.excinfo:
1299 if call.excinfo:
1296 _add_pyro_remote_traceback(report, call.excinfo.value)
1300 _add_pyro_remote_traceback(report, call.excinfo.value)
1297
1301
1298
1302
1299 def _add_pyro_remote_traceback(report, exc):
1303 def _add_pyro_remote_traceback(report, exc):
1300 pyro_traceback = getattr(exc, '_pyroTraceback', None)
1304 pyro_traceback = getattr(exc, '_pyroTraceback', None)
1301
1305
1302 if pyro_traceback:
1306 if pyro_traceback:
1303 traceback = ''.join(pyro_traceback)
1307 traceback = ''.join(pyro_traceback)
1304 section = 'Pyro4 remote traceback ' + report.when
1308 section = 'Pyro4 remote traceback ' + report.when
1305 report.sections.append((section, traceback))
1309 report.sections.append((section, traceback))
1306
1310
1307
1311
1308 @pytest.fixture(scope='session')
1312 @pytest.fixture(scope='session')
1309 def testrun():
1313 def testrun():
1310 return {
1314 return {
1311 'uuid': uuid.uuid4(),
1315 'uuid': uuid.uuid4(),
1312 'start': datetime.datetime.utcnow().isoformat(),
1316 'start': datetime.datetime.utcnow().isoformat(),
1313 'timestamp': int(time.time()),
1317 'timestamp': int(time.time()),
1314 }
1318 }
1315
1319
1316
1320
1317 @pytest.fixture(autouse=True)
1321 @pytest.fixture(autouse=True)
1318 def collect_appenlight_stats(request, testrun):
1322 def collect_appenlight_stats(request, testrun):
1319 """
1323 """
1320 This fixture reports memory consumtion of single tests.
1324 This fixture reports memory consumtion of single tests.
1321
1325
1322 It gathers data based on `psutil` and sends them to Appenlight. The option
1326 It gathers data based on `psutil` and sends them to Appenlight. The option
1323 ``--ae`` has te be used to enable this fixture and the API key for your
1327 ``--ae`` has te be used to enable this fixture and the API key for your
1324 application has to be provided in ``--ae-key``.
1328 application has to be provided in ``--ae-key``.
1325 """
1329 """
1326 try:
1330 try:
1327 # cygwin cannot have yet psutil support.
1331 # cygwin cannot have yet psutil support.
1328 import psutil
1332 import psutil
1329 except ImportError:
1333 except ImportError:
1330 return
1334 return
1331
1335
1332 if not request.config.getoption('--appenlight'):
1336 if not request.config.getoption('--appenlight'):
1333 return
1337 return
1334 else:
1338 else:
1335 # Only request the pylonsapp fixture if appenlight tracking is
1339 # Only request the pylonsapp fixture if appenlight tracking is
1336 # enabled. This will speed up a test run of unit tests by 2 to 3
1340 # enabled. This will speed up a test run of unit tests by 2 to 3
1337 # seconds if appenlight is not enabled.
1341 # seconds if appenlight is not enabled.
1338 pylonsapp = request.getfuncargvalue("pylonsapp")
1342 pylonsapp = request.getfuncargvalue("pylonsapp")
1339 url = '{}/api/logs'.format(request.config.getoption('--appenlight-url'))
1343 url = '{}/api/logs'.format(request.config.getoption('--appenlight-url'))
1340 client = AppenlightClient(
1344 client = AppenlightClient(
1341 url=url,
1345 url=url,
1342 api_key=request.config.getoption('--appenlight-api-key'),
1346 api_key=request.config.getoption('--appenlight-api-key'),
1343 namespace=request.node.nodeid,
1347 namespace=request.node.nodeid,
1344 request=str(testrun['uuid']),
1348 request=str(testrun['uuid']),
1345 testrun=testrun)
1349 testrun=testrun)
1346
1350
1347 client.collect({
1351 client.collect({
1348 'message': "Starting",
1352 'message': "Starting",
1349 })
1353 })
1350
1354
1351 server_and_port = pylonsapp.config['vcs.server']
1355 server_and_port = pylonsapp.config['vcs.server']
1352 server = create_vcsserver_proxy(server_and_port)
1356 server = create_vcsserver_proxy(server_and_port)
1353 with server:
1357 with server:
1354 vcs_pid = server.get_pid()
1358 vcs_pid = server.get_pid()
1355 server.run_gc()
1359 server.run_gc()
1356 vcs_process = psutil.Process(vcs_pid)
1360 vcs_process = psutil.Process(vcs_pid)
1357 mem = vcs_process.memory_info()
1361 mem = vcs_process.memory_info()
1358 client.tag_before('vcsserver.rss', mem.rss)
1362 client.tag_before('vcsserver.rss', mem.rss)
1359 client.tag_before('vcsserver.vms', mem.vms)
1363 client.tag_before('vcsserver.vms', mem.vms)
1360
1364
1361 test_process = psutil.Process()
1365 test_process = psutil.Process()
1362 mem = test_process.memory_info()
1366 mem = test_process.memory_info()
1363 client.tag_before('test.rss', mem.rss)
1367 client.tag_before('test.rss', mem.rss)
1364 client.tag_before('test.vms', mem.vms)
1368 client.tag_before('test.vms', mem.vms)
1365
1369
1366 client.tag_before('time', time.time())
1370 client.tag_before('time', time.time())
1367
1371
1368 @request.addfinalizer
1372 @request.addfinalizer
1369 def send_stats():
1373 def send_stats():
1370 client.tag_after('time', time.time())
1374 client.tag_after('time', time.time())
1371 with server:
1375 with server:
1372 gc_stats = server.run_gc()
1376 gc_stats = server.run_gc()
1373 for tag, value in gc_stats.items():
1377 for tag, value in gc_stats.items():
1374 client.tag_after(tag, value)
1378 client.tag_after(tag, value)
1375 mem = vcs_process.memory_info()
1379 mem = vcs_process.memory_info()
1376 client.tag_after('vcsserver.rss', mem.rss)
1380 client.tag_after('vcsserver.rss', mem.rss)
1377 client.tag_after('vcsserver.vms', mem.vms)
1381 client.tag_after('vcsserver.vms', mem.vms)
1378
1382
1379 mem = test_process.memory_info()
1383 mem = test_process.memory_info()
1380 client.tag_after('test.rss', mem.rss)
1384 client.tag_after('test.rss', mem.rss)
1381 client.tag_after('test.vms', mem.vms)
1385 client.tag_after('test.vms', mem.vms)
1382
1386
1383 client.collect({
1387 client.collect({
1384 'message': "Finished",
1388 'message': "Finished",
1385 })
1389 })
1386 client.send_stats()
1390 client.send_stats()
1387
1391
1388 return client
1392 return client
1389
1393
1390
1394
1391 class AppenlightClient():
1395 class AppenlightClient():
1392
1396
1393 url_template = '{url}?protocol_version=0.5'
1397 url_template = '{url}?protocol_version=0.5'
1394
1398
1395 def __init__(
1399 def __init__(
1396 self, url, api_key, add_server=True, add_timestamp=True,
1400 self, url, api_key, add_server=True, add_timestamp=True,
1397 namespace=None, request=None, testrun=None):
1401 namespace=None, request=None, testrun=None):
1398 self.url = self.url_template.format(url=url)
1402 self.url = self.url_template.format(url=url)
1399 self.api_key = api_key
1403 self.api_key = api_key
1400 self.add_server = add_server
1404 self.add_server = add_server
1401 self.add_timestamp = add_timestamp
1405 self.add_timestamp = add_timestamp
1402 self.namespace = namespace
1406 self.namespace = namespace
1403 self.request = request
1407 self.request = request
1404 self.server = socket.getfqdn(socket.gethostname())
1408 self.server = socket.getfqdn(socket.gethostname())
1405 self.tags_before = {}
1409 self.tags_before = {}
1406 self.tags_after = {}
1410 self.tags_after = {}
1407 self.stats = []
1411 self.stats = []
1408 self.testrun = testrun or {}
1412 self.testrun = testrun or {}
1409
1413
1410 def tag_before(self, tag, value):
1414 def tag_before(self, tag, value):
1411 self.tags_before[tag] = value
1415 self.tags_before[tag] = value
1412
1416
1413 def tag_after(self, tag, value):
1417 def tag_after(self, tag, value):
1414 self.tags_after[tag] = value
1418 self.tags_after[tag] = value
1415
1419
1416 def collect(self, data):
1420 def collect(self, data):
1417 if self.add_server:
1421 if self.add_server:
1418 data.setdefault('server', self.server)
1422 data.setdefault('server', self.server)
1419 if self.add_timestamp:
1423 if self.add_timestamp:
1420 data.setdefault('date', datetime.datetime.utcnow().isoformat())
1424 data.setdefault('date', datetime.datetime.utcnow().isoformat())
1421 if self.namespace:
1425 if self.namespace:
1422 data.setdefault('namespace', self.namespace)
1426 data.setdefault('namespace', self.namespace)
1423 if self.request:
1427 if self.request:
1424 data.setdefault('request', self.request)
1428 data.setdefault('request', self.request)
1425 self.stats.append(data)
1429 self.stats.append(data)
1426
1430
1427 def send_stats(self):
1431 def send_stats(self):
1428 tags = [
1432 tags = [
1429 ('testrun', self.request),
1433 ('testrun', self.request),
1430 ('testrun.start', self.testrun['start']),
1434 ('testrun.start', self.testrun['start']),
1431 ('testrun.timestamp', self.testrun['timestamp']),
1435 ('testrun.timestamp', self.testrun['timestamp']),
1432 ('test', self.namespace),
1436 ('test', self.namespace),
1433 ]
1437 ]
1434 for key, value in self.tags_before.items():
1438 for key, value in self.tags_before.items():
1435 tags.append((key + '.before', value))
1439 tags.append((key + '.before', value))
1436 try:
1440 try:
1437 delta = self.tags_after[key] - value
1441 delta = self.tags_after[key] - value
1438 tags.append((key + '.delta', delta))
1442 tags.append((key + '.delta', delta))
1439 except Exception:
1443 except Exception:
1440 pass
1444 pass
1441 for key, value in self.tags_after.items():
1445 for key, value in self.tags_after.items():
1442 tags.append((key + '.after', value))
1446 tags.append((key + '.after', value))
1443 self.collect({
1447 self.collect({
1444 'message': "Collected tags",
1448 'message': "Collected tags",
1445 'tags': tags,
1449 'tags': tags,
1446 })
1450 })
1447
1451
1448 response = requests.post(
1452 response = requests.post(
1449 self.url,
1453 self.url,
1450 headers={
1454 headers={
1451 'X-appenlight-api-key': self.api_key},
1455 'X-appenlight-api-key': self.api_key},
1452 json=self.stats,
1456 json=self.stats,
1453 )
1457 )
1454
1458
1455 if not response.status_code == 200:
1459 if not response.status_code == 200:
1456 pprint.pprint(self.stats)
1460 pprint.pprint(self.stats)
1457 print response.headers
1461 print response.headers
1458 print response.text
1462 print response.text
1459 raise Exception('Sending to appenlight failed')
1463 raise Exception('Sending to appenlight failed')
1460
1464
1461
1465
1462 @pytest.fixture
1466 @pytest.fixture
1463 def gist_util(request, pylonsapp):
1467 def gist_util(request, pylonsapp):
1464 """
1468 """
1465 Provides a wired instance of `GistUtility` with integrated cleanup.
1469 Provides a wired instance of `GistUtility` with integrated cleanup.
1466 """
1470 """
1467 utility = GistUtility()
1471 utility = GistUtility()
1468 request.addfinalizer(utility.cleanup)
1472 request.addfinalizer(utility.cleanup)
1469 return utility
1473 return utility
1470
1474
1471
1475
1472 class GistUtility(object):
1476 class GistUtility(object):
1473 def __init__(self):
1477 def __init__(self):
1474 self.fixture = Fixture()
1478 self.fixture = Fixture()
1475 self.gist_ids = []
1479 self.gist_ids = []
1476
1480
1477 def create_gist(self, **kwargs):
1481 def create_gist(self, **kwargs):
1478 gist = self.fixture.create_gist(**kwargs)
1482 gist = self.fixture.create_gist(**kwargs)
1479 self.gist_ids.append(gist.gist_id)
1483 self.gist_ids.append(gist.gist_id)
1480 return gist
1484 return gist
1481
1485
1482 def cleanup(self):
1486 def cleanup(self):
1483 for id_ in self.gist_ids:
1487 for id_ in self.gist_ids:
1484 self.fixture.destroy_gists(str(id_))
1488 self.fixture.destroy_gists(str(id_))
1485
1489
1486
1490
1487 @pytest.fixture
1491 @pytest.fixture
1488 def enabled_backends(request):
1492 def enabled_backends(request):
1489 backends = request.config.option.backends
1493 backends = request.config.option.backends
1490 return backends[:]
1494 return backends[:]
1491
1495
1492
1496
1493 @pytest.fixture
1497 @pytest.fixture
1494 def settings_util(request):
1498 def settings_util(request):
1495 """
1499 """
1496 Provides a wired instance of `SettingsUtility` with integrated cleanup.
1500 Provides a wired instance of `SettingsUtility` with integrated cleanup.
1497 """
1501 """
1498 utility = SettingsUtility()
1502 utility = SettingsUtility()
1499 request.addfinalizer(utility.cleanup)
1503 request.addfinalizer(utility.cleanup)
1500 return utility
1504 return utility
1501
1505
1502
1506
1503 class SettingsUtility(object):
1507 class SettingsUtility(object):
1504 def __init__(self):
1508 def __init__(self):
1505 self.rhodecode_ui_ids = []
1509 self.rhodecode_ui_ids = []
1506 self.rhodecode_setting_ids = []
1510 self.rhodecode_setting_ids = []
1507 self.repo_rhodecode_ui_ids = []
1511 self.repo_rhodecode_ui_ids = []
1508 self.repo_rhodecode_setting_ids = []
1512 self.repo_rhodecode_setting_ids = []
1509
1513
1510 def create_repo_rhodecode_ui(
1514 def create_repo_rhodecode_ui(
1511 self, repo, section, value, key=None, active=True, cleanup=True):
1515 self, repo, section, value, key=None, active=True, cleanup=True):
1512 key = key or hashlib.sha1(
1516 key = key or hashlib.sha1(
1513 '{}{}{}'.format(section, value, repo.repo_id)).hexdigest()
1517 '{}{}{}'.format(section, value, repo.repo_id)).hexdigest()
1514
1518
1515 setting = RepoRhodeCodeUi()
1519 setting = RepoRhodeCodeUi()
1516 setting.repository_id = repo.repo_id
1520 setting.repository_id = repo.repo_id
1517 setting.ui_section = section
1521 setting.ui_section = section
1518 setting.ui_value = value
1522 setting.ui_value = value
1519 setting.ui_key = key
1523 setting.ui_key = key
1520 setting.ui_active = active
1524 setting.ui_active = active
1521 Session().add(setting)
1525 Session().add(setting)
1522 Session().commit()
1526 Session().commit()
1523
1527
1524 if cleanup:
1528 if cleanup:
1525 self.repo_rhodecode_ui_ids.append(setting.ui_id)
1529 self.repo_rhodecode_ui_ids.append(setting.ui_id)
1526 return setting
1530 return setting
1527
1531
1528 def create_rhodecode_ui(
1532 def create_rhodecode_ui(
1529 self, section, value, key=None, active=True, cleanup=True):
1533 self, section, value, key=None, active=True, cleanup=True):
1530 key = key or hashlib.sha1('{}{}'.format(section, value)).hexdigest()
1534 key = key or hashlib.sha1('{}{}'.format(section, value)).hexdigest()
1531
1535
1532 setting = RhodeCodeUi()
1536 setting = RhodeCodeUi()
1533 setting.ui_section = section
1537 setting.ui_section = section
1534 setting.ui_value = value
1538 setting.ui_value = value
1535 setting.ui_key = key
1539 setting.ui_key = key
1536 setting.ui_active = active
1540 setting.ui_active = active
1537 Session().add(setting)
1541 Session().add(setting)
1538 Session().commit()
1542 Session().commit()
1539
1543
1540 if cleanup:
1544 if cleanup:
1541 self.rhodecode_ui_ids.append(setting.ui_id)
1545 self.rhodecode_ui_ids.append(setting.ui_id)
1542 return setting
1546 return setting
1543
1547
1544 def create_repo_rhodecode_setting(
1548 def create_repo_rhodecode_setting(
1545 self, repo, name, value, type_, cleanup=True):
1549 self, repo, name, value, type_, cleanup=True):
1546 setting = RepoRhodeCodeSetting(
1550 setting = RepoRhodeCodeSetting(
1547 repo.repo_id, key=name, val=value, type=type_)
1551 repo.repo_id, key=name, val=value, type=type_)
1548 Session().add(setting)
1552 Session().add(setting)
1549 Session().commit()
1553 Session().commit()
1550
1554
1551 if cleanup:
1555 if cleanup:
1552 self.repo_rhodecode_setting_ids.append(setting.app_settings_id)
1556 self.repo_rhodecode_setting_ids.append(setting.app_settings_id)
1553 return setting
1557 return setting
1554
1558
1555 def create_rhodecode_setting(self, name, value, type_, cleanup=True):
1559 def create_rhodecode_setting(self, name, value, type_, cleanup=True):
1556 setting = RhodeCodeSetting(key=name, val=value, type=type_)
1560 setting = RhodeCodeSetting(key=name, val=value, type=type_)
1557 Session().add(setting)
1561 Session().add(setting)
1558 Session().commit()
1562 Session().commit()
1559
1563
1560 if cleanup:
1564 if cleanup:
1561 self.rhodecode_setting_ids.append(setting.app_settings_id)
1565 self.rhodecode_setting_ids.append(setting.app_settings_id)
1562
1566
1563 return setting
1567 return setting
1564
1568
1565 def cleanup(self):
1569 def cleanup(self):
1566 for id_ in self.rhodecode_ui_ids:
1570 for id_ in self.rhodecode_ui_ids:
1567 setting = RhodeCodeUi.get(id_)
1571 setting = RhodeCodeUi.get(id_)
1568 Session().delete(setting)
1572 Session().delete(setting)
1569
1573
1570 for id_ in self.rhodecode_setting_ids:
1574 for id_ in self.rhodecode_setting_ids:
1571 setting = RhodeCodeSetting.get(id_)
1575 setting = RhodeCodeSetting.get(id_)
1572 Session().delete(setting)
1576 Session().delete(setting)
1573
1577
1574 for id_ in self.repo_rhodecode_ui_ids:
1578 for id_ in self.repo_rhodecode_ui_ids:
1575 setting = RepoRhodeCodeUi.get(id_)
1579 setting = RepoRhodeCodeUi.get(id_)
1576 Session().delete(setting)
1580 Session().delete(setting)
1577
1581
1578 for id_ in self.repo_rhodecode_setting_ids:
1582 for id_ in self.repo_rhodecode_setting_ids:
1579 setting = RepoRhodeCodeSetting.get(id_)
1583 setting = RepoRhodeCodeSetting.get(id_)
1580 Session().delete(setting)
1584 Session().delete(setting)
1581
1585
1582 Session().commit()
1586 Session().commit()
1583
1587
1584
1588
1585 @pytest.fixture
1589 @pytest.fixture
1586 def no_notifications(request):
1590 def no_notifications(request):
1587 notification_patcher = mock.patch(
1591 notification_patcher = mock.patch(
1588 'rhodecode.model.notification.NotificationModel.create')
1592 'rhodecode.model.notification.NotificationModel.create')
1589 notification_patcher.start()
1593 notification_patcher.start()
1590 request.addfinalizer(notification_patcher.stop)
1594 request.addfinalizer(notification_patcher.stop)
1591
1595
1592
1596
1593 @pytest.fixture
1597 @pytest.fixture
1594 def silence_action_logger(request):
1598 def silence_action_logger(request):
1595 notification_patcher = mock.patch(
1599 notification_patcher = mock.patch(
1596 'rhodecode.lib.utils.action_logger')
1600 'rhodecode.lib.utils.action_logger')
1597 notification_patcher.start()
1601 notification_patcher.start()
1598 request.addfinalizer(notification_patcher.stop)
1602 request.addfinalizer(notification_patcher.stop)
1599
1603
1600
1604
1601 @pytest.fixture(scope='session')
1605 @pytest.fixture(scope='session')
1602 def repeat(request):
1606 def repeat(request):
1603 """
1607 """
1604 The number of repetitions is based on this fixture.
1608 The number of repetitions is based on this fixture.
1605
1609
1606 Slower calls may divide it by 10 or 100. It is chosen in a way so that the
1610 Slower calls may divide it by 10 or 100. It is chosen in a way so that the
1607 tests are not too slow in our default test suite.
1611 tests are not too slow in our default test suite.
1608 """
1612 """
1609 return request.config.getoption('--repeat')
1613 return request.config.getoption('--repeat')
1610
1614
1611
1615
1612 @pytest.fixture
1616 @pytest.fixture
1613 def rhodecode_fixtures():
1617 def rhodecode_fixtures():
1614 return Fixture()
1618 return Fixture()
1615
1619
1616
1620
1617 @pytest.fixture
1621 @pytest.fixture
1618 def request_stub():
1622 def request_stub():
1619 """
1623 """
1620 Stub request object.
1624 Stub request object.
1621 """
1625 """
1622 request = pyramid.testing.DummyRequest()
1626 request = pyramid.testing.DummyRequest()
1623 request.scheme = 'https'
1627 request.scheme = 'https'
1624 return request
1628 return request
1625
1629
1626
1630
1627 @pytest.fixture
1631 @pytest.fixture
1628 def config_stub(request, request_stub):
1632 def config_stub(request, request_stub):
1629 """
1633 """
1630 Set up pyramid.testing and return the Configurator.
1634 Set up pyramid.testing and return the Configurator.
1631 """
1635 """
1632 config = pyramid.testing.setUp(request=request_stub)
1636 config = pyramid.testing.setUp(request=request_stub)
1633
1637
1634 @request.addfinalizer
1638 @request.addfinalizer
1635 def cleanup():
1639 def cleanup():
1636 pyramid.testing.tearDown()
1640 pyramid.testing.tearDown()
1637
1641
1638 return config
1642 return config
1643
1644
1645 @pytest.fixture
1646 def StubIntegrationType():
1647 class _StubIntegrationType(IntegrationTypeBase):
1648 """ Test integration type class """
1649
1650 key = 'test'
1651 display_name = 'Test integration type'
1652 description = 'A test integration type for testing'
1653 icon = 'test_icon_html_image'
1654
1655 def __init__(self, settings):
1656 super(_StubIntegrationType, self).__init__(settings)
1657 self.sent_events = [] # for testing
1658
1659 def send_event(self, event):
1660 self.sent_events.append(event)
1661
1662 def settings_schema(self):
1663 class SettingsSchema(colander.Schema):
1664 test_string_field = colander.SchemaNode(
1665 colander.String(),
1666 missing=colander.required,
1667 title='test string field',
1668 )
1669 test_int_field = colander.SchemaNode(
1670 colander.Int(),
1671 title='some integer setting',
1672 )
1673 return SettingsSchema()
1674
1675
1676 integration_type_registry.register_integration_type(_StubIntegrationType)
1677 return _StubIntegrationType
1678
1679 @pytest.fixture
1680 def stub_integration_settings():
1681 return {
1682 'test_string_field': 'some data',
1683 'test_int_field': 100,
1684 }
1685
1686
1687 @pytest.fixture
1688 def repo_integration_stub(request, repo_stub, StubIntegrationType,
1689 stub_integration_settings):
1690 integration = IntegrationModel().create(
1691 StubIntegrationType, settings=stub_integration_settings, enabled=True,
1692 name='test repo integration', scope=repo_stub)
1693
1694 @request.addfinalizer
1695 def cleanup():
1696 IntegrationModel().delete(integration)
1697
1698 return integration
1699
1700
1701 @pytest.fixture
1702 def repogroup_integration_stub(request, test_repo_group, StubIntegrationType,
1703 stub_integration_settings):
1704 integration = IntegrationModel().create(
1705 StubIntegrationType, settings=stub_integration_settings, enabled=True,
1706 name='test repogroup integration', scope=test_repo_group)
1707
1708 @request.addfinalizer
1709 def cleanup():
1710 IntegrationModel().delete(integration)
1711
1712 return integration
1713
1714
1715 @pytest.fixture
1716 def global_integration_stub(request, StubIntegrationType,
1717 stub_integration_settings):
1718 integration = IntegrationModel().create(
1719 StubIntegrationType, settings=stub_integration_settings, enabled=True,
1720 name='test global integration', scope='global')
1721
1722 @request.addfinalizer
1723 def cleanup():
1724 IntegrationModel().delete(integration)
1725
1726 return integration
1727
1728
1729 @pytest.fixture
1730 def root_repos_integration_stub(request, StubIntegrationType,
1731 stub_integration_settings):
1732 integration = IntegrationModel().create(
1733 StubIntegrationType, settings=stub_integration_settings, enabled=True,
1734 name='test global integration', scope='root_repos')
1735
1736 @request.addfinalizer
1737 def cleanup():
1738 IntegrationModel().delete(integration)
1739
1740 return integration
General Comments 0
You need to be logged in to leave comments. Login now