Show More
@@ -1,3509 +1,3497 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2016 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | """ |
|
22 | 22 | Database Models for RhodeCode Enterprise |
|
23 | 23 | """ |
|
24 | 24 | |
|
25 | 25 | import os |
|
26 | 26 | import sys |
|
27 | 27 | import time |
|
28 | 28 | import hashlib |
|
29 | 29 | import logging |
|
30 | 30 | import datetime |
|
31 | 31 | import warnings |
|
32 | 32 | import ipaddress |
|
33 | 33 | import functools |
|
34 | 34 | import traceback |
|
35 | 35 | import collections |
|
36 | 36 | |
|
37 | 37 | |
|
38 | 38 | from sqlalchemy import * |
|
39 | 39 | from sqlalchemy.exc import IntegrityError |
|
40 | 40 | from sqlalchemy.ext.declarative import declared_attr |
|
41 | 41 | from sqlalchemy.ext.hybrid import hybrid_property |
|
42 | 42 | from sqlalchemy.orm import ( |
|
43 | 43 | relationship, joinedload, class_mapper, validates, aliased) |
|
44 | 44 | from sqlalchemy.sql.expression import true |
|
45 | 45 | from beaker.cache import cache_region, region_invalidate |
|
46 | 46 | from webob.exc import HTTPNotFound |
|
47 | 47 | from zope.cachedescriptors.property import Lazy as LazyProperty |
|
48 | 48 | |
|
49 | 49 | from pylons import url |
|
50 | 50 | from pylons.i18n.translation import lazy_ugettext as _ |
|
51 | 51 | |
|
52 | from rhodecode.lib.vcs import get_backend | |
|
52 | from rhodecode.lib.vcs import get_backend, get_vcs_instance | |
|
53 | 53 | from rhodecode.lib.vcs.utils.helpers import get_scm |
|
54 | 54 | from rhodecode.lib.vcs.exceptions import VCSError |
|
55 | 55 | from rhodecode.lib.vcs.backends.base import ( |
|
56 | 56 | EmptyCommit, Reference, MergeFailureReason) |
|
57 | 57 | from rhodecode.lib.utils2 import ( |
|
58 | 58 | str2bool, safe_str, get_commit_safe, safe_unicode, remove_prefix, md5_safe, |
|
59 | 59 | time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict) |
|
60 | 60 | from rhodecode.lib.jsonalchemy import MutationObj, JsonType, JSONDict |
|
61 | 61 | from rhodecode.lib.ext_json import json |
|
62 | 62 | from rhodecode.lib.caching_query import FromCache |
|
63 | 63 | from rhodecode.lib.encrypt import AESCipher |
|
64 | 64 | |
|
65 | 65 | from rhodecode.model.meta import Base, Session |
|
66 | 66 | |
|
67 | 67 | URL_SEP = '/' |
|
68 | 68 | log = logging.getLogger(__name__) |
|
69 | 69 | |
|
70 | 70 | # ============================================================================= |
|
71 | 71 | # BASE CLASSES |
|
72 | 72 | # ============================================================================= |
|
73 | 73 | |
|
74 | 74 | # this is propagated from .ini file rhodecode.encrypted_values.secret or |
|
75 | 75 | # beaker.session.secret if first is not set. |
|
76 | 76 | # and initialized at environment.py |
|
77 | 77 | ENCRYPTION_KEY = None |
|
78 | 78 | |
|
79 | 79 | # used to sort permissions by types, '#' used here is not allowed to be in |
|
80 | 80 | # usernames, and it's very early in sorted string.printable table. |
|
81 | 81 | PERMISSION_TYPE_SORT = { |
|
82 | 82 | 'admin': '####', |
|
83 | 83 | 'write': '###', |
|
84 | 84 | 'read': '##', |
|
85 | 85 | 'none': '#', |
|
86 | 86 | } |
|
87 | 87 | |
|
88 | 88 | |
|
89 | 89 | def display_sort(obj): |
|
90 | 90 | """ |
|
91 | 91 | Sort function used to sort permissions in .permissions() function of |
|
92 | 92 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
93 | 93 | of all other resources |
|
94 | 94 | """ |
|
95 | 95 | |
|
96 | 96 | if obj.username == User.DEFAULT_USER: |
|
97 | 97 | return '#####' |
|
98 | 98 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
99 | 99 | return prefix + obj.username |
|
100 | 100 | |
|
101 | 101 | |
|
102 | 102 | def _hash_key(k): |
|
103 | 103 | return md5_safe(k) |
|
104 | 104 | |
|
105 | 105 | |
|
106 | 106 | class EncryptedTextValue(TypeDecorator): |
|
107 | 107 | """ |
|
108 | 108 | Special column for encrypted long text data, use like:: |
|
109 | 109 | |
|
110 | 110 | value = Column("encrypted_value", EncryptedValue(), nullable=False) |
|
111 | 111 | |
|
112 | 112 | This column is intelligent so if value is in unencrypted form it return |
|
113 | 113 | unencrypted form, but on save it always encrypts |
|
114 | 114 | """ |
|
115 | 115 | impl = Text |
|
116 | 116 | |
|
117 | 117 | def process_bind_param(self, value, dialect): |
|
118 | 118 | if not value: |
|
119 | 119 | return value |
|
120 | 120 | if value.startswith('enc$aes$') or value.startswith('enc$aes_hmac$'): |
|
121 | 121 | # protect against double encrypting if someone manually starts |
|
122 | 122 | # doing |
|
123 | 123 | raise ValueError('value needs to be in unencrypted format, ie. ' |
|
124 | 124 | 'not starting with enc$aes') |
|
125 | 125 | return 'enc$aes_hmac$%s' % AESCipher( |
|
126 | 126 | ENCRYPTION_KEY, hmac=True).encrypt(value) |
|
127 | 127 | |
|
128 | 128 | def process_result_value(self, value, dialect): |
|
129 | 129 | import rhodecode |
|
130 | 130 | |
|
131 | 131 | if not value: |
|
132 | 132 | return value |
|
133 | 133 | |
|
134 | 134 | parts = value.split('$', 3) |
|
135 | 135 | if not len(parts) == 3: |
|
136 | 136 | # probably not encrypted values |
|
137 | 137 | return value |
|
138 | 138 | else: |
|
139 | 139 | if parts[0] != 'enc': |
|
140 | 140 | # parts ok but without our header ? |
|
141 | 141 | return value |
|
142 | 142 | enc_strict_mode = str2bool(rhodecode.CONFIG.get( |
|
143 | 143 | 'rhodecode.encrypted_values.strict') or True) |
|
144 | 144 | # at that stage we know it's our encryption |
|
145 | 145 | if parts[1] == 'aes': |
|
146 | 146 | decrypted_data = AESCipher(ENCRYPTION_KEY).decrypt(parts[2]) |
|
147 | 147 | elif parts[1] == 'aes_hmac': |
|
148 | 148 | decrypted_data = AESCipher( |
|
149 | 149 | ENCRYPTION_KEY, hmac=True, |
|
150 | 150 | strict_verification=enc_strict_mode).decrypt(parts[2]) |
|
151 | 151 | else: |
|
152 | 152 | raise ValueError( |
|
153 | 153 | 'Encryption type part is wrong, must be `aes` ' |
|
154 | 154 | 'or `aes_hmac`, got `%s` instead' % (parts[1])) |
|
155 | 155 | return decrypted_data |
|
156 | 156 | |
|
157 | 157 | |
|
158 | 158 | class BaseModel(object): |
|
159 | 159 | """ |
|
160 | 160 | Base Model for all classes |
|
161 | 161 | """ |
|
162 | 162 | |
|
163 | 163 | @classmethod |
|
164 | 164 | def _get_keys(cls): |
|
165 | 165 | """return column names for this model """ |
|
166 | 166 | return class_mapper(cls).c.keys() |
|
167 | 167 | |
|
168 | 168 | def get_dict(self): |
|
169 | 169 | """ |
|
170 | 170 | return dict with keys and values corresponding |
|
171 | 171 | to this model data """ |
|
172 | 172 | |
|
173 | 173 | d = {} |
|
174 | 174 | for k in self._get_keys(): |
|
175 | 175 | d[k] = getattr(self, k) |
|
176 | 176 | |
|
177 | 177 | # also use __json__() if present to get additional fields |
|
178 | 178 | _json_attr = getattr(self, '__json__', None) |
|
179 | 179 | if _json_attr: |
|
180 | 180 | # update with attributes from __json__ |
|
181 | 181 | if callable(_json_attr): |
|
182 | 182 | _json_attr = _json_attr() |
|
183 | 183 | for k, val in _json_attr.iteritems(): |
|
184 | 184 | d[k] = val |
|
185 | 185 | return d |
|
186 | 186 | |
|
187 | 187 | def get_appstruct(self): |
|
188 | 188 | """return list with keys and values tuples corresponding |
|
189 | 189 | to this model data """ |
|
190 | 190 | |
|
191 | 191 | l = [] |
|
192 | 192 | for k in self._get_keys(): |
|
193 | 193 | l.append((k, getattr(self, k),)) |
|
194 | 194 | return l |
|
195 | 195 | |
|
196 | 196 | def populate_obj(self, populate_dict): |
|
197 | 197 | """populate model with data from given populate_dict""" |
|
198 | 198 | |
|
199 | 199 | for k in self._get_keys(): |
|
200 | 200 | if k in populate_dict: |
|
201 | 201 | setattr(self, k, populate_dict[k]) |
|
202 | 202 | |
|
203 | 203 | @classmethod |
|
204 | 204 | def query(cls): |
|
205 | 205 | return Session().query(cls) |
|
206 | 206 | |
|
207 | 207 | @classmethod |
|
208 | 208 | def get(cls, id_): |
|
209 | 209 | if id_: |
|
210 | 210 | return cls.query().get(id_) |
|
211 | 211 | |
|
212 | 212 | @classmethod |
|
213 | 213 | def get_or_404(cls, id_): |
|
214 | 214 | try: |
|
215 | 215 | id_ = int(id_) |
|
216 | 216 | except (TypeError, ValueError): |
|
217 | 217 | raise HTTPNotFound |
|
218 | 218 | |
|
219 | 219 | res = cls.query().get(id_) |
|
220 | 220 | if not res: |
|
221 | 221 | raise HTTPNotFound |
|
222 | 222 | return res |
|
223 | 223 | |
|
224 | 224 | @classmethod |
|
225 | 225 | def getAll(cls): |
|
226 | 226 | # deprecated and left for backward compatibility |
|
227 | 227 | return cls.get_all() |
|
228 | 228 | |
|
229 | 229 | @classmethod |
|
230 | 230 | def get_all(cls): |
|
231 | 231 | return cls.query().all() |
|
232 | 232 | |
|
233 | 233 | @classmethod |
|
234 | 234 | def delete(cls, id_): |
|
235 | 235 | obj = cls.query().get(id_) |
|
236 | 236 | Session().delete(obj) |
|
237 | 237 | |
|
238 | 238 | @classmethod |
|
239 | 239 | def identity_cache(cls, session, attr_name, value): |
|
240 | 240 | exist_in_session = [] |
|
241 | 241 | for (item_cls, pkey), instance in session.identity_map.items(): |
|
242 | 242 | if cls == item_cls and getattr(instance, attr_name) == value: |
|
243 | 243 | exist_in_session.append(instance) |
|
244 | 244 | if exist_in_session: |
|
245 | 245 | if len(exist_in_session) == 1: |
|
246 | 246 | return exist_in_session[0] |
|
247 | 247 | log.exception( |
|
248 | 248 | 'multiple objects with attr %s and ' |
|
249 | 249 | 'value %s found with same name: %r', |
|
250 | 250 | attr_name, value, exist_in_session) |
|
251 | 251 | |
|
252 | 252 | def __repr__(self): |
|
253 | 253 | if hasattr(self, '__unicode__'): |
|
254 | 254 | # python repr needs to return str |
|
255 | 255 | try: |
|
256 | 256 | return safe_str(self.__unicode__()) |
|
257 | 257 | except UnicodeDecodeError: |
|
258 | 258 | pass |
|
259 | 259 | return '<DB:%s>' % (self.__class__.__name__) |
|
260 | 260 | |
|
261 | 261 | |
|
262 | 262 | class RhodeCodeSetting(Base, BaseModel): |
|
263 | 263 | __tablename__ = 'rhodecode_settings' |
|
264 | 264 | __table_args__ = ( |
|
265 | 265 | UniqueConstraint('app_settings_name'), |
|
266 | 266 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
267 | 267 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
268 | 268 | ) |
|
269 | 269 | |
|
270 | 270 | SETTINGS_TYPES = { |
|
271 | 271 | 'str': safe_str, |
|
272 | 272 | 'int': safe_int, |
|
273 | 273 | 'unicode': safe_unicode, |
|
274 | 274 | 'bool': str2bool, |
|
275 | 275 | 'list': functools.partial(aslist, sep=',') |
|
276 | 276 | } |
|
277 | 277 | DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' |
|
278 | 278 | GLOBAL_CONF_KEY = 'app_settings' |
|
279 | 279 | |
|
280 | 280 | app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
281 | 281 | app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None) |
|
282 | 282 | _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None) |
|
283 | 283 | _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None) |
|
284 | 284 | |
|
285 | 285 | def __init__(self, key='', val='', type='unicode'): |
|
286 | 286 | self.app_settings_name = key |
|
287 | 287 | self.app_settings_type = type |
|
288 | 288 | self.app_settings_value = val |
|
289 | 289 | |
|
290 | 290 | @validates('_app_settings_value') |
|
291 | 291 | def validate_settings_value(self, key, val): |
|
292 | 292 | assert type(val) == unicode |
|
293 | 293 | return val |
|
294 | 294 | |
|
295 | 295 | @hybrid_property |
|
296 | 296 | def app_settings_value(self): |
|
297 | 297 | v = self._app_settings_value |
|
298 | 298 | _type = self.app_settings_type |
|
299 | 299 | if _type: |
|
300 | 300 | _type = self.app_settings_type.split('.')[0] |
|
301 | 301 | # decode the encrypted value |
|
302 | 302 | if 'encrypted' in self.app_settings_type: |
|
303 | 303 | cipher = EncryptedTextValue() |
|
304 | 304 | v = safe_unicode(cipher.process_result_value(v, None)) |
|
305 | 305 | |
|
306 | 306 | converter = self.SETTINGS_TYPES.get(_type) or \ |
|
307 | 307 | self.SETTINGS_TYPES['unicode'] |
|
308 | 308 | return converter(v) |
|
309 | 309 | |
|
310 | 310 | @app_settings_value.setter |
|
311 | 311 | def app_settings_value(self, val): |
|
312 | 312 | """ |
|
313 | 313 | Setter that will always make sure we use unicode in app_settings_value |
|
314 | 314 | |
|
315 | 315 | :param val: |
|
316 | 316 | """ |
|
317 | 317 | val = safe_unicode(val) |
|
318 | 318 | # encode the encrypted value |
|
319 | 319 | if 'encrypted' in self.app_settings_type: |
|
320 | 320 | cipher = EncryptedTextValue() |
|
321 | 321 | val = safe_unicode(cipher.process_bind_param(val, None)) |
|
322 | 322 | self._app_settings_value = val |
|
323 | 323 | |
|
324 | 324 | @hybrid_property |
|
325 | 325 | def app_settings_type(self): |
|
326 | 326 | return self._app_settings_type |
|
327 | 327 | |
|
328 | 328 | @app_settings_type.setter |
|
329 | 329 | def app_settings_type(self, val): |
|
330 | 330 | if val.split('.')[0] not in self.SETTINGS_TYPES: |
|
331 | 331 | raise Exception('type must be one of %s got %s' |
|
332 | 332 | % (self.SETTINGS_TYPES.keys(), val)) |
|
333 | 333 | self._app_settings_type = val |
|
334 | 334 | |
|
335 | 335 | def __unicode__(self): |
|
336 | 336 | return u"<%s('%s:%s[%s]')>" % ( |
|
337 | 337 | self.__class__.__name__, |
|
338 | 338 | self.app_settings_name, self.app_settings_value, |
|
339 | 339 | self.app_settings_type |
|
340 | 340 | ) |
|
341 | 341 | |
|
342 | 342 | |
|
343 | 343 | class RhodeCodeUi(Base, BaseModel): |
|
344 | 344 | __tablename__ = 'rhodecode_ui' |
|
345 | 345 | __table_args__ = ( |
|
346 | 346 | UniqueConstraint('ui_key'), |
|
347 | 347 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
348 | 348 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
349 | 349 | ) |
|
350 | 350 | |
|
351 | 351 | HOOK_REPO_SIZE = 'changegroup.repo_size' |
|
352 | 352 | # HG |
|
353 | 353 | HOOK_PRE_PULL = 'preoutgoing.pre_pull' |
|
354 | 354 | HOOK_PULL = 'outgoing.pull_logger' |
|
355 | 355 | HOOK_PRE_PUSH = 'prechangegroup.pre_push' |
|
356 | 356 | HOOK_PUSH = 'changegroup.push_logger' |
|
357 | 357 | |
|
358 | 358 | # TODO: johbo: Unify way how hooks are configured for git and hg, |
|
359 | 359 | # git part is currently hardcoded. |
|
360 | 360 | |
|
361 | 361 | # SVN PATTERNS |
|
362 | 362 | SVN_BRANCH_ID = 'vcs_svn_branch' |
|
363 | 363 | SVN_TAG_ID = 'vcs_svn_tag' |
|
364 | 364 | |
|
365 | 365 | ui_id = Column( |
|
366 | 366 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
367 | 367 | primary_key=True) |
|
368 | 368 | ui_section = Column( |
|
369 | 369 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
370 | 370 | ui_key = Column( |
|
371 | 371 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
372 | 372 | ui_value = Column( |
|
373 | 373 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
374 | 374 | ui_active = Column( |
|
375 | 375 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
376 | 376 | |
|
377 | 377 | def __repr__(self): |
|
378 | 378 | return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section, |
|
379 | 379 | self.ui_key, self.ui_value) |
|
380 | 380 | |
|
381 | 381 | |
|
382 | 382 | class RepoRhodeCodeSetting(Base, BaseModel): |
|
383 | 383 | __tablename__ = 'repo_rhodecode_settings' |
|
384 | 384 | __table_args__ = ( |
|
385 | 385 | UniqueConstraint( |
|
386 | 386 | 'app_settings_name', 'repository_id', |
|
387 | 387 | name='uq_repo_rhodecode_setting_name_repo_id'), |
|
388 | 388 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
389 | 389 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
390 | 390 | ) |
|
391 | 391 | |
|
392 | 392 | repository_id = Column( |
|
393 | 393 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
394 | 394 | nullable=False) |
|
395 | 395 | app_settings_id = Column( |
|
396 | 396 | "app_settings_id", Integer(), nullable=False, unique=True, |
|
397 | 397 | default=None, primary_key=True) |
|
398 | 398 | app_settings_name = Column( |
|
399 | 399 | "app_settings_name", String(255), nullable=True, unique=None, |
|
400 | 400 | default=None) |
|
401 | 401 | _app_settings_value = Column( |
|
402 | 402 | "app_settings_value", String(4096), nullable=True, unique=None, |
|
403 | 403 | default=None) |
|
404 | 404 | _app_settings_type = Column( |
|
405 | 405 | "app_settings_type", String(255), nullable=True, unique=None, |
|
406 | 406 | default=None) |
|
407 | 407 | |
|
408 | 408 | repository = relationship('Repository') |
|
409 | 409 | |
|
410 | 410 | def __init__(self, repository_id, key='', val='', type='unicode'): |
|
411 | 411 | self.repository_id = repository_id |
|
412 | 412 | self.app_settings_name = key |
|
413 | 413 | self.app_settings_type = type |
|
414 | 414 | self.app_settings_value = val |
|
415 | 415 | |
|
416 | 416 | @validates('_app_settings_value') |
|
417 | 417 | def validate_settings_value(self, key, val): |
|
418 | 418 | assert type(val) == unicode |
|
419 | 419 | return val |
|
420 | 420 | |
|
421 | 421 | @hybrid_property |
|
422 | 422 | def app_settings_value(self): |
|
423 | 423 | v = self._app_settings_value |
|
424 | 424 | type_ = self.app_settings_type |
|
425 | 425 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
426 | 426 | converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode'] |
|
427 | 427 | return converter(v) |
|
428 | 428 | |
|
429 | 429 | @app_settings_value.setter |
|
430 | 430 | def app_settings_value(self, val): |
|
431 | 431 | """ |
|
432 | 432 | Setter that will always make sure we use unicode in app_settings_value |
|
433 | 433 | |
|
434 | 434 | :param val: |
|
435 | 435 | """ |
|
436 | 436 | self._app_settings_value = safe_unicode(val) |
|
437 | 437 | |
|
438 | 438 | @hybrid_property |
|
439 | 439 | def app_settings_type(self): |
|
440 | 440 | return self._app_settings_type |
|
441 | 441 | |
|
442 | 442 | @app_settings_type.setter |
|
443 | 443 | def app_settings_type(self, val): |
|
444 | 444 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
445 | 445 | if val not in SETTINGS_TYPES: |
|
446 | 446 | raise Exception('type must be one of %s got %s' |
|
447 | 447 | % (SETTINGS_TYPES.keys(), val)) |
|
448 | 448 | self._app_settings_type = val |
|
449 | 449 | |
|
450 | 450 | def __unicode__(self): |
|
451 | 451 | return u"<%s('%s:%s:%s[%s]')>" % ( |
|
452 | 452 | self.__class__.__name__, self.repository.repo_name, |
|
453 | 453 | self.app_settings_name, self.app_settings_value, |
|
454 | 454 | self.app_settings_type |
|
455 | 455 | ) |
|
456 | 456 | |
|
457 | 457 | |
|
458 | 458 | class RepoRhodeCodeUi(Base, BaseModel): |
|
459 | 459 | __tablename__ = 'repo_rhodecode_ui' |
|
460 | 460 | __table_args__ = ( |
|
461 | 461 | UniqueConstraint( |
|
462 | 462 | 'repository_id', 'ui_section', 'ui_key', |
|
463 | 463 | name='uq_repo_rhodecode_ui_repository_id_section_key'), |
|
464 | 464 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
465 | 465 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
466 | 466 | ) |
|
467 | 467 | |
|
468 | 468 | repository_id = Column( |
|
469 | 469 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
470 | 470 | nullable=False) |
|
471 | 471 | ui_id = Column( |
|
472 | 472 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
473 | 473 | primary_key=True) |
|
474 | 474 | ui_section = Column( |
|
475 | 475 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
476 | 476 | ui_key = Column( |
|
477 | 477 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
478 | 478 | ui_value = Column( |
|
479 | 479 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
480 | 480 | ui_active = Column( |
|
481 | 481 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
482 | 482 | |
|
483 | 483 | repository = relationship('Repository') |
|
484 | 484 | |
|
485 | 485 | def __repr__(self): |
|
486 | 486 | return '<%s[%s:%s]%s=>%s]>' % ( |
|
487 | 487 | self.__class__.__name__, self.repository.repo_name, |
|
488 | 488 | self.ui_section, self.ui_key, self.ui_value) |
|
489 | 489 | |
|
490 | 490 | |
|
491 | 491 | class User(Base, BaseModel): |
|
492 | 492 | __tablename__ = 'users' |
|
493 | 493 | __table_args__ = ( |
|
494 | 494 | UniqueConstraint('username'), UniqueConstraint('email'), |
|
495 | 495 | Index('u_username_idx', 'username'), |
|
496 | 496 | Index('u_email_idx', 'email'), |
|
497 | 497 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
498 | 498 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
499 | 499 | ) |
|
500 | 500 | DEFAULT_USER = 'default' |
|
501 | 501 | DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org' |
|
502 | 502 | DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}' |
|
503 | 503 | |
|
504 | 504 | user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
505 | 505 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
506 | 506 | password = Column("password", String(255), nullable=True, unique=None, default=None) |
|
507 | 507 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
508 | 508 | admin = Column("admin", Boolean(), nullable=True, unique=None, default=False) |
|
509 | 509 | name = Column("firstname", String(255), nullable=True, unique=None, default=None) |
|
510 | 510 | lastname = Column("lastname", String(255), nullable=True, unique=None, default=None) |
|
511 | 511 | _email = Column("email", String(255), nullable=True, unique=None, default=None) |
|
512 | 512 | last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
513 | 513 | extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None) |
|
514 | 514 | extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None) |
|
515 | 515 | api_key = Column("api_key", String(255), nullable=True, unique=None, default=None) |
|
516 | 516 | inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
517 | 517 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
518 | 518 | _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data |
|
519 | 519 | |
|
520 | 520 | user_log = relationship('UserLog') |
|
521 | 521 | user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all') |
|
522 | 522 | |
|
523 | 523 | repositories = relationship('Repository') |
|
524 | 524 | repository_groups = relationship('RepoGroup') |
|
525 | 525 | user_groups = relationship('UserGroup') |
|
526 | 526 | |
|
527 | 527 | user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all') |
|
528 | 528 | followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all') |
|
529 | 529 | |
|
530 | 530 | repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all') |
|
531 | 531 | repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all') |
|
532 | 532 | user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all') |
|
533 | 533 | |
|
534 | 534 | group_member = relationship('UserGroupMember', cascade='all') |
|
535 | 535 | |
|
536 | 536 | notifications = relationship('UserNotification', cascade='all') |
|
537 | 537 | # notifications assigned to this user |
|
538 | 538 | user_created_notifications = relationship('Notification', cascade='all') |
|
539 | 539 | # comments created by this user |
|
540 | 540 | user_comments = relationship('ChangesetComment', cascade='all') |
|
541 | 541 | # user profile extra info |
|
542 | 542 | user_emails = relationship('UserEmailMap', cascade='all') |
|
543 | 543 | user_ip_map = relationship('UserIpMap', cascade='all') |
|
544 | 544 | user_auth_tokens = relationship('UserApiKeys', cascade='all') |
|
545 | 545 | # gists |
|
546 | 546 | user_gists = relationship('Gist', cascade='all') |
|
547 | 547 | # user pull requests |
|
548 | 548 | user_pull_requests = relationship('PullRequest', cascade='all') |
|
549 | 549 | # external identities |
|
550 | 550 | extenal_identities = relationship( |
|
551 | 551 | 'ExternalIdentity', |
|
552 | 552 | primaryjoin="User.user_id==ExternalIdentity.local_user_id", |
|
553 | 553 | cascade='all') |
|
554 | 554 | |
|
555 | 555 | def __unicode__(self): |
|
556 | 556 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
557 | 557 | self.user_id, self.username) |
|
558 | 558 | |
|
559 | 559 | @hybrid_property |
|
560 | 560 | def email(self): |
|
561 | 561 | return self._email |
|
562 | 562 | |
|
563 | 563 | @email.setter |
|
564 | 564 | def email(self, val): |
|
565 | 565 | self._email = val.lower() if val else None |
|
566 | 566 | |
|
567 | 567 | @property |
|
568 | 568 | def firstname(self): |
|
569 | 569 | # alias for future |
|
570 | 570 | return self.name |
|
571 | 571 | |
|
572 | 572 | @property |
|
573 | 573 | def emails(self): |
|
574 | 574 | other = UserEmailMap.query().filter(UserEmailMap.user==self).all() |
|
575 | 575 | return [self.email] + [x.email for x in other] |
|
576 | 576 | |
|
577 | 577 | @property |
|
578 | 578 | def auth_tokens(self): |
|
579 | 579 | return [self.api_key] + [x.api_key for x in self.extra_auth_tokens] |
|
580 | 580 | |
|
581 | 581 | @property |
|
582 | 582 | def extra_auth_tokens(self): |
|
583 | 583 | return UserApiKeys.query().filter(UserApiKeys.user == self).all() |
|
584 | 584 | |
|
585 | 585 | @property |
|
586 | 586 | def feed_token(self): |
|
587 | 587 | feed_tokens = UserApiKeys.query()\ |
|
588 | 588 | .filter(UserApiKeys.user == self)\ |
|
589 | 589 | .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED)\ |
|
590 | 590 | .all() |
|
591 | 591 | if feed_tokens: |
|
592 | 592 | return feed_tokens[0].api_key |
|
593 | 593 | else: |
|
594 | 594 | # use the main token so we don't end up with nothing... |
|
595 | 595 | return self.api_key |
|
596 | 596 | |
|
597 | 597 | @classmethod |
|
598 | 598 | def extra_valid_auth_tokens(cls, user, role=None): |
|
599 | 599 | tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\ |
|
600 | 600 | .filter(or_(UserApiKeys.expires == -1, |
|
601 | 601 | UserApiKeys.expires >= time.time())) |
|
602 | 602 | if role: |
|
603 | 603 | tokens = tokens.filter(or_(UserApiKeys.role == role, |
|
604 | 604 | UserApiKeys.role == UserApiKeys.ROLE_ALL)) |
|
605 | 605 | return tokens.all() |
|
606 | 606 | |
|
607 | 607 | @property |
|
608 | 608 | def ip_addresses(self): |
|
609 | 609 | ret = UserIpMap.query().filter(UserIpMap.user == self).all() |
|
610 | 610 | return [x.ip_addr for x in ret] |
|
611 | 611 | |
|
612 | 612 | @property |
|
613 | 613 | def username_and_name(self): |
|
614 | 614 | return '%s (%s %s)' % (self.username, self.firstname, self.lastname) |
|
615 | 615 | |
|
616 | 616 | @property |
|
617 | 617 | def username_or_name_or_email(self): |
|
618 | 618 | full_name = self.full_name if self.full_name is not ' ' else None |
|
619 | 619 | return self.username or full_name or self.email |
|
620 | 620 | |
|
621 | 621 | @property |
|
622 | 622 | def full_name(self): |
|
623 | 623 | return '%s %s' % (self.firstname, self.lastname) |
|
624 | 624 | |
|
625 | 625 | @property |
|
626 | 626 | def full_name_or_username(self): |
|
627 | 627 | return ('%s %s' % (self.firstname, self.lastname) |
|
628 | 628 | if (self.firstname and self.lastname) else self.username) |
|
629 | 629 | |
|
630 | 630 | @property |
|
631 | 631 | def full_contact(self): |
|
632 | 632 | return '%s %s <%s>' % (self.firstname, self.lastname, self.email) |
|
633 | 633 | |
|
634 | 634 | @property |
|
635 | 635 | def short_contact(self): |
|
636 | 636 | return '%s %s' % (self.firstname, self.lastname) |
|
637 | 637 | |
|
638 | 638 | @property |
|
639 | 639 | def is_admin(self): |
|
640 | 640 | return self.admin |
|
641 | 641 | |
|
642 | 642 | @property |
|
643 | 643 | def AuthUser(self): |
|
644 | 644 | """ |
|
645 | 645 | Returns instance of AuthUser for this user |
|
646 | 646 | """ |
|
647 | 647 | from rhodecode.lib.auth import AuthUser |
|
648 | 648 | return AuthUser(user_id=self.user_id, api_key=self.api_key, |
|
649 | 649 | username=self.username) |
|
650 | 650 | |
|
651 | 651 | @hybrid_property |
|
652 | 652 | def user_data(self): |
|
653 | 653 | if not self._user_data: |
|
654 | 654 | return {} |
|
655 | 655 | |
|
656 | 656 | try: |
|
657 | 657 | return json.loads(self._user_data) |
|
658 | 658 | except TypeError: |
|
659 | 659 | return {} |
|
660 | 660 | |
|
661 | 661 | @user_data.setter |
|
662 | 662 | def user_data(self, val): |
|
663 | 663 | if not isinstance(val, dict): |
|
664 | 664 | raise Exception('user_data must be dict, got %s' % type(val)) |
|
665 | 665 | try: |
|
666 | 666 | self._user_data = json.dumps(val) |
|
667 | 667 | except Exception: |
|
668 | 668 | log.error(traceback.format_exc()) |
|
669 | 669 | |
|
670 | 670 | @classmethod |
|
671 | 671 | def get_by_username(cls, username, case_insensitive=False, |
|
672 | 672 | cache=False, identity_cache=False): |
|
673 | 673 | session = Session() |
|
674 | 674 | |
|
675 | 675 | if case_insensitive: |
|
676 | 676 | q = cls.query().filter( |
|
677 | 677 | func.lower(cls.username) == func.lower(username)) |
|
678 | 678 | else: |
|
679 | 679 | q = cls.query().filter(cls.username == username) |
|
680 | 680 | |
|
681 | 681 | if cache: |
|
682 | 682 | if identity_cache: |
|
683 | 683 | val = cls.identity_cache(session, 'username', username) |
|
684 | 684 | if val: |
|
685 | 685 | return val |
|
686 | 686 | else: |
|
687 | 687 | q = q.options( |
|
688 | 688 | FromCache("sql_cache_short", |
|
689 | 689 | "get_user_by_name_%s" % _hash_key(username))) |
|
690 | 690 | |
|
691 | 691 | return q.scalar() |
|
692 | 692 | |
|
693 | 693 | @classmethod |
|
694 | 694 | def get_by_auth_token(cls, auth_token, cache=False, fallback=True): |
|
695 | 695 | q = cls.query().filter(cls.api_key == auth_token) |
|
696 | 696 | |
|
697 | 697 | if cache: |
|
698 | 698 | q = q.options(FromCache("sql_cache_short", |
|
699 | 699 | "get_auth_token_%s" % auth_token)) |
|
700 | 700 | res = q.scalar() |
|
701 | 701 | |
|
702 | 702 | if fallback and not res: |
|
703 | 703 | #fallback to additional keys |
|
704 | 704 | _res = UserApiKeys.query()\ |
|
705 | 705 | .filter(UserApiKeys.api_key == auth_token)\ |
|
706 | 706 | .filter(or_(UserApiKeys.expires == -1, |
|
707 | 707 | UserApiKeys.expires >= time.time()))\ |
|
708 | 708 | .first() |
|
709 | 709 | if _res: |
|
710 | 710 | res = _res.user |
|
711 | 711 | return res |
|
712 | 712 | |
|
713 | 713 | @classmethod |
|
714 | 714 | def get_by_email(cls, email, case_insensitive=False, cache=False): |
|
715 | 715 | |
|
716 | 716 | if case_insensitive: |
|
717 | 717 | q = cls.query().filter(func.lower(cls.email) == func.lower(email)) |
|
718 | 718 | |
|
719 | 719 | else: |
|
720 | 720 | q = cls.query().filter(cls.email == email) |
|
721 | 721 | |
|
722 | 722 | if cache: |
|
723 | 723 | q = q.options(FromCache("sql_cache_short", |
|
724 | 724 | "get_email_key_%s" % email)) |
|
725 | 725 | |
|
726 | 726 | ret = q.scalar() |
|
727 | 727 | if ret is None: |
|
728 | 728 | q = UserEmailMap.query() |
|
729 | 729 | # try fetching in alternate email map |
|
730 | 730 | if case_insensitive: |
|
731 | 731 | q = q.filter(func.lower(UserEmailMap.email) == func.lower(email)) |
|
732 | 732 | else: |
|
733 | 733 | q = q.filter(UserEmailMap.email == email) |
|
734 | 734 | q = q.options(joinedload(UserEmailMap.user)) |
|
735 | 735 | if cache: |
|
736 | 736 | q = q.options(FromCache("sql_cache_short", |
|
737 | 737 | "get_email_map_key_%s" % email)) |
|
738 | 738 | ret = getattr(q.scalar(), 'user', None) |
|
739 | 739 | |
|
740 | 740 | return ret |
|
741 | 741 | |
|
742 | 742 | @classmethod |
|
743 | 743 | def get_from_cs_author(cls, author): |
|
744 | 744 | """ |
|
745 | 745 | Tries to get User objects out of commit author string |
|
746 | 746 | |
|
747 | 747 | :param author: |
|
748 | 748 | """ |
|
749 | 749 | from rhodecode.lib.helpers import email, author_name |
|
750 | 750 | # Valid email in the attribute passed, see if they're in the system |
|
751 | 751 | _email = email(author) |
|
752 | 752 | if _email: |
|
753 | 753 | user = cls.get_by_email(_email, case_insensitive=True) |
|
754 | 754 | if user: |
|
755 | 755 | return user |
|
756 | 756 | # Maybe we can match by username? |
|
757 | 757 | _author = author_name(author) |
|
758 | 758 | user = cls.get_by_username(_author, case_insensitive=True) |
|
759 | 759 | if user: |
|
760 | 760 | return user |
|
761 | 761 | |
|
762 | 762 | def update_userdata(self, **kwargs): |
|
763 | 763 | usr = self |
|
764 | 764 | old = usr.user_data |
|
765 | 765 | old.update(**kwargs) |
|
766 | 766 | usr.user_data = old |
|
767 | 767 | Session().add(usr) |
|
768 | 768 | log.debug('updated userdata with ', kwargs) |
|
769 | 769 | |
|
770 | 770 | def update_lastlogin(self): |
|
771 | 771 | """Update user lastlogin""" |
|
772 | 772 | self.last_login = datetime.datetime.now() |
|
773 | 773 | Session().add(self) |
|
774 | 774 | log.debug('updated user %s lastlogin', self.username) |
|
775 | 775 | |
|
776 | 776 | def update_lastactivity(self): |
|
777 | 777 | """Update user lastactivity""" |
|
778 | 778 | usr = self |
|
779 | 779 | old = usr.user_data |
|
780 | 780 | old.update({'last_activity': time.time()}) |
|
781 | 781 | usr.user_data = old |
|
782 | 782 | Session().add(usr) |
|
783 | 783 | log.debug('updated user %s lastactivity', usr.username) |
|
784 | 784 | |
|
785 | 785 | def update_password(self, new_password, change_api_key=False): |
|
786 | 786 | from rhodecode.lib.auth import get_crypt_password,generate_auth_token |
|
787 | 787 | |
|
788 | 788 | self.password = get_crypt_password(new_password) |
|
789 | 789 | if change_api_key: |
|
790 | 790 | self.api_key = generate_auth_token(self.username) |
|
791 | 791 | Session().add(self) |
|
792 | 792 | |
|
793 | 793 | @classmethod |
|
794 | 794 | def get_first_super_admin(cls): |
|
795 | 795 | user = User.query().filter(User.admin == true()).first() |
|
796 | 796 | if user is None: |
|
797 | 797 | raise Exception('FATAL: Missing administrative account!') |
|
798 | 798 | return user |
|
799 | 799 | |
|
800 | 800 | @classmethod |
|
801 | 801 | def get_all_super_admins(cls): |
|
802 | 802 | """ |
|
803 | 803 | Returns all admin accounts sorted by username |
|
804 | 804 | """ |
|
805 | 805 | return User.query().filter(User.admin == true())\ |
|
806 | 806 | .order_by(User.username.asc()).all() |
|
807 | 807 | |
|
808 | 808 | @classmethod |
|
809 | 809 | def get_default_user(cls, cache=False): |
|
810 | 810 | user = User.get_by_username(User.DEFAULT_USER, cache=cache) |
|
811 | 811 | if user is None: |
|
812 | 812 | raise Exception('FATAL: Missing default account!') |
|
813 | 813 | return user |
|
814 | 814 | |
|
815 | 815 | def _get_default_perms(self, user, suffix=''): |
|
816 | 816 | from rhodecode.model.permission import PermissionModel |
|
817 | 817 | return PermissionModel().get_default_perms(user.user_perms, suffix) |
|
818 | 818 | |
|
819 | 819 | def get_default_perms(self, suffix=''): |
|
820 | 820 | return self._get_default_perms(self, suffix) |
|
821 | 821 | |
|
822 | 822 | def get_api_data(self, include_secrets=False, details='full'): |
|
823 | 823 | """ |
|
824 | 824 | Common function for generating user related data for API |
|
825 | 825 | |
|
826 | 826 | :param include_secrets: By default secrets in the API data will be replaced |
|
827 | 827 | by a placeholder value to prevent exposing this data by accident. In case |
|
828 | 828 | this data shall be exposed, set this flag to ``True``. |
|
829 | 829 | |
|
830 | 830 | :param details: details can be 'basic|full' basic gives only a subset of |
|
831 | 831 | the available user information that includes user_id, name and emails. |
|
832 | 832 | """ |
|
833 | 833 | user = self |
|
834 | 834 | user_data = self.user_data |
|
835 | 835 | data = { |
|
836 | 836 | 'user_id': user.user_id, |
|
837 | 837 | 'username': user.username, |
|
838 | 838 | 'firstname': user.name, |
|
839 | 839 | 'lastname': user.lastname, |
|
840 | 840 | 'email': user.email, |
|
841 | 841 | 'emails': user.emails, |
|
842 | 842 | } |
|
843 | 843 | if details == 'basic': |
|
844 | 844 | return data |
|
845 | 845 | |
|
846 | 846 | api_key_length = 40 |
|
847 | 847 | api_key_replacement = '*' * api_key_length |
|
848 | 848 | |
|
849 | 849 | extras = { |
|
850 | 850 | 'api_key': api_key_replacement, |
|
851 | 851 | 'api_keys': [api_key_replacement], |
|
852 | 852 | 'active': user.active, |
|
853 | 853 | 'admin': user.admin, |
|
854 | 854 | 'extern_type': user.extern_type, |
|
855 | 855 | 'extern_name': user.extern_name, |
|
856 | 856 | 'last_login': user.last_login, |
|
857 | 857 | 'ip_addresses': user.ip_addresses, |
|
858 | 858 | 'language': user_data.get('language') |
|
859 | 859 | } |
|
860 | 860 | data.update(extras) |
|
861 | 861 | |
|
862 | 862 | if include_secrets: |
|
863 | 863 | data['api_key'] = user.api_key |
|
864 | 864 | data['api_keys'] = user.auth_tokens |
|
865 | 865 | return data |
|
866 | 866 | |
|
867 | 867 | def __json__(self): |
|
868 | 868 | data = { |
|
869 | 869 | 'full_name': self.full_name, |
|
870 | 870 | 'full_name_or_username': self.full_name_or_username, |
|
871 | 871 | 'short_contact': self.short_contact, |
|
872 | 872 | 'full_contact': self.full_contact, |
|
873 | 873 | } |
|
874 | 874 | data.update(self.get_api_data()) |
|
875 | 875 | return data |
|
876 | 876 | |
|
877 | 877 | |
|
878 | 878 | class UserApiKeys(Base, BaseModel): |
|
879 | 879 | __tablename__ = 'user_api_keys' |
|
880 | 880 | __table_args__ = ( |
|
881 | 881 | Index('uak_api_key_idx', 'api_key'), |
|
882 | 882 | Index('uak_api_key_expires_idx', 'api_key', 'expires'), |
|
883 | 883 | UniqueConstraint('api_key'), |
|
884 | 884 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
885 | 885 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
886 | 886 | ) |
|
887 | 887 | __mapper_args__ = {} |
|
888 | 888 | |
|
889 | 889 | # ApiKey role |
|
890 | 890 | ROLE_ALL = 'token_role_all' |
|
891 | 891 | ROLE_HTTP = 'token_role_http' |
|
892 | 892 | ROLE_VCS = 'token_role_vcs' |
|
893 | 893 | ROLE_API = 'token_role_api' |
|
894 | 894 | ROLE_FEED = 'token_role_feed' |
|
895 | 895 | ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED] |
|
896 | 896 | |
|
897 | 897 | user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
898 | 898 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
899 | 899 | api_key = Column("api_key", String(255), nullable=False, unique=True) |
|
900 | 900 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
901 | 901 | expires = Column('expires', Float(53), nullable=False) |
|
902 | 902 | role = Column('role', String(255), nullable=True) |
|
903 | 903 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
904 | 904 | |
|
905 | 905 | user = relationship('User', lazy='joined') |
|
906 | 906 | |
|
907 | 907 | @classmethod |
|
908 | 908 | def _get_role_name(cls, role): |
|
909 | 909 | return { |
|
910 | 910 | cls.ROLE_ALL: _('all'), |
|
911 | 911 | cls.ROLE_HTTP: _('http/web interface'), |
|
912 | 912 | cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'), |
|
913 | 913 | cls.ROLE_API: _('api calls'), |
|
914 | 914 | cls.ROLE_FEED: _('feed access'), |
|
915 | 915 | }.get(role, role) |
|
916 | 916 | |
|
917 | 917 | @property |
|
918 | 918 | def expired(self): |
|
919 | 919 | if self.expires == -1: |
|
920 | 920 | return False |
|
921 | 921 | return time.time() > self.expires |
|
922 | 922 | |
|
923 | 923 | @property |
|
924 | 924 | def role_humanized(self): |
|
925 | 925 | return self._get_role_name(self.role) |
|
926 | 926 | |
|
927 | 927 | |
|
928 | 928 | class UserEmailMap(Base, BaseModel): |
|
929 | 929 | __tablename__ = 'user_email_map' |
|
930 | 930 | __table_args__ = ( |
|
931 | 931 | Index('uem_email_idx', 'email'), |
|
932 | 932 | UniqueConstraint('email'), |
|
933 | 933 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
934 | 934 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
935 | 935 | ) |
|
936 | 936 | __mapper_args__ = {} |
|
937 | 937 | |
|
938 | 938 | email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
939 | 939 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
940 | 940 | _email = Column("email", String(255), nullable=True, unique=False, default=None) |
|
941 | 941 | user = relationship('User', lazy='joined') |
|
942 | 942 | |
|
943 | 943 | @validates('_email') |
|
944 | 944 | def validate_email(self, key, email): |
|
945 | 945 | # check if this email is not main one |
|
946 | 946 | main_email = Session().query(User).filter(User.email == email).scalar() |
|
947 | 947 | if main_email is not None: |
|
948 | 948 | raise AttributeError('email %s is present is user table' % email) |
|
949 | 949 | return email |
|
950 | 950 | |
|
951 | 951 | @hybrid_property |
|
952 | 952 | def email(self): |
|
953 | 953 | return self._email |
|
954 | 954 | |
|
955 | 955 | @email.setter |
|
956 | 956 | def email(self, val): |
|
957 | 957 | self._email = val.lower() if val else None |
|
958 | 958 | |
|
959 | 959 | |
|
960 | 960 | class UserIpMap(Base, BaseModel): |
|
961 | 961 | __tablename__ = 'user_ip_map' |
|
962 | 962 | __table_args__ = ( |
|
963 | 963 | UniqueConstraint('user_id', 'ip_addr'), |
|
964 | 964 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
965 | 965 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
966 | 966 | ) |
|
967 | 967 | __mapper_args__ = {} |
|
968 | 968 | |
|
969 | 969 | ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
970 | 970 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
971 | 971 | ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None) |
|
972 | 972 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
973 | 973 | description = Column("description", String(10000), nullable=True, unique=None, default=None) |
|
974 | 974 | user = relationship('User', lazy='joined') |
|
975 | 975 | |
|
976 | 976 | @classmethod |
|
977 | 977 | def _get_ip_range(cls, ip_addr): |
|
978 | 978 | net = ipaddress.ip_network(ip_addr, strict=False) |
|
979 | 979 | return [str(net.network_address), str(net.broadcast_address)] |
|
980 | 980 | |
|
981 | 981 | def __json__(self): |
|
982 | 982 | return { |
|
983 | 983 | 'ip_addr': self.ip_addr, |
|
984 | 984 | 'ip_range': self._get_ip_range(self.ip_addr), |
|
985 | 985 | } |
|
986 | 986 | |
|
987 | 987 | def __unicode__(self): |
|
988 | 988 | return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__, |
|
989 | 989 | self.user_id, self.ip_addr) |
|
990 | 990 | |
|
991 | 991 | class UserLog(Base, BaseModel): |
|
992 | 992 | __tablename__ = 'user_logs' |
|
993 | 993 | __table_args__ = ( |
|
994 | 994 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
995 | 995 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
996 | 996 | ) |
|
997 | 997 | user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
998 | 998 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
999 | 999 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
1000 | 1000 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True) |
|
1001 | 1001 | repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None) |
|
1002 | 1002 | user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None) |
|
1003 | 1003 | action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None) |
|
1004 | 1004 | action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
1005 | 1005 | |
|
1006 | 1006 | def __unicode__(self): |
|
1007 | 1007 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
1008 | 1008 | self.repository_name, |
|
1009 | 1009 | self.action) |
|
1010 | 1010 | |
|
1011 | 1011 | @property |
|
1012 | 1012 | def action_as_day(self): |
|
1013 | 1013 | return datetime.date(*self.action_date.timetuple()[:3]) |
|
1014 | 1014 | |
|
1015 | 1015 | user = relationship('User') |
|
1016 | 1016 | repository = relationship('Repository', cascade='') |
|
1017 | 1017 | |
|
1018 | 1018 | |
|
1019 | 1019 | class UserGroup(Base, BaseModel): |
|
1020 | 1020 | __tablename__ = 'users_groups' |
|
1021 | 1021 | __table_args__ = ( |
|
1022 | 1022 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
1023 | 1023 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
1024 | 1024 | ) |
|
1025 | 1025 | |
|
1026 | 1026 | users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1027 | 1027 | users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None) |
|
1028 | 1028 | user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None) |
|
1029 | 1029 | users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None) |
|
1030 | 1030 | inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
1031 | 1031 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
1032 | 1032 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1033 | 1033 | _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data |
|
1034 | 1034 | |
|
1035 | 1035 | members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined") |
|
1036 | 1036 | users_group_to_perm = relationship('UserGroupToPerm', cascade='all') |
|
1037 | 1037 | users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1038 | 1038 | users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
1039 | 1039 | user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all') |
|
1040 | 1040 | user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all') |
|
1041 | 1041 | |
|
1042 | 1042 | user = relationship('User') |
|
1043 | 1043 | |
|
1044 | 1044 | @hybrid_property |
|
1045 | 1045 | def group_data(self): |
|
1046 | 1046 | if not self._group_data: |
|
1047 | 1047 | return {} |
|
1048 | 1048 | |
|
1049 | 1049 | try: |
|
1050 | 1050 | return json.loads(self._group_data) |
|
1051 | 1051 | except TypeError: |
|
1052 | 1052 | return {} |
|
1053 | 1053 | |
|
1054 | 1054 | @group_data.setter |
|
1055 | 1055 | def group_data(self, val): |
|
1056 | 1056 | try: |
|
1057 | 1057 | self._group_data = json.dumps(val) |
|
1058 | 1058 | except Exception: |
|
1059 | 1059 | log.error(traceback.format_exc()) |
|
1060 | 1060 | |
|
1061 | 1061 | def __unicode__(self): |
|
1062 | 1062 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
1063 | 1063 | self.users_group_id, |
|
1064 | 1064 | self.users_group_name) |
|
1065 | 1065 | |
|
1066 | 1066 | @classmethod |
|
1067 | 1067 | def get_by_group_name(cls, group_name, cache=False, |
|
1068 | 1068 | case_insensitive=False): |
|
1069 | 1069 | if case_insensitive: |
|
1070 | 1070 | q = cls.query().filter(func.lower(cls.users_group_name) == |
|
1071 | 1071 | func.lower(group_name)) |
|
1072 | 1072 | |
|
1073 | 1073 | else: |
|
1074 | 1074 | q = cls.query().filter(cls.users_group_name == group_name) |
|
1075 | 1075 | if cache: |
|
1076 | 1076 | q = q.options(FromCache( |
|
1077 | 1077 | "sql_cache_short", |
|
1078 | 1078 | "get_group_%s" % _hash_key(group_name))) |
|
1079 | 1079 | return q.scalar() |
|
1080 | 1080 | |
|
1081 | 1081 | @classmethod |
|
1082 | 1082 | def get(cls, user_group_id, cache=False): |
|
1083 | 1083 | user_group = cls.query() |
|
1084 | 1084 | if cache: |
|
1085 | 1085 | user_group = user_group.options(FromCache("sql_cache_short", |
|
1086 | 1086 | "get_users_group_%s" % user_group_id)) |
|
1087 | 1087 | return user_group.get(user_group_id) |
|
1088 | 1088 | |
|
1089 | 1089 | def permissions(self, with_admins=True, with_owner=True): |
|
1090 | 1090 | q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self) |
|
1091 | 1091 | q = q.options(joinedload(UserUserGroupToPerm.user_group), |
|
1092 | 1092 | joinedload(UserUserGroupToPerm.user), |
|
1093 | 1093 | joinedload(UserUserGroupToPerm.permission),) |
|
1094 | 1094 | |
|
1095 | 1095 | # get owners and admins and permissions. We do a trick of re-writing |
|
1096 | 1096 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1097 | 1097 | # has a global reference and changing one object propagates to all |
|
1098 | 1098 | # others. This means if admin is also an owner admin_row that change |
|
1099 | 1099 | # would propagate to both objects |
|
1100 | 1100 | perm_rows = [] |
|
1101 | 1101 | for _usr in q.all(): |
|
1102 | 1102 | usr = AttributeDict(_usr.user.get_dict()) |
|
1103 | 1103 | usr.permission = _usr.permission.permission_name |
|
1104 | 1104 | perm_rows.append(usr) |
|
1105 | 1105 | |
|
1106 | 1106 | # filter the perm rows by 'default' first and then sort them by |
|
1107 | 1107 | # admin,write,read,none permissions sorted again alphabetically in |
|
1108 | 1108 | # each group |
|
1109 | 1109 | perm_rows = sorted(perm_rows, key=display_sort) |
|
1110 | 1110 | |
|
1111 | 1111 | _admin_perm = 'usergroup.admin' |
|
1112 | 1112 | owner_row = [] |
|
1113 | 1113 | if with_owner: |
|
1114 | 1114 | usr = AttributeDict(self.user.get_dict()) |
|
1115 | 1115 | usr.owner_row = True |
|
1116 | 1116 | usr.permission = _admin_perm |
|
1117 | 1117 | owner_row.append(usr) |
|
1118 | 1118 | |
|
1119 | 1119 | super_admin_rows = [] |
|
1120 | 1120 | if with_admins: |
|
1121 | 1121 | for usr in User.get_all_super_admins(): |
|
1122 | 1122 | # if this admin is also owner, don't double the record |
|
1123 | 1123 | if usr.user_id == owner_row[0].user_id: |
|
1124 | 1124 | owner_row[0].admin_row = True |
|
1125 | 1125 | else: |
|
1126 | 1126 | usr = AttributeDict(usr.get_dict()) |
|
1127 | 1127 | usr.admin_row = True |
|
1128 | 1128 | usr.permission = _admin_perm |
|
1129 | 1129 | super_admin_rows.append(usr) |
|
1130 | 1130 | |
|
1131 | 1131 | return super_admin_rows + owner_row + perm_rows |
|
1132 | 1132 | |
|
1133 | 1133 | def permission_user_groups(self): |
|
1134 | 1134 | q = UserGroupUserGroupToPerm.query().filter(UserGroupUserGroupToPerm.target_user_group == self) |
|
1135 | 1135 | q = q.options(joinedload(UserGroupUserGroupToPerm.user_group), |
|
1136 | 1136 | joinedload(UserGroupUserGroupToPerm.target_user_group), |
|
1137 | 1137 | joinedload(UserGroupUserGroupToPerm.permission),) |
|
1138 | 1138 | |
|
1139 | 1139 | perm_rows = [] |
|
1140 | 1140 | for _user_group in q.all(): |
|
1141 | 1141 | usr = AttributeDict(_user_group.user_group.get_dict()) |
|
1142 | 1142 | usr.permission = _user_group.permission.permission_name |
|
1143 | 1143 | perm_rows.append(usr) |
|
1144 | 1144 | |
|
1145 | 1145 | return perm_rows |
|
1146 | 1146 | |
|
1147 | 1147 | def _get_default_perms(self, user_group, suffix=''): |
|
1148 | 1148 | from rhodecode.model.permission import PermissionModel |
|
1149 | 1149 | return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix) |
|
1150 | 1150 | |
|
1151 | 1151 | def get_default_perms(self, suffix=''): |
|
1152 | 1152 | return self._get_default_perms(self, suffix) |
|
1153 | 1153 | |
|
1154 | 1154 | def get_api_data(self, with_group_members=True, include_secrets=False): |
|
1155 | 1155 | """ |
|
1156 | 1156 | :param include_secrets: See :meth:`User.get_api_data`, this parameter is |
|
1157 | 1157 | basically forwarded. |
|
1158 | 1158 | |
|
1159 | 1159 | """ |
|
1160 | 1160 | user_group = self |
|
1161 | 1161 | |
|
1162 | 1162 | data = { |
|
1163 | 1163 | 'users_group_id': user_group.users_group_id, |
|
1164 | 1164 | 'group_name': user_group.users_group_name, |
|
1165 | 1165 | 'group_description': user_group.user_group_description, |
|
1166 | 1166 | 'active': user_group.users_group_active, |
|
1167 | 1167 | 'owner': user_group.user.username, |
|
1168 | 1168 | } |
|
1169 | 1169 | if with_group_members: |
|
1170 | 1170 | users = [] |
|
1171 | 1171 | for user in user_group.members: |
|
1172 | 1172 | user = user.user |
|
1173 | 1173 | users.append(user.get_api_data(include_secrets=include_secrets)) |
|
1174 | 1174 | data['users'] = users |
|
1175 | 1175 | |
|
1176 | 1176 | return data |
|
1177 | 1177 | |
|
1178 | 1178 | |
|
1179 | 1179 | class UserGroupMember(Base, BaseModel): |
|
1180 | 1180 | __tablename__ = 'users_groups_members' |
|
1181 | 1181 | __table_args__ = ( |
|
1182 | 1182 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
1183 | 1183 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
1184 | 1184 | ) |
|
1185 | 1185 | |
|
1186 | 1186 | users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1187 | 1187 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
1188 | 1188 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
1189 | 1189 | |
|
1190 | 1190 | user = relationship('User', lazy='joined') |
|
1191 | 1191 | users_group = relationship('UserGroup') |
|
1192 | 1192 | |
|
1193 | 1193 | def __init__(self, gr_id='', u_id=''): |
|
1194 | 1194 | self.users_group_id = gr_id |
|
1195 | 1195 | self.user_id = u_id |
|
1196 | 1196 | |
|
1197 | 1197 | |
|
1198 | 1198 | class RepositoryField(Base, BaseModel): |
|
1199 | 1199 | __tablename__ = 'repositories_fields' |
|
1200 | 1200 | __table_args__ = ( |
|
1201 | 1201 | UniqueConstraint('repository_id', 'field_key'), # no-multi field |
|
1202 | 1202 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
1203 | 1203 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
1204 | 1204 | ) |
|
1205 | 1205 | PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields |
|
1206 | 1206 | |
|
1207 | 1207 | repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1208 | 1208 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
1209 | 1209 | field_key = Column("field_key", String(250)) |
|
1210 | 1210 | field_label = Column("field_label", String(1024), nullable=False) |
|
1211 | 1211 | field_value = Column("field_value", String(10000), nullable=False) |
|
1212 | 1212 | field_desc = Column("field_desc", String(1024), nullable=False) |
|
1213 | 1213 | field_type = Column("field_type", String(255), nullable=False, unique=None) |
|
1214 | 1214 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1215 | 1215 | |
|
1216 | 1216 | repository = relationship('Repository') |
|
1217 | 1217 | |
|
1218 | 1218 | @property |
|
1219 | 1219 | def field_key_prefixed(self): |
|
1220 | 1220 | return 'ex_%s' % self.field_key |
|
1221 | 1221 | |
|
1222 | 1222 | @classmethod |
|
1223 | 1223 | def un_prefix_key(cls, key): |
|
1224 | 1224 | if key.startswith(cls.PREFIX): |
|
1225 | 1225 | return key[len(cls.PREFIX):] |
|
1226 | 1226 | return key |
|
1227 | 1227 | |
|
1228 | 1228 | @classmethod |
|
1229 | 1229 | def get_by_key_name(cls, key, repo): |
|
1230 | 1230 | row = cls.query()\ |
|
1231 | 1231 | .filter(cls.repository == repo)\ |
|
1232 | 1232 | .filter(cls.field_key == key).scalar() |
|
1233 | 1233 | return row |
|
1234 | 1234 | |
|
1235 | 1235 | |
|
1236 | 1236 | class Repository(Base, BaseModel): |
|
1237 | 1237 | __tablename__ = 'repositories' |
|
1238 | 1238 | __table_args__ = ( |
|
1239 | 1239 | Index('r_repo_name_idx', 'repo_name', mysql_length=255), |
|
1240 | 1240 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
1241 | 1241 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
1242 | 1242 | ) |
|
1243 | 1243 | DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}' |
|
1244 | 1244 | DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}' |
|
1245 | 1245 | |
|
1246 | 1246 | STATE_CREATED = 'repo_state_created' |
|
1247 | 1247 | STATE_PENDING = 'repo_state_pending' |
|
1248 | 1248 | STATE_ERROR = 'repo_state_error' |
|
1249 | 1249 | |
|
1250 | 1250 | LOCK_AUTOMATIC = 'lock_auto' |
|
1251 | 1251 | LOCK_API = 'lock_api' |
|
1252 | 1252 | LOCK_WEB = 'lock_web' |
|
1253 | 1253 | LOCK_PULL = 'lock_pull' |
|
1254 | 1254 | |
|
1255 | 1255 | NAME_SEP = URL_SEP |
|
1256 | 1256 | |
|
1257 | 1257 | repo_id = Column( |
|
1258 | 1258 | "repo_id", Integer(), nullable=False, unique=True, default=None, |
|
1259 | 1259 | primary_key=True) |
|
1260 | 1260 | _repo_name = Column( |
|
1261 | 1261 | "repo_name", Text(), nullable=False, default=None) |
|
1262 | 1262 | _repo_name_hash = Column( |
|
1263 | 1263 | "repo_name_hash", String(255), nullable=False, unique=True) |
|
1264 | 1264 | repo_state = Column("repo_state", String(255), nullable=True) |
|
1265 | 1265 | |
|
1266 | 1266 | clone_uri = Column( |
|
1267 | 1267 | "clone_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1268 | 1268 | default=None) |
|
1269 | 1269 | repo_type = Column( |
|
1270 | 1270 | "repo_type", String(255), nullable=False, unique=False, default=None) |
|
1271 | 1271 | user_id = Column( |
|
1272 | 1272 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
1273 | 1273 | unique=False, default=None) |
|
1274 | 1274 | private = Column( |
|
1275 | 1275 | "private", Boolean(), nullable=True, unique=None, default=None) |
|
1276 | 1276 | enable_statistics = Column( |
|
1277 | 1277 | "statistics", Boolean(), nullable=True, unique=None, default=True) |
|
1278 | 1278 | enable_downloads = Column( |
|
1279 | 1279 | "downloads", Boolean(), nullable=True, unique=None, default=True) |
|
1280 | 1280 | description = Column( |
|
1281 | 1281 | "description", String(10000), nullable=True, unique=None, default=None) |
|
1282 | 1282 | created_on = Column( |
|
1283 | 1283 | 'created_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1284 | 1284 | default=datetime.datetime.now) |
|
1285 | 1285 | updated_on = Column( |
|
1286 | 1286 | 'updated_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1287 | 1287 | default=datetime.datetime.now) |
|
1288 | 1288 | _landing_revision = Column( |
|
1289 | 1289 | "landing_revision", String(255), nullable=False, unique=False, |
|
1290 | 1290 | default=None) |
|
1291 | 1291 | enable_locking = Column( |
|
1292 | 1292 | "enable_locking", Boolean(), nullable=False, unique=None, |
|
1293 | 1293 | default=False) |
|
1294 | 1294 | _locked = Column( |
|
1295 | 1295 | "locked", String(255), nullable=True, unique=False, default=None) |
|
1296 | 1296 | _changeset_cache = Column( |
|
1297 | 1297 | "changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
1298 | 1298 | |
|
1299 | 1299 | fork_id = Column( |
|
1300 | 1300 | "fork_id", Integer(), ForeignKey('repositories.repo_id'), |
|
1301 | 1301 | nullable=True, unique=False, default=None) |
|
1302 | 1302 | group_id = Column( |
|
1303 | 1303 | "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True, |
|
1304 | 1304 | unique=False, default=None) |
|
1305 | 1305 | |
|
1306 | 1306 | user = relationship('User', lazy='joined') |
|
1307 | 1307 | fork = relationship('Repository', remote_side=repo_id, lazy='joined') |
|
1308 | 1308 | group = relationship('RepoGroup', lazy='joined') |
|
1309 | 1309 | repo_to_perm = relationship( |
|
1310 | 1310 | 'UserRepoToPerm', cascade='all', |
|
1311 | 1311 | order_by='UserRepoToPerm.repo_to_perm_id') |
|
1312 | 1312 | users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1313 | 1313 | stats = relationship('Statistics', cascade='all', uselist=False) |
|
1314 | 1314 | |
|
1315 | 1315 | followers = relationship( |
|
1316 | 1316 | 'UserFollowing', |
|
1317 | 1317 | primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id', |
|
1318 | 1318 | cascade='all') |
|
1319 | 1319 | extra_fields = relationship( |
|
1320 | 1320 | 'RepositoryField', cascade="all, delete, delete-orphan") |
|
1321 | 1321 | logs = relationship('UserLog') |
|
1322 | 1322 | comments = relationship( |
|
1323 | 1323 | 'ChangesetComment', cascade="all, delete, delete-orphan") |
|
1324 | 1324 | pull_requests_source = relationship( |
|
1325 | 1325 | 'PullRequest', |
|
1326 | 1326 | primaryjoin='PullRequest.source_repo_id==Repository.repo_id', |
|
1327 | 1327 | cascade="all, delete, delete-orphan") |
|
1328 | 1328 | pull_requests_target = relationship( |
|
1329 | 1329 | 'PullRequest', |
|
1330 | 1330 | primaryjoin='PullRequest.target_repo_id==Repository.repo_id', |
|
1331 | 1331 | cascade="all, delete, delete-orphan") |
|
1332 | 1332 | ui = relationship('RepoRhodeCodeUi', cascade="all") |
|
1333 | 1333 | settings = relationship('RepoRhodeCodeSetting', cascade="all") |
|
1334 | 1334 | integrations = relationship('Integration', |
|
1335 | 1335 | cascade="all, delete, delete-orphan") |
|
1336 | 1336 | |
|
1337 | 1337 | def __unicode__(self): |
|
1338 | 1338 | return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id, |
|
1339 | 1339 | safe_unicode(self.repo_name)) |
|
1340 | 1340 | |
|
1341 | 1341 | @hybrid_property |
|
1342 | 1342 | def landing_rev(self): |
|
1343 | 1343 | # always should return [rev_type, rev] |
|
1344 | 1344 | if self._landing_revision: |
|
1345 | 1345 | _rev_info = self._landing_revision.split(':') |
|
1346 | 1346 | if len(_rev_info) < 2: |
|
1347 | 1347 | _rev_info.insert(0, 'rev') |
|
1348 | 1348 | return [_rev_info[0], _rev_info[1]] |
|
1349 | 1349 | return [None, None] |
|
1350 | 1350 | |
|
1351 | 1351 | @landing_rev.setter |
|
1352 | 1352 | def landing_rev(self, val): |
|
1353 | 1353 | if ':' not in val: |
|
1354 | 1354 | raise ValueError('value must be delimited with `:` and consist ' |
|
1355 | 1355 | 'of <rev_type>:<rev>, got %s instead' % val) |
|
1356 | 1356 | self._landing_revision = val |
|
1357 | 1357 | |
|
1358 | 1358 | @hybrid_property |
|
1359 | 1359 | def locked(self): |
|
1360 | 1360 | if self._locked: |
|
1361 | 1361 | user_id, timelocked, reason = self._locked.split(':') |
|
1362 | 1362 | lock_values = int(user_id), timelocked, reason |
|
1363 | 1363 | else: |
|
1364 | 1364 | lock_values = [None, None, None] |
|
1365 | 1365 | return lock_values |
|
1366 | 1366 | |
|
1367 | 1367 | @locked.setter |
|
1368 | 1368 | def locked(self, val): |
|
1369 | 1369 | if val and isinstance(val, (list, tuple)): |
|
1370 | 1370 | self._locked = ':'.join(map(str, val)) |
|
1371 | 1371 | else: |
|
1372 | 1372 | self._locked = None |
|
1373 | 1373 | |
|
1374 | 1374 | @hybrid_property |
|
1375 | 1375 | def changeset_cache(self): |
|
1376 | 1376 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
1377 | 1377 | dummy = EmptyCommit().__json__() |
|
1378 | 1378 | if not self._changeset_cache: |
|
1379 | 1379 | return dummy |
|
1380 | 1380 | try: |
|
1381 | 1381 | return json.loads(self._changeset_cache) |
|
1382 | 1382 | except TypeError: |
|
1383 | 1383 | return dummy |
|
1384 | 1384 | except Exception: |
|
1385 | 1385 | log.error(traceback.format_exc()) |
|
1386 | 1386 | return dummy |
|
1387 | 1387 | |
|
1388 | 1388 | @changeset_cache.setter |
|
1389 | 1389 | def changeset_cache(self, val): |
|
1390 | 1390 | try: |
|
1391 | 1391 | self._changeset_cache = json.dumps(val) |
|
1392 | 1392 | except Exception: |
|
1393 | 1393 | log.error(traceback.format_exc()) |
|
1394 | 1394 | |
|
1395 | 1395 | @hybrid_property |
|
1396 | 1396 | def repo_name(self): |
|
1397 | 1397 | return self._repo_name |
|
1398 | 1398 | |
|
1399 | 1399 | @repo_name.setter |
|
1400 | 1400 | def repo_name(self, value): |
|
1401 | 1401 | self._repo_name = value |
|
1402 | 1402 | self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest() |
|
1403 | 1403 | |
|
1404 | 1404 | @classmethod |
|
1405 | 1405 | def normalize_repo_name(cls, repo_name): |
|
1406 | 1406 | """ |
|
1407 | 1407 | Normalizes os specific repo_name to the format internally stored inside |
|
1408 | 1408 | database using URL_SEP |
|
1409 | 1409 | |
|
1410 | 1410 | :param cls: |
|
1411 | 1411 | :param repo_name: |
|
1412 | 1412 | """ |
|
1413 | 1413 | return cls.NAME_SEP.join(repo_name.split(os.sep)) |
|
1414 | 1414 | |
|
1415 | 1415 | @classmethod |
|
1416 | 1416 | def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False): |
|
1417 | 1417 | session = Session() |
|
1418 | 1418 | q = session.query(cls).filter(cls.repo_name == repo_name) |
|
1419 | 1419 | |
|
1420 | 1420 | if cache: |
|
1421 | 1421 | if identity_cache: |
|
1422 | 1422 | val = cls.identity_cache(session, 'repo_name', repo_name) |
|
1423 | 1423 | if val: |
|
1424 | 1424 | return val |
|
1425 | 1425 | else: |
|
1426 | 1426 | q = q.options( |
|
1427 | 1427 | FromCache("sql_cache_short", |
|
1428 | 1428 | "get_repo_by_name_%s" % _hash_key(repo_name))) |
|
1429 | 1429 | |
|
1430 | 1430 | return q.scalar() |
|
1431 | 1431 | |
|
1432 | 1432 | @classmethod |
|
1433 | 1433 | def get_by_full_path(cls, repo_full_path): |
|
1434 | 1434 | repo_name = repo_full_path.split(cls.base_path(), 1)[-1] |
|
1435 | 1435 | repo_name = cls.normalize_repo_name(repo_name) |
|
1436 | 1436 | return cls.get_by_repo_name(repo_name.strip(URL_SEP)) |
|
1437 | 1437 | |
|
1438 | 1438 | @classmethod |
|
1439 | 1439 | def get_repo_forks(cls, repo_id): |
|
1440 | 1440 | return cls.query().filter(Repository.fork_id == repo_id) |
|
1441 | 1441 | |
|
1442 | 1442 | @classmethod |
|
1443 | 1443 | def base_path(cls): |
|
1444 | 1444 | """ |
|
1445 | 1445 | Returns base path when all repos are stored |
|
1446 | 1446 | |
|
1447 | 1447 | :param cls: |
|
1448 | 1448 | """ |
|
1449 | 1449 | q = Session().query(RhodeCodeUi)\ |
|
1450 | 1450 | .filter(RhodeCodeUi.ui_key == cls.NAME_SEP) |
|
1451 | 1451 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1452 | 1452 | return q.one().ui_value |
|
1453 | 1453 | |
|
1454 | 1454 | @classmethod |
|
1455 | 1455 | def is_valid(cls, repo_name): |
|
1456 | 1456 | """ |
|
1457 | 1457 | returns True if given repo name is a valid filesystem repository |
|
1458 | 1458 | |
|
1459 | 1459 | :param cls: |
|
1460 | 1460 | :param repo_name: |
|
1461 | 1461 | """ |
|
1462 | 1462 | from rhodecode.lib.utils import is_valid_repo |
|
1463 | 1463 | |
|
1464 | 1464 | return is_valid_repo(repo_name, cls.base_path()) |
|
1465 | 1465 | |
|
1466 | 1466 | @classmethod |
|
1467 | 1467 | def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None), |
|
1468 | 1468 | case_insensitive=True): |
|
1469 | 1469 | q = Repository.query() |
|
1470 | 1470 | |
|
1471 | 1471 | if not isinstance(user_id, Optional): |
|
1472 | 1472 | q = q.filter(Repository.user_id == user_id) |
|
1473 | 1473 | |
|
1474 | 1474 | if not isinstance(group_id, Optional): |
|
1475 | 1475 | q = q.filter(Repository.group_id == group_id) |
|
1476 | 1476 | |
|
1477 | 1477 | if case_insensitive: |
|
1478 | 1478 | q = q.order_by(func.lower(Repository.repo_name)) |
|
1479 | 1479 | else: |
|
1480 | 1480 | q = q.order_by(Repository.repo_name) |
|
1481 | 1481 | return q.all() |
|
1482 | 1482 | |
|
1483 | 1483 | @property |
|
1484 | 1484 | def forks(self): |
|
1485 | 1485 | """ |
|
1486 | 1486 | Return forks of this repo |
|
1487 | 1487 | """ |
|
1488 | 1488 | return Repository.get_repo_forks(self.repo_id) |
|
1489 | 1489 | |
|
1490 | 1490 | @property |
|
1491 | 1491 | def parent(self): |
|
1492 | 1492 | """ |
|
1493 | 1493 | Returns fork parent |
|
1494 | 1494 | """ |
|
1495 | 1495 | return self.fork |
|
1496 | 1496 | |
|
1497 | 1497 | @property |
|
1498 | 1498 | def just_name(self): |
|
1499 | 1499 | return self.repo_name.split(self.NAME_SEP)[-1] |
|
1500 | 1500 | |
|
1501 | 1501 | @property |
|
1502 | 1502 | def groups_with_parents(self): |
|
1503 | 1503 | groups = [] |
|
1504 | 1504 | if self.group is None: |
|
1505 | 1505 | return groups |
|
1506 | 1506 | |
|
1507 | 1507 | cur_gr = self.group |
|
1508 | 1508 | groups.insert(0, cur_gr) |
|
1509 | 1509 | while 1: |
|
1510 | 1510 | gr = getattr(cur_gr, 'parent_group', None) |
|
1511 | 1511 | cur_gr = cur_gr.parent_group |
|
1512 | 1512 | if gr is None: |
|
1513 | 1513 | break |
|
1514 | 1514 | groups.insert(0, gr) |
|
1515 | 1515 | |
|
1516 | 1516 | return groups |
|
1517 | 1517 | |
|
1518 | 1518 | @property |
|
1519 | 1519 | def groups_and_repo(self): |
|
1520 | 1520 | return self.groups_with_parents, self |
|
1521 | 1521 | |
|
1522 | 1522 | @LazyProperty |
|
1523 | 1523 | def repo_path(self): |
|
1524 | 1524 | """ |
|
1525 | 1525 | Returns base full path for that repository means where it actually |
|
1526 | 1526 | exists on a filesystem |
|
1527 | 1527 | """ |
|
1528 | 1528 | q = Session().query(RhodeCodeUi).filter( |
|
1529 | 1529 | RhodeCodeUi.ui_key == self.NAME_SEP) |
|
1530 | 1530 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1531 | 1531 | return q.one().ui_value |
|
1532 | 1532 | |
|
1533 | 1533 | @property |
|
1534 | 1534 | def repo_full_path(self): |
|
1535 | 1535 | p = [self.repo_path] |
|
1536 | 1536 | # we need to split the name by / since this is how we store the |
|
1537 | 1537 | # names in the database, but that eventually needs to be converted |
|
1538 | 1538 | # into a valid system path |
|
1539 | 1539 | p += self.repo_name.split(self.NAME_SEP) |
|
1540 | 1540 | return os.path.join(*map(safe_unicode, p)) |
|
1541 | 1541 | |
|
1542 | 1542 | @property |
|
1543 | 1543 | def cache_keys(self): |
|
1544 | 1544 | """ |
|
1545 | 1545 | Returns associated cache keys for that repo |
|
1546 | 1546 | """ |
|
1547 | 1547 | return CacheKey.query()\ |
|
1548 | 1548 | .filter(CacheKey.cache_args == self.repo_name)\ |
|
1549 | 1549 | .order_by(CacheKey.cache_key)\ |
|
1550 | 1550 | .all() |
|
1551 | 1551 | |
|
1552 | 1552 | def get_new_name(self, repo_name): |
|
1553 | 1553 | """ |
|
1554 | 1554 | returns new full repository name based on assigned group and new new |
|
1555 | 1555 | |
|
1556 | 1556 | :param group_name: |
|
1557 | 1557 | """ |
|
1558 | 1558 | path_prefix = self.group.full_path_splitted if self.group else [] |
|
1559 | 1559 | return self.NAME_SEP.join(path_prefix + [repo_name]) |
|
1560 | 1560 | |
|
1561 | 1561 | @property |
|
1562 | 1562 | def _config(self): |
|
1563 | 1563 | """ |
|
1564 | 1564 | Returns db based config object. |
|
1565 | 1565 | """ |
|
1566 | 1566 | from rhodecode.lib.utils import make_db_config |
|
1567 | 1567 | return make_db_config(clear_session=False, repo=self) |
|
1568 | 1568 | |
|
1569 | 1569 | def permissions(self, with_admins=True, with_owner=True): |
|
1570 | 1570 | q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self) |
|
1571 | 1571 | q = q.options(joinedload(UserRepoToPerm.repository), |
|
1572 | 1572 | joinedload(UserRepoToPerm.user), |
|
1573 | 1573 | joinedload(UserRepoToPerm.permission),) |
|
1574 | 1574 | |
|
1575 | 1575 | # get owners and admins and permissions. We do a trick of re-writing |
|
1576 | 1576 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1577 | 1577 | # has a global reference and changing one object propagates to all |
|
1578 | 1578 | # others. This means if admin is also an owner admin_row that change |
|
1579 | 1579 | # would propagate to both objects |
|
1580 | 1580 | perm_rows = [] |
|
1581 | 1581 | for _usr in q.all(): |
|
1582 | 1582 | usr = AttributeDict(_usr.user.get_dict()) |
|
1583 | 1583 | usr.permission = _usr.permission.permission_name |
|
1584 | 1584 | perm_rows.append(usr) |
|
1585 | 1585 | |
|
1586 | 1586 | # filter the perm rows by 'default' first and then sort them by |
|
1587 | 1587 | # admin,write,read,none permissions sorted again alphabetically in |
|
1588 | 1588 | # each group |
|
1589 | 1589 | perm_rows = sorted(perm_rows, key=display_sort) |
|
1590 | 1590 | |
|
1591 | 1591 | _admin_perm = 'repository.admin' |
|
1592 | 1592 | owner_row = [] |
|
1593 | 1593 | if with_owner: |
|
1594 | 1594 | usr = AttributeDict(self.user.get_dict()) |
|
1595 | 1595 | usr.owner_row = True |
|
1596 | 1596 | usr.permission = _admin_perm |
|
1597 | 1597 | owner_row.append(usr) |
|
1598 | 1598 | |
|
1599 | 1599 | super_admin_rows = [] |
|
1600 | 1600 | if with_admins: |
|
1601 | 1601 | for usr in User.get_all_super_admins(): |
|
1602 | 1602 | # if this admin is also owner, don't double the record |
|
1603 | 1603 | if usr.user_id == owner_row[0].user_id: |
|
1604 | 1604 | owner_row[0].admin_row = True |
|
1605 | 1605 | else: |
|
1606 | 1606 | usr = AttributeDict(usr.get_dict()) |
|
1607 | 1607 | usr.admin_row = True |
|
1608 | 1608 | usr.permission = _admin_perm |
|
1609 | 1609 | super_admin_rows.append(usr) |
|
1610 | 1610 | |
|
1611 | 1611 | return super_admin_rows + owner_row + perm_rows |
|
1612 | 1612 | |
|
1613 | 1613 | def permission_user_groups(self): |
|
1614 | 1614 | q = UserGroupRepoToPerm.query().filter( |
|
1615 | 1615 | UserGroupRepoToPerm.repository == self) |
|
1616 | 1616 | q = q.options(joinedload(UserGroupRepoToPerm.repository), |
|
1617 | 1617 | joinedload(UserGroupRepoToPerm.users_group), |
|
1618 | 1618 | joinedload(UserGroupRepoToPerm.permission),) |
|
1619 | 1619 | |
|
1620 | 1620 | perm_rows = [] |
|
1621 | 1621 | for _user_group in q.all(): |
|
1622 | 1622 | usr = AttributeDict(_user_group.users_group.get_dict()) |
|
1623 | 1623 | usr.permission = _user_group.permission.permission_name |
|
1624 | 1624 | perm_rows.append(usr) |
|
1625 | 1625 | |
|
1626 | 1626 | return perm_rows |
|
1627 | 1627 | |
|
1628 | 1628 | def get_api_data(self, include_secrets=False): |
|
1629 | 1629 | """ |
|
1630 | 1630 | Common function for generating repo api data |
|
1631 | 1631 | |
|
1632 | 1632 | :param include_secrets: See :meth:`User.get_api_data`. |
|
1633 | 1633 | |
|
1634 | 1634 | """ |
|
1635 | 1635 | # TODO: mikhail: Here there is an anti-pattern, we probably need to |
|
1636 | 1636 | # move this methods on models level. |
|
1637 | 1637 | from rhodecode.model.settings import SettingsModel |
|
1638 | 1638 | |
|
1639 | 1639 | repo = self |
|
1640 | 1640 | _user_id, _time, _reason = self.locked |
|
1641 | 1641 | |
|
1642 | 1642 | data = { |
|
1643 | 1643 | 'repo_id': repo.repo_id, |
|
1644 | 1644 | 'repo_name': repo.repo_name, |
|
1645 | 1645 | 'repo_type': repo.repo_type, |
|
1646 | 1646 | 'clone_uri': repo.clone_uri or '', |
|
1647 | 1647 | 'url': url('summary_home', repo_name=self.repo_name, qualified=True), |
|
1648 | 1648 | 'private': repo.private, |
|
1649 | 1649 | 'created_on': repo.created_on, |
|
1650 | 1650 | 'description': repo.description, |
|
1651 | 1651 | 'landing_rev': repo.landing_rev, |
|
1652 | 1652 | 'owner': repo.user.username, |
|
1653 | 1653 | 'fork_of': repo.fork.repo_name if repo.fork else None, |
|
1654 | 1654 | 'enable_statistics': repo.enable_statistics, |
|
1655 | 1655 | 'enable_locking': repo.enable_locking, |
|
1656 | 1656 | 'enable_downloads': repo.enable_downloads, |
|
1657 | 1657 | 'last_changeset': repo.changeset_cache, |
|
1658 | 1658 | 'locked_by': User.get(_user_id).get_api_data( |
|
1659 | 1659 | include_secrets=include_secrets) if _user_id else None, |
|
1660 | 1660 | 'locked_date': time_to_datetime(_time) if _time else None, |
|
1661 | 1661 | 'lock_reason': _reason if _reason else None, |
|
1662 | 1662 | } |
|
1663 | 1663 | |
|
1664 | 1664 | # TODO: mikhail: should be per-repo settings here |
|
1665 | 1665 | rc_config = SettingsModel().get_all_settings() |
|
1666 | 1666 | repository_fields = str2bool( |
|
1667 | 1667 | rc_config.get('rhodecode_repository_fields')) |
|
1668 | 1668 | if repository_fields: |
|
1669 | 1669 | for f in self.extra_fields: |
|
1670 | 1670 | data[f.field_key_prefixed] = f.field_value |
|
1671 | 1671 | |
|
1672 | 1672 | return data |
|
1673 | 1673 | |
|
1674 | 1674 | @classmethod |
|
1675 | 1675 | def lock(cls, repo, user_id, lock_time=None, lock_reason=None): |
|
1676 | 1676 | if not lock_time: |
|
1677 | 1677 | lock_time = time.time() |
|
1678 | 1678 | if not lock_reason: |
|
1679 | 1679 | lock_reason = cls.LOCK_AUTOMATIC |
|
1680 | 1680 | repo.locked = [user_id, lock_time, lock_reason] |
|
1681 | 1681 | Session().add(repo) |
|
1682 | 1682 | Session().commit() |
|
1683 | 1683 | |
|
1684 | 1684 | @classmethod |
|
1685 | 1685 | def unlock(cls, repo): |
|
1686 | 1686 | repo.locked = None |
|
1687 | 1687 | Session().add(repo) |
|
1688 | 1688 | Session().commit() |
|
1689 | 1689 | |
|
1690 | 1690 | @classmethod |
|
1691 | 1691 | def getlock(cls, repo): |
|
1692 | 1692 | return repo.locked |
|
1693 | 1693 | |
|
1694 | 1694 | def is_user_lock(self, user_id): |
|
1695 | 1695 | if self.lock[0]: |
|
1696 | 1696 | lock_user_id = safe_int(self.lock[0]) |
|
1697 | 1697 | user_id = safe_int(user_id) |
|
1698 | 1698 | # both are ints, and they are equal |
|
1699 | 1699 | return all([lock_user_id, user_id]) and lock_user_id == user_id |
|
1700 | 1700 | |
|
1701 | 1701 | return False |
|
1702 | 1702 | |
|
1703 | 1703 | def get_locking_state(self, action, user_id, only_when_enabled=True): |
|
1704 | 1704 | """ |
|
1705 | 1705 | Checks locking on this repository, if locking is enabled and lock is |
|
1706 | 1706 | present returns a tuple of make_lock, locked, locked_by. |
|
1707 | 1707 | make_lock can have 3 states None (do nothing) True, make lock |
|
1708 | 1708 | False release lock, This value is later propagated to hooks, which |
|
1709 | 1709 | do the locking. Think about this as signals passed to hooks what to do. |
|
1710 | 1710 | |
|
1711 | 1711 | """ |
|
1712 | 1712 | # TODO: johbo: This is part of the business logic and should be moved |
|
1713 | 1713 | # into the RepositoryModel. |
|
1714 | 1714 | |
|
1715 | 1715 | if action not in ('push', 'pull'): |
|
1716 | 1716 | raise ValueError("Invalid action value: %s" % repr(action)) |
|
1717 | 1717 | |
|
1718 | 1718 | # defines if locked error should be thrown to user |
|
1719 | 1719 | currently_locked = False |
|
1720 | 1720 | # defines if new lock should be made, tri-state |
|
1721 | 1721 | make_lock = None |
|
1722 | 1722 | repo = self |
|
1723 | 1723 | user = User.get(user_id) |
|
1724 | 1724 | |
|
1725 | 1725 | lock_info = repo.locked |
|
1726 | 1726 | |
|
1727 | 1727 | if repo and (repo.enable_locking or not only_when_enabled): |
|
1728 | 1728 | if action == 'push': |
|
1729 | 1729 | # check if it's already locked !, if it is compare users |
|
1730 | 1730 | locked_by_user_id = lock_info[0] |
|
1731 | 1731 | if user.user_id == locked_by_user_id: |
|
1732 | 1732 | log.debug( |
|
1733 | 1733 | 'Got `push` action from user %s, now unlocking', user) |
|
1734 | 1734 | # unlock if we have push from user who locked |
|
1735 | 1735 | make_lock = False |
|
1736 | 1736 | else: |
|
1737 | 1737 | # we're not the same user who locked, ban with |
|
1738 | 1738 | # code defined in settings (default is 423 HTTP Locked) ! |
|
1739 | 1739 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
1740 | 1740 | currently_locked = True |
|
1741 | 1741 | elif action == 'pull': |
|
1742 | 1742 | # [0] user [1] date |
|
1743 | 1743 | if lock_info[0] and lock_info[1]: |
|
1744 | 1744 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
1745 | 1745 | currently_locked = True |
|
1746 | 1746 | else: |
|
1747 | 1747 | log.debug('Setting lock on repo %s by %s', repo, user) |
|
1748 | 1748 | make_lock = True |
|
1749 | 1749 | |
|
1750 | 1750 | else: |
|
1751 | 1751 | log.debug('Repository %s do not have locking enabled', repo) |
|
1752 | 1752 | |
|
1753 | 1753 | log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s', |
|
1754 | 1754 | make_lock, currently_locked, lock_info) |
|
1755 | 1755 | |
|
1756 | 1756 | from rhodecode.lib.auth import HasRepoPermissionAny |
|
1757 | 1757 | perm_check = HasRepoPermissionAny('repository.write', 'repository.admin') |
|
1758 | 1758 | if make_lock and not perm_check(repo_name=repo.repo_name, user=user): |
|
1759 | 1759 | # if we don't have at least write permission we cannot make a lock |
|
1760 | 1760 | log.debug('lock state reset back to FALSE due to lack ' |
|
1761 | 1761 | 'of at least read permission') |
|
1762 | 1762 | make_lock = False |
|
1763 | 1763 | |
|
1764 | 1764 | return make_lock, currently_locked, lock_info |
|
1765 | 1765 | |
|
1766 | 1766 | @property |
|
1767 | 1767 | def last_db_change(self): |
|
1768 | 1768 | return self.updated_on |
|
1769 | 1769 | |
|
1770 | 1770 | @property |
|
1771 | 1771 | def clone_uri_hidden(self): |
|
1772 | 1772 | clone_uri = self.clone_uri |
|
1773 | 1773 | if clone_uri: |
|
1774 | 1774 | import urlobject |
|
1775 | 1775 | url_obj = urlobject.URLObject(clone_uri) |
|
1776 | 1776 | if url_obj.password: |
|
1777 | 1777 | clone_uri = url_obj.with_password('*****') |
|
1778 | 1778 | return clone_uri |
|
1779 | 1779 | |
|
1780 | 1780 | def clone_url(self, **override): |
|
1781 | 1781 | qualified_home_url = url('home', qualified=True) |
|
1782 | 1782 | |
|
1783 | 1783 | uri_tmpl = None |
|
1784 | 1784 | if 'with_id' in override: |
|
1785 | 1785 | uri_tmpl = self.DEFAULT_CLONE_URI_ID |
|
1786 | 1786 | del override['with_id'] |
|
1787 | 1787 | |
|
1788 | 1788 | if 'uri_tmpl' in override: |
|
1789 | 1789 | uri_tmpl = override['uri_tmpl'] |
|
1790 | 1790 | del override['uri_tmpl'] |
|
1791 | 1791 | |
|
1792 | 1792 | # we didn't override our tmpl from **overrides |
|
1793 | 1793 | if not uri_tmpl: |
|
1794 | 1794 | uri_tmpl = self.DEFAULT_CLONE_URI |
|
1795 | 1795 | try: |
|
1796 | 1796 | from pylons import tmpl_context as c |
|
1797 | 1797 | uri_tmpl = c.clone_uri_tmpl |
|
1798 | 1798 | except Exception: |
|
1799 | 1799 | # in any case if we call this outside of request context, |
|
1800 | 1800 | # ie, not having tmpl_context set up |
|
1801 | 1801 | pass |
|
1802 | 1802 | |
|
1803 | 1803 | return get_clone_url(uri_tmpl=uri_tmpl, |
|
1804 | 1804 | qualifed_home_url=qualified_home_url, |
|
1805 | 1805 | repo_name=self.repo_name, |
|
1806 | 1806 | repo_id=self.repo_id, **override) |
|
1807 | 1807 | |
|
1808 | 1808 | def set_state(self, state): |
|
1809 | 1809 | self.repo_state = state |
|
1810 | 1810 | Session().add(self) |
|
1811 | 1811 | #========================================================================== |
|
1812 | 1812 | # SCM PROPERTIES |
|
1813 | 1813 | #========================================================================== |
|
1814 | 1814 | |
|
1815 | 1815 | def get_commit(self, commit_id=None, commit_idx=None, pre_load=None): |
|
1816 | 1816 | return get_commit_safe( |
|
1817 | 1817 | self.scm_instance(), commit_id, commit_idx, pre_load=pre_load) |
|
1818 | 1818 | |
|
1819 | 1819 | def get_changeset(self, rev=None, pre_load=None): |
|
1820 | 1820 | warnings.warn("Use get_commit", DeprecationWarning) |
|
1821 | 1821 | commit_id = None |
|
1822 | 1822 | commit_idx = None |
|
1823 | 1823 | if isinstance(rev, basestring): |
|
1824 | 1824 | commit_id = rev |
|
1825 | 1825 | else: |
|
1826 | 1826 | commit_idx = rev |
|
1827 | 1827 | return self.get_commit(commit_id=commit_id, commit_idx=commit_idx, |
|
1828 | 1828 | pre_load=pre_load) |
|
1829 | 1829 | |
|
1830 | 1830 | def get_landing_commit(self): |
|
1831 | 1831 | """ |
|
1832 | 1832 | Returns landing commit, or if that doesn't exist returns the tip |
|
1833 | 1833 | """ |
|
1834 | 1834 | _rev_type, _rev = self.landing_rev |
|
1835 | 1835 | commit = self.get_commit(_rev) |
|
1836 | 1836 | if isinstance(commit, EmptyCommit): |
|
1837 | 1837 | return self.get_commit() |
|
1838 | 1838 | return commit |
|
1839 | 1839 | |
|
1840 | 1840 | def update_commit_cache(self, cs_cache=None, config=None): |
|
1841 | 1841 | """ |
|
1842 | 1842 | Update cache of last changeset for repository, keys should be:: |
|
1843 | 1843 | |
|
1844 | 1844 | short_id |
|
1845 | 1845 | raw_id |
|
1846 | 1846 | revision |
|
1847 | 1847 | parents |
|
1848 | 1848 | message |
|
1849 | 1849 | date |
|
1850 | 1850 | author |
|
1851 | 1851 | |
|
1852 | 1852 | :param cs_cache: |
|
1853 | 1853 | """ |
|
1854 | 1854 | from rhodecode.lib.vcs.backends.base import BaseChangeset |
|
1855 | 1855 | if cs_cache is None: |
|
1856 | 1856 | # use no-cache version here |
|
1857 | 1857 | scm_repo = self.scm_instance(cache=False, config=config) |
|
1858 | 1858 | if scm_repo: |
|
1859 | 1859 | cs_cache = scm_repo.get_commit( |
|
1860 | 1860 | pre_load=["author", "date", "message", "parents"]) |
|
1861 | 1861 | else: |
|
1862 | 1862 | cs_cache = EmptyCommit() |
|
1863 | 1863 | |
|
1864 | 1864 | if isinstance(cs_cache, BaseChangeset): |
|
1865 | 1865 | cs_cache = cs_cache.__json__() |
|
1866 | 1866 | |
|
1867 | 1867 | def is_outdated(new_cs_cache): |
|
1868 | 1868 | if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or |
|
1869 | 1869 | new_cs_cache['revision'] != self.changeset_cache['revision']): |
|
1870 | 1870 | return True |
|
1871 | 1871 | return False |
|
1872 | 1872 | |
|
1873 | 1873 | # check if we have maybe already latest cached revision |
|
1874 | 1874 | if is_outdated(cs_cache) or not self.changeset_cache: |
|
1875 | 1875 | _default = datetime.datetime.fromtimestamp(0) |
|
1876 | 1876 | last_change = cs_cache.get('date') or _default |
|
1877 | 1877 | log.debug('updated repo %s with new cs cache %s', |
|
1878 | 1878 | self.repo_name, cs_cache) |
|
1879 | 1879 | self.updated_on = last_change |
|
1880 | 1880 | self.changeset_cache = cs_cache |
|
1881 | 1881 | Session().add(self) |
|
1882 | 1882 | Session().commit() |
|
1883 | 1883 | else: |
|
1884 | 1884 | log.debug('Skipping update_commit_cache for repo:`%s` ' |
|
1885 | 1885 | 'commit already with latest changes', self.repo_name) |
|
1886 | 1886 | |
|
1887 | 1887 | @property |
|
1888 | 1888 | def tip(self): |
|
1889 | 1889 | return self.get_commit('tip') |
|
1890 | 1890 | |
|
1891 | 1891 | @property |
|
1892 | 1892 | def author(self): |
|
1893 | 1893 | return self.tip.author |
|
1894 | 1894 | |
|
1895 | 1895 | @property |
|
1896 | 1896 | def last_change(self): |
|
1897 | 1897 | return self.scm_instance().last_change |
|
1898 | 1898 | |
|
1899 | 1899 | def get_comments(self, revisions=None): |
|
1900 | 1900 | """ |
|
1901 | 1901 | Returns comments for this repository grouped by revisions |
|
1902 | 1902 | |
|
1903 | 1903 | :param revisions: filter query by revisions only |
|
1904 | 1904 | """ |
|
1905 | 1905 | cmts = ChangesetComment.query()\ |
|
1906 | 1906 | .filter(ChangesetComment.repo == self) |
|
1907 | 1907 | if revisions: |
|
1908 | 1908 | cmts = cmts.filter(ChangesetComment.revision.in_(revisions)) |
|
1909 | 1909 | grouped = collections.defaultdict(list) |
|
1910 | 1910 | for cmt in cmts.all(): |
|
1911 | 1911 | grouped[cmt.revision].append(cmt) |
|
1912 | 1912 | return grouped |
|
1913 | 1913 | |
|
1914 | 1914 | def statuses(self, revisions=None): |
|
1915 | 1915 | """ |
|
1916 | 1916 | Returns statuses for this repository |
|
1917 | 1917 | |
|
1918 | 1918 | :param revisions: list of revisions to get statuses for |
|
1919 | 1919 | """ |
|
1920 | 1920 | statuses = ChangesetStatus.query()\ |
|
1921 | 1921 | .filter(ChangesetStatus.repo == self)\ |
|
1922 | 1922 | .filter(ChangesetStatus.version == 0) |
|
1923 | 1923 | |
|
1924 | 1924 | if revisions: |
|
1925 | 1925 | # Try doing the filtering in chunks to avoid hitting limits |
|
1926 | 1926 | size = 500 |
|
1927 | 1927 | status_results = [] |
|
1928 | 1928 | for chunk in xrange(0, len(revisions), size): |
|
1929 | 1929 | status_results += statuses.filter( |
|
1930 | 1930 | ChangesetStatus.revision.in_( |
|
1931 | 1931 | revisions[chunk: chunk+size]) |
|
1932 | 1932 | ).all() |
|
1933 | 1933 | else: |
|
1934 | 1934 | status_results = statuses.all() |
|
1935 | 1935 | |
|
1936 | 1936 | grouped = {} |
|
1937 | 1937 | |
|
1938 | 1938 | # maybe we have open new pullrequest without a status? |
|
1939 | 1939 | stat = ChangesetStatus.STATUS_UNDER_REVIEW |
|
1940 | 1940 | status_lbl = ChangesetStatus.get_status_lbl(stat) |
|
1941 | 1941 | for pr in PullRequest.query().filter(PullRequest.source_repo == self).all(): |
|
1942 | 1942 | for rev in pr.revisions: |
|
1943 | 1943 | pr_id = pr.pull_request_id |
|
1944 | 1944 | pr_repo = pr.target_repo.repo_name |
|
1945 | 1945 | grouped[rev] = [stat, status_lbl, pr_id, pr_repo] |
|
1946 | 1946 | |
|
1947 | 1947 | for stat in status_results: |
|
1948 | 1948 | pr_id = pr_repo = None |
|
1949 | 1949 | if stat.pull_request: |
|
1950 | 1950 | pr_id = stat.pull_request.pull_request_id |
|
1951 | 1951 | pr_repo = stat.pull_request.target_repo.repo_name |
|
1952 | 1952 | grouped[stat.revision] = [str(stat.status), stat.status_lbl, |
|
1953 | 1953 | pr_id, pr_repo] |
|
1954 | 1954 | return grouped |
|
1955 | 1955 | |
|
1956 | 1956 | # ========================================================================== |
|
1957 | 1957 | # SCM CACHE INSTANCE |
|
1958 | 1958 | # ========================================================================== |
|
1959 | 1959 | |
|
1960 | 1960 | def scm_instance(self, **kwargs): |
|
1961 | 1961 | import rhodecode |
|
1962 | 1962 | |
|
1963 | 1963 | # Passing a config will not hit the cache currently only used |
|
1964 | 1964 | # for repo2dbmapper |
|
1965 | 1965 | config = kwargs.pop('config', None) |
|
1966 | 1966 | cache = kwargs.pop('cache', None) |
|
1967 | 1967 | full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache')) |
|
1968 | 1968 | # if cache is NOT defined use default global, else we have a full |
|
1969 | 1969 | # control over cache behaviour |
|
1970 | 1970 | if cache is None and full_cache and not config: |
|
1971 | 1971 | return self._get_instance_cached() |
|
1972 | 1972 | return self._get_instance(cache=bool(cache), config=config) |
|
1973 | 1973 | |
|
1974 | 1974 | def _get_instance_cached(self): |
|
1975 | 1975 | @cache_region('long_term') |
|
1976 | 1976 | def _get_repo(cache_key): |
|
1977 | 1977 | return self._get_instance() |
|
1978 | 1978 | |
|
1979 | 1979 | invalidator_context = CacheKey.repo_context_cache( |
|
1980 | 1980 | _get_repo, self.repo_name, None) |
|
1981 | 1981 | |
|
1982 | 1982 | with invalidator_context as context: |
|
1983 | 1983 | context.invalidate() |
|
1984 | 1984 | repo = context.compute() |
|
1985 | 1985 | |
|
1986 | 1986 | return repo |
|
1987 | 1987 | |
|
1988 | 1988 | def _get_instance(self, cache=True, config=None): |
|
1989 | repo_full_path = self.repo_full_path | |
|
1990 | try: | |
|
1991 | vcs_alias = get_scm(repo_full_path)[0] | |
|
1992 | log.debug( | |
|
1993 | 'Creating instance of %s repository from %s', | |
|
1994 | vcs_alias, repo_full_path) | |
|
1995 | backend = get_backend(vcs_alias) | |
|
1996 | except VCSError: | |
|
1997 | log.exception( | |
|
1998 | 'Perhaps this repository is in db and not in ' | |
|
1999 | 'filesystem run rescan repositories with ' | |
|
2000 | '"destroy old data" option from admin panel') | |
|
2001 | return | |
|
2002 | ||
|
2003 | 1989 | config = config or self._config |
|
2004 | 1990 | custom_wire = { |
|
2005 | 1991 | 'cache': cache # controls the vcs.remote cache |
|
2006 | 1992 | } |
|
2007 | repo = backend( | |
|
2008 | safe_str(repo_full_path), config=config, create=False, | |
|
2009 | with_wire=custom_wire) | |
|
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) | |
|
2010 | 1999 | |
|
2011 | 2000 | return repo |
|
2012 | 2001 | |
|
2013 | 2002 | def __json__(self): |
|
2014 | 2003 | return {'landing_rev': self.landing_rev} |
|
2015 | 2004 | |
|
2016 | 2005 | def get_dict(self): |
|
2017 | 2006 | |
|
2018 | 2007 | # Since we transformed `repo_name` to a hybrid property, we need to |
|
2019 | 2008 | # keep compatibility with the code which uses `repo_name` field. |
|
2020 | 2009 | |
|
2021 | 2010 | result = super(Repository, self).get_dict() |
|
2022 | 2011 | result['repo_name'] = result.pop('_repo_name', None) |
|
2023 | 2012 | return result |
|
2024 | 2013 | |
|
2025 | 2014 | |
|
2026 | 2015 | class RepoGroup(Base, BaseModel): |
|
2027 | 2016 | __tablename__ = 'groups' |
|
2028 | 2017 | __table_args__ = ( |
|
2029 | 2018 | UniqueConstraint('group_name', 'group_parent_id'), |
|
2030 | 2019 | CheckConstraint('group_id != group_parent_id'), |
|
2031 | 2020 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2032 | 2021 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
2033 | 2022 | ) |
|
2034 | 2023 | __mapper_args__ = {'order_by': 'group_name'} |
|
2035 | 2024 | |
|
2036 | 2025 | CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups |
|
2037 | 2026 | |
|
2038 | 2027 | group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2039 | 2028 | group_name = Column("group_name", String(255), nullable=False, unique=True, default=None) |
|
2040 | 2029 | group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None) |
|
2041 | 2030 | group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None) |
|
2042 | 2031 | enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False) |
|
2043 | 2032 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
2044 | 2033 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
2045 | 2034 | |
|
2046 | 2035 | repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id') |
|
2047 | 2036 | users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
2048 | 2037 | parent_group = relationship('RepoGroup', remote_side=group_id) |
|
2049 | 2038 | user = relationship('User') |
|
2050 | 2039 | |
|
2051 | 2040 | def __init__(self, group_name='', parent_group=None): |
|
2052 | 2041 | self.group_name = group_name |
|
2053 | 2042 | self.parent_group = parent_group |
|
2054 | 2043 | |
|
2055 | 2044 | def __unicode__(self): |
|
2056 | 2045 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, self.group_id, |
|
2057 | 2046 | self.group_name) |
|
2058 | 2047 | |
|
2059 | 2048 | @classmethod |
|
2060 | 2049 | def _generate_choice(cls, repo_group): |
|
2061 | 2050 | from webhelpers.html import literal as _literal |
|
2062 | 2051 | _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k)) |
|
2063 | 2052 | return repo_group.group_id, _name(repo_group.full_path_splitted) |
|
2064 | 2053 | |
|
2065 | 2054 | @classmethod |
|
2066 | 2055 | def groups_choices(cls, groups=None, show_empty_group=True): |
|
2067 | 2056 | if not groups: |
|
2068 | 2057 | groups = cls.query().all() |
|
2069 | 2058 | |
|
2070 | 2059 | repo_groups = [] |
|
2071 | 2060 | if show_empty_group: |
|
2072 | 2061 | repo_groups = [('-1', u'-- %s --' % _('No parent'))] |
|
2073 | 2062 | |
|
2074 | 2063 | repo_groups.extend([cls._generate_choice(x) for x in groups]) |
|
2075 | 2064 | |
|
2076 | 2065 | repo_groups = sorted( |
|
2077 | 2066 | repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0]) |
|
2078 | 2067 | return repo_groups |
|
2079 | 2068 | |
|
2080 | 2069 | @classmethod |
|
2081 | 2070 | def url_sep(cls): |
|
2082 | 2071 | return URL_SEP |
|
2083 | 2072 | |
|
2084 | 2073 | @classmethod |
|
2085 | 2074 | def get_by_group_name(cls, group_name, cache=False, case_insensitive=False): |
|
2086 | 2075 | if case_insensitive: |
|
2087 | 2076 | gr = cls.query().filter(func.lower(cls.group_name) |
|
2088 | 2077 | == func.lower(group_name)) |
|
2089 | 2078 | else: |
|
2090 | 2079 | gr = cls.query().filter(cls.group_name == group_name) |
|
2091 | 2080 | if cache: |
|
2092 | 2081 | gr = gr.options(FromCache( |
|
2093 | 2082 | "sql_cache_short", |
|
2094 | 2083 | "get_group_%s" % _hash_key(group_name))) |
|
2095 | 2084 | return gr.scalar() |
|
2096 | 2085 | |
|
2097 | 2086 | @classmethod |
|
2098 | 2087 | def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None), |
|
2099 | 2088 | case_insensitive=True): |
|
2100 | 2089 | q = RepoGroup.query() |
|
2101 | 2090 | |
|
2102 | 2091 | if not isinstance(user_id, Optional): |
|
2103 | 2092 | q = q.filter(RepoGroup.user_id == user_id) |
|
2104 | 2093 | |
|
2105 | 2094 | if not isinstance(group_id, Optional): |
|
2106 | 2095 | q = q.filter(RepoGroup.group_parent_id == group_id) |
|
2107 | 2096 | |
|
2108 | 2097 | if case_insensitive: |
|
2109 | 2098 | q = q.order_by(func.lower(RepoGroup.group_name)) |
|
2110 | 2099 | else: |
|
2111 | 2100 | q = q.order_by(RepoGroup.group_name) |
|
2112 | 2101 | return q.all() |
|
2113 | 2102 | |
|
2114 | 2103 | @property |
|
2115 | 2104 | def parents(self): |
|
2116 | 2105 | parents_recursion_limit = 10 |
|
2117 | 2106 | groups = [] |
|
2118 | 2107 | if self.parent_group is None: |
|
2119 | 2108 | return groups |
|
2120 | 2109 | cur_gr = self.parent_group |
|
2121 | 2110 | groups.insert(0, cur_gr) |
|
2122 | 2111 | cnt = 0 |
|
2123 | 2112 | while 1: |
|
2124 | 2113 | cnt += 1 |
|
2125 | 2114 | gr = getattr(cur_gr, 'parent_group', None) |
|
2126 | 2115 | cur_gr = cur_gr.parent_group |
|
2127 | 2116 | if gr is None: |
|
2128 | 2117 | break |
|
2129 | 2118 | if cnt == parents_recursion_limit: |
|
2130 | 2119 | # this will prevent accidental infinit loops |
|
2131 | 2120 | log.error(('more than %s parents found for group %s, stopping ' |
|
2132 | 2121 | 'recursive parent fetching' % (parents_recursion_limit, self))) |
|
2133 | 2122 | break |
|
2134 | 2123 | |
|
2135 | 2124 | groups.insert(0, gr) |
|
2136 | 2125 | return groups |
|
2137 | 2126 | |
|
2138 | 2127 | @property |
|
2139 | 2128 | def children(self): |
|
2140 | 2129 | return RepoGroup.query().filter(RepoGroup.parent_group == self) |
|
2141 | 2130 | |
|
2142 | 2131 | @property |
|
2143 | 2132 | def name(self): |
|
2144 | 2133 | return self.group_name.split(RepoGroup.url_sep())[-1] |
|
2145 | 2134 | |
|
2146 | 2135 | @property |
|
2147 | 2136 | def full_path(self): |
|
2148 | 2137 | return self.group_name |
|
2149 | 2138 | |
|
2150 | 2139 | @property |
|
2151 | 2140 | def full_path_splitted(self): |
|
2152 | 2141 | return self.group_name.split(RepoGroup.url_sep()) |
|
2153 | 2142 | |
|
2154 | 2143 | @property |
|
2155 | 2144 | def repositories(self): |
|
2156 | 2145 | return Repository.query()\ |
|
2157 | 2146 | .filter(Repository.group == self)\ |
|
2158 | 2147 | .order_by(Repository.repo_name) |
|
2159 | 2148 | |
|
2160 | 2149 | @property |
|
2161 | 2150 | def repositories_recursive_count(self): |
|
2162 | 2151 | cnt = self.repositories.count() |
|
2163 | 2152 | |
|
2164 | 2153 | def children_count(group): |
|
2165 | 2154 | cnt = 0 |
|
2166 | 2155 | for child in group.children: |
|
2167 | 2156 | cnt += child.repositories.count() |
|
2168 | 2157 | cnt += children_count(child) |
|
2169 | 2158 | return cnt |
|
2170 | 2159 | |
|
2171 | 2160 | return cnt + children_count(self) |
|
2172 | 2161 | |
|
2173 | 2162 | def _recursive_objects(self, include_repos=True): |
|
2174 | 2163 | all_ = [] |
|
2175 | 2164 | |
|
2176 | 2165 | def _get_members(root_gr): |
|
2177 | 2166 | if include_repos: |
|
2178 | 2167 | for r in root_gr.repositories: |
|
2179 | 2168 | all_.append(r) |
|
2180 | 2169 | childs = root_gr.children.all() |
|
2181 | 2170 | if childs: |
|
2182 | 2171 | for gr in childs: |
|
2183 | 2172 | all_.append(gr) |
|
2184 | 2173 | _get_members(gr) |
|
2185 | 2174 | |
|
2186 | 2175 | _get_members(self) |
|
2187 | 2176 | return [self] + all_ |
|
2188 | 2177 | |
|
2189 | 2178 | def recursive_groups_and_repos(self): |
|
2190 | 2179 | """ |
|
2191 | 2180 | Recursive return all groups, with repositories in those groups |
|
2192 | 2181 | """ |
|
2193 | 2182 | return self._recursive_objects() |
|
2194 | 2183 | |
|
2195 | 2184 | def recursive_groups(self): |
|
2196 | 2185 | """ |
|
2197 | 2186 | Returns all children groups for this group including children of children |
|
2198 | 2187 | """ |
|
2199 | 2188 | return self._recursive_objects(include_repos=False) |
|
2200 | 2189 | |
|
2201 | 2190 | def get_new_name(self, group_name): |
|
2202 | 2191 | """ |
|
2203 | 2192 | returns new full group name based on parent and new name |
|
2204 | 2193 | |
|
2205 | 2194 | :param group_name: |
|
2206 | 2195 | """ |
|
2207 | 2196 | path_prefix = (self.parent_group.full_path_splitted if |
|
2208 | 2197 | self.parent_group else []) |
|
2209 | 2198 | return RepoGroup.url_sep().join(path_prefix + [group_name]) |
|
2210 | 2199 | |
|
2211 | 2200 | def permissions(self, with_admins=True, with_owner=True): |
|
2212 | 2201 | q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self) |
|
2213 | 2202 | q = q.options(joinedload(UserRepoGroupToPerm.group), |
|
2214 | 2203 | joinedload(UserRepoGroupToPerm.user), |
|
2215 | 2204 | joinedload(UserRepoGroupToPerm.permission),) |
|
2216 | 2205 | |
|
2217 | 2206 | # get owners and admins and permissions. We do a trick of re-writing |
|
2218 | 2207 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
2219 | 2208 | # has a global reference and changing one object propagates to all |
|
2220 | 2209 | # others. This means if admin is also an owner admin_row that change |
|
2221 | 2210 | # would propagate to both objects |
|
2222 | 2211 | perm_rows = [] |
|
2223 | 2212 | for _usr in q.all(): |
|
2224 | 2213 | usr = AttributeDict(_usr.user.get_dict()) |
|
2225 | 2214 | usr.permission = _usr.permission.permission_name |
|
2226 | 2215 | perm_rows.append(usr) |
|
2227 | 2216 | |
|
2228 | 2217 | # filter the perm rows by 'default' first and then sort them by |
|
2229 | 2218 | # admin,write,read,none permissions sorted again alphabetically in |
|
2230 | 2219 | # each group |
|
2231 | 2220 | perm_rows = sorted(perm_rows, key=display_sort) |
|
2232 | 2221 | |
|
2233 | 2222 | _admin_perm = 'group.admin' |
|
2234 | 2223 | owner_row = [] |
|
2235 | 2224 | if with_owner: |
|
2236 | 2225 | usr = AttributeDict(self.user.get_dict()) |
|
2237 | 2226 | usr.owner_row = True |
|
2238 | 2227 | usr.permission = _admin_perm |
|
2239 | 2228 | owner_row.append(usr) |
|
2240 | 2229 | |
|
2241 | 2230 | super_admin_rows = [] |
|
2242 | 2231 | if with_admins: |
|
2243 | 2232 | for usr in User.get_all_super_admins(): |
|
2244 | 2233 | # if this admin is also owner, don't double the record |
|
2245 | 2234 | if usr.user_id == owner_row[0].user_id: |
|
2246 | 2235 | owner_row[0].admin_row = True |
|
2247 | 2236 | else: |
|
2248 | 2237 | usr = AttributeDict(usr.get_dict()) |
|
2249 | 2238 | usr.admin_row = True |
|
2250 | 2239 | usr.permission = _admin_perm |
|
2251 | 2240 | super_admin_rows.append(usr) |
|
2252 | 2241 | |
|
2253 | 2242 | return super_admin_rows + owner_row + perm_rows |
|
2254 | 2243 | |
|
2255 | 2244 | def permission_user_groups(self): |
|
2256 | 2245 | q = UserGroupRepoGroupToPerm.query().filter(UserGroupRepoGroupToPerm.group == self) |
|
2257 | 2246 | q = q.options(joinedload(UserGroupRepoGroupToPerm.group), |
|
2258 | 2247 | joinedload(UserGroupRepoGroupToPerm.users_group), |
|
2259 | 2248 | joinedload(UserGroupRepoGroupToPerm.permission),) |
|
2260 | 2249 | |
|
2261 | 2250 | perm_rows = [] |
|
2262 | 2251 | for _user_group in q.all(): |
|
2263 | 2252 | usr = AttributeDict(_user_group.users_group.get_dict()) |
|
2264 | 2253 | usr.permission = _user_group.permission.permission_name |
|
2265 | 2254 | perm_rows.append(usr) |
|
2266 | 2255 | |
|
2267 | 2256 | return perm_rows |
|
2268 | 2257 | |
|
2269 | 2258 | def get_api_data(self): |
|
2270 | 2259 | """ |
|
2271 | 2260 | Common function for generating api data |
|
2272 | 2261 | |
|
2273 | 2262 | """ |
|
2274 | 2263 | group = self |
|
2275 | 2264 | data = { |
|
2276 | 2265 | 'group_id': group.group_id, |
|
2277 | 2266 | 'group_name': group.group_name, |
|
2278 | 2267 | 'group_description': group.group_description, |
|
2279 | 2268 | 'parent_group': group.parent_group.group_name if group.parent_group else None, |
|
2280 | 2269 | 'repositories': [x.repo_name for x in group.repositories], |
|
2281 | 2270 | 'owner': group.user.username, |
|
2282 | 2271 | } |
|
2283 | 2272 | return data |
|
2284 | 2273 | |
|
2285 | 2274 | |
|
2286 | 2275 | class Permission(Base, BaseModel): |
|
2287 | 2276 | __tablename__ = 'permissions' |
|
2288 | 2277 | __table_args__ = ( |
|
2289 | 2278 | Index('p_perm_name_idx', 'permission_name'), |
|
2290 | 2279 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2291 | 2280 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
2292 | 2281 | ) |
|
2293 | 2282 | PERMS = [ |
|
2294 | 2283 | ('hg.admin', _('RhodeCode Super Administrator')), |
|
2295 | 2284 | |
|
2296 | 2285 | ('repository.none', _('Repository no access')), |
|
2297 | 2286 | ('repository.read', _('Repository read access')), |
|
2298 | 2287 | ('repository.write', _('Repository write access')), |
|
2299 | 2288 | ('repository.admin', _('Repository admin access')), |
|
2300 | 2289 | |
|
2301 | 2290 | ('group.none', _('Repository group no access')), |
|
2302 | 2291 | ('group.read', _('Repository group read access')), |
|
2303 | 2292 | ('group.write', _('Repository group write access')), |
|
2304 | 2293 | ('group.admin', _('Repository group admin access')), |
|
2305 | 2294 | |
|
2306 | 2295 | ('usergroup.none', _('User group no access')), |
|
2307 | 2296 | ('usergroup.read', _('User group read access')), |
|
2308 | 2297 | ('usergroup.write', _('User group write access')), |
|
2309 | 2298 | ('usergroup.admin', _('User group admin access')), |
|
2310 | 2299 | |
|
2311 | 2300 | ('hg.repogroup.create.false', _('Repository Group creation disabled')), |
|
2312 | 2301 | ('hg.repogroup.create.true', _('Repository Group creation enabled')), |
|
2313 | 2302 | |
|
2314 | 2303 | ('hg.usergroup.create.false', _('User Group creation disabled')), |
|
2315 | 2304 | ('hg.usergroup.create.true', _('User Group creation enabled')), |
|
2316 | 2305 | |
|
2317 | 2306 | ('hg.create.none', _('Repository creation disabled')), |
|
2318 | 2307 | ('hg.create.repository', _('Repository creation enabled')), |
|
2319 | 2308 | ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')), |
|
2320 | 2309 | ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')), |
|
2321 | 2310 | |
|
2322 | 2311 | ('hg.fork.none', _('Repository forking disabled')), |
|
2323 | 2312 | ('hg.fork.repository', _('Repository forking enabled')), |
|
2324 | 2313 | |
|
2325 | 2314 | ('hg.register.none', _('Registration disabled')), |
|
2326 | 2315 | ('hg.register.manual_activate', _('User Registration with manual account activation')), |
|
2327 | 2316 | ('hg.register.auto_activate', _('User Registration with automatic account activation')), |
|
2328 | 2317 | |
|
2329 | 2318 | ('hg.extern_activate.manual', _('Manual activation of external account')), |
|
2330 | 2319 | ('hg.extern_activate.auto', _('Automatic activation of external account')), |
|
2331 | 2320 | |
|
2332 | 2321 | ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')), |
|
2333 | 2322 | ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')), |
|
2334 | 2323 | ] |
|
2335 | 2324 | |
|
2336 | 2325 | # definition of system default permissions for DEFAULT user |
|
2337 | 2326 | DEFAULT_USER_PERMISSIONS = [ |
|
2338 | 2327 | 'repository.read', |
|
2339 | 2328 | 'group.read', |
|
2340 | 2329 | 'usergroup.read', |
|
2341 | 2330 | 'hg.create.repository', |
|
2342 | 2331 | 'hg.repogroup.create.false', |
|
2343 | 2332 | 'hg.usergroup.create.false', |
|
2344 | 2333 | 'hg.create.write_on_repogroup.true', |
|
2345 | 2334 | 'hg.fork.repository', |
|
2346 | 2335 | 'hg.register.manual_activate', |
|
2347 | 2336 | 'hg.extern_activate.auto', |
|
2348 | 2337 | 'hg.inherit_default_perms.true', |
|
2349 | 2338 | ] |
|
2350 | 2339 | |
|
2351 | 2340 | # defines which permissions are more important higher the more important |
|
2352 | 2341 | # Weight defines which permissions are more important. |
|
2353 | 2342 | # The higher number the more important. |
|
2354 | 2343 | PERM_WEIGHTS = { |
|
2355 | 2344 | 'repository.none': 0, |
|
2356 | 2345 | 'repository.read': 1, |
|
2357 | 2346 | 'repository.write': 3, |
|
2358 | 2347 | 'repository.admin': 4, |
|
2359 | 2348 | |
|
2360 | 2349 | 'group.none': 0, |
|
2361 | 2350 | 'group.read': 1, |
|
2362 | 2351 | 'group.write': 3, |
|
2363 | 2352 | 'group.admin': 4, |
|
2364 | 2353 | |
|
2365 | 2354 | 'usergroup.none': 0, |
|
2366 | 2355 | 'usergroup.read': 1, |
|
2367 | 2356 | 'usergroup.write': 3, |
|
2368 | 2357 | 'usergroup.admin': 4, |
|
2369 | 2358 | |
|
2370 | 2359 | 'hg.repogroup.create.false': 0, |
|
2371 | 2360 | 'hg.repogroup.create.true': 1, |
|
2372 | 2361 | |
|
2373 | 2362 | 'hg.usergroup.create.false': 0, |
|
2374 | 2363 | 'hg.usergroup.create.true': 1, |
|
2375 | 2364 | |
|
2376 | 2365 | 'hg.fork.none': 0, |
|
2377 | 2366 | 'hg.fork.repository': 1, |
|
2378 | 2367 | 'hg.create.none': 0, |
|
2379 | 2368 | 'hg.create.repository': 1 |
|
2380 | 2369 | } |
|
2381 | 2370 | |
|
2382 | 2371 | permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2383 | 2372 | permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None) |
|
2384 | 2373 | permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None) |
|
2385 | 2374 | |
|
2386 | 2375 | def __unicode__(self): |
|
2387 | 2376 | return u"<%s('%s:%s')>" % ( |
|
2388 | 2377 | self.__class__.__name__, self.permission_id, self.permission_name |
|
2389 | 2378 | ) |
|
2390 | 2379 | |
|
2391 | 2380 | @classmethod |
|
2392 | 2381 | def get_by_key(cls, key): |
|
2393 | 2382 | return cls.query().filter(cls.permission_name == key).scalar() |
|
2394 | 2383 | |
|
2395 | 2384 | @classmethod |
|
2396 | 2385 | def get_default_repo_perms(cls, user_id, repo_id=None): |
|
2397 | 2386 | q = Session().query(UserRepoToPerm, Repository, Permission)\ |
|
2398 | 2387 | .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\ |
|
2399 | 2388 | .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\ |
|
2400 | 2389 | .filter(UserRepoToPerm.user_id == user_id) |
|
2401 | 2390 | if repo_id: |
|
2402 | 2391 | q = q.filter(UserRepoToPerm.repository_id == repo_id) |
|
2403 | 2392 | return q.all() |
|
2404 | 2393 | |
|
2405 | 2394 | @classmethod |
|
2406 | 2395 | def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None): |
|
2407 | 2396 | q = Session().query(UserGroupRepoToPerm, Repository, Permission)\ |
|
2408 | 2397 | .join( |
|
2409 | 2398 | Permission, |
|
2410 | 2399 | UserGroupRepoToPerm.permission_id == Permission.permission_id)\ |
|
2411 | 2400 | .join( |
|
2412 | 2401 | Repository, |
|
2413 | 2402 | UserGroupRepoToPerm.repository_id == Repository.repo_id)\ |
|
2414 | 2403 | .join( |
|
2415 | 2404 | UserGroup, |
|
2416 | 2405 | UserGroupRepoToPerm.users_group_id == |
|
2417 | 2406 | UserGroup.users_group_id)\ |
|
2418 | 2407 | .join( |
|
2419 | 2408 | UserGroupMember, |
|
2420 | 2409 | UserGroupRepoToPerm.users_group_id == |
|
2421 | 2410 | UserGroupMember.users_group_id)\ |
|
2422 | 2411 | .filter( |
|
2423 | 2412 | UserGroupMember.user_id == user_id, |
|
2424 | 2413 | UserGroup.users_group_active == true()) |
|
2425 | 2414 | if repo_id: |
|
2426 | 2415 | q = q.filter(UserGroupRepoToPerm.repository_id == repo_id) |
|
2427 | 2416 | return q.all() |
|
2428 | 2417 | |
|
2429 | 2418 | @classmethod |
|
2430 | 2419 | def get_default_group_perms(cls, user_id, repo_group_id=None): |
|
2431 | 2420 | q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\ |
|
2432 | 2421 | .join((Permission, UserRepoGroupToPerm.permission_id == Permission.permission_id))\ |
|
2433 | 2422 | .join((RepoGroup, UserRepoGroupToPerm.group_id == RepoGroup.group_id))\ |
|
2434 | 2423 | .filter(UserRepoGroupToPerm.user_id == user_id) |
|
2435 | 2424 | if repo_group_id: |
|
2436 | 2425 | q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id) |
|
2437 | 2426 | return q.all() |
|
2438 | 2427 | |
|
2439 | 2428 | @classmethod |
|
2440 | 2429 | def get_default_group_perms_from_user_group( |
|
2441 | 2430 | cls, user_id, repo_group_id=None): |
|
2442 | 2431 | q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\ |
|
2443 | 2432 | .join( |
|
2444 | 2433 | Permission, |
|
2445 | 2434 | UserGroupRepoGroupToPerm.permission_id == |
|
2446 | 2435 | Permission.permission_id)\ |
|
2447 | 2436 | .join( |
|
2448 | 2437 | RepoGroup, |
|
2449 | 2438 | UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
2450 | 2439 | .join( |
|
2451 | 2440 | UserGroup, |
|
2452 | 2441 | UserGroupRepoGroupToPerm.users_group_id == |
|
2453 | 2442 | UserGroup.users_group_id)\ |
|
2454 | 2443 | .join( |
|
2455 | 2444 | UserGroupMember, |
|
2456 | 2445 | UserGroupRepoGroupToPerm.users_group_id == |
|
2457 | 2446 | UserGroupMember.users_group_id)\ |
|
2458 | 2447 | .filter( |
|
2459 | 2448 | UserGroupMember.user_id == user_id, |
|
2460 | 2449 | UserGroup.users_group_active == true()) |
|
2461 | 2450 | if repo_group_id: |
|
2462 | 2451 | q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id) |
|
2463 | 2452 | return q.all() |
|
2464 | 2453 | |
|
2465 | 2454 | @classmethod |
|
2466 | 2455 | def get_default_user_group_perms(cls, user_id, user_group_id=None): |
|
2467 | 2456 | q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\ |
|
2468 | 2457 | .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\ |
|
2469 | 2458 | .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\ |
|
2470 | 2459 | .filter(UserUserGroupToPerm.user_id == user_id) |
|
2471 | 2460 | if user_group_id: |
|
2472 | 2461 | q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id) |
|
2473 | 2462 | return q.all() |
|
2474 | 2463 | |
|
2475 | 2464 | @classmethod |
|
2476 | 2465 | def get_default_user_group_perms_from_user_group( |
|
2477 | 2466 | cls, user_id, user_group_id=None): |
|
2478 | 2467 | TargetUserGroup = aliased(UserGroup, name='target_user_group') |
|
2479 | 2468 | q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\ |
|
2480 | 2469 | .join( |
|
2481 | 2470 | Permission, |
|
2482 | 2471 | UserGroupUserGroupToPerm.permission_id == |
|
2483 | 2472 | Permission.permission_id)\ |
|
2484 | 2473 | .join( |
|
2485 | 2474 | TargetUserGroup, |
|
2486 | 2475 | UserGroupUserGroupToPerm.target_user_group_id == |
|
2487 | 2476 | TargetUserGroup.users_group_id)\ |
|
2488 | 2477 | .join( |
|
2489 | 2478 | UserGroup, |
|
2490 | 2479 | UserGroupUserGroupToPerm.user_group_id == |
|
2491 | 2480 | UserGroup.users_group_id)\ |
|
2492 | 2481 | .join( |
|
2493 | 2482 | UserGroupMember, |
|
2494 | 2483 | UserGroupUserGroupToPerm.user_group_id == |
|
2495 | 2484 | UserGroupMember.users_group_id)\ |
|
2496 | 2485 | .filter( |
|
2497 | 2486 | UserGroupMember.user_id == user_id, |
|
2498 | 2487 | UserGroup.users_group_active == true()) |
|
2499 | 2488 | if user_group_id: |
|
2500 | 2489 | q = q.filter( |
|
2501 | 2490 | UserGroupUserGroupToPerm.user_group_id == user_group_id) |
|
2502 | 2491 | |
|
2503 | 2492 | return q.all() |
|
2504 | 2493 | |
|
2505 | 2494 | |
|
2506 | 2495 | class UserRepoToPerm(Base, BaseModel): |
|
2507 | 2496 | __tablename__ = 'repo_to_perm' |
|
2508 | 2497 | __table_args__ = ( |
|
2509 | 2498 | UniqueConstraint('user_id', 'repository_id', 'permission_id'), |
|
2510 | 2499 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2511 | 2500 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2512 | 2501 | ) |
|
2513 | 2502 | repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2514 | 2503 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
2515 | 2504 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2516 | 2505 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
2517 | 2506 | |
|
2518 | 2507 | user = relationship('User') |
|
2519 | 2508 | repository = relationship('Repository') |
|
2520 | 2509 | permission = relationship('Permission') |
|
2521 | 2510 | |
|
2522 | 2511 | @classmethod |
|
2523 | 2512 | def create(cls, user, repository, permission): |
|
2524 | 2513 | n = cls() |
|
2525 | 2514 | n.user = user |
|
2526 | 2515 | n.repository = repository |
|
2527 | 2516 | n.permission = permission |
|
2528 | 2517 | Session().add(n) |
|
2529 | 2518 | return n |
|
2530 | 2519 | |
|
2531 | 2520 | def __unicode__(self): |
|
2532 | 2521 | return u'<%s => %s >' % (self.user, self.repository) |
|
2533 | 2522 | |
|
2534 | 2523 | |
|
2535 | 2524 | class UserUserGroupToPerm(Base, BaseModel): |
|
2536 | 2525 | __tablename__ = 'user_user_group_to_perm' |
|
2537 | 2526 | __table_args__ = ( |
|
2538 | 2527 | UniqueConstraint('user_id', 'user_group_id', 'permission_id'), |
|
2539 | 2528 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2540 | 2529 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2541 | 2530 | ) |
|
2542 | 2531 | user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2543 | 2532 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
2544 | 2533 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2545 | 2534 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
2546 | 2535 | |
|
2547 | 2536 | user = relationship('User') |
|
2548 | 2537 | user_group = relationship('UserGroup') |
|
2549 | 2538 | permission = relationship('Permission') |
|
2550 | 2539 | |
|
2551 | 2540 | @classmethod |
|
2552 | 2541 | def create(cls, user, user_group, permission): |
|
2553 | 2542 | n = cls() |
|
2554 | 2543 | n.user = user |
|
2555 | 2544 | n.user_group = user_group |
|
2556 | 2545 | n.permission = permission |
|
2557 | 2546 | Session().add(n) |
|
2558 | 2547 | return n |
|
2559 | 2548 | |
|
2560 | 2549 | def __unicode__(self): |
|
2561 | 2550 | return u'<%s => %s >' % (self.user, self.user_group) |
|
2562 | 2551 | |
|
2563 | 2552 | |
|
2564 | 2553 | class UserToPerm(Base, BaseModel): |
|
2565 | 2554 | __tablename__ = 'user_to_perm' |
|
2566 | 2555 | __table_args__ = ( |
|
2567 | 2556 | UniqueConstraint('user_id', 'permission_id'), |
|
2568 | 2557 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2569 | 2558 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2570 | 2559 | ) |
|
2571 | 2560 | user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2572 | 2561 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
2573 | 2562 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2574 | 2563 | |
|
2575 | 2564 | user = relationship('User') |
|
2576 | 2565 | permission = relationship('Permission', lazy='joined') |
|
2577 | 2566 | |
|
2578 | 2567 | def __unicode__(self): |
|
2579 | 2568 | return u'<%s => %s >' % (self.user, self.permission) |
|
2580 | 2569 | |
|
2581 | 2570 | |
|
2582 | 2571 | class UserGroupRepoToPerm(Base, BaseModel): |
|
2583 | 2572 | __tablename__ = 'users_group_repo_to_perm' |
|
2584 | 2573 | __table_args__ = ( |
|
2585 | 2574 | UniqueConstraint('repository_id', 'users_group_id', 'permission_id'), |
|
2586 | 2575 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2587 | 2576 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2588 | 2577 | ) |
|
2589 | 2578 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2590 | 2579 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
2591 | 2580 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2592 | 2581 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
2593 | 2582 | |
|
2594 | 2583 | users_group = relationship('UserGroup') |
|
2595 | 2584 | permission = relationship('Permission') |
|
2596 | 2585 | repository = relationship('Repository') |
|
2597 | 2586 | |
|
2598 | 2587 | @classmethod |
|
2599 | 2588 | def create(cls, users_group, repository, permission): |
|
2600 | 2589 | n = cls() |
|
2601 | 2590 | n.users_group = users_group |
|
2602 | 2591 | n.repository = repository |
|
2603 | 2592 | n.permission = permission |
|
2604 | 2593 | Session().add(n) |
|
2605 | 2594 | return n |
|
2606 | 2595 | |
|
2607 | 2596 | def __unicode__(self): |
|
2608 | 2597 | return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository) |
|
2609 | 2598 | |
|
2610 | 2599 | |
|
2611 | 2600 | class UserGroupUserGroupToPerm(Base, BaseModel): |
|
2612 | 2601 | __tablename__ = 'user_group_user_group_to_perm' |
|
2613 | 2602 | __table_args__ = ( |
|
2614 | 2603 | UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'), |
|
2615 | 2604 | CheckConstraint('target_user_group_id != user_group_id'), |
|
2616 | 2605 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2617 | 2606 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2618 | 2607 | ) |
|
2619 | 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) |
|
2620 | 2609 | target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
2621 | 2610 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2622 | 2611 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
2623 | 2612 | |
|
2624 | 2613 | target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id') |
|
2625 | 2614 | user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id') |
|
2626 | 2615 | permission = relationship('Permission') |
|
2627 | 2616 | |
|
2628 | 2617 | @classmethod |
|
2629 | 2618 | def create(cls, target_user_group, user_group, permission): |
|
2630 | 2619 | n = cls() |
|
2631 | 2620 | n.target_user_group = target_user_group |
|
2632 | 2621 | n.user_group = user_group |
|
2633 | 2622 | n.permission = permission |
|
2634 | 2623 | Session().add(n) |
|
2635 | 2624 | return n |
|
2636 | 2625 | |
|
2637 | 2626 | def __unicode__(self): |
|
2638 | 2627 | return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group) |
|
2639 | 2628 | |
|
2640 | 2629 | |
|
2641 | 2630 | class UserGroupToPerm(Base, BaseModel): |
|
2642 | 2631 | __tablename__ = 'users_group_to_perm' |
|
2643 | 2632 | __table_args__ = ( |
|
2644 | 2633 | UniqueConstraint('users_group_id', 'permission_id',), |
|
2645 | 2634 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2646 | 2635 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2647 | 2636 | ) |
|
2648 | 2637 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2649 | 2638 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
2650 | 2639 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2651 | 2640 | |
|
2652 | 2641 | users_group = relationship('UserGroup') |
|
2653 | 2642 | permission = relationship('Permission') |
|
2654 | 2643 | |
|
2655 | 2644 | |
|
2656 | 2645 | class UserRepoGroupToPerm(Base, BaseModel): |
|
2657 | 2646 | __tablename__ = 'user_repo_group_to_perm' |
|
2658 | 2647 | __table_args__ = ( |
|
2659 | 2648 | UniqueConstraint('user_id', 'group_id', 'permission_id'), |
|
2660 | 2649 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2661 | 2650 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2662 | 2651 | ) |
|
2663 | 2652 | |
|
2664 | 2653 | group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2665 | 2654 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
2666 | 2655 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
2667 | 2656 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2668 | 2657 | |
|
2669 | 2658 | user = relationship('User') |
|
2670 | 2659 | group = relationship('RepoGroup') |
|
2671 | 2660 | permission = relationship('Permission') |
|
2672 | 2661 | |
|
2673 | 2662 | @classmethod |
|
2674 | 2663 | def create(cls, user, repository_group, permission): |
|
2675 | 2664 | n = cls() |
|
2676 | 2665 | n.user = user |
|
2677 | 2666 | n.group = repository_group |
|
2678 | 2667 | n.permission = permission |
|
2679 | 2668 | Session().add(n) |
|
2680 | 2669 | return n |
|
2681 | 2670 | |
|
2682 | 2671 | |
|
2683 | 2672 | class UserGroupRepoGroupToPerm(Base, BaseModel): |
|
2684 | 2673 | __tablename__ = 'users_group_repo_group_to_perm' |
|
2685 | 2674 | __table_args__ = ( |
|
2686 | 2675 | UniqueConstraint('users_group_id', 'group_id'), |
|
2687 | 2676 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2688 | 2677 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2689 | 2678 | ) |
|
2690 | 2679 | |
|
2691 | 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) |
|
2692 | 2681 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
2693 | 2682 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
2694 | 2683 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
2695 | 2684 | |
|
2696 | 2685 | users_group = relationship('UserGroup') |
|
2697 | 2686 | permission = relationship('Permission') |
|
2698 | 2687 | group = relationship('RepoGroup') |
|
2699 | 2688 | |
|
2700 | 2689 | @classmethod |
|
2701 | 2690 | def create(cls, user_group, repository_group, permission): |
|
2702 | 2691 | n = cls() |
|
2703 | 2692 | n.users_group = user_group |
|
2704 | 2693 | n.group = repository_group |
|
2705 | 2694 | n.permission = permission |
|
2706 | 2695 | Session().add(n) |
|
2707 | 2696 | return n |
|
2708 | 2697 | |
|
2709 | 2698 | def __unicode__(self): |
|
2710 | 2699 | return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group) |
|
2711 | 2700 | |
|
2712 | 2701 | |
|
2713 | 2702 | class Statistics(Base, BaseModel): |
|
2714 | 2703 | __tablename__ = 'statistics' |
|
2715 | 2704 | __table_args__ = ( |
|
2716 | 2705 | UniqueConstraint('repository_id'), |
|
2717 | 2706 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2718 | 2707 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2719 | 2708 | ) |
|
2720 | 2709 | stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2721 | 2710 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None) |
|
2722 | 2711 | stat_on_revision = Column("stat_on_revision", Integer(), nullable=False) |
|
2723 | 2712 | commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data |
|
2724 | 2713 | commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data |
|
2725 | 2714 | languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data |
|
2726 | 2715 | |
|
2727 | 2716 | repository = relationship('Repository', single_parent=True) |
|
2728 | 2717 | |
|
2729 | 2718 | |
|
2730 | 2719 | class UserFollowing(Base, BaseModel): |
|
2731 | 2720 | __tablename__ = 'user_followings' |
|
2732 | 2721 | __table_args__ = ( |
|
2733 | 2722 | UniqueConstraint('user_id', 'follows_repository_id'), |
|
2734 | 2723 | UniqueConstraint('user_id', 'follows_user_id'), |
|
2735 | 2724 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2736 | 2725 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2737 | 2726 | ) |
|
2738 | 2727 | |
|
2739 | 2728 | user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2740 | 2729 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
2741 | 2730 | follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None) |
|
2742 | 2731 | follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
2743 | 2732 | follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
2744 | 2733 | |
|
2745 | 2734 | user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id') |
|
2746 | 2735 | |
|
2747 | 2736 | follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id') |
|
2748 | 2737 | follows_repository = relationship('Repository', order_by='Repository.repo_name') |
|
2749 | 2738 | |
|
2750 | 2739 | @classmethod |
|
2751 | 2740 | def get_repo_followers(cls, repo_id): |
|
2752 | 2741 | return cls.query().filter(cls.follows_repo_id == repo_id) |
|
2753 | 2742 | |
|
2754 | 2743 | |
|
2755 | 2744 | class CacheKey(Base, BaseModel): |
|
2756 | 2745 | __tablename__ = 'cache_invalidation' |
|
2757 | 2746 | __table_args__ = ( |
|
2758 | 2747 | UniqueConstraint('cache_key'), |
|
2759 | 2748 | Index('key_idx', 'cache_key'), |
|
2760 | 2749 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2761 | 2750 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
2762 | 2751 | ) |
|
2763 | 2752 | CACHE_TYPE_ATOM = 'ATOM' |
|
2764 | 2753 | CACHE_TYPE_RSS = 'RSS' |
|
2765 | 2754 | CACHE_TYPE_README = 'README' |
|
2766 | 2755 | |
|
2767 | 2756 | cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2768 | 2757 | cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None) |
|
2769 | 2758 | cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None) |
|
2770 | 2759 | cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False) |
|
2771 | 2760 | |
|
2772 | 2761 | def __init__(self, cache_key, cache_args=''): |
|
2773 | 2762 | self.cache_key = cache_key |
|
2774 | 2763 | self.cache_args = cache_args |
|
2775 | 2764 | self.cache_active = False |
|
2776 | 2765 | |
|
2777 | 2766 | def __unicode__(self): |
|
2778 | 2767 | return u"<%s('%s:%s[%s]')>" % ( |
|
2779 | 2768 | self.__class__.__name__, |
|
2780 | 2769 | self.cache_id, self.cache_key, self.cache_active) |
|
2781 | 2770 | |
|
2782 | 2771 | def _cache_key_partition(self): |
|
2783 | 2772 | prefix, repo_name, suffix = self.cache_key.partition(self.cache_args) |
|
2784 | 2773 | return prefix, repo_name, suffix |
|
2785 | 2774 | |
|
2786 | 2775 | def get_prefix(self): |
|
2787 | 2776 | """ |
|
2788 | 2777 | Try to extract prefix from existing cache key. The key could consist |
|
2789 | 2778 | of prefix, repo_name, suffix |
|
2790 | 2779 | """ |
|
2791 | 2780 | # this returns prefix, repo_name, suffix |
|
2792 | 2781 | return self._cache_key_partition()[0] |
|
2793 | 2782 | |
|
2794 | 2783 | def get_suffix(self): |
|
2795 | 2784 | """ |
|
2796 | 2785 | get suffix that might have been used in _get_cache_key to |
|
2797 | 2786 | generate self.cache_key. Only used for informational purposes |
|
2798 | 2787 | in repo_edit.html. |
|
2799 | 2788 | """ |
|
2800 | 2789 | # prefix, repo_name, suffix |
|
2801 | 2790 | return self._cache_key_partition()[2] |
|
2802 | 2791 | |
|
2803 | 2792 | @classmethod |
|
2804 | 2793 | def delete_all_cache(cls): |
|
2805 | 2794 | """ |
|
2806 | 2795 | Delete all cache keys from database. |
|
2807 | 2796 | Should only be run when all instances are down and all entries |
|
2808 | 2797 | thus stale. |
|
2809 | 2798 | """ |
|
2810 | 2799 | cls.query().delete() |
|
2811 | 2800 | Session().commit() |
|
2812 | 2801 | |
|
2813 | 2802 | @classmethod |
|
2814 | 2803 | def get_cache_key(cls, repo_name, cache_type): |
|
2815 | 2804 | """ |
|
2816 | 2805 | |
|
2817 | 2806 | Generate a cache key for this process of RhodeCode instance. |
|
2818 | 2807 | Prefix most likely will be process id or maybe explicitly set |
|
2819 | 2808 | instance_id from .ini file. |
|
2820 | 2809 | """ |
|
2821 | 2810 | import rhodecode |
|
2822 | 2811 | prefix = safe_unicode(rhodecode.CONFIG.get('instance_id') or '') |
|
2823 | 2812 | |
|
2824 | 2813 | repo_as_unicode = safe_unicode(repo_name) |
|
2825 | 2814 | key = u'{}_{}'.format(repo_as_unicode, cache_type) \ |
|
2826 | 2815 | if cache_type else repo_as_unicode |
|
2827 | 2816 | |
|
2828 | 2817 | return u'{}{}'.format(prefix, key) |
|
2829 | 2818 | |
|
2830 | 2819 | @classmethod |
|
2831 | 2820 | def set_invalidate(cls, repo_name, delete=False): |
|
2832 | 2821 | """ |
|
2833 | 2822 | Mark all caches of a repo as invalid in the database. |
|
2834 | 2823 | """ |
|
2835 | 2824 | |
|
2836 | 2825 | try: |
|
2837 | 2826 | qry = Session().query(cls).filter(cls.cache_args == repo_name) |
|
2838 | 2827 | if delete: |
|
2839 | 2828 | log.debug('cache objects deleted for repo %s', |
|
2840 | 2829 | safe_str(repo_name)) |
|
2841 | 2830 | qry.delete() |
|
2842 | 2831 | else: |
|
2843 | 2832 | log.debug('cache objects marked as invalid for repo %s', |
|
2844 | 2833 | safe_str(repo_name)) |
|
2845 | 2834 | qry.update({"cache_active": False}) |
|
2846 | 2835 | |
|
2847 | 2836 | Session().commit() |
|
2848 | 2837 | except Exception: |
|
2849 | 2838 | log.exception( |
|
2850 | 2839 | 'Cache key invalidation failed for repository %s', |
|
2851 | 2840 | safe_str(repo_name)) |
|
2852 | 2841 | Session().rollback() |
|
2853 | 2842 | |
|
2854 | 2843 | @classmethod |
|
2855 | 2844 | def get_active_cache(cls, cache_key): |
|
2856 | 2845 | inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar() |
|
2857 | 2846 | if inv_obj: |
|
2858 | 2847 | return inv_obj |
|
2859 | 2848 | return None |
|
2860 | 2849 | |
|
2861 | 2850 | @classmethod |
|
2862 | 2851 | def repo_context_cache(cls, compute_func, repo_name, cache_type): |
|
2863 | 2852 | """ |
|
2864 | 2853 | @cache_region('long_term') |
|
2865 | 2854 | def _heavy_calculation(cache_key): |
|
2866 | 2855 | return 'result' |
|
2867 | 2856 | |
|
2868 | 2857 | cache_context = CacheKey.repo_context_cache( |
|
2869 | 2858 | _heavy_calculation, repo_name, cache_type) |
|
2870 | 2859 | |
|
2871 | 2860 | with cache_context as context: |
|
2872 | 2861 | context.invalidate() |
|
2873 | 2862 | computed = context.compute() |
|
2874 | 2863 | |
|
2875 | 2864 | assert computed == 'result' |
|
2876 | 2865 | """ |
|
2877 | 2866 | from rhodecode.lib import caches |
|
2878 | 2867 | return caches.InvalidationContext(compute_func, repo_name, cache_type) |
|
2879 | 2868 | |
|
2880 | 2869 | |
|
2881 | 2870 | class ChangesetComment(Base, BaseModel): |
|
2882 | 2871 | __tablename__ = 'changeset_comments' |
|
2883 | 2872 | __table_args__ = ( |
|
2884 | 2873 | Index('cc_revision_idx', 'revision'), |
|
2885 | 2874 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2886 | 2875 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
2887 | 2876 | ) |
|
2888 | 2877 | |
|
2889 | 2878 | COMMENT_OUTDATED = u'comment_outdated' |
|
2890 | 2879 | |
|
2891 | 2880 | comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True) |
|
2892 | 2881 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
2893 | 2882 | revision = Column('revision', String(40), nullable=True) |
|
2894 | 2883 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
2895 | 2884 | pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True) |
|
2896 | 2885 | line_no = Column('line_no', Unicode(10), nullable=True) |
|
2897 | 2886 | hl_lines = Column('hl_lines', Unicode(512), nullable=True) |
|
2898 | 2887 | f_path = Column('f_path', Unicode(1000), nullable=True) |
|
2899 | 2888 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
2900 | 2889 | text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False) |
|
2901 | 2890 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
2902 | 2891 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
2903 | 2892 | renderer = Column('renderer', Unicode(64), nullable=True) |
|
2904 | 2893 | display_state = Column('display_state', Unicode(128), nullable=True) |
|
2905 | 2894 | |
|
2906 | 2895 | author = relationship('User', lazy='joined') |
|
2907 | 2896 | repo = relationship('Repository') |
|
2908 | 2897 | status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan") |
|
2909 | 2898 | pull_request = relationship('PullRequest', lazy='joined') |
|
2910 | 2899 | pull_request_version = relationship('PullRequestVersion') |
|
2911 | 2900 | |
|
2912 | 2901 | @classmethod |
|
2913 | 2902 | def get_users(cls, revision=None, pull_request_id=None): |
|
2914 | 2903 | """ |
|
2915 | 2904 | Returns user associated with this ChangesetComment. ie those |
|
2916 | 2905 | who actually commented |
|
2917 | 2906 | |
|
2918 | 2907 | :param cls: |
|
2919 | 2908 | :param revision: |
|
2920 | 2909 | """ |
|
2921 | 2910 | q = Session().query(User)\ |
|
2922 | 2911 | .join(ChangesetComment.author) |
|
2923 | 2912 | if revision: |
|
2924 | 2913 | q = q.filter(cls.revision == revision) |
|
2925 | 2914 | elif pull_request_id: |
|
2926 | 2915 | q = q.filter(cls.pull_request_id == pull_request_id) |
|
2927 | 2916 | return q.all() |
|
2928 | 2917 | |
|
2929 | 2918 | def render(self, mentions=False): |
|
2930 | 2919 | from rhodecode.lib import helpers as h |
|
2931 | 2920 | return h.render(self.text, renderer=self.renderer, mentions=mentions) |
|
2932 | 2921 | |
|
2933 | 2922 | def __repr__(self): |
|
2934 | 2923 | if self.comment_id: |
|
2935 | 2924 | return '<DB:ChangesetComment #%s>' % self.comment_id |
|
2936 | 2925 | else: |
|
2937 | 2926 | return '<DB:ChangesetComment at %#x>' % id(self) |
|
2938 | 2927 | |
|
2939 | 2928 | |
|
2940 | 2929 | class ChangesetStatus(Base, BaseModel): |
|
2941 | 2930 | __tablename__ = 'changeset_statuses' |
|
2942 | 2931 | __table_args__ = ( |
|
2943 | 2932 | Index('cs_revision_idx', 'revision'), |
|
2944 | 2933 | Index('cs_version_idx', 'version'), |
|
2945 | 2934 | UniqueConstraint('repo_id', 'revision', 'version'), |
|
2946 | 2935 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
2947 | 2936 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
2948 | 2937 | ) |
|
2949 | 2938 | STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed' |
|
2950 | 2939 | STATUS_APPROVED = 'approved' |
|
2951 | 2940 | STATUS_REJECTED = 'rejected' |
|
2952 | 2941 | STATUS_UNDER_REVIEW = 'under_review' |
|
2953 | 2942 | |
|
2954 | 2943 | STATUSES = [ |
|
2955 | 2944 | (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default |
|
2956 | 2945 | (STATUS_APPROVED, _("Approved")), |
|
2957 | 2946 | (STATUS_REJECTED, _("Rejected")), |
|
2958 | 2947 | (STATUS_UNDER_REVIEW, _("Under Review")), |
|
2959 | 2948 | ] |
|
2960 | 2949 | |
|
2961 | 2950 | changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True) |
|
2962 | 2951 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
2963 | 2952 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None) |
|
2964 | 2953 | revision = Column('revision', String(40), nullable=False) |
|
2965 | 2954 | status = Column('status', String(128), nullable=False, default=DEFAULT) |
|
2966 | 2955 | changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id')) |
|
2967 | 2956 | modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now) |
|
2968 | 2957 | version = Column('version', Integer(), nullable=False, default=0) |
|
2969 | 2958 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
2970 | 2959 | |
|
2971 | 2960 | author = relationship('User', lazy='joined') |
|
2972 | 2961 | repo = relationship('Repository') |
|
2973 | 2962 | comment = relationship('ChangesetComment', lazy='joined') |
|
2974 | 2963 | pull_request = relationship('PullRequest', lazy='joined') |
|
2975 | 2964 | |
|
2976 | 2965 | def __unicode__(self): |
|
2977 | 2966 | return u"<%s('%s[%s]:%s')>" % ( |
|
2978 | 2967 | self.__class__.__name__, |
|
2979 | 2968 | self.status, self.version, self.author |
|
2980 | 2969 | ) |
|
2981 | 2970 | |
|
2982 | 2971 | @classmethod |
|
2983 | 2972 | def get_status_lbl(cls, value): |
|
2984 | 2973 | return dict(cls.STATUSES).get(value) |
|
2985 | 2974 | |
|
2986 | 2975 | @property |
|
2987 | 2976 | def status_lbl(self): |
|
2988 | 2977 | return ChangesetStatus.get_status_lbl(self.status) |
|
2989 | 2978 | |
|
2990 | 2979 | |
|
2991 | 2980 | class _PullRequestBase(BaseModel): |
|
2992 | 2981 | """ |
|
2993 | 2982 | Common attributes of pull request and version entries. |
|
2994 | 2983 | """ |
|
2995 | 2984 | |
|
2996 | 2985 | # .status values |
|
2997 | 2986 | STATUS_NEW = u'new' |
|
2998 | 2987 | STATUS_OPEN = u'open' |
|
2999 | 2988 | STATUS_CLOSED = u'closed' |
|
3000 | 2989 | |
|
3001 | 2990 | title = Column('title', Unicode(255), nullable=True) |
|
3002 | 2991 | description = Column( |
|
3003 | 2992 | 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), |
|
3004 | 2993 | nullable=True) |
|
3005 | 2994 | # new/open/closed status of pull request (not approve/reject/etc) |
|
3006 | 2995 | status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW) |
|
3007 | 2996 | created_on = Column( |
|
3008 | 2997 | 'created_on', DateTime(timezone=False), nullable=False, |
|
3009 | 2998 | default=datetime.datetime.now) |
|
3010 | 2999 | updated_on = Column( |
|
3011 | 3000 | 'updated_on', DateTime(timezone=False), nullable=False, |
|
3012 | 3001 | default=datetime.datetime.now) |
|
3013 | 3002 | |
|
3014 | 3003 | @declared_attr |
|
3015 | 3004 | def user_id(cls): |
|
3016 | 3005 | return Column( |
|
3017 | 3006 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
3018 | 3007 | unique=None) |
|
3019 | 3008 | |
|
3020 | 3009 | # 500 revisions max |
|
3021 | 3010 | _revisions = Column( |
|
3022 | 3011 | 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql')) |
|
3023 | 3012 | |
|
3024 | 3013 | @declared_attr |
|
3025 | 3014 | def source_repo_id(cls): |
|
3026 | 3015 | # TODO: dan: rename column to source_repo_id |
|
3027 | 3016 | return Column( |
|
3028 | 3017 | 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3029 | 3018 | nullable=False) |
|
3030 | 3019 | |
|
3031 | 3020 | source_ref = Column('org_ref', Unicode(255), nullable=False) |
|
3032 | 3021 | |
|
3033 | 3022 | @declared_attr |
|
3034 | 3023 | def target_repo_id(cls): |
|
3035 | 3024 | # TODO: dan: rename column to target_repo_id |
|
3036 | 3025 | return Column( |
|
3037 | 3026 | 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3038 | 3027 | nullable=False) |
|
3039 | 3028 | |
|
3040 | 3029 | target_ref = Column('other_ref', Unicode(255), nullable=False) |
|
3041 | 3030 | |
|
3042 | 3031 | # TODO: dan: rename column to last_merge_source_rev |
|
3043 | 3032 | _last_merge_source_rev = Column( |
|
3044 | 3033 | 'last_merge_org_rev', String(40), nullable=True) |
|
3045 | 3034 | # TODO: dan: rename column to last_merge_target_rev |
|
3046 | 3035 | _last_merge_target_rev = Column( |
|
3047 | 3036 | 'last_merge_other_rev', String(40), nullable=True) |
|
3048 | 3037 | _last_merge_status = Column('merge_status', Integer(), nullable=True) |
|
3049 | 3038 | merge_rev = Column('merge_rev', String(40), nullable=True) |
|
3050 | 3039 | |
|
3051 | 3040 | @hybrid_property |
|
3052 | 3041 | def revisions(self): |
|
3053 | 3042 | return self._revisions.split(':') if self._revisions else [] |
|
3054 | 3043 | |
|
3055 | 3044 | @revisions.setter |
|
3056 | 3045 | def revisions(self, val): |
|
3057 | 3046 | self._revisions = ':'.join(val) |
|
3058 | 3047 | |
|
3059 | 3048 | @declared_attr |
|
3060 | 3049 | def author(cls): |
|
3061 | 3050 | return relationship('User', lazy='joined') |
|
3062 | 3051 | |
|
3063 | 3052 | @declared_attr |
|
3064 | 3053 | def source_repo(cls): |
|
3065 | 3054 | return relationship( |
|
3066 | 3055 | 'Repository', |
|
3067 | 3056 | primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__) |
|
3068 | 3057 | |
|
3069 | 3058 | @property |
|
3070 | 3059 | def source_ref_parts(self): |
|
3071 | 3060 | refs = self.source_ref.split(':') |
|
3072 | 3061 | return Reference(refs[0], refs[1], refs[2]) |
|
3073 | 3062 | |
|
3074 | 3063 | @declared_attr |
|
3075 | 3064 | def target_repo(cls): |
|
3076 | 3065 | return relationship( |
|
3077 | 3066 | 'Repository', |
|
3078 | 3067 | primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__) |
|
3079 | 3068 | |
|
3080 | 3069 | @property |
|
3081 | 3070 | def target_ref_parts(self): |
|
3082 | 3071 | refs = self.target_ref.split(':') |
|
3083 | 3072 | return Reference(refs[0], refs[1], refs[2]) |
|
3084 | 3073 | |
|
3085 | 3074 | |
|
3086 | 3075 | class PullRequest(Base, _PullRequestBase): |
|
3087 | 3076 | __tablename__ = 'pull_requests' |
|
3088 | 3077 | __table_args__ = ( |
|
3089 | 3078 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3090 | 3079 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
3091 | 3080 | ) |
|
3092 | 3081 | |
|
3093 | 3082 | pull_request_id = Column( |
|
3094 | 3083 | 'pull_request_id', Integer(), nullable=False, primary_key=True) |
|
3095 | 3084 | |
|
3096 | 3085 | def __repr__(self): |
|
3097 | 3086 | if self.pull_request_id: |
|
3098 | 3087 | return '<DB:PullRequest #%s>' % self.pull_request_id |
|
3099 | 3088 | else: |
|
3100 | 3089 | return '<DB:PullRequest at %#x>' % id(self) |
|
3101 | 3090 | |
|
3102 | 3091 | reviewers = relationship('PullRequestReviewers', |
|
3103 | 3092 | cascade="all, delete, delete-orphan") |
|
3104 | 3093 | statuses = relationship('ChangesetStatus') |
|
3105 | 3094 | comments = relationship('ChangesetComment', |
|
3106 | 3095 | cascade="all, delete, delete-orphan") |
|
3107 | 3096 | versions = relationship('PullRequestVersion', |
|
3108 | 3097 | cascade="all, delete, delete-orphan") |
|
3109 | 3098 | |
|
3110 | 3099 | def is_closed(self): |
|
3111 | 3100 | return self.status == self.STATUS_CLOSED |
|
3112 | 3101 | |
|
3113 | 3102 | def get_api_data(self): |
|
3114 | 3103 | from rhodecode.model.pull_request import PullRequestModel |
|
3115 | 3104 | pull_request = self |
|
3116 | 3105 | merge_status = PullRequestModel().merge_status(pull_request) |
|
3117 | 3106 | data = { |
|
3118 | 3107 | 'pull_request_id': pull_request.pull_request_id, |
|
3119 | 3108 | 'url': url('pullrequest_show', repo_name=self.target_repo.repo_name, |
|
3120 | 3109 | pull_request_id=self.pull_request_id, |
|
3121 | 3110 | qualified=True), |
|
3122 | 3111 | 'title': pull_request.title, |
|
3123 | 3112 | 'description': pull_request.description, |
|
3124 | 3113 | 'status': pull_request.status, |
|
3125 | 3114 | 'created_on': pull_request.created_on, |
|
3126 | 3115 | 'updated_on': pull_request.updated_on, |
|
3127 | 3116 | 'commit_ids': pull_request.revisions, |
|
3128 | 3117 | 'review_status': pull_request.calculated_review_status(), |
|
3129 | 3118 | 'mergeable': { |
|
3130 | 3119 | 'status': merge_status[0], |
|
3131 | 3120 | 'message': unicode(merge_status[1]), |
|
3132 | 3121 | }, |
|
3133 | 3122 | 'source': { |
|
3134 | 3123 | 'clone_url': pull_request.source_repo.clone_url(), |
|
3135 | 3124 | 'repository': pull_request.source_repo.repo_name, |
|
3136 | 3125 | 'reference': { |
|
3137 | 3126 | 'name': pull_request.source_ref_parts.name, |
|
3138 | 3127 | 'type': pull_request.source_ref_parts.type, |
|
3139 | 3128 | 'commit_id': pull_request.source_ref_parts.commit_id, |
|
3140 | 3129 | }, |
|
3141 | 3130 | }, |
|
3142 | 3131 | 'target': { |
|
3143 | 3132 | 'clone_url': pull_request.target_repo.clone_url(), |
|
3144 | 3133 | 'repository': pull_request.target_repo.repo_name, |
|
3145 | 3134 | 'reference': { |
|
3146 | 3135 | 'name': pull_request.target_ref_parts.name, |
|
3147 | 3136 | 'type': pull_request.target_ref_parts.type, |
|
3148 | 3137 | 'commit_id': pull_request.target_ref_parts.commit_id, |
|
3149 | 3138 | }, |
|
3150 | 3139 | }, |
|
3151 | 3140 | 'author': pull_request.author.get_api_data(include_secrets=False, |
|
3152 | 3141 | details='basic'), |
|
3153 | 3142 | 'reviewers': [ |
|
3154 | 3143 | { |
|
3155 | 3144 | 'user': reviewer.get_api_data(include_secrets=False, |
|
3156 | 3145 | details='basic'), |
|
3157 | 3146 | 'review_status': st[0][1].status if st else 'not_reviewed', |
|
3158 | 3147 | } |
|
3159 | 3148 | for reviewer, st in pull_request.reviewers_statuses() |
|
3160 | 3149 | ] |
|
3161 | 3150 | } |
|
3162 | 3151 | |
|
3163 | 3152 | return data |
|
3164 | 3153 | |
|
3165 | 3154 | def __json__(self): |
|
3166 | 3155 | return { |
|
3167 | 3156 | 'revisions': self.revisions, |
|
3168 | 3157 | } |
|
3169 | 3158 | |
|
3170 | 3159 | def calculated_review_status(self): |
|
3171 | 3160 | # TODO: anderson: 13.05.15 Used only on templates/my_account_pullrequests.html |
|
3172 | 3161 | # because it's tricky on how to use ChangesetStatusModel from there |
|
3173 | 3162 | warnings.warn("Use calculated_review_status from ChangesetStatusModel", DeprecationWarning) |
|
3174 | 3163 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
3175 | 3164 | return ChangesetStatusModel().calculated_review_status(self) |
|
3176 | 3165 | |
|
3177 | 3166 | def reviewers_statuses(self): |
|
3178 | 3167 | warnings.warn("Use reviewers_statuses from ChangesetStatusModel", DeprecationWarning) |
|
3179 | 3168 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
3180 | 3169 | return ChangesetStatusModel().reviewers_statuses(self) |
|
3181 | 3170 | |
|
3182 | 3171 | |
|
3183 | 3172 | class PullRequestVersion(Base, _PullRequestBase): |
|
3184 | 3173 | __tablename__ = 'pull_request_versions' |
|
3185 | 3174 | __table_args__ = ( |
|
3186 | 3175 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3187 | 3176 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
3188 | 3177 | ) |
|
3189 | 3178 | |
|
3190 | 3179 | pull_request_version_id = Column( |
|
3191 | 3180 | 'pull_request_version_id', Integer(), nullable=False, primary_key=True) |
|
3192 | 3181 | pull_request_id = Column( |
|
3193 | 3182 | 'pull_request_id', Integer(), |
|
3194 | 3183 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
3195 | 3184 | pull_request = relationship('PullRequest') |
|
3196 | 3185 | |
|
3197 | 3186 | def __repr__(self): |
|
3198 | 3187 | if self.pull_request_version_id: |
|
3199 | 3188 | return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id |
|
3200 | 3189 | else: |
|
3201 | 3190 | return '<DB:PullRequestVersion at %#x>' % id(self) |
|
3202 | 3191 | |
|
3203 | 3192 | |
|
3204 | 3193 | class PullRequestReviewers(Base, BaseModel): |
|
3205 | 3194 | __tablename__ = 'pull_request_reviewers' |
|
3206 | 3195 | __table_args__ = ( |
|
3207 | 3196 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3208 | 3197 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
3209 | 3198 | ) |
|
3210 | 3199 | |
|
3211 | 3200 | def __init__(self, user=None, pull_request=None): |
|
3212 | 3201 | self.user = user |
|
3213 | 3202 | self.pull_request = pull_request |
|
3214 | 3203 | |
|
3215 | 3204 | pull_requests_reviewers_id = Column( |
|
3216 | 3205 | 'pull_requests_reviewers_id', Integer(), nullable=False, |
|
3217 | 3206 | primary_key=True) |
|
3218 | 3207 | pull_request_id = Column( |
|
3219 | 3208 | "pull_request_id", Integer(), |
|
3220 | 3209 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
3221 | 3210 | user_id = Column( |
|
3222 | 3211 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
3223 | 3212 | |
|
3224 | 3213 | user = relationship('User') |
|
3225 | 3214 | pull_request = relationship('PullRequest') |
|
3226 | 3215 | |
|
3227 | 3216 | |
|
3228 | 3217 | class Notification(Base, BaseModel): |
|
3229 | 3218 | __tablename__ = 'notifications' |
|
3230 | 3219 | __table_args__ = ( |
|
3231 | 3220 | Index('notification_type_idx', 'type'), |
|
3232 | 3221 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3233 | 3222 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
3234 | 3223 | ) |
|
3235 | 3224 | |
|
3236 | 3225 | TYPE_CHANGESET_COMMENT = u'cs_comment' |
|
3237 | 3226 | TYPE_MESSAGE = u'message' |
|
3238 | 3227 | TYPE_MENTION = u'mention' |
|
3239 | 3228 | TYPE_REGISTRATION = u'registration' |
|
3240 | 3229 | TYPE_PULL_REQUEST = u'pull_request' |
|
3241 | 3230 | TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment' |
|
3242 | 3231 | |
|
3243 | 3232 | notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True) |
|
3244 | 3233 | subject = Column('subject', Unicode(512), nullable=True) |
|
3245 | 3234 | body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True) |
|
3246 | 3235 | created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
3247 | 3236 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3248 | 3237 | type_ = Column('type', Unicode(255)) |
|
3249 | 3238 | |
|
3250 | 3239 | created_by_user = relationship('User') |
|
3251 | 3240 | notifications_to_users = relationship('UserNotification', lazy='joined', |
|
3252 | 3241 | cascade="all, delete, delete-orphan") |
|
3253 | 3242 | |
|
3254 | 3243 | @property |
|
3255 | 3244 | def recipients(self): |
|
3256 | 3245 | return [x.user for x in UserNotification.query()\ |
|
3257 | 3246 | .filter(UserNotification.notification == self)\ |
|
3258 | 3247 | .order_by(UserNotification.user_id.asc()).all()] |
|
3259 | 3248 | |
|
3260 | 3249 | @classmethod |
|
3261 | 3250 | def create(cls, created_by, subject, body, recipients, type_=None): |
|
3262 | 3251 | if type_ is None: |
|
3263 | 3252 | type_ = Notification.TYPE_MESSAGE |
|
3264 | 3253 | |
|
3265 | 3254 | notification = cls() |
|
3266 | 3255 | notification.created_by_user = created_by |
|
3267 | 3256 | notification.subject = subject |
|
3268 | 3257 | notification.body = body |
|
3269 | 3258 | notification.type_ = type_ |
|
3270 | 3259 | notification.created_on = datetime.datetime.now() |
|
3271 | 3260 | |
|
3272 | 3261 | for u in recipients: |
|
3273 | 3262 | assoc = UserNotification() |
|
3274 | 3263 | assoc.notification = notification |
|
3275 | 3264 | |
|
3276 | 3265 | # if created_by is inside recipients mark his notification |
|
3277 | 3266 | # as read |
|
3278 | 3267 | if u.user_id == created_by.user_id: |
|
3279 | 3268 | assoc.read = True |
|
3280 | 3269 | |
|
3281 | 3270 | u.notifications.append(assoc) |
|
3282 | 3271 | Session().add(notification) |
|
3283 | 3272 | |
|
3284 | 3273 | return notification |
|
3285 | 3274 | |
|
3286 | 3275 | @property |
|
3287 | 3276 | def description(self): |
|
3288 | 3277 | from rhodecode.model.notification import NotificationModel |
|
3289 | 3278 | return NotificationModel().make_description(self) |
|
3290 | 3279 | |
|
3291 | 3280 | |
|
3292 | 3281 | class UserNotification(Base, BaseModel): |
|
3293 | 3282 | __tablename__ = 'user_to_notification' |
|
3294 | 3283 | __table_args__ = ( |
|
3295 | 3284 | UniqueConstraint('user_id', 'notification_id'), |
|
3296 | 3285 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3297 | 3286 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
3298 | 3287 | ) |
|
3299 | 3288 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
3300 | 3289 | notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True) |
|
3301 | 3290 | read = Column('read', Boolean, default=False) |
|
3302 | 3291 | sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None) |
|
3303 | 3292 | |
|
3304 | 3293 | user = relationship('User', lazy="joined") |
|
3305 | 3294 | notification = relationship('Notification', lazy="joined", |
|
3306 | 3295 | order_by=lambda: Notification.created_on.desc(),) |
|
3307 | 3296 | |
|
3308 | 3297 | def mark_as_read(self): |
|
3309 | 3298 | self.read = True |
|
3310 | 3299 | Session().add(self) |
|
3311 | 3300 | |
|
3312 | 3301 | |
|
3313 | 3302 | class Gist(Base, BaseModel): |
|
3314 | 3303 | __tablename__ = 'gists' |
|
3315 | 3304 | __table_args__ = ( |
|
3316 | 3305 | Index('g_gist_access_id_idx', 'gist_access_id'), |
|
3317 | 3306 | Index('g_created_on_idx', 'created_on'), |
|
3318 | 3307 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3319 | 3308 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
3320 | 3309 | ) |
|
3321 | 3310 | GIST_PUBLIC = u'public' |
|
3322 | 3311 | GIST_PRIVATE = u'private' |
|
3323 | 3312 | DEFAULT_FILENAME = u'gistfile1.txt' |
|
3324 | 3313 | |
|
3325 | 3314 | ACL_LEVEL_PUBLIC = u'acl_public' |
|
3326 | 3315 | ACL_LEVEL_PRIVATE = u'acl_private' |
|
3327 | 3316 | |
|
3328 | 3317 | gist_id = Column('gist_id', Integer(), primary_key=True) |
|
3329 | 3318 | gist_access_id = Column('gist_access_id', Unicode(250)) |
|
3330 | 3319 | gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
3331 | 3320 | gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True) |
|
3332 | 3321 | gist_expires = Column('gist_expires', Float(53), nullable=False) |
|
3333 | 3322 | gist_type = Column('gist_type', Unicode(128), nullable=False) |
|
3334 | 3323 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3335 | 3324 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3336 | 3325 | acl_level = Column('acl_level', Unicode(128), nullable=True) |
|
3337 | 3326 | |
|
3338 | 3327 | owner = relationship('User') |
|
3339 | 3328 | |
|
3340 | 3329 | def __repr__(self): |
|
3341 | 3330 | return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id) |
|
3342 | 3331 | |
|
3343 | 3332 | @classmethod |
|
3344 | 3333 | def get_or_404(cls, id_): |
|
3345 | 3334 | res = cls.query().filter(cls.gist_access_id == id_).scalar() |
|
3346 | 3335 | if not res: |
|
3347 | 3336 | raise HTTPNotFound |
|
3348 | 3337 | return res |
|
3349 | 3338 | |
|
3350 | 3339 | @classmethod |
|
3351 | 3340 | def get_by_access_id(cls, gist_access_id): |
|
3352 | 3341 | return cls.query().filter(cls.gist_access_id == gist_access_id).scalar() |
|
3353 | 3342 | |
|
3354 | 3343 | def gist_url(self): |
|
3355 | 3344 | import rhodecode |
|
3356 | 3345 | alias_url = rhodecode.CONFIG.get('gist_alias_url') |
|
3357 | 3346 | if alias_url: |
|
3358 | 3347 | return alias_url.replace('{gistid}', self.gist_access_id) |
|
3359 | 3348 | |
|
3360 | 3349 | return url('gist', gist_id=self.gist_access_id, qualified=True) |
|
3361 | 3350 | |
|
3362 | 3351 | @classmethod |
|
3363 | 3352 | def base_path(cls): |
|
3364 | 3353 | """ |
|
3365 | 3354 | Returns base path when all gists are stored |
|
3366 | 3355 | |
|
3367 | 3356 | :param cls: |
|
3368 | 3357 | """ |
|
3369 | 3358 | from rhodecode.model.gist import GIST_STORE_LOC |
|
3370 | 3359 | q = Session().query(RhodeCodeUi)\ |
|
3371 | 3360 | .filter(RhodeCodeUi.ui_key == URL_SEP) |
|
3372 | 3361 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
3373 | 3362 | return os.path.join(q.one().ui_value, GIST_STORE_LOC) |
|
3374 | 3363 | |
|
3375 | 3364 | def get_api_data(self): |
|
3376 | 3365 | """ |
|
3377 | 3366 | Common function for generating gist related data for API |
|
3378 | 3367 | """ |
|
3379 | 3368 | gist = self |
|
3380 | 3369 | data = { |
|
3381 | 3370 | 'gist_id': gist.gist_id, |
|
3382 | 3371 | 'type': gist.gist_type, |
|
3383 | 3372 | 'access_id': gist.gist_access_id, |
|
3384 | 3373 | 'description': gist.gist_description, |
|
3385 | 3374 | 'url': gist.gist_url(), |
|
3386 | 3375 | 'expires': gist.gist_expires, |
|
3387 | 3376 | 'created_on': gist.created_on, |
|
3388 | 3377 | 'modified_at': gist.modified_at, |
|
3389 | 3378 | 'content': None, |
|
3390 | 3379 | 'acl_level': gist.acl_level, |
|
3391 | 3380 | } |
|
3392 | 3381 | return data |
|
3393 | 3382 | |
|
3394 | 3383 | def __json__(self): |
|
3395 | 3384 | data = dict( |
|
3396 | 3385 | ) |
|
3397 | 3386 | data.update(self.get_api_data()) |
|
3398 | 3387 | return data |
|
3399 | 3388 | # SCM functions |
|
3400 | 3389 | |
|
3401 | 3390 | def scm_instance(self, **kwargs): |
|
3402 | from rhodecode.lib.vcs import get_repo | |
|
3403 | base_path = self.base_path() | |
|
3404 | return get_repo(os.path.join(*map(safe_str, | |
|
3405 | [base_path, self.gist_access_id]))) | |
|
3391 | full_repo_path = os.path.join(self.base_path(), self.gist_access_id) | |
|
3392 | return get_vcs_instance( | |
|
3393 | repo_path=safe_str(full_repo_path), create=False) | |
|
3406 | 3394 | |
|
3407 | 3395 | |
|
3408 | 3396 | class DbMigrateVersion(Base, BaseModel): |
|
3409 | 3397 | __tablename__ = 'db_migrate_version' |
|
3410 | 3398 | __table_args__ = ( |
|
3411 | 3399 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3412 | 3400 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True}, |
|
3413 | 3401 | ) |
|
3414 | 3402 | repository_id = Column('repository_id', String(250), primary_key=True) |
|
3415 | 3403 | repository_path = Column('repository_path', Text) |
|
3416 | 3404 | version = Column('version', Integer) |
|
3417 | 3405 | |
|
3418 | 3406 | |
|
3419 | 3407 | class ExternalIdentity(Base, BaseModel): |
|
3420 | 3408 | __tablename__ = 'external_identities' |
|
3421 | 3409 | __table_args__ = ( |
|
3422 | 3410 | Index('local_user_id_idx', 'local_user_id'), |
|
3423 | 3411 | Index('external_id_idx', 'external_id'), |
|
3424 | 3412 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3425 | 3413 | 'mysql_charset': 'utf8'}) |
|
3426 | 3414 | |
|
3427 | 3415 | external_id = Column('external_id', Unicode(255), default=u'', |
|
3428 | 3416 | primary_key=True) |
|
3429 | 3417 | external_username = Column('external_username', Unicode(1024), default=u'') |
|
3430 | 3418 | local_user_id = Column('local_user_id', Integer(), |
|
3431 | 3419 | ForeignKey('users.user_id'), primary_key=True) |
|
3432 | 3420 | provider_name = Column('provider_name', Unicode(255), default=u'', |
|
3433 | 3421 | primary_key=True) |
|
3434 | 3422 | access_token = Column('access_token', String(1024), default=u'') |
|
3435 | 3423 | alt_token = Column('alt_token', String(1024), default=u'') |
|
3436 | 3424 | token_secret = Column('token_secret', String(1024), default=u'') |
|
3437 | 3425 | |
|
3438 | 3426 | @classmethod |
|
3439 | 3427 | def by_external_id_and_provider(cls, external_id, provider_name, |
|
3440 | 3428 | local_user_id=None): |
|
3441 | 3429 | """ |
|
3442 | 3430 | Returns ExternalIdentity instance based on search params |
|
3443 | 3431 | |
|
3444 | 3432 | :param external_id: |
|
3445 | 3433 | :param provider_name: |
|
3446 | 3434 | :return: ExternalIdentity |
|
3447 | 3435 | """ |
|
3448 | 3436 | query = cls.query() |
|
3449 | 3437 | query = query.filter(cls.external_id == external_id) |
|
3450 | 3438 | query = query.filter(cls.provider_name == provider_name) |
|
3451 | 3439 | if local_user_id: |
|
3452 | 3440 | query = query.filter(cls.local_user_id == local_user_id) |
|
3453 | 3441 | return query.first() |
|
3454 | 3442 | |
|
3455 | 3443 | @classmethod |
|
3456 | 3444 | def user_by_external_id_and_provider(cls, external_id, provider_name): |
|
3457 | 3445 | """ |
|
3458 | 3446 | Returns User instance based on search params |
|
3459 | 3447 | |
|
3460 | 3448 | :param external_id: |
|
3461 | 3449 | :param provider_name: |
|
3462 | 3450 | :return: User |
|
3463 | 3451 | """ |
|
3464 | 3452 | query = User.query() |
|
3465 | 3453 | query = query.filter(cls.external_id == external_id) |
|
3466 | 3454 | query = query.filter(cls.provider_name == provider_name) |
|
3467 | 3455 | query = query.filter(User.user_id == cls.local_user_id) |
|
3468 | 3456 | return query.first() |
|
3469 | 3457 | |
|
3470 | 3458 | @classmethod |
|
3471 | 3459 | def by_local_user_id(cls, local_user_id): |
|
3472 | 3460 | """ |
|
3473 | 3461 | Returns all tokens for user |
|
3474 | 3462 | |
|
3475 | 3463 | :param local_user_id: |
|
3476 | 3464 | :return: ExternalIdentity |
|
3477 | 3465 | """ |
|
3478 | 3466 | query = cls.query() |
|
3479 | 3467 | query = query.filter(cls.local_user_id == local_user_id) |
|
3480 | 3468 | return query |
|
3481 | 3469 | |
|
3482 | 3470 | |
|
3483 | 3471 | class Integration(Base, BaseModel): |
|
3484 | 3472 | __tablename__ = 'integrations' |
|
3485 | 3473 | __table_args__ = ( |
|
3486 | 3474 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
3487 | 3475 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True} |
|
3488 | 3476 | ) |
|
3489 | 3477 | |
|
3490 | 3478 | integration_id = Column('integration_id', Integer(), primary_key=True) |
|
3491 | 3479 | integration_type = Column('integration_type', String(255)) |
|
3492 | 3480 | enabled = Column('enabled', Boolean(), nullable=False) |
|
3493 | 3481 | name = Column('name', String(255), nullable=False) |
|
3494 | 3482 | |
|
3495 | 3483 | settings = Column( |
|
3496 | 3484 | 'settings_json', MutationObj.as_mutable( |
|
3497 | 3485 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
3498 | 3486 | repo_id = Column( |
|
3499 | 3487 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3500 | 3488 | nullable=True, unique=None, default=None) |
|
3501 | 3489 | repo = relationship('Repository', lazy='joined') |
|
3502 | 3490 | |
|
3503 | 3491 | def __repr__(self): |
|
3504 | 3492 | if self.repo: |
|
3505 | 3493 | scope = 'repo=%r' % self.repo |
|
3506 | 3494 | else: |
|
3507 | 3495 | scope = 'global' |
|
3508 | 3496 | |
|
3509 | 3497 | return '<Integration(%r, %r)>' % (self.integration_type, scope) |
General Comments 0
You need to be logged in to leave comments.
Login now