Show More
@@ -1,747 +1,749 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2016-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | import re |
|
22 | 22 | import logging |
|
23 | 23 | import collections |
|
24 | 24 | |
|
25 | 25 | from pyramid.view import view_config |
|
26 | 26 | |
|
27 | 27 | from rhodecode.apps._base import BaseAppView |
|
28 | 28 | from rhodecode.lib import helpers as h |
|
29 | 29 | from rhodecode.lib.auth import ( |
|
30 | 30 | LoginRequired, NotAnonymous, HasRepoGroupPermissionAnyDecorator, |
|
31 | 31 | CSRFRequired) |
|
32 | 32 | from rhodecode.lib.index import searcher_from_config |
|
33 | 33 | from rhodecode.lib.utils2 import safe_unicode, str2bool, safe_int |
|
34 | 34 | from rhodecode.lib.ext_json import json |
|
35 | 35 | from rhodecode.model.db import ( |
|
36 | 36 | func, true, or_, case, in_filter_generator, Repository, RepoGroup, User, UserGroup) |
|
37 | 37 | from rhodecode.model.repo import RepoModel |
|
38 | 38 | from rhodecode.model.repo_group import RepoGroupModel |
|
39 | 39 | from rhodecode.model.scm import RepoGroupList, RepoList |
|
40 | 40 | from rhodecode.model.user import UserModel |
|
41 | 41 | from rhodecode.model.user_group import UserGroupModel |
|
42 | 42 | |
|
43 | 43 | log = logging.getLogger(__name__) |
|
44 | 44 | |
|
45 | 45 | |
|
46 | 46 | class HomeView(BaseAppView): |
|
47 | 47 | |
|
48 | 48 | def load_default_context(self): |
|
49 | 49 | c = self._get_local_tmpl_context() |
|
50 | 50 | c.user = c.auth_user.get_instance() |
|
51 | 51 | |
|
52 | 52 | return c |
|
53 | 53 | |
|
54 | 54 | @LoginRequired() |
|
55 | 55 | @view_config( |
|
56 | 56 | route_name='user_autocomplete_data', request_method='GET', |
|
57 | 57 | renderer='json_ext', xhr=True) |
|
58 | 58 | def user_autocomplete_data(self): |
|
59 | 59 | self.load_default_context() |
|
60 | 60 | query = self.request.GET.get('query') |
|
61 | 61 | active = str2bool(self.request.GET.get('active') or True) |
|
62 | 62 | include_groups = str2bool(self.request.GET.get('user_groups')) |
|
63 | 63 | expand_groups = str2bool(self.request.GET.get('user_groups_expand')) |
|
64 | 64 | skip_default_user = str2bool(self.request.GET.get('skip_default_user')) |
|
65 | 65 | |
|
66 | 66 | log.debug('generating user list, query:%s, active:%s, with_groups:%s', |
|
67 | 67 | query, active, include_groups) |
|
68 | 68 | |
|
69 | 69 | _users = UserModel().get_users( |
|
70 | 70 | name_contains=query, only_active=active) |
|
71 | 71 | |
|
72 | 72 | def maybe_skip_default_user(usr): |
|
73 | 73 | if skip_default_user and usr['username'] == UserModel.cls.DEFAULT_USER: |
|
74 | 74 | return False |
|
75 | 75 | return True |
|
76 | 76 | _users = filter(maybe_skip_default_user, _users) |
|
77 | 77 | |
|
78 | 78 | if include_groups: |
|
79 | 79 | # extend with user groups |
|
80 | 80 | _user_groups = UserGroupModel().get_user_groups( |
|
81 | 81 | name_contains=query, only_active=active, |
|
82 | 82 | expand_groups=expand_groups) |
|
83 | 83 | _users = _users + _user_groups |
|
84 | 84 | |
|
85 | 85 | return {'suggestions': _users} |
|
86 | 86 | |
|
87 | 87 | @LoginRequired() |
|
88 | 88 | @NotAnonymous() |
|
89 | 89 | @view_config( |
|
90 | 90 | route_name='user_group_autocomplete_data', request_method='GET', |
|
91 | 91 | renderer='json_ext', xhr=True) |
|
92 | 92 | def user_group_autocomplete_data(self): |
|
93 | 93 | self.load_default_context() |
|
94 | 94 | query = self.request.GET.get('query') |
|
95 | 95 | active = str2bool(self.request.GET.get('active') or True) |
|
96 | 96 | expand_groups = str2bool(self.request.GET.get('user_groups_expand')) |
|
97 | 97 | |
|
98 | 98 | log.debug('generating user group list, query:%s, active:%s', |
|
99 | 99 | query, active) |
|
100 | 100 | |
|
101 | 101 | _user_groups = UserGroupModel().get_user_groups( |
|
102 | 102 | name_contains=query, only_active=active, |
|
103 | 103 | expand_groups=expand_groups) |
|
104 | 104 | _user_groups = _user_groups |
|
105 | 105 | |
|
106 | 106 | return {'suggestions': _user_groups} |
|
107 | 107 | |
|
108 | 108 | def _get_repo_list(self, name_contains=None, repo_type=None, repo_group_name='', limit=20): |
|
109 | 109 | org_query = name_contains |
|
110 | 110 | allowed_ids = self._rhodecode_user.repo_acl_ids( |
|
111 | 111 | ['repository.read', 'repository.write', 'repository.admin'], |
|
112 | 112 | cache=False, name_filter=name_contains) or [-1] |
|
113 | 113 | |
|
114 | 114 | query = Repository.query()\ |
|
115 | 115 | .filter(Repository.archived.isnot(true()))\ |
|
116 | 116 | .filter(or_( |
|
117 | 117 | # generate multiple IN to fix limitation problems |
|
118 | 118 | *in_filter_generator(Repository.repo_id, allowed_ids) |
|
119 | 119 | )) |
|
120 | 120 | |
|
121 | 121 | query = query.order_by(case( |
|
122 | 122 | [ |
|
123 | 123 | (Repository.repo_name.startswith(repo_group_name), repo_group_name+'/'), |
|
124 | 124 | ], |
|
125 | 125 | )) |
|
126 | 126 | query = query.order_by(func.length(Repository.repo_name)) |
|
127 | 127 | query = query.order_by(Repository.repo_name) |
|
128 | 128 | |
|
129 | 129 | if repo_type: |
|
130 | 130 | query = query.filter(Repository.repo_type == repo_type) |
|
131 | 131 | |
|
132 | 132 | if name_contains: |
|
133 | 133 | ilike_expression = u'%{}%'.format(safe_unicode(name_contains)) |
|
134 | 134 | query = query.filter( |
|
135 | 135 | Repository.repo_name.ilike(ilike_expression)) |
|
136 | 136 | query = query.limit(limit) |
|
137 | 137 | |
|
138 | 138 | acl_iter = query |
|
139 | 139 | |
|
140 | 140 | return [ |
|
141 | 141 | { |
|
142 | 142 | 'id': obj.repo_name, |
|
143 | 143 | 'value': org_query, |
|
144 | 144 | 'value_display': obj.repo_name, |
|
145 | 145 | 'text': obj.repo_name, |
|
146 | 146 | 'type': 'repo', |
|
147 | 147 | 'repo_id': obj.repo_id, |
|
148 | 148 | 'repo_type': obj.repo_type, |
|
149 | 149 | 'private': obj.private, |
|
150 | 150 | 'url': h.route_path('repo_summary', repo_name=obj.repo_name) |
|
151 | 151 | } |
|
152 | 152 | for obj in acl_iter] |
|
153 | 153 | |
|
154 | 154 | def _get_repo_group_list(self, name_contains=None, repo_group_name='', limit=20): |
|
155 | 155 | org_query = name_contains |
|
156 | 156 | allowed_ids = self._rhodecode_user.repo_group_acl_ids( |
|
157 | 157 | ['group.read', 'group.write', 'group.admin'], |
|
158 | 158 | cache=False, name_filter=name_contains) or [-1] |
|
159 | 159 | |
|
160 | 160 | query = RepoGroup.query()\ |
|
161 | 161 | .filter(or_( |
|
162 | 162 | # generate multiple IN to fix limitation problems |
|
163 | 163 | *in_filter_generator(RepoGroup.group_id, allowed_ids) |
|
164 | 164 | )) |
|
165 | 165 | |
|
166 | 166 | query = query.order_by(case( |
|
167 | 167 | [ |
|
168 | 168 | (RepoGroup.group_name.startswith(repo_group_name), repo_group_name+'/'), |
|
169 | 169 | ], |
|
170 | 170 | )) |
|
171 | 171 | query = query.order_by(func.length(RepoGroup.group_name)) |
|
172 | 172 | query = query.order_by(RepoGroup.group_name) |
|
173 | 173 | |
|
174 | 174 | if name_contains: |
|
175 | 175 | ilike_expression = u'%{}%'.format(safe_unicode(name_contains)) |
|
176 | 176 | query = query.filter( |
|
177 | 177 | RepoGroup.group_name.ilike(ilike_expression)) |
|
178 | 178 | query = query.limit(limit) |
|
179 | 179 | |
|
180 | 180 | acl_iter = query |
|
181 | 181 | |
|
182 | 182 | return [ |
|
183 | 183 | { |
|
184 | 184 | 'id': obj.group_name, |
|
185 | 185 | 'value': org_query, |
|
186 | 186 | 'value_display': obj.group_name, |
|
187 | 187 | 'text': obj.group_name, |
|
188 | 188 | 'type': 'repo_group', |
|
189 | 189 | 'repo_group_id': obj.group_id, |
|
190 | 190 | 'url': h.route_path( |
|
191 | 191 | 'repo_group_home', repo_group_name=obj.group_name) |
|
192 | 192 | } |
|
193 | 193 | for obj in acl_iter] |
|
194 | 194 | |
|
195 | 195 | def _get_user_list(self, name_contains=None, limit=20): |
|
196 | 196 | org_query = name_contains |
|
197 | 197 | if not name_contains: |
|
198 | 198 | return [], False |
|
199 | 199 | |
|
200 | 200 | # TODO(marcink): should all logged in users be allowed to search others? |
|
201 | 201 | allowed_user_search = self._rhodecode_user.username != User.DEFAULT_USER |
|
202 | 202 | if not allowed_user_search: |
|
203 | 203 | return [], False |
|
204 | 204 | |
|
205 | 205 | name_contains = re.compile('(?:user:[ ]?)(.+)').findall(name_contains) |
|
206 | 206 | if len(name_contains) != 1: |
|
207 | 207 | return [], False |
|
208 | 208 | |
|
209 | 209 | name_contains = name_contains[0] |
|
210 | 210 | |
|
211 | 211 | query = User.query()\ |
|
212 | 212 | .order_by(func.length(User.username))\ |
|
213 | 213 | .order_by(User.username) \ |
|
214 | 214 | .filter(User.username != User.DEFAULT_USER) |
|
215 | 215 | |
|
216 | 216 | if name_contains: |
|
217 | 217 | ilike_expression = u'%{}%'.format(safe_unicode(name_contains)) |
|
218 | 218 | query = query.filter( |
|
219 | 219 | User.username.ilike(ilike_expression)) |
|
220 | 220 | query = query.limit(limit) |
|
221 | 221 | |
|
222 | 222 | acl_iter = query |
|
223 | 223 | |
|
224 | 224 | return [ |
|
225 | 225 | { |
|
226 | 226 | 'id': obj.user_id, |
|
227 | 227 | 'value': org_query, |
|
228 | 228 | 'value_display': 'user: `{}`'.format(obj.username), |
|
229 | 229 | 'type': 'user', |
|
230 | 230 | 'icon_link': h.gravatar_url(obj.email, 30), |
|
231 | 231 | 'url': h.route_path( |
|
232 | 232 | 'user_profile', username=obj.username) |
|
233 | 233 | } |
|
234 | 234 | for obj in acl_iter], True |
|
235 | 235 | |
|
236 | 236 | def _get_user_groups_list(self, name_contains=None, limit=20): |
|
237 | 237 | org_query = name_contains |
|
238 | 238 | if not name_contains: |
|
239 | 239 | return [], False |
|
240 | 240 | |
|
241 | 241 | # TODO(marcink): should all logged in users be allowed to search others? |
|
242 | 242 | allowed_user_search = self._rhodecode_user.username != User.DEFAULT_USER |
|
243 | 243 | if not allowed_user_search: |
|
244 | 244 | return [], False |
|
245 | 245 | |
|
246 | 246 | name_contains = re.compile('(?:user_group:[ ]?)(.+)').findall(name_contains) |
|
247 | 247 | if len(name_contains) != 1: |
|
248 | 248 | return [], False |
|
249 | 249 | |
|
250 | 250 | name_contains = name_contains[0] |
|
251 | 251 | |
|
252 | 252 | query = UserGroup.query()\ |
|
253 | 253 | .order_by(func.length(UserGroup.users_group_name))\ |
|
254 | 254 | .order_by(UserGroup.users_group_name) |
|
255 | 255 | |
|
256 | 256 | if name_contains: |
|
257 | 257 | ilike_expression = u'%{}%'.format(safe_unicode(name_contains)) |
|
258 | 258 | query = query.filter( |
|
259 | 259 | UserGroup.users_group_name.ilike(ilike_expression)) |
|
260 | 260 | query = query.limit(limit) |
|
261 | 261 | |
|
262 | 262 | acl_iter = query |
|
263 | 263 | |
|
264 | 264 | return [ |
|
265 | 265 | { |
|
266 | 266 | 'id': obj.users_group_id, |
|
267 | 267 | 'value': org_query, |
|
268 | 268 | 'value_display': 'user_group: `{}`'.format(obj.users_group_name), |
|
269 | 269 | 'type': 'user_group', |
|
270 | 270 | 'url': h.route_path( |
|
271 | 271 | 'user_group_profile', user_group_name=obj.users_group_name) |
|
272 | 272 | } |
|
273 | 273 | for obj in acl_iter], True |
|
274 | 274 | |
|
275 | 275 | def _get_hash_commit_list(self, auth_user, searcher, query, repo=None, repo_group=None): |
|
276 | 276 | repo_name = repo_group_name = None |
|
277 | 277 | if repo: |
|
278 | 278 | repo_name = repo.repo_name |
|
279 | 279 | if repo_group: |
|
280 | 280 | repo_group_name = repo_group.group_name |
|
281 | 281 | |
|
282 | 282 | org_query = query |
|
283 | 283 | if not query or len(query) < 3 or not searcher: |
|
284 | 284 | return [], False |
|
285 | 285 | |
|
286 | 286 | commit_hashes = re.compile('(?:commit:[ ]?)([0-9a-f]{2,40})').findall(query) |
|
287 | 287 | |
|
288 | 288 | if len(commit_hashes) != 1: |
|
289 | 289 | return [], False |
|
290 | 290 | |
|
291 | 291 | commit_hash = commit_hashes[0] |
|
292 | 292 | |
|
293 | 293 | result = searcher.search( |
|
294 | 294 | 'commit_id:{}*'.format(commit_hash), 'commit', auth_user, |
|
295 | 295 | repo_name, repo_group_name, raise_on_exc=False) |
|
296 | 296 | |
|
297 | 297 | commits = [] |
|
298 | 298 | for entry in result['results']: |
|
299 | 299 | repo_data = { |
|
300 | 300 | 'repository_id': entry.get('repository_id'), |
|
301 | 301 | 'repository_type': entry.get('repo_type'), |
|
302 | 302 | 'repository_name': entry.get('repository'), |
|
303 | 303 | } |
|
304 | 304 | |
|
305 | 305 | commit_entry = { |
|
306 | 306 | 'id': entry['commit_id'], |
|
307 | 307 | 'value': org_query, |
|
308 | 308 | 'value_display': '`{}` commit: {}'.format( |
|
309 | 309 | entry['repository'], entry['commit_id']), |
|
310 | 310 | 'type': 'commit', |
|
311 | 311 | 'repo': entry['repository'], |
|
312 | 312 | 'repo_data': repo_data, |
|
313 | 313 | |
|
314 | 314 | 'url': h.route_path( |
|
315 | 315 | 'repo_commit', |
|
316 | 316 | repo_name=entry['repository'], commit_id=entry['commit_id']) |
|
317 | 317 | } |
|
318 | 318 | |
|
319 | 319 | commits.append(commit_entry) |
|
320 | 320 | return commits, True |
|
321 | 321 | |
|
322 | 322 | def _get_path_list(self, auth_user, searcher, query, repo=None, repo_group=None): |
|
323 | 323 | repo_name = repo_group_name = None |
|
324 | 324 | if repo: |
|
325 | 325 | repo_name = repo.repo_name |
|
326 | 326 | if repo_group: |
|
327 | 327 | repo_group_name = repo_group.group_name |
|
328 | 328 | |
|
329 | 329 | org_query = query |
|
330 | 330 | if not query or len(query) < 3 or not searcher: |
|
331 | 331 | return [], False |
|
332 | 332 | |
|
333 | 333 | paths_re = re.compile('(?:file:[ ]?)(.+)').findall(query) |
|
334 | 334 | if len(paths_re) != 1: |
|
335 | 335 | return [], False |
|
336 | 336 | |
|
337 | 337 | file_path = paths_re[0] |
|
338 | 338 | |
|
339 | 339 | search_path = searcher.escape_specials(file_path) |
|
340 | 340 | result = searcher.search( |
|
341 | 341 | 'file.raw:*{}*'.format(search_path), 'path', auth_user, |
|
342 | 342 | repo_name, repo_group_name, raise_on_exc=False) |
|
343 | 343 | |
|
344 | 344 | files = [] |
|
345 | 345 | for entry in result['results']: |
|
346 | 346 | repo_data = { |
|
347 | 347 | 'repository_id': entry.get('repository_id'), |
|
348 | 348 | 'repository_type': entry.get('repo_type'), |
|
349 | 349 | 'repository_name': entry.get('repository'), |
|
350 | 350 | } |
|
351 | 351 | |
|
352 | 352 | file_entry = { |
|
353 | 353 | 'id': entry['commit_id'], |
|
354 | 354 | 'value': org_query, |
|
355 | 355 | 'value_display': '`{}` file: {}'.format( |
|
356 | 356 | entry['repository'], entry['file']), |
|
357 | 357 | 'type': 'file', |
|
358 | 358 | 'repo': entry['repository'], |
|
359 | 359 | 'repo_data': repo_data, |
|
360 | 360 | |
|
361 | 361 | 'url': h.route_path( |
|
362 | 362 | 'repo_files', |
|
363 | 363 | repo_name=entry['repository'], commit_id=entry['commit_id'], |
|
364 | 364 | f_path=entry['file']) |
|
365 | 365 | } |
|
366 | 366 | |
|
367 | 367 | files.append(file_entry) |
|
368 | 368 | return files, True |
|
369 | 369 | |
|
370 | 370 | @LoginRequired() |
|
371 | 371 | @view_config( |
|
372 | 372 | route_name='repo_list_data', request_method='GET', |
|
373 | 373 | renderer='json_ext', xhr=True) |
|
374 | 374 | def repo_list_data(self): |
|
375 | 375 | _ = self.request.translate |
|
376 | 376 | self.load_default_context() |
|
377 | 377 | |
|
378 | 378 | query = self.request.GET.get('query') |
|
379 | 379 | repo_type = self.request.GET.get('repo_type') |
|
380 | 380 | log.debug('generating repo list, query:%s, repo_type:%s', |
|
381 | 381 | query, repo_type) |
|
382 | 382 | |
|
383 | 383 | res = [] |
|
384 | 384 | repos = self._get_repo_list(query, repo_type=repo_type) |
|
385 | 385 | if repos: |
|
386 | 386 | res.append({ |
|
387 | 387 | 'text': _('Repositories'), |
|
388 | 388 | 'children': repos |
|
389 | 389 | }) |
|
390 | 390 | |
|
391 | 391 | data = { |
|
392 | 392 | 'more': False, |
|
393 | 393 | 'results': res |
|
394 | 394 | } |
|
395 | 395 | return data |
|
396 | 396 | |
|
397 | 397 | @LoginRequired() |
|
398 | 398 | @view_config( |
|
399 | 399 | route_name='repo_group_list_data', request_method='GET', |
|
400 | 400 | renderer='json_ext', xhr=True) |
|
401 | 401 | def repo_group_list_data(self): |
|
402 | 402 | _ = self.request.translate |
|
403 | 403 | self.load_default_context() |
|
404 | 404 | |
|
405 | 405 | query = self.request.GET.get('query') |
|
406 | 406 | |
|
407 | 407 | log.debug('generating repo group list, query:%s', |
|
408 | 408 | query) |
|
409 | 409 | |
|
410 | 410 | res = [] |
|
411 | 411 | repo_groups = self._get_repo_group_list(query) |
|
412 | 412 | if repo_groups: |
|
413 | 413 | res.append({ |
|
414 | 414 | 'text': _('Repository Groups'), |
|
415 | 415 | 'children': repo_groups |
|
416 | 416 | }) |
|
417 | 417 | |
|
418 | 418 | data = { |
|
419 | 419 | 'more': False, |
|
420 | 420 | 'results': res |
|
421 | 421 | } |
|
422 | 422 | return data |
|
423 | 423 | |
|
424 | 424 | def _get_default_search_queries(self, search_context, searcher, query): |
|
425 | 425 | if not searcher: |
|
426 | 426 | return [] |
|
427 | 427 | |
|
428 | 428 | is_es_6 = searcher.is_es_6 |
|
429 | 429 | |
|
430 | 430 | queries = [] |
|
431 | 431 | repo_group_name, repo_name, repo_context = None, None, None |
|
432 | 432 | |
|
433 | 433 | # repo group context |
|
434 | 434 | if search_context.get('search_context[repo_group_name]'): |
|
435 | 435 | repo_group_name = search_context.get('search_context[repo_group_name]') |
|
436 | 436 | if search_context.get('search_context[repo_name]'): |
|
437 | 437 | repo_name = search_context.get('search_context[repo_name]') |
|
438 | 438 | repo_context = search_context.get('search_context[repo_view_type]') |
|
439 | 439 | |
|
440 | 440 | if is_es_6 and repo_name: |
|
441 | 441 | # files |
|
442 | 442 | def query_modifier(): |
|
443 | 443 | qry = query |
|
444 | 444 | return {'q': qry, 'type': 'content'} |
|
445 | 445 | label = u'File search for `{}` in this repository.'.format(query) |
|
446 | 446 | file_qry = { |
|
447 | 447 | 'id': -10, |
|
448 | 448 | 'value': query, |
|
449 | 449 | 'value_display': label, |
|
450 | 450 | 'type': 'search', |
|
451 | 451 | 'url': h.route_path('search_repo', |
|
452 | 452 | repo_name=repo_name, |
|
453 | 453 | _query=query_modifier()) |
|
454 | 454 | } |
|
455 | 455 | |
|
456 | 456 | # commits |
|
457 | 457 | def query_modifier(): |
|
458 | 458 | qry = query |
|
459 | 459 | return {'q': qry, 'type': 'commit'} |
|
460 | 460 | |
|
461 | 461 | label = u'Commit search for `{}` in this repository.'.format(query) |
|
462 | 462 | commit_qry = { |
|
463 | 463 | 'id': -20, |
|
464 | 464 | 'value': query, |
|
465 | 465 | 'value_display': label, |
|
466 | 466 | 'type': 'search', |
|
467 | 467 | 'url': h.route_path('search_repo', |
|
468 | 468 | repo_name=repo_name, |
|
469 | 469 | _query=query_modifier()) |
|
470 | 470 | } |
|
471 | 471 | |
|
472 | 472 | if repo_context in ['commit', 'changelog']: |
|
473 | 473 | queries.extend([commit_qry, file_qry]) |
|
474 | 474 | elif repo_context in ['files', 'summary']: |
|
475 | 475 | queries.extend([file_qry, commit_qry]) |
|
476 | 476 | else: |
|
477 | 477 | queries.extend([commit_qry, file_qry]) |
|
478 | 478 | |
|
479 | 479 | elif is_es_6 and repo_group_name: |
|
480 | 480 | # files |
|
481 | 481 | def query_modifier(): |
|
482 | 482 | qry = query |
|
483 | 483 | return {'q': qry, 'type': 'content'} |
|
484 | 484 | |
|
485 | 485 | label = u'File search for `{}` in this repository group'.format(query) |
|
486 | 486 | file_qry = { |
|
487 | 487 | 'id': -30, |
|
488 | 488 | 'value': query, |
|
489 | 489 | 'value_display': label, |
|
490 | 490 | 'type': 'search', |
|
491 | 491 | 'url': h.route_path('search_repo_group', |
|
492 | 492 | repo_group_name=repo_group_name, |
|
493 | 493 | _query=query_modifier()) |
|
494 | 494 | } |
|
495 | 495 | |
|
496 | 496 | # commits |
|
497 | 497 | def query_modifier(): |
|
498 | 498 | qry = query |
|
499 | 499 | return {'q': qry, 'type': 'commit'} |
|
500 | 500 | |
|
501 | 501 | label = u'Commit search for `{}` in this repository group'.format(query) |
|
502 | 502 | commit_qry = { |
|
503 | 503 | 'id': -40, |
|
504 | 504 | 'value': query, |
|
505 | 505 | 'value_display': label, |
|
506 | 506 | 'type': 'search', |
|
507 | 507 | 'url': h.route_path('search_repo_group', |
|
508 | 508 | repo_group_name=repo_group_name, |
|
509 | 509 | _query=query_modifier()) |
|
510 | 510 | } |
|
511 | 511 | |
|
512 | 512 | if repo_context in ['commit', 'changelog']: |
|
513 | 513 | queries.extend([commit_qry, file_qry]) |
|
514 | 514 | elif repo_context in ['files', 'summary']: |
|
515 | 515 | queries.extend([file_qry, commit_qry]) |
|
516 | 516 | else: |
|
517 | 517 | queries.extend([commit_qry, file_qry]) |
|
518 | 518 | |
|
519 | 519 | # Global, not scoped |
|
520 | 520 | if not queries: |
|
521 | 521 | queries.append( |
|
522 | 522 | { |
|
523 | 523 | 'id': -1, |
|
524 | 524 | 'value': query, |
|
525 | 525 | 'value_display': u'File search for: `{}`'.format(query), |
|
526 | 526 | 'type': 'search', |
|
527 | 527 | 'url': h.route_path('search', |
|
528 | 528 | _query={'q': query, 'type': 'content'}) |
|
529 | 529 | }) |
|
530 | 530 | queries.append( |
|
531 | 531 | { |
|
532 | 532 | 'id': -2, |
|
533 | 533 | 'value': query, |
|
534 | 534 | 'value_display': u'Commit search for: `{}`'.format(query), |
|
535 | 535 | 'type': 'search', |
|
536 | 536 | 'url': h.route_path('search', |
|
537 | 537 | _query={'q': query, 'type': 'commit'}) |
|
538 | 538 | }) |
|
539 | 539 | |
|
540 | 540 | return queries |
|
541 | 541 | |
|
542 | 542 | @LoginRequired() |
|
543 | 543 | @view_config( |
|
544 | 544 | route_name='goto_switcher_data', request_method='GET', |
|
545 | 545 | renderer='json_ext', xhr=True) |
|
546 | 546 | def goto_switcher_data(self): |
|
547 | 547 | c = self.load_default_context() |
|
548 | 548 | |
|
549 | 549 | _ = self.request.translate |
|
550 | 550 | |
|
551 | 551 | query = self.request.GET.get('query') |
|
552 | 552 | log.debug('generating main filter data, query %s', query) |
|
553 | 553 | |
|
554 | 554 | res = [] |
|
555 | 555 | if not query: |
|
556 | 556 | return {'suggestions': res} |
|
557 | 557 | |
|
558 | 558 | def no_match(name): |
|
559 | 559 | return { |
|
560 | 560 | 'id': -1, |
|
561 | 561 | 'value': "", |
|
562 | 562 | 'value_display': name, |
|
563 | 563 | 'type': 'text', |
|
564 | 564 | 'url': "" |
|
565 | 565 | } |
|
566 | 566 | searcher = searcher_from_config(self.request.registry.settings) |
|
567 | 567 | has_specialized_search = False |
|
568 | 568 | |
|
569 | 569 | # set repo context |
|
570 | 570 | repo = None |
|
571 | 571 | repo_id = safe_int(self.request.GET.get('search_context[repo_id]')) |
|
572 | 572 | if repo_id: |
|
573 | 573 | repo = Repository.get(repo_id) |
|
574 | 574 | |
|
575 | 575 | # set group context |
|
576 | 576 | repo_group = None |
|
577 | 577 | repo_group_id = safe_int(self.request.GET.get('search_context[repo_group_id]')) |
|
578 | 578 | if repo_group_id: |
|
579 | 579 | repo_group = RepoGroup.get(repo_group_id) |
|
580 | 580 | prefix_match = False |
|
581 | 581 | |
|
582 | 582 | # user: type search |
|
583 | 583 | if not prefix_match: |
|
584 | 584 | users, prefix_match = self._get_user_list(query) |
|
585 | 585 | if users: |
|
586 | 586 | has_specialized_search = True |
|
587 | 587 | for serialized_user in users: |
|
588 | 588 | res.append(serialized_user) |
|
589 | 589 | elif prefix_match: |
|
590 | 590 | has_specialized_search = True |
|
591 | 591 | res.append(no_match('No matching users found')) |
|
592 | 592 | |
|
593 | 593 | # user_group: type search |
|
594 | 594 | if not prefix_match: |
|
595 | 595 | user_groups, prefix_match = self._get_user_groups_list(query) |
|
596 | 596 | if user_groups: |
|
597 | 597 | has_specialized_search = True |
|
598 | 598 | for serialized_user_group in user_groups: |
|
599 | 599 | res.append(serialized_user_group) |
|
600 | 600 | elif prefix_match: |
|
601 | 601 | has_specialized_search = True |
|
602 | 602 | res.append(no_match('No matching user groups found')) |
|
603 | 603 | |
|
604 | 604 | # FTS commit: type search |
|
605 | 605 | if not prefix_match: |
|
606 | 606 | commits, prefix_match = self._get_hash_commit_list( |
|
607 | 607 | c.auth_user, searcher, query, repo, repo_group) |
|
608 | 608 | if commits: |
|
609 | 609 | has_specialized_search = True |
|
610 | 610 | unique_repos = collections.OrderedDict() |
|
611 | 611 | for commit in commits: |
|
612 | 612 | repo_name = commit['repo'] |
|
613 | 613 | unique_repos.setdefault(repo_name, []).append(commit) |
|
614 | 614 | |
|
615 | 615 | for _repo, commits in unique_repos.items(): |
|
616 | 616 | for commit in commits: |
|
617 | 617 | res.append(commit) |
|
618 | 618 | elif prefix_match: |
|
619 | 619 | has_specialized_search = True |
|
620 | 620 | res.append(no_match('No matching commits found')) |
|
621 | 621 | |
|
622 | 622 | # FTS file: type search |
|
623 | 623 | if not prefix_match: |
|
624 | 624 | paths, prefix_match = self._get_path_list( |
|
625 | 625 | c.auth_user, searcher, query, repo, repo_group) |
|
626 | 626 | if paths: |
|
627 | 627 | has_specialized_search = True |
|
628 | 628 | unique_repos = collections.OrderedDict() |
|
629 | 629 | for path in paths: |
|
630 | 630 | repo_name = path['repo'] |
|
631 | 631 | unique_repos.setdefault(repo_name, []).append(path) |
|
632 | 632 | |
|
633 | 633 | for repo, paths in unique_repos.items(): |
|
634 | 634 | for path in paths: |
|
635 | 635 | res.append(path) |
|
636 | 636 | elif prefix_match: |
|
637 | 637 | has_specialized_search = True |
|
638 | 638 | res.append(no_match('No matching files found')) |
|
639 | 639 | |
|
640 | 640 | # main suggestions |
|
641 | 641 | if not has_specialized_search: |
|
642 | 642 | repo_group_name = '' |
|
643 | 643 | if repo_group: |
|
644 | 644 | repo_group_name = repo_group.group_name |
|
645 | 645 | |
|
646 | 646 | for _q in self._get_default_search_queries(self.request.GET, searcher, query): |
|
647 | 647 | res.append(_q) |
|
648 | 648 | |
|
649 | 649 | repo_groups = self._get_repo_group_list(query, repo_group_name=repo_group_name) |
|
650 | 650 | for serialized_repo_group in repo_groups: |
|
651 | 651 | res.append(serialized_repo_group) |
|
652 | 652 | |
|
653 | 653 | repos = self._get_repo_list(query, repo_group_name=repo_group_name) |
|
654 | 654 | for serialized_repo in repos: |
|
655 | 655 | res.append(serialized_repo) |
|
656 | 656 | |
|
657 | 657 | if not repos and not repo_groups: |
|
658 | 658 | res.append(no_match('No matches found')) |
|
659 | 659 | |
|
660 | 660 | return {'suggestions': res} |
|
661 | 661 | |
|
662 | 662 | def _get_groups_and_repos(self, repo_group_id=None): |
|
663 | 663 | # repo groups groups |
|
664 | 664 | repo_group_list = RepoGroup.get_all_repo_groups(group_id=repo_group_id) |
|
665 | 665 | _perms = ['group.read', 'group.write', 'group.admin'] |
|
666 | 666 | repo_group_list_acl = RepoGroupList(repo_group_list, perm_set=_perms) |
|
667 | 667 | repo_group_data = RepoGroupModel().get_repo_groups_as_dict( |
|
668 | 668 | repo_group_list=repo_group_list_acl, admin=False) |
|
669 | 669 | |
|
670 | 670 | # repositories |
|
671 | 671 | repo_list = Repository.get_all_repos(group_id=repo_group_id) |
|
672 | 672 | _perms = ['repository.read', 'repository.write', 'repository.admin'] |
|
673 | 673 | repo_list_acl = RepoList(repo_list, perm_set=_perms) |
|
674 | 674 | repo_data = RepoModel().get_repos_as_dict( |
|
675 | 675 | repo_list=repo_list_acl, admin=False) |
|
676 | 676 | |
|
677 | 677 | return repo_data, repo_group_data |
|
678 | 678 | |
|
679 | 679 | @LoginRequired() |
|
680 | 680 | @view_config( |
|
681 | 681 | route_name='home', request_method='GET', |
|
682 | 682 | renderer='rhodecode:templates/index.mako') |
|
683 | 683 | def main_page(self): |
|
684 | 684 | c = self.load_default_context() |
|
685 | 685 | c.repo_group = None |
|
686 | 686 | |
|
687 | 687 | repo_data, repo_group_data = self._get_groups_and_repos() |
|
688 | 688 | # json used to render the grids |
|
689 | 689 | c.repos_data = json.dumps(repo_data) |
|
690 | 690 | c.repo_groups_data = json.dumps(repo_group_data) |
|
691 | 691 | |
|
692 | 692 | return self._get_template_context(c) |
|
693 | 693 | |
|
694 | 694 | @LoginRequired() |
|
695 | 695 | @HasRepoGroupPermissionAnyDecorator( |
|
696 | 696 | 'group.read', 'group.write', 'group.admin') |
|
697 | 697 | @view_config( |
|
698 | 698 | route_name='repo_group_home', request_method='GET', |
|
699 | 699 | renderer='rhodecode:templates/index_repo_group.mako') |
|
700 | 700 | @view_config( |
|
701 | 701 | route_name='repo_group_home_slash', request_method='GET', |
|
702 | 702 | renderer='rhodecode:templates/index_repo_group.mako') |
|
703 | 703 | def repo_group_main_page(self): |
|
704 | 704 | c = self.load_default_context() |
|
705 | 705 | c.repo_group = self.request.db_repo_group |
|
706 | 706 | repo_data, repo_group_data = self._get_groups_and_repos(c.repo_group.group_id) |
|
707 | 707 | |
|
708 | c.repo_group.update_commit_cache() | |
|
708 | # update every 5 min | |
|
709 | if self.request.db_repo_group.last_commit_cache_update_diff > 60 * 5: | |
|
710 | self.request.db_repo_group.update_commit_cache() | |
|
709 | 711 | |
|
710 | 712 | # json used to render the grids |
|
711 | 713 | c.repos_data = json.dumps(repo_data) |
|
712 | 714 | c.repo_groups_data = json.dumps(repo_group_data) |
|
713 | 715 | |
|
714 | 716 | return self._get_template_context(c) |
|
715 | 717 | |
|
716 | 718 | @LoginRequired() |
|
717 | 719 | @CSRFRequired() |
|
718 | 720 | @view_config( |
|
719 | 721 | route_name='markup_preview', request_method='POST', |
|
720 | 722 | renderer='string', xhr=True) |
|
721 | 723 | def markup_preview(self): |
|
722 | 724 | # Technically a CSRF token is not needed as no state changes with this |
|
723 | 725 | # call. However, as this is a POST is better to have it, so automated |
|
724 | 726 | # tools don't flag it as potential CSRF. |
|
725 | 727 | # Post is required because the payload could be bigger than the maximum |
|
726 | 728 | # allowed by GET. |
|
727 | 729 | |
|
728 | 730 | text = self.request.POST.get('text') |
|
729 | 731 | renderer = self.request.POST.get('renderer') or 'rst' |
|
730 | 732 | if text: |
|
731 | 733 | return h.render(text, renderer=renderer, mentions=True) |
|
732 | 734 | return '' |
|
733 | 735 | |
|
734 | 736 | @LoginRequired() |
|
735 | 737 | @CSRFRequired() |
|
736 | 738 | @view_config( |
|
737 | 739 | route_name='store_user_session_value', request_method='POST', |
|
738 | 740 | renderer='string', xhr=True) |
|
739 | 741 | def store_user_session_attr(self): |
|
740 | 742 | key = self.request.POST.get('key') |
|
741 | 743 | val = self.request.POST.get('val') |
|
742 | 744 | |
|
743 | 745 | existing_value = self.request.session.get(key) |
|
744 | 746 | if existing_value != val: |
|
745 | 747 | self.request.session[key] = val |
|
746 | 748 | |
|
747 | 749 | return 'stored:{}:{}'.format(key, val) |
@@ -1,390 +1,394 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2011-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | import logging |
|
22 | 22 | import string |
|
23 | 23 | import rhodecode |
|
24 | 24 | |
|
25 | 25 | from pyramid.view import view_config |
|
26 | 26 | |
|
27 | 27 | from rhodecode.lib.view_utils import get_format_ref_id |
|
28 | 28 | from rhodecode.apps._base import RepoAppView |
|
29 | 29 | from rhodecode.config.conf import (LANGUAGES_EXTENSIONS_MAP) |
|
30 | 30 | from rhodecode.lib import helpers as h, rc_cache |
|
31 | 31 | from rhodecode.lib.utils2 import safe_str, safe_int |
|
32 | 32 | from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator |
|
33 | 33 | from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links |
|
34 | 34 | from rhodecode.lib.ext_json import json |
|
35 | 35 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
36 | 36 | from rhodecode.lib.vcs.exceptions import ( |
|
37 | 37 | CommitError, EmptyRepositoryError, CommitDoesNotExistError) |
|
38 | 38 | from rhodecode.model.db import Statistics, CacheKey, User |
|
39 | 39 | from rhodecode.model.meta import Session |
|
40 | 40 | from rhodecode.model.repo import ReadmeFinder |
|
41 | 41 | from rhodecode.model.scm import ScmModel |
|
42 | 42 | |
|
43 | 43 | log = logging.getLogger(__name__) |
|
44 | 44 | |
|
45 | 45 | |
|
46 | 46 | class RepoSummaryView(RepoAppView): |
|
47 | 47 | |
|
48 | 48 | def load_default_context(self): |
|
49 | 49 | c = self._get_local_tmpl_context(include_app_defaults=True) |
|
50 | 50 | c.rhodecode_repo = None |
|
51 | 51 | if not c.repository_requirements_missing: |
|
52 | 52 | c.rhodecode_repo = self.rhodecode_vcs_repo |
|
53 | 53 | return c |
|
54 | 54 | |
|
55 | 55 | def _get_readme_data(self, db_repo, renderer_type): |
|
56 | 56 | |
|
57 | 57 | log.debug('Looking for README file') |
|
58 | 58 | |
|
59 | 59 | cache_namespace_uid = 'cache_repo_instance.{}_{}'.format( |
|
60 | 60 | db_repo.repo_id, CacheKey.CACHE_TYPE_README) |
|
61 | 61 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
62 | 62 | repo_id=self.db_repo.repo_id) |
|
63 | 63 | region = rc_cache.get_or_create_region('cache_repo_longterm', cache_namespace_uid) |
|
64 | 64 | |
|
65 | 65 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid) |
|
66 | 66 | def generate_repo_readme(repo_id, _repo_name, _renderer_type): |
|
67 | 67 | readme_data = None |
|
68 | 68 | readme_node = None |
|
69 | 69 | readme_filename = None |
|
70 | 70 | commit = self._get_landing_commit_or_none(db_repo) |
|
71 | 71 | if commit: |
|
72 | 72 | log.debug("Searching for a README file.") |
|
73 | 73 | readme_node = ReadmeFinder(_renderer_type).search(commit) |
|
74 | 74 | if readme_node: |
|
75 | 75 | relative_urls = { |
|
76 | 76 | 'raw': h.route_path( |
|
77 | 77 | 'repo_file_raw', repo_name=_repo_name, |
|
78 | 78 | commit_id=commit.raw_id, f_path=readme_node.path), |
|
79 | 79 | 'standard': h.route_path( |
|
80 | 80 | 'repo_files', repo_name=_repo_name, |
|
81 | 81 | commit_id=commit.raw_id, f_path=readme_node.path), |
|
82 | 82 | } |
|
83 | 83 | readme_data = self._render_readme_or_none( |
|
84 | 84 | commit, readme_node, relative_urls) |
|
85 | 85 | readme_filename = readme_node.path |
|
86 | 86 | return readme_data, readme_filename |
|
87 | 87 | |
|
88 | 88 | inv_context_manager = rc_cache.InvalidationContext( |
|
89 | 89 | uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace) |
|
90 | 90 | with inv_context_manager as invalidation_context: |
|
91 | 91 | args = (db_repo.repo_id, db_repo.repo_name, renderer_type,) |
|
92 | 92 | # re-compute and store cache if we get invalidate signal |
|
93 | 93 | if invalidation_context.should_invalidate(): |
|
94 | 94 | instance = generate_repo_readme.refresh(*args) |
|
95 | 95 | else: |
|
96 | 96 | instance = generate_repo_readme(*args) |
|
97 | 97 | |
|
98 | 98 | log.debug( |
|
99 | 99 | 'Repo readme generated and computed in %.3fs', |
|
100 | 100 | inv_context_manager.compute_time) |
|
101 | 101 | return instance |
|
102 | 102 | |
|
103 | 103 | def _get_landing_commit_or_none(self, db_repo): |
|
104 | 104 | log.debug("Getting the landing commit.") |
|
105 | 105 | try: |
|
106 | 106 | commit = db_repo.get_landing_commit() |
|
107 | 107 | if not isinstance(commit, EmptyCommit): |
|
108 | 108 | return commit |
|
109 | 109 | else: |
|
110 | 110 | log.debug("Repository is empty, no README to render.") |
|
111 | 111 | except CommitError: |
|
112 | 112 | log.exception( |
|
113 | 113 | "Problem getting commit when trying to render the README.") |
|
114 | 114 | |
|
115 | 115 | def _render_readme_or_none(self, commit, readme_node, relative_urls): |
|
116 | 116 | log.debug( |
|
117 | 117 | 'Found README file `%s` rendering...', readme_node.path) |
|
118 | 118 | renderer = MarkupRenderer() |
|
119 | 119 | try: |
|
120 | 120 | html_source = renderer.render( |
|
121 | 121 | readme_node.content, filename=readme_node.path) |
|
122 | 122 | if relative_urls: |
|
123 | 123 | return relative_links(html_source, relative_urls) |
|
124 | 124 | return html_source |
|
125 | 125 | except Exception: |
|
126 | 126 | log.exception( |
|
127 | 127 | "Exception while trying to render the README") |
|
128 | 128 | |
|
129 | 129 | def _load_commits_context(self, c): |
|
130 | 130 | p = safe_int(self.request.GET.get('page'), 1) |
|
131 | 131 | size = safe_int(self.request.GET.get('size'), 10) |
|
132 | 132 | |
|
133 | 133 | def url_generator(**kw): |
|
134 | 134 | query_params = { |
|
135 | 135 | 'size': size |
|
136 | 136 | } |
|
137 | 137 | query_params.update(kw) |
|
138 | 138 | return h.route_path( |
|
139 | 139 | 'repo_summary_commits', |
|
140 | 140 | repo_name=c.rhodecode_db_repo.repo_name, _query=query_params) |
|
141 | 141 | |
|
142 | 142 | pre_load = ['author', 'branch', 'date', 'message'] |
|
143 | 143 | try: |
|
144 | 144 | collection = self.rhodecode_vcs_repo.get_commits( |
|
145 | 145 | pre_load=pre_load, translate_tags=False) |
|
146 | 146 | except EmptyRepositoryError: |
|
147 | 147 | collection = self.rhodecode_vcs_repo |
|
148 | 148 | |
|
149 | 149 | c.repo_commits = h.RepoPage( |
|
150 | 150 | collection, page=p, items_per_page=size, url=url_generator) |
|
151 | 151 | page_ids = [x.raw_id for x in c.repo_commits] |
|
152 | 152 | c.comments = self.db_repo.get_comments(page_ids) |
|
153 | 153 | c.statuses = self.db_repo.statuses(page_ids) |
|
154 | 154 | |
|
155 | 155 | def _prepare_and_set_clone_url(self, c): |
|
156 | 156 | username = '' |
|
157 | 157 | if self._rhodecode_user.username != User.DEFAULT_USER: |
|
158 | 158 | username = safe_str(self._rhodecode_user.username) |
|
159 | 159 | |
|
160 | 160 | _def_clone_uri = _def_clone_uri_id = c.clone_uri_tmpl |
|
161 | 161 | _def_clone_uri_ssh = c.clone_uri_ssh_tmpl |
|
162 | 162 | |
|
163 | 163 | if '{repo}' in _def_clone_uri: |
|
164 | 164 | _def_clone_uri_id = _def_clone_uri.replace('{repo}', '_{repoid}') |
|
165 | 165 | elif '{repoid}' in _def_clone_uri: |
|
166 | 166 | _def_clone_uri_id = _def_clone_uri.replace('_{repoid}', '{repo}') |
|
167 | 167 | |
|
168 | 168 | c.clone_repo_url = self.db_repo.clone_url( |
|
169 | 169 | user=username, uri_tmpl=_def_clone_uri) |
|
170 | 170 | c.clone_repo_url_id = self.db_repo.clone_url( |
|
171 | 171 | user=username, uri_tmpl=_def_clone_uri_id) |
|
172 | 172 | c.clone_repo_url_ssh = self.db_repo.clone_url( |
|
173 | 173 | uri_tmpl=_def_clone_uri_ssh, ssh=True) |
|
174 | 174 | |
|
175 | 175 | @LoginRequired() |
|
176 | 176 | @HasRepoPermissionAnyDecorator( |
|
177 | 177 | 'repository.read', 'repository.write', 'repository.admin') |
|
178 | 178 | @view_config( |
|
179 | 179 | route_name='repo_summary_commits', request_method='GET', |
|
180 | 180 | renderer='rhodecode:templates/summary/summary_commits.mako') |
|
181 | 181 | def summary_commits(self): |
|
182 | 182 | c = self.load_default_context() |
|
183 | 183 | self._prepare_and_set_clone_url(c) |
|
184 | 184 | self._load_commits_context(c) |
|
185 | 185 | return self._get_template_context(c) |
|
186 | 186 | |
|
187 | 187 | @LoginRequired() |
|
188 | 188 | @HasRepoPermissionAnyDecorator( |
|
189 | 189 | 'repository.read', 'repository.write', 'repository.admin') |
|
190 | 190 | @view_config( |
|
191 | 191 | route_name='repo_summary', request_method='GET', |
|
192 | 192 | renderer='rhodecode:templates/summary/summary.mako') |
|
193 | 193 | @view_config( |
|
194 | 194 | route_name='repo_summary_slash', request_method='GET', |
|
195 | 195 | renderer='rhodecode:templates/summary/summary.mako') |
|
196 | 196 | @view_config( |
|
197 | 197 | route_name='repo_summary_explicit', request_method='GET', |
|
198 | 198 | renderer='rhodecode:templates/summary/summary.mako') |
|
199 | 199 | def summary(self): |
|
200 | 200 | c = self.load_default_context() |
|
201 | 201 | |
|
202 | 202 | # Prepare the clone URL |
|
203 | 203 | self._prepare_and_set_clone_url(c) |
|
204 | 204 | |
|
205 | # update every 5 min | |
|
206 | if self.db_repo.last_commit_cache_update_diff > 60 * 5: | |
|
207 | self.db_repo.update_commit_cache() | |
|
208 | ||
|
205 | 209 | # If enabled, get statistics data |
|
206 | 210 | |
|
207 | 211 | c.show_stats = bool(self.db_repo.enable_statistics) |
|
208 | 212 | |
|
209 | 213 | stats = Session().query(Statistics) \ |
|
210 | 214 | .filter(Statistics.repository == self.db_repo) \ |
|
211 | 215 | .scalar() |
|
212 | 216 | |
|
213 | 217 | c.stats_percentage = 0 |
|
214 | 218 | |
|
215 | 219 | if stats and stats.languages: |
|
216 | 220 | c.no_data = False is self.db_repo.enable_statistics |
|
217 | 221 | lang_stats_d = json.loads(stats.languages) |
|
218 | 222 | |
|
219 | 223 | # Sort first by decreasing count and second by the file extension, |
|
220 | 224 | # so we have a consistent output. |
|
221 | 225 | lang_stats_items = sorted(lang_stats_d.iteritems(), |
|
222 | 226 | key=lambda k: (-k[1], k[0]))[:10] |
|
223 | 227 | lang_stats = [(x, {"count": y, |
|
224 | 228 | "desc": LANGUAGES_EXTENSIONS_MAP.get(x)}) |
|
225 | 229 | for x, y in lang_stats_items] |
|
226 | 230 | |
|
227 | 231 | c.trending_languages = json.dumps(lang_stats) |
|
228 | 232 | else: |
|
229 | 233 | c.no_data = True |
|
230 | 234 | c.trending_languages = json.dumps({}) |
|
231 | 235 | |
|
232 | 236 | scm_model = ScmModel() |
|
233 | 237 | c.enable_downloads = self.db_repo.enable_downloads |
|
234 | 238 | c.repository_followers = scm_model.get_followers(self.db_repo) |
|
235 | 239 | c.repository_forks = scm_model.get_forks(self.db_repo) |
|
236 | 240 | |
|
237 | 241 | # first interaction with the VCS instance after here... |
|
238 | 242 | if c.repository_requirements_missing: |
|
239 | 243 | self.request.override_renderer = \ |
|
240 | 244 | 'rhodecode:templates/summary/missing_requirements.mako' |
|
241 | 245 | return self._get_template_context(c) |
|
242 | 246 | |
|
243 | 247 | c.readme_data, c.readme_file = \ |
|
244 | 248 | self._get_readme_data(self.db_repo, c.visual.default_renderer) |
|
245 | 249 | |
|
246 | 250 | # loads the summary commits template context |
|
247 | 251 | self._load_commits_context(c) |
|
248 | 252 | |
|
249 | 253 | return self._get_template_context(c) |
|
250 | 254 | |
|
251 | 255 | def get_request_commit_id(self): |
|
252 | 256 | return self.request.matchdict['commit_id'] |
|
253 | 257 | |
|
254 | 258 | @LoginRequired() |
|
255 | 259 | @HasRepoPermissionAnyDecorator( |
|
256 | 260 | 'repository.read', 'repository.write', 'repository.admin') |
|
257 | 261 | @view_config( |
|
258 | 262 | route_name='repo_stats', request_method='GET', |
|
259 | 263 | renderer='json_ext') |
|
260 | 264 | def repo_stats(self): |
|
261 | 265 | commit_id = self.get_request_commit_id() |
|
262 | 266 | show_stats = bool(self.db_repo.enable_statistics) |
|
263 | 267 | repo_id = self.db_repo.repo_id |
|
264 | 268 | |
|
265 | 269 | cache_seconds = safe_int( |
|
266 | 270 | rhodecode.CONFIG.get('rc_cache.cache_repo.expiration_time')) |
|
267 | 271 | cache_on = cache_seconds > 0 |
|
268 | 272 | log.debug( |
|
269 | 273 | 'Computing REPO TREE for repo_id %s commit_id `%s` ' |
|
270 | 274 | 'with caching: %s[TTL: %ss]' % ( |
|
271 | 275 | repo_id, commit_id, cache_on, cache_seconds or 0)) |
|
272 | 276 | |
|
273 | 277 | cache_namespace_uid = 'cache_repo.{}'.format(repo_id) |
|
274 | 278 | region = rc_cache.get_or_create_region('cache_repo', cache_namespace_uid) |
|
275 | 279 | |
|
276 | 280 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid, |
|
277 | 281 | condition=cache_on) |
|
278 | 282 | def compute_stats(repo_id, commit_id, show_stats): |
|
279 | 283 | code_stats = {} |
|
280 | 284 | size = 0 |
|
281 | 285 | try: |
|
282 | 286 | scm_instance = self.db_repo.scm_instance() |
|
283 | 287 | commit = scm_instance.get_commit(commit_id) |
|
284 | 288 | |
|
285 | 289 | for node in commit.get_filenodes_generator(): |
|
286 | 290 | size += node.size |
|
287 | 291 | if not show_stats: |
|
288 | 292 | continue |
|
289 | 293 | ext = string.lower(node.extension) |
|
290 | 294 | ext_info = LANGUAGES_EXTENSIONS_MAP.get(ext) |
|
291 | 295 | if ext_info: |
|
292 | 296 | if ext in code_stats: |
|
293 | 297 | code_stats[ext]['count'] += 1 |
|
294 | 298 | else: |
|
295 | 299 | code_stats[ext] = {"count": 1, "desc": ext_info} |
|
296 | 300 | except (EmptyRepositoryError, CommitDoesNotExistError): |
|
297 | 301 | pass |
|
298 | 302 | return {'size': h.format_byte_size_binary(size), |
|
299 | 303 | 'code_stats': code_stats} |
|
300 | 304 | |
|
301 | 305 | stats = compute_stats(self.db_repo.repo_id, commit_id, show_stats) |
|
302 | 306 | return stats |
|
303 | 307 | |
|
304 | 308 | @LoginRequired() |
|
305 | 309 | @HasRepoPermissionAnyDecorator( |
|
306 | 310 | 'repository.read', 'repository.write', 'repository.admin') |
|
307 | 311 | @view_config( |
|
308 | 312 | route_name='repo_refs_data', request_method='GET', |
|
309 | 313 | renderer='json_ext') |
|
310 | 314 | def repo_refs_data(self): |
|
311 | 315 | _ = self.request.translate |
|
312 | 316 | self.load_default_context() |
|
313 | 317 | |
|
314 | 318 | repo = self.rhodecode_vcs_repo |
|
315 | 319 | refs_to_create = [ |
|
316 | 320 | (_("Branch"), repo.branches, 'branch'), |
|
317 | 321 | (_("Tag"), repo.tags, 'tag'), |
|
318 | 322 | (_("Bookmark"), repo.bookmarks, 'book'), |
|
319 | 323 | ] |
|
320 | 324 | res = self._create_reference_data(repo, self.db_repo_name, refs_to_create) |
|
321 | 325 | data = { |
|
322 | 326 | 'more': False, |
|
323 | 327 | 'results': res |
|
324 | 328 | } |
|
325 | 329 | return data |
|
326 | 330 | |
|
327 | 331 | @LoginRequired() |
|
328 | 332 | @HasRepoPermissionAnyDecorator( |
|
329 | 333 | 'repository.read', 'repository.write', 'repository.admin') |
|
330 | 334 | @view_config( |
|
331 | 335 | route_name='repo_refs_changelog_data', request_method='GET', |
|
332 | 336 | renderer='json_ext') |
|
333 | 337 | def repo_refs_changelog_data(self): |
|
334 | 338 | _ = self.request.translate |
|
335 | 339 | self.load_default_context() |
|
336 | 340 | |
|
337 | 341 | repo = self.rhodecode_vcs_repo |
|
338 | 342 | |
|
339 | 343 | refs_to_create = [ |
|
340 | 344 | (_("Branches"), repo.branches, 'branch'), |
|
341 | 345 | (_("Closed branches"), repo.branches_closed, 'branch_closed'), |
|
342 | 346 | # TODO: enable when vcs can handle bookmarks filters |
|
343 | 347 | # (_("Bookmarks"), repo.bookmarks, "book"), |
|
344 | 348 | ] |
|
345 | 349 | res = self._create_reference_data( |
|
346 | 350 | repo, self.db_repo_name, refs_to_create) |
|
347 | 351 | data = { |
|
348 | 352 | 'more': False, |
|
349 | 353 | 'results': res |
|
350 | 354 | } |
|
351 | 355 | return data |
|
352 | 356 | |
|
353 | 357 | def _create_reference_data(self, repo, full_repo_name, refs_to_create): |
|
354 | 358 | format_ref_id = get_format_ref_id(repo) |
|
355 | 359 | |
|
356 | 360 | result = [] |
|
357 | 361 | for title, refs, ref_type in refs_to_create: |
|
358 | 362 | if refs: |
|
359 | 363 | result.append({ |
|
360 | 364 | 'text': title, |
|
361 | 365 | 'children': self._create_reference_items( |
|
362 | 366 | repo, full_repo_name, refs, ref_type, |
|
363 | 367 | format_ref_id), |
|
364 | 368 | }) |
|
365 | 369 | return result |
|
366 | 370 | |
|
367 | 371 | def _create_reference_items(self, repo, full_repo_name, refs, ref_type, format_ref_id): |
|
368 | 372 | result = [] |
|
369 | 373 | is_svn = h.is_svn(repo) |
|
370 | 374 | for ref_name, raw_id in refs.iteritems(): |
|
371 | 375 | files_url = self._create_files_url( |
|
372 | 376 | repo, full_repo_name, ref_name, raw_id, is_svn) |
|
373 | 377 | result.append({ |
|
374 | 378 | 'text': ref_name, |
|
375 | 379 | 'id': format_ref_id(ref_name, raw_id), |
|
376 | 380 | 'raw_id': raw_id, |
|
377 | 381 | 'type': ref_type, |
|
378 | 382 | 'files_url': files_url, |
|
379 | 383 | 'idx': 0, |
|
380 | 384 | }) |
|
381 | 385 | return result |
|
382 | 386 | |
|
383 | 387 | def _create_files_url(self, repo, full_repo_name, ref_name, raw_id, is_svn): |
|
384 | 388 | use_commit_id = '/' in ref_name or is_svn |
|
385 | 389 | return h.route_path( |
|
386 | 390 | 'repo_files', |
|
387 | 391 | repo_name=full_repo_name, |
|
388 | 392 | f_path=ref_name if is_svn else '', |
|
389 | 393 | commit_id=raw_id if use_commit_id else ref_name, |
|
390 | 394 | _query=dict(at=ref_name)) |
@@ -1,2049 +1,2050 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | """ |
|
22 | 22 | Helper functions |
|
23 | 23 | |
|
24 | 24 | Consists of functions to typically be used within templates, but also |
|
25 | 25 | available to Controllers. This module is available to both as 'h'. |
|
26 | 26 | """ |
|
27 | 27 | |
|
28 | 28 | import os |
|
29 | 29 | import random |
|
30 | 30 | import hashlib |
|
31 | 31 | import StringIO |
|
32 | 32 | import textwrap |
|
33 | 33 | import urllib |
|
34 | 34 | import math |
|
35 | 35 | import logging |
|
36 | 36 | import re |
|
37 | 37 | import time |
|
38 | 38 | import string |
|
39 | 39 | import hashlib |
|
40 | 40 | from collections import OrderedDict |
|
41 | 41 | |
|
42 | 42 | import pygments |
|
43 | 43 | import itertools |
|
44 | 44 | import fnmatch |
|
45 | 45 | import bleach |
|
46 | 46 | |
|
47 | 47 | from pyramid import compat |
|
48 | 48 | from datetime import datetime |
|
49 | 49 | from functools import partial |
|
50 | 50 | from pygments.formatters.html import HtmlFormatter |
|
51 | 51 | from pygments.lexers import ( |
|
52 | 52 | get_lexer_by_name, get_lexer_for_filename, get_lexer_for_mimetype) |
|
53 | 53 | |
|
54 | 54 | from pyramid.threadlocal import get_current_request |
|
55 | 55 | |
|
56 | 56 | from webhelpers.html import literal, HTML, escape |
|
57 | 57 | from webhelpers.html.tools import * |
|
58 | 58 | from webhelpers.html.builder import make_tag |
|
59 | 59 | from webhelpers.html.tags import auto_discovery_link, checkbox, css_classes, \ |
|
60 | 60 | end_form, file, form as wh_form, hidden, image, javascript_link, link_to, \ |
|
61 | 61 | link_to_if, link_to_unless, ol, required_legend, select, stylesheet_link, \ |
|
62 | 62 | submit, text, password, textarea, title, ul, xml_declaration, radio |
|
63 | 63 | from webhelpers.html.tools import auto_link, button_to, highlight, \ |
|
64 | 64 | js_obfuscate, mail_to, strip_links, strip_tags, tag_re |
|
65 | 65 | from webhelpers.text import chop_at, collapse, convert_accented_entities, \ |
|
66 | 66 | convert_misc_entities, lchop, plural, rchop, remove_formatting, \ |
|
67 | 67 | replace_whitespace, urlify, truncate, wrap_paragraphs |
|
68 | 68 | from webhelpers.date import time_ago_in_words |
|
69 | 69 | from webhelpers.paginate import Page as _Page |
|
70 | 70 | from webhelpers.html.tags import _set_input_attrs, _set_id_attr, \ |
|
71 | 71 | convert_boolean_attrs, NotGiven, _make_safe_id_component |
|
72 | 72 | from webhelpers2.number import format_byte_size |
|
73 | 73 | |
|
74 | 74 | from rhodecode.lib.action_parser import action_parser |
|
75 | 75 | from rhodecode.lib.ext_json import json |
|
76 | 76 | from rhodecode.lib.utils import repo_name_slug, get_custom_lexer |
|
77 | 77 | from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \ |
|
78 | 78 | get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime, \ |
|
79 | 79 | AttributeDict, safe_int, md5, md5_safe |
|
80 | 80 | from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links |
|
81 | 81 | from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError |
|
82 | 82 | from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyCommit |
|
83 | 83 | from rhodecode.lib.index.search_utils import get_matching_line_offsets |
|
84 | 84 | from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT |
|
85 | 85 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
86 | 86 | from rhodecode.model.db import Permission, User, Repository |
|
87 | 87 | from rhodecode.model.repo_group import RepoGroupModel |
|
88 | 88 | from rhodecode.model.settings import IssueTrackerSettingsModel |
|
89 | 89 | |
|
90 | 90 | |
|
91 | 91 | log = logging.getLogger(__name__) |
|
92 | 92 | |
|
93 | 93 | |
|
94 | 94 | DEFAULT_USER = User.DEFAULT_USER |
|
95 | 95 | DEFAULT_USER_EMAIL = User.DEFAULT_USER_EMAIL |
|
96 | 96 | |
|
97 | 97 | |
|
98 | 98 | def asset(path, ver=None, **kwargs): |
|
99 | 99 | """ |
|
100 | 100 | Helper to generate a static asset file path for rhodecode assets |
|
101 | 101 | |
|
102 | 102 | eg. h.asset('images/image.png', ver='3923') |
|
103 | 103 | |
|
104 | 104 | :param path: path of asset |
|
105 | 105 | :param ver: optional version query param to append as ?ver= |
|
106 | 106 | """ |
|
107 | 107 | request = get_current_request() |
|
108 | 108 | query = {} |
|
109 | 109 | query.update(kwargs) |
|
110 | 110 | if ver: |
|
111 | 111 | query = {'ver': ver} |
|
112 | 112 | return request.static_path( |
|
113 | 113 | 'rhodecode:public/{}'.format(path), _query=query) |
|
114 | 114 | |
|
115 | 115 | |
|
116 | 116 | default_html_escape_table = { |
|
117 | 117 | ord('&'): u'&', |
|
118 | 118 | ord('<'): u'<', |
|
119 | 119 | ord('>'): u'>', |
|
120 | 120 | ord('"'): u'"', |
|
121 | 121 | ord("'"): u''', |
|
122 | 122 | } |
|
123 | 123 | |
|
124 | 124 | |
|
125 | 125 | def html_escape(text, html_escape_table=default_html_escape_table): |
|
126 | 126 | """Produce entities within text.""" |
|
127 | 127 | return text.translate(html_escape_table) |
|
128 | 128 | |
|
129 | 129 | |
|
130 | 130 | def chop_at_smart(s, sub, inclusive=False, suffix_if_chopped=None): |
|
131 | 131 | """ |
|
132 | 132 | Truncate string ``s`` at the first occurrence of ``sub``. |
|
133 | 133 | |
|
134 | 134 | If ``inclusive`` is true, truncate just after ``sub`` rather than at it. |
|
135 | 135 | """ |
|
136 | 136 | suffix_if_chopped = suffix_if_chopped or '' |
|
137 | 137 | pos = s.find(sub) |
|
138 | 138 | if pos == -1: |
|
139 | 139 | return s |
|
140 | 140 | |
|
141 | 141 | if inclusive: |
|
142 | 142 | pos += len(sub) |
|
143 | 143 | |
|
144 | 144 | chopped = s[:pos] |
|
145 | 145 | left = s[pos:].strip() |
|
146 | 146 | |
|
147 | 147 | if left and suffix_if_chopped: |
|
148 | 148 | chopped += suffix_if_chopped |
|
149 | 149 | |
|
150 | 150 | return chopped |
|
151 | 151 | |
|
152 | 152 | |
|
153 | 153 | def shorter(text, size=20): |
|
154 | 154 | postfix = '...' |
|
155 | 155 | if len(text) > size: |
|
156 | 156 | return text[:size - len(postfix)] + postfix |
|
157 | 157 | return text |
|
158 | 158 | |
|
159 | 159 | |
|
160 | 160 | def _reset(name, value=None, id=NotGiven, type="reset", **attrs): |
|
161 | 161 | """ |
|
162 | 162 | Reset button |
|
163 | 163 | """ |
|
164 | 164 | _set_input_attrs(attrs, type, name, value) |
|
165 | 165 | _set_id_attr(attrs, id, name) |
|
166 | 166 | convert_boolean_attrs(attrs, ["disabled"]) |
|
167 | 167 | return HTML.input(**attrs) |
|
168 | 168 | |
|
169 | 169 | reset = _reset |
|
170 | 170 | safeid = _make_safe_id_component |
|
171 | 171 | |
|
172 | 172 | |
|
173 | 173 | def branding(name, length=40): |
|
174 | 174 | return truncate(name, length, indicator="") |
|
175 | 175 | |
|
176 | 176 | |
|
177 | 177 | def FID(raw_id, path): |
|
178 | 178 | """ |
|
179 | 179 | Creates a unique ID for filenode based on it's hash of path and commit |
|
180 | 180 | it's safe to use in urls |
|
181 | 181 | |
|
182 | 182 | :param raw_id: |
|
183 | 183 | :param path: |
|
184 | 184 | """ |
|
185 | 185 | |
|
186 | 186 | return 'c-%s-%s' % (short_id(raw_id), md5_safe(path)[:12]) |
|
187 | 187 | |
|
188 | 188 | |
|
189 | 189 | class _GetError(object): |
|
190 | 190 | """Get error from form_errors, and represent it as span wrapped error |
|
191 | 191 | message |
|
192 | 192 | |
|
193 | 193 | :param field_name: field to fetch errors for |
|
194 | 194 | :param form_errors: form errors dict |
|
195 | 195 | """ |
|
196 | 196 | |
|
197 | 197 | def __call__(self, field_name, form_errors): |
|
198 | 198 | tmpl = """<span class="error_msg">%s</span>""" |
|
199 | 199 | if form_errors and field_name in form_errors: |
|
200 | 200 | return literal(tmpl % form_errors.get(field_name)) |
|
201 | 201 | |
|
202 | 202 | get_error = _GetError() |
|
203 | 203 | |
|
204 | 204 | |
|
205 | 205 | class _ToolTip(object): |
|
206 | 206 | |
|
207 | 207 | def __call__(self, tooltip_title, trim_at=50): |
|
208 | 208 | """ |
|
209 | 209 | Special function just to wrap our text into nice formatted |
|
210 | 210 | autowrapped text |
|
211 | 211 | |
|
212 | 212 | :param tooltip_title: |
|
213 | 213 | """ |
|
214 | 214 | tooltip_title = escape(tooltip_title) |
|
215 | 215 | tooltip_title = tooltip_title.replace('<', '<').replace('>', '>') |
|
216 | 216 | return tooltip_title |
|
217 | ||
|
217 | 218 | tooltip = _ToolTip() |
|
218 | 219 | |
|
219 | 220 | |
|
220 | 221 | def files_breadcrumbs(repo_name, commit_id, file_path, at_ref=None): |
|
221 | 222 | if isinstance(file_path, str): |
|
222 | 223 | file_path = safe_unicode(file_path) |
|
223 | 224 | route_qry = {'at': at_ref} if at_ref else None |
|
224 | 225 | |
|
225 | 226 | # TODO: johbo: Is this always a url like path, or is this operating |
|
226 | 227 | # system dependent? |
|
227 | 228 | path_segments = file_path.split('/') |
|
228 | 229 | |
|
229 | 230 | repo_name_html = escape(repo_name) |
|
230 | 231 | if len(path_segments) == 1 and path_segments[0] == '': |
|
231 | 232 | url_segments = [repo_name_html] |
|
232 | 233 | else: |
|
233 | 234 | url_segments = [ |
|
234 | 235 | link_to( |
|
235 | 236 | repo_name_html, |
|
236 | 237 | route_path( |
|
237 | 238 | 'repo_files', |
|
238 | 239 | repo_name=repo_name, |
|
239 | 240 | commit_id=commit_id, |
|
240 | 241 | f_path='', |
|
241 | 242 | _query=route_qry), |
|
242 | 243 | )] |
|
243 | 244 | |
|
244 | 245 | last_cnt = len(path_segments) - 1 |
|
245 | 246 | for cnt, segment in enumerate(path_segments): |
|
246 | 247 | if not segment: |
|
247 | 248 | continue |
|
248 | 249 | segment_html = escape(segment) |
|
249 | 250 | |
|
250 | 251 | if cnt != last_cnt: |
|
251 | 252 | url_segments.append( |
|
252 | 253 | link_to( |
|
253 | 254 | segment_html, |
|
254 | 255 | route_path( |
|
255 | 256 | 'repo_files', |
|
256 | 257 | repo_name=repo_name, |
|
257 | 258 | commit_id=commit_id, |
|
258 | 259 | f_path='/'.join(path_segments[:cnt + 1]), |
|
259 | 260 | _query=route_qry), |
|
260 | 261 | )) |
|
261 | 262 | else: |
|
262 | 263 | url_segments.append(segment_html) |
|
263 | 264 | |
|
264 | 265 | return literal('/'.join(url_segments)) |
|
265 | 266 | |
|
266 | 267 | |
|
267 | 268 | def code_highlight(code, lexer, formatter, use_hl_filter=False): |
|
268 | 269 | """ |
|
269 | 270 | Lex ``code`` with ``lexer`` and format it with the formatter ``formatter``. |
|
270 | 271 | |
|
271 | 272 | If ``outfile`` is given and a valid file object (an object |
|
272 | 273 | with a ``write`` method), the result will be written to it, otherwise |
|
273 | 274 | it is returned as a string. |
|
274 | 275 | """ |
|
275 | 276 | if use_hl_filter: |
|
276 | 277 | # add HL filter |
|
277 | 278 | from rhodecode.lib.index import search_utils |
|
278 | 279 | lexer.add_filter(search_utils.ElasticSearchHLFilter()) |
|
279 | 280 | return pygments.format(pygments.lex(code, lexer), formatter) |
|
280 | 281 | |
|
281 | 282 | |
|
282 | 283 | class CodeHtmlFormatter(HtmlFormatter): |
|
283 | 284 | """ |
|
284 | 285 | My code Html Formatter for source codes |
|
285 | 286 | """ |
|
286 | 287 | |
|
287 | 288 | def wrap(self, source, outfile): |
|
288 | 289 | return self._wrap_div(self._wrap_pre(self._wrap_code(source))) |
|
289 | 290 | |
|
290 | 291 | def _wrap_code(self, source): |
|
291 | 292 | for cnt, it in enumerate(source): |
|
292 | 293 | i, t = it |
|
293 | 294 | t = '<div id="L%s">%s</div>' % (cnt + 1, t) |
|
294 | 295 | yield i, t |
|
295 | 296 | |
|
296 | 297 | def _wrap_tablelinenos(self, inner): |
|
297 | 298 | dummyoutfile = StringIO.StringIO() |
|
298 | 299 | lncount = 0 |
|
299 | 300 | for t, line in inner: |
|
300 | 301 | if t: |
|
301 | 302 | lncount += 1 |
|
302 | 303 | dummyoutfile.write(line) |
|
303 | 304 | |
|
304 | 305 | fl = self.linenostart |
|
305 | 306 | mw = len(str(lncount + fl - 1)) |
|
306 | 307 | sp = self.linenospecial |
|
307 | 308 | st = self.linenostep |
|
308 | 309 | la = self.lineanchors |
|
309 | 310 | aln = self.anchorlinenos |
|
310 | 311 | nocls = self.noclasses |
|
311 | 312 | if sp: |
|
312 | 313 | lines = [] |
|
313 | 314 | |
|
314 | 315 | for i in range(fl, fl + lncount): |
|
315 | 316 | if i % st == 0: |
|
316 | 317 | if i % sp == 0: |
|
317 | 318 | if aln: |
|
318 | 319 | lines.append('<a href="#%s%d" class="special">%*d</a>' % |
|
319 | 320 | (la, i, mw, i)) |
|
320 | 321 | else: |
|
321 | 322 | lines.append('<span class="special">%*d</span>' % (mw, i)) |
|
322 | 323 | else: |
|
323 | 324 | if aln: |
|
324 | 325 | lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i)) |
|
325 | 326 | else: |
|
326 | 327 | lines.append('%*d' % (mw, i)) |
|
327 | 328 | else: |
|
328 | 329 | lines.append('') |
|
329 | 330 | ls = '\n'.join(lines) |
|
330 | 331 | else: |
|
331 | 332 | lines = [] |
|
332 | 333 | for i in range(fl, fl + lncount): |
|
333 | 334 | if i % st == 0: |
|
334 | 335 | if aln: |
|
335 | 336 | lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i)) |
|
336 | 337 | else: |
|
337 | 338 | lines.append('%*d' % (mw, i)) |
|
338 | 339 | else: |
|
339 | 340 | lines.append('') |
|
340 | 341 | ls = '\n'.join(lines) |
|
341 | 342 | |
|
342 | 343 | # in case you wonder about the seemingly redundant <div> here: since the |
|
343 | 344 | # content in the other cell also is wrapped in a div, some browsers in |
|
344 | 345 | # some configurations seem to mess up the formatting... |
|
345 | 346 | if nocls: |
|
346 | 347 | yield 0, ('<table class="%stable">' % self.cssclass + |
|
347 | 348 | '<tr><td><div class="linenodiv" ' |
|
348 | 349 | 'style="background-color: #f0f0f0; padding-right: 10px">' |
|
349 | 350 | '<pre style="line-height: 125%">' + |
|
350 | 351 | ls + '</pre></div></td><td id="hlcode" class="code">') |
|
351 | 352 | else: |
|
352 | 353 | yield 0, ('<table class="%stable">' % self.cssclass + |
|
353 | 354 | '<tr><td class="linenos"><div class="linenodiv"><pre>' + |
|
354 | 355 | ls + '</pre></div></td><td id="hlcode" class="code">') |
|
355 | 356 | yield 0, dummyoutfile.getvalue() |
|
356 | 357 | yield 0, '</td></tr></table>' |
|
357 | 358 | |
|
358 | 359 | |
|
359 | 360 | class SearchContentCodeHtmlFormatter(CodeHtmlFormatter): |
|
360 | 361 | def __init__(self, **kw): |
|
361 | 362 | # only show these line numbers if set |
|
362 | 363 | self.only_lines = kw.pop('only_line_numbers', []) |
|
363 | 364 | self.query_terms = kw.pop('query_terms', []) |
|
364 | 365 | self.max_lines = kw.pop('max_lines', 5) |
|
365 | 366 | self.line_context = kw.pop('line_context', 3) |
|
366 | 367 | self.url = kw.pop('url', None) |
|
367 | 368 | |
|
368 | 369 | super(CodeHtmlFormatter, self).__init__(**kw) |
|
369 | 370 | |
|
370 | 371 | def _wrap_code(self, source): |
|
371 | 372 | for cnt, it in enumerate(source): |
|
372 | 373 | i, t = it |
|
373 | 374 | t = '<pre>%s</pre>' % t |
|
374 | 375 | yield i, t |
|
375 | 376 | |
|
376 | 377 | def _wrap_tablelinenos(self, inner): |
|
377 | 378 | yield 0, '<table class="code-highlight %stable">' % self.cssclass |
|
378 | 379 | |
|
379 | 380 | last_shown_line_number = 0 |
|
380 | 381 | current_line_number = 1 |
|
381 | 382 | |
|
382 | 383 | for t, line in inner: |
|
383 | 384 | if not t: |
|
384 | 385 | yield t, line |
|
385 | 386 | continue |
|
386 | 387 | |
|
387 | 388 | if current_line_number in self.only_lines: |
|
388 | 389 | if last_shown_line_number + 1 != current_line_number: |
|
389 | 390 | yield 0, '<tr>' |
|
390 | 391 | yield 0, '<td class="line">...</td>' |
|
391 | 392 | yield 0, '<td id="hlcode" class="code"></td>' |
|
392 | 393 | yield 0, '</tr>' |
|
393 | 394 | |
|
394 | 395 | yield 0, '<tr>' |
|
395 | 396 | if self.url: |
|
396 | 397 | yield 0, '<td class="line"><a href="%s#L%i">%i</a></td>' % ( |
|
397 | 398 | self.url, current_line_number, current_line_number) |
|
398 | 399 | else: |
|
399 | 400 | yield 0, '<td class="line"><a href="">%i</a></td>' % ( |
|
400 | 401 | current_line_number) |
|
401 | 402 | yield 0, '<td id="hlcode" class="code">' + line + '</td>' |
|
402 | 403 | yield 0, '</tr>' |
|
403 | 404 | |
|
404 | 405 | last_shown_line_number = current_line_number |
|
405 | 406 | |
|
406 | 407 | current_line_number += 1 |
|
407 | 408 | |
|
408 | 409 | yield 0, '</table>' |
|
409 | 410 | |
|
410 | 411 | |
|
411 | 412 | def hsv_to_rgb(h, s, v): |
|
412 | 413 | """ Convert hsv color values to rgb """ |
|
413 | 414 | |
|
414 | 415 | if s == 0.0: |
|
415 | 416 | return v, v, v |
|
416 | 417 | i = int(h * 6.0) # XXX assume int() truncates! |
|
417 | 418 | f = (h * 6.0) - i |
|
418 | 419 | p = v * (1.0 - s) |
|
419 | 420 | q = v * (1.0 - s * f) |
|
420 | 421 | t = v * (1.0 - s * (1.0 - f)) |
|
421 | 422 | i = i % 6 |
|
422 | 423 | if i == 0: |
|
423 | 424 | return v, t, p |
|
424 | 425 | if i == 1: |
|
425 | 426 | return q, v, p |
|
426 | 427 | if i == 2: |
|
427 | 428 | return p, v, t |
|
428 | 429 | if i == 3: |
|
429 | 430 | return p, q, v |
|
430 | 431 | if i == 4: |
|
431 | 432 | return t, p, v |
|
432 | 433 | if i == 5: |
|
433 | 434 | return v, p, q |
|
434 | 435 | |
|
435 | 436 | |
|
436 | 437 | def unique_color_generator(n=10000, saturation=0.10, lightness=0.95): |
|
437 | 438 | """ |
|
438 | 439 | Generator for getting n of evenly distributed colors using |
|
439 | 440 | hsv color and golden ratio. It always return same order of colors |
|
440 | 441 | |
|
441 | 442 | :param n: number of colors to generate |
|
442 | 443 | :param saturation: saturation of returned colors |
|
443 | 444 | :param lightness: lightness of returned colors |
|
444 | 445 | :returns: RGB tuple |
|
445 | 446 | """ |
|
446 | 447 | |
|
447 | 448 | golden_ratio = 0.618033988749895 |
|
448 | 449 | h = 0.22717784590367374 |
|
449 | 450 | |
|
450 | 451 | for _ in xrange(n): |
|
451 | 452 | h += golden_ratio |
|
452 | 453 | h %= 1 |
|
453 | 454 | HSV_tuple = [h, saturation, lightness] |
|
454 | 455 | RGB_tuple = hsv_to_rgb(*HSV_tuple) |
|
455 | 456 | yield map(lambda x: str(int(x * 256)), RGB_tuple) |
|
456 | 457 | |
|
457 | 458 | |
|
458 | 459 | def color_hasher(n=10000, saturation=0.10, lightness=0.95): |
|
459 | 460 | """ |
|
460 | 461 | Returns a function which when called with an argument returns a unique |
|
461 | 462 | color for that argument, eg. |
|
462 | 463 | |
|
463 | 464 | :param n: number of colors to generate |
|
464 | 465 | :param saturation: saturation of returned colors |
|
465 | 466 | :param lightness: lightness of returned colors |
|
466 | 467 | :returns: css RGB string |
|
467 | 468 | |
|
468 | 469 | >>> color_hash = color_hasher() |
|
469 | 470 | >>> color_hash('hello') |
|
470 | 471 | 'rgb(34, 12, 59)' |
|
471 | 472 | >>> color_hash('hello') |
|
472 | 473 | 'rgb(34, 12, 59)' |
|
473 | 474 | >>> color_hash('other') |
|
474 | 475 | 'rgb(90, 224, 159)' |
|
475 | 476 | """ |
|
476 | 477 | |
|
477 | 478 | color_dict = {} |
|
478 | 479 | cgenerator = unique_color_generator( |
|
479 | 480 | saturation=saturation, lightness=lightness) |
|
480 | 481 | |
|
481 | 482 | def get_color_string(thing): |
|
482 | 483 | if thing in color_dict: |
|
483 | 484 | col = color_dict[thing] |
|
484 | 485 | else: |
|
485 | 486 | col = color_dict[thing] = cgenerator.next() |
|
486 | 487 | return "rgb(%s)" % (', '.join(col)) |
|
487 | 488 | |
|
488 | 489 | return get_color_string |
|
489 | 490 | |
|
490 | 491 | |
|
491 | 492 | def get_lexer_safe(mimetype=None, filepath=None): |
|
492 | 493 | """ |
|
493 | 494 | Tries to return a relevant pygments lexer using mimetype/filepath name, |
|
494 | 495 | defaulting to plain text if none could be found |
|
495 | 496 | """ |
|
496 | 497 | lexer = None |
|
497 | 498 | try: |
|
498 | 499 | if mimetype: |
|
499 | 500 | lexer = get_lexer_for_mimetype(mimetype) |
|
500 | 501 | if not lexer: |
|
501 | 502 | lexer = get_lexer_for_filename(filepath) |
|
502 | 503 | except pygments.util.ClassNotFound: |
|
503 | 504 | pass |
|
504 | 505 | |
|
505 | 506 | if not lexer: |
|
506 | 507 | lexer = get_lexer_by_name('text') |
|
507 | 508 | |
|
508 | 509 | return lexer |
|
509 | 510 | |
|
510 | 511 | |
|
511 | 512 | def get_lexer_for_filenode(filenode): |
|
512 | 513 | lexer = get_custom_lexer(filenode.extension) or filenode.lexer |
|
513 | 514 | return lexer |
|
514 | 515 | |
|
515 | 516 | |
|
516 | 517 | def pygmentize(filenode, **kwargs): |
|
517 | 518 | """ |
|
518 | 519 | pygmentize function using pygments |
|
519 | 520 | |
|
520 | 521 | :param filenode: |
|
521 | 522 | """ |
|
522 | 523 | lexer = get_lexer_for_filenode(filenode) |
|
523 | 524 | return literal(code_highlight(filenode.content, lexer, |
|
524 | 525 | CodeHtmlFormatter(**kwargs))) |
|
525 | 526 | |
|
526 | 527 | |
|
527 | 528 | def is_following_repo(repo_name, user_id): |
|
528 | 529 | from rhodecode.model.scm import ScmModel |
|
529 | 530 | return ScmModel().is_following_repo(repo_name, user_id) |
|
530 | 531 | |
|
531 | 532 | |
|
532 | 533 | class _Message(object): |
|
533 | 534 | """A message returned by ``Flash.pop_messages()``. |
|
534 | 535 | |
|
535 | 536 | Converting the message to a string returns the message text. Instances |
|
536 | 537 | also have the following attributes: |
|
537 | 538 | |
|
538 | 539 | * ``message``: the message text. |
|
539 | 540 | * ``category``: the category specified when the message was created. |
|
540 | 541 | """ |
|
541 | 542 | |
|
542 | 543 | def __init__(self, category, message): |
|
543 | 544 | self.category = category |
|
544 | 545 | self.message = message |
|
545 | 546 | |
|
546 | 547 | def __str__(self): |
|
547 | 548 | return self.message |
|
548 | 549 | |
|
549 | 550 | __unicode__ = __str__ |
|
550 | 551 | |
|
551 | 552 | def __html__(self): |
|
552 | 553 | return escape(safe_unicode(self.message)) |
|
553 | 554 | |
|
554 | 555 | |
|
555 | 556 | class Flash(object): |
|
556 | 557 | # List of allowed categories. If None, allow any category. |
|
557 | 558 | categories = ["warning", "notice", "error", "success"] |
|
558 | 559 | |
|
559 | 560 | # Default category if none is specified. |
|
560 | 561 | default_category = "notice" |
|
561 | 562 | |
|
562 | 563 | def __init__(self, session_key="flash", categories=None, |
|
563 | 564 | default_category=None): |
|
564 | 565 | """ |
|
565 | 566 | Instantiate a ``Flash`` object. |
|
566 | 567 | |
|
567 | 568 | ``session_key`` is the key to save the messages under in the user's |
|
568 | 569 | session. |
|
569 | 570 | |
|
570 | 571 | ``categories`` is an optional list which overrides the default list |
|
571 | 572 | of categories. |
|
572 | 573 | |
|
573 | 574 | ``default_category`` overrides the default category used for messages |
|
574 | 575 | when none is specified. |
|
575 | 576 | """ |
|
576 | 577 | self.session_key = session_key |
|
577 | 578 | if categories is not None: |
|
578 | 579 | self.categories = categories |
|
579 | 580 | if default_category is not None: |
|
580 | 581 | self.default_category = default_category |
|
581 | 582 | if self.categories and self.default_category not in self.categories: |
|
582 | 583 | raise ValueError( |
|
583 | 584 | "unrecognized default category %r" % (self.default_category,)) |
|
584 | 585 | |
|
585 | 586 | def pop_messages(self, session=None, request=None): |
|
586 | 587 | """ |
|
587 | 588 | Return all accumulated messages and delete them from the session. |
|
588 | 589 | |
|
589 | 590 | The return value is a list of ``Message`` objects. |
|
590 | 591 | """ |
|
591 | 592 | messages = [] |
|
592 | 593 | |
|
593 | 594 | if not session: |
|
594 | 595 | if not request: |
|
595 | 596 | request = get_current_request() |
|
596 | 597 | session = request.session |
|
597 | 598 | |
|
598 | 599 | # Pop the 'old' pylons flash messages. They are tuples of the form |
|
599 | 600 | # (category, message) |
|
600 | 601 | for cat, msg in session.pop(self.session_key, []): |
|
601 | 602 | messages.append(_Message(cat, msg)) |
|
602 | 603 | |
|
603 | 604 | # Pop the 'new' pyramid flash messages for each category as list |
|
604 | 605 | # of strings. |
|
605 | 606 | for cat in self.categories: |
|
606 | 607 | for msg in session.pop_flash(queue=cat): |
|
607 | 608 | messages.append(_Message(cat, msg)) |
|
608 | 609 | # Map messages from the default queue to the 'notice' category. |
|
609 | 610 | for msg in session.pop_flash(): |
|
610 | 611 | messages.append(_Message('notice', msg)) |
|
611 | 612 | |
|
612 | 613 | session.save() |
|
613 | 614 | return messages |
|
614 | 615 | |
|
615 | 616 | def json_alerts(self, session=None, request=None): |
|
616 | 617 | payloads = [] |
|
617 | 618 | messages = flash.pop_messages(session=session, request=request) |
|
618 | 619 | if messages: |
|
619 | 620 | for message in messages: |
|
620 | 621 | subdata = {} |
|
621 | 622 | if hasattr(message.message, 'rsplit'): |
|
622 | 623 | flash_data = message.message.rsplit('|DELIM|', 1) |
|
623 | 624 | org_message = flash_data[0] |
|
624 | 625 | if len(flash_data) > 1: |
|
625 | 626 | subdata = json.loads(flash_data[1]) |
|
626 | 627 | else: |
|
627 | 628 | org_message = message.message |
|
628 | 629 | payloads.append({ |
|
629 | 630 | 'message': { |
|
630 | 631 | 'message': u'{}'.format(org_message), |
|
631 | 632 | 'level': message.category, |
|
632 | 633 | 'force': True, |
|
633 | 634 | 'subdata': subdata |
|
634 | 635 | } |
|
635 | 636 | }) |
|
636 | 637 | return json.dumps(payloads) |
|
637 | 638 | |
|
638 | 639 | def __call__(self, message, category=None, ignore_duplicate=False, |
|
639 | 640 | session=None, request=None): |
|
640 | 641 | |
|
641 | 642 | if not session: |
|
642 | 643 | if not request: |
|
643 | 644 | request = get_current_request() |
|
644 | 645 | session = request.session |
|
645 | 646 | |
|
646 | 647 | session.flash( |
|
647 | 648 | message, queue=category, allow_duplicate=not ignore_duplicate) |
|
648 | 649 | |
|
649 | 650 | |
|
650 | 651 | flash = Flash() |
|
651 | 652 | |
|
652 | 653 | #============================================================================== |
|
653 | 654 | # SCM FILTERS available via h. |
|
654 | 655 | #============================================================================== |
|
655 | 656 | from rhodecode.lib.vcs.utils import author_name, author_email |
|
656 | 657 | from rhodecode.lib.utils2 import credentials_filter, age, age_from_seconds |
|
657 | 658 | from rhodecode.model.db import User, ChangesetStatus |
|
658 | 659 | |
|
659 | 660 | capitalize = lambda x: x.capitalize() |
|
660 | 661 | email = author_email |
|
661 | 662 | short_id = lambda x: x[:12] |
|
662 | 663 | hide_credentials = lambda x: ''.join(credentials_filter(x)) |
|
663 | 664 | |
|
664 | 665 | |
|
665 | 666 | import pytz |
|
666 | 667 | import tzlocal |
|
667 | 668 | local_timezone = tzlocal.get_localzone() |
|
668 | 669 | |
|
669 | 670 | |
|
670 | 671 | def age_component(datetime_iso, value=None, time_is_local=False): |
|
671 | 672 | title = value or format_date(datetime_iso) |
|
672 | 673 | tzinfo = '+00:00' |
|
673 | 674 | |
|
674 | 675 | # detect if we have a timezone info, otherwise, add it |
|
675 | 676 | if time_is_local and isinstance(datetime_iso, datetime) and not datetime_iso.tzinfo: |
|
676 | 677 | force_timezone = os.environ.get('RC_TIMEZONE', '') |
|
677 | 678 | if force_timezone: |
|
678 | 679 | force_timezone = pytz.timezone(force_timezone) |
|
679 | 680 | timezone = force_timezone or local_timezone |
|
680 | 681 | offset = timezone.localize(datetime_iso).strftime('%z') |
|
681 | 682 | tzinfo = '{}:{}'.format(offset[:-2], offset[-2:]) |
|
682 | 683 | |
|
683 | 684 | return literal( |
|
684 | 685 | '<time class="timeago tooltip" ' |
|
685 | 686 | 'title="{1}{2}" datetime="{0}{2}">{1}</time>'.format( |
|
686 | 687 | datetime_iso, title, tzinfo)) |
|
687 | 688 | |
|
688 | 689 | |
|
689 | 690 | def _shorten_commit_id(commit_id, commit_len=None): |
|
690 | 691 | if commit_len is None: |
|
691 | 692 | request = get_current_request() |
|
692 | 693 | commit_len = request.call_context.visual.show_sha_length |
|
693 | 694 | return commit_id[:commit_len] |
|
694 | 695 | |
|
695 | 696 | |
|
696 | 697 | def show_id(commit, show_idx=None, commit_len=None): |
|
697 | 698 | """ |
|
698 | 699 | Configurable function that shows ID |
|
699 | 700 | by default it's r123:fffeeefffeee |
|
700 | 701 | |
|
701 | 702 | :param commit: commit instance |
|
702 | 703 | """ |
|
703 | 704 | if show_idx is None: |
|
704 | 705 | request = get_current_request() |
|
705 | 706 | show_idx = request.call_context.visual.show_revision_number |
|
706 | 707 | |
|
707 | 708 | raw_id = _shorten_commit_id(commit.raw_id, commit_len=commit_len) |
|
708 | 709 | if show_idx: |
|
709 | 710 | return 'r%s:%s' % (commit.idx, raw_id) |
|
710 | 711 | else: |
|
711 | 712 | return '%s' % (raw_id, ) |
|
712 | 713 | |
|
713 | 714 | |
|
714 | 715 | def format_date(date): |
|
715 | 716 | """ |
|
716 | 717 | use a standardized formatting for dates used in RhodeCode |
|
717 | 718 | |
|
718 | 719 | :param date: date/datetime object |
|
719 | 720 | :return: formatted date |
|
720 | 721 | """ |
|
721 | 722 | |
|
722 | 723 | if date: |
|
723 | 724 | _fmt = "%a, %d %b %Y %H:%M:%S" |
|
724 | 725 | return safe_unicode(date.strftime(_fmt)) |
|
725 | 726 | |
|
726 | 727 | return u"" |
|
727 | 728 | |
|
728 | 729 | |
|
729 | 730 | class _RepoChecker(object): |
|
730 | 731 | |
|
731 | 732 | def __init__(self, backend_alias): |
|
732 | 733 | self._backend_alias = backend_alias |
|
733 | 734 | |
|
734 | 735 | def __call__(self, repository): |
|
735 | 736 | if hasattr(repository, 'alias'): |
|
736 | 737 | _type = repository.alias |
|
737 | 738 | elif hasattr(repository, 'repo_type'): |
|
738 | 739 | _type = repository.repo_type |
|
739 | 740 | else: |
|
740 | 741 | _type = repository |
|
741 | 742 | return _type == self._backend_alias |
|
742 | 743 | |
|
743 | 744 | |
|
744 | 745 | is_git = _RepoChecker('git') |
|
745 | 746 | is_hg = _RepoChecker('hg') |
|
746 | 747 | is_svn = _RepoChecker('svn') |
|
747 | 748 | |
|
748 | 749 | |
|
749 | 750 | def get_repo_type_by_name(repo_name): |
|
750 | 751 | repo = Repository.get_by_repo_name(repo_name) |
|
751 | 752 | if repo: |
|
752 | 753 | return repo.repo_type |
|
753 | 754 | |
|
754 | 755 | |
|
755 | 756 | def is_svn_without_proxy(repository): |
|
756 | 757 | if is_svn(repository): |
|
757 | 758 | from rhodecode.model.settings import VcsSettingsModel |
|
758 | 759 | conf = VcsSettingsModel().get_ui_settings_as_config_obj() |
|
759 | 760 | return not str2bool(conf.get('vcs_svn_proxy', 'http_requests_enabled')) |
|
760 | 761 | return False |
|
761 | 762 | |
|
762 | 763 | |
|
763 | 764 | def discover_user(author): |
|
764 | 765 | """ |
|
765 | 766 | Tries to discover RhodeCode User based on the autho string. Author string |
|
766 | 767 | is typically `FirstName LastName <email@address.com>` |
|
767 | 768 | """ |
|
768 | 769 | |
|
769 | 770 | # if author is already an instance use it for extraction |
|
770 | 771 | if isinstance(author, User): |
|
771 | 772 | return author |
|
772 | 773 | |
|
773 | 774 | # Valid email in the attribute passed, see if they're in the system |
|
774 | 775 | _email = author_email(author) |
|
775 | 776 | if _email != '': |
|
776 | 777 | user = User.get_by_email(_email, case_insensitive=True, cache=True) |
|
777 | 778 | if user is not None: |
|
778 | 779 | return user |
|
779 | 780 | |
|
780 | 781 | # Maybe it's a username, we try to extract it and fetch by username ? |
|
781 | 782 | _author = author_name(author) |
|
782 | 783 | user = User.get_by_username(_author, case_insensitive=True, cache=True) |
|
783 | 784 | if user is not None: |
|
784 | 785 | return user |
|
785 | 786 | |
|
786 | 787 | return None |
|
787 | 788 | |
|
788 | 789 | |
|
789 | 790 | def email_or_none(author): |
|
790 | 791 | # extract email from the commit string |
|
791 | 792 | _email = author_email(author) |
|
792 | 793 | |
|
793 | 794 | # If we have an email, use it, otherwise |
|
794 | 795 | # see if it contains a username we can get an email from |
|
795 | 796 | if _email != '': |
|
796 | 797 | return _email |
|
797 | 798 | else: |
|
798 | 799 | user = User.get_by_username( |
|
799 | 800 | author_name(author), case_insensitive=True, cache=True) |
|
800 | 801 | |
|
801 | 802 | if user is not None: |
|
802 | 803 | return user.email |
|
803 | 804 | |
|
804 | 805 | # No valid email, not a valid user in the system, none! |
|
805 | 806 | return None |
|
806 | 807 | |
|
807 | 808 | |
|
808 | 809 | def link_to_user(author, length=0, **kwargs): |
|
809 | 810 | user = discover_user(author) |
|
810 | 811 | # user can be None, but if we have it already it means we can re-use it |
|
811 | 812 | # in the person() function, so we save 1 intensive-query |
|
812 | 813 | if user: |
|
813 | 814 | author = user |
|
814 | 815 | |
|
815 | 816 | display_person = person(author, 'username_or_name_or_email') |
|
816 | 817 | if length: |
|
817 | 818 | display_person = shorter(display_person, length) |
|
818 | 819 | |
|
819 | 820 | if user: |
|
820 | 821 | return link_to( |
|
821 | 822 | escape(display_person), |
|
822 | 823 | route_path('user_profile', username=user.username), |
|
823 | 824 | **kwargs) |
|
824 | 825 | else: |
|
825 | 826 | return escape(display_person) |
|
826 | 827 | |
|
827 | 828 | |
|
828 | 829 | def link_to_group(users_group_name, **kwargs): |
|
829 | 830 | return link_to( |
|
830 | 831 | escape(users_group_name), |
|
831 | 832 | route_path('user_group_profile', user_group_name=users_group_name), |
|
832 | 833 | **kwargs) |
|
833 | 834 | |
|
834 | 835 | |
|
835 | 836 | def person(author, show_attr="username_and_name"): |
|
836 | 837 | user = discover_user(author) |
|
837 | 838 | if user: |
|
838 | 839 | return getattr(user, show_attr) |
|
839 | 840 | else: |
|
840 | 841 | _author = author_name(author) |
|
841 | 842 | _email = email(author) |
|
842 | 843 | return _author or _email |
|
843 | 844 | |
|
844 | 845 | |
|
845 | 846 | def author_string(email): |
|
846 | 847 | if email: |
|
847 | 848 | user = User.get_by_email(email, case_insensitive=True, cache=True) |
|
848 | 849 | if user: |
|
849 | 850 | if user.first_name or user.last_name: |
|
850 | 851 | return '%s %s <%s>' % ( |
|
851 | 852 | user.first_name, user.last_name, email) |
|
852 | 853 | else: |
|
853 | 854 | return email |
|
854 | 855 | else: |
|
855 | 856 | return email |
|
856 | 857 | else: |
|
857 | 858 | return None |
|
858 | 859 | |
|
859 | 860 | |
|
860 | 861 | def person_by_id(id_, show_attr="username_and_name"): |
|
861 | 862 | # attr to return from fetched user |
|
862 | 863 | person_getter = lambda usr: getattr(usr, show_attr) |
|
863 | 864 | |
|
864 | 865 | #maybe it's an ID ? |
|
865 | 866 | if str(id_).isdigit() or isinstance(id_, int): |
|
866 | 867 | id_ = int(id_) |
|
867 | 868 | user = User.get(id_) |
|
868 | 869 | if user is not None: |
|
869 | 870 | return person_getter(user) |
|
870 | 871 | return id_ |
|
871 | 872 | |
|
872 | 873 | |
|
873 | 874 | def gravatar_with_user(request, author, show_disabled=False): |
|
874 | 875 | _render = request.get_partial_renderer( |
|
875 | 876 | 'rhodecode:templates/base/base.mako') |
|
876 | 877 | return _render('gravatar_with_user', author, show_disabled=show_disabled) |
|
877 | 878 | |
|
878 | 879 | |
|
879 | 880 | tags_paterns = OrderedDict(( |
|
880 | 881 | ('lang', (re.compile(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+\.]*)\]'), |
|
881 | 882 | '<div class="metatag" tag="lang">\\2</div>')), |
|
882 | 883 | |
|
883 | 884 | ('see', (re.compile(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]'), |
|
884 | 885 | '<div class="metatag" tag="see">see: \\1 </div>')), |
|
885 | 886 | |
|
886 | 887 | ('url', (re.compile(r'\[url\ \=\>\ \[([a-zA-Z0-9\ \.\-\_]+)\]\((http://|https://|/)(.*?)\)\]'), |
|
887 | 888 | '<div class="metatag" tag="url"> <a href="\\2\\3">\\1</a> </div>')), |
|
888 | 889 | |
|
889 | 890 | ('license', (re.compile(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]'), |
|
890 | 891 | '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>')), |
|
891 | 892 | |
|
892 | 893 | ('ref', (re.compile(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z0-9\-\/]*)\]'), |
|
893 | 894 | '<div class="metatag" tag="ref \\1">\\1: <a href="/\\2">\\2</a></div>')), |
|
894 | 895 | |
|
895 | 896 | ('state', (re.compile(r'\[(stable|featured|stale|dead|dev|deprecated)\]'), |
|
896 | 897 | '<div class="metatag" tag="state \\1">\\1</div>')), |
|
897 | 898 | |
|
898 | 899 | # label in grey |
|
899 | 900 | ('label', (re.compile(r'\[([a-z]+)\]'), |
|
900 | 901 | '<div class="metatag" tag="label">\\1</div>')), |
|
901 | 902 | |
|
902 | 903 | # generic catch all in grey |
|
903 | 904 | ('generic', (re.compile(r'\[([a-zA-Z0-9\.\-\_]+)\]'), |
|
904 | 905 | '<div class="metatag" tag="generic">\\1</div>')), |
|
905 | 906 | )) |
|
906 | 907 | |
|
907 | 908 | |
|
908 | 909 | def extract_metatags(value): |
|
909 | 910 | """ |
|
910 | 911 | Extract supported meta-tags from given text value |
|
911 | 912 | """ |
|
912 | 913 | tags = [] |
|
913 | 914 | if not value: |
|
914 | 915 | return tags, '' |
|
915 | 916 | |
|
916 | 917 | for key, val in tags_paterns.items(): |
|
917 | 918 | pat, replace_html = val |
|
918 | 919 | tags.extend([(key, x.group()) for x in pat.finditer(value)]) |
|
919 | 920 | value = pat.sub('', value) |
|
920 | 921 | |
|
921 | 922 | return tags, value |
|
922 | 923 | |
|
923 | 924 | |
|
924 | 925 | def style_metatag(tag_type, value): |
|
925 | 926 | """ |
|
926 | 927 | converts tags from value into html equivalent |
|
927 | 928 | """ |
|
928 | 929 | if not value: |
|
929 | 930 | return '' |
|
930 | 931 | |
|
931 | 932 | html_value = value |
|
932 | 933 | tag_data = tags_paterns.get(tag_type) |
|
933 | 934 | if tag_data: |
|
934 | 935 | pat, replace_html = tag_data |
|
935 | 936 | # convert to plain `unicode` instead of a markup tag to be used in |
|
936 | 937 | # regex expressions. safe_unicode doesn't work here |
|
937 | 938 | html_value = pat.sub(replace_html, unicode(value)) |
|
938 | 939 | |
|
939 | 940 | return html_value |
|
940 | 941 | |
|
941 | 942 | |
|
942 | 943 | def bool2icon(value, show_at_false=True): |
|
943 | 944 | """ |
|
944 | 945 | Returns boolean value of a given value, represented as html element with |
|
945 | 946 | classes that will represent icons |
|
946 | 947 | |
|
947 | 948 | :param value: given value to convert to html node |
|
948 | 949 | """ |
|
949 | 950 | |
|
950 | 951 | if value: # does bool conversion |
|
951 | 952 | return HTML.tag('i', class_="icon-true") |
|
952 | 953 | else: # not true as bool |
|
953 | 954 | if show_at_false: |
|
954 | 955 | return HTML.tag('i', class_="icon-false") |
|
955 | 956 | return HTML.tag('i') |
|
956 | 957 | |
|
957 | 958 | #============================================================================== |
|
958 | 959 | # PERMS |
|
959 | 960 | #============================================================================== |
|
960 | 961 | from rhodecode.lib.auth import HasPermissionAny, HasPermissionAll, \ |
|
961 | 962 | HasRepoPermissionAny, HasRepoPermissionAll, HasRepoGroupPermissionAll, \ |
|
962 | 963 | HasRepoGroupPermissionAny, HasRepoPermissionAnyApi, get_csrf_token, \ |
|
963 | 964 | csrf_token_key |
|
964 | 965 | |
|
965 | 966 | |
|
966 | 967 | #============================================================================== |
|
967 | 968 | # GRAVATAR URL |
|
968 | 969 | #============================================================================== |
|
969 | 970 | class InitialsGravatar(object): |
|
970 | 971 | def __init__(self, email_address, first_name, last_name, size=30, |
|
971 | 972 | background=None, text_color='#fff'): |
|
972 | 973 | self.size = size |
|
973 | 974 | self.first_name = first_name |
|
974 | 975 | self.last_name = last_name |
|
975 | 976 | self.email_address = email_address |
|
976 | 977 | self.background = background or self.str2color(email_address) |
|
977 | 978 | self.text_color = text_color |
|
978 | 979 | |
|
979 | 980 | def get_color_bank(self): |
|
980 | 981 | """ |
|
981 | 982 | returns a predefined list of colors that gravatars can use. |
|
982 | 983 | Those are randomized distinct colors that guarantee readability and |
|
983 | 984 | uniqueness. |
|
984 | 985 | |
|
985 | 986 | generated with: http://phrogz.net/css/distinct-colors.html |
|
986 | 987 | """ |
|
987 | 988 | return [ |
|
988 | 989 | '#bf3030', '#a67f53', '#00ff00', '#5989b3', '#392040', '#d90000', |
|
989 | 990 | '#402910', '#204020', '#79baf2', '#a700b3', '#bf6060', '#7f5320', |
|
990 | 991 | '#008000', '#003059', '#ee00ff', '#ff0000', '#8c4b00', '#007300', |
|
991 | 992 | '#005fb3', '#de73e6', '#ff4040', '#ffaa00', '#3df255', '#203140', |
|
992 | 993 | '#47004d', '#591616', '#664400', '#59b365', '#0d2133', '#83008c', |
|
993 | 994 | '#592d2d', '#bf9f60', '#73e682', '#1d3f73', '#73006b', '#402020', |
|
994 | 995 | '#b2862d', '#397341', '#597db3', '#e600d6', '#a60000', '#736039', |
|
995 | 996 | '#00b318', '#79aaf2', '#330d30', '#ff8080', '#403010', '#16591f', |
|
996 | 997 | '#002459', '#8c4688', '#e50000', '#ffbf40', '#00732e', '#102340', |
|
997 | 998 | '#bf60ac', '#8c4646', '#cc8800', '#00a642', '#1d3473', '#b32d98', |
|
998 | 999 | '#660e00', '#ffd580', '#80ffb2', '#7391e6', '#733967', '#d97b6c', |
|
999 | 1000 | '#8c5e00', '#59b389', '#3967e6', '#590047', '#73281d', '#665200', |
|
1000 | 1001 | '#00e67a', '#2d50b3', '#8c2377', '#734139', '#b2982d', '#16593a', |
|
1001 | 1002 | '#001859', '#ff00aa', '#a65e53', '#ffcc00', '#0d3321', '#2d3959', |
|
1002 | 1003 | '#731d56', '#401610', '#4c3d00', '#468c6c', '#002ca6', '#d936a3', |
|
1003 | 1004 | '#d94c36', '#403920', '#36d9a3', '#0d1733', '#592d4a', '#993626', |
|
1004 | 1005 | '#cca300', '#00734d', '#46598c', '#8c005e', '#7f1100', '#8c7000', |
|
1005 | 1006 | '#00a66f', '#7382e6', '#b32d74', '#d9896c', '#ffe680', '#1d7362', |
|
1006 | 1007 | '#364cd9', '#73003d', '#d93a00', '#998a4d', '#59b3a1', '#5965b3', |
|
1007 | 1008 | '#e5007a', '#73341d', '#665f00', '#00b38f', '#0018b3', '#59163a', |
|
1008 | 1009 | '#b2502d', '#bfb960', '#00ffcc', '#23318c', '#a6537f', '#734939', |
|
1009 | 1010 | '#b2a700', '#104036', '#3d3df2', '#402031', '#e56739', '#736f39', |
|
1010 | 1011 | '#79f2ea', '#000059', '#401029', '#4c1400', '#ffee00', '#005953', |
|
1011 | 1012 | '#101040', '#990052', '#402820', '#403d10', '#00ffee', '#0000d9', |
|
1012 | 1013 | '#ff80c4', '#a66953', '#eeff00', '#00ccbe', '#8080ff', '#e673a1', |
|
1013 | 1014 | '#a62c00', '#474d00', '#1a3331', '#46468c', '#733950', '#662900', |
|
1014 | 1015 | '#858c23', '#238c85', '#0f0073', '#b20047', '#d9986c', '#becc00', |
|
1015 | 1016 | '#396f73', '#281d73', '#ff0066', '#ff6600', '#dee673', '#59adb3', |
|
1016 | 1017 | '#6559b3', '#590024', '#b2622d', '#98b32d', '#36ced9', '#332d59', |
|
1017 | 1018 | '#40001a', '#733f1d', '#526600', '#005359', '#242040', '#bf6079', |
|
1018 | 1019 | '#735039', '#cef23d', '#007780', '#5630bf', '#66001b', '#b24700', |
|
1019 | 1020 | '#acbf60', '#1d6273', '#25008c', '#731d34', '#a67453', '#50592d', |
|
1020 | 1021 | '#00ccff', '#6600ff', '#ff0044', '#4c1f00', '#8a994d', '#79daf2', |
|
1021 | 1022 | '#a173e6', '#d93662', '#402310', '#aaff00', '#2d98b3', '#8c40ff', |
|
1022 | 1023 | '#592d39', '#ff8c40', '#354020', '#103640', '#1a0040', '#331a20', |
|
1023 | 1024 | '#331400', '#334d00', '#1d5673', '#583973', '#7f0022', '#4c3626', |
|
1024 | 1025 | '#88cc00', '#36a3d9', '#3d0073', '#d9364c', '#33241a', '#698c23', |
|
1025 | 1026 | '#5995b3', '#300059', '#e57382', '#7f3300', '#366600', '#00aaff', |
|
1026 | 1027 | '#3a1659', '#733941', '#663600', '#74b32d', '#003c59', '#7f53a6', |
|
1027 | 1028 | '#73000f', '#ff8800', '#baf279', '#79caf2', '#291040', '#a6293a', |
|
1028 | 1029 | '#b2742d', '#587339', '#0077b3', '#632699', '#400009', '#d9a66c', |
|
1029 | 1030 | '#294010', '#2d4a59', '#aa00ff', '#4c131b', '#b25f00', '#5ce600', |
|
1030 | 1031 | '#267399', '#a336d9', '#990014', '#664e33', '#86bf60', '#0088ff', |
|
1031 | 1032 | '#7700b3', '#593a16', '#073300', '#1d4b73', '#ac60bf', '#e59539', |
|
1032 | 1033 | '#4f8c46', '#368dd9', '#5c0073' |
|
1033 | 1034 | ] |
|
1034 | 1035 | |
|
1035 | 1036 | def rgb_to_hex_color(self, rgb_tuple): |
|
1036 | 1037 | """ |
|
1037 | 1038 | Converts an rgb_tuple passed to an hex color. |
|
1038 | 1039 | |
|
1039 | 1040 | :param rgb_tuple: tuple with 3 ints represents rgb color space |
|
1040 | 1041 | """ |
|
1041 | 1042 | return '#' + ("".join(map(chr, rgb_tuple)).encode('hex')) |
|
1042 | 1043 | |
|
1043 | 1044 | def email_to_int_list(self, email_str): |
|
1044 | 1045 | """ |
|
1045 | 1046 | Get every byte of the hex digest value of email and turn it to integer. |
|
1046 | 1047 | It's going to be always between 0-255 |
|
1047 | 1048 | """ |
|
1048 | 1049 | digest = md5_safe(email_str.lower()) |
|
1049 | 1050 | return [int(digest[i * 2:i * 2 + 2], 16) for i in range(16)] |
|
1050 | 1051 | |
|
1051 | 1052 | def pick_color_bank_index(self, email_str, color_bank): |
|
1052 | 1053 | return self.email_to_int_list(email_str)[0] % len(color_bank) |
|
1053 | 1054 | |
|
1054 | 1055 | def str2color(self, email_str): |
|
1055 | 1056 | """ |
|
1056 | 1057 | Tries to map in a stable algorithm an email to color |
|
1057 | 1058 | |
|
1058 | 1059 | :param email_str: |
|
1059 | 1060 | """ |
|
1060 | 1061 | color_bank = self.get_color_bank() |
|
1061 | 1062 | # pick position (module it's length so we always find it in the |
|
1062 | 1063 | # bank even if it's smaller than 256 values |
|
1063 | 1064 | pos = self.pick_color_bank_index(email_str, color_bank) |
|
1064 | 1065 | return color_bank[pos] |
|
1065 | 1066 | |
|
1066 | 1067 | def normalize_email(self, email_address): |
|
1067 | 1068 | import unicodedata |
|
1068 | 1069 | # default host used to fill in the fake/missing email |
|
1069 | 1070 | default_host = u'localhost' |
|
1070 | 1071 | |
|
1071 | 1072 | if not email_address: |
|
1072 | 1073 | email_address = u'%s@%s' % (User.DEFAULT_USER, default_host) |
|
1073 | 1074 | |
|
1074 | 1075 | email_address = safe_unicode(email_address) |
|
1075 | 1076 | |
|
1076 | 1077 | if u'@' not in email_address: |
|
1077 | 1078 | email_address = u'%s@%s' % (email_address, default_host) |
|
1078 | 1079 | |
|
1079 | 1080 | if email_address.endswith(u'@'): |
|
1080 | 1081 | email_address = u'%s%s' % (email_address, default_host) |
|
1081 | 1082 | |
|
1082 | 1083 | email_address = unicodedata.normalize('NFKD', email_address)\ |
|
1083 | 1084 | .encode('ascii', 'ignore') |
|
1084 | 1085 | return email_address |
|
1085 | 1086 | |
|
1086 | 1087 | def get_initials(self): |
|
1087 | 1088 | """ |
|
1088 | 1089 | Returns 2 letter initials calculated based on the input. |
|
1089 | 1090 | The algorithm picks first given email address, and takes first letter |
|
1090 | 1091 | of part before @, and then the first letter of server name. In case |
|
1091 | 1092 | the part before @ is in a format of `somestring.somestring2` it replaces |
|
1092 | 1093 | the server letter with first letter of somestring2 |
|
1093 | 1094 | |
|
1094 | 1095 | In case function was initialized with both first and lastname, this |
|
1095 | 1096 | overrides the extraction from email by first letter of the first and |
|
1096 | 1097 | last name. We add special logic to that functionality, In case Full name |
|
1097 | 1098 | is compound, like Guido Von Rossum, we use last part of the last name |
|
1098 | 1099 | (Von Rossum) picking `R`. |
|
1099 | 1100 | |
|
1100 | 1101 | Function also normalizes the non-ascii characters to they ascii |
|
1101 | 1102 | representation, eg Δ => A |
|
1102 | 1103 | """ |
|
1103 | 1104 | import unicodedata |
|
1104 | 1105 | # replace non-ascii to ascii |
|
1105 | 1106 | first_name = unicodedata.normalize( |
|
1106 | 1107 | 'NFKD', safe_unicode(self.first_name)).encode('ascii', 'ignore') |
|
1107 | 1108 | last_name = unicodedata.normalize( |
|
1108 | 1109 | 'NFKD', safe_unicode(self.last_name)).encode('ascii', 'ignore') |
|
1109 | 1110 | |
|
1110 | 1111 | # do NFKD encoding, and also make sure email has proper format |
|
1111 | 1112 | email_address = self.normalize_email(self.email_address) |
|
1112 | 1113 | |
|
1113 | 1114 | # first push the email initials |
|
1114 | 1115 | prefix, server = email_address.split('@', 1) |
|
1115 | 1116 | |
|
1116 | 1117 | # check if prefix is maybe a 'first_name.last_name' syntax |
|
1117 | 1118 | _dot_split = prefix.rsplit('.', 1) |
|
1118 | 1119 | if len(_dot_split) == 2 and _dot_split[1]: |
|
1119 | 1120 | initials = [_dot_split[0][0], _dot_split[1][0]] |
|
1120 | 1121 | else: |
|
1121 | 1122 | initials = [prefix[0], server[0]] |
|
1122 | 1123 | |
|
1123 | 1124 | # then try to replace either first_name or last_name |
|
1124 | 1125 | fn_letter = (first_name or " ")[0].strip() |
|
1125 | 1126 | ln_letter = (last_name.split(' ', 1)[-1] or " ")[0].strip() |
|
1126 | 1127 | |
|
1127 | 1128 | if fn_letter: |
|
1128 | 1129 | initials[0] = fn_letter |
|
1129 | 1130 | |
|
1130 | 1131 | if ln_letter: |
|
1131 | 1132 | initials[1] = ln_letter |
|
1132 | 1133 | |
|
1133 | 1134 | return ''.join(initials).upper() |
|
1134 | 1135 | |
|
1135 | 1136 | def get_img_data_by_type(self, font_family, img_type): |
|
1136 | 1137 | default_user = """ |
|
1137 | 1138 | <svg xmlns="http://www.w3.org/2000/svg" |
|
1138 | 1139 | version="1.1" x="0px" y="0px" width="{size}" height="{size}" |
|
1139 | 1140 | viewBox="-15 -10 439.165 429.164" |
|
1140 | 1141 | |
|
1141 | 1142 | xml:space="preserve" |
|
1142 | 1143 | style="background:{background};" > |
|
1143 | 1144 | |
|
1144 | 1145 | <path d="M204.583,216.671c50.664,0,91.74-48.075, |
|
1145 | 1146 | 91.74-107.378c0-82.237-41.074-107.377-91.74-107.377 |
|
1146 | 1147 | c-50.668,0-91.74,25.14-91.74,107.377C112.844, |
|
1147 | 1148 | 168.596,153.916,216.671, |
|
1148 | 1149 | 204.583,216.671z" fill="{text_color}"/> |
|
1149 | 1150 | <path d="M407.164,374.717L360.88, |
|
1150 | 1151 | 270.454c-2.117-4.771-5.836-8.728-10.465-11.138l-71.83-37.392 |
|
1151 | 1152 | c-1.584-0.823-3.502-0.663-4.926,0.415c-20.316, |
|
1152 | 1153 | 15.366-44.203,23.488-69.076,23.488c-24.877, |
|
1153 | 1154 | 0-48.762-8.122-69.078-23.488 |
|
1154 | 1155 | c-1.428-1.078-3.346-1.238-4.93-0.415L58.75, |
|
1155 | 1156 | 259.316c-4.631,2.41-8.346,6.365-10.465,11.138L2.001,374.717 |
|
1156 | 1157 | c-3.191,7.188-2.537,15.412,1.75,22.005c4.285, |
|
1157 | 1158 | 6.592,11.537,10.526,19.4,10.526h362.861c7.863,0,15.117-3.936, |
|
1158 | 1159 | 19.402-10.527 C409.699,390.129, |
|
1159 | 1160 | 410.355,381.902,407.164,374.717z" fill="{text_color}"/> |
|
1160 | 1161 | </svg>""".format( |
|
1161 | 1162 | size=self.size, |
|
1162 | 1163 | background='#979797', # @grey4 |
|
1163 | 1164 | text_color=self.text_color, |
|
1164 | 1165 | font_family=font_family) |
|
1165 | 1166 | |
|
1166 | 1167 | return { |
|
1167 | 1168 | "default_user": default_user |
|
1168 | 1169 | }[img_type] |
|
1169 | 1170 | |
|
1170 | 1171 | def get_img_data(self, svg_type=None): |
|
1171 | 1172 | """ |
|
1172 | 1173 | generates the svg metadata for image |
|
1173 | 1174 | """ |
|
1174 | 1175 | fonts = [ |
|
1175 | 1176 | '-apple-system', |
|
1176 | 1177 | 'BlinkMacSystemFont', |
|
1177 | 1178 | 'Segoe UI', |
|
1178 | 1179 | 'Roboto', |
|
1179 | 1180 | 'Oxygen-Sans', |
|
1180 | 1181 | 'Ubuntu', |
|
1181 | 1182 | 'Cantarell', |
|
1182 | 1183 | 'Helvetica Neue', |
|
1183 | 1184 | 'sans-serif' |
|
1184 | 1185 | ] |
|
1185 | 1186 | font_family = ','.join(fonts) |
|
1186 | 1187 | if svg_type: |
|
1187 | 1188 | return self.get_img_data_by_type(font_family, svg_type) |
|
1188 | 1189 | |
|
1189 | 1190 | initials = self.get_initials() |
|
1190 | 1191 | img_data = """ |
|
1191 | 1192 | <svg xmlns="http://www.w3.org/2000/svg" pointer-events="none" |
|
1192 | 1193 | width="{size}" height="{size}" |
|
1193 | 1194 | style="width: 100%; height: 100%; background-color: {background}" |
|
1194 | 1195 | viewBox="0 0 {size} {size}"> |
|
1195 | 1196 | <text text-anchor="middle" y="50%" x="50%" dy="0.35em" |
|
1196 | 1197 | pointer-events="auto" fill="{text_color}" |
|
1197 | 1198 | font-family="{font_family}" |
|
1198 | 1199 | style="font-weight: 400; font-size: {f_size}px;">{text} |
|
1199 | 1200 | </text> |
|
1200 | 1201 | </svg>""".format( |
|
1201 | 1202 | size=self.size, |
|
1202 | 1203 | f_size=self.size/2.05, # scale the text inside the box nicely |
|
1203 | 1204 | background=self.background, |
|
1204 | 1205 | text_color=self.text_color, |
|
1205 | 1206 | text=initials.upper(), |
|
1206 | 1207 | font_family=font_family) |
|
1207 | 1208 | |
|
1208 | 1209 | return img_data |
|
1209 | 1210 | |
|
1210 | 1211 | def generate_svg(self, svg_type=None): |
|
1211 | 1212 | img_data = self.get_img_data(svg_type) |
|
1212 | 1213 | return "data:image/svg+xml;base64,%s" % img_data.encode('base64') |
|
1213 | 1214 | |
|
1214 | 1215 | |
|
1215 | 1216 | def initials_gravatar(email_address, first_name, last_name, size=30): |
|
1216 | 1217 | svg_type = None |
|
1217 | 1218 | if email_address == User.DEFAULT_USER_EMAIL: |
|
1218 | 1219 | svg_type = 'default_user' |
|
1219 | 1220 | klass = InitialsGravatar(email_address, first_name, last_name, size) |
|
1220 | 1221 | return klass.generate_svg(svg_type=svg_type) |
|
1221 | 1222 | |
|
1222 | 1223 | |
|
1223 | 1224 | def gravatar_url(email_address, size=30, request=None): |
|
1224 | 1225 | request = get_current_request() |
|
1225 | 1226 | _use_gravatar = request.call_context.visual.use_gravatar |
|
1226 | 1227 | _gravatar_url = request.call_context.visual.gravatar_url |
|
1227 | 1228 | |
|
1228 | 1229 | _gravatar_url = _gravatar_url or User.DEFAULT_GRAVATAR_URL |
|
1229 | 1230 | |
|
1230 | 1231 | email_address = email_address or User.DEFAULT_USER_EMAIL |
|
1231 | 1232 | if isinstance(email_address, unicode): |
|
1232 | 1233 | # hashlib crashes on unicode items |
|
1233 | 1234 | email_address = safe_str(email_address) |
|
1234 | 1235 | |
|
1235 | 1236 | # empty email or default user |
|
1236 | 1237 | if not email_address or email_address == User.DEFAULT_USER_EMAIL: |
|
1237 | 1238 | return initials_gravatar(User.DEFAULT_USER_EMAIL, '', '', size=size) |
|
1238 | 1239 | |
|
1239 | 1240 | if _use_gravatar: |
|
1240 | 1241 | # TODO: Disuse pyramid thread locals. Think about another solution to |
|
1241 | 1242 | # get the host and schema here. |
|
1242 | 1243 | request = get_current_request() |
|
1243 | 1244 | tmpl = safe_str(_gravatar_url) |
|
1244 | 1245 | tmpl = tmpl.replace('{email}', email_address)\ |
|
1245 | 1246 | .replace('{md5email}', md5_safe(email_address.lower())) \ |
|
1246 | 1247 | .replace('{netloc}', request.host)\ |
|
1247 | 1248 | .replace('{scheme}', request.scheme)\ |
|
1248 | 1249 | .replace('{size}', safe_str(size)) |
|
1249 | 1250 | return tmpl |
|
1250 | 1251 | else: |
|
1251 | 1252 | return initials_gravatar(email_address, '', '', size=size) |
|
1252 | 1253 | |
|
1253 | 1254 | |
|
1254 | 1255 | class Page(_Page): |
|
1255 | 1256 | """ |
|
1256 | 1257 | Custom pager to match rendering style with paginator |
|
1257 | 1258 | """ |
|
1258 | 1259 | |
|
1259 | 1260 | def _get_pos(self, cur_page, max_page, items): |
|
1260 | 1261 | edge = (items / 2) + 1 |
|
1261 | 1262 | if (cur_page <= edge): |
|
1262 | 1263 | radius = max(items / 2, items - cur_page) |
|
1263 | 1264 | elif (max_page - cur_page) < edge: |
|
1264 | 1265 | radius = (items - 1) - (max_page - cur_page) |
|
1265 | 1266 | else: |
|
1266 | 1267 | radius = items / 2 |
|
1267 | 1268 | |
|
1268 | 1269 | left = max(1, (cur_page - (radius))) |
|
1269 | 1270 | right = min(max_page, cur_page + (radius)) |
|
1270 | 1271 | return left, cur_page, right |
|
1271 | 1272 | |
|
1272 | 1273 | def _range(self, regexp_match): |
|
1273 | 1274 | """ |
|
1274 | 1275 | Return range of linked pages (e.g. '1 2 [3] 4 5 6 7 8'). |
|
1275 | 1276 | |
|
1276 | 1277 | Arguments: |
|
1277 | 1278 | |
|
1278 | 1279 | regexp_match |
|
1279 | 1280 | A "re" (regular expressions) match object containing the |
|
1280 | 1281 | radius of linked pages around the current page in |
|
1281 | 1282 | regexp_match.group(1) as a string |
|
1282 | 1283 | |
|
1283 | 1284 | This function is supposed to be called as a callable in |
|
1284 | 1285 | re.sub. |
|
1285 | 1286 | |
|
1286 | 1287 | """ |
|
1287 | 1288 | radius = int(regexp_match.group(1)) |
|
1288 | 1289 | |
|
1289 | 1290 | # Compute the first and last page number within the radius |
|
1290 | 1291 | # e.g. '1 .. 5 6 [7] 8 9 .. 12' |
|
1291 | 1292 | # -> leftmost_page = 5 |
|
1292 | 1293 | # -> rightmost_page = 9 |
|
1293 | 1294 | leftmost_page, _cur, rightmost_page = self._get_pos(self.page, |
|
1294 | 1295 | self.last_page, |
|
1295 | 1296 | (radius * 2) + 1) |
|
1296 | 1297 | nav_items = [] |
|
1297 | 1298 | |
|
1298 | 1299 | # Create a link to the first page (unless we are on the first page |
|
1299 | 1300 | # or there would be no need to insert '..' spacers) |
|
1300 | 1301 | if self.page != self.first_page and self.first_page < leftmost_page: |
|
1301 | 1302 | nav_items.append(self._pagerlink(self.first_page, self.first_page)) |
|
1302 | 1303 | |
|
1303 | 1304 | # Insert dots if there are pages between the first page |
|
1304 | 1305 | # and the currently displayed page range |
|
1305 | 1306 | if leftmost_page - self.first_page > 1: |
|
1306 | 1307 | # Wrap in a SPAN tag if nolink_attr is set |
|
1307 | 1308 | text = '..' |
|
1308 | 1309 | if self.dotdot_attr: |
|
1309 | 1310 | text = HTML.span(c=text, **self.dotdot_attr) |
|
1310 | 1311 | nav_items.append(text) |
|
1311 | 1312 | |
|
1312 | 1313 | for thispage in xrange(leftmost_page, rightmost_page + 1): |
|
1313 | 1314 | # Hilight the current page number and do not use a link |
|
1314 | 1315 | if thispage == self.page: |
|
1315 | 1316 | text = '%s' % (thispage,) |
|
1316 | 1317 | # Wrap in a SPAN tag if nolink_attr is set |
|
1317 | 1318 | if self.curpage_attr: |
|
1318 | 1319 | text = HTML.span(c=text, **self.curpage_attr) |
|
1319 | 1320 | nav_items.append(text) |
|
1320 | 1321 | # Otherwise create just a link to that page |
|
1321 | 1322 | else: |
|
1322 | 1323 | text = '%s' % (thispage,) |
|
1323 | 1324 | nav_items.append(self._pagerlink(thispage, text)) |
|
1324 | 1325 | |
|
1325 | 1326 | # Insert dots if there are pages between the displayed |
|
1326 | 1327 | # page numbers and the end of the page range |
|
1327 | 1328 | if self.last_page - rightmost_page > 1: |
|
1328 | 1329 | text = '..' |
|
1329 | 1330 | # Wrap in a SPAN tag if nolink_attr is set |
|
1330 | 1331 | if self.dotdot_attr: |
|
1331 | 1332 | text = HTML.span(c=text, **self.dotdot_attr) |
|
1332 | 1333 | nav_items.append(text) |
|
1333 | 1334 | |
|
1334 | 1335 | # Create a link to the very last page (unless we are on the last |
|
1335 | 1336 | # page or there would be no need to insert '..' spacers) |
|
1336 | 1337 | if self.page != self.last_page and rightmost_page < self.last_page: |
|
1337 | 1338 | nav_items.append(self._pagerlink(self.last_page, self.last_page)) |
|
1338 | 1339 | |
|
1339 | 1340 | ## prerender links |
|
1340 | 1341 | #_page_link = url.current() |
|
1341 | 1342 | #nav_items.append(literal('<link rel="prerender" href="%s?page=%s">' % (_page_link, str(int(self.page)+1)))) |
|
1342 | 1343 | #nav_items.append(literal('<link rel="prefetch" href="%s?page=%s">' % (_page_link, str(int(self.page)+1)))) |
|
1343 | 1344 | return self.separator.join(nav_items) |
|
1344 | 1345 | |
|
1345 | 1346 | def pager(self, format='~2~', page_param='page', partial_param='partial', |
|
1346 | 1347 | show_if_single_page=False, separator=' ', onclick=None, |
|
1347 | 1348 | symbol_first='<<', symbol_last='>>', |
|
1348 | 1349 | symbol_previous='<', symbol_next='>', |
|
1349 | 1350 | link_attr={'class': 'pager_link', 'rel': 'prerender'}, |
|
1350 | 1351 | curpage_attr={'class': 'pager_curpage'}, |
|
1351 | 1352 | dotdot_attr={'class': 'pager_dotdot'}, **kwargs): |
|
1352 | 1353 | |
|
1353 | 1354 | self.curpage_attr = curpage_attr |
|
1354 | 1355 | self.separator = separator |
|
1355 | 1356 | self.pager_kwargs = kwargs |
|
1356 | 1357 | self.page_param = page_param |
|
1357 | 1358 | self.partial_param = partial_param |
|
1358 | 1359 | self.onclick = onclick |
|
1359 | 1360 | self.link_attr = link_attr |
|
1360 | 1361 | self.dotdot_attr = dotdot_attr |
|
1361 | 1362 | |
|
1362 | 1363 | # Don't show navigator if there is no more than one page |
|
1363 | 1364 | if self.page_count == 0 or (self.page_count == 1 and not show_if_single_page): |
|
1364 | 1365 | return '' |
|
1365 | 1366 | |
|
1366 | 1367 | from string import Template |
|
1367 | 1368 | # Replace ~...~ in token format by range of pages |
|
1368 | 1369 | result = re.sub(r'~(\d+)~', self._range, format) |
|
1369 | 1370 | |
|
1370 | 1371 | # Interpolate '%' variables |
|
1371 | 1372 | result = Template(result).safe_substitute({ |
|
1372 | 1373 | 'first_page': self.first_page, |
|
1373 | 1374 | 'last_page': self.last_page, |
|
1374 | 1375 | 'page': self.page, |
|
1375 | 1376 | 'page_count': self.page_count, |
|
1376 | 1377 | 'items_per_page': self.items_per_page, |
|
1377 | 1378 | 'first_item': self.first_item, |
|
1378 | 1379 | 'last_item': self.last_item, |
|
1379 | 1380 | 'item_count': self.item_count, |
|
1380 | 1381 | 'link_first': self.page > self.first_page and \ |
|
1381 | 1382 | self._pagerlink(self.first_page, symbol_first) or '', |
|
1382 | 1383 | 'link_last': self.page < self.last_page and \ |
|
1383 | 1384 | self._pagerlink(self.last_page, symbol_last) or '', |
|
1384 | 1385 | 'link_previous': self.previous_page and \ |
|
1385 | 1386 | self._pagerlink(self.previous_page, symbol_previous) \ |
|
1386 | 1387 | or HTML.span(symbol_previous, class_="pg-previous disabled"), |
|
1387 | 1388 | 'link_next': self.next_page and \ |
|
1388 | 1389 | self._pagerlink(self.next_page, symbol_next) \ |
|
1389 | 1390 | or HTML.span(symbol_next, class_="pg-next disabled") |
|
1390 | 1391 | }) |
|
1391 | 1392 | |
|
1392 | 1393 | return literal(result) |
|
1393 | 1394 | |
|
1394 | 1395 | |
|
1395 | 1396 | #============================================================================== |
|
1396 | 1397 | # REPO PAGER, PAGER FOR REPOSITORY |
|
1397 | 1398 | #============================================================================== |
|
1398 | 1399 | class RepoPage(Page): |
|
1399 | 1400 | |
|
1400 | 1401 | def __init__(self, collection, page=1, items_per_page=20, |
|
1401 | 1402 | item_count=None, url=None, **kwargs): |
|
1402 | 1403 | |
|
1403 | 1404 | """Create a "RepoPage" instance. special pager for paging |
|
1404 | 1405 | repository |
|
1405 | 1406 | """ |
|
1406 | 1407 | self._url_generator = url |
|
1407 | 1408 | |
|
1408 | 1409 | # Safe the kwargs class-wide so they can be used in the pager() method |
|
1409 | 1410 | self.kwargs = kwargs |
|
1410 | 1411 | |
|
1411 | 1412 | # Save a reference to the collection |
|
1412 | 1413 | self.original_collection = collection |
|
1413 | 1414 | |
|
1414 | 1415 | self.collection = collection |
|
1415 | 1416 | |
|
1416 | 1417 | # The self.page is the number of the current page. |
|
1417 | 1418 | # The first page has the number 1! |
|
1418 | 1419 | try: |
|
1419 | 1420 | self.page = int(page) # make it int() if we get it as a string |
|
1420 | 1421 | except (ValueError, TypeError): |
|
1421 | 1422 | self.page = 1 |
|
1422 | 1423 | |
|
1423 | 1424 | self.items_per_page = items_per_page |
|
1424 | 1425 | |
|
1425 | 1426 | # Unless the user tells us how many items the collections has |
|
1426 | 1427 | # we calculate that ourselves. |
|
1427 | 1428 | if item_count is not None: |
|
1428 | 1429 | self.item_count = item_count |
|
1429 | 1430 | else: |
|
1430 | 1431 | self.item_count = len(self.collection) |
|
1431 | 1432 | |
|
1432 | 1433 | # Compute the number of the first and last available page |
|
1433 | 1434 | if self.item_count > 0: |
|
1434 | 1435 | self.first_page = 1 |
|
1435 | 1436 | self.page_count = int(math.ceil(float(self.item_count) / |
|
1436 | 1437 | self.items_per_page)) |
|
1437 | 1438 | self.last_page = self.first_page + self.page_count - 1 |
|
1438 | 1439 | |
|
1439 | 1440 | # Make sure that the requested page number is the range of |
|
1440 | 1441 | # valid pages |
|
1441 | 1442 | if self.page > self.last_page: |
|
1442 | 1443 | self.page = self.last_page |
|
1443 | 1444 | elif self.page < self.first_page: |
|
1444 | 1445 | self.page = self.first_page |
|
1445 | 1446 | |
|
1446 | 1447 | # Note: the number of items on this page can be less than |
|
1447 | 1448 | # items_per_page if the last page is not full |
|
1448 | 1449 | self.first_item = max(0, (self.item_count) - (self.page * |
|
1449 | 1450 | items_per_page)) |
|
1450 | 1451 | self.last_item = ((self.item_count - 1) - items_per_page * |
|
1451 | 1452 | (self.page - 1)) |
|
1452 | 1453 | |
|
1453 | 1454 | self.items = list(self.collection[self.first_item:self.last_item + 1]) |
|
1454 | 1455 | |
|
1455 | 1456 | # Links to previous and next page |
|
1456 | 1457 | if self.page > self.first_page: |
|
1457 | 1458 | self.previous_page = self.page - 1 |
|
1458 | 1459 | else: |
|
1459 | 1460 | self.previous_page = None |
|
1460 | 1461 | |
|
1461 | 1462 | if self.page < self.last_page: |
|
1462 | 1463 | self.next_page = self.page + 1 |
|
1463 | 1464 | else: |
|
1464 | 1465 | self.next_page = None |
|
1465 | 1466 | |
|
1466 | 1467 | # No items available |
|
1467 | 1468 | else: |
|
1468 | 1469 | self.first_page = None |
|
1469 | 1470 | self.page_count = 0 |
|
1470 | 1471 | self.last_page = None |
|
1471 | 1472 | self.first_item = None |
|
1472 | 1473 | self.last_item = None |
|
1473 | 1474 | self.previous_page = None |
|
1474 | 1475 | self.next_page = None |
|
1475 | 1476 | self.items = [] |
|
1476 | 1477 | |
|
1477 | 1478 | # This is a subclass of the 'list' type. Initialise the list now. |
|
1478 | 1479 | list.__init__(self, reversed(self.items)) |
|
1479 | 1480 | |
|
1480 | 1481 | |
|
1481 | 1482 | def breadcrumb_repo_link(repo): |
|
1482 | 1483 | """ |
|
1483 | 1484 | Makes a breadcrumbs path link to repo |
|
1484 | 1485 | |
|
1485 | 1486 | ex:: |
|
1486 | 1487 | group >> subgroup >> repo |
|
1487 | 1488 | |
|
1488 | 1489 | :param repo: a Repository instance |
|
1489 | 1490 | """ |
|
1490 | 1491 | |
|
1491 | 1492 | path = [ |
|
1492 | 1493 | link_to(group.name, route_path('repo_group_home', repo_group_name=group.group_name), |
|
1493 | 1494 | title='last change:{}'.format(format_date(group.last_commit_change))) |
|
1494 | 1495 | for group in repo.groups_with_parents |
|
1495 | 1496 | ] + [ |
|
1496 | 1497 | link_to(repo.just_name, route_path('repo_summary', repo_name=repo.repo_name), |
|
1497 | 1498 | title='last change:{}'.format(format_date(repo.last_commit_change))) |
|
1498 | 1499 | ] |
|
1499 | 1500 | |
|
1500 | 1501 | return literal(' » '.join(path)) |
|
1501 | 1502 | |
|
1502 | 1503 | |
|
1503 | 1504 | def breadcrumb_repo_group_link(repo_group): |
|
1504 | 1505 | """ |
|
1505 | 1506 | Makes a breadcrumbs path link to repo |
|
1506 | 1507 | |
|
1507 | 1508 | ex:: |
|
1508 | 1509 | group >> subgroup |
|
1509 | 1510 | |
|
1510 | 1511 | :param repo_group: a Repository Group instance |
|
1511 | 1512 | """ |
|
1512 | 1513 | |
|
1513 | 1514 | path = [ |
|
1514 | 1515 | link_to(group.name, |
|
1515 | 1516 | route_path('repo_group_home', repo_group_name=group.group_name), |
|
1516 | 1517 | title='last change:{}'.format(format_date(group.last_commit_change))) |
|
1517 | 1518 | for group in repo_group.parents |
|
1518 | 1519 | ] + [ |
|
1519 | 1520 | link_to(repo_group.name, |
|
1520 | 1521 | route_path('repo_group_home', repo_group_name=repo_group.group_name), |
|
1521 | 1522 | title='last change:{}'.format(format_date(repo_group.last_commit_change))) |
|
1522 | 1523 | ] |
|
1523 | 1524 | |
|
1524 | 1525 | return literal(' » '.join(path)) |
|
1525 | 1526 | |
|
1526 | 1527 | |
|
1527 | 1528 | def format_byte_size_binary(file_size): |
|
1528 | 1529 | """ |
|
1529 | 1530 | Formats file/folder sizes to standard. |
|
1530 | 1531 | """ |
|
1531 | 1532 | if file_size is None: |
|
1532 | 1533 | file_size = 0 |
|
1533 | 1534 | |
|
1534 | 1535 | formatted_size = format_byte_size(file_size, binary=True) |
|
1535 | 1536 | return formatted_size |
|
1536 | 1537 | |
|
1537 | 1538 | |
|
1538 | 1539 | def urlify_text(text_, safe=True): |
|
1539 | 1540 | """ |
|
1540 | 1541 | Extrac urls from text and make html links out of them |
|
1541 | 1542 | |
|
1542 | 1543 | :param text_: |
|
1543 | 1544 | """ |
|
1544 | 1545 | |
|
1545 | 1546 | url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@#.&+]''' |
|
1546 | 1547 | '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''') |
|
1547 | 1548 | |
|
1548 | 1549 | def url_func(match_obj): |
|
1549 | 1550 | url_full = match_obj.groups()[0] |
|
1550 | 1551 | return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full}) |
|
1551 | 1552 | _newtext = url_pat.sub(url_func, text_) |
|
1552 | 1553 | if safe: |
|
1553 | 1554 | return literal(_newtext) |
|
1554 | 1555 | return _newtext |
|
1555 | 1556 | |
|
1556 | 1557 | |
|
1557 | 1558 | def urlify_commits(text_, repository): |
|
1558 | 1559 | """ |
|
1559 | 1560 | Extract commit ids from text and make link from them |
|
1560 | 1561 | |
|
1561 | 1562 | :param text_: |
|
1562 | 1563 | :param repository: repo name to build the URL with |
|
1563 | 1564 | """ |
|
1564 | 1565 | |
|
1565 | 1566 | URL_PAT = re.compile(r'(^|\s)([0-9a-fA-F]{12,40})($|\s)') |
|
1566 | 1567 | |
|
1567 | 1568 | def url_func(match_obj): |
|
1568 | 1569 | commit_id = match_obj.groups()[1] |
|
1569 | 1570 | pref = match_obj.groups()[0] |
|
1570 | 1571 | suf = match_obj.groups()[2] |
|
1571 | 1572 | |
|
1572 | 1573 | tmpl = ( |
|
1573 | 1574 | '%(pref)s<a class="%(cls)s" href="%(url)s">' |
|
1574 | 1575 | '%(commit_id)s</a>%(suf)s' |
|
1575 | 1576 | ) |
|
1576 | 1577 | return tmpl % { |
|
1577 | 1578 | 'pref': pref, |
|
1578 | 1579 | 'cls': 'revision-link', |
|
1579 | 1580 | 'url': route_url('repo_commit', repo_name=repository, commit_id=commit_id), |
|
1580 | 1581 | 'commit_id': commit_id, |
|
1581 | 1582 | 'suf': suf |
|
1582 | 1583 | } |
|
1583 | 1584 | |
|
1584 | 1585 | newtext = URL_PAT.sub(url_func, text_) |
|
1585 | 1586 | |
|
1586 | 1587 | return newtext |
|
1587 | 1588 | |
|
1588 | 1589 | |
|
1589 | 1590 | def _process_url_func(match_obj, repo_name, uid, entry, |
|
1590 | 1591 | return_raw_data=False, link_format='html'): |
|
1591 | 1592 | pref = '' |
|
1592 | 1593 | if match_obj.group().startswith(' '): |
|
1593 | 1594 | pref = ' ' |
|
1594 | 1595 | |
|
1595 | 1596 | issue_id = ''.join(match_obj.groups()) |
|
1596 | 1597 | |
|
1597 | 1598 | if link_format == 'html': |
|
1598 | 1599 | tmpl = ( |
|
1599 | 1600 | '%(pref)s<a class="%(cls)s" href="%(url)s">' |
|
1600 | 1601 | '%(issue-prefix)s%(id-repr)s' |
|
1601 | 1602 | '</a>') |
|
1602 | 1603 | elif link_format == 'rst': |
|
1603 | 1604 | tmpl = '`%(issue-prefix)s%(id-repr)s <%(url)s>`_' |
|
1604 | 1605 | elif link_format == 'markdown': |
|
1605 | 1606 | tmpl = '[%(issue-prefix)s%(id-repr)s](%(url)s)' |
|
1606 | 1607 | else: |
|
1607 | 1608 | raise ValueError('Bad link_format:{}'.format(link_format)) |
|
1608 | 1609 | |
|
1609 | 1610 | (repo_name_cleaned, |
|
1610 | 1611 | parent_group_name) = RepoGroupModel()._get_group_name_and_parent(repo_name) |
|
1611 | 1612 | |
|
1612 | 1613 | # variables replacement |
|
1613 | 1614 | named_vars = { |
|
1614 | 1615 | 'id': issue_id, |
|
1615 | 1616 | 'repo': repo_name, |
|
1616 | 1617 | 'repo_name': repo_name_cleaned, |
|
1617 | 1618 | 'group_name': parent_group_name |
|
1618 | 1619 | } |
|
1619 | 1620 | # named regex variables |
|
1620 | 1621 | named_vars.update(match_obj.groupdict()) |
|
1621 | 1622 | _url = string.Template(entry['url']).safe_substitute(**named_vars) |
|
1622 | 1623 | |
|
1623 | 1624 | def quote_cleaner(input_str): |
|
1624 | 1625 | """Remove quotes as it's HTML""" |
|
1625 | 1626 | return input_str.replace('"', '') |
|
1626 | 1627 | |
|
1627 | 1628 | data = { |
|
1628 | 1629 | 'pref': pref, |
|
1629 | 1630 | 'cls': quote_cleaner('issue-tracker-link'), |
|
1630 | 1631 | 'url': quote_cleaner(_url), |
|
1631 | 1632 | 'id-repr': issue_id, |
|
1632 | 1633 | 'issue-prefix': entry['pref'], |
|
1633 | 1634 | 'serv': entry['url'], |
|
1634 | 1635 | } |
|
1635 | 1636 | if return_raw_data: |
|
1636 | 1637 | return { |
|
1637 | 1638 | 'id': issue_id, |
|
1638 | 1639 | 'url': _url |
|
1639 | 1640 | } |
|
1640 | 1641 | return tmpl % data |
|
1641 | 1642 | |
|
1642 | 1643 | |
|
1643 | 1644 | def get_active_pattern_entries(repo_name): |
|
1644 | 1645 | repo = None |
|
1645 | 1646 | if repo_name: |
|
1646 | 1647 | # Retrieving repo_name to avoid invalid repo_name to explode on |
|
1647 | 1648 | # IssueTrackerSettingsModel but still passing invalid name further down |
|
1648 | 1649 | repo = Repository.get_by_repo_name(repo_name, cache=True) |
|
1649 | 1650 | |
|
1650 | 1651 | settings_model = IssueTrackerSettingsModel(repo=repo) |
|
1651 | 1652 | active_entries = settings_model.get_settings(cache=True) |
|
1652 | 1653 | return active_entries |
|
1653 | 1654 | |
|
1654 | 1655 | |
|
1655 | 1656 | def process_patterns(text_string, repo_name, link_format='html', active_entries=None): |
|
1656 | 1657 | |
|
1657 | 1658 | allowed_formats = ['html', 'rst', 'markdown'] |
|
1658 | 1659 | if link_format not in allowed_formats: |
|
1659 | 1660 | raise ValueError('Link format can be only one of:{} got {}'.format( |
|
1660 | 1661 | allowed_formats, link_format)) |
|
1661 | 1662 | |
|
1662 | 1663 | active_entries = active_entries or get_active_pattern_entries(repo_name) |
|
1663 | 1664 | issues_data = [] |
|
1664 | 1665 | newtext = text_string |
|
1665 | 1666 | |
|
1666 | 1667 | for uid, entry in active_entries.items(): |
|
1667 | 1668 | log.debug('found issue tracker entry with uid %s', uid) |
|
1668 | 1669 | |
|
1669 | 1670 | if not (entry['pat'] and entry['url']): |
|
1670 | 1671 | log.debug('skipping due to missing data') |
|
1671 | 1672 | continue |
|
1672 | 1673 | |
|
1673 | 1674 | log.debug('issue tracker entry: uid: `%s` PAT:%s URL:%s PREFIX:%s', |
|
1674 | 1675 | uid, entry['pat'], entry['url'], entry['pref']) |
|
1675 | 1676 | |
|
1676 | 1677 | try: |
|
1677 | 1678 | pattern = re.compile(r'%s' % entry['pat']) |
|
1678 | 1679 | except re.error: |
|
1679 | 1680 | log.exception( |
|
1680 | 1681 | 'issue tracker pattern: `%s` failed to compile', |
|
1681 | 1682 | entry['pat']) |
|
1682 | 1683 | continue |
|
1683 | 1684 | |
|
1684 | 1685 | data_func = partial( |
|
1685 | 1686 | _process_url_func, repo_name=repo_name, entry=entry, uid=uid, |
|
1686 | 1687 | return_raw_data=True) |
|
1687 | 1688 | |
|
1688 | 1689 | for match_obj in pattern.finditer(text_string): |
|
1689 | 1690 | issues_data.append(data_func(match_obj)) |
|
1690 | 1691 | |
|
1691 | 1692 | url_func = partial( |
|
1692 | 1693 | _process_url_func, repo_name=repo_name, entry=entry, uid=uid, |
|
1693 | 1694 | link_format=link_format) |
|
1694 | 1695 | |
|
1695 | 1696 | newtext = pattern.sub(url_func, newtext) |
|
1696 | 1697 | log.debug('processed prefix:uid `%s`', uid) |
|
1697 | 1698 | |
|
1698 | 1699 | return newtext, issues_data |
|
1699 | 1700 | |
|
1700 | 1701 | |
|
1701 | 1702 | def urlify_commit_message(commit_text, repository=None, active_pattern_entries=None): |
|
1702 | 1703 | """ |
|
1703 | 1704 | Parses given text message and makes proper links. |
|
1704 | 1705 | issues are linked to given issue-server, and rest is a commit link |
|
1705 | 1706 | |
|
1706 | 1707 | :param commit_text: |
|
1707 | 1708 | :param repository: |
|
1708 | 1709 | """ |
|
1709 | 1710 | def escaper(string): |
|
1710 | 1711 | return string.replace('<', '<').replace('>', '>') |
|
1711 | 1712 | |
|
1712 | 1713 | newtext = escaper(commit_text) |
|
1713 | 1714 | |
|
1714 | 1715 | # extract http/https links and make them real urls |
|
1715 | 1716 | newtext = urlify_text(newtext, safe=False) |
|
1716 | 1717 | |
|
1717 | 1718 | # urlify commits - extract commit ids and make link out of them, if we have |
|
1718 | 1719 | # the scope of repository present. |
|
1719 | 1720 | if repository: |
|
1720 | 1721 | newtext = urlify_commits(newtext, repository) |
|
1721 | 1722 | |
|
1722 | 1723 | # process issue tracker patterns |
|
1723 | 1724 | newtext, issues = process_patterns(newtext, repository or '', |
|
1724 | 1725 | active_entries=active_pattern_entries) |
|
1725 | 1726 | |
|
1726 | 1727 | return literal(newtext) |
|
1727 | 1728 | |
|
1728 | 1729 | |
|
1729 | 1730 | def render_binary(repo_name, file_obj): |
|
1730 | 1731 | """ |
|
1731 | 1732 | Choose how to render a binary file |
|
1732 | 1733 | """ |
|
1733 | 1734 | |
|
1734 | 1735 | filename = file_obj.name |
|
1735 | 1736 | |
|
1736 | 1737 | # images |
|
1737 | 1738 | for ext in ['*.png', '*.jpg', '*.ico', '*.gif']: |
|
1738 | 1739 | if fnmatch.fnmatch(filename, pat=ext): |
|
1739 | 1740 | alt = escape(filename) |
|
1740 | 1741 | src = route_path( |
|
1741 | 1742 | 'repo_file_raw', repo_name=repo_name, |
|
1742 | 1743 | commit_id=file_obj.commit.raw_id, |
|
1743 | 1744 | f_path=file_obj.path) |
|
1744 | 1745 | return literal( |
|
1745 | 1746 | '<img class="rendered-binary" alt="{}" src="{}">'.format(alt, src)) |
|
1746 | 1747 | |
|
1747 | 1748 | |
|
1748 | 1749 | def renderer_from_filename(filename, exclude=None): |
|
1749 | 1750 | """ |
|
1750 | 1751 | choose a renderer based on filename, this works only for text based files |
|
1751 | 1752 | """ |
|
1752 | 1753 | |
|
1753 | 1754 | # ipython |
|
1754 | 1755 | for ext in ['*.ipynb']: |
|
1755 | 1756 | if fnmatch.fnmatch(filename, pat=ext): |
|
1756 | 1757 | return 'jupyter' |
|
1757 | 1758 | |
|
1758 | 1759 | is_markup = MarkupRenderer.renderer_from_filename(filename, exclude=exclude) |
|
1759 | 1760 | if is_markup: |
|
1760 | 1761 | return is_markup |
|
1761 | 1762 | return None |
|
1762 | 1763 | |
|
1763 | 1764 | |
|
1764 | 1765 | def render(source, renderer='rst', mentions=False, relative_urls=None, |
|
1765 | 1766 | repo_name=None): |
|
1766 | 1767 | |
|
1767 | 1768 | def maybe_convert_relative_links(html_source): |
|
1768 | 1769 | if relative_urls: |
|
1769 | 1770 | return relative_links(html_source, relative_urls) |
|
1770 | 1771 | return html_source |
|
1771 | 1772 | |
|
1772 | 1773 | if renderer == 'plain': |
|
1773 | 1774 | return literal( |
|
1774 | 1775 | MarkupRenderer.plain(source, leading_newline=False)) |
|
1775 | 1776 | |
|
1776 | 1777 | elif renderer == 'rst': |
|
1777 | 1778 | if repo_name: |
|
1778 | 1779 | # process patterns on comments if we pass in repo name |
|
1779 | 1780 | source, issues = process_patterns( |
|
1780 | 1781 | source, repo_name, link_format='rst') |
|
1781 | 1782 | |
|
1782 | 1783 | return literal( |
|
1783 | 1784 | '<div class="rst-block">%s</div>' % |
|
1784 | 1785 | maybe_convert_relative_links( |
|
1785 | 1786 | MarkupRenderer.rst(source, mentions=mentions))) |
|
1786 | 1787 | |
|
1787 | 1788 | elif renderer == 'markdown': |
|
1788 | 1789 | if repo_name: |
|
1789 | 1790 | # process patterns on comments if we pass in repo name |
|
1790 | 1791 | source, issues = process_patterns( |
|
1791 | 1792 | source, repo_name, link_format='markdown') |
|
1792 | 1793 | |
|
1793 | 1794 | return literal( |
|
1794 | 1795 | '<div class="markdown-block">%s</div>' % |
|
1795 | 1796 | maybe_convert_relative_links( |
|
1796 | 1797 | MarkupRenderer.markdown(source, flavored=True, |
|
1797 | 1798 | mentions=mentions))) |
|
1798 | 1799 | |
|
1799 | 1800 | elif renderer == 'jupyter': |
|
1800 | 1801 | return literal( |
|
1801 | 1802 | '<div class="ipynb">%s</div>' % |
|
1802 | 1803 | maybe_convert_relative_links( |
|
1803 | 1804 | MarkupRenderer.jupyter(source))) |
|
1804 | 1805 | |
|
1805 | 1806 | # None means just show the file-source |
|
1806 | 1807 | return None |
|
1807 | 1808 | |
|
1808 | 1809 | |
|
1809 | 1810 | def commit_status(repo, commit_id): |
|
1810 | 1811 | return ChangesetStatusModel().get_status(repo, commit_id) |
|
1811 | 1812 | |
|
1812 | 1813 | |
|
1813 | 1814 | def commit_status_lbl(commit_status): |
|
1814 | 1815 | return dict(ChangesetStatus.STATUSES).get(commit_status) |
|
1815 | 1816 | |
|
1816 | 1817 | |
|
1817 | 1818 | def commit_time(repo_name, commit_id): |
|
1818 | 1819 | repo = Repository.get_by_repo_name(repo_name) |
|
1819 | 1820 | commit = repo.get_commit(commit_id=commit_id) |
|
1820 | 1821 | return commit.date |
|
1821 | 1822 | |
|
1822 | 1823 | |
|
1823 | 1824 | def get_permission_name(key): |
|
1824 | 1825 | return dict(Permission.PERMS).get(key) |
|
1825 | 1826 | |
|
1826 | 1827 | |
|
1827 | 1828 | def journal_filter_help(request): |
|
1828 | 1829 | _ = request.translate |
|
1829 | 1830 | from rhodecode.lib.audit_logger import ACTIONS |
|
1830 | 1831 | actions = '\n'.join(textwrap.wrap(', '.join(sorted(ACTIONS.keys())), 80)) |
|
1831 | 1832 | |
|
1832 | 1833 | return _( |
|
1833 | 1834 | 'Example filter terms:\n' + |
|
1834 | 1835 | ' repository:vcs\n' + |
|
1835 | 1836 | ' username:marcin\n' + |
|
1836 | 1837 | ' username:(NOT marcin)\n' + |
|
1837 | 1838 | ' action:*push*\n' + |
|
1838 | 1839 | ' ip:127.0.0.1\n' + |
|
1839 | 1840 | ' date:20120101\n' + |
|
1840 | 1841 | ' date:[20120101100000 TO 20120102]\n' + |
|
1841 | 1842 | '\n' + |
|
1842 | 1843 | 'Actions: {actions}\n' + |
|
1843 | 1844 | '\n' + |
|
1844 | 1845 | 'Generate wildcards using \'*\' character:\n' + |
|
1845 | 1846 | ' "repository:vcs*" - search everything starting with \'vcs\'\n' + |
|
1846 | 1847 | ' "repository:*vcs*" - search for repository containing \'vcs\'\n' + |
|
1847 | 1848 | '\n' + |
|
1848 | 1849 | 'Optional AND / OR operators in queries\n' + |
|
1849 | 1850 | ' "repository:vcs OR repository:test"\n' + |
|
1850 | 1851 | ' "username:test AND repository:test*"\n' |
|
1851 | 1852 | ).format(actions=actions) |
|
1852 | 1853 | |
|
1853 | 1854 | |
|
1854 | 1855 | def not_mapped_error(repo_name): |
|
1855 | 1856 | from rhodecode.translation import _ |
|
1856 | 1857 | flash(_('%s repository is not mapped to db perhaps' |
|
1857 | 1858 | ' it was created or renamed from the filesystem' |
|
1858 | 1859 | ' please run the application again' |
|
1859 | 1860 | ' in order to rescan repositories') % repo_name, category='error') |
|
1860 | 1861 | |
|
1861 | 1862 | |
|
1862 | 1863 | def ip_range(ip_addr): |
|
1863 | 1864 | from rhodecode.model.db import UserIpMap |
|
1864 | 1865 | s, e = UserIpMap._get_ip_range(ip_addr) |
|
1865 | 1866 | return '%s - %s' % (s, e) |
|
1866 | 1867 | |
|
1867 | 1868 | |
|
1868 | 1869 | def form(url, method='post', needs_csrf_token=True, **attrs): |
|
1869 | 1870 | """Wrapper around webhelpers.tags.form to prevent CSRF attacks.""" |
|
1870 | 1871 | if method.lower() != 'get' and needs_csrf_token: |
|
1871 | 1872 | raise Exception( |
|
1872 | 1873 | 'Forms to POST/PUT/DELETE endpoints should have (in general) a ' + |
|
1873 | 1874 | 'CSRF token. If the endpoint does not require such token you can ' + |
|
1874 | 1875 | 'explicitly set the parameter needs_csrf_token to false.') |
|
1875 | 1876 | |
|
1876 | 1877 | return wh_form(url, method=method, **attrs) |
|
1877 | 1878 | |
|
1878 | 1879 | |
|
1879 | 1880 | def secure_form(form_url, method="POST", multipart=False, **attrs): |
|
1880 | 1881 | """Start a form tag that points the action to an url. This |
|
1881 | 1882 | form tag will also include the hidden field containing |
|
1882 | 1883 | the auth token. |
|
1883 | 1884 | |
|
1884 | 1885 | The url options should be given either as a string, or as a |
|
1885 | 1886 | ``url()`` function. The method for the form defaults to POST. |
|
1886 | 1887 | |
|
1887 | 1888 | Options: |
|
1888 | 1889 | |
|
1889 | 1890 | ``multipart`` |
|
1890 | 1891 | If set to True, the enctype is set to "multipart/form-data". |
|
1891 | 1892 | ``method`` |
|
1892 | 1893 | The method to use when submitting the form, usually either |
|
1893 | 1894 | "GET" or "POST". If "PUT", "DELETE", or another verb is used, a |
|
1894 | 1895 | hidden input with name _method is added to simulate the verb |
|
1895 | 1896 | over POST. |
|
1896 | 1897 | |
|
1897 | 1898 | """ |
|
1898 | 1899 | from webhelpers.pylonslib.secure_form import insecure_form |
|
1899 | 1900 | |
|
1900 | 1901 | if 'request' in attrs: |
|
1901 | 1902 | session = attrs['request'].session |
|
1902 | 1903 | del attrs['request'] |
|
1903 | 1904 | else: |
|
1904 | 1905 | raise ValueError( |
|
1905 | 1906 | 'Calling this form requires request= to be passed as argument') |
|
1906 | 1907 | |
|
1907 | 1908 | form = insecure_form(form_url, method, multipart, **attrs) |
|
1908 | 1909 | token = literal( |
|
1909 | 1910 | '<input type="hidden" id="{}" name="{}" value="{}">'.format( |
|
1910 | 1911 | csrf_token_key, csrf_token_key, get_csrf_token(session))) |
|
1911 | 1912 | |
|
1912 | 1913 | return literal("%s\n%s" % (form, token)) |
|
1913 | 1914 | |
|
1914 | 1915 | |
|
1915 | 1916 | def dropdownmenu(name, selected, options, enable_filter=False, **attrs): |
|
1916 | 1917 | select_html = select(name, selected, options, **attrs) |
|
1917 | 1918 | select2 = """ |
|
1918 | 1919 | <script> |
|
1919 | 1920 | $(document).ready(function() { |
|
1920 | 1921 | $('#%s').select2({ |
|
1921 | 1922 | containerCssClass: 'drop-menu', |
|
1922 | 1923 | dropdownCssClass: 'drop-menu-dropdown', |
|
1923 | 1924 | dropdownAutoWidth: true%s |
|
1924 | 1925 | }); |
|
1925 | 1926 | }); |
|
1926 | 1927 | </script> |
|
1927 | 1928 | """ |
|
1928 | 1929 | filter_option = """, |
|
1929 | 1930 | minimumResultsForSearch: -1 |
|
1930 | 1931 | """ |
|
1931 | 1932 | input_id = attrs.get('id') or name |
|
1932 | 1933 | filter_enabled = "" if enable_filter else filter_option |
|
1933 | 1934 | select_script = literal(select2 % (input_id, filter_enabled)) |
|
1934 | 1935 | |
|
1935 | 1936 | return literal(select_html+select_script) |
|
1936 | 1937 | |
|
1937 | 1938 | |
|
1938 | 1939 | def get_visual_attr(tmpl_context_var, attr_name): |
|
1939 | 1940 | """ |
|
1940 | 1941 | A safe way to get a variable from visual variable of template context |
|
1941 | 1942 | |
|
1942 | 1943 | :param tmpl_context_var: instance of tmpl_context, usually present as `c` |
|
1943 | 1944 | :param attr_name: name of the attribute we fetch from the c.visual |
|
1944 | 1945 | """ |
|
1945 | 1946 | visual = getattr(tmpl_context_var, 'visual', None) |
|
1946 | 1947 | if not visual: |
|
1947 | 1948 | return |
|
1948 | 1949 | else: |
|
1949 | 1950 | return getattr(visual, attr_name, None) |
|
1950 | 1951 | |
|
1951 | 1952 | |
|
1952 | 1953 | def get_last_path_part(file_node): |
|
1953 | 1954 | if not file_node.path: |
|
1954 | 1955 | return u'/' |
|
1955 | 1956 | |
|
1956 | 1957 | path = safe_unicode(file_node.path.split('/')[-1]) |
|
1957 | 1958 | return u'../' + path |
|
1958 | 1959 | |
|
1959 | 1960 | |
|
1960 | 1961 | def route_url(*args, **kwargs): |
|
1961 | 1962 | """ |
|
1962 | 1963 | Wrapper around pyramids `route_url` (fully qualified url) function. |
|
1963 | 1964 | """ |
|
1964 | 1965 | req = get_current_request() |
|
1965 | 1966 | return req.route_url(*args, **kwargs) |
|
1966 | 1967 | |
|
1967 | 1968 | |
|
1968 | 1969 | def route_path(*args, **kwargs): |
|
1969 | 1970 | """ |
|
1970 | 1971 | Wrapper around pyramids `route_path` function. |
|
1971 | 1972 | """ |
|
1972 | 1973 | req = get_current_request() |
|
1973 | 1974 | return req.route_path(*args, **kwargs) |
|
1974 | 1975 | |
|
1975 | 1976 | |
|
1976 | 1977 | def route_path_or_none(*args, **kwargs): |
|
1977 | 1978 | try: |
|
1978 | 1979 | return route_path(*args, **kwargs) |
|
1979 | 1980 | except KeyError: |
|
1980 | 1981 | return None |
|
1981 | 1982 | |
|
1982 | 1983 | |
|
1983 | 1984 | def current_route_path(request, **kw): |
|
1984 | 1985 | new_args = request.GET.mixed() |
|
1985 | 1986 | new_args.update(kw) |
|
1986 | 1987 | return request.current_route_path(_query=new_args) |
|
1987 | 1988 | |
|
1988 | 1989 | |
|
1989 | 1990 | def api_call_example(method, args): |
|
1990 | 1991 | """ |
|
1991 | 1992 | Generates an API call example via CURL |
|
1992 | 1993 | """ |
|
1993 | 1994 | args_json = json.dumps(OrderedDict([ |
|
1994 | 1995 | ('id', 1), |
|
1995 | 1996 | ('auth_token', 'SECRET'), |
|
1996 | 1997 | ('method', method), |
|
1997 | 1998 | ('args', args) |
|
1998 | 1999 | ])) |
|
1999 | 2000 | return literal( |
|
2000 | 2001 | "curl {api_url} -X POST -H 'content-type:text/plain' --data-binary '{data}'" |
|
2001 | 2002 | "<br/><br/>SECRET can be found in <a href=\"{token_url}\">auth-tokens</a> page, " |
|
2002 | 2003 | "and needs to be of `api calls` role." |
|
2003 | 2004 | .format( |
|
2004 | 2005 | api_url=route_url('apiv2'), |
|
2005 | 2006 | token_url=route_url('my_account_auth_tokens'), |
|
2006 | 2007 | data=args_json)) |
|
2007 | 2008 | |
|
2008 | 2009 | |
|
2009 | 2010 | def notification_description(notification, request): |
|
2010 | 2011 | """ |
|
2011 | 2012 | Generate notification human readable description based on notification type |
|
2012 | 2013 | """ |
|
2013 | 2014 | from rhodecode.model.notification import NotificationModel |
|
2014 | 2015 | return NotificationModel().make_description( |
|
2015 | 2016 | notification, translate=request.translate) |
|
2016 | 2017 | |
|
2017 | 2018 | |
|
2018 | 2019 | def go_import_header(request, db_repo=None): |
|
2019 | 2020 | """ |
|
2020 | 2021 | Creates a header for go-import functionality in Go Lang |
|
2021 | 2022 | """ |
|
2022 | 2023 | |
|
2023 | 2024 | if not db_repo: |
|
2024 | 2025 | return |
|
2025 | 2026 | if 'go-get' not in request.GET: |
|
2026 | 2027 | return |
|
2027 | 2028 | |
|
2028 | 2029 | clone_url = db_repo.clone_url() |
|
2029 | 2030 | prefix = re.split(r'^https?:\/\/', clone_url)[-1] |
|
2030 | 2031 | # we have a repo and go-get flag, |
|
2031 | 2032 | return literal('<meta name="go-import" content="{} {} {}">'.format( |
|
2032 | 2033 | prefix, db_repo.repo_type, clone_url)) |
|
2033 | 2034 | |
|
2034 | 2035 | |
|
2035 | 2036 | def reviewer_as_json(*args, **kwargs): |
|
2036 | 2037 | from rhodecode.apps.repository.utils import reviewer_as_json as _reviewer_as_json |
|
2037 | 2038 | return _reviewer_as_json(*args, **kwargs) |
|
2038 | 2039 | |
|
2039 | 2040 | |
|
2040 | 2041 | def get_repo_view_type(request): |
|
2041 | 2042 | route_name = request.matched_route.name |
|
2042 | 2043 | route_to_view_type = { |
|
2043 | 2044 | 'repo_changelog': 'changelog', |
|
2044 | 2045 | 'repo_files': 'files', |
|
2045 | 2046 | 'repo_summary': 'summary', |
|
2046 | 2047 | 'repo_commit': 'commit' |
|
2047 | 2048 | } |
|
2048 | 2049 | |
|
2049 | 2050 | return route_to_view_type.get(route_name) |
@@ -1,5138 +1,5149 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2019 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | """ |
|
22 | 22 | Database Models for RhodeCode Enterprise |
|
23 | 23 | """ |
|
24 | 24 | |
|
25 | 25 | import re |
|
26 | 26 | import os |
|
27 | 27 | import time |
|
28 | 28 | import string |
|
29 | 29 | import hashlib |
|
30 | 30 | import logging |
|
31 | 31 | import datetime |
|
32 | 32 | import warnings |
|
33 | 33 | import ipaddress |
|
34 | 34 | import functools |
|
35 | 35 | import traceback |
|
36 | 36 | import collections |
|
37 | 37 | |
|
38 | 38 | from sqlalchemy import ( |
|
39 | 39 | or_, and_, not_, func, TypeDecorator, event, |
|
40 | 40 | Index, Sequence, UniqueConstraint, ForeignKey, CheckConstraint, Column, |
|
41 | 41 | Boolean, String, Unicode, UnicodeText, DateTime, Integer, LargeBinary, |
|
42 | 42 | Text, Float, PickleType) |
|
43 | 43 | from sqlalchemy.sql.expression import true, false, case |
|
44 | 44 | from sqlalchemy.sql.functions import coalesce, count # pragma: no cover |
|
45 | 45 | from sqlalchemy.orm import ( |
|
46 | 46 | relationship, joinedload, class_mapper, validates, aliased) |
|
47 | 47 | from sqlalchemy.ext.declarative import declared_attr |
|
48 | 48 | from sqlalchemy.ext.hybrid import hybrid_property |
|
49 | 49 | from sqlalchemy.exc import IntegrityError # pragma: no cover |
|
50 | 50 | from sqlalchemy.dialects.mysql import LONGTEXT |
|
51 | 51 | from zope.cachedescriptors.property import Lazy as LazyProperty |
|
52 | 52 | from pyramid import compat |
|
53 | 53 | from pyramid.threadlocal import get_current_request |
|
54 | 54 | from webhelpers.text import collapse, remove_formatting |
|
55 | 55 | |
|
56 | 56 | from rhodecode.translation import _ |
|
57 | 57 | from rhodecode.lib.vcs import get_vcs_instance |
|
58 | 58 | from rhodecode.lib.vcs.backends.base import EmptyCommit, Reference |
|
59 | 59 | from rhodecode.lib.utils2 import ( |
|
60 | 60 | str2bool, safe_str, get_commit_safe, safe_unicode, sha1_safe, |
|
61 | 61 | time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict, |
|
62 | 62 | glob2re, StrictAttributeDict, cleaned_uri, datetime_to_time, OrderedDefaultDict) |
|
63 | 63 | from rhodecode.lib.jsonalchemy import MutationObj, MutationList, JsonType, \ |
|
64 | 64 | JsonRaw |
|
65 | 65 | from rhodecode.lib.ext_json import json |
|
66 | 66 | from rhodecode.lib.caching_query import FromCache |
|
67 | 67 | from rhodecode.lib.encrypt import AESCipher, validate_and_get_enc_data |
|
68 | 68 | from rhodecode.lib.encrypt2 import Encryptor |
|
69 | 69 | from rhodecode.model.meta import Base, Session |
|
70 | 70 | |
|
71 | 71 | URL_SEP = '/' |
|
72 | 72 | log = logging.getLogger(__name__) |
|
73 | 73 | |
|
74 | 74 | # ============================================================================= |
|
75 | 75 | # BASE CLASSES |
|
76 | 76 | # ============================================================================= |
|
77 | 77 | |
|
78 | 78 | # this is propagated from .ini file rhodecode.encrypted_values.secret or |
|
79 | 79 | # beaker.session.secret if first is not set. |
|
80 | 80 | # and initialized at environment.py |
|
81 | 81 | ENCRYPTION_KEY = None |
|
82 | 82 | |
|
83 | 83 | # used to sort permissions by types, '#' used here is not allowed to be in |
|
84 | 84 | # usernames, and it's very early in sorted string.printable table. |
|
85 | 85 | PERMISSION_TYPE_SORT = { |
|
86 | 86 | 'admin': '####', |
|
87 | 87 | 'write': '###', |
|
88 | 88 | 'read': '##', |
|
89 | 89 | 'none': '#', |
|
90 | 90 | } |
|
91 | 91 | |
|
92 | 92 | |
|
93 | 93 | def display_user_sort(obj): |
|
94 | 94 | """ |
|
95 | 95 | Sort function used to sort permissions in .permissions() function of |
|
96 | 96 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
97 | 97 | of all other resources |
|
98 | 98 | """ |
|
99 | 99 | |
|
100 | 100 | if obj.username == User.DEFAULT_USER: |
|
101 | 101 | return '#####' |
|
102 | 102 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
103 | 103 | return prefix + obj.username |
|
104 | 104 | |
|
105 | 105 | |
|
106 | 106 | def display_user_group_sort(obj): |
|
107 | 107 | """ |
|
108 | 108 | Sort function used to sort permissions in .permissions() function of |
|
109 | 109 | Repository, RepoGroup, UserGroup. Also it put the default user in front |
|
110 | 110 | of all other resources |
|
111 | 111 | """ |
|
112 | 112 | |
|
113 | 113 | prefix = PERMISSION_TYPE_SORT.get(obj.permission.split('.')[-1], '') |
|
114 | 114 | return prefix + obj.users_group_name |
|
115 | 115 | |
|
116 | 116 | |
|
117 | 117 | def _hash_key(k): |
|
118 | 118 | return sha1_safe(k) |
|
119 | 119 | |
|
120 | 120 | |
|
121 | 121 | def in_filter_generator(qry, items, limit=500): |
|
122 | 122 | """ |
|
123 | 123 | Splits IN() into multiple with OR |
|
124 | 124 | e.g.:: |
|
125 | 125 | cnt = Repository.query().filter( |
|
126 | 126 | or_( |
|
127 | 127 | *in_filter_generator(Repository.repo_id, range(100000)) |
|
128 | 128 | )).count() |
|
129 | 129 | """ |
|
130 | 130 | if not items: |
|
131 | 131 | # empty list will cause empty query which might cause security issues |
|
132 | 132 | # this can lead to hidden unpleasant results |
|
133 | 133 | items = [-1] |
|
134 | 134 | |
|
135 | 135 | parts = [] |
|
136 | 136 | for chunk in xrange(0, len(items), limit): |
|
137 | 137 | parts.append( |
|
138 | 138 | qry.in_(items[chunk: chunk + limit]) |
|
139 | 139 | ) |
|
140 | 140 | |
|
141 | 141 | return parts |
|
142 | 142 | |
|
143 | 143 | |
|
144 | 144 | base_table_args = { |
|
145 | 145 | 'extend_existing': True, |
|
146 | 146 | 'mysql_engine': 'InnoDB', |
|
147 | 147 | 'mysql_charset': 'utf8', |
|
148 | 148 | 'sqlite_autoincrement': True |
|
149 | 149 | } |
|
150 | 150 | |
|
151 | 151 | |
|
152 | 152 | class EncryptedTextValue(TypeDecorator): |
|
153 | 153 | """ |
|
154 | 154 | Special column for encrypted long text data, use like:: |
|
155 | 155 | |
|
156 | 156 | value = Column("encrypted_value", EncryptedValue(), nullable=False) |
|
157 | 157 | |
|
158 | 158 | This column is intelligent so if value is in unencrypted form it return |
|
159 | 159 | unencrypted form, but on save it always encrypts |
|
160 | 160 | """ |
|
161 | 161 | impl = Text |
|
162 | 162 | |
|
163 | 163 | def process_bind_param(self, value, dialect): |
|
164 | 164 | """ |
|
165 | 165 | Setter for storing value |
|
166 | 166 | """ |
|
167 | 167 | import rhodecode |
|
168 | 168 | if not value: |
|
169 | 169 | return value |
|
170 | 170 | |
|
171 | 171 | # protect against double encrypting if values is already encrypted |
|
172 | 172 | if value.startswith('enc$aes$') \ |
|
173 | 173 | or value.startswith('enc$aes_hmac$') \ |
|
174 | 174 | or value.startswith('enc2$'): |
|
175 | 175 | raise ValueError('value needs to be in unencrypted format, ' |
|
176 | 176 | 'ie. not starting with enc$ or enc2$') |
|
177 | 177 | |
|
178 | 178 | algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes' |
|
179 | 179 | if algo == 'aes': |
|
180 | 180 | return 'enc$aes_hmac$%s' % AESCipher(ENCRYPTION_KEY, hmac=True).encrypt(value) |
|
181 | 181 | elif algo == 'fernet': |
|
182 | 182 | return Encryptor(ENCRYPTION_KEY).encrypt(value) |
|
183 | 183 | else: |
|
184 | 184 | ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo)) |
|
185 | 185 | |
|
186 | 186 | def process_result_value(self, value, dialect): |
|
187 | 187 | """ |
|
188 | 188 | Getter for retrieving value |
|
189 | 189 | """ |
|
190 | 190 | |
|
191 | 191 | import rhodecode |
|
192 | 192 | if not value: |
|
193 | 193 | return value |
|
194 | 194 | |
|
195 | 195 | algo = rhodecode.CONFIG.get('rhodecode.encrypted_values.algorithm') or 'aes' |
|
196 | 196 | enc_strict_mode = str2bool(rhodecode.CONFIG.get('rhodecode.encrypted_values.strict') or True) |
|
197 | 197 | if algo == 'aes': |
|
198 | 198 | decrypted_data = validate_and_get_enc_data(value, ENCRYPTION_KEY, enc_strict_mode) |
|
199 | 199 | elif algo == 'fernet': |
|
200 | 200 | return Encryptor(ENCRYPTION_KEY).decrypt(value) |
|
201 | 201 | else: |
|
202 | 202 | ValueError('Bad encryption algorithm, should be fernet or aes, got: {}'.format(algo)) |
|
203 | 203 | return decrypted_data |
|
204 | 204 | |
|
205 | 205 | |
|
206 | 206 | class BaseModel(object): |
|
207 | 207 | """ |
|
208 | 208 | Base Model for all classes |
|
209 | 209 | """ |
|
210 | 210 | |
|
211 | 211 | @classmethod |
|
212 | 212 | def _get_keys(cls): |
|
213 | 213 | """return column names for this model """ |
|
214 | 214 | return class_mapper(cls).c.keys() |
|
215 | 215 | |
|
216 | 216 | def get_dict(self): |
|
217 | 217 | """ |
|
218 | 218 | return dict with keys and values corresponding |
|
219 | 219 | to this model data """ |
|
220 | 220 | |
|
221 | 221 | d = {} |
|
222 | 222 | for k in self._get_keys(): |
|
223 | 223 | d[k] = getattr(self, k) |
|
224 | 224 | |
|
225 | 225 | # also use __json__() if present to get additional fields |
|
226 | 226 | _json_attr = getattr(self, '__json__', None) |
|
227 | 227 | if _json_attr: |
|
228 | 228 | # update with attributes from __json__ |
|
229 | 229 | if callable(_json_attr): |
|
230 | 230 | _json_attr = _json_attr() |
|
231 | 231 | for k, val in _json_attr.iteritems(): |
|
232 | 232 | d[k] = val |
|
233 | 233 | return d |
|
234 | 234 | |
|
235 | 235 | def get_appstruct(self): |
|
236 | 236 | """return list with keys and values tuples corresponding |
|
237 | 237 | to this model data """ |
|
238 | 238 | |
|
239 | 239 | lst = [] |
|
240 | 240 | for k in self._get_keys(): |
|
241 | 241 | lst.append((k, getattr(self, k),)) |
|
242 | 242 | return lst |
|
243 | 243 | |
|
244 | 244 | def populate_obj(self, populate_dict): |
|
245 | 245 | """populate model with data from given populate_dict""" |
|
246 | 246 | |
|
247 | 247 | for k in self._get_keys(): |
|
248 | 248 | if k in populate_dict: |
|
249 | 249 | setattr(self, k, populate_dict[k]) |
|
250 | 250 | |
|
251 | 251 | @classmethod |
|
252 | 252 | def query(cls): |
|
253 | 253 | return Session().query(cls) |
|
254 | 254 | |
|
255 | 255 | @classmethod |
|
256 | 256 | def get(cls, id_): |
|
257 | 257 | if id_: |
|
258 | 258 | return cls.query().get(id_) |
|
259 | 259 | |
|
260 | 260 | @classmethod |
|
261 | 261 | def get_or_404(cls, id_): |
|
262 | 262 | from pyramid.httpexceptions import HTTPNotFound |
|
263 | 263 | |
|
264 | 264 | try: |
|
265 | 265 | id_ = int(id_) |
|
266 | 266 | except (TypeError, ValueError): |
|
267 | 267 | raise HTTPNotFound() |
|
268 | 268 | |
|
269 | 269 | res = cls.query().get(id_) |
|
270 | 270 | if not res: |
|
271 | 271 | raise HTTPNotFound() |
|
272 | 272 | return res |
|
273 | 273 | |
|
274 | 274 | @classmethod |
|
275 | 275 | def getAll(cls): |
|
276 | 276 | # deprecated and left for backward compatibility |
|
277 | 277 | return cls.get_all() |
|
278 | 278 | |
|
279 | 279 | @classmethod |
|
280 | 280 | def get_all(cls): |
|
281 | 281 | return cls.query().all() |
|
282 | 282 | |
|
283 | 283 | @classmethod |
|
284 | 284 | def delete(cls, id_): |
|
285 | 285 | obj = cls.query().get(id_) |
|
286 | 286 | Session().delete(obj) |
|
287 | 287 | |
|
288 | 288 | @classmethod |
|
289 | 289 | def identity_cache(cls, session, attr_name, value): |
|
290 | 290 | exist_in_session = [] |
|
291 | 291 | for (item_cls, pkey), instance in session.identity_map.items(): |
|
292 | 292 | if cls == item_cls and getattr(instance, attr_name) == value: |
|
293 | 293 | exist_in_session.append(instance) |
|
294 | 294 | if exist_in_session: |
|
295 | 295 | if len(exist_in_session) == 1: |
|
296 | 296 | return exist_in_session[0] |
|
297 | 297 | log.exception( |
|
298 | 298 | 'multiple objects with attr %s and ' |
|
299 | 299 | 'value %s found with same name: %r', |
|
300 | 300 | attr_name, value, exist_in_session) |
|
301 | 301 | |
|
302 | 302 | def __repr__(self): |
|
303 | 303 | if hasattr(self, '__unicode__'): |
|
304 | 304 | # python repr needs to return str |
|
305 | 305 | try: |
|
306 | 306 | return safe_str(self.__unicode__()) |
|
307 | 307 | except UnicodeDecodeError: |
|
308 | 308 | pass |
|
309 | 309 | return '<DB:%s>' % (self.__class__.__name__) |
|
310 | 310 | |
|
311 | 311 | |
|
312 | 312 | class RhodeCodeSetting(Base, BaseModel): |
|
313 | 313 | __tablename__ = 'rhodecode_settings' |
|
314 | 314 | __table_args__ = ( |
|
315 | 315 | UniqueConstraint('app_settings_name'), |
|
316 | 316 | base_table_args |
|
317 | 317 | ) |
|
318 | 318 | |
|
319 | 319 | SETTINGS_TYPES = { |
|
320 | 320 | 'str': safe_str, |
|
321 | 321 | 'int': safe_int, |
|
322 | 322 | 'unicode': safe_unicode, |
|
323 | 323 | 'bool': str2bool, |
|
324 | 324 | 'list': functools.partial(aslist, sep=',') |
|
325 | 325 | } |
|
326 | 326 | DEFAULT_UPDATE_URL = 'https://rhodecode.com/api/v1/info/versions' |
|
327 | 327 | GLOBAL_CONF_KEY = 'app_settings' |
|
328 | 328 | |
|
329 | 329 | app_settings_id = Column("app_settings_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
330 | 330 | app_settings_name = Column("app_settings_name", String(255), nullable=True, unique=None, default=None) |
|
331 | 331 | _app_settings_value = Column("app_settings_value", String(4096), nullable=True, unique=None, default=None) |
|
332 | 332 | _app_settings_type = Column("app_settings_type", String(255), nullable=True, unique=None, default=None) |
|
333 | 333 | |
|
334 | 334 | def __init__(self, key='', val='', type='unicode'): |
|
335 | 335 | self.app_settings_name = key |
|
336 | 336 | self.app_settings_type = type |
|
337 | 337 | self.app_settings_value = val |
|
338 | 338 | |
|
339 | 339 | @validates('_app_settings_value') |
|
340 | 340 | def validate_settings_value(self, key, val): |
|
341 | 341 | assert type(val) == unicode |
|
342 | 342 | return val |
|
343 | 343 | |
|
344 | 344 | @hybrid_property |
|
345 | 345 | def app_settings_value(self): |
|
346 | 346 | v = self._app_settings_value |
|
347 | 347 | _type = self.app_settings_type |
|
348 | 348 | if _type: |
|
349 | 349 | _type = self.app_settings_type.split('.')[0] |
|
350 | 350 | # decode the encrypted value |
|
351 | 351 | if 'encrypted' in self.app_settings_type: |
|
352 | 352 | cipher = EncryptedTextValue() |
|
353 | 353 | v = safe_unicode(cipher.process_result_value(v, None)) |
|
354 | 354 | |
|
355 | 355 | converter = self.SETTINGS_TYPES.get(_type) or \ |
|
356 | 356 | self.SETTINGS_TYPES['unicode'] |
|
357 | 357 | return converter(v) |
|
358 | 358 | |
|
359 | 359 | @app_settings_value.setter |
|
360 | 360 | def app_settings_value(self, val): |
|
361 | 361 | """ |
|
362 | 362 | Setter that will always make sure we use unicode in app_settings_value |
|
363 | 363 | |
|
364 | 364 | :param val: |
|
365 | 365 | """ |
|
366 | 366 | val = safe_unicode(val) |
|
367 | 367 | # encode the encrypted value |
|
368 | 368 | if 'encrypted' in self.app_settings_type: |
|
369 | 369 | cipher = EncryptedTextValue() |
|
370 | 370 | val = safe_unicode(cipher.process_bind_param(val, None)) |
|
371 | 371 | self._app_settings_value = val |
|
372 | 372 | |
|
373 | 373 | @hybrid_property |
|
374 | 374 | def app_settings_type(self): |
|
375 | 375 | return self._app_settings_type |
|
376 | 376 | |
|
377 | 377 | @app_settings_type.setter |
|
378 | 378 | def app_settings_type(self, val): |
|
379 | 379 | if val.split('.')[0] not in self.SETTINGS_TYPES: |
|
380 | 380 | raise Exception('type must be one of %s got %s' |
|
381 | 381 | % (self.SETTINGS_TYPES.keys(), val)) |
|
382 | 382 | self._app_settings_type = val |
|
383 | 383 | |
|
384 | 384 | @classmethod |
|
385 | 385 | def get_by_prefix(cls, prefix): |
|
386 | 386 | return RhodeCodeSetting.query()\ |
|
387 | 387 | .filter(RhodeCodeSetting.app_settings_name.startswith(prefix))\ |
|
388 | 388 | .all() |
|
389 | 389 | |
|
390 | 390 | def __unicode__(self): |
|
391 | 391 | return u"<%s('%s:%s[%s]')>" % ( |
|
392 | 392 | self.__class__.__name__, |
|
393 | 393 | self.app_settings_name, self.app_settings_value, |
|
394 | 394 | self.app_settings_type |
|
395 | 395 | ) |
|
396 | 396 | |
|
397 | 397 | |
|
398 | 398 | class RhodeCodeUi(Base, BaseModel): |
|
399 | 399 | __tablename__ = 'rhodecode_ui' |
|
400 | 400 | __table_args__ = ( |
|
401 | 401 | UniqueConstraint('ui_key'), |
|
402 | 402 | base_table_args |
|
403 | 403 | ) |
|
404 | 404 | |
|
405 | 405 | HOOK_REPO_SIZE = 'changegroup.repo_size' |
|
406 | 406 | # HG |
|
407 | 407 | HOOK_PRE_PULL = 'preoutgoing.pre_pull' |
|
408 | 408 | HOOK_PULL = 'outgoing.pull_logger' |
|
409 | 409 | HOOK_PRE_PUSH = 'prechangegroup.pre_push' |
|
410 | 410 | HOOK_PRETX_PUSH = 'pretxnchangegroup.pre_push' |
|
411 | 411 | HOOK_PUSH = 'changegroup.push_logger' |
|
412 | 412 | HOOK_PUSH_KEY = 'pushkey.key_push' |
|
413 | 413 | |
|
414 | 414 | HOOKS_BUILTIN = [ |
|
415 | 415 | HOOK_PRE_PULL, |
|
416 | 416 | HOOK_PULL, |
|
417 | 417 | HOOK_PRE_PUSH, |
|
418 | 418 | HOOK_PRETX_PUSH, |
|
419 | 419 | HOOK_PUSH, |
|
420 | 420 | HOOK_PUSH_KEY, |
|
421 | 421 | ] |
|
422 | 422 | |
|
423 | 423 | # TODO: johbo: Unify way how hooks are configured for git and hg, |
|
424 | 424 | # git part is currently hardcoded. |
|
425 | 425 | |
|
426 | 426 | # SVN PATTERNS |
|
427 | 427 | SVN_BRANCH_ID = 'vcs_svn_branch' |
|
428 | 428 | SVN_TAG_ID = 'vcs_svn_tag' |
|
429 | 429 | |
|
430 | 430 | ui_id = Column( |
|
431 | 431 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
432 | 432 | primary_key=True) |
|
433 | 433 | ui_section = Column( |
|
434 | 434 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
435 | 435 | ui_key = Column( |
|
436 | 436 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
437 | 437 | ui_value = Column( |
|
438 | 438 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
439 | 439 | ui_active = Column( |
|
440 | 440 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
441 | 441 | |
|
442 | 442 | def __repr__(self): |
|
443 | 443 | return '<%s[%s]%s=>%s]>' % (self.__class__.__name__, self.ui_section, |
|
444 | 444 | self.ui_key, self.ui_value) |
|
445 | 445 | |
|
446 | 446 | |
|
447 | 447 | class RepoRhodeCodeSetting(Base, BaseModel): |
|
448 | 448 | __tablename__ = 'repo_rhodecode_settings' |
|
449 | 449 | __table_args__ = ( |
|
450 | 450 | UniqueConstraint( |
|
451 | 451 | 'app_settings_name', 'repository_id', |
|
452 | 452 | name='uq_repo_rhodecode_setting_name_repo_id'), |
|
453 | 453 | base_table_args |
|
454 | 454 | ) |
|
455 | 455 | |
|
456 | 456 | repository_id = Column( |
|
457 | 457 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
458 | 458 | nullable=False) |
|
459 | 459 | app_settings_id = Column( |
|
460 | 460 | "app_settings_id", Integer(), nullable=False, unique=True, |
|
461 | 461 | default=None, primary_key=True) |
|
462 | 462 | app_settings_name = Column( |
|
463 | 463 | "app_settings_name", String(255), nullable=True, unique=None, |
|
464 | 464 | default=None) |
|
465 | 465 | _app_settings_value = Column( |
|
466 | 466 | "app_settings_value", String(4096), nullable=True, unique=None, |
|
467 | 467 | default=None) |
|
468 | 468 | _app_settings_type = Column( |
|
469 | 469 | "app_settings_type", String(255), nullable=True, unique=None, |
|
470 | 470 | default=None) |
|
471 | 471 | |
|
472 | 472 | repository = relationship('Repository') |
|
473 | 473 | |
|
474 | 474 | def __init__(self, repository_id, key='', val='', type='unicode'): |
|
475 | 475 | self.repository_id = repository_id |
|
476 | 476 | self.app_settings_name = key |
|
477 | 477 | self.app_settings_type = type |
|
478 | 478 | self.app_settings_value = val |
|
479 | 479 | |
|
480 | 480 | @validates('_app_settings_value') |
|
481 | 481 | def validate_settings_value(self, key, val): |
|
482 | 482 | assert type(val) == unicode |
|
483 | 483 | return val |
|
484 | 484 | |
|
485 | 485 | @hybrid_property |
|
486 | 486 | def app_settings_value(self): |
|
487 | 487 | v = self._app_settings_value |
|
488 | 488 | type_ = self.app_settings_type |
|
489 | 489 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
490 | 490 | converter = SETTINGS_TYPES.get(type_) or SETTINGS_TYPES['unicode'] |
|
491 | 491 | return converter(v) |
|
492 | 492 | |
|
493 | 493 | @app_settings_value.setter |
|
494 | 494 | def app_settings_value(self, val): |
|
495 | 495 | """ |
|
496 | 496 | Setter that will always make sure we use unicode in app_settings_value |
|
497 | 497 | |
|
498 | 498 | :param val: |
|
499 | 499 | """ |
|
500 | 500 | self._app_settings_value = safe_unicode(val) |
|
501 | 501 | |
|
502 | 502 | @hybrid_property |
|
503 | 503 | def app_settings_type(self): |
|
504 | 504 | return self._app_settings_type |
|
505 | 505 | |
|
506 | 506 | @app_settings_type.setter |
|
507 | 507 | def app_settings_type(self, val): |
|
508 | 508 | SETTINGS_TYPES = RhodeCodeSetting.SETTINGS_TYPES |
|
509 | 509 | if val not in SETTINGS_TYPES: |
|
510 | 510 | raise Exception('type must be one of %s got %s' |
|
511 | 511 | % (SETTINGS_TYPES.keys(), val)) |
|
512 | 512 | self._app_settings_type = val |
|
513 | 513 | |
|
514 | 514 | def __unicode__(self): |
|
515 | 515 | return u"<%s('%s:%s:%s[%s]')>" % ( |
|
516 | 516 | self.__class__.__name__, self.repository.repo_name, |
|
517 | 517 | self.app_settings_name, self.app_settings_value, |
|
518 | 518 | self.app_settings_type |
|
519 | 519 | ) |
|
520 | 520 | |
|
521 | 521 | |
|
522 | 522 | class RepoRhodeCodeUi(Base, BaseModel): |
|
523 | 523 | __tablename__ = 'repo_rhodecode_ui' |
|
524 | 524 | __table_args__ = ( |
|
525 | 525 | UniqueConstraint( |
|
526 | 526 | 'repository_id', 'ui_section', 'ui_key', |
|
527 | 527 | name='uq_repo_rhodecode_ui_repository_id_section_key'), |
|
528 | 528 | base_table_args |
|
529 | 529 | ) |
|
530 | 530 | |
|
531 | 531 | repository_id = Column( |
|
532 | 532 | "repository_id", Integer(), ForeignKey('repositories.repo_id'), |
|
533 | 533 | nullable=False) |
|
534 | 534 | ui_id = Column( |
|
535 | 535 | "ui_id", Integer(), nullable=False, unique=True, default=None, |
|
536 | 536 | primary_key=True) |
|
537 | 537 | ui_section = Column( |
|
538 | 538 | "ui_section", String(255), nullable=True, unique=None, default=None) |
|
539 | 539 | ui_key = Column( |
|
540 | 540 | "ui_key", String(255), nullable=True, unique=None, default=None) |
|
541 | 541 | ui_value = Column( |
|
542 | 542 | "ui_value", String(255), nullable=True, unique=None, default=None) |
|
543 | 543 | ui_active = Column( |
|
544 | 544 | "ui_active", Boolean(), nullable=True, unique=None, default=True) |
|
545 | 545 | |
|
546 | 546 | repository = relationship('Repository') |
|
547 | 547 | |
|
548 | 548 | def __repr__(self): |
|
549 | 549 | return '<%s[%s:%s]%s=>%s]>' % ( |
|
550 | 550 | self.__class__.__name__, self.repository.repo_name, |
|
551 | 551 | self.ui_section, self.ui_key, self.ui_value) |
|
552 | 552 | |
|
553 | 553 | |
|
554 | 554 | class User(Base, BaseModel): |
|
555 | 555 | __tablename__ = 'users' |
|
556 | 556 | __table_args__ = ( |
|
557 | 557 | UniqueConstraint('username'), UniqueConstraint('email'), |
|
558 | 558 | Index('u_username_idx', 'username'), |
|
559 | 559 | Index('u_email_idx', 'email'), |
|
560 | 560 | base_table_args |
|
561 | 561 | ) |
|
562 | 562 | |
|
563 | 563 | DEFAULT_USER = 'default' |
|
564 | 564 | DEFAULT_USER_EMAIL = 'anonymous@rhodecode.org' |
|
565 | 565 | DEFAULT_GRAVATAR_URL = 'https://secure.gravatar.com/avatar/{md5email}?d=identicon&s={size}' |
|
566 | 566 | |
|
567 | 567 | user_id = Column("user_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
568 | 568 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
569 | 569 | password = Column("password", String(255), nullable=True, unique=None, default=None) |
|
570 | 570 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
571 | 571 | admin = Column("admin", Boolean(), nullable=True, unique=None, default=False) |
|
572 | 572 | name = Column("firstname", String(255), nullable=True, unique=None, default=None) |
|
573 | 573 | lastname = Column("lastname", String(255), nullable=True, unique=None, default=None) |
|
574 | 574 | _email = Column("email", String(255), nullable=True, unique=None, default=None) |
|
575 | 575 | last_login = Column("last_login", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
576 | 576 | last_activity = Column('last_activity', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
577 | 577 | |
|
578 | 578 | extern_type = Column("extern_type", String(255), nullable=True, unique=None, default=None) |
|
579 | 579 | extern_name = Column("extern_name", String(255), nullable=True, unique=None, default=None) |
|
580 | 580 | _api_key = Column("api_key", String(255), nullable=True, unique=None, default=None) |
|
581 | 581 | inherit_default_permissions = Column("inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
582 | 582 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
583 | 583 | _user_data = Column("user_data", LargeBinary(), nullable=True) # JSON data |
|
584 | 584 | |
|
585 | 585 | user_log = relationship('UserLog') |
|
586 | 586 | user_perms = relationship('UserToPerm', primaryjoin="User.user_id==UserToPerm.user_id", cascade='all') |
|
587 | 587 | |
|
588 | 588 | repositories = relationship('Repository') |
|
589 | 589 | repository_groups = relationship('RepoGroup') |
|
590 | 590 | user_groups = relationship('UserGroup') |
|
591 | 591 | |
|
592 | 592 | user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all') |
|
593 | 593 | followings = relationship('UserFollowing', primaryjoin='UserFollowing.user_id==User.user_id', cascade='all') |
|
594 | 594 | |
|
595 | 595 | repo_to_perm = relationship('UserRepoToPerm', primaryjoin='UserRepoToPerm.user_id==User.user_id', cascade='all') |
|
596 | 596 | repo_group_to_perm = relationship('UserRepoGroupToPerm', primaryjoin='UserRepoGroupToPerm.user_id==User.user_id', cascade='all') |
|
597 | 597 | user_group_to_perm = relationship('UserUserGroupToPerm', primaryjoin='UserUserGroupToPerm.user_id==User.user_id', cascade='all') |
|
598 | 598 | |
|
599 | 599 | group_member = relationship('UserGroupMember', cascade='all') |
|
600 | 600 | |
|
601 | 601 | notifications = relationship('UserNotification', cascade='all') |
|
602 | 602 | # notifications assigned to this user |
|
603 | 603 | user_created_notifications = relationship('Notification', cascade='all') |
|
604 | 604 | # comments created by this user |
|
605 | 605 | user_comments = relationship('ChangesetComment', cascade='all') |
|
606 | 606 | # user profile extra info |
|
607 | 607 | user_emails = relationship('UserEmailMap', cascade='all') |
|
608 | 608 | user_ip_map = relationship('UserIpMap', cascade='all') |
|
609 | 609 | user_auth_tokens = relationship('UserApiKeys', cascade='all') |
|
610 | 610 | user_ssh_keys = relationship('UserSshKeys', cascade='all') |
|
611 | 611 | |
|
612 | 612 | # gists |
|
613 | 613 | user_gists = relationship('Gist', cascade='all') |
|
614 | 614 | # user pull requests |
|
615 | 615 | user_pull_requests = relationship('PullRequest', cascade='all') |
|
616 | 616 | # external identities |
|
617 | 617 | extenal_identities = relationship( |
|
618 | 618 | 'ExternalIdentity', |
|
619 | 619 | primaryjoin="User.user_id==ExternalIdentity.local_user_id", |
|
620 | 620 | cascade='all') |
|
621 | 621 | # review rules |
|
622 | 622 | user_review_rules = relationship('RepoReviewRuleUser', cascade='all') |
|
623 | 623 | |
|
624 | 624 | def __unicode__(self): |
|
625 | 625 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
626 | 626 | self.user_id, self.username) |
|
627 | 627 | |
|
628 | 628 | @hybrid_property |
|
629 | 629 | def email(self): |
|
630 | 630 | return self._email |
|
631 | 631 | |
|
632 | 632 | @email.setter |
|
633 | 633 | def email(self, val): |
|
634 | 634 | self._email = val.lower() if val else None |
|
635 | 635 | |
|
636 | 636 | @hybrid_property |
|
637 | 637 | def first_name(self): |
|
638 | 638 | from rhodecode.lib import helpers as h |
|
639 | 639 | if self.name: |
|
640 | 640 | return h.escape(self.name) |
|
641 | 641 | return self.name |
|
642 | 642 | |
|
643 | 643 | @hybrid_property |
|
644 | 644 | def last_name(self): |
|
645 | 645 | from rhodecode.lib import helpers as h |
|
646 | 646 | if self.lastname: |
|
647 | 647 | return h.escape(self.lastname) |
|
648 | 648 | return self.lastname |
|
649 | 649 | |
|
650 | 650 | @hybrid_property |
|
651 | 651 | def api_key(self): |
|
652 | 652 | """ |
|
653 | 653 | Fetch if exist an auth-token with role ALL connected to this user |
|
654 | 654 | """ |
|
655 | 655 | user_auth_token = UserApiKeys.query()\ |
|
656 | 656 | .filter(UserApiKeys.user_id == self.user_id)\ |
|
657 | 657 | .filter(or_(UserApiKeys.expires == -1, |
|
658 | 658 | UserApiKeys.expires >= time.time()))\ |
|
659 | 659 | .filter(UserApiKeys.role == UserApiKeys.ROLE_ALL).first() |
|
660 | 660 | if user_auth_token: |
|
661 | 661 | user_auth_token = user_auth_token.api_key |
|
662 | 662 | |
|
663 | 663 | return user_auth_token |
|
664 | 664 | |
|
665 | 665 | @api_key.setter |
|
666 | 666 | def api_key(self, val): |
|
667 | 667 | # don't allow to set API key this is deprecated for now |
|
668 | 668 | self._api_key = None |
|
669 | 669 | |
|
670 | 670 | @property |
|
671 | 671 | def reviewer_pull_requests(self): |
|
672 | 672 | return PullRequestReviewers.query() \ |
|
673 | 673 | .options(joinedload(PullRequestReviewers.pull_request)) \ |
|
674 | 674 | .filter(PullRequestReviewers.user_id == self.user_id) \ |
|
675 | 675 | .all() |
|
676 | 676 | |
|
677 | 677 | @property |
|
678 | 678 | def firstname(self): |
|
679 | 679 | # alias for future |
|
680 | 680 | return self.name |
|
681 | 681 | |
|
682 | 682 | @property |
|
683 | 683 | def emails(self): |
|
684 | 684 | other = UserEmailMap.query()\ |
|
685 | 685 | .filter(UserEmailMap.user == self) \ |
|
686 | 686 | .order_by(UserEmailMap.email_id.asc()) \ |
|
687 | 687 | .all() |
|
688 | 688 | return [self.email] + [x.email for x in other] |
|
689 | 689 | |
|
690 | 690 | @property |
|
691 | 691 | def auth_tokens(self): |
|
692 | 692 | auth_tokens = self.get_auth_tokens() |
|
693 | 693 | return [x.api_key for x in auth_tokens] |
|
694 | 694 | |
|
695 | 695 | def get_auth_tokens(self): |
|
696 | 696 | return UserApiKeys.query()\ |
|
697 | 697 | .filter(UserApiKeys.user == self)\ |
|
698 | 698 | .order_by(UserApiKeys.user_api_key_id.asc())\ |
|
699 | 699 | .all() |
|
700 | 700 | |
|
701 | 701 | @LazyProperty |
|
702 | 702 | def feed_token(self): |
|
703 | 703 | return self.get_feed_token() |
|
704 | 704 | |
|
705 | 705 | def get_feed_token(self, cache=True): |
|
706 | 706 | feed_tokens = UserApiKeys.query()\ |
|
707 | 707 | .filter(UserApiKeys.user == self)\ |
|
708 | 708 | .filter(UserApiKeys.role == UserApiKeys.ROLE_FEED) |
|
709 | 709 | if cache: |
|
710 | 710 | feed_tokens = feed_tokens.options( |
|
711 | 711 | FromCache("sql_cache_short", "get_user_feed_token_%s" % self.user_id)) |
|
712 | 712 | |
|
713 | 713 | feed_tokens = feed_tokens.all() |
|
714 | 714 | if feed_tokens: |
|
715 | 715 | return feed_tokens[0].api_key |
|
716 | 716 | return 'NO_FEED_TOKEN_AVAILABLE' |
|
717 | 717 | |
|
718 | 718 | @classmethod |
|
719 | 719 | def get(cls, user_id, cache=False): |
|
720 | 720 | if not user_id: |
|
721 | 721 | return |
|
722 | 722 | |
|
723 | 723 | user = cls.query() |
|
724 | 724 | if cache: |
|
725 | 725 | user = user.options( |
|
726 | 726 | FromCache("sql_cache_short", "get_users_%s" % user_id)) |
|
727 | 727 | return user.get(user_id) |
|
728 | 728 | |
|
729 | 729 | @classmethod |
|
730 | 730 | def extra_valid_auth_tokens(cls, user, role=None): |
|
731 | 731 | tokens = UserApiKeys.query().filter(UserApiKeys.user == user)\ |
|
732 | 732 | .filter(or_(UserApiKeys.expires == -1, |
|
733 | 733 | UserApiKeys.expires >= time.time())) |
|
734 | 734 | if role: |
|
735 | 735 | tokens = tokens.filter(or_(UserApiKeys.role == role, |
|
736 | 736 | UserApiKeys.role == UserApiKeys.ROLE_ALL)) |
|
737 | 737 | return tokens.all() |
|
738 | 738 | |
|
739 | 739 | def authenticate_by_token(self, auth_token, roles=None, scope_repo_id=None): |
|
740 | 740 | from rhodecode.lib import auth |
|
741 | 741 | |
|
742 | 742 | log.debug('Trying to authenticate user: %s via auth-token, ' |
|
743 | 743 | 'and roles: %s', self, roles) |
|
744 | 744 | |
|
745 | 745 | if not auth_token: |
|
746 | 746 | return False |
|
747 | 747 | |
|
748 | 748 | roles = (roles or []) + [UserApiKeys.ROLE_ALL] |
|
749 | 749 | tokens_q = UserApiKeys.query()\ |
|
750 | 750 | .filter(UserApiKeys.user_id == self.user_id)\ |
|
751 | 751 | .filter(or_(UserApiKeys.expires == -1, |
|
752 | 752 | UserApiKeys.expires >= time.time())) |
|
753 | 753 | |
|
754 | 754 | tokens_q = tokens_q.filter(UserApiKeys.role.in_(roles)) |
|
755 | 755 | |
|
756 | 756 | crypto_backend = auth.crypto_backend() |
|
757 | 757 | enc_token_map = {} |
|
758 | 758 | plain_token_map = {} |
|
759 | 759 | for token in tokens_q: |
|
760 | 760 | if token.api_key.startswith(crypto_backend.ENC_PREF): |
|
761 | 761 | enc_token_map[token.api_key] = token |
|
762 | 762 | else: |
|
763 | 763 | plain_token_map[token.api_key] = token |
|
764 | 764 | log.debug( |
|
765 | 765 | 'Found %s plain and %s encrypted user tokens to check for authentication', |
|
766 | 766 | len(plain_token_map), len(enc_token_map)) |
|
767 | 767 | |
|
768 | 768 | # plain token match comes first |
|
769 | 769 | match = plain_token_map.get(auth_token) |
|
770 | 770 | |
|
771 | 771 | # check encrypted tokens now |
|
772 | 772 | if not match: |
|
773 | 773 | for token_hash, token in enc_token_map.items(): |
|
774 | 774 | # NOTE(marcink): this is expensive to calculate, but most secure |
|
775 | 775 | if crypto_backend.hash_check(auth_token, token_hash): |
|
776 | 776 | match = token |
|
777 | 777 | break |
|
778 | 778 | |
|
779 | 779 | if match: |
|
780 | 780 | log.debug('Found matching token %s', match) |
|
781 | 781 | if match.repo_id: |
|
782 | 782 | log.debug('Found scope, checking for scope match of token %s', match) |
|
783 | 783 | if match.repo_id == scope_repo_id: |
|
784 | 784 | return True |
|
785 | 785 | else: |
|
786 | 786 | log.debug( |
|
787 | 787 | 'AUTH_TOKEN: scope mismatch, token has a set repo scope: %s, ' |
|
788 | 788 | 'and calling scope is:%s, skipping further checks', |
|
789 | 789 | match.repo, scope_repo_id) |
|
790 | 790 | return False |
|
791 | 791 | else: |
|
792 | 792 | return True |
|
793 | 793 | |
|
794 | 794 | return False |
|
795 | 795 | |
|
796 | 796 | @property |
|
797 | 797 | def ip_addresses(self): |
|
798 | 798 | ret = UserIpMap.query().filter(UserIpMap.user == self).all() |
|
799 | 799 | return [x.ip_addr for x in ret] |
|
800 | 800 | |
|
801 | 801 | @property |
|
802 | 802 | def username_and_name(self): |
|
803 | 803 | return '%s (%s %s)' % (self.username, self.first_name, self.last_name) |
|
804 | 804 | |
|
805 | 805 | @property |
|
806 | 806 | def username_or_name_or_email(self): |
|
807 | 807 | full_name = self.full_name if self.full_name is not ' ' else None |
|
808 | 808 | return self.username or full_name or self.email |
|
809 | 809 | |
|
810 | 810 | @property |
|
811 | 811 | def full_name(self): |
|
812 | 812 | return '%s %s' % (self.first_name, self.last_name) |
|
813 | 813 | |
|
814 | 814 | @property |
|
815 | 815 | def full_name_or_username(self): |
|
816 | 816 | return ('%s %s' % (self.first_name, self.last_name) |
|
817 | 817 | if (self.first_name and self.last_name) else self.username) |
|
818 | 818 | |
|
819 | 819 | @property |
|
820 | 820 | def full_contact(self): |
|
821 | 821 | return '%s %s <%s>' % (self.first_name, self.last_name, self.email) |
|
822 | 822 | |
|
823 | 823 | @property |
|
824 | 824 | def short_contact(self): |
|
825 | 825 | return '%s %s' % (self.first_name, self.last_name) |
|
826 | 826 | |
|
827 | 827 | @property |
|
828 | 828 | def is_admin(self): |
|
829 | 829 | return self.admin |
|
830 | 830 | |
|
831 | 831 | def AuthUser(self, **kwargs): |
|
832 | 832 | """ |
|
833 | 833 | Returns instance of AuthUser for this user |
|
834 | 834 | """ |
|
835 | 835 | from rhodecode.lib.auth import AuthUser |
|
836 | 836 | return AuthUser(user_id=self.user_id, username=self.username, **kwargs) |
|
837 | 837 | |
|
838 | 838 | @hybrid_property |
|
839 | 839 | def user_data(self): |
|
840 | 840 | if not self._user_data: |
|
841 | 841 | return {} |
|
842 | 842 | |
|
843 | 843 | try: |
|
844 | 844 | return json.loads(self._user_data) |
|
845 | 845 | except TypeError: |
|
846 | 846 | return {} |
|
847 | 847 | |
|
848 | 848 | @user_data.setter |
|
849 | 849 | def user_data(self, val): |
|
850 | 850 | if not isinstance(val, dict): |
|
851 | 851 | raise Exception('user_data must be dict, got %s' % type(val)) |
|
852 | 852 | try: |
|
853 | 853 | self._user_data = json.dumps(val) |
|
854 | 854 | except Exception: |
|
855 | 855 | log.error(traceback.format_exc()) |
|
856 | 856 | |
|
857 | 857 | @classmethod |
|
858 | 858 | def get_by_username(cls, username, case_insensitive=False, |
|
859 | 859 | cache=False, identity_cache=False): |
|
860 | 860 | session = Session() |
|
861 | 861 | |
|
862 | 862 | if case_insensitive: |
|
863 | 863 | q = cls.query().filter( |
|
864 | 864 | func.lower(cls.username) == func.lower(username)) |
|
865 | 865 | else: |
|
866 | 866 | q = cls.query().filter(cls.username == username) |
|
867 | 867 | |
|
868 | 868 | if cache: |
|
869 | 869 | if identity_cache: |
|
870 | 870 | val = cls.identity_cache(session, 'username', username) |
|
871 | 871 | if val: |
|
872 | 872 | return val |
|
873 | 873 | else: |
|
874 | 874 | cache_key = "get_user_by_name_%s" % _hash_key(username) |
|
875 | 875 | q = q.options( |
|
876 | 876 | FromCache("sql_cache_short", cache_key)) |
|
877 | 877 | |
|
878 | 878 | return q.scalar() |
|
879 | 879 | |
|
880 | 880 | @classmethod |
|
881 | 881 | def get_by_auth_token(cls, auth_token, cache=False): |
|
882 | 882 | q = UserApiKeys.query()\ |
|
883 | 883 | .filter(UserApiKeys.api_key == auth_token)\ |
|
884 | 884 | .filter(or_(UserApiKeys.expires == -1, |
|
885 | 885 | UserApiKeys.expires >= time.time())) |
|
886 | 886 | if cache: |
|
887 | 887 | q = q.options( |
|
888 | 888 | FromCache("sql_cache_short", "get_auth_token_%s" % auth_token)) |
|
889 | 889 | |
|
890 | 890 | match = q.first() |
|
891 | 891 | if match: |
|
892 | 892 | return match.user |
|
893 | 893 | |
|
894 | 894 | @classmethod |
|
895 | 895 | def get_by_email(cls, email, case_insensitive=False, cache=False): |
|
896 | 896 | |
|
897 | 897 | if case_insensitive: |
|
898 | 898 | q = cls.query().filter(func.lower(cls.email) == func.lower(email)) |
|
899 | 899 | |
|
900 | 900 | else: |
|
901 | 901 | q = cls.query().filter(cls.email == email) |
|
902 | 902 | |
|
903 | 903 | email_key = _hash_key(email) |
|
904 | 904 | if cache: |
|
905 | 905 | q = q.options( |
|
906 | 906 | FromCache("sql_cache_short", "get_email_key_%s" % email_key)) |
|
907 | 907 | |
|
908 | 908 | ret = q.scalar() |
|
909 | 909 | if ret is None: |
|
910 | 910 | q = UserEmailMap.query() |
|
911 | 911 | # try fetching in alternate email map |
|
912 | 912 | if case_insensitive: |
|
913 | 913 | q = q.filter(func.lower(UserEmailMap.email) == func.lower(email)) |
|
914 | 914 | else: |
|
915 | 915 | q = q.filter(UserEmailMap.email == email) |
|
916 | 916 | q = q.options(joinedload(UserEmailMap.user)) |
|
917 | 917 | if cache: |
|
918 | 918 | q = q.options( |
|
919 | 919 | FromCache("sql_cache_short", "get_email_map_key_%s" % email_key)) |
|
920 | 920 | ret = getattr(q.scalar(), 'user', None) |
|
921 | 921 | |
|
922 | 922 | return ret |
|
923 | 923 | |
|
924 | 924 | @classmethod |
|
925 | 925 | def get_from_cs_author(cls, author): |
|
926 | 926 | """ |
|
927 | 927 | Tries to get User objects out of commit author string |
|
928 | 928 | |
|
929 | 929 | :param author: |
|
930 | 930 | """ |
|
931 | 931 | from rhodecode.lib.helpers import email, author_name |
|
932 | 932 | # Valid email in the attribute passed, see if they're in the system |
|
933 | 933 | _email = email(author) |
|
934 | 934 | if _email: |
|
935 | 935 | user = cls.get_by_email(_email, case_insensitive=True) |
|
936 | 936 | if user: |
|
937 | 937 | return user |
|
938 | 938 | # Maybe we can match by username? |
|
939 | 939 | _author = author_name(author) |
|
940 | 940 | user = cls.get_by_username(_author, case_insensitive=True) |
|
941 | 941 | if user: |
|
942 | 942 | return user |
|
943 | 943 | |
|
944 | 944 | def update_userdata(self, **kwargs): |
|
945 | 945 | usr = self |
|
946 | 946 | old = usr.user_data |
|
947 | 947 | old.update(**kwargs) |
|
948 | 948 | usr.user_data = old |
|
949 | 949 | Session().add(usr) |
|
950 | 950 | log.debug('updated userdata with ', kwargs) |
|
951 | 951 | |
|
952 | 952 | def update_lastlogin(self): |
|
953 | 953 | """Update user lastlogin""" |
|
954 | 954 | self.last_login = datetime.datetime.now() |
|
955 | 955 | Session().add(self) |
|
956 | 956 | log.debug('updated user %s lastlogin', self.username) |
|
957 | 957 | |
|
958 | 958 | def update_password(self, new_password): |
|
959 | 959 | from rhodecode.lib.auth import get_crypt_password |
|
960 | 960 | |
|
961 | 961 | self.password = get_crypt_password(new_password) |
|
962 | 962 | Session().add(self) |
|
963 | 963 | |
|
964 | 964 | @classmethod |
|
965 | 965 | def get_first_super_admin(cls): |
|
966 | 966 | user = User.query()\ |
|
967 | 967 | .filter(User.admin == true()) \ |
|
968 | 968 | .order_by(User.user_id.asc()) \ |
|
969 | 969 | .first() |
|
970 | 970 | |
|
971 | 971 | if user is None: |
|
972 | 972 | raise Exception('FATAL: Missing administrative account!') |
|
973 | 973 | return user |
|
974 | 974 | |
|
975 | 975 | @classmethod |
|
976 | 976 | def get_all_super_admins(cls, only_active=False): |
|
977 | 977 | """ |
|
978 | 978 | Returns all admin accounts sorted by username |
|
979 | 979 | """ |
|
980 | 980 | qry = User.query().filter(User.admin == true()).order_by(User.username.asc()) |
|
981 | 981 | if only_active: |
|
982 | 982 | qry = qry.filter(User.active == true()) |
|
983 | 983 | return qry.all() |
|
984 | 984 | |
|
985 | 985 | @classmethod |
|
986 | 986 | def get_default_user(cls, cache=False, refresh=False): |
|
987 | 987 | user = User.get_by_username(User.DEFAULT_USER, cache=cache) |
|
988 | 988 | if user is None: |
|
989 | 989 | raise Exception('FATAL: Missing default account!') |
|
990 | 990 | if refresh: |
|
991 | 991 | # The default user might be based on outdated state which |
|
992 | 992 | # has been loaded from the cache. |
|
993 | 993 | # A call to refresh() ensures that the |
|
994 | 994 | # latest state from the database is used. |
|
995 | 995 | Session().refresh(user) |
|
996 | 996 | return user |
|
997 | 997 | |
|
998 | 998 | def _get_default_perms(self, user, suffix=''): |
|
999 | 999 | from rhodecode.model.permission import PermissionModel |
|
1000 | 1000 | return PermissionModel().get_default_perms(user.user_perms, suffix) |
|
1001 | 1001 | |
|
1002 | 1002 | def get_default_perms(self, suffix=''): |
|
1003 | 1003 | return self._get_default_perms(self, suffix) |
|
1004 | 1004 | |
|
1005 | 1005 | def get_api_data(self, include_secrets=False, details='full'): |
|
1006 | 1006 | """ |
|
1007 | 1007 | Common function for generating user related data for API |
|
1008 | 1008 | |
|
1009 | 1009 | :param include_secrets: By default secrets in the API data will be replaced |
|
1010 | 1010 | by a placeholder value to prevent exposing this data by accident. In case |
|
1011 | 1011 | this data shall be exposed, set this flag to ``True``. |
|
1012 | 1012 | |
|
1013 | 1013 | :param details: details can be 'basic|full' basic gives only a subset of |
|
1014 | 1014 | the available user information that includes user_id, name and emails. |
|
1015 | 1015 | """ |
|
1016 | 1016 | user = self |
|
1017 | 1017 | user_data = self.user_data |
|
1018 | 1018 | data = { |
|
1019 | 1019 | 'user_id': user.user_id, |
|
1020 | 1020 | 'username': user.username, |
|
1021 | 1021 | 'firstname': user.name, |
|
1022 | 1022 | 'lastname': user.lastname, |
|
1023 | 1023 | 'email': user.email, |
|
1024 | 1024 | 'emails': user.emails, |
|
1025 | 1025 | } |
|
1026 | 1026 | if details == 'basic': |
|
1027 | 1027 | return data |
|
1028 | 1028 | |
|
1029 | 1029 | auth_token_length = 40 |
|
1030 | 1030 | auth_token_replacement = '*' * auth_token_length |
|
1031 | 1031 | |
|
1032 | 1032 | extras = { |
|
1033 | 1033 | 'auth_tokens': [auth_token_replacement], |
|
1034 | 1034 | 'active': user.active, |
|
1035 | 1035 | 'admin': user.admin, |
|
1036 | 1036 | 'extern_type': user.extern_type, |
|
1037 | 1037 | 'extern_name': user.extern_name, |
|
1038 | 1038 | 'last_login': user.last_login, |
|
1039 | 1039 | 'last_activity': user.last_activity, |
|
1040 | 1040 | 'ip_addresses': user.ip_addresses, |
|
1041 | 1041 | 'language': user_data.get('language') |
|
1042 | 1042 | } |
|
1043 | 1043 | data.update(extras) |
|
1044 | 1044 | |
|
1045 | 1045 | if include_secrets: |
|
1046 | 1046 | data['auth_tokens'] = user.auth_tokens |
|
1047 | 1047 | return data |
|
1048 | 1048 | |
|
1049 | 1049 | def __json__(self): |
|
1050 | 1050 | data = { |
|
1051 | 1051 | 'full_name': self.full_name, |
|
1052 | 1052 | 'full_name_or_username': self.full_name_or_username, |
|
1053 | 1053 | 'short_contact': self.short_contact, |
|
1054 | 1054 | 'full_contact': self.full_contact, |
|
1055 | 1055 | } |
|
1056 | 1056 | data.update(self.get_api_data()) |
|
1057 | 1057 | return data |
|
1058 | 1058 | |
|
1059 | 1059 | |
|
1060 | 1060 | class UserApiKeys(Base, BaseModel): |
|
1061 | 1061 | __tablename__ = 'user_api_keys' |
|
1062 | 1062 | __table_args__ = ( |
|
1063 | 1063 | Index('uak_api_key_idx', 'api_key', unique=True), |
|
1064 | 1064 | Index('uak_api_key_expires_idx', 'api_key', 'expires'), |
|
1065 | 1065 | base_table_args |
|
1066 | 1066 | ) |
|
1067 | 1067 | __mapper_args__ = {} |
|
1068 | 1068 | |
|
1069 | 1069 | # ApiKey role |
|
1070 | 1070 | ROLE_ALL = 'token_role_all' |
|
1071 | 1071 | ROLE_HTTP = 'token_role_http' |
|
1072 | 1072 | ROLE_VCS = 'token_role_vcs' |
|
1073 | 1073 | ROLE_API = 'token_role_api' |
|
1074 | 1074 | ROLE_FEED = 'token_role_feed' |
|
1075 | 1075 | ROLE_PASSWORD_RESET = 'token_password_reset' |
|
1076 | 1076 | |
|
1077 | 1077 | ROLES = [ROLE_ALL, ROLE_HTTP, ROLE_VCS, ROLE_API, ROLE_FEED] |
|
1078 | 1078 | |
|
1079 | 1079 | user_api_key_id = Column("user_api_key_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1080 | 1080 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1081 | 1081 | api_key = Column("api_key", String(255), nullable=False, unique=True) |
|
1082 | 1082 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
1083 | 1083 | expires = Column('expires', Float(53), nullable=False) |
|
1084 | 1084 | role = Column('role', String(255), nullable=True) |
|
1085 | 1085 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1086 | 1086 | |
|
1087 | 1087 | # scope columns |
|
1088 | 1088 | repo_id = Column( |
|
1089 | 1089 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
1090 | 1090 | nullable=True, unique=None, default=None) |
|
1091 | 1091 | repo = relationship('Repository', lazy='joined') |
|
1092 | 1092 | |
|
1093 | 1093 | repo_group_id = Column( |
|
1094 | 1094 | 'repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
1095 | 1095 | nullable=True, unique=None, default=None) |
|
1096 | 1096 | repo_group = relationship('RepoGroup', lazy='joined') |
|
1097 | 1097 | |
|
1098 | 1098 | user = relationship('User', lazy='joined') |
|
1099 | 1099 | |
|
1100 | 1100 | def __unicode__(self): |
|
1101 | 1101 | return u"<%s('%s')>" % (self.__class__.__name__, self.role) |
|
1102 | 1102 | |
|
1103 | 1103 | def __json__(self): |
|
1104 | 1104 | data = { |
|
1105 | 1105 | 'auth_token': self.api_key, |
|
1106 | 1106 | 'role': self.role, |
|
1107 | 1107 | 'scope': self.scope_humanized, |
|
1108 | 1108 | 'expired': self.expired |
|
1109 | 1109 | } |
|
1110 | 1110 | return data |
|
1111 | 1111 | |
|
1112 | 1112 | def get_api_data(self, include_secrets=False): |
|
1113 | 1113 | data = self.__json__() |
|
1114 | 1114 | if include_secrets: |
|
1115 | 1115 | return data |
|
1116 | 1116 | else: |
|
1117 | 1117 | data['auth_token'] = self.token_obfuscated |
|
1118 | 1118 | return data |
|
1119 | 1119 | |
|
1120 | 1120 | @hybrid_property |
|
1121 | 1121 | def description_safe(self): |
|
1122 | 1122 | from rhodecode.lib import helpers as h |
|
1123 | 1123 | return h.escape(self.description) |
|
1124 | 1124 | |
|
1125 | 1125 | @property |
|
1126 | 1126 | def expired(self): |
|
1127 | 1127 | if self.expires == -1: |
|
1128 | 1128 | return False |
|
1129 | 1129 | return time.time() > self.expires |
|
1130 | 1130 | |
|
1131 | 1131 | @classmethod |
|
1132 | 1132 | def _get_role_name(cls, role): |
|
1133 | 1133 | return { |
|
1134 | 1134 | cls.ROLE_ALL: _('all'), |
|
1135 | 1135 | cls.ROLE_HTTP: _('http/web interface'), |
|
1136 | 1136 | cls.ROLE_VCS: _('vcs (git/hg/svn protocol)'), |
|
1137 | 1137 | cls.ROLE_API: _('api calls'), |
|
1138 | 1138 | cls.ROLE_FEED: _('feed access'), |
|
1139 | 1139 | }.get(role, role) |
|
1140 | 1140 | |
|
1141 | 1141 | @property |
|
1142 | 1142 | def role_humanized(self): |
|
1143 | 1143 | return self._get_role_name(self.role) |
|
1144 | 1144 | |
|
1145 | 1145 | def _get_scope(self): |
|
1146 | 1146 | if self.repo: |
|
1147 | 1147 | return 'Repository: {}'.format(self.repo.repo_name) |
|
1148 | 1148 | if self.repo_group: |
|
1149 | 1149 | return 'RepositoryGroup: {} (recursive)'.format(self.repo_group.group_name) |
|
1150 | 1150 | return 'Global' |
|
1151 | 1151 | |
|
1152 | 1152 | @property |
|
1153 | 1153 | def scope_humanized(self): |
|
1154 | 1154 | return self._get_scope() |
|
1155 | 1155 | |
|
1156 | 1156 | @property |
|
1157 | 1157 | def token_obfuscated(self): |
|
1158 | 1158 | if self.api_key: |
|
1159 | 1159 | return self.api_key[:4] + "****" |
|
1160 | 1160 | |
|
1161 | 1161 | |
|
1162 | 1162 | class UserEmailMap(Base, BaseModel): |
|
1163 | 1163 | __tablename__ = 'user_email_map' |
|
1164 | 1164 | __table_args__ = ( |
|
1165 | 1165 | Index('uem_email_idx', 'email'), |
|
1166 | 1166 | UniqueConstraint('email'), |
|
1167 | 1167 | base_table_args |
|
1168 | 1168 | ) |
|
1169 | 1169 | __mapper_args__ = {} |
|
1170 | 1170 | |
|
1171 | 1171 | email_id = Column("email_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1172 | 1172 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1173 | 1173 | _email = Column("email", String(255), nullable=True, unique=False, default=None) |
|
1174 | 1174 | user = relationship('User', lazy='joined') |
|
1175 | 1175 | |
|
1176 | 1176 | @validates('_email') |
|
1177 | 1177 | def validate_email(self, key, email): |
|
1178 | 1178 | # check if this email is not main one |
|
1179 | 1179 | main_email = Session().query(User).filter(User.email == email).scalar() |
|
1180 | 1180 | if main_email is not None: |
|
1181 | 1181 | raise AttributeError('email %s is present is user table' % email) |
|
1182 | 1182 | return email |
|
1183 | 1183 | |
|
1184 | 1184 | @hybrid_property |
|
1185 | 1185 | def email(self): |
|
1186 | 1186 | return self._email |
|
1187 | 1187 | |
|
1188 | 1188 | @email.setter |
|
1189 | 1189 | def email(self, val): |
|
1190 | 1190 | self._email = val.lower() if val else None |
|
1191 | 1191 | |
|
1192 | 1192 | |
|
1193 | 1193 | class UserIpMap(Base, BaseModel): |
|
1194 | 1194 | __tablename__ = 'user_ip_map' |
|
1195 | 1195 | __table_args__ = ( |
|
1196 | 1196 | UniqueConstraint('user_id', 'ip_addr'), |
|
1197 | 1197 | base_table_args |
|
1198 | 1198 | ) |
|
1199 | 1199 | __mapper_args__ = {} |
|
1200 | 1200 | |
|
1201 | 1201 | ip_id = Column("ip_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1202 | 1202 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1203 | 1203 | ip_addr = Column("ip_addr", String(255), nullable=True, unique=False, default=None) |
|
1204 | 1204 | active = Column("active", Boolean(), nullable=True, unique=None, default=True) |
|
1205 | 1205 | description = Column("description", String(10000), nullable=True, unique=None, default=None) |
|
1206 | 1206 | user = relationship('User', lazy='joined') |
|
1207 | 1207 | |
|
1208 | 1208 | @hybrid_property |
|
1209 | 1209 | def description_safe(self): |
|
1210 | 1210 | from rhodecode.lib import helpers as h |
|
1211 | 1211 | return h.escape(self.description) |
|
1212 | 1212 | |
|
1213 | 1213 | @classmethod |
|
1214 | 1214 | def _get_ip_range(cls, ip_addr): |
|
1215 | 1215 | net = ipaddress.ip_network(safe_unicode(ip_addr), strict=False) |
|
1216 | 1216 | return [str(net.network_address), str(net.broadcast_address)] |
|
1217 | 1217 | |
|
1218 | 1218 | def __json__(self): |
|
1219 | 1219 | return { |
|
1220 | 1220 | 'ip_addr': self.ip_addr, |
|
1221 | 1221 | 'ip_range': self._get_ip_range(self.ip_addr), |
|
1222 | 1222 | } |
|
1223 | 1223 | |
|
1224 | 1224 | def __unicode__(self): |
|
1225 | 1225 | return u"<%s('user_id:%s=>%s')>" % (self.__class__.__name__, |
|
1226 | 1226 | self.user_id, self.ip_addr) |
|
1227 | 1227 | |
|
1228 | 1228 | |
|
1229 | 1229 | class UserSshKeys(Base, BaseModel): |
|
1230 | 1230 | __tablename__ = 'user_ssh_keys' |
|
1231 | 1231 | __table_args__ = ( |
|
1232 | 1232 | Index('usk_ssh_key_fingerprint_idx', 'ssh_key_fingerprint'), |
|
1233 | 1233 | |
|
1234 | 1234 | UniqueConstraint('ssh_key_fingerprint'), |
|
1235 | 1235 | |
|
1236 | 1236 | base_table_args |
|
1237 | 1237 | ) |
|
1238 | 1238 | __mapper_args__ = {} |
|
1239 | 1239 | |
|
1240 | 1240 | ssh_key_id = Column('ssh_key_id', Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1241 | 1241 | ssh_key_data = Column('ssh_key_data', String(10240), nullable=False, unique=None, default=None) |
|
1242 | 1242 | ssh_key_fingerprint = Column('ssh_key_fingerprint', String(255), nullable=False, unique=None, default=None) |
|
1243 | 1243 | |
|
1244 | 1244 | description = Column('description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
1245 | 1245 | |
|
1246 | 1246 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1247 | 1247 | accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True, default=None) |
|
1248 | 1248 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
1249 | 1249 | |
|
1250 | 1250 | user = relationship('User', lazy='joined') |
|
1251 | 1251 | |
|
1252 | 1252 | def __json__(self): |
|
1253 | 1253 | data = { |
|
1254 | 1254 | 'ssh_fingerprint': self.ssh_key_fingerprint, |
|
1255 | 1255 | 'description': self.description, |
|
1256 | 1256 | 'created_on': self.created_on |
|
1257 | 1257 | } |
|
1258 | 1258 | return data |
|
1259 | 1259 | |
|
1260 | 1260 | def get_api_data(self): |
|
1261 | 1261 | data = self.__json__() |
|
1262 | 1262 | return data |
|
1263 | 1263 | |
|
1264 | 1264 | |
|
1265 | 1265 | class UserLog(Base, BaseModel): |
|
1266 | 1266 | __tablename__ = 'user_logs' |
|
1267 | 1267 | __table_args__ = ( |
|
1268 | 1268 | base_table_args, |
|
1269 | 1269 | ) |
|
1270 | 1270 | |
|
1271 | 1271 | VERSION_1 = 'v1' |
|
1272 | 1272 | VERSION_2 = 'v2' |
|
1273 | 1273 | VERSIONS = [VERSION_1, VERSION_2] |
|
1274 | 1274 | |
|
1275 | 1275 | user_log_id = Column("user_log_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1276 | 1276 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id',ondelete='SET NULL'), nullable=True, unique=None, default=None) |
|
1277 | 1277 | username = Column("username", String(255), nullable=True, unique=None, default=None) |
|
1278 | 1278 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id', ondelete='SET NULL'), nullable=True, unique=None, default=None) |
|
1279 | 1279 | repository_name = Column("repository_name", String(255), nullable=True, unique=None, default=None) |
|
1280 | 1280 | user_ip = Column("user_ip", String(255), nullable=True, unique=None, default=None) |
|
1281 | 1281 | action = Column("action", Text().with_variant(Text(1200000), 'mysql'), nullable=True, unique=None, default=None) |
|
1282 | 1282 | action_date = Column("action_date", DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
1283 | 1283 | |
|
1284 | 1284 | version = Column("version", String(255), nullable=True, default=VERSION_1) |
|
1285 | 1285 | user_data = Column('user_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT())))) |
|
1286 | 1286 | action_data = Column('action_data_json', MutationObj.as_mutable(JsonType(dialect_map=dict(mysql=LONGTEXT())))) |
|
1287 | 1287 | |
|
1288 | 1288 | def __unicode__(self): |
|
1289 | 1289 | return u"<%s('id:%s:%s')>" % ( |
|
1290 | 1290 | self.__class__.__name__, self.repository_name, self.action) |
|
1291 | 1291 | |
|
1292 | 1292 | def __json__(self): |
|
1293 | 1293 | return { |
|
1294 | 1294 | 'user_id': self.user_id, |
|
1295 | 1295 | 'username': self.username, |
|
1296 | 1296 | 'repository_id': self.repository_id, |
|
1297 | 1297 | 'repository_name': self.repository_name, |
|
1298 | 1298 | 'user_ip': self.user_ip, |
|
1299 | 1299 | 'action_date': self.action_date, |
|
1300 | 1300 | 'action': self.action, |
|
1301 | 1301 | } |
|
1302 | 1302 | |
|
1303 | 1303 | @hybrid_property |
|
1304 | 1304 | def entry_id(self): |
|
1305 | 1305 | return self.user_log_id |
|
1306 | 1306 | |
|
1307 | 1307 | @property |
|
1308 | 1308 | def action_as_day(self): |
|
1309 | 1309 | return datetime.date(*self.action_date.timetuple()[:3]) |
|
1310 | 1310 | |
|
1311 | 1311 | user = relationship('User') |
|
1312 | 1312 | repository = relationship('Repository', cascade='') |
|
1313 | 1313 | |
|
1314 | 1314 | |
|
1315 | 1315 | class UserGroup(Base, BaseModel): |
|
1316 | 1316 | __tablename__ = 'users_groups' |
|
1317 | 1317 | __table_args__ = ( |
|
1318 | 1318 | base_table_args, |
|
1319 | 1319 | ) |
|
1320 | 1320 | |
|
1321 | 1321 | users_group_id = Column("users_group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1322 | 1322 | users_group_name = Column("users_group_name", String(255), nullable=False, unique=True, default=None) |
|
1323 | 1323 | user_group_description = Column("user_group_description", String(10000), nullable=True, unique=None, default=None) |
|
1324 | 1324 | users_group_active = Column("users_group_active", Boolean(), nullable=True, unique=None, default=None) |
|
1325 | 1325 | inherit_default_permissions = Column("users_group_inherit_default_permissions", Boolean(), nullable=False, unique=None, default=True) |
|
1326 | 1326 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
1327 | 1327 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1328 | 1328 | _group_data = Column("group_data", LargeBinary(), nullable=True) # JSON data |
|
1329 | 1329 | |
|
1330 | 1330 | members = relationship('UserGroupMember', cascade="all, delete, delete-orphan", lazy="joined") |
|
1331 | 1331 | users_group_to_perm = relationship('UserGroupToPerm', cascade='all') |
|
1332 | 1332 | users_group_repo_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1333 | 1333 | users_group_repo_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
1334 | 1334 | user_user_group_to_perm = relationship('UserUserGroupToPerm', cascade='all') |
|
1335 | 1335 | user_group_user_group_to_perm = relationship('UserGroupUserGroupToPerm ', primaryjoin="UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id", cascade='all') |
|
1336 | 1336 | |
|
1337 | 1337 | user_group_review_rules = relationship('RepoReviewRuleUserGroup', cascade='all') |
|
1338 | 1338 | user = relationship('User', primaryjoin="User.user_id==UserGroup.user_id") |
|
1339 | 1339 | |
|
1340 | 1340 | @classmethod |
|
1341 | 1341 | def _load_group_data(cls, column): |
|
1342 | 1342 | if not column: |
|
1343 | 1343 | return {} |
|
1344 | 1344 | |
|
1345 | 1345 | try: |
|
1346 | 1346 | return json.loads(column) or {} |
|
1347 | 1347 | except TypeError: |
|
1348 | 1348 | return {} |
|
1349 | 1349 | |
|
1350 | 1350 | @hybrid_property |
|
1351 | 1351 | def description_safe(self): |
|
1352 | 1352 | from rhodecode.lib import helpers as h |
|
1353 | 1353 | return h.escape(self.user_group_description) |
|
1354 | 1354 | |
|
1355 | 1355 | @hybrid_property |
|
1356 | 1356 | def group_data(self): |
|
1357 | 1357 | return self._load_group_data(self._group_data) |
|
1358 | 1358 | |
|
1359 | 1359 | @group_data.expression |
|
1360 | 1360 | def group_data(self, **kwargs): |
|
1361 | 1361 | return self._group_data |
|
1362 | 1362 | |
|
1363 | 1363 | @group_data.setter |
|
1364 | 1364 | def group_data(self, val): |
|
1365 | 1365 | try: |
|
1366 | 1366 | self._group_data = json.dumps(val) |
|
1367 | 1367 | except Exception: |
|
1368 | 1368 | log.error(traceback.format_exc()) |
|
1369 | 1369 | |
|
1370 | 1370 | @classmethod |
|
1371 | 1371 | def _load_sync(cls, group_data): |
|
1372 | 1372 | if group_data: |
|
1373 | 1373 | return group_data.get('extern_type') |
|
1374 | 1374 | |
|
1375 | 1375 | @property |
|
1376 | 1376 | def sync(self): |
|
1377 | 1377 | return self._load_sync(self.group_data) |
|
1378 | 1378 | |
|
1379 | 1379 | def __unicode__(self): |
|
1380 | 1380 | return u"<%s('id:%s:%s')>" % (self.__class__.__name__, |
|
1381 | 1381 | self.users_group_id, |
|
1382 | 1382 | self.users_group_name) |
|
1383 | 1383 | |
|
1384 | 1384 | @classmethod |
|
1385 | 1385 | def get_by_group_name(cls, group_name, cache=False, |
|
1386 | 1386 | case_insensitive=False): |
|
1387 | 1387 | if case_insensitive: |
|
1388 | 1388 | q = cls.query().filter(func.lower(cls.users_group_name) == |
|
1389 | 1389 | func.lower(group_name)) |
|
1390 | 1390 | |
|
1391 | 1391 | else: |
|
1392 | 1392 | q = cls.query().filter(cls.users_group_name == group_name) |
|
1393 | 1393 | if cache: |
|
1394 | 1394 | q = q.options( |
|
1395 | 1395 | FromCache("sql_cache_short", "get_group_%s" % _hash_key(group_name))) |
|
1396 | 1396 | return q.scalar() |
|
1397 | 1397 | |
|
1398 | 1398 | @classmethod |
|
1399 | 1399 | def get(cls, user_group_id, cache=False): |
|
1400 | 1400 | if not user_group_id: |
|
1401 | 1401 | return |
|
1402 | 1402 | |
|
1403 | 1403 | user_group = cls.query() |
|
1404 | 1404 | if cache: |
|
1405 | 1405 | user_group = user_group.options( |
|
1406 | 1406 | FromCache("sql_cache_short", "get_users_group_%s" % user_group_id)) |
|
1407 | 1407 | return user_group.get(user_group_id) |
|
1408 | 1408 | |
|
1409 | 1409 | def permissions(self, with_admins=True, with_owner=True, |
|
1410 | 1410 | expand_from_user_groups=False): |
|
1411 | 1411 | """ |
|
1412 | 1412 | Permissions for user groups |
|
1413 | 1413 | """ |
|
1414 | 1414 | _admin_perm = 'usergroup.admin' |
|
1415 | 1415 | |
|
1416 | 1416 | owner_row = [] |
|
1417 | 1417 | if with_owner: |
|
1418 | 1418 | usr = AttributeDict(self.user.get_dict()) |
|
1419 | 1419 | usr.owner_row = True |
|
1420 | 1420 | usr.permission = _admin_perm |
|
1421 | 1421 | owner_row.append(usr) |
|
1422 | 1422 | |
|
1423 | 1423 | super_admin_ids = [] |
|
1424 | 1424 | super_admin_rows = [] |
|
1425 | 1425 | if with_admins: |
|
1426 | 1426 | for usr in User.get_all_super_admins(): |
|
1427 | 1427 | super_admin_ids.append(usr.user_id) |
|
1428 | 1428 | # if this admin is also owner, don't double the record |
|
1429 | 1429 | if usr.user_id == owner_row[0].user_id: |
|
1430 | 1430 | owner_row[0].admin_row = True |
|
1431 | 1431 | else: |
|
1432 | 1432 | usr = AttributeDict(usr.get_dict()) |
|
1433 | 1433 | usr.admin_row = True |
|
1434 | 1434 | usr.permission = _admin_perm |
|
1435 | 1435 | super_admin_rows.append(usr) |
|
1436 | 1436 | |
|
1437 | 1437 | q = UserUserGroupToPerm.query().filter(UserUserGroupToPerm.user_group == self) |
|
1438 | 1438 | q = q.options(joinedload(UserUserGroupToPerm.user_group), |
|
1439 | 1439 | joinedload(UserUserGroupToPerm.user), |
|
1440 | 1440 | joinedload(UserUserGroupToPerm.permission),) |
|
1441 | 1441 | |
|
1442 | 1442 | # get owners and admins and permissions. We do a trick of re-writing |
|
1443 | 1443 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1444 | 1444 | # has a global reference and changing one object propagates to all |
|
1445 | 1445 | # others. This means if admin is also an owner admin_row that change |
|
1446 | 1446 | # would propagate to both objects |
|
1447 | 1447 | perm_rows = [] |
|
1448 | 1448 | for _usr in q.all(): |
|
1449 | 1449 | usr = AttributeDict(_usr.user.get_dict()) |
|
1450 | 1450 | # if this user is also owner/admin, mark as duplicate record |
|
1451 | 1451 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
1452 | 1452 | usr.duplicate_perm = True |
|
1453 | 1453 | usr.permission = _usr.permission.permission_name |
|
1454 | 1454 | perm_rows.append(usr) |
|
1455 | 1455 | |
|
1456 | 1456 | # filter the perm rows by 'default' first and then sort them by |
|
1457 | 1457 | # admin,write,read,none permissions sorted again alphabetically in |
|
1458 | 1458 | # each group |
|
1459 | 1459 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
1460 | 1460 | |
|
1461 | 1461 | user_groups_rows = [] |
|
1462 | 1462 | if expand_from_user_groups: |
|
1463 | 1463 | for ug in self.permission_user_groups(with_members=True): |
|
1464 | 1464 | for user_data in ug.members: |
|
1465 | 1465 | user_groups_rows.append(user_data) |
|
1466 | 1466 | |
|
1467 | 1467 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
1468 | 1468 | |
|
1469 | 1469 | def permission_user_groups(self, with_members=False): |
|
1470 | 1470 | q = UserGroupUserGroupToPerm.query()\ |
|
1471 | 1471 | .filter(UserGroupUserGroupToPerm.target_user_group == self) |
|
1472 | 1472 | q = q.options(joinedload(UserGroupUserGroupToPerm.user_group), |
|
1473 | 1473 | joinedload(UserGroupUserGroupToPerm.target_user_group), |
|
1474 | 1474 | joinedload(UserGroupUserGroupToPerm.permission),) |
|
1475 | 1475 | |
|
1476 | 1476 | perm_rows = [] |
|
1477 | 1477 | for _user_group in q.all(): |
|
1478 | 1478 | entry = AttributeDict(_user_group.user_group.get_dict()) |
|
1479 | 1479 | entry.permission = _user_group.permission.permission_name |
|
1480 | 1480 | if with_members: |
|
1481 | 1481 | entry.members = [x.user.get_dict() |
|
1482 | 1482 | for x in _user_group.user_group.members] |
|
1483 | 1483 | perm_rows.append(entry) |
|
1484 | 1484 | |
|
1485 | 1485 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
1486 | 1486 | return perm_rows |
|
1487 | 1487 | |
|
1488 | 1488 | def _get_default_perms(self, user_group, suffix=''): |
|
1489 | 1489 | from rhodecode.model.permission import PermissionModel |
|
1490 | 1490 | return PermissionModel().get_default_perms(user_group.users_group_to_perm, suffix) |
|
1491 | 1491 | |
|
1492 | 1492 | def get_default_perms(self, suffix=''): |
|
1493 | 1493 | return self._get_default_perms(self, suffix) |
|
1494 | 1494 | |
|
1495 | 1495 | def get_api_data(self, with_group_members=True, include_secrets=False): |
|
1496 | 1496 | """ |
|
1497 | 1497 | :param include_secrets: See :meth:`User.get_api_data`, this parameter is |
|
1498 | 1498 | basically forwarded. |
|
1499 | 1499 | |
|
1500 | 1500 | """ |
|
1501 | 1501 | user_group = self |
|
1502 | 1502 | data = { |
|
1503 | 1503 | 'users_group_id': user_group.users_group_id, |
|
1504 | 1504 | 'group_name': user_group.users_group_name, |
|
1505 | 1505 | 'group_description': user_group.user_group_description, |
|
1506 | 1506 | 'active': user_group.users_group_active, |
|
1507 | 1507 | 'owner': user_group.user.username, |
|
1508 | 1508 | 'sync': user_group.sync, |
|
1509 | 1509 | 'owner_email': user_group.user.email, |
|
1510 | 1510 | } |
|
1511 | 1511 | |
|
1512 | 1512 | if with_group_members: |
|
1513 | 1513 | users = [] |
|
1514 | 1514 | for user in user_group.members: |
|
1515 | 1515 | user = user.user |
|
1516 | 1516 | users.append(user.get_api_data(include_secrets=include_secrets)) |
|
1517 | 1517 | data['users'] = users |
|
1518 | 1518 | |
|
1519 | 1519 | return data |
|
1520 | 1520 | |
|
1521 | 1521 | |
|
1522 | 1522 | class UserGroupMember(Base, BaseModel): |
|
1523 | 1523 | __tablename__ = 'users_groups_members' |
|
1524 | 1524 | __table_args__ = ( |
|
1525 | 1525 | base_table_args, |
|
1526 | 1526 | ) |
|
1527 | 1527 | |
|
1528 | 1528 | users_group_member_id = Column("users_group_member_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1529 | 1529 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
1530 | 1530 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
1531 | 1531 | |
|
1532 | 1532 | user = relationship('User', lazy='joined') |
|
1533 | 1533 | users_group = relationship('UserGroup') |
|
1534 | 1534 | |
|
1535 | 1535 | def __init__(self, gr_id='', u_id=''): |
|
1536 | 1536 | self.users_group_id = gr_id |
|
1537 | 1537 | self.user_id = u_id |
|
1538 | 1538 | |
|
1539 | 1539 | |
|
1540 | 1540 | class RepositoryField(Base, BaseModel): |
|
1541 | 1541 | __tablename__ = 'repositories_fields' |
|
1542 | 1542 | __table_args__ = ( |
|
1543 | 1543 | UniqueConstraint('repository_id', 'field_key'), # no-multi field |
|
1544 | 1544 | base_table_args, |
|
1545 | 1545 | ) |
|
1546 | 1546 | |
|
1547 | 1547 | PREFIX = 'ex_' # prefix used in form to not conflict with already existing fields |
|
1548 | 1548 | |
|
1549 | 1549 | repo_field_id = Column("repo_field_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
1550 | 1550 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
1551 | 1551 | field_key = Column("field_key", String(250)) |
|
1552 | 1552 | field_label = Column("field_label", String(1024), nullable=False) |
|
1553 | 1553 | field_value = Column("field_value", String(10000), nullable=False) |
|
1554 | 1554 | field_desc = Column("field_desc", String(1024), nullable=False) |
|
1555 | 1555 | field_type = Column("field_type", String(255), nullable=False, unique=None) |
|
1556 | 1556 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
1557 | 1557 | |
|
1558 | 1558 | repository = relationship('Repository') |
|
1559 | 1559 | |
|
1560 | 1560 | @property |
|
1561 | 1561 | def field_key_prefixed(self): |
|
1562 | 1562 | return 'ex_%s' % self.field_key |
|
1563 | 1563 | |
|
1564 | 1564 | @classmethod |
|
1565 | 1565 | def un_prefix_key(cls, key): |
|
1566 | 1566 | if key.startswith(cls.PREFIX): |
|
1567 | 1567 | return key[len(cls.PREFIX):] |
|
1568 | 1568 | return key |
|
1569 | 1569 | |
|
1570 | 1570 | @classmethod |
|
1571 | 1571 | def get_by_key_name(cls, key, repo): |
|
1572 | 1572 | row = cls.query()\ |
|
1573 | 1573 | .filter(cls.repository == repo)\ |
|
1574 | 1574 | .filter(cls.field_key == key).scalar() |
|
1575 | 1575 | return row |
|
1576 | 1576 | |
|
1577 | 1577 | |
|
1578 | 1578 | class Repository(Base, BaseModel): |
|
1579 | 1579 | __tablename__ = 'repositories' |
|
1580 | 1580 | __table_args__ = ( |
|
1581 | 1581 | Index('r_repo_name_idx', 'repo_name', mysql_length=255), |
|
1582 | 1582 | base_table_args, |
|
1583 | 1583 | ) |
|
1584 | 1584 | DEFAULT_CLONE_URI = '{scheme}://{user}@{netloc}/{repo}' |
|
1585 | 1585 | DEFAULT_CLONE_URI_ID = '{scheme}://{user}@{netloc}/_{repoid}' |
|
1586 | 1586 | DEFAULT_CLONE_URI_SSH = 'ssh://{sys_user}@{hostname}/{repo}' |
|
1587 | 1587 | |
|
1588 | 1588 | STATE_CREATED = 'repo_state_created' |
|
1589 | 1589 | STATE_PENDING = 'repo_state_pending' |
|
1590 | 1590 | STATE_ERROR = 'repo_state_error' |
|
1591 | 1591 | |
|
1592 | 1592 | LOCK_AUTOMATIC = 'lock_auto' |
|
1593 | 1593 | LOCK_API = 'lock_api' |
|
1594 | 1594 | LOCK_WEB = 'lock_web' |
|
1595 | 1595 | LOCK_PULL = 'lock_pull' |
|
1596 | 1596 | |
|
1597 | 1597 | NAME_SEP = URL_SEP |
|
1598 | 1598 | |
|
1599 | 1599 | repo_id = Column( |
|
1600 | 1600 | "repo_id", Integer(), nullable=False, unique=True, default=None, |
|
1601 | 1601 | primary_key=True) |
|
1602 | 1602 | _repo_name = Column( |
|
1603 | 1603 | "repo_name", Text(), nullable=False, default=None) |
|
1604 | 1604 | _repo_name_hash = Column( |
|
1605 | 1605 | "repo_name_hash", String(255), nullable=False, unique=True) |
|
1606 | 1606 | repo_state = Column("repo_state", String(255), nullable=True) |
|
1607 | 1607 | |
|
1608 | 1608 | clone_uri = Column( |
|
1609 | 1609 | "clone_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1610 | 1610 | default=None) |
|
1611 | 1611 | push_uri = Column( |
|
1612 | 1612 | "push_uri", EncryptedTextValue(), nullable=True, unique=False, |
|
1613 | 1613 | default=None) |
|
1614 | 1614 | repo_type = Column( |
|
1615 | 1615 | "repo_type", String(255), nullable=False, unique=False, default=None) |
|
1616 | 1616 | user_id = Column( |
|
1617 | 1617 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
1618 | 1618 | unique=False, default=None) |
|
1619 | 1619 | private = Column( |
|
1620 | 1620 | "private", Boolean(), nullable=True, unique=None, default=None) |
|
1621 | 1621 | archived = Column( |
|
1622 | 1622 | "archived", Boolean(), nullable=True, unique=None, default=None) |
|
1623 | 1623 | enable_statistics = Column( |
|
1624 | 1624 | "statistics", Boolean(), nullable=True, unique=None, default=True) |
|
1625 | 1625 | enable_downloads = Column( |
|
1626 | 1626 | "downloads", Boolean(), nullable=True, unique=None, default=True) |
|
1627 | 1627 | description = Column( |
|
1628 | 1628 | "description", String(10000), nullable=True, unique=None, default=None) |
|
1629 | 1629 | created_on = Column( |
|
1630 | 1630 | 'created_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1631 | 1631 | default=datetime.datetime.now) |
|
1632 | 1632 | updated_on = Column( |
|
1633 | 1633 | 'updated_on', DateTime(timezone=False), nullable=True, unique=None, |
|
1634 | 1634 | default=datetime.datetime.now) |
|
1635 | 1635 | _landing_revision = Column( |
|
1636 | 1636 | "landing_revision", String(255), nullable=False, unique=False, |
|
1637 | 1637 | default=None) |
|
1638 | 1638 | enable_locking = Column( |
|
1639 | 1639 | "enable_locking", Boolean(), nullable=False, unique=None, |
|
1640 | 1640 | default=False) |
|
1641 | 1641 | _locked = Column( |
|
1642 | 1642 | "locked", String(255), nullable=True, unique=False, default=None) |
|
1643 | 1643 | _changeset_cache = Column( |
|
1644 | 1644 | "changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
1645 | 1645 | |
|
1646 | 1646 | fork_id = Column( |
|
1647 | 1647 | "fork_id", Integer(), ForeignKey('repositories.repo_id'), |
|
1648 | 1648 | nullable=True, unique=False, default=None) |
|
1649 | 1649 | group_id = Column( |
|
1650 | 1650 | "group_id", Integer(), ForeignKey('groups.group_id'), nullable=True, |
|
1651 | 1651 | unique=False, default=None) |
|
1652 | 1652 | |
|
1653 | 1653 | user = relationship('User', lazy='joined') |
|
1654 | 1654 | fork = relationship('Repository', remote_side=repo_id, lazy='joined') |
|
1655 | 1655 | group = relationship('RepoGroup', lazy='joined') |
|
1656 | 1656 | repo_to_perm = relationship( |
|
1657 | 1657 | 'UserRepoToPerm', cascade='all', |
|
1658 | 1658 | order_by='UserRepoToPerm.repo_to_perm_id') |
|
1659 | 1659 | users_group_to_perm = relationship('UserGroupRepoToPerm', cascade='all') |
|
1660 | 1660 | stats = relationship('Statistics', cascade='all', uselist=False) |
|
1661 | 1661 | |
|
1662 | 1662 | followers = relationship( |
|
1663 | 1663 | 'UserFollowing', |
|
1664 | 1664 | primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id', |
|
1665 | 1665 | cascade='all') |
|
1666 | 1666 | extra_fields = relationship( |
|
1667 | 1667 | 'RepositoryField', cascade="all, delete, delete-orphan") |
|
1668 | 1668 | logs = relationship('UserLog') |
|
1669 | 1669 | comments = relationship( |
|
1670 | 1670 | 'ChangesetComment', cascade="all, delete, delete-orphan") |
|
1671 | 1671 | pull_requests_source = relationship( |
|
1672 | 1672 | 'PullRequest', |
|
1673 | 1673 | primaryjoin='PullRequest.source_repo_id==Repository.repo_id', |
|
1674 | 1674 | cascade="all, delete, delete-orphan") |
|
1675 | 1675 | pull_requests_target = relationship( |
|
1676 | 1676 | 'PullRequest', |
|
1677 | 1677 | primaryjoin='PullRequest.target_repo_id==Repository.repo_id', |
|
1678 | 1678 | cascade="all, delete, delete-orphan") |
|
1679 | 1679 | ui = relationship('RepoRhodeCodeUi', cascade="all") |
|
1680 | 1680 | settings = relationship('RepoRhodeCodeSetting', cascade="all") |
|
1681 | 1681 | integrations = relationship('Integration', |
|
1682 | 1682 | cascade="all, delete, delete-orphan") |
|
1683 | 1683 | |
|
1684 | 1684 | scoped_tokens = relationship('UserApiKeys', cascade="all") |
|
1685 | 1685 | |
|
1686 | 1686 | def __unicode__(self): |
|
1687 | 1687 | return u"<%s('%s:%s')>" % (self.__class__.__name__, self.repo_id, |
|
1688 | 1688 | safe_unicode(self.repo_name)) |
|
1689 | 1689 | |
|
1690 | 1690 | @hybrid_property |
|
1691 | 1691 | def description_safe(self): |
|
1692 | 1692 | from rhodecode.lib import helpers as h |
|
1693 | 1693 | return h.escape(self.description) |
|
1694 | 1694 | |
|
1695 | 1695 | @hybrid_property |
|
1696 | 1696 | def landing_rev(self): |
|
1697 | 1697 | # always should return [rev_type, rev] |
|
1698 | 1698 | if self._landing_revision: |
|
1699 | 1699 | _rev_info = self._landing_revision.split(':') |
|
1700 | 1700 | if len(_rev_info) < 2: |
|
1701 | 1701 | _rev_info.insert(0, 'rev') |
|
1702 | 1702 | return [_rev_info[0], _rev_info[1]] |
|
1703 | 1703 | return [None, None] |
|
1704 | 1704 | |
|
1705 | 1705 | @landing_rev.setter |
|
1706 | 1706 | def landing_rev(self, val): |
|
1707 | 1707 | if ':' not in val: |
|
1708 | 1708 | raise ValueError('value must be delimited with `:` and consist ' |
|
1709 | 1709 | 'of <rev_type>:<rev>, got %s instead' % val) |
|
1710 | 1710 | self._landing_revision = val |
|
1711 | 1711 | |
|
1712 | 1712 | @hybrid_property |
|
1713 | 1713 | def locked(self): |
|
1714 | 1714 | if self._locked: |
|
1715 | 1715 | user_id, timelocked, reason = self._locked.split(':') |
|
1716 | 1716 | lock_values = int(user_id), timelocked, reason |
|
1717 | 1717 | else: |
|
1718 | 1718 | lock_values = [None, None, None] |
|
1719 | 1719 | return lock_values |
|
1720 | 1720 | |
|
1721 | 1721 | @locked.setter |
|
1722 | 1722 | def locked(self, val): |
|
1723 | 1723 | if val and isinstance(val, (list, tuple)): |
|
1724 | 1724 | self._locked = ':'.join(map(str, val)) |
|
1725 | 1725 | else: |
|
1726 | 1726 | self._locked = None |
|
1727 | 1727 | |
|
1728 | 1728 | @hybrid_property |
|
1729 | 1729 | def changeset_cache(self): |
|
1730 | 1730 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
1731 | 1731 | dummy = EmptyCommit().__json__() |
|
1732 | 1732 | if not self._changeset_cache: |
|
1733 | 1733 | dummy['source_repo_id'] = self.repo_id |
|
1734 | 1734 | return json.loads(json.dumps(dummy)) |
|
1735 | 1735 | |
|
1736 | 1736 | try: |
|
1737 | 1737 | return json.loads(self._changeset_cache) |
|
1738 | 1738 | except TypeError: |
|
1739 | 1739 | return dummy |
|
1740 | 1740 | except Exception: |
|
1741 | 1741 | log.error(traceback.format_exc()) |
|
1742 | 1742 | return dummy |
|
1743 | 1743 | |
|
1744 | 1744 | @changeset_cache.setter |
|
1745 | 1745 | def changeset_cache(self, val): |
|
1746 | 1746 | try: |
|
1747 | 1747 | self._changeset_cache = json.dumps(val) |
|
1748 | 1748 | except Exception: |
|
1749 | 1749 | log.error(traceback.format_exc()) |
|
1750 | 1750 | |
|
1751 | 1751 | @hybrid_property |
|
1752 | 1752 | def repo_name(self): |
|
1753 | 1753 | return self._repo_name |
|
1754 | 1754 | |
|
1755 | 1755 | @repo_name.setter |
|
1756 | 1756 | def repo_name(self, value): |
|
1757 | 1757 | self._repo_name = value |
|
1758 | 1758 | self._repo_name_hash = hashlib.sha1(safe_str(value)).hexdigest() |
|
1759 | 1759 | |
|
1760 | 1760 | @classmethod |
|
1761 | 1761 | def normalize_repo_name(cls, repo_name): |
|
1762 | 1762 | """ |
|
1763 | 1763 | Normalizes os specific repo_name to the format internally stored inside |
|
1764 | 1764 | database using URL_SEP |
|
1765 | 1765 | |
|
1766 | 1766 | :param cls: |
|
1767 | 1767 | :param repo_name: |
|
1768 | 1768 | """ |
|
1769 | 1769 | return cls.NAME_SEP.join(repo_name.split(os.sep)) |
|
1770 | 1770 | |
|
1771 | 1771 | @classmethod |
|
1772 | 1772 | def get_by_repo_name(cls, repo_name, cache=False, identity_cache=False): |
|
1773 | 1773 | session = Session() |
|
1774 | 1774 | q = session.query(cls).filter(cls.repo_name == repo_name) |
|
1775 | 1775 | |
|
1776 | 1776 | if cache: |
|
1777 | 1777 | if identity_cache: |
|
1778 | 1778 | val = cls.identity_cache(session, 'repo_name', repo_name) |
|
1779 | 1779 | if val: |
|
1780 | 1780 | return val |
|
1781 | 1781 | else: |
|
1782 | 1782 | cache_key = "get_repo_by_name_%s" % _hash_key(repo_name) |
|
1783 | 1783 | q = q.options( |
|
1784 | 1784 | FromCache("sql_cache_short", cache_key)) |
|
1785 | 1785 | |
|
1786 | 1786 | return q.scalar() |
|
1787 | 1787 | |
|
1788 | 1788 | @classmethod |
|
1789 | 1789 | def get_by_id_or_repo_name(cls, repoid): |
|
1790 | 1790 | if isinstance(repoid, (int, long)): |
|
1791 | 1791 | try: |
|
1792 | 1792 | repo = cls.get(repoid) |
|
1793 | 1793 | except ValueError: |
|
1794 | 1794 | repo = None |
|
1795 | 1795 | else: |
|
1796 | 1796 | repo = cls.get_by_repo_name(repoid) |
|
1797 | 1797 | return repo |
|
1798 | 1798 | |
|
1799 | 1799 | @classmethod |
|
1800 | 1800 | def get_by_full_path(cls, repo_full_path): |
|
1801 | 1801 | repo_name = repo_full_path.split(cls.base_path(), 1)[-1] |
|
1802 | 1802 | repo_name = cls.normalize_repo_name(repo_name) |
|
1803 | 1803 | return cls.get_by_repo_name(repo_name.strip(URL_SEP)) |
|
1804 | 1804 | |
|
1805 | 1805 | @classmethod |
|
1806 | 1806 | def get_repo_forks(cls, repo_id): |
|
1807 | 1807 | return cls.query().filter(Repository.fork_id == repo_id) |
|
1808 | 1808 | |
|
1809 | 1809 | @classmethod |
|
1810 | 1810 | def base_path(cls): |
|
1811 | 1811 | """ |
|
1812 | 1812 | Returns base path when all repos are stored |
|
1813 | 1813 | |
|
1814 | 1814 | :param cls: |
|
1815 | 1815 | """ |
|
1816 | 1816 | q = Session().query(RhodeCodeUi)\ |
|
1817 | 1817 | .filter(RhodeCodeUi.ui_key == cls.NAME_SEP) |
|
1818 | 1818 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1819 | 1819 | return q.one().ui_value |
|
1820 | 1820 | |
|
1821 | 1821 | @classmethod |
|
1822 | 1822 | def get_all_repos(cls, user_id=Optional(None), group_id=Optional(None), |
|
1823 | 1823 | case_insensitive=True, archived=False): |
|
1824 | 1824 | q = Repository.query() |
|
1825 | 1825 | |
|
1826 | 1826 | if not archived: |
|
1827 | 1827 | q = q.filter(Repository.archived.isnot(true())) |
|
1828 | 1828 | |
|
1829 | 1829 | if not isinstance(user_id, Optional): |
|
1830 | 1830 | q = q.filter(Repository.user_id == user_id) |
|
1831 | 1831 | |
|
1832 | 1832 | if not isinstance(group_id, Optional): |
|
1833 | 1833 | q = q.filter(Repository.group_id == group_id) |
|
1834 | 1834 | |
|
1835 | 1835 | if case_insensitive: |
|
1836 | 1836 | q = q.order_by(func.lower(Repository.repo_name)) |
|
1837 | 1837 | else: |
|
1838 | 1838 | q = q.order_by(Repository.repo_name) |
|
1839 | 1839 | |
|
1840 | 1840 | return q.all() |
|
1841 | 1841 | |
|
1842 | 1842 | @property |
|
1843 | 1843 | def forks(self): |
|
1844 | 1844 | """ |
|
1845 | 1845 | Return forks of this repo |
|
1846 | 1846 | """ |
|
1847 | 1847 | return Repository.get_repo_forks(self.repo_id) |
|
1848 | 1848 | |
|
1849 | 1849 | @property |
|
1850 | 1850 | def parent(self): |
|
1851 | 1851 | """ |
|
1852 | 1852 | Returns fork parent |
|
1853 | 1853 | """ |
|
1854 | 1854 | return self.fork |
|
1855 | 1855 | |
|
1856 | 1856 | @property |
|
1857 | 1857 | def just_name(self): |
|
1858 | 1858 | return self.repo_name.split(self.NAME_SEP)[-1] |
|
1859 | 1859 | |
|
1860 | 1860 | @property |
|
1861 | 1861 | def groups_with_parents(self): |
|
1862 | 1862 | groups = [] |
|
1863 | 1863 | if self.group is None: |
|
1864 | 1864 | return groups |
|
1865 | 1865 | |
|
1866 | 1866 | cur_gr = self.group |
|
1867 | 1867 | groups.insert(0, cur_gr) |
|
1868 | 1868 | while 1: |
|
1869 | 1869 | gr = getattr(cur_gr, 'parent_group', None) |
|
1870 | 1870 | cur_gr = cur_gr.parent_group |
|
1871 | 1871 | if gr is None: |
|
1872 | 1872 | break |
|
1873 | 1873 | groups.insert(0, gr) |
|
1874 | 1874 | |
|
1875 | 1875 | return groups |
|
1876 | 1876 | |
|
1877 | 1877 | @property |
|
1878 | 1878 | def groups_and_repo(self): |
|
1879 | 1879 | return self.groups_with_parents, self |
|
1880 | 1880 | |
|
1881 | 1881 | @LazyProperty |
|
1882 | 1882 | def repo_path(self): |
|
1883 | 1883 | """ |
|
1884 | 1884 | Returns base full path for that repository means where it actually |
|
1885 | 1885 | exists on a filesystem |
|
1886 | 1886 | """ |
|
1887 | 1887 | q = Session().query(RhodeCodeUi).filter( |
|
1888 | 1888 | RhodeCodeUi.ui_key == self.NAME_SEP) |
|
1889 | 1889 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
1890 | 1890 | return q.one().ui_value |
|
1891 | 1891 | |
|
1892 | 1892 | @property |
|
1893 | 1893 | def repo_full_path(self): |
|
1894 | 1894 | p = [self.repo_path] |
|
1895 | 1895 | # we need to split the name by / since this is how we store the |
|
1896 | 1896 | # names in the database, but that eventually needs to be converted |
|
1897 | 1897 | # into a valid system path |
|
1898 | 1898 | p += self.repo_name.split(self.NAME_SEP) |
|
1899 | 1899 | return os.path.join(*map(safe_unicode, p)) |
|
1900 | 1900 | |
|
1901 | 1901 | @property |
|
1902 | 1902 | def cache_keys(self): |
|
1903 | 1903 | """ |
|
1904 | 1904 | Returns associated cache keys for that repo |
|
1905 | 1905 | """ |
|
1906 | 1906 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
1907 | 1907 | repo_id=self.repo_id) |
|
1908 | 1908 | return CacheKey.query()\ |
|
1909 | 1909 | .filter(CacheKey.cache_args == invalidation_namespace)\ |
|
1910 | 1910 | .order_by(CacheKey.cache_key)\ |
|
1911 | 1911 | .all() |
|
1912 | 1912 | |
|
1913 | 1913 | @property |
|
1914 | 1914 | def cached_diffs_relative_dir(self): |
|
1915 | 1915 | """ |
|
1916 | 1916 | Return a relative to the repository store path of cached diffs |
|
1917 | 1917 | used for safe display for users, who shouldn't know the absolute store |
|
1918 | 1918 | path |
|
1919 | 1919 | """ |
|
1920 | 1920 | return os.path.join( |
|
1921 | 1921 | os.path.dirname(self.repo_name), |
|
1922 | 1922 | self.cached_diffs_dir.split(os.path.sep)[-1]) |
|
1923 | 1923 | |
|
1924 | 1924 | @property |
|
1925 | 1925 | def cached_diffs_dir(self): |
|
1926 | 1926 | path = self.repo_full_path |
|
1927 | 1927 | return os.path.join( |
|
1928 | 1928 | os.path.dirname(path), |
|
1929 | 1929 | '.__shadow_diff_cache_repo_{}'.format(self.repo_id)) |
|
1930 | 1930 | |
|
1931 | 1931 | def cached_diffs(self): |
|
1932 | 1932 | diff_cache_dir = self.cached_diffs_dir |
|
1933 | 1933 | if os.path.isdir(diff_cache_dir): |
|
1934 | 1934 | return os.listdir(diff_cache_dir) |
|
1935 | 1935 | return [] |
|
1936 | 1936 | |
|
1937 | 1937 | def shadow_repos(self): |
|
1938 | 1938 | shadow_repos_pattern = '.__shadow_repo_{}'.format(self.repo_id) |
|
1939 | 1939 | return [ |
|
1940 | 1940 | x for x in os.listdir(os.path.dirname(self.repo_full_path)) |
|
1941 | 1941 | if x.startswith(shadow_repos_pattern)] |
|
1942 | 1942 | |
|
1943 | 1943 | def get_new_name(self, repo_name): |
|
1944 | 1944 | """ |
|
1945 | 1945 | returns new full repository name based on assigned group and new new |
|
1946 | 1946 | |
|
1947 | 1947 | :param group_name: |
|
1948 | 1948 | """ |
|
1949 | 1949 | path_prefix = self.group.full_path_splitted if self.group else [] |
|
1950 | 1950 | return self.NAME_SEP.join(path_prefix + [repo_name]) |
|
1951 | 1951 | |
|
1952 | 1952 | @property |
|
1953 | 1953 | def _config(self): |
|
1954 | 1954 | """ |
|
1955 | 1955 | Returns db based config object. |
|
1956 | 1956 | """ |
|
1957 | 1957 | from rhodecode.lib.utils import make_db_config |
|
1958 | 1958 | return make_db_config(clear_session=False, repo=self) |
|
1959 | 1959 | |
|
1960 | 1960 | def permissions(self, with_admins=True, with_owner=True, |
|
1961 | 1961 | expand_from_user_groups=False): |
|
1962 | 1962 | """ |
|
1963 | 1963 | Permissions for repositories |
|
1964 | 1964 | """ |
|
1965 | 1965 | _admin_perm = 'repository.admin' |
|
1966 | 1966 | |
|
1967 | 1967 | owner_row = [] |
|
1968 | 1968 | if with_owner: |
|
1969 | 1969 | usr = AttributeDict(self.user.get_dict()) |
|
1970 | 1970 | usr.owner_row = True |
|
1971 | 1971 | usr.permission = _admin_perm |
|
1972 | 1972 | usr.permission_id = None |
|
1973 | 1973 | owner_row.append(usr) |
|
1974 | 1974 | |
|
1975 | 1975 | super_admin_ids = [] |
|
1976 | 1976 | super_admin_rows = [] |
|
1977 | 1977 | if with_admins: |
|
1978 | 1978 | for usr in User.get_all_super_admins(): |
|
1979 | 1979 | super_admin_ids.append(usr.user_id) |
|
1980 | 1980 | # if this admin is also owner, don't double the record |
|
1981 | 1981 | if usr.user_id == owner_row[0].user_id: |
|
1982 | 1982 | owner_row[0].admin_row = True |
|
1983 | 1983 | else: |
|
1984 | 1984 | usr = AttributeDict(usr.get_dict()) |
|
1985 | 1985 | usr.admin_row = True |
|
1986 | 1986 | usr.permission = _admin_perm |
|
1987 | 1987 | usr.permission_id = None |
|
1988 | 1988 | super_admin_rows.append(usr) |
|
1989 | 1989 | |
|
1990 | 1990 | q = UserRepoToPerm.query().filter(UserRepoToPerm.repository == self) |
|
1991 | 1991 | q = q.options(joinedload(UserRepoToPerm.repository), |
|
1992 | 1992 | joinedload(UserRepoToPerm.user), |
|
1993 | 1993 | joinedload(UserRepoToPerm.permission),) |
|
1994 | 1994 | |
|
1995 | 1995 | # get owners and admins and permissions. We do a trick of re-writing |
|
1996 | 1996 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
1997 | 1997 | # has a global reference and changing one object propagates to all |
|
1998 | 1998 | # others. This means if admin is also an owner admin_row that change |
|
1999 | 1999 | # would propagate to both objects |
|
2000 | 2000 | perm_rows = [] |
|
2001 | 2001 | for _usr in q.all(): |
|
2002 | 2002 | usr = AttributeDict(_usr.user.get_dict()) |
|
2003 | 2003 | # if this user is also owner/admin, mark as duplicate record |
|
2004 | 2004 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
2005 | 2005 | usr.duplicate_perm = True |
|
2006 | 2006 | # also check if this permission is maybe used by branch_permissions |
|
2007 | 2007 | if _usr.branch_perm_entry: |
|
2008 | 2008 | usr.branch_rules = [x.branch_rule_id for x in _usr.branch_perm_entry] |
|
2009 | 2009 | |
|
2010 | 2010 | usr.permission = _usr.permission.permission_name |
|
2011 | 2011 | usr.permission_id = _usr.repo_to_perm_id |
|
2012 | 2012 | perm_rows.append(usr) |
|
2013 | 2013 | |
|
2014 | 2014 | # filter the perm rows by 'default' first and then sort them by |
|
2015 | 2015 | # admin,write,read,none permissions sorted again alphabetically in |
|
2016 | 2016 | # each group |
|
2017 | 2017 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
2018 | 2018 | |
|
2019 | 2019 | user_groups_rows = [] |
|
2020 | 2020 | if expand_from_user_groups: |
|
2021 | 2021 | for ug in self.permission_user_groups(with_members=True): |
|
2022 | 2022 | for user_data in ug.members: |
|
2023 | 2023 | user_groups_rows.append(user_data) |
|
2024 | 2024 | |
|
2025 | 2025 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
2026 | 2026 | |
|
2027 | 2027 | def permission_user_groups(self, with_members=True): |
|
2028 | 2028 | q = UserGroupRepoToPerm.query()\ |
|
2029 | 2029 | .filter(UserGroupRepoToPerm.repository == self) |
|
2030 | 2030 | q = q.options(joinedload(UserGroupRepoToPerm.repository), |
|
2031 | 2031 | joinedload(UserGroupRepoToPerm.users_group), |
|
2032 | 2032 | joinedload(UserGroupRepoToPerm.permission),) |
|
2033 | 2033 | |
|
2034 | 2034 | perm_rows = [] |
|
2035 | 2035 | for _user_group in q.all(): |
|
2036 | 2036 | entry = AttributeDict(_user_group.users_group.get_dict()) |
|
2037 | 2037 | entry.permission = _user_group.permission.permission_name |
|
2038 | 2038 | if with_members: |
|
2039 | 2039 | entry.members = [x.user.get_dict() |
|
2040 | 2040 | for x in _user_group.users_group.members] |
|
2041 | 2041 | perm_rows.append(entry) |
|
2042 | 2042 | |
|
2043 | 2043 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
2044 | 2044 | return perm_rows |
|
2045 | 2045 | |
|
2046 | 2046 | def get_api_data(self, include_secrets=False): |
|
2047 | 2047 | """ |
|
2048 | 2048 | Common function for generating repo api data |
|
2049 | 2049 | |
|
2050 | 2050 | :param include_secrets: See :meth:`User.get_api_data`. |
|
2051 | 2051 | |
|
2052 | 2052 | """ |
|
2053 | 2053 | # TODO: mikhail: Here there is an anti-pattern, we probably need to |
|
2054 | 2054 | # move this methods on models level. |
|
2055 | 2055 | from rhodecode.model.settings import SettingsModel |
|
2056 | 2056 | from rhodecode.model.repo import RepoModel |
|
2057 | 2057 | |
|
2058 | 2058 | repo = self |
|
2059 | 2059 | _user_id, _time, _reason = self.locked |
|
2060 | 2060 | |
|
2061 | 2061 | data = { |
|
2062 | 2062 | 'repo_id': repo.repo_id, |
|
2063 | 2063 | 'repo_name': repo.repo_name, |
|
2064 | 2064 | 'repo_type': repo.repo_type, |
|
2065 | 2065 | 'clone_uri': repo.clone_uri or '', |
|
2066 | 2066 | 'push_uri': repo.push_uri or '', |
|
2067 | 2067 | 'url': RepoModel().get_url(self), |
|
2068 | 2068 | 'private': repo.private, |
|
2069 | 2069 | 'created_on': repo.created_on, |
|
2070 | 2070 | 'description': repo.description_safe, |
|
2071 | 2071 | 'landing_rev': repo.landing_rev, |
|
2072 | 2072 | 'owner': repo.user.username, |
|
2073 | 2073 | 'fork_of': repo.fork.repo_name if repo.fork else None, |
|
2074 | 2074 | 'fork_of_id': repo.fork.repo_id if repo.fork else None, |
|
2075 | 2075 | 'enable_statistics': repo.enable_statistics, |
|
2076 | 2076 | 'enable_locking': repo.enable_locking, |
|
2077 | 2077 | 'enable_downloads': repo.enable_downloads, |
|
2078 | 2078 | 'last_changeset': repo.changeset_cache, |
|
2079 | 2079 | 'locked_by': User.get(_user_id).get_api_data( |
|
2080 | 2080 | include_secrets=include_secrets) if _user_id else None, |
|
2081 | 2081 | 'locked_date': time_to_datetime(_time) if _time else None, |
|
2082 | 2082 | 'lock_reason': _reason if _reason else None, |
|
2083 | 2083 | } |
|
2084 | 2084 | |
|
2085 | 2085 | # TODO: mikhail: should be per-repo settings here |
|
2086 | 2086 | rc_config = SettingsModel().get_all_settings() |
|
2087 | 2087 | repository_fields = str2bool( |
|
2088 | 2088 | rc_config.get('rhodecode_repository_fields')) |
|
2089 | 2089 | if repository_fields: |
|
2090 | 2090 | for f in self.extra_fields: |
|
2091 | 2091 | data[f.field_key_prefixed] = f.field_value |
|
2092 | 2092 | |
|
2093 | 2093 | return data |
|
2094 | 2094 | |
|
2095 | 2095 | @classmethod |
|
2096 | 2096 | def lock(cls, repo, user_id, lock_time=None, lock_reason=None): |
|
2097 | 2097 | if not lock_time: |
|
2098 | 2098 | lock_time = time.time() |
|
2099 | 2099 | if not lock_reason: |
|
2100 | 2100 | lock_reason = cls.LOCK_AUTOMATIC |
|
2101 | 2101 | repo.locked = [user_id, lock_time, lock_reason] |
|
2102 | 2102 | Session().add(repo) |
|
2103 | 2103 | Session().commit() |
|
2104 | 2104 | |
|
2105 | 2105 | @classmethod |
|
2106 | 2106 | def unlock(cls, repo): |
|
2107 | 2107 | repo.locked = None |
|
2108 | 2108 | Session().add(repo) |
|
2109 | 2109 | Session().commit() |
|
2110 | 2110 | |
|
2111 | 2111 | @classmethod |
|
2112 | 2112 | def getlock(cls, repo): |
|
2113 | 2113 | return repo.locked |
|
2114 | 2114 | |
|
2115 | 2115 | def is_user_lock(self, user_id): |
|
2116 | 2116 | if self.lock[0]: |
|
2117 | 2117 | lock_user_id = safe_int(self.lock[0]) |
|
2118 | 2118 | user_id = safe_int(user_id) |
|
2119 | 2119 | # both are ints, and they are equal |
|
2120 | 2120 | return all([lock_user_id, user_id]) and lock_user_id == user_id |
|
2121 | 2121 | |
|
2122 | 2122 | return False |
|
2123 | 2123 | |
|
2124 | 2124 | def get_locking_state(self, action, user_id, only_when_enabled=True): |
|
2125 | 2125 | """ |
|
2126 | 2126 | Checks locking on this repository, if locking is enabled and lock is |
|
2127 | 2127 | present returns a tuple of make_lock, locked, locked_by. |
|
2128 | 2128 | make_lock can have 3 states None (do nothing) True, make lock |
|
2129 | 2129 | False release lock, This value is later propagated to hooks, which |
|
2130 | 2130 | do the locking. Think about this as signals passed to hooks what to do. |
|
2131 | 2131 | |
|
2132 | 2132 | """ |
|
2133 | 2133 | # TODO: johbo: This is part of the business logic and should be moved |
|
2134 | 2134 | # into the RepositoryModel. |
|
2135 | 2135 | |
|
2136 | 2136 | if action not in ('push', 'pull'): |
|
2137 | 2137 | raise ValueError("Invalid action value: %s" % repr(action)) |
|
2138 | 2138 | |
|
2139 | 2139 | # defines if locked error should be thrown to user |
|
2140 | 2140 | currently_locked = False |
|
2141 | 2141 | # defines if new lock should be made, tri-state |
|
2142 | 2142 | make_lock = None |
|
2143 | 2143 | repo = self |
|
2144 | 2144 | user = User.get(user_id) |
|
2145 | 2145 | |
|
2146 | 2146 | lock_info = repo.locked |
|
2147 | 2147 | |
|
2148 | 2148 | if repo and (repo.enable_locking or not only_when_enabled): |
|
2149 | 2149 | if action == 'push': |
|
2150 | 2150 | # check if it's already locked !, if it is compare users |
|
2151 | 2151 | locked_by_user_id = lock_info[0] |
|
2152 | 2152 | if user.user_id == locked_by_user_id: |
|
2153 | 2153 | log.debug( |
|
2154 | 2154 | 'Got `push` action from user %s, now unlocking', user) |
|
2155 | 2155 | # unlock if we have push from user who locked |
|
2156 | 2156 | make_lock = False |
|
2157 | 2157 | else: |
|
2158 | 2158 | # we're not the same user who locked, ban with |
|
2159 | 2159 | # code defined in settings (default is 423 HTTP Locked) ! |
|
2160 | 2160 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
2161 | 2161 | currently_locked = True |
|
2162 | 2162 | elif action == 'pull': |
|
2163 | 2163 | # [0] user [1] date |
|
2164 | 2164 | if lock_info[0] and lock_info[1]: |
|
2165 | 2165 | log.debug('Repo %s is currently locked by %s', repo, user) |
|
2166 | 2166 | currently_locked = True |
|
2167 | 2167 | else: |
|
2168 | 2168 | log.debug('Setting lock on repo %s by %s', repo, user) |
|
2169 | 2169 | make_lock = True |
|
2170 | 2170 | |
|
2171 | 2171 | else: |
|
2172 | 2172 | log.debug('Repository %s do not have locking enabled', repo) |
|
2173 | 2173 | |
|
2174 | 2174 | log.debug('FINAL locking values make_lock:%s,locked:%s,locked_by:%s', |
|
2175 | 2175 | make_lock, currently_locked, lock_info) |
|
2176 | 2176 | |
|
2177 | 2177 | from rhodecode.lib.auth import HasRepoPermissionAny |
|
2178 | 2178 | perm_check = HasRepoPermissionAny('repository.write', 'repository.admin') |
|
2179 | 2179 | if make_lock and not perm_check(repo_name=repo.repo_name, user=user): |
|
2180 | 2180 | # if we don't have at least write permission we cannot make a lock |
|
2181 | 2181 | log.debug('lock state reset back to FALSE due to lack ' |
|
2182 | 2182 | 'of at least read permission') |
|
2183 | 2183 | make_lock = False |
|
2184 | 2184 | |
|
2185 | 2185 | return make_lock, currently_locked, lock_info |
|
2186 | 2186 | |
|
2187 | 2187 | @property |
|
2188 | def last_commit_cache_update_diff(self): | |
|
2189 | return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0) | |
|
2190 | ||
|
2191 | @property | |
|
2188 | 2192 | def last_commit_change(self): |
|
2189 | 2193 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2190 | 2194 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2191 | 2195 | date_latest = self.changeset_cache.get('date', empty_date) |
|
2192 | 2196 | try: |
|
2193 | 2197 | return parse_datetime(date_latest) |
|
2194 | 2198 | except Exception: |
|
2195 | 2199 | return empty_date |
|
2196 | 2200 | |
|
2197 | 2201 | @property |
|
2198 | 2202 | def last_db_change(self): |
|
2199 | 2203 | return self.updated_on |
|
2200 | 2204 | |
|
2201 | 2205 | @property |
|
2202 | 2206 | def clone_uri_hidden(self): |
|
2203 | 2207 | clone_uri = self.clone_uri |
|
2204 | 2208 | if clone_uri: |
|
2205 | 2209 | import urlobject |
|
2206 | 2210 | url_obj = urlobject.URLObject(cleaned_uri(clone_uri)) |
|
2207 | 2211 | if url_obj.password: |
|
2208 | 2212 | clone_uri = url_obj.with_password('*****') |
|
2209 | 2213 | return clone_uri |
|
2210 | 2214 | |
|
2211 | 2215 | @property |
|
2212 | 2216 | def push_uri_hidden(self): |
|
2213 | 2217 | push_uri = self.push_uri |
|
2214 | 2218 | if push_uri: |
|
2215 | 2219 | import urlobject |
|
2216 | 2220 | url_obj = urlobject.URLObject(cleaned_uri(push_uri)) |
|
2217 | 2221 | if url_obj.password: |
|
2218 | 2222 | push_uri = url_obj.with_password('*****') |
|
2219 | 2223 | return push_uri |
|
2220 | 2224 | |
|
2221 | 2225 | def clone_url(self, **override): |
|
2222 | 2226 | from rhodecode.model.settings import SettingsModel |
|
2223 | 2227 | |
|
2224 | 2228 | uri_tmpl = None |
|
2225 | 2229 | if 'with_id' in override: |
|
2226 | 2230 | uri_tmpl = self.DEFAULT_CLONE_URI_ID |
|
2227 | 2231 | del override['with_id'] |
|
2228 | 2232 | |
|
2229 | 2233 | if 'uri_tmpl' in override: |
|
2230 | 2234 | uri_tmpl = override['uri_tmpl'] |
|
2231 | 2235 | del override['uri_tmpl'] |
|
2232 | 2236 | |
|
2233 | 2237 | ssh = False |
|
2234 | 2238 | if 'ssh' in override: |
|
2235 | 2239 | ssh = True |
|
2236 | 2240 | del override['ssh'] |
|
2237 | 2241 | |
|
2238 | 2242 | # we didn't override our tmpl from **overrides |
|
2239 | 2243 | if not uri_tmpl: |
|
2240 | 2244 | rc_config = SettingsModel().get_all_settings(cache=True) |
|
2241 | 2245 | if ssh: |
|
2242 | 2246 | uri_tmpl = rc_config.get( |
|
2243 | 2247 | 'rhodecode_clone_uri_ssh_tmpl') or self.DEFAULT_CLONE_URI_SSH |
|
2244 | 2248 | else: |
|
2245 | 2249 | uri_tmpl = rc_config.get( |
|
2246 | 2250 | 'rhodecode_clone_uri_tmpl') or self.DEFAULT_CLONE_URI |
|
2247 | 2251 | |
|
2248 | 2252 | request = get_current_request() |
|
2249 | 2253 | return get_clone_url(request=request, |
|
2250 | 2254 | uri_tmpl=uri_tmpl, |
|
2251 | 2255 | repo_name=self.repo_name, |
|
2252 | 2256 | repo_id=self.repo_id, **override) |
|
2253 | 2257 | |
|
2254 | 2258 | def set_state(self, state): |
|
2255 | 2259 | self.repo_state = state |
|
2256 | 2260 | Session().add(self) |
|
2257 | 2261 | #========================================================================== |
|
2258 | 2262 | # SCM PROPERTIES |
|
2259 | 2263 | #========================================================================== |
|
2260 | 2264 | |
|
2261 | 2265 | def get_commit(self, commit_id=None, commit_idx=None, pre_load=None): |
|
2262 | 2266 | return get_commit_safe( |
|
2263 | 2267 | self.scm_instance(), commit_id, commit_idx, pre_load=pre_load) |
|
2264 | 2268 | |
|
2265 | 2269 | def get_changeset(self, rev=None, pre_load=None): |
|
2266 | 2270 | warnings.warn("Use get_commit", DeprecationWarning) |
|
2267 | 2271 | commit_id = None |
|
2268 | 2272 | commit_idx = None |
|
2269 | 2273 | if isinstance(rev, compat.string_types): |
|
2270 | 2274 | commit_id = rev |
|
2271 | 2275 | else: |
|
2272 | 2276 | commit_idx = rev |
|
2273 | 2277 | return self.get_commit(commit_id=commit_id, commit_idx=commit_idx, |
|
2274 | 2278 | pre_load=pre_load) |
|
2275 | 2279 | |
|
2276 | 2280 | def get_landing_commit(self): |
|
2277 | 2281 | """ |
|
2278 | 2282 | Returns landing commit, or if that doesn't exist returns the tip |
|
2279 | 2283 | """ |
|
2280 | 2284 | _rev_type, _rev = self.landing_rev |
|
2281 | 2285 | commit = self.get_commit(_rev) |
|
2282 | 2286 | if isinstance(commit, EmptyCommit): |
|
2283 | 2287 | return self.get_commit() |
|
2284 | 2288 | return commit |
|
2285 | 2289 | |
|
2286 | 2290 | def update_commit_cache(self, cs_cache=None, config=None): |
|
2287 | 2291 | """ |
|
2288 | 2292 | Update cache of last changeset for repository, keys should be:: |
|
2289 | 2293 | |
|
2290 | 2294 | source_repo_id |
|
2291 | 2295 | short_id |
|
2292 | 2296 | raw_id |
|
2293 | 2297 | revision |
|
2294 | 2298 | parents |
|
2295 | 2299 | message |
|
2296 | 2300 | date |
|
2297 | 2301 | author |
|
2302 | updated_on | |
|
2298 | 2303 | |
|
2299 | 2304 | """ |
|
2300 | 2305 | from rhodecode.lib.vcs.backends.base import BaseChangeset |
|
2301 | 2306 | if cs_cache is None: |
|
2302 | 2307 | # use no-cache version here |
|
2303 | 2308 | scm_repo = self.scm_instance(cache=False, config=config) |
|
2304 | 2309 | |
|
2305 | 2310 | empty = not scm_repo or scm_repo.is_empty() |
|
2306 | 2311 | if not empty: |
|
2307 | 2312 | cs_cache = scm_repo.get_commit( |
|
2308 | 2313 | pre_load=["author", "date", "message", "parents"]) |
|
2309 | 2314 | else: |
|
2310 | 2315 | cs_cache = EmptyCommit() |
|
2311 | 2316 | |
|
2312 | 2317 | if isinstance(cs_cache, BaseChangeset): |
|
2313 | 2318 | cs_cache = cs_cache.__json__() |
|
2314 | 2319 | |
|
2315 | 2320 | def is_outdated(new_cs_cache): |
|
2316 | 2321 | if (new_cs_cache['raw_id'] != self.changeset_cache['raw_id'] or |
|
2317 | 2322 | new_cs_cache['revision'] != self.changeset_cache['revision']): |
|
2318 | 2323 | return True |
|
2319 | 2324 | return False |
|
2320 | 2325 | |
|
2321 | 2326 | # check if we have maybe already latest cached revision |
|
2322 | 2327 | if is_outdated(cs_cache) or not self.changeset_cache: |
|
2323 | 2328 | _default = datetime.datetime.utcnow() |
|
2324 | 2329 | last_change = cs_cache.get('date') or _default |
|
2325 | 2330 | # we check if last update is newer than the new value |
|
2326 | 2331 | # if yes, we use the current timestamp instead. Imagine you get |
|
2327 | 2332 | # old commit pushed 1y ago, we'd set last update 1y to ago. |
|
2328 | 2333 | last_change_timestamp = datetime_to_time(last_change) |
|
2329 | 2334 | current_timestamp = datetime_to_time(last_change) |
|
2330 | 2335 | if last_change_timestamp > current_timestamp: |
|
2331 | 2336 | cs_cache['date'] = _default |
|
2332 | 2337 | |
|
2338 | cs_cache['updated_on'] = time.time() | |
|
2333 | 2339 | self.changeset_cache = cs_cache |
|
2334 | 2340 | Session().add(self) |
|
2335 | 2341 | Session().commit() |
|
2336 | 2342 | |
|
2337 | 2343 | log.debug('updated repo %s with new commit cache %s', |
|
2338 | 2344 | self.repo_name, cs_cache) |
|
2339 | 2345 | else: |
|
2340 | 2346 | log.debug('Skipping update_commit_cache for repo:`%s` ' |
|
2341 | 2347 | 'commit already with latest changes', self.repo_name) |
|
2342 | 2348 | |
|
2343 | 2349 | @property |
|
2344 | 2350 | def tip(self): |
|
2345 | 2351 | return self.get_commit('tip') |
|
2346 | 2352 | |
|
2347 | 2353 | @property |
|
2348 | 2354 | def author(self): |
|
2349 | 2355 | return self.tip.author |
|
2350 | 2356 | |
|
2351 | 2357 | @property |
|
2352 | 2358 | def last_change(self): |
|
2353 | 2359 | return self.scm_instance().last_change |
|
2354 | 2360 | |
|
2355 | 2361 | def get_comments(self, revisions=None): |
|
2356 | 2362 | """ |
|
2357 | 2363 | Returns comments for this repository grouped by revisions |
|
2358 | 2364 | |
|
2359 | 2365 | :param revisions: filter query by revisions only |
|
2360 | 2366 | """ |
|
2361 | 2367 | cmts = ChangesetComment.query()\ |
|
2362 | 2368 | .filter(ChangesetComment.repo == self) |
|
2363 | 2369 | if revisions: |
|
2364 | 2370 | cmts = cmts.filter(ChangesetComment.revision.in_(revisions)) |
|
2365 | 2371 | grouped = collections.defaultdict(list) |
|
2366 | 2372 | for cmt in cmts.all(): |
|
2367 | 2373 | grouped[cmt.revision].append(cmt) |
|
2368 | 2374 | return grouped |
|
2369 | 2375 | |
|
2370 | 2376 | def statuses(self, revisions=None): |
|
2371 | 2377 | """ |
|
2372 | 2378 | Returns statuses for this repository |
|
2373 | 2379 | |
|
2374 | 2380 | :param revisions: list of revisions to get statuses for |
|
2375 | 2381 | """ |
|
2376 | 2382 | statuses = ChangesetStatus.query()\ |
|
2377 | 2383 | .filter(ChangesetStatus.repo == self)\ |
|
2378 | 2384 | .filter(ChangesetStatus.version == 0) |
|
2379 | 2385 | |
|
2380 | 2386 | if revisions: |
|
2381 | 2387 | # Try doing the filtering in chunks to avoid hitting limits |
|
2382 | 2388 | size = 500 |
|
2383 | 2389 | status_results = [] |
|
2384 | 2390 | for chunk in xrange(0, len(revisions), size): |
|
2385 | 2391 | status_results += statuses.filter( |
|
2386 | 2392 | ChangesetStatus.revision.in_( |
|
2387 | 2393 | revisions[chunk: chunk+size]) |
|
2388 | 2394 | ).all() |
|
2389 | 2395 | else: |
|
2390 | 2396 | status_results = statuses.all() |
|
2391 | 2397 | |
|
2392 | 2398 | grouped = {} |
|
2393 | 2399 | |
|
2394 | 2400 | # maybe we have open new pullrequest without a status? |
|
2395 | 2401 | stat = ChangesetStatus.STATUS_UNDER_REVIEW |
|
2396 | 2402 | status_lbl = ChangesetStatus.get_status_lbl(stat) |
|
2397 | 2403 | for pr in PullRequest.query().filter(PullRequest.source_repo == self).all(): |
|
2398 | 2404 | for rev in pr.revisions: |
|
2399 | 2405 | pr_id = pr.pull_request_id |
|
2400 | 2406 | pr_repo = pr.target_repo.repo_name |
|
2401 | 2407 | grouped[rev] = [stat, status_lbl, pr_id, pr_repo] |
|
2402 | 2408 | |
|
2403 | 2409 | for stat in status_results: |
|
2404 | 2410 | pr_id = pr_repo = None |
|
2405 | 2411 | if stat.pull_request: |
|
2406 | 2412 | pr_id = stat.pull_request.pull_request_id |
|
2407 | 2413 | pr_repo = stat.pull_request.target_repo.repo_name |
|
2408 | 2414 | grouped[stat.revision] = [str(stat.status), stat.status_lbl, |
|
2409 | 2415 | pr_id, pr_repo] |
|
2410 | 2416 | return grouped |
|
2411 | 2417 | |
|
2412 | 2418 | # ========================================================================== |
|
2413 | 2419 | # SCM CACHE INSTANCE |
|
2414 | 2420 | # ========================================================================== |
|
2415 | 2421 | |
|
2416 | 2422 | def scm_instance(self, **kwargs): |
|
2417 | 2423 | import rhodecode |
|
2418 | 2424 | |
|
2419 | 2425 | # Passing a config will not hit the cache currently only used |
|
2420 | 2426 | # for repo2dbmapper |
|
2421 | 2427 | config = kwargs.pop('config', None) |
|
2422 | 2428 | cache = kwargs.pop('cache', None) |
|
2423 | 2429 | full_cache = str2bool(rhodecode.CONFIG.get('vcs_full_cache')) |
|
2424 | 2430 | # if cache is NOT defined use default global, else we have a full |
|
2425 | 2431 | # control over cache behaviour |
|
2426 | 2432 | if cache is None and full_cache and not config: |
|
2427 | 2433 | return self._get_instance_cached() |
|
2428 | 2434 | return self._get_instance(cache=bool(cache), config=config) |
|
2429 | 2435 | |
|
2430 | 2436 | def _get_instance_cached(self): |
|
2431 | 2437 | from rhodecode.lib import rc_cache |
|
2432 | 2438 | |
|
2433 | 2439 | cache_namespace_uid = 'cache_repo_instance.{}'.format(self.repo_id) |
|
2434 | 2440 | invalidation_namespace = CacheKey.REPO_INVALIDATION_NAMESPACE.format( |
|
2435 | 2441 | repo_id=self.repo_id) |
|
2436 | 2442 | region = rc_cache.get_or_create_region('cache_repo_longterm', cache_namespace_uid) |
|
2437 | 2443 | |
|
2438 | 2444 | @region.conditional_cache_on_arguments(namespace=cache_namespace_uid) |
|
2439 | 2445 | def get_instance_cached(repo_id, context_id): |
|
2440 | 2446 | return self._get_instance() |
|
2441 | 2447 | |
|
2442 | 2448 | # we must use thread scoped cache here, |
|
2443 | 2449 | # because each thread of gevent needs it's own not shared connection and cache |
|
2444 | 2450 | # we also alter `args` so the cache key is individual for every green thread. |
|
2445 | 2451 | inv_context_manager = rc_cache.InvalidationContext( |
|
2446 | 2452 | uid=cache_namespace_uid, invalidation_namespace=invalidation_namespace, |
|
2447 | 2453 | thread_scoped=True) |
|
2448 | 2454 | with inv_context_manager as invalidation_context: |
|
2449 | 2455 | args = (self.repo_id, inv_context_manager.cache_key) |
|
2450 | 2456 | # re-compute and store cache if we get invalidate signal |
|
2451 | 2457 | if invalidation_context.should_invalidate(): |
|
2452 | 2458 | instance = get_instance_cached.refresh(*args) |
|
2453 | 2459 | else: |
|
2454 | 2460 | instance = get_instance_cached(*args) |
|
2455 | 2461 | |
|
2456 | 2462 | log.debug( |
|
2457 | 2463 | 'Repo instance fetched in %.3fs', inv_context_manager.compute_time) |
|
2458 | 2464 | return instance |
|
2459 | 2465 | |
|
2460 | 2466 | def _get_instance(self, cache=True, config=None): |
|
2461 | 2467 | config = config or self._config |
|
2462 | 2468 | custom_wire = { |
|
2463 | 2469 | 'cache': cache # controls the vcs.remote cache |
|
2464 | 2470 | } |
|
2465 | 2471 | repo = get_vcs_instance( |
|
2466 | 2472 | repo_path=safe_str(self.repo_full_path), |
|
2467 | 2473 | config=config, |
|
2468 | 2474 | with_wire=custom_wire, |
|
2469 | 2475 | create=False, |
|
2470 | 2476 | _vcs_alias=self.repo_type) |
|
2471 | 2477 | |
|
2472 | 2478 | return repo |
|
2473 | 2479 | |
|
2474 | 2480 | def __json__(self): |
|
2475 | 2481 | return {'landing_rev': self.landing_rev} |
|
2476 | 2482 | |
|
2477 | 2483 | def get_dict(self): |
|
2478 | 2484 | |
|
2479 | 2485 | # Since we transformed `repo_name` to a hybrid property, we need to |
|
2480 | 2486 | # keep compatibility with the code which uses `repo_name` field. |
|
2481 | 2487 | |
|
2482 | 2488 | result = super(Repository, self).get_dict() |
|
2483 | 2489 | result['repo_name'] = result.pop('_repo_name', None) |
|
2484 | 2490 | return result |
|
2485 | 2491 | |
|
2486 | 2492 | |
|
2487 | 2493 | class RepoGroup(Base, BaseModel): |
|
2488 | 2494 | __tablename__ = 'groups' |
|
2489 | 2495 | __table_args__ = ( |
|
2490 | 2496 | UniqueConstraint('group_name', 'group_parent_id'), |
|
2491 | 2497 | base_table_args, |
|
2492 | 2498 | ) |
|
2493 | 2499 | __mapper_args__ = {'order_by': 'group_name'} |
|
2494 | 2500 | |
|
2495 | 2501 | CHOICES_SEPARATOR = '/' # used to generate select2 choices for nested groups |
|
2496 | 2502 | |
|
2497 | 2503 | group_id = Column("group_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
2498 | 2504 | _group_name = Column("group_name", String(255), nullable=False, unique=True, default=None) |
|
2499 | 2505 | group_name_hash = Column("repo_group_name_hash", String(1024), nullable=False, unique=False) |
|
2500 | 2506 | group_parent_id = Column("group_parent_id", Integer(), ForeignKey('groups.group_id'), nullable=True, unique=None, default=None) |
|
2501 | 2507 | group_description = Column("group_description", String(10000), nullable=True, unique=None, default=None) |
|
2502 | 2508 | enable_locking = Column("enable_locking", Boolean(), nullable=False, unique=None, default=False) |
|
2503 | 2509 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=False, default=None) |
|
2504 | 2510 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
2505 | 2511 | updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
2506 | 2512 | personal = Column('personal', Boolean(), nullable=True, unique=None, default=None) |
|
2507 | 2513 | _changeset_cache = Column( |
|
2508 | 2514 | "changeset_cache", LargeBinary(), nullable=True) # JSON data |
|
2509 | 2515 | |
|
2510 | 2516 | repo_group_to_perm = relationship('UserRepoGroupToPerm', cascade='all', order_by='UserRepoGroupToPerm.group_to_perm_id') |
|
2511 | 2517 | users_group_to_perm = relationship('UserGroupRepoGroupToPerm', cascade='all') |
|
2512 | 2518 | parent_group = relationship('RepoGroup', remote_side=group_id) |
|
2513 | 2519 | user = relationship('User') |
|
2514 | 2520 | integrations = relationship('Integration', cascade="all, delete, delete-orphan") |
|
2515 | 2521 | |
|
2516 | 2522 | def __init__(self, group_name='', parent_group=None): |
|
2517 | 2523 | self.group_name = group_name |
|
2518 | 2524 | self.parent_group = parent_group |
|
2519 | 2525 | |
|
2520 | 2526 | def __unicode__(self): |
|
2521 | 2527 | return u"<%s('id:%s:%s')>" % ( |
|
2522 | 2528 | self.__class__.__name__, self.group_id, self.group_name) |
|
2523 | 2529 | |
|
2524 | 2530 | @hybrid_property |
|
2525 | 2531 | def group_name(self): |
|
2526 | 2532 | return self._group_name |
|
2527 | 2533 | |
|
2528 | 2534 | @group_name.setter |
|
2529 | 2535 | def group_name(self, value): |
|
2530 | 2536 | self._group_name = value |
|
2531 | 2537 | self.group_name_hash = self.hash_repo_group_name(value) |
|
2532 | 2538 | |
|
2533 | 2539 | @hybrid_property |
|
2534 | 2540 | def changeset_cache(self): |
|
2535 | 2541 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
2536 | 2542 | dummy = EmptyCommit().__json__() |
|
2537 | 2543 | if not self._changeset_cache: |
|
2538 | 2544 | dummy['source_repo_id'] = '' |
|
2539 | 2545 | return json.loads(json.dumps(dummy)) |
|
2540 | 2546 | |
|
2541 | 2547 | try: |
|
2542 | 2548 | return json.loads(self._changeset_cache) |
|
2543 | 2549 | except TypeError: |
|
2544 | 2550 | return dummy |
|
2545 | 2551 | except Exception: |
|
2546 | 2552 | log.error(traceback.format_exc()) |
|
2547 | 2553 | return dummy |
|
2548 | 2554 | |
|
2549 | 2555 | @changeset_cache.setter |
|
2550 | 2556 | def changeset_cache(self, val): |
|
2551 | 2557 | try: |
|
2552 | 2558 | self._changeset_cache = json.dumps(val) |
|
2553 | 2559 | except Exception: |
|
2554 | 2560 | log.error(traceback.format_exc()) |
|
2555 | 2561 | |
|
2556 | 2562 | @validates('group_parent_id') |
|
2557 | 2563 | def validate_group_parent_id(self, key, val): |
|
2558 | 2564 | """ |
|
2559 | 2565 | Check cycle references for a parent group to self |
|
2560 | 2566 | """ |
|
2561 | 2567 | if self.group_id and val: |
|
2562 | 2568 | assert val != self.group_id |
|
2563 | 2569 | |
|
2564 | 2570 | return val |
|
2565 | 2571 | |
|
2566 | 2572 | @hybrid_property |
|
2567 | 2573 | def description_safe(self): |
|
2568 | 2574 | from rhodecode.lib import helpers as h |
|
2569 | 2575 | return h.escape(self.group_description) |
|
2570 | 2576 | |
|
2571 | 2577 | @classmethod |
|
2572 | 2578 | def hash_repo_group_name(cls, repo_group_name): |
|
2573 | 2579 | val = remove_formatting(repo_group_name) |
|
2574 | 2580 | val = safe_str(val).lower() |
|
2575 | 2581 | chars = [] |
|
2576 | 2582 | for c in val: |
|
2577 | 2583 | if c not in string.ascii_letters: |
|
2578 | 2584 | c = str(ord(c)) |
|
2579 | 2585 | chars.append(c) |
|
2580 | 2586 | |
|
2581 | 2587 | return ''.join(chars) |
|
2582 | 2588 | |
|
2583 | 2589 | @classmethod |
|
2584 | 2590 | def _generate_choice(cls, repo_group): |
|
2585 | 2591 | from webhelpers.html import literal as _literal |
|
2586 | 2592 | _name = lambda k: _literal(cls.CHOICES_SEPARATOR.join(k)) |
|
2587 | 2593 | return repo_group.group_id, _name(repo_group.full_path_splitted) |
|
2588 | 2594 | |
|
2589 | 2595 | @classmethod |
|
2590 | 2596 | def groups_choices(cls, groups=None, show_empty_group=True): |
|
2591 | 2597 | if not groups: |
|
2592 | 2598 | groups = cls.query().all() |
|
2593 | 2599 | |
|
2594 | 2600 | repo_groups = [] |
|
2595 | 2601 | if show_empty_group: |
|
2596 | 2602 | repo_groups = [(-1, u'-- %s --' % _('No parent'))] |
|
2597 | 2603 | |
|
2598 | 2604 | repo_groups.extend([cls._generate_choice(x) for x in groups]) |
|
2599 | 2605 | |
|
2600 | 2606 | repo_groups = sorted( |
|
2601 | 2607 | repo_groups, key=lambda t: t[1].split(cls.CHOICES_SEPARATOR)[0]) |
|
2602 | 2608 | return repo_groups |
|
2603 | 2609 | |
|
2604 | 2610 | @classmethod |
|
2605 | 2611 | def url_sep(cls): |
|
2606 | 2612 | return URL_SEP |
|
2607 | 2613 | |
|
2608 | 2614 | @classmethod |
|
2609 | 2615 | def get_by_group_name(cls, group_name, cache=False, case_insensitive=False): |
|
2610 | 2616 | if case_insensitive: |
|
2611 | 2617 | gr = cls.query().filter(func.lower(cls.group_name) |
|
2612 | 2618 | == func.lower(group_name)) |
|
2613 | 2619 | else: |
|
2614 | 2620 | gr = cls.query().filter(cls.group_name == group_name) |
|
2615 | 2621 | if cache: |
|
2616 | 2622 | name_key = _hash_key(group_name) |
|
2617 | 2623 | gr = gr.options( |
|
2618 | 2624 | FromCache("sql_cache_short", "get_group_%s" % name_key)) |
|
2619 | 2625 | return gr.scalar() |
|
2620 | 2626 | |
|
2621 | 2627 | @classmethod |
|
2622 | 2628 | def get_user_personal_repo_group(cls, user_id): |
|
2623 | 2629 | user = User.get(user_id) |
|
2624 | 2630 | if user.username == User.DEFAULT_USER: |
|
2625 | 2631 | return None |
|
2626 | 2632 | |
|
2627 | 2633 | return cls.query()\ |
|
2628 | 2634 | .filter(cls.personal == true()) \ |
|
2629 | 2635 | .filter(cls.user == user) \ |
|
2630 | 2636 | .order_by(cls.group_id.asc()) \ |
|
2631 | 2637 | .first() |
|
2632 | 2638 | |
|
2633 | 2639 | @classmethod |
|
2634 | 2640 | def get_all_repo_groups(cls, user_id=Optional(None), group_id=Optional(None), |
|
2635 | 2641 | case_insensitive=True): |
|
2636 | 2642 | q = RepoGroup.query() |
|
2637 | 2643 | |
|
2638 | 2644 | if not isinstance(user_id, Optional): |
|
2639 | 2645 | q = q.filter(RepoGroup.user_id == user_id) |
|
2640 | 2646 | |
|
2641 | 2647 | if not isinstance(group_id, Optional): |
|
2642 | 2648 | q = q.filter(RepoGroup.group_parent_id == group_id) |
|
2643 | 2649 | |
|
2644 | 2650 | if case_insensitive: |
|
2645 | 2651 | q = q.order_by(func.lower(RepoGroup.group_name)) |
|
2646 | 2652 | else: |
|
2647 | 2653 | q = q.order_by(RepoGroup.group_name) |
|
2648 | 2654 | return q.all() |
|
2649 | 2655 | |
|
2650 | 2656 | @property |
|
2651 | 2657 | def parents(self, parents_recursion_limit = 10): |
|
2652 | 2658 | groups = [] |
|
2653 | 2659 | if self.parent_group is None: |
|
2654 | 2660 | return groups |
|
2655 | 2661 | cur_gr = self.parent_group |
|
2656 | 2662 | groups.insert(0, cur_gr) |
|
2657 | 2663 | cnt = 0 |
|
2658 | 2664 | while 1: |
|
2659 | 2665 | cnt += 1 |
|
2660 | 2666 | gr = getattr(cur_gr, 'parent_group', None) |
|
2661 | 2667 | cur_gr = cur_gr.parent_group |
|
2662 | 2668 | if gr is None: |
|
2663 | 2669 | break |
|
2664 | 2670 | if cnt == parents_recursion_limit: |
|
2665 | 2671 | # this will prevent accidental infinit loops |
|
2666 | 2672 | log.error('more than %s parents found for group %s, stopping ' |
|
2667 | 2673 | 'recursive parent fetching', parents_recursion_limit, self) |
|
2668 | 2674 | break |
|
2669 | 2675 | |
|
2670 | 2676 | groups.insert(0, gr) |
|
2671 | 2677 | return groups |
|
2672 | 2678 | |
|
2673 | 2679 | @property |
|
2680 | def last_commit_cache_update_diff(self): | |
|
2681 | return time.time() - (safe_int(self.changeset_cache.get('updated_on')) or 0) | |
|
2682 | ||
|
2683 | @property | |
|
2674 | 2684 | def last_commit_change(self): |
|
2675 | 2685 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2676 | 2686 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2677 | 2687 | date_latest = self.changeset_cache.get('date', empty_date) |
|
2678 | 2688 | try: |
|
2679 | 2689 | return parse_datetime(date_latest) |
|
2680 | 2690 | except Exception: |
|
2681 | 2691 | return empty_date |
|
2682 | 2692 | |
|
2683 | 2693 | @property |
|
2684 | 2694 | def last_db_change(self): |
|
2685 | 2695 | return self.updated_on |
|
2686 | 2696 | |
|
2687 | 2697 | @property |
|
2688 | 2698 | def children(self): |
|
2689 | 2699 | return RepoGroup.query().filter(RepoGroup.parent_group == self) |
|
2690 | 2700 | |
|
2691 | 2701 | @property |
|
2692 | 2702 | def name(self): |
|
2693 | 2703 | return self.group_name.split(RepoGroup.url_sep())[-1] |
|
2694 | 2704 | |
|
2695 | 2705 | @property |
|
2696 | 2706 | def full_path(self): |
|
2697 | 2707 | return self.group_name |
|
2698 | 2708 | |
|
2699 | 2709 | @property |
|
2700 | 2710 | def full_path_splitted(self): |
|
2701 | 2711 | return self.group_name.split(RepoGroup.url_sep()) |
|
2702 | 2712 | |
|
2703 | 2713 | @property |
|
2704 | 2714 | def repositories(self): |
|
2705 | 2715 | return Repository.query()\ |
|
2706 | 2716 | .filter(Repository.group == self)\ |
|
2707 | 2717 | .order_by(Repository.repo_name) |
|
2708 | 2718 | |
|
2709 | 2719 | @property |
|
2710 | 2720 | def repositories_recursive_count(self): |
|
2711 | 2721 | cnt = self.repositories.count() |
|
2712 | 2722 | |
|
2713 | 2723 | def children_count(group): |
|
2714 | 2724 | cnt = 0 |
|
2715 | 2725 | for child in group.children: |
|
2716 | 2726 | cnt += child.repositories.count() |
|
2717 | 2727 | cnt += children_count(child) |
|
2718 | 2728 | return cnt |
|
2719 | 2729 | |
|
2720 | 2730 | return cnt + children_count(self) |
|
2721 | 2731 | |
|
2722 | 2732 | def _recursive_objects(self, include_repos=True, include_groups=True): |
|
2723 | 2733 | all_ = [] |
|
2724 | 2734 | |
|
2725 | 2735 | def _get_members(root_gr): |
|
2726 | 2736 | if include_repos: |
|
2727 | 2737 | for r in root_gr.repositories: |
|
2728 | 2738 | all_.append(r) |
|
2729 | 2739 | childs = root_gr.children.all() |
|
2730 | 2740 | if childs: |
|
2731 | 2741 | for gr in childs: |
|
2732 | 2742 | if include_groups: |
|
2733 | 2743 | all_.append(gr) |
|
2734 | 2744 | _get_members(gr) |
|
2735 | 2745 | |
|
2736 | 2746 | root_group = [] |
|
2737 | 2747 | if include_groups: |
|
2738 | 2748 | root_group = [self] |
|
2739 | 2749 | |
|
2740 | 2750 | _get_members(self) |
|
2741 | 2751 | return root_group + all_ |
|
2742 | 2752 | |
|
2743 | 2753 | def recursive_groups_and_repos(self): |
|
2744 | 2754 | """ |
|
2745 | 2755 | Recursive return all groups, with repositories in those groups |
|
2746 | 2756 | """ |
|
2747 | 2757 | return self._recursive_objects() |
|
2748 | 2758 | |
|
2749 | 2759 | def recursive_groups(self): |
|
2750 | 2760 | """ |
|
2751 | 2761 | Returns all children groups for this group including children of children |
|
2752 | 2762 | """ |
|
2753 | 2763 | return self._recursive_objects(include_repos=False) |
|
2754 | 2764 | |
|
2755 | 2765 | def recursive_repos(self): |
|
2756 | 2766 | """ |
|
2757 | 2767 | Returns all children repositories for this group |
|
2758 | 2768 | """ |
|
2759 | 2769 | return self._recursive_objects(include_groups=False) |
|
2760 | 2770 | |
|
2761 | 2771 | def get_new_name(self, group_name): |
|
2762 | 2772 | """ |
|
2763 | 2773 | returns new full group name based on parent and new name |
|
2764 | 2774 | |
|
2765 | 2775 | :param group_name: |
|
2766 | 2776 | """ |
|
2767 | 2777 | path_prefix = (self.parent_group.full_path_splitted if |
|
2768 | 2778 | self.parent_group else []) |
|
2769 | 2779 | return RepoGroup.url_sep().join(path_prefix + [group_name]) |
|
2770 | 2780 | |
|
2771 | 2781 | def update_commit_cache(self, config=None): |
|
2772 | 2782 | """ |
|
2773 | 2783 | Update cache of last changeset for newest repository inside this group, keys should be:: |
|
2774 | 2784 | |
|
2775 | 2785 | source_repo_id |
|
2776 | 2786 | short_id |
|
2777 | 2787 | raw_id |
|
2778 | 2788 | revision |
|
2779 | 2789 | parents |
|
2780 | 2790 | message |
|
2781 | 2791 | date |
|
2782 | 2792 | author |
|
2783 | 2793 | |
|
2784 | 2794 | """ |
|
2785 | 2795 | from rhodecode.lib.vcs.utils.helpers import parse_datetime |
|
2786 | 2796 | |
|
2787 | 2797 | def repo_groups_and_repos(): |
|
2788 | 2798 | all_entries = OrderedDefaultDict(list) |
|
2789 | 2799 | |
|
2790 | 2800 | def _get_members(root_gr, pos=0): |
|
2791 | 2801 | |
|
2792 | 2802 | for repo in root_gr.repositories: |
|
2793 | 2803 | all_entries[root_gr].append(repo) |
|
2794 | 2804 | |
|
2795 | 2805 | # fill in all parent positions |
|
2796 | 2806 | for parent_group in root_gr.parents: |
|
2797 | 2807 | all_entries[parent_group].extend(all_entries[root_gr]) |
|
2798 | 2808 | |
|
2799 | 2809 | children_groups = root_gr.children.all() |
|
2800 | 2810 | if children_groups: |
|
2801 | 2811 | for cnt, gr in enumerate(children_groups, 1): |
|
2802 | 2812 | _get_members(gr, pos=pos+cnt) |
|
2803 | 2813 | |
|
2804 | 2814 | _get_members(root_gr=self) |
|
2805 | 2815 | return all_entries |
|
2806 | 2816 | |
|
2807 | 2817 | empty_date = datetime.datetime.fromtimestamp(0) |
|
2808 | 2818 | for repo_group, repos in repo_groups_and_repos().items(): |
|
2809 | 2819 | |
|
2810 | 2820 | latest_repo_cs_cache = {} |
|
2811 | 2821 | for repo in repos: |
|
2812 | 2822 | repo_cs_cache = repo.changeset_cache |
|
2813 | 2823 | date_latest = latest_repo_cs_cache.get('date', empty_date) |
|
2814 | 2824 | date_current = repo_cs_cache.get('date', empty_date) |
|
2815 | 2825 | current_timestamp = datetime_to_time(parse_datetime(date_latest)) |
|
2816 | 2826 | if current_timestamp < datetime_to_time(parse_datetime(date_current)): |
|
2817 | 2827 | latest_repo_cs_cache = repo_cs_cache |
|
2818 | 2828 | latest_repo_cs_cache['source_repo_id'] = repo.repo_id |
|
2819 | 2829 | |
|
2830 | latest_repo_cs_cache['updated_on'] = time.time() | |
|
2820 | 2831 | repo_group.changeset_cache = latest_repo_cs_cache |
|
2821 | 2832 | Session().add(repo_group) |
|
2822 | 2833 | Session().commit() |
|
2823 | 2834 | |
|
2824 | 2835 | log.debug('updated repo group %s with new commit cache %s', |
|
2825 | 2836 | repo_group.group_name, latest_repo_cs_cache) |
|
2826 | 2837 | |
|
2827 | 2838 | def permissions(self, with_admins=True, with_owner=True, |
|
2828 | 2839 | expand_from_user_groups=False): |
|
2829 | 2840 | """ |
|
2830 | 2841 | Permissions for repository groups |
|
2831 | 2842 | """ |
|
2832 | 2843 | _admin_perm = 'group.admin' |
|
2833 | 2844 | |
|
2834 | 2845 | owner_row = [] |
|
2835 | 2846 | if with_owner: |
|
2836 | 2847 | usr = AttributeDict(self.user.get_dict()) |
|
2837 | 2848 | usr.owner_row = True |
|
2838 | 2849 | usr.permission = _admin_perm |
|
2839 | 2850 | owner_row.append(usr) |
|
2840 | 2851 | |
|
2841 | 2852 | super_admin_ids = [] |
|
2842 | 2853 | super_admin_rows = [] |
|
2843 | 2854 | if with_admins: |
|
2844 | 2855 | for usr in User.get_all_super_admins(): |
|
2845 | 2856 | super_admin_ids.append(usr.user_id) |
|
2846 | 2857 | # if this admin is also owner, don't double the record |
|
2847 | 2858 | if usr.user_id == owner_row[0].user_id: |
|
2848 | 2859 | owner_row[0].admin_row = True |
|
2849 | 2860 | else: |
|
2850 | 2861 | usr = AttributeDict(usr.get_dict()) |
|
2851 | 2862 | usr.admin_row = True |
|
2852 | 2863 | usr.permission = _admin_perm |
|
2853 | 2864 | super_admin_rows.append(usr) |
|
2854 | 2865 | |
|
2855 | 2866 | q = UserRepoGroupToPerm.query().filter(UserRepoGroupToPerm.group == self) |
|
2856 | 2867 | q = q.options(joinedload(UserRepoGroupToPerm.group), |
|
2857 | 2868 | joinedload(UserRepoGroupToPerm.user), |
|
2858 | 2869 | joinedload(UserRepoGroupToPerm.permission),) |
|
2859 | 2870 | |
|
2860 | 2871 | # get owners and admins and permissions. We do a trick of re-writing |
|
2861 | 2872 | # objects from sqlalchemy to named-tuples due to sqlalchemy session |
|
2862 | 2873 | # has a global reference and changing one object propagates to all |
|
2863 | 2874 | # others. This means if admin is also an owner admin_row that change |
|
2864 | 2875 | # would propagate to both objects |
|
2865 | 2876 | perm_rows = [] |
|
2866 | 2877 | for _usr in q.all(): |
|
2867 | 2878 | usr = AttributeDict(_usr.user.get_dict()) |
|
2868 | 2879 | # if this user is also owner/admin, mark as duplicate record |
|
2869 | 2880 | if usr.user_id == owner_row[0].user_id or usr.user_id in super_admin_ids: |
|
2870 | 2881 | usr.duplicate_perm = True |
|
2871 | 2882 | usr.permission = _usr.permission.permission_name |
|
2872 | 2883 | perm_rows.append(usr) |
|
2873 | 2884 | |
|
2874 | 2885 | # filter the perm rows by 'default' first and then sort them by |
|
2875 | 2886 | # admin,write,read,none permissions sorted again alphabetically in |
|
2876 | 2887 | # each group |
|
2877 | 2888 | perm_rows = sorted(perm_rows, key=display_user_sort) |
|
2878 | 2889 | |
|
2879 | 2890 | user_groups_rows = [] |
|
2880 | 2891 | if expand_from_user_groups: |
|
2881 | 2892 | for ug in self.permission_user_groups(with_members=True): |
|
2882 | 2893 | for user_data in ug.members: |
|
2883 | 2894 | user_groups_rows.append(user_data) |
|
2884 | 2895 | |
|
2885 | 2896 | return super_admin_rows + owner_row + perm_rows + user_groups_rows |
|
2886 | 2897 | |
|
2887 | 2898 | def permission_user_groups(self, with_members=False): |
|
2888 | 2899 | q = UserGroupRepoGroupToPerm.query()\ |
|
2889 | 2900 | .filter(UserGroupRepoGroupToPerm.group == self) |
|
2890 | 2901 | q = q.options(joinedload(UserGroupRepoGroupToPerm.group), |
|
2891 | 2902 | joinedload(UserGroupRepoGroupToPerm.users_group), |
|
2892 | 2903 | joinedload(UserGroupRepoGroupToPerm.permission),) |
|
2893 | 2904 | |
|
2894 | 2905 | perm_rows = [] |
|
2895 | 2906 | for _user_group in q.all(): |
|
2896 | 2907 | entry = AttributeDict(_user_group.users_group.get_dict()) |
|
2897 | 2908 | entry.permission = _user_group.permission.permission_name |
|
2898 | 2909 | if with_members: |
|
2899 | 2910 | entry.members = [x.user.get_dict() |
|
2900 | 2911 | for x in _user_group.users_group.members] |
|
2901 | 2912 | perm_rows.append(entry) |
|
2902 | 2913 | |
|
2903 | 2914 | perm_rows = sorted(perm_rows, key=display_user_group_sort) |
|
2904 | 2915 | return perm_rows |
|
2905 | 2916 | |
|
2906 | 2917 | def get_api_data(self): |
|
2907 | 2918 | """ |
|
2908 | 2919 | Common function for generating api data |
|
2909 | 2920 | |
|
2910 | 2921 | """ |
|
2911 | 2922 | group = self |
|
2912 | 2923 | data = { |
|
2913 | 2924 | 'group_id': group.group_id, |
|
2914 | 2925 | 'group_name': group.group_name, |
|
2915 | 2926 | 'group_description': group.description_safe, |
|
2916 | 2927 | 'parent_group': group.parent_group.group_name if group.parent_group else None, |
|
2917 | 2928 | 'repositories': [x.repo_name for x in group.repositories], |
|
2918 | 2929 | 'owner': group.user.username, |
|
2919 | 2930 | } |
|
2920 | 2931 | return data |
|
2921 | 2932 | |
|
2922 | 2933 | def get_dict(self): |
|
2923 | 2934 | # Since we transformed `group_name` to a hybrid property, we need to |
|
2924 | 2935 | # keep compatibility with the code which uses `group_name` field. |
|
2925 | 2936 | result = super(RepoGroup, self).get_dict() |
|
2926 | 2937 | result['group_name'] = result.pop('_group_name', None) |
|
2927 | 2938 | return result |
|
2928 | 2939 | |
|
2929 | 2940 | |
|
2930 | 2941 | class Permission(Base, BaseModel): |
|
2931 | 2942 | __tablename__ = 'permissions' |
|
2932 | 2943 | __table_args__ = ( |
|
2933 | 2944 | Index('p_perm_name_idx', 'permission_name'), |
|
2934 | 2945 | base_table_args, |
|
2935 | 2946 | ) |
|
2936 | 2947 | |
|
2937 | 2948 | PERMS = [ |
|
2938 | 2949 | ('hg.admin', _('RhodeCode Super Administrator')), |
|
2939 | 2950 | |
|
2940 | 2951 | ('repository.none', _('Repository no access')), |
|
2941 | 2952 | ('repository.read', _('Repository read access')), |
|
2942 | 2953 | ('repository.write', _('Repository write access')), |
|
2943 | 2954 | ('repository.admin', _('Repository admin access')), |
|
2944 | 2955 | |
|
2945 | 2956 | ('group.none', _('Repository group no access')), |
|
2946 | 2957 | ('group.read', _('Repository group read access')), |
|
2947 | 2958 | ('group.write', _('Repository group write access')), |
|
2948 | 2959 | ('group.admin', _('Repository group admin access')), |
|
2949 | 2960 | |
|
2950 | 2961 | ('usergroup.none', _('User group no access')), |
|
2951 | 2962 | ('usergroup.read', _('User group read access')), |
|
2952 | 2963 | ('usergroup.write', _('User group write access')), |
|
2953 | 2964 | ('usergroup.admin', _('User group admin access')), |
|
2954 | 2965 | |
|
2955 | 2966 | ('branch.none', _('Branch no permissions')), |
|
2956 | 2967 | ('branch.merge', _('Branch access by web merge')), |
|
2957 | 2968 | ('branch.push', _('Branch access by push')), |
|
2958 | 2969 | ('branch.push_force', _('Branch access by push with force')), |
|
2959 | 2970 | |
|
2960 | 2971 | ('hg.repogroup.create.false', _('Repository Group creation disabled')), |
|
2961 | 2972 | ('hg.repogroup.create.true', _('Repository Group creation enabled')), |
|
2962 | 2973 | |
|
2963 | 2974 | ('hg.usergroup.create.false', _('User Group creation disabled')), |
|
2964 | 2975 | ('hg.usergroup.create.true', _('User Group creation enabled')), |
|
2965 | 2976 | |
|
2966 | 2977 | ('hg.create.none', _('Repository creation disabled')), |
|
2967 | 2978 | ('hg.create.repository', _('Repository creation enabled')), |
|
2968 | 2979 | ('hg.create.write_on_repogroup.true', _('Repository creation enabled with write permission to a repository group')), |
|
2969 | 2980 | ('hg.create.write_on_repogroup.false', _('Repository creation disabled with write permission to a repository group')), |
|
2970 | 2981 | |
|
2971 | 2982 | ('hg.fork.none', _('Repository forking disabled')), |
|
2972 | 2983 | ('hg.fork.repository', _('Repository forking enabled')), |
|
2973 | 2984 | |
|
2974 | 2985 | ('hg.register.none', _('Registration disabled')), |
|
2975 | 2986 | ('hg.register.manual_activate', _('User Registration with manual account activation')), |
|
2976 | 2987 | ('hg.register.auto_activate', _('User Registration with automatic account activation')), |
|
2977 | 2988 | |
|
2978 | 2989 | ('hg.password_reset.enabled', _('Password reset enabled')), |
|
2979 | 2990 | ('hg.password_reset.hidden', _('Password reset hidden')), |
|
2980 | 2991 | ('hg.password_reset.disabled', _('Password reset disabled')), |
|
2981 | 2992 | |
|
2982 | 2993 | ('hg.extern_activate.manual', _('Manual activation of external account')), |
|
2983 | 2994 | ('hg.extern_activate.auto', _('Automatic activation of external account')), |
|
2984 | 2995 | |
|
2985 | 2996 | ('hg.inherit_default_perms.false', _('Inherit object permissions from default user disabled')), |
|
2986 | 2997 | ('hg.inherit_default_perms.true', _('Inherit object permissions from default user enabled')), |
|
2987 | 2998 | ] |
|
2988 | 2999 | |
|
2989 | 3000 | # definition of system default permissions for DEFAULT user, created on |
|
2990 | 3001 | # system setup |
|
2991 | 3002 | DEFAULT_USER_PERMISSIONS = [ |
|
2992 | 3003 | # object perms |
|
2993 | 3004 | 'repository.read', |
|
2994 | 3005 | 'group.read', |
|
2995 | 3006 | 'usergroup.read', |
|
2996 | 3007 | # branch, for backward compat we need same value as before so forced pushed |
|
2997 | 3008 | 'branch.push_force', |
|
2998 | 3009 | # global |
|
2999 | 3010 | 'hg.create.repository', |
|
3000 | 3011 | 'hg.repogroup.create.false', |
|
3001 | 3012 | 'hg.usergroup.create.false', |
|
3002 | 3013 | 'hg.create.write_on_repogroup.true', |
|
3003 | 3014 | 'hg.fork.repository', |
|
3004 | 3015 | 'hg.register.manual_activate', |
|
3005 | 3016 | 'hg.password_reset.enabled', |
|
3006 | 3017 | 'hg.extern_activate.auto', |
|
3007 | 3018 | 'hg.inherit_default_perms.true', |
|
3008 | 3019 | ] |
|
3009 | 3020 | |
|
3010 | 3021 | # defines which permissions are more important higher the more important |
|
3011 | 3022 | # Weight defines which permissions are more important. |
|
3012 | 3023 | # The higher number the more important. |
|
3013 | 3024 | PERM_WEIGHTS = { |
|
3014 | 3025 | 'repository.none': 0, |
|
3015 | 3026 | 'repository.read': 1, |
|
3016 | 3027 | 'repository.write': 3, |
|
3017 | 3028 | 'repository.admin': 4, |
|
3018 | 3029 | |
|
3019 | 3030 | 'group.none': 0, |
|
3020 | 3031 | 'group.read': 1, |
|
3021 | 3032 | 'group.write': 3, |
|
3022 | 3033 | 'group.admin': 4, |
|
3023 | 3034 | |
|
3024 | 3035 | 'usergroup.none': 0, |
|
3025 | 3036 | 'usergroup.read': 1, |
|
3026 | 3037 | 'usergroup.write': 3, |
|
3027 | 3038 | 'usergroup.admin': 4, |
|
3028 | 3039 | |
|
3029 | 3040 | 'branch.none': 0, |
|
3030 | 3041 | 'branch.merge': 1, |
|
3031 | 3042 | 'branch.push': 3, |
|
3032 | 3043 | 'branch.push_force': 4, |
|
3033 | 3044 | |
|
3034 | 3045 | 'hg.repogroup.create.false': 0, |
|
3035 | 3046 | 'hg.repogroup.create.true': 1, |
|
3036 | 3047 | |
|
3037 | 3048 | 'hg.usergroup.create.false': 0, |
|
3038 | 3049 | 'hg.usergroup.create.true': 1, |
|
3039 | 3050 | |
|
3040 | 3051 | 'hg.fork.none': 0, |
|
3041 | 3052 | 'hg.fork.repository': 1, |
|
3042 | 3053 | 'hg.create.none': 0, |
|
3043 | 3054 | 'hg.create.repository': 1 |
|
3044 | 3055 | } |
|
3045 | 3056 | |
|
3046 | 3057 | permission_id = Column("permission_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3047 | 3058 | permission_name = Column("permission_name", String(255), nullable=True, unique=None, default=None) |
|
3048 | 3059 | permission_longname = Column("permission_longname", String(255), nullable=True, unique=None, default=None) |
|
3049 | 3060 | |
|
3050 | 3061 | def __unicode__(self): |
|
3051 | 3062 | return u"<%s('%s:%s')>" % ( |
|
3052 | 3063 | self.__class__.__name__, self.permission_id, self.permission_name |
|
3053 | 3064 | ) |
|
3054 | 3065 | |
|
3055 | 3066 | @classmethod |
|
3056 | 3067 | def get_by_key(cls, key): |
|
3057 | 3068 | return cls.query().filter(cls.permission_name == key).scalar() |
|
3058 | 3069 | |
|
3059 | 3070 | @classmethod |
|
3060 | 3071 | def get_default_repo_perms(cls, user_id, repo_id=None): |
|
3061 | 3072 | q = Session().query(UserRepoToPerm, Repository, Permission)\ |
|
3062 | 3073 | .join((Permission, UserRepoToPerm.permission_id == Permission.permission_id))\ |
|
3063 | 3074 | .join((Repository, UserRepoToPerm.repository_id == Repository.repo_id))\ |
|
3064 | 3075 | .filter(UserRepoToPerm.user_id == user_id) |
|
3065 | 3076 | if repo_id: |
|
3066 | 3077 | q = q.filter(UserRepoToPerm.repository_id == repo_id) |
|
3067 | 3078 | return q.all() |
|
3068 | 3079 | |
|
3069 | 3080 | @classmethod |
|
3070 | 3081 | def get_default_repo_branch_perms(cls, user_id, repo_id=None): |
|
3071 | 3082 | q = Session().query(UserToRepoBranchPermission, UserRepoToPerm, Permission) \ |
|
3072 | 3083 | .join( |
|
3073 | 3084 | Permission, |
|
3074 | 3085 | UserToRepoBranchPermission.permission_id == Permission.permission_id) \ |
|
3075 | 3086 | .join( |
|
3076 | 3087 | UserRepoToPerm, |
|
3077 | 3088 | UserToRepoBranchPermission.rule_to_perm_id == UserRepoToPerm.repo_to_perm_id) \ |
|
3078 | 3089 | .filter(UserRepoToPerm.user_id == user_id) |
|
3079 | 3090 | |
|
3080 | 3091 | if repo_id: |
|
3081 | 3092 | q = q.filter(UserToRepoBranchPermission.repository_id == repo_id) |
|
3082 | 3093 | return q.order_by(UserToRepoBranchPermission.rule_order).all() |
|
3083 | 3094 | |
|
3084 | 3095 | @classmethod |
|
3085 | 3096 | def get_default_repo_perms_from_user_group(cls, user_id, repo_id=None): |
|
3086 | 3097 | q = Session().query(UserGroupRepoToPerm, Repository, Permission)\ |
|
3087 | 3098 | .join( |
|
3088 | 3099 | Permission, |
|
3089 | 3100 | UserGroupRepoToPerm.permission_id == Permission.permission_id)\ |
|
3090 | 3101 | .join( |
|
3091 | 3102 | Repository, |
|
3092 | 3103 | UserGroupRepoToPerm.repository_id == Repository.repo_id)\ |
|
3093 | 3104 | .join( |
|
3094 | 3105 | UserGroup, |
|
3095 | 3106 | UserGroupRepoToPerm.users_group_id == |
|
3096 | 3107 | UserGroup.users_group_id)\ |
|
3097 | 3108 | .join( |
|
3098 | 3109 | UserGroupMember, |
|
3099 | 3110 | UserGroupRepoToPerm.users_group_id == |
|
3100 | 3111 | UserGroupMember.users_group_id)\ |
|
3101 | 3112 | .filter( |
|
3102 | 3113 | UserGroupMember.user_id == user_id, |
|
3103 | 3114 | UserGroup.users_group_active == true()) |
|
3104 | 3115 | if repo_id: |
|
3105 | 3116 | q = q.filter(UserGroupRepoToPerm.repository_id == repo_id) |
|
3106 | 3117 | return q.all() |
|
3107 | 3118 | |
|
3108 | 3119 | @classmethod |
|
3109 | 3120 | def get_default_repo_branch_perms_from_user_group(cls, user_id, repo_id=None): |
|
3110 | 3121 | q = Session().query(UserGroupToRepoBranchPermission, UserGroupRepoToPerm, Permission) \ |
|
3111 | 3122 | .join( |
|
3112 | 3123 | Permission, |
|
3113 | 3124 | UserGroupToRepoBranchPermission.permission_id == Permission.permission_id) \ |
|
3114 | 3125 | .join( |
|
3115 | 3126 | UserGroupRepoToPerm, |
|
3116 | 3127 | UserGroupToRepoBranchPermission.rule_to_perm_id == UserGroupRepoToPerm.users_group_to_perm_id) \ |
|
3117 | 3128 | .join( |
|
3118 | 3129 | UserGroup, |
|
3119 | 3130 | UserGroupRepoToPerm.users_group_id == UserGroup.users_group_id) \ |
|
3120 | 3131 | .join( |
|
3121 | 3132 | UserGroupMember, |
|
3122 | 3133 | UserGroupRepoToPerm.users_group_id == UserGroupMember.users_group_id) \ |
|
3123 | 3134 | .filter( |
|
3124 | 3135 | UserGroupMember.user_id == user_id, |
|
3125 | 3136 | UserGroup.users_group_active == true()) |
|
3126 | 3137 | |
|
3127 | 3138 | if repo_id: |
|
3128 | 3139 | q = q.filter(UserGroupToRepoBranchPermission.repository_id == repo_id) |
|
3129 | 3140 | return q.order_by(UserGroupToRepoBranchPermission.rule_order).all() |
|
3130 | 3141 | |
|
3131 | 3142 | @classmethod |
|
3132 | 3143 | def get_default_group_perms(cls, user_id, repo_group_id=None): |
|
3133 | 3144 | q = Session().query(UserRepoGroupToPerm, RepoGroup, Permission)\ |
|
3134 | 3145 | .join( |
|
3135 | 3146 | Permission, |
|
3136 | 3147 | UserRepoGroupToPerm.permission_id == Permission.permission_id)\ |
|
3137 | 3148 | .join( |
|
3138 | 3149 | RepoGroup, |
|
3139 | 3150 | UserRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
3140 | 3151 | .filter(UserRepoGroupToPerm.user_id == user_id) |
|
3141 | 3152 | if repo_group_id: |
|
3142 | 3153 | q = q.filter(UserRepoGroupToPerm.group_id == repo_group_id) |
|
3143 | 3154 | return q.all() |
|
3144 | 3155 | |
|
3145 | 3156 | @classmethod |
|
3146 | 3157 | def get_default_group_perms_from_user_group( |
|
3147 | 3158 | cls, user_id, repo_group_id=None): |
|
3148 | 3159 | q = Session().query(UserGroupRepoGroupToPerm, RepoGroup, Permission)\ |
|
3149 | 3160 | .join( |
|
3150 | 3161 | Permission, |
|
3151 | 3162 | UserGroupRepoGroupToPerm.permission_id == |
|
3152 | 3163 | Permission.permission_id)\ |
|
3153 | 3164 | .join( |
|
3154 | 3165 | RepoGroup, |
|
3155 | 3166 | UserGroupRepoGroupToPerm.group_id == RepoGroup.group_id)\ |
|
3156 | 3167 | .join( |
|
3157 | 3168 | UserGroup, |
|
3158 | 3169 | UserGroupRepoGroupToPerm.users_group_id == |
|
3159 | 3170 | UserGroup.users_group_id)\ |
|
3160 | 3171 | .join( |
|
3161 | 3172 | UserGroupMember, |
|
3162 | 3173 | UserGroupRepoGroupToPerm.users_group_id == |
|
3163 | 3174 | UserGroupMember.users_group_id)\ |
|
3164 | 3175 | .filter( |
|
3165 | 3176 | UserGroupMember.user_id == user_id, |
|
3166 | 3177 | UserGroup.users_group_active == true()) |
|
3167 | 3178 | if repo_group_id: |
|
3168 | 3179 | q = q.filter(UserGroupRepoGroupToPerm.group_id == repo_group_id) |
|
3169 | 3180 | return q.all() |
|
3170 | 3181 | |
|
3171 | 3182 | @classmethod |
|
3172 | 3183 | def get_default_user_group_perms(cls, user_id, user_group_id=None): |
|
3173 | 3184 | q = Session().query(UserUserGroupToPerm, UserGroup, Permission)\ |
|
3174 | 3185 | .join((Permission, UserUserGroupToPerm.permission_id == Permission.permission_id))\ |
|
3175 | 3186 | .join((UserGroup, UserUserGroupToPerm.user_group_id == UserGroup.users_group_id))\ |
|
3176 | 3187 | .filter(UserUserGroupToPerm.user_id == user_id) |
|
3177 | 3188 | if user_group_id: |
|
3178 | 3189 | q = q.filter(UserUserGroupToPerm.user_group_id == user_group_id) |
|
3179 | 3190 | return q.all() |
|
3180 | 3191 | |
|
3181 | 3192 | @classmethod |
|
3182 | 3193 | def get_default_user_group_perms_from_user_group( |
|
3183 | 3194 | cls, user_id, user_group_id=None): |
|
3184 | 3195 | TargetUserGroup = aliased(UserGroup, name='target_user_group') |
|
3185 | 3196 | q = Session().query(UserGroupUserGroupToPerm, UserGroup, Permission)\ |
|
3186 | 3197 | .join( |
|
3187 | 3198 | Permission, |
|
3188 | 3199 | UserGroupUserGroupToPerm.permission_id == |
|
3189 | 3200 | Permission.permission_id)\ |
|
3190 | 3201 | .join( |
|
3191 | 3202 | TargetUserGroup, |
|
3192 | 3203 | UserGroupUserGroupToPerm.target_user_group_id == |
|
3193 | 3204 | TargetUserGroup.users_group_id)\ |
|
3194 | 3205 | .join( |
|
3195 | 3206 | UserGroup, |
|
3196 | 3207 | UserGroupUserGroupToPerm.user_group_id == |
|
3197 | 3208 | UserGroup.users_group_id)\ |
|
3198 | 3209 | .join( |
|
3199 | 3210 | UserGroupMember, |
|
3200 | 3211 | UserGroupUserGroupToPerm.user_group_id == |
|
3201 | 3212 | UserGroupMember.users_group_id)\ |
|
3202 | 3213 | .filter( |
|
3203 | 3214 | UserGroupMember.user_id == user_id, |
|
3204 | 3215 | UserGroup.users_group_active == true()) |
|
3205 | 3216 | if user_group_id: |
|
3206 | 3217 | q = q.filter( |
|
3207 | 3218 | UserGroupUserGroupToPerm.user_group_id == user_group_id) |
|
3208 | 3219 | |
|
3209 | 3220 | return q.all() |
|
3210 | 3221 | |
|
3211 | 3222 | |
|
3212 | 3223 | class UserRepoToPerm(Base, BaseModel): |
|
3213 | 3224 | __tablename__ = 'repo_to_perm' |
|
3214 | 3225 | __table_args__ = ( |
|
3215 | 3226 | UniqueConstraint('user_id', 'repository_id', 'permission_id'), |
|
3216 | 3227 | base_table_args |
|
3217 | 3228 | ) |
|
3218 | 3229 | |
|
3219 | 3230 | repo_to_perm_id = Column("repo_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3220 | 3231 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3221 | 3232 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3222 | 3233 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
3223 | 3234 | |
|
3224 | 3235 | user = relationship('User') |
|
3225 | 3236 | repository = relationship('Repository') |
|
3226 | 3237 | permission = relationship('Permission') |
|
3227 | 3238 | |
|
3228 | 3239 | branch_perm_entry = relationship('UserToRepoBranchPermission', cascade="all, delete, delete-orphan", lazy='joined') |
|
3229 | 3240 | |
|
3230 | 3241 | @classmethod |
|
3231 | 3242 | def create(cls, user, repository, permission): |
|
3232 | 3243 | n = cls() |
|
3233 | 3244 | n.user = user |
|
3234 | 3245 | n.repository = repository |
|
3235 | 3246 | n.permission = permission |
|
3236 | 3247 | Session().add(n) |
|
3237 | 3248 | return n |
|
3238 | 3249 | |
|
3239 | 3250 | def __unicode__(self): |
|
3240 | 3251 | return u'<%s => %s >' % (self.user, self.repository) |
|
3241 | 3252 | |
|
3242 | 3253 | |
|
3243 | 3254 | class UserUserGroupToPerm(Base, BaseModel): |
|
3244 | 3255 | __tablename__ = 'user_user_group_to_perm' |
|
3245 | 3256 | __table_args__ = ( |
|
3246 | 3257 | UniqueConstraint('user_id', 'user_group_id', 'permission_id'), |
|
3247 | 3258 | base_table_args |
|
3248 | 3259 | ) |
|
3249 | 3260 | |
|
3250 | 3261 | user_user_group_to_perm_id = Column("user_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3251 | 3262 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3252 | 3263 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3253 | 3264 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3254 | 3265 | |
|
3255 | 3266 | user = relationship('User') |
|
3256 | 3267 | user_group = relationship('UserGroup') |
|
3257 | 3268 | permission = relationship('Permission') |
|
3258 | 3269 | |
|
3259 | 3270 | @classmethod |
|
3260 | 3271 | def create(cls, user, user_group, permission): |
|
3261 | 3272 | n = cls() |
|
3262 | 3273 | n.user = user |
|
3263 | 3274 | n.user_group = user_group |
|
3264 | 3275 | n.permission = permission |
|
3265 | 3276 | Session().add(n) |
|
3266 | 3277 | return n |
|
3267 | 3278 | |
|
3268 | 3279 | def __unicode__(self): |
|
3269 | 3280 | return u'<%s => %s >' % (self.user, self.user_group) |
|
3270 | 3281 | |
|
3271 | 3282 | |
|
3272 | 3283 | class UserToPerm(Base, BaseModel): |
|
3273 | 3284 | __tablename__ = 'user_to_perm' |
|
3274 | 3285 | __table_args__ = ( |
|
3275 | 3286 | UniqueConstraint('user_id', 'permission_id'), |
|
3276 | 3287 | base_table_args |
|
3277 | 3288 | ) |
|
3278 | 3289 | |
|
3279 | 3290 | user_to_perm_id = Column("user_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3280 | 3291 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3281 | 3292 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3282 | 3293 | |
|
3283 | 3294 | user = relationship('User') |
|
3284 | 3295 | permission = relationship('Permission', lazy='joined') |
|
3285 | 3296 | |
|
3286 | 3297 | def __unicode__(self): |
|
3287 | 3298 | return u'<%s => %s >' % (self.user, self.permission) |
|
3288 | 3299 | |
|
3289 | 3300 | |
|
3290 | 3301 | class UserGroupRepoToPerm(Base, BaseModel): |
|
3291 | 3302 | __tablename__ = 'users_group_repo_to_perm' |
|
3292 | 3303 | __table_args__ = ( |
|
3293 | 3304 | UniqueConstraint('repository_id', 'users_group_id', 'permission_id'), |
|
3294 | 3305 | base_table_args |
|
3295 | 3306 | ) |
|
3296 | 3307 | |
|
3297 | 3308 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3298 | 3309 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3299 | 3310 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3300 | 3311 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
3301 | 3312 | |
|
3302 | 3313 | users_group = relationship('UserGroup') |
|
3303 | 3314 | permission = relationship('Permission') |
|
3304 | 3315 | repository = relationship('Repository') |
|
3305 | 3316 | user_group_branch_perms = relationship('UserGroupToRepoBranchPermission', cascade='all') |
|
3306 | 3317 | |
|
3307 | 3318 | @classmethod |
|
3308 | 3319 | def create(cls, users_group, repository, permission): |
|
3309 | 3320 | n = cls() |
|
3310 | 3321 | n.users_group = users_group |
|
3311 | 3322 | n.repository = repository |
|
3312 | 3323 | n.permission = permission |
|
3313 | 3324 | Session().add(n) |
|
3314 | 3325 | return n |
|
3315 | 3326 | |
|
3316 | 3327 | def __unicode__(self): |
|
3317 | 3328 | return u'<UserGroupRepoToPerm:%s => %s >' % (self.users_group, self.repository) |
|
3318 | 3329 | |
|
3319 | 3330 | |
|
3320 | 3331 | class UserGroupUserGroupToPerm(Base, BaseModel): |
|
3321 | 3332 | __tablename__ = 'user_group_user_group_to_perm' |
|
3322 | 3333 | __table_args__ = ( |
|
3323 | 3334 | UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'), |
|
3324 | 3335 | CheckConstraint('target_user_group_id != user_group_id'), |
|
3325 | 3336 | base_table_args |
|
3326 | 3337 | ) |
|
3327 | 3338 | |
|
3328 | 3339 | user_group_user_group_to_perm_id = Column("user_group_user_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3329 | 3340 | target_user_group_id = Column("target_user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3330 | 3341 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3331 | 3342 | user_group_id = Column("user_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3332 | 3343 | |
|
3333 | 3344 | target_user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.target_user_group_id==UserGroup.users_group_id') |
|
3334 | 3345 | user_group = relationship('UserGroup', primaryjoin='UserGroupUserGroupToPerm.user_group_id==UserGroup.users_group_id') |
|
3335 | 3346 | permission = relationship('Permission') |
|
3336 | 3347 | |
|
3337 | 3348 | @classmethod |
|
3338 | 3349 | def create(cls, target_user_group, user_group, permission): |
|
3339 | 3350 | n = cls() |
|
3340 | 3351 | n.target_user_group = target_user_group |
|
3341 | 3352 | n.user_group = user_group |
|
3342 | 3353 | n.permission = permission |
|
3343 | 3354 | Session().add(n) |
|
3344 | 3355 | return n |
|
3345 | 3356 | |
|
3346 | 3357 | def __unicode__(self): |
|
3347 | 3358 | return u'<UserGroupUserGroup:%s => %s >' % (self.target_user_group, self.user_group) |
|
3348 | 3359 | |
|
3349 | 3360 | |
|
3350 | 3361 | class UserGroupToPerm(Base, BaseModel): |
|
3351 | 3362 | __tablename__ = 'users_group_to_perm' |
|
3352 | 3363 | __table_args__ = ( |
|
3353 | 3364 | UniqueConstraint('users_group_id', 'permission_id',), |
|
3354 | 3365 | base_table_args |
|
3355 | 3366 | ) |
|
3356 | 3367 | |
|
3357 | 3368 | users_group_to_perm_id = Column("users_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3358 | 3369 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3359 | 3370 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3360 | 3371 | |
|
3361 | 3372 | users_group = relationship('UserGroup') |
|
3362 | 3373 | permission = relationship('Permission') |
|
3363 | 3374 | |
|
3364 | 3375 | |
|
3365 | 3376 | class UserRepoGroupToPerm(Base, BaseModel): |
|
3366 | 3377 | __tablename__ = 'user_repo_group_to_perm' |
|
3367 | 3378 | __table_args__ = ( |
|
3368 | 3379 | UniqueConstraint('user_id', 'group_id', 'permission_id'), |
|
3369 | 3380 | base_table_args |
|
3370 | 3381 | ) |
|
3371 | 3382 | |
|
3372 | 3383 | group_to_perm_id = Column("group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3373 | 3384 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3374 | 3385 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
3375 | 3386 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3376 | 3387 | |
|
3377 | 3388 | user = relationship('User') |
|
3378 | 3389 | group = relationship('RepoGroup') |
|
3379 | 3390 | permission = relationship('Permission') |
|
3380 | 3391 | |
|
3381 | 3392 | @classmethod |
|
3382 | 3393 | def create(cls, user, repository_group, permission): |
|
3383 | 3394 | n = cls() |
|
3384 | 3395 | n.user = user |
|
3385 | 3396 | n.group = repository_group |
|
3386 | 3397 | n.permission = permission |
|
3387 | 3398 | Session().add(n) |
|
3388 | 3399 | return n |
|
3389 | 3400 | |
|
3390 | 3401 | |
|
3391 | 3402 | class UserGroupRepoGroupToPerm(Base, BaseModel): |
|
3392 | 3403 | __tablename__ = 'users_group_repo_group_to_perm' |
|
3393 | 3404 | __table_args__ = ( |
|
3394 | 3405 | UniqueConstraint('users_group_id', 'group_id'), |
|
3395 | 3406 | base_table_args |
|
3396 | 3407 | ) |
|
3397 | 3408 | |
|
3398 | 3409 | users_group_repo_group_to_perm_id = Column("users_group_repo_group_to_perm_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3399 | 3410 | users_group_id = Column("users_group_id", Integer(), ForeignKey('users_groups.users_group_id'), nullable=False, unique=None, default=None) |
|
3400 | 3411 | group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'), nullable=False, unique=None, default=None) |
|
3401 | 3412 | permission_id = Column("permission_id", Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
3402 | 3413 | |
|
3403 | 3414 | users_group = relationship('UserGroup') |
|
3404 | 3415 | permission = relationship('Permission') |
|
3405 | 3416 | group = relationship('RepoGroup') |
|
3406 | 3417 | |
|
3407 | 3418 | @classmethod |
|
3408 | 3419 | def create(cls, user_group, repository_group, permission): |
|
3409 | 3420 | n = cls() |
|
3410 | 3421 | n.users_group = user_group |
|
3411 | 3422 | n.group = repository_group |
|
3412 | 3423 | n.permission = permission |
|
3413 | 3424 | Session().add(n) |
|
3414 | 3425 | return n |
|
3415 | 3426 | |
|
3416 | 3427 | def __unicode__(self): |
|
3417 | 3428 | return u'<UserGroupRepoGroupToPerm:%s => %s >' % (self.users_group, self.group) |
|
3418 | 3429 | |
|
3419 | 3430 | |
|
3420 | 3431 | class Statistics(Base, BaseModel): |
|
3421 | 3432 | __tablename__ = 'statistics' |
|
3422 | 3433 | __table_args__ = ( |
|
3423 | 3434 | base_table_args |
|
3424 | 3435 | ) |
|
3425 | 3436 | |
|
3426 | 3437 | stat_id = Column("stat_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3427 | 3438 | repository_id = Column("repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=True, default=None) |
|
3428 | 3439 | stat_on_revision = Column("stat_on_revision", Integer(), nullable=False) |
|
3429 | 3440 | commit_activity = Column("commit_activity", LargeBinary(1000000), nullable=False)#JSON data |
|
3430 | 3441 | commit_activity_combined = Column("commit_activity_combined", LargeBinary(), nullable=False)#JSON data |
|
3431 | 3442 | languages = Column("languages", LargeBinary(1000000), nullable=False)#JSON data |
|
3432 | 3443 | |
|
3433 | 3444 | repository = relationship('Repository', single_parent=True) |
|
3434 | 3445 | |
|
3435 | 3446 | |
|
3436 | 3447 | class UserFollowing(Base, BaseModel): |
|
3437 | 3448 | __tablename__ = 'user_followings' |
|
3438 | 3449 | __table_args__ = ( |
|
3439 | 3450 | UniqueConstraint('user_id', 'follows_repository_id'), |
|
3440 | 3451 | UniqueConstraint('user_id', 'follows_user_id'), |
|
3441 | 3452 | base_table_args |
|
3442 | 3453 | ) |
|
3443 | 3454 | |
|
3444 | 3455 | user_following_id = Column("user_following_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3445 | 3456 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
3446 | 3457 | follows_repo_id = Column("follows_repository_id", Integer(), ForeignKey('repositories.repo_id'), nullable=True, unique=None, default=None) |
|
3447 | 3458 | follows_user_id = Column("follows_user_id", Integer(), ForeignKey('users.user_id'), nullable=True, unique=None, default=None) |
|
3448 | 3459 | follows_from = Column('follows_from', DateTime(timezone=False), nullable=True, unique=None, default=datetime.datetime.now) |
|
3449 | 3460 | |
|
3450 | 3461 | user = relationship('User', primaryjoin='User.user_id==UserFollowing.user_id') |
|
3451 | 3462 | |
|
3452 | 3463 | follows_user = relationship('User', primaryjoin='User.user_id==UserFollowing.follows_user_id') |
|
3453 | 3464 | follows_repository = relationship('Repository', order_by='Repository.repo_name') |
|
3454 | 3465 | |
|
3455 | 3466 | @classmethod |
|
3456 | 3467 | def get_repo_followers(cls, repo_id): |
|
3457 | 3468 | return cls.query().filter(cls.follows_repo_id == repo_id) |
|
3458 | 3469 | |
|
3459 | 3470 | |
|
3460 | 3471 | class CacheKey(Base, BaseModel): |
|
3461 | 3472 | __tablename__ = 'cache_invalidation' |
|
3462 | 3473 | __table_args__ = ( |
|
3463 | 3474 | UniqueConstraint('cache_key'), |
|
3464 | 3475 | Index('key_idx', 'cache_key'), |
|
3465 | 3476 | base_table_args, |
|
3466 | 3477 | ) |
|
3467 | 3478 | |
|
3468 | 3479 | CACHE_TYPE_FEED = 'FEED' |
|
3469 | 3480 | CACHE_TYPE_README = 'README' |
|
3470 | 3481 | # namespaces used to register process/thread aware caches |
|
3471 | 3482 | REPO_INVALIDATION_NAMESPACE = 'repo_cache:{repo_id}' |
|
3472 | 3483 | SETTINGS_INVALIDATION_NAMESPACE = 'system_settings' |
|
3473 | 3484 | |
|
3474 | 3485 | cache_id = Column("cache_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
3475 | 3486 | cache_key = Column("cache_key", String(255), nullable=True, unique=None, default=None) |
|
3476 | 3487 | cache_args = Column("cache_args", String(255), nullable=True, unique=None, default=None) |
|
3477 | 3488 | cache_active = Column("cache_active", Boolean(), nullable=True, unique=None, default=False) |
|
3478 | 3489 | |
|
3479 | 3490 | def __init__(self, cache_key, cache_args=''): |
|
3480 | 3491 | self.cache_key = cache_key |
|
3481 | 3492 | self.cache_args = cache_args |
|
3482 | 3493 | self.cache_active = False |
|
3483 | 3494 | |
|
3484 | 3495 | def __unicode__(self): |
|
3485 | 3496 | return u"<%s('%s:%s[%s]')>" % ( |
|
3486 | 3497 | self.__class__.__name__, |
|
3487 | 3498 | self.cache_id, self.cache_key, self.cache_active) |
|
3488 | 3499 | |
|
3489 | 3500 | def _cache_key_partition(self): |
|
3490 | 3501 | prefix, repo_name, suffix = self.cache_key.partition(self.cache_args) |
|
3491 | 3502 | return prefix, repo_name, suffix |
|
3492 | 3503 | |
|
3493 | 3504 | def get_prefix(self): |
|
3494 | 3505 | """ |
|
3495 | 3506 | Try to extract prefix from existing cache key. The key could consist |
|
3496 | 3507 | of prefix, repo_name, suffix |
|
3497 | 3508 | """ |
|
3498 | 3509 | # this returns prefix, repo_name, suffix |
|
3499 | 3510 | return self._cache_key_partition()[0] |
|
3500 | 3511 | |
|
3501 | 3512 | def get_suffix(self): |
|
3502 | 3513 | """ |
|
3503 | 3514 | get suffix that might have been used in _get_cache_key to |
|
3504 | 3515 | generate self.cache_key. Only used for informational purposes |
|
3505 | 3516 | in repo_edit.mako. |
|
3506 | 3517 | """ |
|
3507 | 3518 | # prefix, repo_name, suffix |
|
3508 | 3519 | return self._cache_key_partition()[2] |
|
3509 | 3520 | |
|
3510 | 3521 | @classmethod |
|
3511 | 3522 | def delete_all_cache(cls): |
|
3512 | 3523 | """ |
|
3513 | 3524 | Delete all cache keys from database. |
|
3514 | 3525 | Should only be run when all instances are down and all entries |
|
3515 | 3526 | thus stale. |
|
3516 | 3527 | """ |
|
3517 | 3528 | cls.query().delete() |
|
3518 | 3529 | Session().commit() |
|
3519 | 3530 | |
|
3520 | 3531 | @classmethod |
|
3521 | 3532 | def set_invalidate(cls, cache_uid, delete=False): |
|
3522 | 3533 | """ |
|
3523 | 3534 | Mark all caches of a repo as invalid in the database. |
|
3524 | 3535 | """ |
|
3525 | 3536 | |
|
3526 | 3537 | try: |
|
3527 | 3538 | qry = Session().query(cls).filter(cls.cache_args == cache_uid) |
|
3528 | 3539 | if delete: |
|
3529 | 3540 | qry.delete() |
|
3530 | 3541 | log.debug('cache objects deleted for cache args %s', |
|
3531 | 3542 | safe_str(cache_uid)) |
|
3532 | 3543 | else: |
|
3533 | 3544 | qry.update({"cache_active": False}) |
|
3534 | 3545 | log.debug('cache objects marked as invalid for cache args %s', |
|
3535 | 3546 | safe_str(cache_uid)) |
|
3536 | 3547 | |
|
3537 | 3548 | Session().commit() |
|
3538 | 3549 | except Exception: |
|
3539 | 3550 | log.exception( |
|
3540 | 3551 | 'Cache key invalidation failed for cache args %s', |
|
3541 | 3552 | safe_str(cache_uid)) |
|
3542 | 3553 | Session().rollback() |
|
3543 | 3554 | |
|
3544 | 3555 | @classmethod |
|
3545 | 3556 | def get_active_cache(cls, cache_key): |
|
3546 | 3557 | inv_obj = cls.query().filter(cls.cache_key == cache_key).scalar() |
|
3547 | 3558 | if inv_obj: |
|
3548 | 3559 | return inv_obj |
|
3549 | 3560 | return None |
|
3550 | 3561 | |
|
3551 | 3562 | |
|
3552 | 3563 | class ChangesetComment(Base, BaseModel): |
|
3553 | 3564 | __tablename__ = 'changeset_comments' |
|
3554 | 3565 | __table_args__ = ( |
|
3555 | 3566 | Index('cc_revision_idx', 'revision'), |
|
3556 | 3567 | base_table_args, |
|
3557 | 3568 | ) |
|
3558 | 3569 | |
|
3559 | 3570 | COMMENT_OUTDATED = u'comment_outdated' |
|
3560 | 3571 | COMMENT_TYPE_NOTE = u'note' |
|
3561 | 3572 | COMMENT_TYPE_TODO = u'todo' |
|
3562 | 3573 | COMMENT_TYPES = [COMMENT_TYPE_NOTE, COMMENT_TYPE_TODO] |
|
3563 | 3574 | |
|
3564 | 3575 | comment_id = Column('comment_id', Integer(), nullable=False, primary_key=True) |
|
3565 | 3576 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
3566 | 3577 | revision = Column('revision', String(40), nullable=True) |
|
3567 | 3578 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
3568 | 3579 | pull_request_version_id = Column("pull_request_version_id", Integer(), ForeignKey('pull_request_versions.pull_request_version_id'), nullable=True) |
|
3569 | 3580 | line_no = Column('line_no', Unicode(10), nullable=True) |
|
3570 | 3581 | hl_lines = Column('hl_lines', Unicode(512), nullable=True) |
|
3571 | 3582 | f_path = Column('f_path', Unicode(1000), nullable=True) |
|
3572 | 3583 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
3573 | 3584 | text = Column('text', UnicodeText().with_variant(UnicodeText(25000), 'mysql'), nullable=False) |
|
3574 | 3585 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3575 | 3586 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
3576 | 3587 | renderer = Column('renderer', Unicode(64), nullable=True) |
|
3577 | 3588 | display_state = Column('display_state', Unicode(128), nullable=True) |
|
3578 | 3589 | |
|
3579 | 3590 | comment_type = Column('comment_type', Unicode(128), nullable=True, default=COMMENT_TYPE_NOTE) |
|
3580 | 3591 | resolved_comment_id = Column('resolved_comment_id', Integer(), ForeignKey('changeset_comments.comment_id'), nullable=True) |
|
3581 | 3592 | |
|
3582 | 3593 | resolved_comment = relationship('ChangesetComment', remote_side=comment_id, back_populates='resolved_by') |
|
3583 | 3594 | resolved_by = relationship('ChangesetComment', back_populates='resolved_comment') |
|
3584 | 3595 | |
|
3585 | 3596 | author = relationship('User', lazy='joined') |
|
3586 | 3597 | repo = relationship('Repository') |
|
3587 | 3598 | status_change = relationship('ChangesetStatus', cascade="all, delete, delete-orphan", lazy='joined') |
|
3588 | 3599 | pull_request = relationship('PullRequest', lazy='joined') |
|
3589 | 3600 | pull_request_version = relationship('PullRequestVersion') |
|
3590 | 3601 | |
|
3591 | 3602 | @classmethod |
|
3592 | 3603 | def get_users(cls, revision=None, pull_request_id=None): |
|
3593 | 3604 | """ |
|
3594 | 3605 | Returns user associated with this ChangesetComment. ie those |
|
3595 | 3606 | who actually commented |
|
3596 | 3607 | |
|
3597 | 3608 | :param cls: |
|
3598 | 3609 | :param revision: |
|
3599 | 3610 | """ |
|
3600 | 3611 | q = Session().query(User)\ |
|
3601 | 3612 | .join(ChangesetComment.author) |
|
3602 | 3613 | if revision: |
|
3603 | 3614 | q = q.filter(cls.revision == revision) |
|
3604 | 3615 | elif pull_request_id: |
|
3605 | 3616 | q = q.filter(cls.pull_request_id == pull_request_id) |
|
3606 | 3617 | return q.all() |
|
3607 | 3618 | |
|
3608 | 3619 | @classmethod |
|
3609 | 3620 | def get_index_from_version(cls, pr_version, versions): |
|
3610 | 3621 | num_versions = [x.pull_request_version_id for x in versions] |
|
3611 | 3622 | try: |
|
3612 | 3623 | return num_versions.index(pr_version) +1 |
|
3613 | 3624 | except (IndexError, ValueError): |
|
3614 | 3625 | return |
|
3615 | 3626 | |
|
3616 | 3627 | @property |
|
3617 | 3628 | def outdated(self): |
|
3618 | 3629 | return self.display_state == self.COMMENT_OUTDATED |
|
3619 | 3630 | |
|
3620 | 3631 | def outdated_at_version(self, version): |
|
3621 | 3632 | """ |
|
3622 | 3633 | Checks if comment is outdated for given pull request version |
|
3623 | 3634 | """ |
|
3624 | 3635 | return self.outdated and self.pull_request_version_id != version |
|
3625 | 3636 | |
|
3626 | 3637 | def older_than_version(self, version): |
|
3627 | 3638 | """ |
|
3628 | 3639 | Checks if comment is made from previous version than given |
|
3629 | 3640 | """ |
|
3630 | 3641 | if version is None: |
|
3631 | 3642 | return self.pull_request_version_id is not None |
|
3632 | 3643 | |
|
3633 | 3644 | return self.pull_request_version_id < version |
|
3634 | 3645 | |
|
3635 | 3646 | @property |
|
3636 | 3647 | def resolved(self): |
|
3637 | 3648 | return self.resolved_by[0] if self.resolved_by else None |
|
3638 | 3649 | |
|
3639 | 3650 | @property |
|
3640 | 3651 | def is_todo(self): |
|
3641 | 3652 | return self.comment_type == self.COMMENT_TYPE_TODO |
|
3642 | 3653 | |
|
3643 | 3654 | @property |
|
3644 | 3655 | def is_inline(self): |
|
3645 | 3656 | return self.line_no and self.f_path |
|
3646 | 3657 | |
|
3647 | 3658 | def get_index_version(self, versions): |
|
3648 | 3659 | return self.get_index_from_version( |
|
3649 | 3660 | self.pull_request_version_id, versions) |
|
3650 | 3661 | |
|
3651 | 3662 | def __repr__(self): |
|
3652 | 3663 | if self.comment_id: |
|
3653 | 3664 | return '<DB:Comment #%s>' % self.comment_id |
|
3654 | 3665 | else: |
|
3655 | 3666 | return '<DB:Comment at %#x>' % id(self) |
|
3656 | 3667 | |
|
3657 | 3668 | def get_api_data(self): |
|
3658 | 3669 | comment = self |
|
3659 | 3670 | data = { |
|
3660 | 3671 | 'comment_id': comment.comment_id, |
|
3661 | 3672 | 'comment_type': comment.comment_type, |
|
3662 | 3673 | 'comment_text': comment.text, |
|
3663 | 3674 | 'comment_status': comment.status_change, |
|
3664 | 3675 | 'comment_f_path': comment.f_path, |
|
3665 | 3676 | 'comment_lineno': comment.line_no, |
|
3666 | 3677 | 'comment_author': comment.author, |
|
3667 | 3678 | 'comment_created_on': comment.created_on, |
|
3668 | 3679 | 'comment_resolved_by': self.resolved |
|
3669 | 3680 | } |
|
3670 | 3681 | return data |
|
3671 | 3682 | |
|
3672 | 3683 | def __json__(self): |
|
3673 | 3684 | data = dict() |
|
3674 | 3685 | data.update(self.get_api_data()) |
|
3675 | 3686 | return data |
|
3676 | 3687 | |
|
3677 | 3688 | |
|
3678 | 3689 | class ChangesetStatus(Base, BaseModel): |
|
3679 | 3690 | __tablename__ = 'changeset_statuses' |
|
3680 | 3691 | __table_args__ = ( |
|
3681 | 3692 | Index('cs_revision_idx', 'revision'), |
|
3682 | 3693 | Index('cs_version_idx', 'version'), |
|
3683 | 3694 | UniqueConstraint('repo_id', 'revision', 'version'), |
|
3684 | 3695 | base_table_args |
|
3685 | 3696 | ) |
|
3686 | 3697 | |
|
3687 | 3698 | STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed' |
|
3688 | 3699 | STATUS_APPROVED = 'approved' |
|
3689 | 3700 | STATUS_REJECTED = 'rejected' |
|
3690 | 3701 | STATUS_UNDER_REVIEW = 'under_review' |
|
3691 | 3702 | |
|
3692 | 3703 | STATUSES = [ |
|
3693 | 3704 | (STATUS_NOT_REVIEWED, _("Not Reviewed")), # (no icon) and default |
|
3694 | 3705 | (STATUS_APPROVED, _("Approved")), |
|
3695 | 3706 | (STATUS_REJECTED, _("Rejected")), |
|
3696 | 3707 | (STATUS_UNDER_REVIEW, _("Under Review")), |
|
3697 | 3708 | ] |
|
3698 | 3709 | |
|
3699 | 3710 | changeset_status_id = Column('changeset_status_id', Integer(), nullable=False, primary_key=True) |
|
3700 | 3711 | repo_id = Column('repo_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False) |
|
3701 | 3712 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None) |
|
3702 | 3713 | revision = Column('revision', String(40), nullable=False) |
|
3703 | 3714 | status = Column('status', String(128), nullable=False, default=DEFAULT) |
|
3704 | 3715 | changeset_comment_id = Column('changeset_comment_id', Integer(), ForeignKey('changeset_comments.comment_id')) |
|
3705 | 3716 | modified_at = Column('modified_at', DateTime(), nullable=False, default=datetime.datetime.now) |
|
3706 | 3717 | version = Column('version', Integer(), nullable=False, default=0) |
|
3707 | 3718 | pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True) |
|
3708 | 3719 | |
|
3709 | 3720 | author = relationship('User', lazy='joined') |
|
3710 | 3721 | repo = relationship('Repository') |
|
3711 | 3722 | comment = relationship('ChangesetComment', lazy='joined') |
|
3712 | 3723 | pull_request = relationship('PullRequest', lazy='joined') |
|
3713 | 3724 | |
|
3714 | 3725 | def __unicode__(self): |
|
3715 | 3726 | return u"<%s('%s[v%s]:%s')>" % ( |
|
3716 | 3727 | self.__class__.__name__, |
|
3717 | 3728 | self.status, self.version, self.author |
|
3718 | 3729 | ) |
|
3719 | 3730 | |
|
3720 | 3731 | @classmethod |
|
3721 | 3732 | def get_status_lbl(cls, value): |
|
3722 | 3733 | return dict(cls.STATUSES).get(value) |
|
3723 | 3734 | |
|
3724 | 3735 | @property |
|
3725 | 3736 | def status_lbl(self): |
|
3726 | 3737 | return ChangesetStatus.get_status_lbl(self.status) |
|
3727 | 3738 | |
|
3728 | 3739 | def get_api_data(self): |
|
3729 | 3740 | status = self |
|
3730 | 3741 | data = { |
|
3731 | 3742 | 'status_id': status.changeset_status_id, |
|
3732 | 3743 | 'status': status.status, |
|
3733 | 3744 | } |
|
3734 | 3745 | return data |
|
3735 | 3746 | |
|
3736 | 3747 | def __json__(self): |
|
3737 | 3748 | data = dict() |
|
3738 | 3749 | data.update(self.get_api_data()) |
|
3739 | 3750 | return data |
|
3740 | 3751 | |
|
3741 | 3752 | |
|
3742 | 3753 | class _SetState(object): |
|
3743 | 3754 | """ |
|
3744 | 3755 | Context processor allowing changing state for sensitive operation such as |
|
3745 | 3756 | pull request update or merge |
|
3746 | 3757 | """ |
|
3747 | 3758 | |
|
3748 | 3759 | def __init__(self, pull_request, pr_state, back_state=None): |
|
3749 | 3760 | self._pr = pull_request |
|
3750 | 3761 | self._org_state = back_state or pull_request.pull_request_state |
|
3751 | 3762 | self._pr_state = pr_state |
|
3752 | 3763 | |
|
3753 | 3764 | def __enter__(self): |
|
3754 | 3765 | log.debug('StateLock: entering set state context, setting state to: `%s`', |
|
3755 | 3766 | self._pr_state) |
|
3756 | 3767 | self._pr.pull_request_state = self._pr_state |
|
3757 | 3768 | Session().add(self._pr) |
|
3758 | 3769 | Session().commit() |
|
3759 | 3770 | |
|
3760 | 3771 | def __exit__(self, exc_type, exc_val, exc_tb): |
|
3761 | 3772 | log.debug('StateLock: exiting set state context, setting state to: `%s`', |
|
3762 | 3773 | self._org_state) |
|
3763 | 3774 | self._pr.pull_request_state = self._org_state |
|
3764 | 3775 | Session().add(self._pr) |
|
3765 | 3776 | Session().commit() |
|
3766 | 3777 | |
|
3767 | 3778 | |
|
3768 | 3779 | class _PullRequestBase(BaseModel): |
|
3769 | 3780 | """ |
|
3770 | 3781 | Common attributes of pull request and version entries. |
|
3771 | 3782 | """ |
|
3772 | 3783 | |
|
3773 | 3784 | # .status values |
|
3774 | 3785 | STATUS_NEW = u'new' |
|
3775 | 3786 | STATUS_OPEN = u'open' |
|
3776 | 3787 | STATUS_CLOSED = u'closed' |
|
3777 | 3788 | |
|
3778 | 3789 | # available states |
|
3779 | 3790 | STATE_CREATING = u'creating' |
|
3780 | 3791 | STATE_UPDATING = u'updating' |
|
3781 | 3792 | STATE_MERGING = u'merging' |
|
3782 | 3793 | STATE_CREATED = u'created' |
|
3783 | 3794 | |
|
3784 | 3795 | title = Column('title', Unicode(255), nullable=True) |
|
3785 | 3796 | description = Column( |
|
3786 | 3797 | 'description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), |
|
3787 | 3798 | nullable=True) |
|
3788 | 3799 | description_renderer = Column('description_renderer', Unicode(64), nullable=True) |
|
3789 | 3800 | |
|
3790 | 3801 | # new/open/closed status of pull request (not approve/reject/etc) |
|
3791 | 3802 | status = Column('status', Unicode(255), nullable=False, default=STATUS_NEW) |
|
3792 | 3803 | created_on = Column( |
|
3793 | 3804 | 'created_on', DateTime(timezone=False), nullable=False, |
|
3794 | 3805 | default=datetime.datetime.now) |
|
3795 | 3806 | updated_on = Column( |
|
3796 | 3807 | 'updated_on', DateTime(timezone=False), nullable=False, |
|
3797 | 3808 | default=datetime.datetime.now) |
|
3798 | 3809 | |
|
3799 | 3810 | pull_request_state = Column("pull_request_state", String(255), nullable=True) |
|
3800 | 3811 | |
|
3801 | 3812 | @declared_attr |
|
3802 | 3813 | def user_id(cls): |
|
3803 | 3814 | return Column( |
|
3804 | 3815 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=False, |
|
3805 | 3816 | unique=None) |
|
3806 | 3817 | |
|
3807 | 3818 | # 500 revisions max |
|
3808 | 3819 | _revisions = Column( |
|
3809 | 3820 | 'revisions', UnicodeText().with_variant(UnicodeText(20500), 'mysql')) |
|
3810 | 3821 | |
|
3811 | 3822 | @declared_attr |
|
3812 | 3823 | def source_repo_id(cls): |
|
3813 | 3824 | # TODO: dan: rename column to source_repo_id |
|
3814 | 3825 | return Column( |
|
3815 | 3826 | 'org_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3816 | 3827 | nullable=False) |
|
3817 | 3828 | |
|
3818 | 3829 | _source_ref = Column('org_ref', Unicode(255), nullable=False) |
|
3819 | 3830 | |
|
3820 | 3831 | @hybrid_property |
|
3821 | 3832 | def source_ref(self): |
|
3822 | 3833 | return self._source_ref |
|
3823 | 3834 | |
|
3824 | 3835 | @source_ref.setter |
|
3825 | 3836 | def source_ref(self, val): |
|
3826 | 3837 | parts = (val or '').split(':') |
|
3827 | 3838 | if len(parts) != 3: |
|
3828 | 3839 | raise ValueError( |
|
3829 | 3840 | 'Invalid reference format given: {}, expected X:Y:Z'.format(val)) |
|
3830 | 3841 | self._source_ref = safe_unicode(val) |
|
3831 | 3842 | |
|
3832 | 3843 | _target_ref = Column('other_ref', Unicode(255), nullable=False) |
|
3833 | 3844 | |
|
3834 | 3845 | @hybrid_property |
|
3835 | 3846 | def target_ref(self): |
|
3836 | 3847 | return self._target_ref |
|
3837 | 3848 | |
|
3838 | 3849 | @target_ref.setter |
|
3839 | 3850 | def target_ref(self, val): |
|
3840 | 3851 | parts = (val or '').split(':') |
|
3841 | 3852 | if len(parts) != 3: |
|
3842 | 3853 | raise ValueError( |
|
3843 | 3854 | 'Invalid reference format given: {}, expected X:Y:Z'.format(val)) |
|
3844 | 3855 | self._target_ref = safe_unicode(val) |
|
3845 | 3856 | |
|
3846 | 3857 | @declared_attr |
|
3847 | 3858 | def target_repo_id(cls): |
|
3848 | 3859 | # TODO: dan: rename column to target_repo_id |
|
3849 | 3860 | return Column( |
|
3850 | 3861 | 'other_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
3851 | 3862 | nullable=False) |
|
3852 | 3863 | |
|
3853 | 3864 | _shadow_merge_ref = Column('shadow_merge_ref', Unicode(255), nullable=True) |
|
3854 | 3865 | |
|
3855 | 3866 | # TODO: dan: rename column to last_merge_source_rev |
|
3856 | 3867 | _last_merge_source_rev = Column( |
|
3857 | 3868 | 'last_merge_org_rev', String(40), nullable=True) |
|
3858 | 3869 | # TODO: dan: rename column to last_merge_target_rev |
|
3859 | 3870 | _last_merge_target_rev = Column( |
|
3860 | 3871 | 'last_merge_other_rev', String(40), nullable=True) |
|
3861 | 3872 | _last_merge_status = Column('merge_status', Integer(), nullable=True) |
|
3862 | 3873 | merge_rev = Column('merge_rev', String(40), nullable=True) |
|
3863 | 3874 | |
|
3864 | 3875 | reviewer_data = Column( |
|
3865 | 3876 | 'reviewer_data_json', MutationObj.as_mutable( |
|
3866 | 3877 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
3867 | 3878 | |
|
3868 | 3879 | @property |
|
3869 | 3880 | def reviewer_data_json(self): |
|
3870 | 3881 | return json.dumps(self.reviewer_data) |
|
3871 | 3882 | |
|
3872 | 3883 | @hybrid_property |
|
3873 | 3884 | def description_safe(self): |
|
3874 | 3885 | from rhodecode.lib import helpers as h |
|
3875 | 3886 | return h.escape(self.description) |
|
3876 | 3887 | |
|
3877 | 3888 | @hybrid_property |
|
3878 | 3889 | def revisions(self): |
|
3879 | 3890 | return self._revisions.split(':') if self._revisions else [] |
|
3880 | 3891 | |
|
3881 | 3892 | @revisions.setter |
|
3882 | 3893 | def revisions(self, val): |
|
3883 | 3894 | self._revisions = ':'.join(val) |
|
3884 | 3895 | |
|
3885 | 3896 | @hybrid_property |
|
3886 | 3897 | def last_merge_status(self): |
|
3887 | 3898 | return safe_int(self._last_merge_status) |
|
3888 | 3899 | |
|
3889 | 3900 | @last_merge_status.setter |
|
3890 | 3901 | def last_merge_status(self, val): |
|
3891 | 3902 | self._last_merge_status = val |
|
3892 | 3903 | |
|
3893 | 3904 | @declared_attr |
|
3894 | 3905 | def author(cls): |
|
3895 | 3906 | return relationship('User', lazy='joined') |
|
3896 | 3907 | |
|
3897 | 3908 | @declared_attr |
|
3898 | 3909 | def source_repo(cls): |
|
3899 | 3910 | return relationship( |
|
3900 | 3911 | 'Repository', |
|
3901 | 3912 | primaryjoin='%s.source_repo_id==Repository.repo_id' % cls.__name__) |
|
3902 | 3913 | |
|
3903 | 3914 | @property |
|
3904 | 3915 | def source_ref_parts(self): |
|
3905 | 3916 | return self.unicode_to_reference(self.source_ref) |
|
3906 | 3917 | |
|
3907 | 3918 | @declared_attr |
|
3908 | 3919 | def target_repo(cls): |
|
3909 | 3920 | return relationship( |
|
3910 | 3921 | 'Repository', |
|
3911 | 3922 | primaryjoin='%s.target_repo_id==Repository.repo_id' % cls.__name__) |
|
3912 | 3923 | |
|
3913 | 3924 | @property |
|
3914 | 3925 | def target_ref_parts(self): |
|
3915 | 3926 | return self.unicode_to_reference(self.target_ref) |
|
3916 | 3927 | |
|
3917 | 3928 | @property |
|
3918 | 3929 | def shadow_merge_ref(self): |
|
3919 | 3930 | return self.unicode_to_reference(self._shadow_merge_ref) |
|
3920 | 3931 | |
|
3921 | 3932 | @shadow_merge_ref.setter |
|
3922 | 3933 | def shadow_merge_ref(self, ref): |
|
3923 | 3934 | self._shadow_merge_ref = self.reference_to_unicode(ref) |
|
3924 | 3935 | |
|
3925 | 3936 | @staticmethod |
|
3926 | 3937 | def unicode_to_reference(raw): |
|
3927 | 3938 | """ |
|
3928 | 3939 | Convert a unicode (or string) to a reference object. |
|
3929 | 3940 | If unicode evaluates to False it returns None. |
|
3930 | 3941 | """ |
|
3931 | 3942 | if raw: |
|
3932 | 3943 | refs = raw.split(':') |
|
3933 | 3944 | return Reference(*refs) |
|
3934 | 3945 | else: |
|
3935 | 3946 | return None |
|
3936 | 3947 | |
|
3937 | 3948 | @staticmethod |
|
3938 | 3949 | def reference_to_unicode(ref): |
|
3939 | 3950 | """ |
|
3940 | 3951 | Convert a reference object to unicode. |
|
3941 | 3952 | If reference is None it returns None. |
|
3942 | 3953 | """ |
|
3943 | 3954 | if ref: |
|
3944 | 3955 | return u':'.join(ref) |
|
3945 | 3956 | else: |
|
3946 | 3957 | return None |
|
3947 | 3958 | |
|
3948 | 3959 | def get_api_data(self, with_merge_state=True): |
|
3949 | 3960 | from rhodecode.model.pull_request import PullRequestModel |
|
3950 | 3961 | |
|
3951 | 3962 | pull_request = self |
|
3952 | 3963 | if with_merge_state: |
|
3953 | 3964 | merge_status = PullRequestModel().merge_status(pull_request) |
|
3954 | 3965 | merge_state = { |
|
3955 | 3966 | 'status': merge_status[0], |
|
3956 | 3967 | 'message': safe_unicode(merge_status[1]), |
|
3957 | 3968 | } |
|
3958 | 3969 | else: |
|
3959 | 3970 | merge_state = {'status': 'not_available', |
|
3960 | 3971 | 'message': 'not_available'} |
|
3961 | 3972 | |
|
3962 | 3973 | merge_data = { |
|
3963 | 3974 | 'clone_url': PullRequestModel().get_shadow_clone_url(pull_request), |
|
3964 | 3975 | 'reference': ( |
|
3965 | 3976 | pull_request.shadow_merge_ref._asdict() |
|
3966 | 3977 | if pull_request.shadow_merge_ref else None), |
|
3967 | 3978 | } |
|
3968 | 3979 | |
|
3969 | 3980 | data = { |
|
3970 | 3981 | 'pull_request_id': pull_request.pull_request_id, |
|
3971 | 3982 | 'url': PullRequestModel().get_url(pull_request), |
|
3972 | 3983 | 'title': pull_request.title, |
|
3973 | 3984 | 'description': pull_request.description, |
|
3974 | 3985 | 'status': pull_request.status, |
|
3975 | 3986 | 'state': pull_request.pull_request_state, |
|
3976 | 3987 | 'created_on': pull_request.created_on, |
|
3977 | 3988 | 'updated_on': pull_request.updated_on, |
|
3978 | 3989 | 'commit_ids': pull_request.revisions, |
|
3979 | 3990 | 'review_status': pull_request.calculated_review_status(), |
|
3980 | 3991 | 'mergeable': merge_state, |
|
3981 | 3992 | 'source': { |
|
3982 | 3993 | 'clone_url': pull_request.source_repo.clone_url(), |
|
3983 | 3994 | 'repository': pull_request.source_repo.repo_name, |
|
3984 | 3995 | 'reference': { |
|
3985 | 3996 | 'name': pull_request.source_ref_parts.name, |
|
3986 | 3997 | 'type': pull_request.source_ref_parts.type, |
|
3987 | 3998 | 'commit_id': pull_request.source_ref_parts.commit_id, |
|
3988 | 3999 | }, |
|
3989 | 4000 | }, |
|
3990 | 4001 | 'target': { |
|
3991 | 4002 | 'clone_url': pull_request.target_repo.clone_url(), |
|
3992 | 4003 | 'repository': pull_request.target_repo.repo_name, |
|
3993 | 4004 | 'reference': { |
|
3994 | 4005 | 'name': pull_request.target_ref_parts.name, |
|
3995 | 4006 | 'type': pull_request.target_ref_parts.type, |
|
3996 | 4007 | 'commit_id': pull_request.target_ref_parts.commit_id, |
|
3997 | 4008 | }, |
|
3998 | 4009 | }, |
|
3999 | 4010 | 'merge': merge_data, |
|
4000 | 4011 | 'author': pull_request.author.get_api_data(include_secrets=False, |
|
4001 | 4012 | details='basic'), |
|
4002 | 4013 | 'reviewers': [ |
|
4003 | 4014 | { |
|
4004 | 4015 | 'user': reviewer.get_api_data(include_secrets=False, |
|
4005 | 4016 | details='basic'), |
|
4006 | 4017 | 'reasons': reasons, |
|
4007 | 4018 | 'review_status': st[0][1].status if st else 'not_reviewed', |
|
4008 | 4019 | } |
|
4009 | 4020 | for obj, reviewer, reasons, mandatory, st in |
|
4010 | 4021 | pull_request.reviewers_statuses() |
|
4011 | 4022 | ] |
|
4012 | 4023 | } |
|
4013 | 4024 | |
|
4014 | 4025 | return data |
|
4015 | 4026 | |
|
4016 | 4027 | def set_state(self, pull_request_state, final_state=None): |
|
4017 | 4028 | """ |
|
4018 | 4029 | # goes from initial state to updating to initial state. |
|
4019 | 4030 | # initial state can be changed by specifying back_state= |
|
4020 | 4031 | with pull_request_obj.set_state(PullRequest.STATE_UPDATING): |
|
4021 | 4032 | pull_request.merge() |
|
4022 | 4033 | |
|
4023 | 4034 | :param pull_request_state: |
|
4024 | 4035 | :param final_state: |
|
4025 | 4036 | |
|
4026 | 4037 | """ |
|
4027 | 4038 | |
|
4028 | 4039 | return _SetState(self, pull_request_state, back_state=final_state) |
|
4029 | 4040 | |
|
4030 | 4041 | |
|
4031 | 4042 | class PullRequest(Base, _PullRequestBase): |
|
4032 | 4043 | __tablename__ = 'pull_requests' |
|
4033 | 4044 | __table_args__ = ( |
|
4034 | 4045 | base_table_args, |
|
4035 | 4046 | ) |
|
4036 | 4047 | |
|
4037 | 4048 | pull_request_id = Column( |
|
4038 | 4049 | 'pull_request_id', Integer(), nullable=False, primary_key=True) |
|
4039 | 4050 | |
|
4040 | 4051 | def __repr__(self): |
|
4041 | 4052 | if self.pull_request_id: |
|
4042 | 4053 | return '<DB:PullRequest #%s>' % self.pull_request_id |
|
4043 | 4054 | else: |
|
4044 | 4055 | return '<DB:PullRequest at %#x>' % id(self) |
|
4045 | 4056 | |
|
4046 | 4057 | reviewers = relationship('PullRequestReviewers', |
|
4047 | 4058 | cascade="all, delete, delete-orphan") |
|
4048 | 4059 | statuses = relationship('ChangesetStatus', |
|
4049 | 4060 | cascade="all, delete, delete-orphan") |
|
4050 | 4061 | comments = relationship('ChangesetComment', |
|
4051 | 4062 | cascade="all, delete, delete-orphan") |
|
4052 | 4063 | versions = relationship('PullRequestVersion', |
|
4053 | 4064 | cascade="all, delete, delete-orphan", |
|
4054 | 4065 | lazy='dynamic') |
|
4055 | 4066 | |
|
4056 | 4067 | @classmethod |
|
4057 | 4068 | def get_pr_display_object(cls, pull_request_obj, org_pull_request_obj, |
|
4058 | 4069 | internal_methods=None): |
|
4059 | 4070 | |
|
4060 | 4071 | class PullRequestDisplay(object): |
|
4061 | 4072 | """ |
|
4062 | 4073 | Special object wrapper for showing PullRequest data via Versions |
|
4063 | 4074 | It mimics PR object as close as possible. This is read only object |
|
4064 | 4075 | just for display |
|
4065 | 4076 | """ |
|
4066 | 4077 | |
|
4067 | 4078 | def __init__(self, attrs, internal=None): |
|
4068 | 4079 | self.attrs = attrs |
|
4069 | 4080 | # internal have priority over the given ones via attrs |
|
4070 | 4081 | self.internal = internal or ['versions'] |
|
4071 | 4082 | |
|
4072 | 4083 | def __getattr__(self, item): |
|
4073 | 4084 | if item in self.internal: |
|
4074 | 4085 | return getattr(self, item) |
|
4075 | 4086 | try: |
|
4076 | 4087 | return self.attrs[item] |
|
4077 | 4088 | except KeyError: |
|
4078 | 4089 | raise AttributeError( |
|
4079 | 4090 | '%s object has no attribute %s' % (self, item)) |
|
4080 | 4091 | |
|
4081 | 4092 | def __repr__(self): |
|
4082 | 4093 | return '<DB:PullRequestDisplay #%s>' % self.attrs.get('pull_request_id') |
|
4083 | 4094 | |
|
4084 | 4095 | def versions(self): |
|
4085 | 4096 | return pull_request_obj.versions.order_by( |
|
4086 | 4097 | PullRequestVersion.pull_request_version_id).all() |
|
4087 | 4098 | |
|
4088 | 4099 | def is_closed(self): |
|
4089 | 4100 | return pull_request_obj.is_closed() |
|
4090 | 4101 | |
|
4091 | 4102 | @property |
|
4092 | 4103 | def pull_request_version_id(self): |
|
4093 | 4104 | return getattr(pull_request_obj, 'pull_request_version_id', None) |
|
4094 | 4105 | |
|
4095 | 4106 | attrs = StrictAttributeDict(pull_request_obj.get_api_data()) |
|
4096 | 4107 | |
|
4097 | 4108 | attrs.author = StrictAttributeDict( |
|
4098 | 4109 | pull_request_obj.author.get_api_data()) |
|
4099 | 4110 | if pull_request_obj.target_repo: |
|
4100 | 4111 | attrs.target_repo = StrictAttributeDict( |
|
4101 | 4112 | pull_request_obj.target_repo.get_api_data()) |
|
4102 | 4113 | attrs.target_repo.clone_url = pull_request_obj.target_repo.clone_url |
|
4103 | 4114 | |
|
4104 | 4115 | if pull_request_obj.source_repo: |
|
4105 | 4116 | attrs.source_repo = StrictAttributeDict( |
|
4106 | 4117 | pull_request_obj.source_repo.get_api_data()) |
|
4107 | 4118 | attrs.source_repo.clone_url = pull_request_obj.source_repo.clone_url |
|
4108 | 4119 | |
|
4109 | 4120 | attrs.source_ref_parts = pull_request_obj.source_ref_parts |
|
4110 | 4121 | attrs.target_ref_parts = pull_request_obj.target_ref_parts |
|
4111 | 4122 | attrs.revisions = pull_request_obj.revisions |
|
4112 | 4123 | |
|
4113 | 4124 | attrs.shadow_merge_ref = org_pull_request_obj.shadow_merge_ref |
|
4114 | 4125 | attrs.reviewer_data = org_pull_request_obj.reviewer_data |
|
4115 | 4126 | attrs.reviewer_data_json = org_pull_request_obj.reviewer_data_json |
|
4116 | 4127 | |
|
4117 | 4128 | return PullRequestDisplay(attrs, internal=internal_methods) |
|
4118 | 4129 | |
|
4119 | 4130 | def is_closed(self): |
|
4120 | 4131 | return self.status == self.STATUS_CLOSED |
|
4121 | 4132 | |
|
4122 | 4133 | def __json__(self): |
|
4123 | 4134 | return { |
|
4124 | 4135 | 'revisions': self.revisions, |
|
4125 | 4136 | } |
|
4126 | 4137 | |
|
4127 | 4138 | def calculated_review_status(self): |
|
4128 | 4139 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
4129 | 4140 | return ChangesetStatusModel().calculated_review_status(self) |
|
4130 | 4141 | |
|
4131 | 4142 | def reviewers_statuses(self): |
|
4132 | 4143 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
4133 | 4144 | return ChangesetStatusModel().reviewers_statuses(self) |
|
4134 | 4145 | |
|
4135 | 4146 | @property |
|
4136 | 4147 | def workspace_id(self): |
|
4137 | 4148 | from rhodecode.model.pull_request import PullRequestModel |
|
4138 | 4149 | return PullRequestModel()._workspace_id(self) |
|
4139 | 4150 | |
|
4140 | 4151 | def get_shadow_repo(self): |
|
4141 | 4152 | workspace_id = self.workspace_id |
|
4142 | 4153 | vcs_obj = self.target_repo.scm_instance() |
|
4143 | 4154 | shadow_repository_path = vcs_obj._get_shadow_repository_path( |
|
4144 | 4155 | self.target_repo.repo_id, workspace_id) |
|
4145 | 4156 | if os.path.isdir(shadow_repository_path): |
|
4146 | 4157 | return vcs_obj._get_shadow_instance(shadow_repository_path) |
|
4147 | 4158 | |
|
4148 | 4159 | |
|
4149 | 4160 | class PullRequestVersion(Base, _PullRequestBase): |
|
4150 | 4161 | __tablename__ = 'pull_request_versions' |
|
4151 | 4162 | __table_args__ = ( |
|
4152 | 4163 | base_table_args, |
|
4153 | 4164 | ) |
|
4154 | 4165 | |
|
4155 | 4166 | pull_request_version_id = Column( |
|
4156 | 4167 | 'pull_request_version_id', Integer(), nullable=False, primary_key=True) |
|
4157 | 4168 | pull_request_id = Column( |
|
4158 | 4169 | 'pull_request_id', Integer(), |
|
4159 | 4170 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
4160 | 4171 | pull_request = relationship('PullRequest') |
|
4161 | 4172 | |
|
4162 | 4173 | def __repr__(self): |
|
4163 | 4174 | if self.pull_request_version_id: |
|
4164 | 4175 | return '<DB:PullRequestVersion #%s>' % self.pull_request_version_id |
|
4165 | 4176 | else: |
|
4166 | 4177 | return '<DB:PullRequestVersion at %#x>' % id(self) |
|
4167 | 4178 | |
|
4168 | 4179 | @property |
|
4169 | 4180 | def reviewers(self): |
|
4170 | 4181 | return self.pull_request.reviewers |
|
4171 | 4182 | |
|
4172 | 4183 | @property |
|
4173 | 4184 | def versions(self): |
|
4174 | 4185 | return self.pull_request.versions |
|
4175 | 4186 | |
|
4176 | 4187 | def is_closed(self): |
|
4177 | 4188 | # calculate from original |
|
4178 | 4189 | return self.pull_request.status == self.STATUS_CLOSED |
|
4179 | 4190 | |
|
4180 | 4191 | def calculated_review_status(self): |
|
4181 | 4192 | return self.pull_request.calculated_review_status() |
|
4182 | 4193 | |
|
4183 | 4194 | def reviewers_statuses(self): |
|
4184 | 4195 | return self.pull_request.reviewers_statuses() |
|
4185 | 4196 | |
|
4186 | 4197 | |
|
4187 | 4198 | class PullRequestReviewers(Base, BaseModel): |
|
4188 | 4199 | __tablename__ = 'pull_request_reviewers' |
|
4189 | 4200 | __table_args__ = ( |
|
4190 | 4201 | base_table_args, |
|
4191 | 4202 | ) |
|
4192 | 4203 | |
|
4193 | 4204 | @hybrid_property |
|
4194 | 4205 | def reasons(self): |
|
4195 | 4206 | if not self._reasons: |
|
4196 | 4207 | return [] |
|
4197 | 4208 | return self._reasons |
|
4198 | 4209 | |
|
4199 | 4210 | @reasons.setter |
|
4200 | 4211 | def reasons(self, val): |
|
4201 | 4212 | val = val or [] |
|
4202 | 4213 | if any(not isinstance(x, compat.string_types) for x in val): |
|
4203 | 4214 | raise Exception('invalid reasons type, must be list of strings') |
|
4204 | 4215 | self._reasons = val |
|
4205 | 4216 | |
|
4206 | 4217 | pull_requests_reviewers_id = Column( |
|
4207 | 4218 | 'pull_requests_reviewers_id', Integer(), nullable=False, |
|
4208 | 4219 | primary_key=True) |
|
4209 | 4220 | pull_request_id = Column( |
|
4210 | 4221 | "pull_request_id", Integer(), |
|
4211 | 4222 | ForeignKey('pull_requests.pull_request_id'), nullable=False) |
|
4212 | 4223 | user_id = Column( |
|
4213 | 4224 | "user_id", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4214 | 4225 | _reasons = Column( |
|
4215 | 4226 | 'reason', MutationList.as_mutable( |
|
4216 | 4227 | JsonType('list', dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4217 | 4228 | |
|
4218 | 4229 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4219 | 4230 | user = relationship('User') |
|
4220 | 4231 | pull_request = relationship('PullRequest') |
|
4221 | 4232 | |
|
4222 | 4233 | rule_data = Column( |
|
4223 | 4234 | 'rule_data_json', |
|
4224 | 4235 | JsonType(dialect_map=dict(mysql=UnicodeText(16384)))) |
|
4225 | 4236 | |
|
4226 | 4237 | def rule_user_group_data(self): |
|
4227 | 4238 | """ |
|
4228 | 4239 | Returns the voting user group rule data for this reviewer |
|
4229 | 4240 | """ |
|
4230 | 4241 | |
|
4231 | 4242 | if self.rule_data and 'vote_rule' in self.rule_data: |
|
4232 | 4243 | user_group_data = {} |
|
4233 | 4244 | if 'rule_user_group_entry_id' in self.rule_data: |
|
4234 | 4245 | # means a group with voting rules ! |
|
4235 | 4246 | user_group_data['id'] = self.rule_data['rule_user_group_entry_id'] |
|
4236 | 4247 | user_group_data['name'] = self.rule_data['rule_name'] |
|
4237 | 4248 | user_group_data['vote_rule'] = self.rule_data['vote_rule'] |
|
4238 | 4249 | |
|
4239 | 4250 | return user_group_data |
|
4240 | 4251 | |
|
4241 | 4252 | def __unicode__(self): |
|
4242 | 4253 | return u"<%s('id:%s')>" % (self.__class__.__name__, |
|
4243 | 4254 | self.pull_requests_reviewers_id) |
|
4244 | 4255 | |
|
4245 | 4256 | |
|
4246 | 4257 | class Notification(Base, BaseModel): |
|
4247 | 4258 | __tablename__ = 'notifications' |
|
4248 | 4259 | __table_args__ = ( |
|
4249 | 4260 | Index('notification_type_idx', 'type'), |
|
4250 | 4261 | base_table_args, |
|
4251 | 4262 | ) |
|
4252 | 4263 | |
|
4253 | 4264 | TYPE_CHANGESET_COMMENT = u'cs_comment' |
|
4254 | 4265 | TYPE_MESSAGE = u'message' |
|
4255 | 4266 | TYPE_MENTION = u'mention' |
|
4256 | 4267 | TYPE_REGISTRATION = u'registration' |
|
4257 | 4268 | TYPE_PULL_REQUEST = u'pull_request' |
|
4258 | 4269 | TYPE_PULL_REQUEST_COMMENT = u'pull_request_comment' |
|
4259 | 4270 | |
|
4260 | 4271 | notification_id = Column('notification_id', Integer(), nullable=False, primary_key=True) |
|
4261 | 4272 | subject = Column('subject', Unicode(512), nullable=True) |
|
4262 | 4273 | body = Column('body', UnicodeText().with_variant(UnicodeText(50000), 'mysql'), nullable=True) |
|
4263 | 4274 | created_by = Column("created_by", Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4264 | 4275 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4265 | 4276 | type_ = Column('type', Unicode(255)) |
|
4266 | 4277 | |
|
4267 | 4278 | created_by_user = relationship('User') |
|
4268 | 4279 | notifications_to_users = relationship('UserNotification', lazy='joined', |
|
4269 | 4280 | cascade="all, delete, delete-orphan") |
|
4270 | 4281 | |
|
4271 | 4282 | @property |
|
4272 | 4283 | def recipients(self): |
|
4273 | 4284 | return [x.user for x in UserNotification.query()\ |
|
4274 | 4285 | .filter(UserNotification.notification == self)\ |
|
4275 | 4286 | .order_by(UserNotification.user_id.asc()).all()] |
|
4276 | 4287 | |
|
4277 | 4288 | @classmethod |
|
4278 | 4289 | def create(cls, created_by, subject, body, recipients, type_=None): |
|
4279 | 4290 | if type_ is None: |
|
4280 | 4291 | type_ = Notification.TYPE_MESSAGE |
|
4281 | 4292 | |
|
4282 | 4293 | notification = cls() |
|
4283 | 4294 | notification.created_by_user = created_by |
|
4284 | 4295 | notification.subject = subject |
|
4285 | 4296 | notification.body = body |
|
4286 | 4297 | notification.type_ = type_ |
|
4287 | 4298 | notification.created_on = datetime.datetime.now() |
|
4288 | 4299 | |
|
4289 | 4300 | # For each recipient link the created notification to his account |
|
4290 | 4301 | for u in recipients: |
|
4291 | 4302 | assoc = UserNotification() |
|
4292 | 4303 | assoc.user_id = u.user_id |
|
4293 | 4304 | assoc.notification = notification |
|
4294 | 4305 | |
|
4295 | 4306 | # if created_by is inside recipients mark his notification |
|
4296 | 4307 | # as read |
|
4297 | 4308 | if u.user_id == created_by.user_id: |
|
4298 | 4309 | assoc.read = True |
|
4299 | 4310 | Session().add(assoc) |
|
4300 | 4311 | |
|
4301 | 4312 | Session().add(notification) |
|
4302 | 4313 | |
|
4303 | 4314 | return notification |
|
4304 | 4315 | |
|
4305 | 4316 | |
|
4306 | 4317 | class UserNotification(Base, BaseModel): |
|
4307 | 4318 | __tablename__ = 'user_to_notification' |
|
4308 | 4319 | __table_args__ = ( |
|
4309 | 4320 | UniqueConstraint('user_id', 'notification_id'), |
|
4310 | 4321 | base_table_args |
|
4311 | 4322 | ) |
|
4312 | 4323 | |
|
4313 | 4324 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
4314 | 4325 | notification_id = Column("notification_id", Integer(), ForeignKey('notifications.notification_id'), primary_key=True) |
|
4315 | 4326 | read = Column('read', Boolean, default=False) |
|
4316 | 4327 | sent_on = Column('sent_on', DateTime(timezone=False), nullable=True, unique=None) |
|
4317 | 4328 | |
|
4318 | 4329 | user = relationship('User', lazy="joined") |
|
4319 | 4330 | notification = relationship('Notification', lazy="joined", |
|
4320 | 4331 | order_by=lambda: Notification.created_on.desc(),) |
|
4321 | 4332 | |
|
4322 | 4333 | def mark_as_read(self): |
|
4323 | 4334 | self.read = True |
|
4324 | 4335 | Session().add(self) |
|
4325 | 4336 | |
|
4326 | 4337 | |
|
4327 | 4338 | class Gist(Base, BaseModel): |
|
4328 | 4339 | __tablename__ = 'gists' |
|
4329 | 4340 | __table_args__ = ( |
|
4330 | 4341 | Index('g_gist_access_id_idx', 'gist_access_id'), |
|
4331 | 4342 | Index('g_created_on_idx', 'created_on'), |
|
4332 | 4343 | base_table_args |
|
4333 | 4344 | ) |
|
4334 | 4345 | |
|
4335 | 4346 | GIST_PUBLIC = u'public' |
|
4336 | 4347 | GIST_PRIVATE = u'private' |
|
4337 | 4348 | DEFAULT_FILENAME = u'gistfile1.txt' |
|
4338 | 4349 | |
|
4339 | 4350 | ACL_LEVEL_PUBLIC = u'acl_public' |
|
4340 | 4351 | ACL_LEVEL_PRIVATE = u'acl_private' |
|
4341 | 4352 | |
|
4342 | 4353 | gist_id = Column('gist_id', Integer(), primary_key=True) |
|
4343 | 4354 | gist_access_id = Column('gist_access_id', Unicode(250)) |
|
4344 | 4355 | gist_description = Column('gist_description', UnicodeText().with_variant(UnicodeText(1024), 'mysql')) |
|
4345 | 4356 | gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True) |
|
4346 | 4357 | gist_expires = Column('gist_expires', Float(53), nullable=False) |
|
4347 | 4358 | gist_type = Column('gist_type', Unicode(128), nullable=False) |
|
4348 | 4359 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4349 | 4360 | modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4350 | 4361 | acl_level = Column('acl_level', Unicode(128), nullable=True) |
|
4351 | 4362 | |
|
4352 | 4363 | owner = relationship('User') |
|
4353 | 4364 | |
|
4354 | 4365 | def __repr__(self): |
|
4355 | 4366 | return '<Gist:[%s]%s>' % (self.gist_type, self.gist_access_id) |
|
4356 | 4367 | |
|
4357 | 4368 | @hybrid_property |
|
4358 | 4369 | def description_safe(self): |
|
4359 | 4370 | from rhodecode.lib import helpers as h |
|
4360 | 4371 | return h.escape(self.gist_description) |
|
4361 | 4372 | |
|
4362 | 4373 | @classmethod |
|
4363 | 4374 | def get_or_404(cls, id_): |
|
4364 | 4375 | from pyramid.httpexceptions import HTTPNotFound |
|
4365 | 4376 | |
|
4366 | 4377 | res = cls.query().filter(cls.gist_access_id == id_).scalar() |
|
4367 | 4378 | if not res: |
|
4368 | 4379 | raise HTTPNotFound() |
|
4369 | 4380 | return res |
|
4370 | 4381 | |
|
4371 | 4382 | @classmethod |
|
4372 | 4383 | def get_by_access_id(cls, gist_access_id): |
|
4373 | 4384 | return cls.query().filter(cls.gist_access_id == gist_access_id).scalar() |
|
4374 | 4385 | |
|
4375 | 4386 | def gist_url(self): |
|
4376 | 4387 | from rhodecode.model.gist import GistModel |
|
4377 | 4388 | return GistModel().get_url(self) |
|
4378 | 4389 | |
|
4379 | 4390 | @classmethod |
|
4380 | 4391 | def base_path(cls): |
|
4381 | 4392 | """ |
|
4382 | 4393 | Returns base path when all gists are stored |
|
4383 | 4394 | |
|
4384 | 4395 | :param cls: |
|
4385 | 4396 | """ |
|
4386 | 4397 | from rhodecode.model.gist import GIST_STORE_LOC |
|
4387 | 4398 | q = Session().query(RhodeCodeUi)\ |
|
4388 | 4399 | .filter(RhodeCodeUi.ui_key == URL_SEP) |
|
4389 | 4400 | q = q.options(FromCache("sql_cache_short", "repository_repo_path")) |
|
4390 | 4401 | return os.path.join(q.one().ui_value, GIST_STORE_LOC) |
|
4391 | 4402 | |
|
4392 | 4403 | def get_api_data(self): |
|
4393 | 4404 | """ |
|
4394 | 4405 | Common function for generating gist related data for API |
|
4395 | 4406 | """ |
|
4396 | 4407 | gist = self |
|
4397 | 4408 | data = { |
|
4398 | 4409 | 'gist_id': gist.gist_id, |
|
4399 | 4410 | 'type': gist.gist_type, |
|
4400 | 4411 | 'access_id': gist.gist_access_id, |
|
4401 | 4412 | 'description': gist.gist_description, |
|
4402 | 4413 | 'url': gist.gist_url(), |
|
4403 | 4414 | 'expires': gist.gist_expires, |
|
4404 | 4415 | 'created_on': gist.created_on, |
|
4405 | 4416 | 'modified_at': gist.modified_at, |
|
4406 | 4417 | 'content': None, |
|
4407 | 4418 | 'acl_level': gist.acl_level, |
|
4408 | 4419 | } |
|
4409 | 4420 | return data |
|
4410 | 4421 | |
|
4411 | 4422 | def __json__(self): |
|
4412 | 4423 | data = dict( |
|
4413 | 4424 | ) |
|
4414 | 4425 | data.update(self.get_api_data()) |
|
4415 | 4426 | return data |
|
4416 | 4427 | # SCM functions |
|
4417 | 4428 | |
|
4418 | 4429 | def scm_instance(self, **kwargs): |
|
4419 | 4430 | """ |
|
4420 | 4431 | Get explicit Mercurial repository used |
|
4421 | 4432 | :param kwargs: |
|
4422 | 4433 | :return: |
|
4423 | 4434 | """ |
|
4424 | 4435 | from rhodecode.model.gist import GistModel |
|
4425 | 4436 | full_repo_path = os.path.join(self.base_path(), self.gist_access_id) |
|
4426 | 4437 | return get_vcs_instance( |
|
4427 | 4438 | repo_path=safe_str(full_repo_path), create=False, |
|
4428 | 4439 | _vcs_alias=GistModel.vcs_backend) |
|
4429 | 4440 | |
|
4430 | 4441 | |
|
4431 | 4442 | class ExternalIdentity(Base, BaseModel): |
|
4432 | 4443 | __tablename__ = 'external_identities' |
|
4433 | 4444 | __table_args__ = ( |
|
4434 | 4445 | Index('local_user_id_idx', 'local_user_id'), |
|
4435 | 4446 | Index('external_id_idx', 'external_id'), |
|
4436 | 4447 | base_table_args |
|
4437 | 4448 | ) |
|
4438 | 4449 | |
|
4439 | 4450 | external_id = Column('external_id', Unicode(255), default=u'', primary_key=True) |
|
4440 | 4451 | external_username = Column('external_username', Unicode(1024), default=u'') |
|
4441 | 4452 | local_user_id = Column('local_user_id', Integer(), ForeignKey('users.user_id'), primary_key=True) |
|
4442 | 4453 | provider_name = Column('provider_name', Unicode(255), default=u'', primary_key=True) |
|
4443 | 4454 | access_token = Column('access_token', String(1024), default=u'') |
|
4444 | 4455 | alt_token = Column('alt_token', String(1024), default=u'') |
|
4445 | 4456 | token_secret = Column('token_secret', String(1024), default=u'') |
|
4446 | 4457 | |
|
4447 | 4458 | @classmethod |
|
4448 | 4459 | def by_external_id_and_provider(cls, external_id, provider_name, local_user_id=None): |
|
4449 | 4460 | """ |
|
4450 | 4461 | Returns ExternalIdentity instance based on search params |
|
4451 | 4462 | |
|
4452 | 4463 | :param external_id: |
|
4453 | 4464 | :param provider_name: |
|
4454 | 4465 | :return: ExternalIdentity |
|
4455 | 4466 | """ |
|
4456 | 4467 | query = cls.query() |
|
4457 | 4468 | query = query.filter(cls.external_id == external_id) |
|
4458 | 4469 | query = query.filter(cls.provider_name == provider_name) |
|
4459 | 4470 | if local_user_id: |
|
4460 | 4471 | query = query.filter(cls.local_user_id == local_user_id) |
|
4461 | 4472 | return query.first() |
|
4462 | 4473 | |
|
4463 | 4474 | @classmethod |
|
4464 | 4475 | def user_by_external_id_and_provider(cls, external_id, provider_name): |
|
4465 | 4476 | """ |
|
4466 | 4477 | Returns User instance based on search params |
|
4467 | 4478 | |
|
4468 | 4479 | :param external_id: |
|
4469 | 4480 | :param provider_name: |
|
4470 | 4481 | :return: User |
|
4471 | 4482 | """ |
|
4472 | 4483 | query = User.query() |
|
4473 | 4484 | query = query.filter(cls.external_id == external_id) |
|
4474 | 4485 | query = query.filter(cls.provider_name == provider_name) |
|
4475 | 4486 | query = query.filter(User.user_id == cls.local_user_id) |
|
4476 | 4487 | return query.first() |
|
4477 | 4488 | |
|
4478 | 4489 | @classmethod |
|
4479 | 4490 | def by_local_user_id(cls, local_user_id): |
|
4480 | 4491 | """ |
|
4481 | 4492 | Returns all tokens for user |
|
4482 | 4493 | |
|
4483 | 4494 | :param local_user_id: |
|
4484 | 4495 | :return: ExternalIdentity |
|
4485 | 4496 | """ |
|
4486 | 4497 | query = cls.query() |
|
4487 | 4498 | query = query.filter(cls.local_user_id == local_user_id) |
|
4488 | 4499 | return query |
|
4489 | 4500 | |
|
4490 | 4501 | @classmethod |
|
4491 | 4502 | def load_provider_plugin(cls, plugin_id): |
|
4492 | 4503 | from rhodecode.authentication.base import loadplugin |
|
4493 | 4504 | _plugin_id = 'egg:rhodecode-enterprise-ee#{}'.format(plugin_id) |
|
4494 | 4505 | auth_plugin = loadplugin(_plugin_id) |
|
4495 | 4506 | return auth_plugin |
|
4496 | 4507 | |
|
4497 | 4508 | |
|
4498 | 4509 | class Integration(Base, BaseModel): |
|
4499 | 4510 | __tablename__ = 'integrations' |
|
4500 | 4511 | __table_args__ = ( |
|
4501 | 4512 | base_table_args |
|
4502 | 4513 | ) |
|
4503 | 4514 | |
|
4504 | 4515 | integration_id = Column('integration_id', Integer(), primary_key=True) |
|
4505 | 4516 | integration_type = Column('integration_type', String(255)) |
|
4506 | 4517 | enabled = Column('enabled', Boolean(), nullable=False) |
|
4507 | 4518 | name = Column('name', String(255), nullable=False) |
|
4508 | 4519 | child_repos_only = Column('child_repos_only', Boolean(), nullable=False, |
|
4509 | 4520 | default=False) |
|
4510 | 4521 | |
|
4511 | 4522 | settings = Column( |
|
4512 | 4523 | 'settings_json', MutationObj.as_mutable( |
|
4513 | 4524 | JsonType(dialect_map=dict(mysql=UnicodeText(16384))))) |
|
4514 | 4525 | repo_id = Column( |
|
4515 | 4526 | 'repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
4516 | 4527 | nullable=True, unique=None, default=None) |
|
4517 | 4528 | repo = relationship('Repository', lazy='joined') |
|
4518 | 4529 | |
|
4519 | 4530 | repo_group_id = Column( |
|
4520 | 4531 | 'repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
4521 | 4532 | nullable=True, unique=None, default=None) |
|
4522 | 4533 | repo_group = relationship('RepoGroup', lazy='joined') |
|
4523 | 4534 | |
|
4524 | 4535 | @property |
|
4525 | 4536 | def scope(self): |
|
4526 | 4537 | if self.repo: |
|
4527 | 4538 | return repr(self.repo) |
|
4528 | 4539 | if self.repo_group: |
|
4529 | 4540 | if self.child_repos_only: |
|
4530 | 4541 | return repr(self.repo_group) + ' (child repos only)' |
|
4531 | 4542 | else: |
|
4532 | 4543 | return repr(self.repo_group) + ' (recursive)' |
|
4533 | 4544 | if self.child_repos_only: |
|
4534 | 4545 | return 'root_repos' |
|
4535 | 4546 | return 'global' |
|
4536 | 4547 | |
|
4537 | 4548 | def __repr__(self): |
|
4538 | 4549 | return '<Integration(%r, %r)>' % (self.integration_type, self.scope) |
|
4539 | 4550 | |
|
4540 | 4551 | |
|
4541 | 4552 | class RepoReviewRuleUser(Base, BaseModel): |
|
4542 | 4553 | __tablename__ = 'repo_review_rules_users' |
|
4543 | 4554 | __table_args__ = ( |
|
4544 | 4555 | base_table_args |
|
4545 | 4556 | ) |
|
4546 | 4557 | |
|
4547 | 4558 | repo_review_rule_user_id = Column('repo_review_rule_user_id', Integer(), primary_key=True) |
|
4548 | 4559 | repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id')) |
|
4549 | 4560 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False) |
|
4550 | 4561 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4551 | 4562 | user = relationship('User') |
|
4552 | 4563 | |
|
4553 | 4564 | def rule_data(self): |
|
4554 | 4565 | return { |
|
4555 | 4566 | 'mandatory': self.mandatory |
|
4556 | 4567 | } |
|
4557 | 4568 | |
|
4558 | 4569 | |
|
4559 | 4570 | class RepoReviewRuleUserGroup(Base, BaseModel): |
|
4560 | 4571 | __tablename__ = 'repo_review_rules_users_groups' |
|
4561 | 4572 | __table_args__ = ( |
|
4562 | 4573 | base_table_args |
|
4563 | 4574 | ) |
|
4564 | 4575 | |
|
4565 | 4576 | VOTE_RULE_ALL = -1 |
|
4566 | 4577 | |
|
4567 | 4578 | repo_review_rule_users_group_id = Column('repo_review_rule_users_group_id', Integer(), primary_key=True) |
|
4568 | 4579 | repo_review_rule_id = Column("repo_review_rule_id", Integer(), ForeignKey('repo_review_rules.repo_review_rule_id')) |
|
4569 | 4580 | users_group_id = Column("users_group_id", Integer(),ForeignKey('users_groups.users_group_id'), nullable=False) |
|
4570 | 4581 | mandatory = Column("mandatory", Boolean(), nullable=False, default=False) |
|
4571 | 4582 | vote_rule = Column("vote_rule", Integer(), nullable=True, default=VOTE_RULE_ALL) |
|
4572 | 4583 | users_group = relationship('UserGroup') |
|
4573 | 4584 | |
|
4574 | 4585 | def rule_data(self): |
|
4575 | 4586 | return { |
|
4576 | 4587 | 'mandatory': self.mandatory, |
|
4577 | 4588 | 'vote_rule': self.vote_rule |
|
4578 | 4589 | } |
|
4579 | 4590 | |
|
4580 | 4591 | @property |
|
4581 | 4592 | def vote_rule_label(self): |
|
4582 | 4593 | if not self.vote_rule or self.vote_rule == self.VOTE_RULE_ALL: |
|
4583 | 4594 | return 'all must vote' |
|
4584 | 4595 | else: |
|
4585 | 4596 | return 'min. vote {}'.format(self.vote_rule) |
|
4586 | 4597 | |
|
4587 | 4598 | |
|
4588 | 4599 | class RepoReviewRule(Base, BaseModel): |
|
4589 | 4600 | __tablename__ = 'repo_review_rules' |
|
4590 | 4601 | __table_args__ = ( |
|
4591 | 4602 | base_table_args |
|
4592 | 4603 | ) |
|
4593 | 4604 | |
|
4594 | 4605 | repo_review_rule_id = Column( |
|
4595 | 4606 | 'repo_review_rule_id', Integer(), primary_key=True) |
|
4596 | 4607 | repo_id = Column( |
|
4597 | 4608 | "repo_id", Integer(), ForeignKey('repositories.repo_id')) |
|
4598 | 4609 | repo = relationship('Repository', backref='review_rules') |
|
4599 | 4610 | |
|
4600 | 4611 | review_rule_name = Column('review_rule_name', String(255)) |
|
4601 | 4612 | _branch_pattern = Column("branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4602 | 4613 | _target_branch_pattern = Column("target_branch_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4603 | 4614 | _file_pattern = Column("file_pattern", UnicodeText().with_variant(UnicodeText(255), 'mysql'), default=u'*') # glob |
|
4604 | 4615 | |
|
4605 | 4616 | use_authors_for_review = Column("use_authors_for_review", Boolean(), nullable=False, default=False) |
|
4606 | 4617 | forbid_author_to_review = Column("forbid_author_to_review", Boolean(), nullable=False, default=False) |
|
4607 | 4618 | forbid_commit_author_to_review = Column("forbid_commit_author_to_review", Boolean(), nullable=False, default=False) |
|
4608 | 4619 | forbid_adding_reviewers = Column("forbid_adding_reviewers", Boolean(), nullable=False, default=False) |
|
4609 | 4620 | |
|
4610 | 4621 | rule_users = relationship('RepoReviewRuleUser') |
|
4611 | 4622 | rule_user_groups = relationship('RepoReviewRuleUserGroup') |
|
4612 | 4623 | |
|
4613 | 4624 | def _validate_pattern(self, value): |
|
4614 | 4625 | re.compile('^' + glob2re(value) + '$') |
|
4615 | 4626 | |
|
4616 | 4627 | @hybrid_property |
|
4617 | 4628 | def source_branch_pattern(self): |
|
4618 | 4629 | return self._branch_pattern or '*' |
|
4619 | 4630 | |
|
4620 | 4631 | @source_branch_pattern.setter |
|
4621 | 4632 | def source_branch_pattern(self, value): |
|
4622 | 4633 | self._validate_pattern(value) |
|
4623 | 4634 | self._branch_pattern = value or '*' |
|
4624 | 4635 | |
|
4625 | 4636 | @hybrid_property |
|
4626 | 4637 | def target_branch_pattern(self): |
|
4627 | 4638 | return self._target_branch_pattern or '*' |
|
4628 | 4639 | |
|
4629 | 4640 | @target_branch_pattern.setter |
|
4630 | 4641 | def target_branch_pattern(self, value): |
|
4631 | 4642 | self._validate_pattern(value) |
|
4632 | 4643 | self._target_branch_pattern = value or '*' |
|
4633 | 4644 | |
|
4634 | 4645 | @hybrid_property |
|
4635 | 4646 | def file_pattern(self): |
|
4636 | 4647 | return self._file_pattern or '*' |
|
4637 | 4648 | |
|
4638 | 4649 | @file_pattern.setter |
|
4639 | 4650 | def file_pattern(self, value): |
|
4640 | 4651 | self._validate_pattern(value) |
|
4641 | 4652 | self._file_pattern = value or '*' |
|
4642 | 4653 | |
|
4643 | 4654 | def matches(self, source_branch, target_branch, files_changed): |
|
4644 | 4655 | """ |
|
4645 | 4656 | Check if this review rule matches a branch/files in a pull request |
|
4646 | 4657 | |
|
4647 | 4658 | :param source_branch: source branch name for the commit |
|
4648 | 4659 | :param target_branch: target branch name for the commit |
|
4649 | 4660 | :param files_changed: list of file paths changed in the pull request |
|
4650 | 4661 | """ |
|
4651 | 4662 | |
|
4652 | 4663 | source_branch = source_branch or '' |
|
4653 | 4664 | target_branch = target_branch or '' |
|
4654 | 4665 | files_changed = files_changed or [] |
|
4655 | 4666 | |
|
4656 | 4667 | branch_matches = True |
|
4657 | 4668 | if source_branch or target_branch: |
|
4658 | 4669 | if self.source_branch_pattern == '*': |
|
4659 | 4670 | source_branch_match = True |
|
4660 | 4671 | else: |
|
4661 | 4672 | if self.source_branch_pattern.startswith('re:'): |
|
4662 | 4673 | source_pattern = self.source_branch_pattern[3:] |
|
4663 | 4674 | else: |
|
4664 | 4675 | source_pattern = '^' + glob2re(self.source_branch_pattern) + '$' |
|
4665 | 4676 | source_branch_regex = re.compile(source_pattern) |
|
4666 | 4677 | source_branch_match = bool(source_branch_regex.search(source_branch)) |
|
4667 | 4678 | if self.target_branch_pattern == '*': |
|
4668 | 4679 | target_branch_match = True |
|
4669 | 4680 | else: |
|
4670 | 4681 | if self.target_branch_pattern.startswith('re:'): |
|
4671 | 4682 | target_pattern = self.target_branch_pattern[3:] |
|
4672 | 4683 | else: |
|
4673 | 4684 | target_pattern = '^' + glob2re(self.target_branch_pattern) + '$' |
|
4674 | 4685 | target_branch_regex = re.compile(target_pattern) |
|
4675 | 4686 | target_branch_match = bool(target_branch_regex.search(target_branch)) |
|
4676 | 4687 | |
|
4677 | 4688 | branch_matches = source_branch_match and target_branch_match |
|
4678 | 4689 | |
|
4679 | 4690 | files_matches = True |
|
4680 | 4691 | if self.file_pattern != '*': |
|
4681 | 4692 | files_matches = False |
|
4682 | 4693 | if self.file_pattern.startswith('re:'): |
|
4683 | 4694 | file_pattern = self.file_pattern[3:] |
|
4684 | 4695 | else: |
|
4685 | 4696 | file_pattern = glob2re(self.file_pattern) |
|
4686 | 4697 | file_regex = re.compile(file_pattern) |
|
4687 | 4698 | for filename in files_changed: |
|
4688 | 4699 | if file_regex.search(filename): |
|
4689 | 4700 | files_matches = True |
|
4690 | 4701 | break |
|
4691 | 4702 | |
|
4692 | 4703 | return branch_matches and files_matches |
|
4693 | 4704 | |
|
4694 | 4705 | @property |
|
4695 | 4706 | def review_users(self): |
|
4696 | 4707 | """ Returns the users which this rule applies to """ |
|
4697 | 4708 | |
|
4698 | 4709 | users = collections.OrderedDict() |
|
4699 | 4710 | |
|
4700 | 4711 | for rule_user in self.rule_users: |
|
4701 | 4712 | if rule_user.user.active: |
|
4702 | 4713 | if rule_user.user not in users: |
|
4703 | 4714 | users[rule_user.user.username] = { |
|
4704 | 4715 | 'user': rule_user.user, |
|
4705 | 4716 | 'source': 'user', |
|
4706 | 4717 | 'source_data': {}, |
|
4707 | 4718 | 'data': rule_user.rule_data() |
|
4708 | 4719 | } |
|
4709 | 4720 | |
|
4710 | 4721 | for rule_user_group in self.rule_user_groups: |
|
4711 | 4722 | source_data = { |
|
4712 | 4723 | 'user_group_id': rule_user_group.users_group.users_group_id, |
|
4713 | 4724 | 'name': rule_user_group.users_group.users_group_name, |
|
4714 | 4725 | 'members': len(rule_user_group.users_group.members) |
|
4715 | 4726 | } |
|
4716 | 4727 | for member in rule_user_group.users_group.members: |
|
4717 | 4728 | if member.user.active: |
|
4718 | 4729 | key = member.user.username |
|
4719 | 4730 | if key in users: |
|
4720 | 4731 | # skip this member as we have him already |
|
4721 | 4732 | # this prevents from override the "first" matched |
|
4722 | 4733 | # users with duplicates in multiple groups |
|
4723 | 4734 | continue |
|
4724 | 4735 | |
|
4725 | 4736 | users[key] = { |
|
4726 | 4737 | 'user': member.user, |
|
4727 | 4738 | 'source': 'user_group', |
|
4728 | 4739 | 'source_data': source_data, |
|
4729 | 4740 | 'data': rule_user_group.rule_data() |
|
4730 | 4741 | } |
|
4731 | 4742 | |
|
4732 | 4743 | return users |
|
4733 | 4744 | |
|
4734 | 4745 | def user_group_vote_rule(self, user_id): |
|
4735 | 4746 | |
|
4736 | 4747 | rules = [] |
|
4737 | 4748 | if not self.rule_user_groups: |
|
4738 | 4749 | return rules |
|
4739 | 4750 | |
|
4740 | 4751 | for user_group in self.rule_user_groups: |
|
4741 | 4752 | user_group_members = [x.user_id for x in user_group.users_group.members] |
|
4742 | 4753 | if user_id in user_group_members: |
|
4743 | 4754 | rules.append(user_group) |
|
4744 | 4755 | return rules |
|
4745 | 4756 | |
|
4746 | 4757 | def __repr__(self): |
|
4747 | 4758 | return '<RepoReviewerRule(id=%r, repo=%r)>' % ( |
|
4748 | 4759 | self.repo_review_rule_id, self.repo) |
|
4749 | 4760 | |
|
4750 | 4761 | |
|
4751 | 4762 | class ScheduleEntry(Base, BaseModel): |
|
4752 | 4763 | __tablename__ = 'schedule_entries' |
|
4753 | 4764 | __table_args__ = ( |
|
4754 | 4765 | UniqueConstraint('schedule_name', name='s_schedule_name_idx'), |
|
4755 | 4766 | UniqueConstraint('task_uid', name='s_task_uid_idx'), |
|
4756 | 4767 | base_table_args, |
|
4757 | 4768 | ) |
|
4758 | 4769 | |
|
4759 | 4770 | schedule_types = ['crontab', 'timedelta', 'integer'] |
|
4760 | 4771 | schedule_entry_id = Column('schedule_entry_id', Integer(), primary_key=True) |
|
4761 | 4772 | |
|
4762 | 4773 | schedule_name = Column("schedule_name", String(255), nullable=False, unique=None, default=None) |
|
4763 | 4774 | schedule_description = Column("schedule_description", String(10000), nullable=True, unique=None, default=None) |
|
4764 | 4775 | schedule_enabled = Column("schedule_enabled", Boolean(), nullable=False, unique=None, default=True) |
|
4765 | 4776 | |
|
4766 | 4777 | _schedule_type = Column("schedule_type", String(255), nullable=False, unique=None, default=None) |
|
4767 | 4778 | schedule_definition = Column('schedule_definition_json', MutationObj.as_mutable(JsonType(default=lambda: "", dialect_map=dict(mysql=LONGTEXT())))) |
|
4768 | 4779 | |
|
4769 | 4780 | schedule_last_run = Column('schedule_last_run', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
4770 | 4781 | schedule_total_run_count = Column('schedule_total_run_count', Integer(), nullable=True, unique=None, default=0) |
|
4771 | 4782 | |
|
4772 | 4783 | # task |
|
4773 | 4784 | task_uid = Column("task_uid", String(255), nullable=False, unique=None, default=None) |
|
4774 | 4785 | task_dot_notation = Column("task_dot_notation", String(4096), nullable=False, unique=None, default=None) |
|
4775 | 4786 | task_args = Column('task_args_json', MutationObj.as_mutable(JsonType(default=list, dialect_map=dict(mysql=LONGTEXT())))) |
|
4776 | 4787 | task_kwargs = Column('task_kwargs_json', MutationObj.as_mutable(JsonType(default=dict, dialect_map=dict(mysql=LONGTEXT())))) |
|
4777 | 4788 | |
|
4778 | 4789 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4779 | 4790 | updated_on = Column('updated_on', DateTime(timezone=False), nullable=True, unique=None, default=None) |
|
4780 | 4791 | |
|
4781 | 4792 | @hybrid_property |
|
4782 | 4793 | def schedule_type(self): |
|
4783 | 4794 | return self._schedule_type |
|
4784 | 4795 | |
|
4785 | 4796 | @schedule_type.setter |
|
4786 | 4797 | def schedule_type(self, val): |
|
4787 | 4798 | if val not in self.schedule_types: |
|
4788 | 4799 | raise ValueError('Value must be on of `{}` and got `{}`'.format( |
|
4789 | 4800 | val, self.schedule_type)) |
|
4790 | 4801 | |
|
4791 | 4802 | self._schedule_type = val |
|
4792 | 4803 | |
|
4793 | 4804 | @classmethod |
|
4794 | 4805 | def get_uid(cls, obj): |
|
4795 | 4806 | args = obj.task_args |
|
4796 | 4807 | kwargs = obj.task_kwargs |
|
4797 | 4808 | if isinstance(args, JsonRaw): |
|
4798 | 4809 | try: |
|
4799 | 4810 | args = json.loads(args) |
|
4800 | 4811 | except ValueError: |
|
4801 | 4812 | args = tuple() |
|
4802 | 4813 | |
|
4803 | 4814 | if isinstance(kwargs, JsonRaw): |
|
4804 | 4815 | try: |
|
4805 | 4816 | kwargs = json.loads(kwargs) |
|
4806 | 4817 | except ValueError: |
|
4807 | 4818 | kwargs = dict() |
|
4808 | 4819 | |
|
4809 | 4820 | dot_notation = obj.task_dot_notation |
|
4810 | 4821 | val = '.'.join(map(safe_str, [ |
|
4811 | 4822 | sorted(dot_notation), args, sorted(kwargs.items())])) |
|
4812 | 4823 | return hashlib.sha1(val).hexdigest() |
|
4813 | 4824 | |
|
4814 | 4825 | @classmethod |
|
4815 | 4826 | def get_by_schedule_name(cls, schedule_name): |
|
4816 | 4827 | return cls.query().filter(cls.schedule_name == schedule_name).scalar() |
|
4817 | 4828 | |
|
4818 | 4829 | @classmethod |
|
4819 | 4830 | def get_by_schedule_id(cls, schedule_id): |
|
4820 | 4831 | return cls.query().filter(cls.schedule_entry_id == schedule_id).scalar() |
|
4821 | 4832 | |
|
4822 | 4833 | @property |
|
4823 | 4834 | def task(self): |
|
4824 | 4835 | return self.task_dot_notation |
|
4825 | 4836 | |
|
4826 | 4837 | @property |
|
4827 | 4838 | def schedule(self): |
|
4828 | 4839 | from rhodecode.lib.celerylib.utils import raw_2_schedule |
|
4829 | 4840 | schedule = raw_2_schedule(self.schedule_definition, self.schedule_type) |
|
4830 | 4841 | return schedule |
|
4831 | 4842 | |
|
4832 | 4843 | @property |
|
4833 | 4844 | def args(self): |
|
4834 | 4845 | try: |
|
4835 | 4846 | return list(self.task_args or []) |
|
4836 | 4847 | except ValueError: |
|
4837 | 4848 | return list() |
|
4838 | 4849 | |
|
4839 | 4850 | @property |
|
4840 | 4851 | def kwargs(self): |
|
4841 | 4852 | try: |
|
4842 | 4853 | return dict(self.task_kwargs or {}) |
|
4843 | 4854 | except ValueError: |
|
4844 | 4855 | return dict() |
|
4845 | 4856 | |
|
4846 | 4857 | def _as_raw(self, val): |
|
4847 | 4858 | if hasattr(val, 'de_coerce'): |
|
4848 | 4859 | val = val.de_coerce() |
|
4849 | 4860 | if val: |
|
4850 | 4861 | val = json.dumps(val) |
|
4851 | 4862 | |
|
4852 | 4863 | return val |
|
4853 | 4864 | |
|
4854 | 4865 | @property |
|
4855 | 4866 | def schedule_definition_raw(self): |
|
4856 | 4867 | return self._as_raw(self.schedule_definition) |
|
4857 | 4868 | |
|
4858 | 4869 | @property |
|
4859 | 4870 | def args_raw(self): |
|
4860 | 4871 | return self._as_raw(self.task_args) |
|
4861 | 4872 | |
|
4862 | 4873 | @property |
|
4863 | 4874 | def kwargs_raw(self): |
|
4864 | 4875 | return self._as_raw(self.task_kwargs) |
|
4865 | 4876 | |
|
4866 | 4877 | def __repr__(self): |
|
4867 | 4878 | return '<DB:ScheduleEntry({}:{})>'.format( |
|
4868 | 4879 | self.schedule_entry_id, self.schedule_name) |
|
4869 | 4880 | |
|
4870 | 4881 | |
|
4871 | 4882 | @event.listens_for(ScheduleEntry, 'before_update') |
|
4872 | 4883 | def update_task_uid(mapper, connection, target): |
|
4873 | 4884 | target.task_uid = ScheduleEntry.get_uid(target) |
|
4874 | 4885 | |
|
4875 | 4886 | |
|
4876 | 4887 | @event.listens_for(ScheduleEntry, 'before_insert') |
|
4877 | 4888 | def set_task_uid(mapper, connection, target): |
|
4878 | 4889 | target.task_uid = ScheduleEntry.get_uid(target) |
|
4879 | 4890 | |
|
4880 | 4891 | |
|
4881 | 4892 | class _BaseBranchPerms(BaseModel): |
|
4882 | 4893 | @classmethod |
|
4883 | 4894 | def compute_hash(cls, value): |
|
4884 | 4895 | return sha1_safe(value) |
|
4885 | 4896 | |
|
4886 | 4897 | @hybrid_property |
|
4887 | 4898 | def branch_pattern(self): |
|
4888 | 4899 | return self._branch_pattern or '*' |
|
4889 | 4900 | |
|
4890 | 4901 | @hybrid_property |
|
4891 | 4902 | def branch_hash(self): |
|
4892 | 4903 | return self._branch_hash |
|
4893 | 4904 | |
|
4894 | 4905 | def _validate_glob(self, value): |
|
4895 | 4906 | re.compile('^' + glob2re(value) + '$') |
|
4896 | 4907 | |
|
4897 | 4908 | @branch_pattern.setter |
|
4898 | 4909 | def branch_pattern(self, value): |
|
4899 | 4910 | self._validate_glob(value) |
|
4900 | 4911 | self._branch_pattern = value or '*' |
|
4901 | 4912 | # set the Hash when setting the branch pattern |
|
4902 | 4913 | self._branch_hash = self.compute_hash(self._branch_pattern) |
|
4903 | 4914 | |
|
4904 | 4915 | def matches(self, branch): |
|
4905 | 4916 | """ |
|
4906 | 4917 | Check if this the branch matches entry |
|
4907 | 4918 | |
|
4908 | 4919 | :param branch: branch name for the commit |
|
4909 | 4920 | """ |
|
4910 | 4921 | |
|
4911 | 4922 | branch = branch or '' |
|
4912 | 4923 | |
|
4913 | 4924 | branch_matches = True |
|
4914 | 4925 | if branch: |
|
4915 | 4926 | branch_regex = re.compile('^' + glob2re(self.branch_pattern) + '$') |
|
4916 | 4927 | branch_matches = bool(branch_regex.search(branch)) |
|
4917 | 4928 | |
|
4918 | 4929 | return branch_matches |
|
4919 | 4930 | |
|
4920 | 4931 | |
|
4921 | 4932 | class UserToRepoBranchPermission(Base, _BaseBranchPerms): |
|
4922 | 4933 | __tablename__ = 'user_to_repo_branch_permissions' |
|
4923 | 4934 | __table_args__ = ( |
|
4924 | 4935 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
4925 | 4936 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True,} |
|
4926 | 4937 | ) |
|
4927 | 4938 | |
|
4928 | 4939 | branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True) |
|
4929 | 4940 | |
|
4930 | 4941 | repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
4931 | 4942 | repo = relationship('Repository', backref='user_branch_perms') |
|
4932 | 4943 | |
|
4933 | 4944 | permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
4934 | 4945 | permission = relationship('Permission') |
|
4935 | 4946 | |
|
4936 | 4947 | rule_to_perm_id = Column('rule_to_perm_id', Integer(), ForeignKey('repo_to_perm.repo_to_perm_id'), nullable=False, unique=None, default=None) |
|
4937 | 4948 | user_repo_to_perm = relationship('UserRepoToPerm') |
|
4938 | 4949 | |
|
4939 | 4950 | rule_order = Column('rule_order', Integer(), nullable=False) |
|
4940 | 4951 | _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob |
|
4941 | 4952 | _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql')) |
|
4942 | 4953 | |
|
4943 | 4954 | def __unicode__(self): |
|
4944 | 4955 | return u'<UserBranchPermission(%s => %r)>' % ( |
|
4945 | 4956 | self.user_repo_to_perm, self.branch_pattern) |
|
4946 | 4957 | |
|
4947 | 4958 | |
|
4948 | 4959 | class UserGroupToRepoBranchPermission(Base, _BaseBranchPerms): |
|
4949 | 4960 | __tablename__ = 'user_group_to_repo_branch_permissions' |
|
4950 | 4961 | __table_args__ = ( |
|
4951 | 4962 | {'extend_existing': True, 'mysql_engine': 'InnoDB', |
|
4952 | 4963 | 'mysql_charset': 'utf8', 'sqlite_autoincrement': True,} |
|
4953 | 4964 | ) |
|
4954 | 4965 | |
|
4955 | 4966 | branch_rule_id = Column('branch_rule_id', Integer(), primary_key=True) |
|
4956 | 4967 | |
|
4957 | 4968 | repository_id = Column('repository_id', Integer(), ForeignKey('repositories.repo_id'), nullable=False, unique=None, default=None) |
|
4958 | 4969 | repo = relationship('Repository', backref='user_group_branch_perms') |
|
4959 | 4970 | |
|
4960 | 4971 | permission_id = Column('permission_id', Integer(), ForeignKey('permissions.permission_id'), nullable=False, unique=None, default=None) |
|
4961 | 4972 | permission = relationship('Permission') |
|
4962 | 4973 | |
|
4963 | 4974 | rule_to_perm_id = Column('rule_to_perm_id', Integer(), ForeignKey('users_group_repo_to_perm.users_group_to_perm_id'), nullable=False, unique=None, default=None) |
|
4964 | 4975 | user_group_repo_to_perm = relationship('UserGroupRepoToPerm') |
|
4965 | 4976 | |
|
4966 | 4977 | rule_order = Column('rule_order', Integer(), nullable=False) |
|
4967 | 4978 | _branch_pattern = Column('branch_pattern', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), default=u'*') # glob |
|
4968 | 4979 | _branch_hash = Column('branch_hash', UnicodeText().with_variant(UnicodeText(2048), 'mysql')) |
|
4969 | 4980 | |
|
4970 | 4981 | def __unicode__(self): |
|
4971 | 4982 | return u'<UserBranchPermission(%s => %r)>' % ( |
|
4972 | 4983 | self.user_group_repo_to_perm, self.branch_pattern) |
|
4973 | 4984 | |
|
4974 | 4985 | |
|
4975 | 4986 | class UserBookmark(Base, BaseModel): |
|
4976 | 4987 | __tablename__ = 'user_bookmarks' |
|
4977 | 4988 | __table_args__ = ( |
|
4978 | 4989 | UniqueConstraint('user_id', 'bookmark_repo_id'), |
|
4979 | 4990 | UniqueConstraint('user_id', 'bookmark_repo_group_id'), |
|
4980 | 4991 | UniqueConstraint('user_id', 'bookmark_position'), |
|
4981 | 4992 | base_table_args |
|
4982 | 4993 | ) |
|
4983 | 4994 | |
|
4984 | 4995 | user_bookmark_id = Column("user_bookmark_id", Integer(), nullable=False, unique=True, default=None, primary_key=True) |
|
4985 | 4996 | user_id = Column("user_id", Integer(), ForeignKey('users.user_id'), nullable=False, unique=None, default=None) |
|
4986 | 4997 | position = Column("bookmark_position", Integer(), nullable=False) |
|
4987 | 4998 | title = Column("bookmark_title", String(255), nullable=True, unique=None, default=None) |
|
4988 | 4999 | redirect_url = Column("bookmark_redirect_url", String(10240), nullable=True, unique=None, default=None) |
|
4989 | 5000 | created_on = Column("created_on", DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
4990 | 5001 | |
|
4991 | 5002 | bookmark_repo_id = Column("bookmark_repo_id", Integer(), ForeignKey("repositories.repo_id"), nullable=True, unique=None, default=None) |
|
4992 | 5003 | bookmark_repo_group_id = Column("bookmark_repo_group_id", Integer(), ForeignKey("groups.group_id"), nullable=True, unique=None, default=None) |
|
4993 | 5004 | |
|
4994 | 5005 | user = relationship("User") |
|
4995 | 5006 | |
|
4996 | 5007 | repository = relationship("Repository") |
|
4997 | 5008 | repository_group = relationship("RepoGroup") |
|
4998 | 5009 | |
|
4999 | 5010 | @classmethod |
|
5000 | 5011 | def get_by_position_for_user(cls, position, user_id): |
|
5001 | 5012 | return cls.query() \ |
|
5002 | 5013 | .filter(UserBookmark.user_id == user_id) \ |
|
5003 | 5014 | .filter(UserBookmark.position == position).scalar() |
|
5004 | 5015 | |
|
5005 | 5016 | @classmethod |
|
5006 | 5017 | def get_bookmarks_for_user(cls, user_id): |
|
5007 | 5018 | return cls.query() \ |
|
5008 | 5019 | .filter(UserBookmark.user_id == user_id) \ |
|
5009 | 5020 | .options(joinedload(UserBookmark.repository)) \ |
|
5010 | 5021 | .options(joinedload(UserBookmark.repository_group)) \ |
|
5011 | 5022 | .order_by(UserBookmark.position.asc()) \ |
|
5012 | 5023 | .all() |
|
5013 | 5024 | |
|
5014 | 5025 | def __unicode__(self): |
|
5015 | 5026 | return u'<UserBookmark(%d @ %r)>' % (self.position, self.redirect_url) |
|
5016 | 5027 | |
|
5017 | 5028 | |
|
5018 | 5029 | class FileStore(Base, BaseModel): |
|
5019 | 5030 | __tablename__ = 'file_store' |
|
5020 | 5031 | __table_args__ = ( |
|
5021 | 5032 | base_table_args |
|
5022 | 5033 | ) |
|
5023 | 5034 | |
|
5024 | 5035 | file_store_id = Column('file_store_id', Integer(), primary_key=True) |
|
5025 | 5036 | file_uid = Column('file_uid', String(1024), nullable=False) |
|
5026 | 5037 | file_display_name = Column('file_display_name', UnicodeText().with_variant(UnicodeText(2048), 'mysql'), nullable=True) |
|
5027 | 5038 | file_description = Column('file_description', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=True) |
|
5028 | 5039 | file_org_name = Column('file_org_name', UnicodeText().with_variant(UnicodeText(10240), 'mysql'), nullable=False) |
|
5029 | 5040 | |
|
5030 | 5041 | # sha256 hash |
|
5031 | 5042 | file_hash = Column('file_hash', String(512), nullable=False) |
|
5032 | 5043 | file_size = Column('file_size', Integer(), nullable=False) |
|
5033 | 5044 | |
|
5034 | 5045 | created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) |
|
5035 | 5046 | accessed_on = Column('accessed_on', DateTime(timezone=False), nullable=True) |
|
5036 | 5047 | accessed_count = Column('accessed_count', Integer(), default=0) |
|
5037 | 5048 | |
|
5038 | 5049 | enabled = Column('enabled', Boolean(), nullable=False, default=True) |
|
5039 | 5050 | |
|
5040 | 5051 | # if repo/repo_group reference is set, check for permissions |
|
5041 | 5052 | check_acl = Column('check_acl', Boolean(), nullable=False, default=True) |
|
5042 | 5053 | |
|
5043 | 5054 | user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False) |
|
5044 | 5055 | upload_user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.user_id') |
|
5045 | 5056 | |
|
5046 | 5057 | # scope limited to user, which requester have access to |
|
5047 | 5058 | scope_user_id = Column( |
|
5048 | 5059 | 'scope_user_id', Integer(), ForeignKey('users.user_id'), |
|
5049 | 5060 | nullable=True, unique=None, default=None) |
|
5050 | 5061 | user = relationship('User', lazy='joined', primaryjoin='User.user_id==FileStore.scope_user_id') |
|
5051 | 5062 | |
|
5052 | 5063 | # scope limited to user group, which requester have access to |
|
5053 | 5064 | scope_user_group_id = Column( |
|
5054 | 5065 | 'scope_user_group_id', Integer(), ForeignKey('users_groups.users_group_id'), |
|
5055 | 5066 | nullable=True, unique=None, default=None) |
|
5056 | 5067 | user_group = relationship('UserGroup', lazy='joined') |
|
5057 | 5068 | |
|
5058 | 5069 | # scope limited to repo, which requester have access to |
|
5059 | 5070 | scope_repo_id = Column( |
|
5060 | 5071 | 'scope_repo_id', Integer(), ForeignKey('repositories.repo_id'), |
|
5061 | 5072 | nullable=True, unique=None, default=None) |
|
5062 | 5073 | repo = relationship('Repository', lazy='joined') |
|
5063 | 5074 | |
|
5064 | 5075 | # scope limited to repo group, which requester have access to |
|
5065 | 5076 | scope_repo_group_id = Column( |
|
5066 | 5077 | 'scope_repo_group_id', Integer(), ForeignKey('groups.group_id'), |
|
5067 | 5078 | nullable=True, unique=None, default=None) |
|
5068 | 5079 | repo_group = relationship('RepoGroup', lazy='joined') |
|
5069 | 5080 | |
|
5070 | 5081 | @classmethod |
|
5071 | 5082 | def create(cls, file_uid, filename, file_hash, file_size, file_display_name='', |
|
5072 | 5083 | file_description='', enabled=True, check_acl=True, user_id=None, |
|
5073 | 5084 | scope_user_id=None, scope_repo_id=None, scope_repo_group_id=None): |
|
5074 | 5085 | |
|
5075 | 5086 | store_entry = FileStore() |
|
5076 | 5087 | store_entry.file_uid = file_uid |
|
5077 | 5088 | store_entry.file_display_name = file_display_name |
|
5078 | 5089 | store_entry.file_org_name = filename |
|
5079 | 5090 | store_entry.file_size = file_size |
|
5080 | 5091 | store_entry.file_hash = file_hash |
|
5081 | 5092 | store_entry.file_description = file_description |
|
5082 | 5093 | |
|
5083 | 5094 | store_entry.check_acl = check_acl |
|
5084 | 5095 | store_entry.enabled = enabled |
|
5085 | 5096 | |
|
5086 | 5097 | store_entry.user_id = user_id |
|
5087 | 5098 | store_entry.scope_user_id = scope_user_id |
|
5088 | 5099 | store_entry.scope_repo_id = scope_repo_id |
|
5089 | 5100 | store_entry.scope_repo_group_id = scope_repo_group_id |
|
5090 | 5101 | return store_entry |
|
5091 | 5102 | |
|
5092 | 5103 | @classmethod |
|
5093 | 5104 | def bump_access_counter(cls, file_uid, commit=True): |
|
5094 | 5105 | FileStore().query()\ |
|
5095 | 5106 | .filter(FileStore.file_uid == file_uid)\ |
|
5096 | 5107 | .update({FileStore.accessed_count: (FileStore.accessed_count + 1), |
|
5097 | 5108 | FileStore.accessed_on: datetime.datetime.now()}) |
|
5098 | 5109 | if commit: |
|
5099 | 5110 | Session().commit() |
|
5100 | 5111 | |
|
5101 | 5112 | def __repr__(self): |
|
5102 | 5113 | return '<FileStore({})>'.format(self.file_store_id) |
|
5103 | 5114 | |
|
5104 | 5115 | |
|
5105 | 5116 | class DbMigrateVersion(Base, BaseModel): |
|
5106 | 5117 | __tablename__ = 'db_migrate_version' |
|
5107 | 5118 | __table_args__ = ( |
|
5108 | 5119 | base_table_args, |
|
5109 | 5120 | ) |
|
5110 | 5121 | |
|
5111 | 5122 | repository_id = Column('repository_id', String(250), primary_key=True) |
|
5112 | 5123 | repository_path = Column('repository_path', Text) |
|
5113 | 5124 | version = Column('version', Integer) |
|
5114 | 5125 | |
|
5115 | 5126 | @classmethod |
|
5116 | 5127 | def set_version(cls, version): |
|
5117 | 5128 | """ |
|
5118 | 5129 | Helper for forcing a different version, usually for debugging purposes via ishell. |
|
5119 | 5130 | """ |
|
5120 | 5131 | ver = DbMigrateVersion.query().first() |
|
5121 | 5132 | ver.version = version |
|
5122 | 5133 | Session().commit() |
|
5123 | 5134 | |
|
5124 | 5135 | |
|
5125 | 5136 | class DbSession(Base, BaseModel): |
|
5126 | 5137 | __tablename__ = 'db_session' |
|
5127 | 5138 | __table_args__ = ( |
|
5128 | 5139 | base_table_args, |
|
5129 | 5140 | ) |
|
5130 | 5141 | |
|
5131 | 5142 | def __repr__(self): |
|
5132 | 5143 | return '<DB:DbSession({})>'.format(self.id) |
|
5133 | 5144 | |
|
5134 | 5145 | id = Column('id', Integer()) |
|
5135 | 5146 | namespace = Column('namespace', String(255), primary_key=True) |
|
5136 | 5147 | accessed = Column('accessed', DateTime, nullable=False) |
|
5137 | 5148 | created = Column('created', DateTime, nullable=False) |
|
5138 | 5149 | data = Column('data', PickleType, nullable=False) |
General Comments 0
You need to be logged in to leave comments.
Login now