Show More
@@ -0,0 +1,128 b'' | |||||
|
1 | # -*- coding: utf-8 -*- | |||
|
2 | ||||
|
3 | # Copyright (C) 2016-2017 RhodeCode GmbH | |||
|
4 | # | |||
|
5 | # This program is free software: you can redistribute it and/or modify | |||
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |||
|
7 | # (only), as published by the Free Software Foundation. | |||
|
8 | # | |||
|
9 | # This program is distributed in the hope that it will be useful, | |||
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
|
12 | # GNU General Public License for more details. | |||
|
13 | # | |||
|
14 | # You should have received a copy of the GNU Affero General Public License | |||
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
|
16 | # | |||
|
17 | # This program is dual-licensed. If you wish to learn more about the | |||
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |||
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |||
|
20 | ||||
|
21 | import pytest | |||
|
22 | ||||
|
23 | from rhodecode.tests import ( | |||
|
24 | TestController, url, assert_session_flash, link_to) | |||
|
25 | from rhodecode.model.db import User, UserGroup | |||
|
26 | from rhodecode.model.meta import Session | |||
|
27 | from rhodecode.tests.fixture import Fixture | |||
|
28 | ||||
|
29 | ||||
|
30 | fixture = Fixture() | |||
|
31 | ||||
|
32 | ||||
|
33 | class TestAdminUsersGroupsController(TestController): | |||
|
34 | ||||
|
35 | def test_regular_user_cannot_see_admin_interfaces(self, user_util): | |||
|
36 | user = user_util.create_user(password='qweqwe') | |||
|
37 | self.log_user(user.username, 'qweqwe') | |||
|
38 | ||||
|
39 | # check if in home view, such user doesn't see the "admin" menus | |||
|
40 | response = self.app.get(url('home')) | |||
|
41 | ||||
|
42 | assert_response = response.assert_response() | |||
|
43 | ||||
|
44 | assert_response.no_element_exists('li.local-admin-repos') | |||
|
45 | assert_response.no_element_exists('li.local-admin-repo-groups') | |||
|
46 | assert_response.no_element_exists('li.local-admin-user-groups') | |||
|
47 | ||||
|
48 | response = self.app.get(url('repos'), status=200) | |||
|
49 | response.mustcontain('data: []') | |||
|
50 | ||||
|
51 | response = self.app.get(url('repo_groups'), status=200) | |||
|
52 | response.mustcontain('data: []') | |||
|
53 | ||||
|
54 | response = self.app.get(url('users_groups'), status=200) | |||
|
55 | response.mustcontain('data: []') | |||
|
56 | ||||
|
57 | def test_regular_user_can_see_admin_interfaces_if_owner(self, user_util): | |||
|
58 | user = user_util.create_user(password='qweqwe') | |||
|
59 | username = user.username | |||
|
60 | ||||
|
61 | repo = user_util.create_repo(owner=username) | |||
|
62 | repo_name = repo.repo_name | |||
|
63 | ||||
|
64 | repo_group = user_util.create_repo_group(owner=username) | |||
|
65 | repo_group_name = repo_group.group_name | |||
|
66 | ||||
|
67 | user_group = user_util.create_user_group(owner=username) | |||
|
68 | user_group_name = user_group.users_group_name | |||
|
69 | ||||
|
70 | self.log_user(username, 'qweqwe') | |||
|
71 | # check if in home view, such user doesn't see the "admin" menus | |||
|
72 | response = self.app.get(url('home')) | |||
|
73 | ||||
|
74 | assert_response = response.assert_response() | |||
|
75 | ||||
|
76 | assert_response.one_element_exists('li.local-admin-repos') | |||
|
77 | assert_response.one_element_exists('li.local-admin-repo-groups') | |||
|
78 | assert_response.one_element_exists('li.local-admin-user-groups') | |||
|
79 | ||||
|
80 | # admin interfaces have visible elements | |||
|
81 | response = self.app.get(url('repos'), status=200) | |||
|
82 | response.mustcontain('"name_raw": "{}"'.format(repo_name)) | |||
|
83 | ||||
|
84 | response = self.app.get(url('repo_groups'), status=200) | |||
|
85 | response.mustcontain('"name_raw": "{}"'.format(repo_group_name)) | |||
|
86 | ||||
|
87 | response = self.app.get(url('users_groups'), status=200) | |||
|
88 | response.mustcontain('"group_name_raw": "{}"'.format(user_group_name)) | |||
|
89 | ||||
|
90 | def test_regular_user_can_see_admin_interfaces_if_admin_perm(self, user_util): | |||
|
91 | user = user_util.create_user(password='qweqwe') | |||
|
92 | username = user.username | |||
|
93 | ||||
|
94 | repo = user_util.create_repo() | |||
|
95 | repo_name = repo.repo_name | |||
|
96 | ||||
|
97 | repo_group = user_util.create_repo_group() | |||
|
98 | repo_group_name = repo_group.group_name | |||
|
99 | ||||
|
100 | user_group = user_util.create_user_group() | |||
|
101 | user_group_name = user_group.users_group_name | |||
|
102 | ||||
|
103 | user_util.grant_user_permission_to_repo( | |||
|
104 | repo, user, 'repository.admin') | |||
|
105 | user_util.grant_user_permission_to_repo_group( | |||
|
106 | repo_group, user, 'group.admin') | |||
|
107 | user_util.grant_user_permission_to_user_group( | |||
|
108 | user_group, user, 'usergroup.admin') | |||
|
109 | ||||
|
110 | self.log_user(username, 'qweqwe') | |||
|
111 | # check if in home view, such user doesn't see the "admin" menus | |||
|
112 | response = self.app.get(url('home')) | |||
|
113 | ||||
|
114 | assert_response = response.assert_response() | |||
|
115 | ||||
|
116 | assert_response.one_element_exists('li.local-admin-repos') | |||
|
117 | assert_response.one_element_exists('li.local-admin-repo-groups') | |||
|
118 | assert_response.one_element_exists('li.local-admin-user-groups') | |||
|
119 | ||||
|
120 | # admin interfaces have visible elements | |||
|
121 | response = self.app.get(url('repos'), status=200) | |||
|
122 | response.mustcontain('"name_raw": "{}"'.format(repo_name)) | |||
|
123 | ||||
|
124 | response = self.app.get(url('repo_groups'), status=200) | |||
|
125 | response.mustcontain('"name_raw": "{}"'.format(repo_group_name)) | |||
|
126 | ||||
|
127 | response = self.app.get(url('users_groups'), status=200) | |||
|
128 | response.mustcontain('"group_name_raw": "{}"'.format(user_group_name)) |
@@ -1,1909 +1,1929 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | """ |
|
21 | """ | |
22 | authentication and permission libraries |
|
22 | authentication and permission libraries | |
23 | """ |
|
23 | """ | |
24 |
|
24 | |||
25 | import inspect |
|
25 | import inspect | |
26 | import collections |
|
26 | import collections | |
27 | import fnmatch |
|
27 | import fnmatch | |
28 | import hashlib |
|
28 | import hashlib | |
29 | import itertools |
|
29 | import itertools | |
30 | import logging |
|
30 | import logging | |
31 | import os |
|
31 | import os | |
32 | import random |
|
32 | import random | |
33 | import time |
|
33 | import time | |
34 | import traceback |
|
34 | import traceback | |
35 | from functools import wraps |
|
35 | from functools import wraps | |
36 |
|
36 | |||
37 | import ipaddress |
|
37 | import ipaddress | |
38 | from pyramid.httpexceptions import HTTPForbidden |
|
38 | from pyramid.httpexceptions import HTTPForbidden | |
39 | from pylons import url, request |
|
39 | from pylons import url, request | |
40 | from pylons.controllers.util import abort, redirect |
|
40 | from pylons.controllers.util import abort, redirect | |
41 | from pylons.i18n.translation import _ |
|
41 | from pylons.i18n.translation import _ | |
42 | from sqlalchemy import or_ |
|
42 | from sqlalchemy import or_ | |
43 | from sqlalchemy.orm.exc import ObjectDeletedError |
|
43 | from sqlalchemy.orm.exc import ObjectDeletedError | |
44 | from sqlalchemy.orm import joinedload |
|
44 | from sqlalchemy.orm import joinedload | |
45 | from zope.cachedescriptors.property import Lazy as LazyProperty |
|
45 | from zope.cachedescriptors.property import Lazy as LazyProperty | |
46 |
|
46 | |||
47 | import rhodecode |
|
47 | import rhodecode | |
48 | from rhodecode.model import meta |
|
48 | from rhodecode.model import meta | |
49 | from rhodecode.model.meta import Session |
|
49 | from rhodecode.model.meta import Session | |
50 | from rhodecode.model.user import UserModel |
|
50 | from rhodecode.model.user import UserModel | |
51 | from rhodecode.model.db import ( |
|
51 | from rhodecode.model.db import ( | |
52 | User, Repository, Permission, UserToPerm, UserGroupToPerm, UserGroupMember, |
|
52 | User, Repository, Permission, UserToPerm, UserGroupToPerm, UserGroupMember, | |
53 | UserIpMap, UserApiKeys, RepoGroup) |
|
53 | UserIpMap, UserApiKeys, RepoGroup) | |
54 | from rhodecode.lib import caches |
|
54 | from rhodecode.lib import caches | |
55 | from rhodecode.lib.utils2 import safe_unicode, aslist, safe_str, md5 |
|
55 | from rhodecode.lib.utils2 import safe_unicode, aslist, safe_str, md5 | |
56 | from rhodecode.lib.utils import ( |
|
56 | from rhodecode.lib.utils import ( | |
57 | get_repo_slug, get_repo_group_slug, get_user_group_slug) |
|
57 | get_repo_slug, get_repo_group_slug, get_user_group_slug) | |
58 | from rhodecode.lib.caching_query import FromCache |
|
58 | from rhodecode.lib.caching_query import FromCache | |
59 |
|
59 | |||
60 |
|
60 | |||
61 | if rhodecode.is_unix: |
|
61 | if rhodecode.is_unix: | |
62 | import bcrypt |
|
62 | import bcrypt | |
63 |
|
63 | |||
64 | log = logging.getLogger(__name__) |
|
64 | log = logging.getLogger(__name__) | |
65 |
|
65 | |||
66 | csrf_token_key = "csrf_token" |
|
66 | csrf_token_key = "csrf_token" | |
67 |
|
67 | |||
68 |
|
68 | |||
69 | class PasswordGenerator(object): |
|
69 | class PasswordGenerator(object): | |
70 | """ |
|
70 | """ | |
71 | This is a simple class for generating password from different sets of |
|
71 | This is a simple class for generating password from different sets of | |
72 | characters |
|
72 | characters | |
73 | usage:: |
|
73 | usage:: | |
74 |
|
74 | |||
75 | passwd_gen = PasswordGenerator() |
|
75 | passwd_gen = PasswordGenerator() | |
76 | #print 8-letter password containing only big and small letters |
|
76 | #print 8-letter password containing only big and small letters | |
77 | of alphabet |
|
77 | of alphabet | |
78 | passwd_gen.gen_password(8, passwd_gen.ALPHABETS_BIG_SMALL) |
|
78 | passwd_gen.gen_password(8, passwd_gen.ALPHABETS_BIG_SMALL) | |
79 | """ |
|
79 | """ | |
80 | ALPHABETS_NUM = r'''1234567890''' |
|
80 | ALPHABETS_NUM = r'''1234567890''' | |
81 | ALPHABETS_SMALL = r'''qwertyuiopasdfghjklzxcvbnm''' |
|
81 | ALPHABETS_SMALL = r'''qwertyuiopasdfghjklzxcvbnm''' | |
82 | ALPHABETS_BIG = r'''QWERTYUIOPASDFGHJKLZXCVBNM''' |
|
82 | ALPHABETS_BIG = r'''QWERTYUIOPASDFGHJKLZXCVBNM''' | |
83 | ALPHABETS_SPECIAL = r'''`-=[]\;',./~!@#$%^&*()_+{}|:"<>?''' |
|
83 | ALPHABETS_SPECIAL = r'''`-=[]\;',./~!@#$%^&*()_+{}|:"<>?''' | |
84 | ALPHABETS_FULL = ALPHABETS_BIG + ALPHABETS_SMALL \ |
|
84 | ALPHABETS_FULL = ALPHABETS_BIG + ALPHABETS_SMALL \ | |
85 | + ALPHABETS_NUM + ALPHABETS_SPECIAL |
|
85 | + ALPHABETS_NUM + ALPHABETS_SPECIAL | |
86 | ALPHABETS_ALPHANUM = ALPHABETS_BIG + ALPHABETS_SMALL + ALPHABETS_NUM |
|
86 | ALPHABETS_ALPHANUM = ALPHABETS_BIG + ALPHABETS_SMALL + ALPHABETS_NUM | |
87 | ALPHABETS_BIG_SMALL = ALPHABETS_BIG + ALPHABETS_SMALL |
|
87 | ALPHABETS_BIG_SMALL = ALPHABETS_BIG + ALPHABETS_SMALL | |
88 | ALPHABETS_ALPHANUM_BIG = ALPHABETS_BIG + ALPHABETS_NUM |
|
88 | ALPHABETS_ALPHANUM_BIG = ALPHABETS_BIG + ALPHABETS_NUM | |
89 | ALPHABETS_ALPHANUM_SMALL = ALPHABETS_SMALL + ALPHABETS_NUM |
|
89 | ALPHABETS_ALPHANUM_SMALL = ALPHABETS_SMALL + ALPHABETS_NUM | |
90 |
|
90 | |||
91 | def __init__(self, passwd=''): |
|
91 | def __init__(self, passwd=''): | |
92 | self.passwd = passwd |
|
92 | self.passwd = passwd | |
93 |
|
93 | |||
94 | def gen_password(self, length, type_=None): |
|
94 | def gen_password(self, length, type_=None): | |
95 | if type_ is None: |
|
95 | if type_ is None: | |
96 | type_ = self.ALPHABETS_FULL |
|
96 | type_ = self.ALPHABETS_FULL | |
97 | self.passwd = ''.join([random.choice(type_) for _ in xrange(length)]) |
|
97 | self.passwd = ''.join([random.choice(type_) for _ in xrange(length)]) | |
98 | return self.passwd |
|
98 | return self.passwd | |
99 |
|
99 | |||
100 |
|
100 | |||
101 | class _RhodeCodeCryptoBase(object): |
|
101 | class _RhodeCodeCryptoBase(object): | |
102 | ENC_PREF = None |
|
102 | ENC_PREF = None | |
103 |
|
103 | |||
104 | def hash_create(self, str_): |
|
104 | def hash_create(self, str_): | |
105 | """ |
|
105 | """ | |
106 | hash the string using |
|
106 | hash the string using | |
107 |
|
107 | |||
108 | :param str_: password to hash |
|
108 | :param str_: password to hash | |
109 | """ |
|
109 | """ | |
110 | raise NotImplementedError |
|
110 | raise NotImplementedError | |
111 |
|
111 | |||
112 | def hash_check_with_upgrade(self, password, hashed): |
|
112 | def hash_check_with_upgrade(self, password, hashed): | |
113 | """ |
|
113 | """ | |
114 | Returns tuple in which first element is boolean that states that |
|
114 | Returns tuple in which first element is boolean that states that | |
115 | given password matches it's hashed version, and the second is new hash |
|
115 | given password matches it's hashed version, and the second is new hash | |
116 | of the password, in case this password should be migrated to new |
|
116 | of the password, in case this password should be migrated to new | |
117 | cipher. |
|
117 | cipher. | |
118 | """ |
|
118 | """ | |
119 | checked_hash = self.hash_check(password, hashed) |
|
119 | checked_hash = self.hash_check(password, hashed) | |
120 | return checked_hash, None |
|
120 | return checked_hash, None | |
121 |
|
121 | |||
122 | def hash_check(self, password, hashed): |
|
122 | def hash_check(self, password, hashed): | |
123 | """ |
|
123 | """ | |
124 | Checks matching password with it's hashed value. |
|
124 | Checks matching password with it's hashed value. | |
125 |
|
125 | |||
126 | :param password: password |
|
126 | :param password: password | |
127 | :param hashed: password in hashed form |
|
127 | :param hashed: password in hashed form | |
128 | """ |
|
128 | """ | |
129 | raise NotImplementedError |
|
129 | raise NotImplementedError | |
130 |
|
130 | |||
131 | def _assert_bytes(self, value): |
|
131 | def _assert_bytes(self, value): | |
132 | """ |
|
132 | """ | |
133 | Passing in an `unicode` object can lead to hard to detect issues |
|
133 | Passing in an `unicode` object can lead to hard to detect issues | |
134 | if passwords contain non-ascii characters. Doing a type check |
|
134 | if passwords contain non-ascii characters. Doing a type check | |
135 | during runtime, so that such mistakes are detected early on. |
|
135 | during runtime, so that such mistakes are detected early on. | |
136 | """ |
|
136 | """ | |
137 | if not isinstance(value, str): |
|
137 | if not isinstance(value, str): | |
138 | raise TypeError( |
|
138 | raise TypeError( | |
139 | "Bytestring required as input, got %r." % (value, )) |
|
139 | "Bytestring required as input, got %r." % (value, )) | |
140 |
|
140 | |||
141 |
|
141 | |||
142 | class _RhodeCodeCryptoBCrypt(_RhodeCodeCryptoBase): |
|
142 | class _RhodeCodeCryptoBCrypt(_RhodeCodeCryptoBase): | |
143 | ENC_PREF = '$2a$10' |
|
143 | ENC_PREF = '$2a$10' | |
144 |
|
144 | |||
145 | def hash_create(self, str_): |
|
145 | def hash_create(self, str_): | |
146 | self._assert_bytes(str_) |
|
146 | self._assert_bytes(str_) | |
147 | return bcrypt.hashpw(str_, bcrypt.gensalt(10)) |
|
147 | return bcrypt.hashpw(str_, bcrypt.gensalt(10)) | |
148 |
|
148 | |||
149 | def hash_check_with_upgrade(self, password, hashed): |
|
149 | def hash_check_with_upgrade(self, password, hashed): | |
150 | """ |
|
150 | """ | |
151 | Returns tuple in which first element is boolean that states that |
|
151 | Returns tuple in which first element is boolean that states that | |
152 | given password matches it's hashed version, and the second is new hash |
|
152 | given password matches it's hashed version, and the second is new hash | |
153 | of the password, in case this password should be migrated to new |
|
153 | of the password, in case this password should be migrated to new | |
154 | cipher. |
|
154 | cipher. | |
155 |
|
155 | |||
156 | This implements special upgrade logic which works like that: |
|
156 | This implements special upgrade logic which works like that: | |
157 | - check if the given password == bcrypted hash, if yes then we |
|
157 | - check if the given password == bcrypted hash, if yes then we | |
158 | properly used password and it was already in bcrypt. Proceed |
|
158 | properly used password and it was already in bcrypt. Proceed | |
159 | without any changes |
|
159 | without any changes | |
160 | - if bcrypt hash check is not working try with sha256. If hash compare |
|
160 | - if bcrypt hash check is not working try with sha256. If hash compare | |
161 | is ok, it means we using correct but old hashed password. indicate |
|
161 | is ok, it means we using correct but old hashed password. indicate | |
162 | hash change and proceed |
|
162 | hash change and proceed | |
163 | """ |
|
163 | """ | |
164 |
|
164 | |||
165 | new_hash = None |
|
165 | new_hash = None | |
166 |
|
166 | |||
167 | # regular pw check |
|
167 | # regular pw check | |
168 | password_match_bcrypt = self.hash_check(password, hashed) |
|
168 | password_match_bcrypt = self.hash_check(password, hashed) | |
169 |
|
169 | |||
170 | # now we want to know if the password was maybe from sha256 |
|
170 | # now we want to know if the password was maybe from sha256 | |
171 | # basically calling _RhodeCodeCryptoSha256().hash_check() |
|
171 | # basically calling _RhodeCodeCryptoSha256().hash_check() | |
172 | if not password_match_bcrypt: |
|
172 | if not password_match_bcrypt: | |
173 | if _RhodeCodeCryptoSha256().hash_check(password, hashed): |
|
173 | if _RhodeCodeCryptoSha256().hash_check(password, hashed): | |
174 | new_hash = self.hash_create(password) # make new bcrypt hash |
|
174 | new_hash = self.hash_create(password) # make new bcrypt hash | |
175 | password_match_bcrypt = True |
|
175 | password_match_bcrypt = True | |
176 |
|
176 | |||
177 | return password_match_bcrypt, new_hash |
|
177 | return password_match_bcrypt, new_hash | |
178 |
|
178 | |||
179 | def hash_check(self, password, hashed): |
|
179 | def hash_check(self, password, hashed): | |
180 | """ |
|
180 | """ | |
181 | Checks matching password with it's hashed value. |
|
181 | Checks matching password with it's hashed value. | |
182 |
|
182 | |||
183 | :param password: password |
|
183 | :param password: password | |
184 | :param hashed: password in hashed form |
|
184 | :param hashed: password in hashed form | |
185 | """ |
|
185 | """ | |
186 | self._assert_bytes(password) |
|
186 | self._assert_bytes(password) | |
187 | try: |
|
187 | try: | |
188 | return bcrypt.hashpw(password, hashed) == hashed |
|
188 | return bcrypt.hashpw(password, hashed) == hashed | |
189 | except ValueError as e: |
|
189 | except ValueError as e: | |
190 | # we're having a invalid salt here probably, we should not crash |
|
190 | # we're having a invalid salt here probably, we should not crash | |
191 | # just return with False as it would be a wrong password. |
|
191 | # just return with False as it would be a wrong password. | |
192 | log.debug('Failed to check password hash using bcrypt %s', |
|
192 | log.debug('Failed to check password hash using bcrypt %s', | |
193 | safe_str(e)) |
|
193 | safe_str(e)) | |
194 |
|
194 | |||
195 | return False |
|
195 | return False | |
196 |
|
196 | |||
197 |
|
197 | |||
198 | class _RhodeCodeCryptoSha256(_RhodeCodeCryptoBase): |
|
198 | class _RhodeCodeCryptoSha256(_RhodeCodeCryptoBase): | |
199 | ENC_PREF = '_' |
|
199 | ENC_PREF = '_' | |
200 |
|
200 | |||
201 | def hash_create(self, str_): |
|
201 | def hash_create(self, str_): | |
202 | self._assert_bytes(str_) |
|
202 | self._assert_bytes(str_) | |
203 | return hashlib.sha256(str_).hexdigest() |
|
203 | return hashlib.sha256(str_).hexdigest() | |
204 |
|
204 | |||
205 | def hash_check(self, password, hashed): |
|
205 | def hash_check(self, password, hashed): | |
206 | """ |
|
206 | """ | |
207 | Checks matching password with it's hashed value. |
|
207 | Checks matching password with it's hashed value. | |
208 |
|
208 | |||
209 | :param password: password |
|
209 | :param password: password | |
210 | :param hashed: password in hashed form |
|
210 | :param hashed: password in hashed form | |
211 | """ |
|
211 | """ | |
212 | self._assert_bytes(password) |
|
212 | self._assert_bytes(password) | |
213 | return hashlib.sha256(password).hexdigest() == hashed |
|
213 | return hashlib.sha256(password).hexdigest() == hashed | |
214 |
|
214 | |||
215 |
|
215 | |||
216 | class _RhodeCodeCryptoMd5(_RhodeCodeCryptoBase): |
|
216 | class _RhodeCodeCryptoMd5(_RhodeCodeCryptoBase): | |
217 | ENC_PREF = '_' |
|
217 | ENC_PREF = '_' | |
218 |
|
218 | |||
219 | def hash_create(self, str_): |
|
219 | def hash_create(self, str_): | |
220 | self._assert_bytes(str_) |
|
220 | self._assert_bytes(str_) | |
221 | return hashlib.md5(str_).hexdigest() |
|
221 | return hashlib.md5(str_).hexdigest() | |
222 |
|
222 | |||
223 | def hash_check(self, password, hashed): |
|
223 | def hash_check(self, password, hashed): | |
224 | """ |
|
224 | """ | |
225 | Checks matching password with it's hashed value. |
|
225 | Checks matching password with it's hashed value. | |
226 |
|
226 | |||
227 | :param password: password |
|
227 | :param password: password | |
228 | :param hashed: password in hashed form |
|
228 | :param hashed: password in hashed form | |
229 | """ |
|
229 | """ | |
230 | self._assert_bytes(password) |
|
230 | self._assert_bytes(password) | |
231 | return hashlib.md5(password).hexdigest() == hashed |
|
231 | return hashlib.md5(password).hexdigest() == hashed | |
232 |
|
232 | |||
233 |
|
233 | |||
234 | def crypto_backend(): |
|
234 | def crypto_backend(): | |
235 | """ |
|
235 | """ | |
236 | Return the matching crypto backend. |
|
236 | Return the matching crypto backend. | |
237 |
|
237 | |||
238 | Selection is based on if we run tests or not, we pick md5 backend to run |
|
238 | Selection is based on if we run tests or not, we pick md5 backend to run | |
239 | tests faster since BCRYPT is expensive to calculate |
|
239 | tests faster since BCRYPT is expensive to calculate | |
240 | """ |
|
240 | """ | |
241 | if rhodecode.is_test: |
|
241 | if rhodecode.is_test: | |
242 | RhodeCodeCrypto = _RhodeCodeCryptoMd5() |
|
242 | RhodeCodeCrypto = _RhodeCodeCryptoMd5() | |
243 | else: |
|
243 | else: | |
244 | RhodeCodeCrypto = _RhodeCodeCryptoBCrypt() |
|
244 | RhodeCodeCrypto = _RhodeCodeCryptoBCrypt() | |
245 |
|
245 | |||
246 | return RhodeCodeCrypto |
|
246 | return RhodeCodeCrypto | |
247 |
|
247 | |||
248 |
|
248 | |||
249 | def get_crypt_password(password): |
|
249 | def get_crypt_password(password): | |
250 | """ |
|
250 | """ | |
251 | Create the hash of `password` with the active crypto backend. |
|
251 | Create the hash of `password` with the active crypto backend. | |
252 |
|
252 | |||
253 | :param password: The cleartext password. |
|
253 | :param password: The cleartext password. | |
254 | :type password: unicode |
|
254 | :type password: unicode | |
255 | """ |
|
255 | """ | |
256 | password = safe_str(password) |
|
256 | password = safe_str(password) | |
257 | return crypto_backend().hash_create(password) |
|
257 | return crypto_backend().hash_create(password) | |
258 |
|
258 | |||
259 |
|
259 | |||
260 | def check_password(password, hashed): |
|
260 | def check_password(password, hashed): | |
261 | """ |
|
261 | """ | |
262 | Check if the value in `password` matches the hash in `hashed`. |
|
262 | Check if the value in `password` matches the hash in `hashed`. | |
263 |
|
263 | |||
264 | :param password: The cleartext password. |
|
264 | :param password: The cleartext password. | |
265 | :type password: unicode |
|
265 | :type password: unicode | |
266 |
|
266 | |||
267 | :param hashed: The expected hashed version of the password. |
|
267 | :param hashed: The expected hashed version of the password. | |
268 | :type hashed: The hash has to be passed in in text representation. |
|
268 | :type hashed: The hash has to be passed in in text representation. | |
269 | """ |
|
269 | """ | |
270 | password = safe_str(password) |
|
270 | password = safe_str(password) | |
271 | return crypto_backend().hash_check(password, hashed) |
|
271 | return crypto_backend().hash_check(password, hashed) | |
272 |
|
272 | |||
273 |
|
273 | |||
274 | def generate_auth_token(data, salt=None): |
|
274 | def generate_auth_token(data, salt=None): | |
275 | """ |
|
275 | """ | |
276 | Generates API KEY from given string |
|
276 | Generates API KEY from given string | |
277 | """ |
|
277 | """ | |
278 |
|
278 | |||
279 | if salt is None: |
|
279 | if salt is None: | |
280 | salt = os.urandom(16) |
|
280 | salt = os.urandom(16) | |
281 | return hashlib.sha1(safe_str(data) + salt).hexdigest() |
|
281 | return hashlib.sha1(safe_str(data) + salt).hexdigest() | |
282 |
|
282 | |||
283 |
|
283 | |||
284 | class CookieStoreWrapper(object): |
|
284 | class CookieStoreWrapper(object): | |
285 |
|
285 | |||
286 | def __init__(self, cookie_store): |
|
286 | def __init__(self, cookie_store): | |
287 | self.cookie_store = cookie_store |
|
287 | self.cookie_store = cookie_store | |
288 |
|
288 | |||
289 | def __repr__(self): |
|
289 | def __repr__(self): | |
290 | return 'CookieStore<%s>' % (self.cookie_store) |
|
290 | return 'CookieStore<%s>' % (self.cookie_store) | |
291 |
|
291 | |||
292 | def get(self, key, other=None): |
|
292 | def get(self, key, other=None): | |
293 | if isinstance(self.cookie_store, dict): |
|
293 | if isinstance(self.cookie_store, dict): | |
294 | return self.cookie_store.get(key, other) |
|
294 | return self.cookie_store.get(key, other) | |
295 | elif isinstance(self.cookie_store, AuthUser): |
|
295 | elif isinstance(self.cookie_store, AuthUser): | |
296 | return self.cookie_store.__dict__.get(key, other) |
|
296 | return self.cookie_store.__dict__.get(key, other) | |
297 |
|
297 | |||
298 |
|
298 | |||
299 | def _cached_perms_data(user_id, scope, user_is_admin, |
|
299 | def _cached_perms_data(user_id, scope, user_is_admin, | |
300 | user_inherit_default_permissions, explicit, algo): |
|
300 | user_inherit_default_permissions, explicit, algo): | |
301 |
|
301 | |||
302 | permissions = PermissionCalculator( |
|
302 | permissions = PermissionCalculator( | |
303 | user_id, scope, user_is_admin, user_inherit_default_permissions, |
|
303 | user_id, scope, user_is_admin, user_inherit_default_permissions, | |
304 | explicit, algo) |
|
304 | explicit, algo) | |
305 | return permissions.calculate() |
|
305 | return permissions.calculate() | |
306 |
|
306 | |||
307 | class PermOrigin: |
|
307 | class PermOrigin: | |
308 | ADMIN = 'superadmin' |
|
308 | ADMIN = 'superadmin' | |
309 |
|
309 | |||
310 | REPO_USER = 'user:%s' |
|
310 | REPO_USER = 'user:%s' | |
311 | REPO_USERGROUP = 'usergroup:%s' |
|
311 | REPO_USERGROUP = 'usergroup:%s' | |
312 | REPO_OWNER = 'repo.owner' |
|
312 | REPO_OWNER = 'repo.owner' | |
313 | REPO_DEFAULT = 'repo.default' |
|
313 | REPO_DEFAULT = 'repo.default' | |
314 | REPO_PRIVATE = 'repo.private' |
|
314 | REPO_PRIVATE = 'repo.private' | |
315 |
|
315 | |||
316 | REPOGROUP_USER = 'user:%s' |
|
316 | REPOGROUP_USER = 'user:%s' | |
317 | REPOGROUP_USERGROUP = 'usergroup:%s' |
|
317 | REPOGROUP_USERGROUP = 'usergroup:%s' | |
318 | REPOGROUP_OWNER = 'group.owner' |
|
318 | REPOGROUP_OWNER = 'group.owner' | |
319 | REPOGROUP_DEFAULT = 'group.default' |
|
319 | REPOGROUP_DEFAULT = 'group.default' | |
320 |
|
320 | |||
321 | USERGROUP_USER = 'user:%s' |
|
321 | USERGROUP_USER = 'user:%s' | |
322 | USERGROUP_USERGROUP = 'usergroup:%s' |
|
322 | USERGROUP_USERGROUP = 'usergroup:%s' | |
323 | USERGROUP_OWNER = 'usergroup.owner' |
|
323 | USERGROUP_OWNER = 'usergroup.owner' | |
324 | USERGROUP_DEFAULT = 'usergroup.default' |
|
324 | USERGROUP_DEFAULT = 'usergroup.default' | |
325 |
|
325 | |||
326 |
|
326 | |||
327 | class PermOriginDict(dict): |
|
327 | class PermOriginDict(dict): | |
328 | """ |
|
328 | """ | |
329 | A special dict used for tracking permissions along with their origins. |
|
329 | A special dict used for tracking permissions along with their origins. | |
330 |
|
330 | |||
331 | `__setitem__` has been overridden to expect a tuple(perm, origin) |
|
331 | `__setitem__` has been overridden to expect a tuple(perm, origin) | |
332 | `__getitem__` will return only the perm |
|
332 | `__getitem__` will return only the perm | |
333 | `.perm_origin_stack` will return the stack of (perm, origin) set per key |
|
333 | `.perm_origin_stack` will return the stack of (perm, origin) set per key | |
334 |
|
334 | |||
335 | >>> perms = PermOriginDict() |
|
335 | >>> perms = PermOriginDict() | |
336 | >>> perms['resource'] = 'read', 'default' |
|
336 | >>> perms['resource'] = 'read', 'default' | |
337 | >>> perms['resource'] |
|
337 | >>> perms['resource'] | |
338 | 'read' |
|
338 | 'read' | |
339 | >>> perms['resource'] = 'write', 'admin' |
|
339 | >>> perms['resource'] = 'write', 'admin' | |
340 | >>> perms['resource'] |
|
340 | >>> perms['resource'] | |
341 | 'write' |
|
341 | 'write' | |
342 | >>> perms.perm_origin_stack |
|
342 | >>> perms.perm_origin_stack | |
343 | {'resource': [('read', 'default'), ('write', 'admin')]} |
|
343 | {'resource': [('read', 'default'), ('write', 'admin')]} | |
344 | """ |
|
344 | """ | |
345 |
|
345 | |||
346 |
|
346 | |||
347 | def __init__(self, *args, **kw): |
|
347 | def __init__(self, *args, **kw): | |
348 | dict.__init__(self, *args, **kw) |
|
348 | dict.__init__(self, *args, **kw) | |
349 | self.perm_origin_stack = {} |
|
349 | self.perm_origin_stack = {} | |
350 |
|
350 | |||
351 | def __setitem__(self, key, (perm, origin)): |
|
351 | def __setitem__(self, key, (perm, origin)): | |
352 | self.perm_origin_stack.setdefault(key, []).append((perm, origin)) |
|
352 | self.perm_origin_stack.setdefault(key, []).append((perm, origin)) | |
353 | dict.__setitem__(self, key, perm) |
|
353 | dict.__setitem__(self, key, perm) | |
354 |
|
354 | |||
355 |
|
355 | |||
356 | class PermissionCalculator(object): |
|
356 | class PermissionCalculator(object): | |
357 |
|
357 | |||
358 | def __init__( |
|
358 | def __init__( | |
359 | self, user_id, scope, user_is_admin, |
|
359 | self, user_id, scope, user_is_admin, | |
360 | user_inherit_default_permissions, explicit, algo): |
|
360 | user_inherit_default_permissions, explicit, algo): | |
361 | self.user_id = user_id |
|
361 | self.user_id = user_id | |
362 | self.user_is_admin = user_is_admin |
|
362 | self.user_is_admin = user_is_admin | |
363 | self.inherit_default_permissions = user_inherit_default_permissions |
|
363 | self.inherit_default_permissions = user_inherit_default_permissions | |
364 | self.explicit = explicit |
|
364 | self.explicit = explicit | |
365 | self.algo = algo |
|
365 | self.algo = algo | |
366 |
|
366 | |||
367 | scope = scope or {} |
|
367 | scope = scope or {} | |
368 | self.scope_repo_id = scope.get('repo_id') |
|
368 | self.scope_repo_id = scope.get('repo_id') | |
369 | self.scope_repo_group_id = scope.get('repo_group_id') |
|
369 | self.scope_repo_group_id = scope.get('repo_group_id') | |
370 | self.scope_user_group_id = scope.get('user_group_id') |
|
370 | self.scope_user_group_id = scope.get('user_group_id') | |
371 |
|
371 | |||
372 | self.default_user_id = User.get_default_user(cache=True).user_id |
|
372 | self.default_user_id = User.get_default_user(cache=True).user_id | |
373 |
|
373 | |||
374 | self.permissions_repositories = PermOriginDict() |
|
374 | self.permissions_repositories = PermOriginDict() | |
375 | self.permissions_repository_groups = PermOriginDict() |
|
375 | self.permissions_repository_groups = PermOriginDict() | |
376 | self.permissions_user_groups = PermOriginDict() |
|
376 | self.permissions_user_groups = PermOriginDict() | |
377 | self.permissions_global = set() |
|
377 | self.permissions_global = set() | |
378 |
|
378 | |||
379 | self.default_repo_perms = Permission.get_default_repo_perms( |
|
379 | self.default_repo_perms = Permission.get_default_repo_perms( | |
380 | self.default_user_id, self.scope_repo_id) |
|
380 | self.default_user_id, self.scope_repo_id) | |
381 | self.default_repo_groups_perms = Permission.get_default_group_perms( |
|
381 | self.default_repo_groups_perms = Permission.get_default_group_perms( | |
382 | self.default_user_id, self.scope_repo_group_id) |
|
382 | self.default_user_id, self.scope_repo_group_id) | |
383 | self.default_user_group_perms = \ |
|
383 | self.default_user_group_perms = \ | |
384 | Permission.get_default_user_group_perms( |
|
384 | Permission.get_default_user_group_perms( | |
385 | self.default_user_id, self.scope_user_group_id) |
|
385 | self.default_user_id, self.scope_user_group_id) | |
386 |
|
386 | |||
387 | def calculate(self): |
|
387 | def calculate(self): | |
388 | if self.user_is_admin: |
|
388 | if self.user_is_admin: | |
389 | return self._admin_permissions() |
|
389 | return self._admin_permissions() | |
390 |
|
390 | |||
391 | self._calculate_global_default_permissions() |
|
391 | self._calculate_global_default_permissions() | |
392 | self._calculate_global_permissions() |
|
392 | self._calculate_global_permissions() | |
393 | self._calculate_default_permissions() |
|
393 | self._calculate_default_permissions() | |
394 | self._calculate_repository_permissions() |
|
394 | self._calculate_repository_permissions() | |
395 | self._calculate_repository_group_permissions() |
|
395 | self._calculate_repository_group_permissions() | |
396 | self._calculate_user_group_permissions() |
|
396 | self._calculate_user_group_permissions() | |
397 | return self._permission_structure() |
|
397 | return self._permission_structure() | |
398 |
|
398 | |||
399 | def _admin_permissions(self): |
|
399 | def _admin_permissions(self): | |
400 | """ |
|
400 | """ | |
401 | admin user have all default rights for repositories |
|
401 | admin user have all default rights for repositories | |
402 | and groups set to admin |
|
402 | and groups set to admin | |
403 | """ |
|
403 | """ | |
404 | self.permissions_global.add('hg.admin') |
|
404 | self.permissions_global.add('hg.admin') | |
405 | self.permissions_global.add('hg.create.write_on_repogroup.true') |
|
405 | self.permissions_global.add('hg.create.write_on_repogroup.true') | |
406 |
|
406 | |||
407 | # repositories |
|
407 | # repositories | |
408 | for perm in self.default_repo_perms: |
|
408 | for perm in self.default_repo_perms: | |
409 | r_k = perm.UserRepoToPerm.repository.repo_name |
|
409 | r_k = perm.UserRepoToPerm.repository.repo_name | |
410 | p = 'repository.admin' |
|
410 | p = 'repository.admin' | |
411 | self.permissions_repositories[r_k] = p, PermOrigin.ADMIN |
|
411 | self.permissions_repositories[r_k] = p, PermOrigin.ADMIN | |
412 |
|
412 | |||
413 | # repository groups |
|
413 | # repository groups | |
414 | for perm in self.default_repo_groups_perms: |
|
414 | for perm in self.default_repo_groups_perms: | |
415 | rg_k = perm.UserRepoGroupToPerm.group.group_name |
|
415 | rg_k = perm.UserRepoGroupToPerm.group.group_name | |
416 | p = 'group.admin' |
|
416 | p = 'group.admin' | |
417 | self.permissions_repository_groups[rg_k] = p, PermOrigin.ADMIN |
|
417 | self.permissions_repository_groups[rg_k] = p, PermOrigin.ADMIN | |
418 |
|
418 | |||
419 | # user groups |
|
419 | # user groups | |
420 | for perm in self.default_user_group_perms: |
|
420 | for perm in self.default_user_group_perms: | |
421 | u_k = perm.UserUserGroupToPerm.user_group.users_group_name |
|
421 | u_k = perm.UserUserGroupToPerm.user_group.users_group_name | |
422 | p = 'usergroup.admin' |
|
422 | p = 'usergroup.admin' | |
423 | self.permissions_user_groups[u_k] = p, PermOrigin.ADMIN |
|
423 | self.permissions_user_groups[u_k] = p, PermOrigin.ADMIN | |
424 |
|
424 | |||
425 | return self._permission_structure() |
|
425 | return self._permission_structure() | |
426 |
|
426 | |||
427 | def _calculate_global_default_permissions(self): |
|
427 | def _calculate_global_default_permissions(self): | |
428 | """ |
|
428 | """ | |
429 | global permissions taken from the default user |
|
429 | global permissions taken from the default user | |
430 | """ |
|
430 | """ | |
431 | default_global_perms = UserToPerm.query()\ |
|
431 | default_global_perms = UserToPerm.query()\ | |
432 | .filter(UserToPerm.user_id == self.default_user_id)\ |
|
432 | .filter(UserToPerm.user_id == self.default_user_id)\ | |
433 | .options(joinedload(UserToPerm.permission)) |
|
433 | .options(joinedload(UserToPerm.permission)) | |
434 |
|
434 | |||
435 | for perm in default_global_perms: |
|
435 | for perm in default_global_perms: | |
436 | self.permissions_global.add(perm.permission.permission_name) |
|
436 | self.permissions_global.add(perm.permission.permission_name) | |
437 |
|
437 | |||
438 | def _calculate_global_permissions(self): |
|
438 | def _calculate_global_permissions(self): | |
439 | """ |
|
439 | """ | |
440 | Set global system permissions with user permissions or permissions |
|
440 | Set global system permissions with user permissions or permissions | |
441 | taken from the user groups of the current user. |
|
441 | taken from the user groups of the current user. | |
442 |
|
442 | |||
443 | The permissions include repo creating, repo group creating, forking |
|
443 | The permissions include repo creating, repo group creating, forking | |
444 | etc. |
|
444 | etc. | |
445 | """ |
|
445 | """ | |
446 |
|
446 | |||
447 | # now we read the defined permissions and overwrite what we have set |
|
447 | # now we read the defined permissions and overwrite what we have set | |
448 | # before those can be configured from groups or users explicitly. |
|
448 | # before those can be configured from groups or users explicitly. | |
449 |
|
449 | |||
450 | # TODO: johbo: This seems to be out of sync, find out the reason |
|
450 | # TODO: johbo: This seems to be out of sync, find out the reason | |
451 | # for the comment below and update it. |
|
451 | # for the comment below and update it. | |
452 |
|
452 | |||
453 | # In case we want to extend this list we should be always in sync with |
|
453 | # In case we want to extend this list we should be always in sync with | |
454 | # User.DEFAULT_USER_PERMISSIONS definitions |
|
454 | # User.DEFAULT_USER_PERMISSIONS definitions | |
455 | _configurable = frozenset([ |
|
455 | _configurable = frozenset([ | |
456 | 'hg.fork.none', 'hg.fork.repository', |
|
456 | 'hg.fork.none', 'hg.fork.repository', | |
457 | 'hg.create.none', 'hg.create.repository', |
|
457 | 'hg.create.none', 'hg.create.repository', | |
458 | 'hg.usergroup.create.false', 'hg.usergroup.create.true', |
|
458 | 'hg.usergroup.create.false', 'hg.usergroup.create.true', | |
459 | 'hg.repogroup.create.false', 'hg.repogroup.create.true', |
|
459 | 'hg.repogroup.create.false', 'hg.repogroup.create.true', | |
460 | 'hg.create.write_on_repogroup.false', |
|
460 | 'hg.create.write_on_repogroup.false', | |
461 | 'hg.create.write_on_repogroup.true', |
|
461 | 'hg.create.write_on_repogroup.true', | |
462 | 'hg.inherit_default_perms.false', 'hg.inherit_default_perms.true' |
|
462 | 'hg.inherit_default_perms.false', 'hg.inherit_default_perms.true' | |
463 | ]) |
|
463 | ]) | |
464 |
|
464 | |||
465 | # USER GROUPS comes first user group global permissions |
|
465 | # USER GROUPS comes first user group global permissions | |
466 | user_perms_from_users_groups = Session().query(UserGroupToPerm)\ |
|
466 | user_perms_from_users_groups = Session().query(UserGroupToPerm)\ | |
467 | .options(joinedload(UserGroupToPerm.permission))\ |
|
467 | .options(joinedload(UserGroupToPerm.permission))\ | |
468 | .join((UserGroupMember, UserGroupToPerm.users_group_id == |
|
468 | .join((UserGroupMember, UserGroupToPerm.users_group_id == | |
469 | UserGroupMember.users_group_id))\ |
|
469 | UserGroupMember.users_group_id))\ | |
470 | .filter(UserGroupMember.user_id == self.user_id)\ |
|
470 | .filter(UserGroupMember.user_id == self.user_id)\ | |
471 | .order_by(UserGroupToPerm.users_group_id)\ |
|
471 | .order_by(UserGroupToPerm.users_group_id)\ | |
472 | .all() |
|
472 | .all() | |
473 |
|
473 | |||
474 | # need to group here by groups since user can be in more than |
|
474 | # need to group here by groups since user can be in more than | |
475 | # one group, so we get all groups |
|
475 | # one group, so we get all groups | |
476 | _explicit_grouped_perms = [ |
|
476 | _explicit_grouped_perms = [ | |
477 | [x, list(y)] for x, y in |
|
477 | [x, list(y)] for x, y in | |
478 | itertools.groupby(user_perms_from_users_groups, |
|
478 | itertools.groupby(user_perms_from_users_groups, | |
479 | lambda _x: _x.users_group)] |
|
479 | lambda _x: _x.users_group)] | |
480 |
|
480 | |||
481 | for gr, perms in _explicit_grouped_perms: |
|
481 | for gr, perms in _explicit_grouped_perms: | |
482 | # since user can be in multiple groups iterate over them and |
|
482 | # since user can be in multiple groups iterate over them and | |
483 | # select the lowest permissions first (more explicit) |
|
483 | # select the lowest permissions first (more explicit) | |
484 | # TODO: marcink: do this^^ |
|
484 | # TODO: marcink: do this^^ | |
485 |
|
485 | |||
486 | # group doesn't inherit default permissions so we actually set them |
|
486 | # group doesn't inherit default permissions so we actually set them | |
487 | if not gr.inherit_default_permissions: |
|
487 | if not gr.inherit_default_permissions: | |
488 | # NEED TO IGNORE all previously set configurable permissions |
|
488 | # NEED TO IGNORE all previously set configurable permissions | |
489 | # and replace them with explicitly set from this user |
|
489 | # and replace them with explicitly set from this user | |
490 | # group permissions |
|
490 | # group permissions | |
491 | self.permissions_global = self.permissions_global.difference( |
|
491 | self.permissions_global = self.permissions_global.difference( | |
492 | _configurable) |
|
492 | _configurable) | |
493 | for perm in perms: |
|
493 | for perm in perms: | |
494 | self.permissions_global.add(perm.permission.permission_name) |
|
494 | self.permissions_global.add(perm.permission.permission_name) | |
495 |
|
495 | |||
496 | # user explicit global permissions |
|
496 | # user explicit global permissions | |
497 | user_perms = Session().query(UserToPerm)\ |
|
497 | user_perms = Session().query(UserToPerm)\ | |
498 | .options(joinedload(UserToPerm.permission))\ |
|
498 | .options(joinedload(UserToPerm.permission))\ | |
499 | .filter(UserToPerm.user_id == self.user_id).all() |
|
499 | .filter(UserToPerm.user_id == self.user_id).all() | |
500 |
|
500 | |||
501 | if not self.inherit_default_permissions: |
|
501 | if not self.inherit_default_permissions: | |
502 | # NEED TO IGNORE all configurable permissions and |
|
502 | # NEED TO IGNORE all configurable permissions and | |
503 | # replace them with explicitly set from this user permissions |
|
503 | # replace them with explicitly set from this user permissions | |
504 | self.permissions_global = self.permissions_global.difference( |
|
504 | self.permissions_global = self.permissions_global.difference( | |
505 | _configurable) |
|
505 | _configurable) | |
506 | for perm in user_perms: |
|
506 | for perm in user_perms: | |
507 | self.permissions_global.add(perm.permission.permission_name) |
|
507 | self.permissions_global.add(perm.permission.permission_name) | |
508 |
|
508 | |||
509 | def _calculate_default_permissions(self): |
|
509 | def _calculate_default_permissions(self): | |
510 | """ |
|
510 | """ | |
511 | Set default user permissions for repositories, repository groups |
|
511 | Set default user permissions for repositories, repository groups | |
512 | taken from the default user. |
|
512 | taken from the default user. | |
513 |
|
513 | |||
514 | Calculate inheritance of object permissions based on what we have now |
|
514 | Calculate inheritance of object permissions based on what we have now | |
515 | in GLOBAL permissions. We check if .false is in GLOBAL since this is |
|
515 | in GLOBAL permissions. We check if .false is in GLOBAL since this is | |
516 | explicitly set. Inherit is the opposite of .false being there. |
|
516 | explicitly set. Inherit is the opposite of .false being there. | |
517 |
|
517 | |||
518 | .. note:: |
|
518 | .. note:: | |
519 |
|
519 | |||
520 | the syntax is little bit odd but what we need to check here is |
|
520 | the syntax is little bit odd but what we need to check here is | |
521 | the opposite of .false permission being in the list so even for |
|
521 | the opposite of .false permission being in the list so even for | |
522 | inconsistent state when both .true/.false is there |
|
522 | inconsistent state when both .true/.false is there | |
523 | .false is more important |
|
523 | .false is more important | |
524 |
|
524 | |||
525 | """ |
|
525 | """ | |
526 | user_inherit_object_permissions = not ('hg.inherit_default_perms.false' |
|
526 | user_inherit_object_permissions = not ('hg.inherit_default_perms.false' | |
527 | in self.permissions_global) |
|
527 | in self.permissions_global) | |
528 |
|
528 | |||
529 | # defaults for repositories, taken from `default` user permissions |
|
529 | # defaults for repositories, taken from `default` user permissions | |
530 | # on given repo |
|
530 | # on given repo | |
531 | for perm in self.default_repo_perms: |
|
531 | for perm in self.default_repo_perms: | |
532 | r_k = perm.UserRepoToPerm.repository.repo_name |
|
532 | r_k = perm.UserRepoToPerm.repository.repo_name | |
533 | o = PermOrigin.REPO_DEFAULT |
|
533 | o = PermOrigin.REPO_DEFAULT | |
534 | if perm.Repository.private and not ( |
|
534 | if perm.Repository.private and not ( | |
535 | perm.Repository.user_id == self.user_id): |
|
535 | perm.Repository.user_id == self.user_id): | |
536 | # disable defaults for private repos, |
|
536 | # disable defaults for private repos, | |
537 | p = 'repository.none' |
|
537 | p = 'repository.none' | |
538 | o = PermOrigin.REPO_PRIVATE |
|
538 | o = PermOrigin.REPO_PRIVATE | |
539 | elif perm.Repository.user_id == self.user_id: |
|
539 | elif perm.Repository.user_id == self.user_id: | |
540 | # set admin if owner |
|
540 | # set admin if owner | |
541 | p = 'repository.admin' |
|
541 | p = 'repository.admin' | |
542 | o = PermOrigin.REPO_OWNER |
|
542 | o = PermOrigin.REPO_OWNER | |
543 | else: |
|
543 | else: | |
544 | p = perm.Permission.permission_name |
|
544 | p = perm.Permission.permission_name | |
545 | # if we decide this user isn't inheriting permissions from |
|
545 | # if we decide this user isn't inheriting permissions from | |
546 | # default user we set him to .none so only explicit |
|
546 | # default user we set him to .none so only explicit | |
547 | # permissions work |
|
547 | # permissions work | |
548 | if not user_inherit_object_permissions: |
|
548 | if not user_inherit_object_permissions: | |
549 | p = 'repository.none' |
|
549 | p = 'repository.none' | |
550 | self.permissions_repositories[r_k] = p, o |
|
550 | self.permissions_repositories[r_k] = p, o | |
551 |
|
551 | |||
552 | # defaults for repository groups taken from `default` user permission |
|
552 | # defaults for repository groups taken from `default` user permission | |
553 | # on given group |
|
553 | # on given group | |
554 | for perm in self.default_repo_groups_perms: |
|
554 | for perm in self.default_repo_groups_perms: | |
555 | rg_k = perm.UserRepoGroupToPerm.group.group_name |
|
555 | rg_k = perm.UserRepoGroupToPerm.group.group_name | |
556 | o = PermOrigin.REPOGROUP_DEFAULT |
|
556 | o = PermOrigin.REPOGROUP_DEFAULT | |
557 | if perm.RepoGroup.user_id == self.user_id: |
|
557 | if perm.RepoGroup.user_id == self.user_id: | |
558 | # set admin if owner |
|
558 | # set admin if owner | |
559 | p = 'group.admin' |
|
559 | p = 'group.admin' | |
560 | o = PermOrigin.REPOGROUP_OWNER |
|
560 | o = PermOrigin.REPOGROUP_OWNER | |
561 | else: |
|
561 | else: | |
562 | p = perm.Permission.permission_name |
|
562 | p = perm.Permission.permission_name | |
563 |
|
563 | |||
564 | # if we decide this user isn't inheriting permissions from default |
|
564 | # if we decide this user isn't inheriting permissions from default | |
565 | # user we set him to .none so only explicit permissions work |
|
565 | # user we set him to .none so only explicit permissions work | |
566 | if not user_inherit_object_permissions: |
|
566 | if not user_inherit_object_permissions: | |
567 | p = 'group.none' |
|
567 | p = 'group.none' | |
568 | self.permissions_repository_groups[rg_k] = p, o |
|
568 | self.permissions_repository_groups[rg_k] = p, o | |
569 |
|
569 | |||
570 | # defaults for user groups taken from `default` user permission |
|
570 | # defaults for user groups taken from `default` user permission | |
571 | # on given user group |
|
571 | # on given user group | |
572 | for perm in self.default_user_group_perms: |
|
572 | for perm in self.default_user_group_perms: | |
573 | u_k = perm.UserUserGroupToPerm.user_group.users_group_name |
|
573 | u_k = perm.UserUserGroupToPerm.user_group.users_group_name | |
574 | p = perm.Permission.permission_name |
|
|||
575 | o = PermOrigin.USERGROUP_DEFAULT |
|
574 | o = PermOrigin.USERGROUP_DEFAULT | |
|
575 | if perm.UserGroup.user_id == self.user_id: | |||
|
576 | # set admin if owner | |||
|
577 | p = 'usergroup.admin' | |||
|
578 | o = PermOrigin.USERGROUP_OWNER | |||
|
579 | else: | |||
|
580 | p = perm.Permission.permission_name | |||
|
581 | ||||
576 | # if we decide this user isn't inheriting permissions from default |
|
582 | # if we decide this user isn't inheriting permissions from default | |
577 | # user we set him to .none so only explicit permissions work |
|
583 | # user we set him to .none so only explicit permissions work | |
578 | if not user_inherit_object_permissions: |
|
584 | if not user_inherit_object_permissions: | |
579 | p = 'usergroup.none' |
|
585 | p = 'usergroup.none' | |
580 | self.permissions_user_groups[u_k] = p, o |
|
586 | self.permissions_user_groups[u_k] = p, o | |
581 |
|
587 | |||
582 | def _calculate_repository_permissions(self): |
|
588 | def _calculate_repository_permissions(self): | |
583 | """ |
|
589 | """ | |
584 | Repository permissions for the current user. |
|
590 | Repository permissions for the current user. | |
585 |
|
591 | |||
586 | Check if the user is part of user groups for this repository and |
|
592 | Check if the user is part of user groups for this repository and | |
587 | fill in the permission from it. `_choose_permission` decides of which |
|
593 | fill in the permission from it. `_choose_permission` decides of which | |
588 | permission should be selected based on selected method. |
|
594 | permission should be selected based on selected method. | |
589 | """ |
|
595 | """ | |
590 |
|
596 | |||
591 | # user group for repositories permissions |
|
597 | # user group for repositories permissions | |
592 | user_repo_perms_from_user_group = Permission\ |
|
598 | user_repo_perms_from_user_group = Permission\ | |
593 | .get_default_repo_perms_from_user_group( |
|
599 | .get_default_repo_perms_from_user_group( | |
594 | self.user_id, self.scope_repo_id) |
|
600 | self.user_id, self.scope_repo_id) | |
595 |
|
601 | |||
596 | multiple_counter = collections.defaultdict(int) |
|
602 | multiple_counter = collections.defaultdict(int) | |
597 | for perm in user_repo_perms_from_user_group: |
|
603 | for perm in user_repo_perms_from_user_group: | |
598 | r_k = perm.UserGroupRepoToPerm.repository.repo_name |
|
604 | r_k = perm.UserGroupRepoToPerm.repository.repo_name | |
599 | ug_k = perm.UserGroupRepoToPerm.users_group.users_group_name |
|
605 | ug_k = perm.UserGroupRepoToPerm.users_group.users_group_name | |
600 | multiple_counter[r_k] += 1 |
|
606 | multiple_counter[r_k] += 1 | |
601 | p = perm.Permission.permission_name |
|
607 | p = perm.Permission.permission_name | |
602 | o = PermOrigin.REPO_USERGROUP % ug_k |
|
608 | o = PermOrigin.REPO_USERGROUP % ug_k | |
603 |
|
609 | |||
604 | if perm.Repository.user_id == self.user_id: |
|
610 | if perm.Repository.user_id == self.user_id: | |
605 | # set admin if owner |
|
611 | # set admin if owner | |
606 | p = 'repository.admin' |
|
612 | p = 'repository.admin' | |
607 | o = PermOrigin.REPO_OWNER |
|
613 | o = PermOrigin.REPO_OWNER | |
608 | else: |
|
614 | else: | |
609 | if multiple_counter[r_k] > 1: |
|
615 | if multiple_counter[r_k] > 1: | |
610 | cur_perm = self.permissions_repositories[r_k] |
|
616 | cur_perm = self.permissions_repositories[r_k] | |
611 | p = self._choose_permission(p, cur_perm) |
|
617 | p = self._choose_permission(p, cur_perm) | |
612 | self.permissions_repositories[r_k] = p, o |
|
618 | self.permissions_repositories[r_k] = p, o | |
613 |
|
619 | |||
614 | # user explicit permissions for repositories, overrides any specified |
|
620 | # user explicit permissions for repositories, overrides any specified | |
615 | # by the group permission |
|
621 | # by the group permission | |
616 | user_repo_perms = Permission.get_default_repo_perms( |
|
622 | user_repo_perms = Permission.get_default_repo_perms( | |
617 | self.user_id, self.scope_repo_id) |
|
623 | self.user_id, self.scope_repo_id) | |
618 | for perm in user_repo_perms: |
|
624 | for perm in user_repo_perms: | |
619 | r_k = perm.UserRepoToPerm.repository.repo_name |
|
625 | r_k = perm.UserRepoToPerm.repository.repo_name | |
620 | o = PermOrigin.REPO_USER % perm.UserRepoToPerm.user.username |
|
626 | o = PermOrigin.REPO_USER % perm.UserRepoToPerm.user.username | |
621 | # set admin if owner |
|
627 | # set admin if owner | |
622 | if perm.Repository.user_id == self.user_id: |
|
628 | if perm.Repository.user_id == self.user_id: | |
623 | p = 'repository.admin' |
|
629 | p = 'repository.admin' | |
624 | o = PermOrigin.REPO_OWNER |
|
630 | o = PermOrigin.REPO_OWNER | |
625 | else: |
|
631 | else: | |
626 | p = perm.Permission.permission_name |
|
632 | p = perm.Permission.permission_name | |
627 | if not self.explicit: |
|
633 | if not self.explicit: | |
628 | cur_perm = self.permissions_repositories.get( |
|
634 | cur_perm = self.permissions_repositories.get( | |
629 | r_k, 'repository.none') |
|
635 | r_k, 'repository.none') | |
630 | p = self._choose_permission(p, cur_perm) |
|
636 | p = self._choose_permission(p, cur_perm) | |
631 | self.permissions_repositories[r_k] = p, o |
|
637 | self.permissions_repositories[r_k] = p, o | |
632 |
|
638 | |||
633 | def _calculate_repository_group_permissions(self): |
|
639 | def _calculate_repository_group_permissions(self): | |
634 | """ |
|
640 | """ | |
635 | Repository group permissions for the current user. |
|
641 | Repository group permissions for the current user. | |
636 |
|
642 | |||
637 | Check if the user is part of user groups for repository groups and |
|
643 | Check if the user is part of user groups for repository groups and | |
638 | fill in the permissions from it. `_choose_permmission` decides of which |
|
644 | fill in the permissions from it. `_choose_permmission` decides of which | |
639 | permission should be selected based on selected method. |
|
645 | permission should be selected based on selected method. | |
640 | """ |
|
646 | """ | |
641 | # user group for repo groups permissions |
|
647 | # user group for repo groups permissions | |
642 | user_repo_group_perms_from_user_group = Permission\ |
|
648 | user_repo_group_perms_from_user_group = Permission\ | |
643 | .get_default_group_perms_from_user_group( |
|
649 | .get_default_group_perms_from_user_group( | |
644 | self.user_id, self.scope_repo_group_id) |
|
650 | self.user_id, self.scope_repo_group_id) | |
645 |
|
651 | |||
646 | multiple_counter = collections.defaultdict(int) |
|
652 | multiple_counter = collections.defaultdict(int) | |
647 | for perm in user_repo_group_perms_from_user_group: |
|
653 | for perm in user_repo_group_perms_from_user_group: | |
648 | g_k = perm.UserGroupRepoGroupToPerm.group.group_name |
|
654 | g_k = perm.UserGroupRepoGroupToPerm.group.group_name | |
649 | ug_k = perm.UserGroupRepoGroupToPerm.users_group.users_group_name |
|
655 | ug_k = perm.UserGroupRepoGroupToPerm.users_group.users_group_name | |
650 | o = PermOrigin.REPOGROUP_USERGROUP % ug_k |
|
656 | o = PermOrigin.REPOGROUP_USERGROUP % ug_k | |
651 | multiple_counter[g_k] += 1 |
|
657 | multiple_counter[g_k] += 1 | |
652 | p = perm.Permission.permission_name |
|
658 | p = perm.Permission.permission_name | |
653 | if perm.RepoGroup.user_id == self.user_id: |
|
659 | if perm.RepoGroup.user_id == self.user_id: | |
654 | # set admin if owner |
|
660 | # set admin if owner, even for member of other user group | |
655 | p = 'group.admin' |
|
661 | p = 'group.admin' | |
656 | o = PermOrigin.REPOGROUP_OWNER |
|
662 | o = PermOrigin.REPOGROUP_OWNER | |
657 | else: |
|
663 | else: | |
658 | if multiple_counter[g_k] > 1: |
|
664 | if multiple_counter[g_k] > 1: | |
659 | cur_perm = self.permissions_repository_groups[g_k] |
|
665 | cur_perm = self.permissions_repository_groups[g_k] | |
660 | p = self._choose_permission(p, cur_perm) |
|
666 | p = self._choose_permission(p, cur_perm) | |
661 | self.permissions_repository_groups[g_k] = p, o |
|
667 | self.permissions_repository_groups[g_k] = p, o | |
662 |
|
668 | |||
663 | # user explicit permissions for repository groups |
|
669 | # user explicit permissions for repository groups | |
664 | user_repo_groups_perms = Permission.get_default_group_perms( |
|
670 | user_repo_groups_perms = Permission.get_default_group_perms( | |
665 | self.user_id, self.scope_repo_group_id) |
|
671 | self.user_id, self.scope_repo_group_id) | |
666 | for perm in user_repo_groups_perms: |
|
672 | for perm in user_repo_groups_perms: | |
667 | rg_k = perm.UserRepoGroupToPerm.group.group_name |
|
673 | rg_k = perm.UserRepoGroupToPerm.group.group_name | |
668 | u_k = perm.UserRepoGroupToPerm.user.username |
|
674 | u_k = perm.UserRepoGroupToPerm.user.username | |
669 | o = PermOrigin.REPOGROUP_USER % u_k |
|
675 | o = PermOrigin.REPOGROUP_USER % u_k | |
670 |
|
676 | |||
671 | if perm.RepoGroup.user_id == self.user_id: |
|
677 | if perm.RepoGroup.user_id == self.user_id: | |
672 | # set admin if owner |
|
678 | # set admin if owner | |
673 | p = 'group.admin' |
|
679 | p = 'group.admin' | |
674 | o = PermOrigin.REPOGROUP_OWNER |
|
680 | o = PermOrigin.REPOGROUP_OWNER | |
675 | else: |
|
681 | else: | |
676 | p = perm.Permission.permission_name |
|
682 | p = perm.Permission.permission_name | |
677 | if not self.explicit: |
|
683 | if not self.explicit: | |
678 | cur_perm = self.permissions_repository_groups.get( |
|
684 | cur_perm = self.permissions_repository_groups.get( | |
679 | rg_k, 'group.none') |
|
685 | rg_k, 'group.none') | |
680 | p = self._choose_permission(p, cur_perm) |
|
686 | p = self._choose_permission(p, cur_perm) | |
681 | self.permissions_repository_groups[rg_k] = p, o |
|
687 | self.permissions_repository_groups[rg_k] = p, o | |
682 |
|
688 | |||
683 | def _calculate_user_group_permissions(self): |
|
689 | def _calculate_user_group_permissions(self): | |
684 | """ |
|
690 | """ | |
685 | User group permissions for the current user. |
|
691 | User group permissions for the current user. | |
686 | """ |
|
692 | """ | |
687 | # user group for user group permissions |
|
693 | # user group for user group permissions | |
688 | user_group_from_user_group = Permission\ |
|
694 | user_group_from_user_group = Permission\ | |
689 | .get_default_user_group_perms_from_user_group( |
|
695 | .get_default_user_group_perms_from_user_group( | |
690 |
self.user_id, self.scope_ |
|
696 | self.user_id, self.scope_user_group_id) | |
691 |
|
697 | |||
692 | multiple_counter = collections.defaultdict(int) |
|
698 | multiple_counter = collections.defaultdict(int) | |
693 | for perm in user_group_from_user_group: |
|
699 | for perm in user_group_from_user_group: | |
694 | g_k = perm.UserGroupUserGroupToPerm\ |
|
700 | g_k = perm.UserGroupUserGroupToPerm\ | |
695 | .target_user_group.users_group_name |
|
701 | .target_user_group.users_group_name | |
696 | u_k = perm.UserGroupUserGroupToPerm\ |
|
702 | u_k = perm.UserGroupUserGroupToPerm\ | |
697 | .user_group.users_group_name |
|
703 | .user_group.users_group_name | |
698 | o = PermOrigin.USERGROUP_USERGROUP % u_k |
|
704 | o = PermOrigin.USERGROUP_USERGROUP % u_k | |
699 | multiple_counter[g_k] += 1 |
|
705 | multiple_counter[g_k] += 1 | |
700 | p = perm.Permission.permission_name |
|
706 | p = perm.Permission.permission_name | |
701 | if multiple_counter[g_k] > 1: |
|
707 | ||
702 | cur_perm = self.permissions_user_groups[g_k] |
|
708 | if perm.UserGroup.user_id == self.user_id: | |
703 | p = self._choose_permission(p, cur_perm) |
|
709 | # set admin if owner, even for member of other user group | |
|
710 | p = 'usergroup.admin' | |||
|
711 | o = PermOrigin.USERGROUP_OWNER | |||
|
712 | else: | |||
|
713 | if multiple_counter[g_k] > 1: | |||
|
714 | cur_perm = self.permissions_user_groups[g_k] | |||
|
715 | p = self._choose_permission(p, cur_perm) | |||
704 | self.permissions_user_groups[g_k] = p, o |
|
716 | self.permissions_user_groups[g_k] = p, o | |
705 |
|
717 | |||
706 | # user explicit permission for user groups |
|
718 | # user explicit permission for user groups | |
707 | user_user_groups_perms = Permission.get_default_user_group_perms( |
|
719 | user_user_groups_perms = Permission.get_default_user_group_perms( | |
708 | self.user_id, self.scope_user_group_id) |
|
720 | self.user_id, self.scope_user_group_id) | |
709 | for perm in user_user_groups_perms: |
|
721 | for perm in user_user_groups_perms: | |
710 | ug_k = perm.UserUserGroupToPerm.user_group.users_group_name |
|
722 | ug_k = perm.UserUserGroupToPerm.user_group.users_group_name | |
711 | u_k = perm.UserUserGroupToPerm.user.username |
|
723 | u_k = perm.UserUserGroupToPerm.user.username | |
712 | p = perm.Permission.permission_name |
|
|||
713 | o = PermOrigin.USERGROUP_USER % u_k |
|
724 | o = PermOrigin.USERGROUP_USER % u_k | |
714 | if not self.explicit: |
|
725 | ||
715 | cur_perm = self.permissions_user_groups.get( |
|
726 | if perm.UserGroup.user_id == self.user_id: | |
716 | ug_k, 'usergroup.none') |
|
727 | # set admin if owner | |
717 | p = self._choose_permission(p, cur_perm) |
|
728 | p = 'usergroup.admin' | |
|
729 | o = PermOrigin.USERGROUP_OWNER | |||
|
730 | else: | |||
|
731 | p = perm.Permission.permission_name | |||
|
732 | if not self.explicit: | |||
|
733 | cur_perm = self.permissions_user_groups.get( | |||
|
734 | ug_k, 'usergroup.none') | |||
|
735 | p = self._choose_permission(p, cur_perm) | |||
718 | self.permissions_user_groups[ug_k] = p, o |
|
736 | self.permissions_user_groups[ug_k] = p, o | |
719 |
|
737 | |||
720 | def _choose_permission(self, new_perm, cur_perm): |
|
738 | def _choose_permission(self, new_perm, cur_perm): | |
721 | new_perm_val = Permission.PERM_WEIGHTS[new_perm] |
|
739 | new_perm_val = Permission.PERM_WEIGHTS[new_perm] | |
722 | cur_perm_val = Permission.PERM_WEIGHTS[cur_perm] |
|
740 | cur_perm_val = Permission.PERM_WEIGHTS[cur_perm] | |
723 | if self.algo == 'higherwin': |
|
741 | if self.algo == 'higherwin': | |
724 | if new_perm_val > cur_perm_val: |
|
742 | if new_perm_val > cur_perm_val: | |
725 | return new_perm |
|
743 | return new_perm | |
726 | return cur_perm |
|
744 | return cur_perm | |
727 | elif self.algo == 'lowerwin': |
|
745 | elif self.algo == 'lowerwin': | |
728 | if new_perm_val < cur_perm_val: |
|
746 | if new_perm_val < cur_perm_val: | |
729 | return new_perm |
|
747 | return new_perm | |
730 | return cur_perm |
|
748 | return cur_perm | |
731 |
|
749 | |||
732 | def _permission_structure(self): |
|
750 | def _permission_structure(self): | |
733 | return { |
|
751 | return { | |
734 | 'global': self.permissions_global, |
|
752 | 'global': self.permissions_global, | |
735 | 'repositories': self.permissions_repositories, |
|
753 | 'repositories': self.permissions_repositories, | |
736 | 'repositories_groups': self.permissions_repository_groups, |
|
754 | 'repositories_groups': self.permissions_repository_groups, | |
737 | 'user_groups': self.permissions_user_groups, |
|
755 | 'user_groups': self.permissions_user_groups, | |
738 | } |
|
756 | } | |
739 |
|
757 | |||
740 |
|
758 | |||
741 | def allowed_auth_token_access(controller_name, whitelist=None, auth_token=None): |
|
759 | def allowed_auth_token_access(controller_name, whitelist=None, auth_token=None): | |
742 | """ |
|
760 | """ | |
743 | Check if given controller_name is in whitelist of auth token access |
|
761 | Check if given controller_name is in whitelist of auth token access | |
744 | """ |
|
762 | """ | |
745 | if not whitelist: |
|
763 | if not whitelist: | |
746 | from rhodecode import CONFIG |
|
764 | from rhodecode import CONFIG | |
747 | whitelist = aslist( |
|
765 | whitelist = aslist( | |
748 | CONFIG.get('api_access_controllers_whitelist'), sep=',') |
|
766 | CONFIG.get('api_access_controllers_whitelist'), sep=',') | |
749 | log.debug( |
|
767 | log.debug( | |
750 | 'Allowed controllers for AUTH TOKEN access: %s' % (whitelist,)) |
|
768 | 'Allowed controllers for AUTH TOKEN access: %s' % (whitelist,)) | |
751 |
|
769 | |||
752 | auth_token_access_valid = False |
|
770 | auth_token_access_valid = False | |
753 | for entry in whitelist: |
|
771 | for entry in whitelist: | |
754 | if fnmatch.fnmatch(controller_name, entry): |
|
772 | if fnmatch.fnmatch(controller_name, entry): | |
755 | auth_token_access_valid = True |
|
773 | auth_token_access_valid = True | |
756 | break |
|
774 | break | |
757 |
|
775 | |||
758 | if auth_token_access_valid: |
|
776 | if auth_token_access_valid: | |
759 | log.debug('controller:%s matches entry in whitelist' |
|
777 | log.debug('controller:%s matches entry in whitelist' | |
760 | % (controller_name,)) |
|
778 | % (controller_name,)) | |
761 | else: |
|
779 | else: | |
762 | msg = ('controller: %s does *NOT* match any entry in whitelist' |
|
780 | msg = ('controller: %s does *NOT* match any entry in whitelist' | |
763 | % (controller_name,)) |
|
781 | % (controller_name,)) | |
764 | if auth_token: |
|
782 | if auth_token: | |
765 | # if we use auth token key and don't have access it's a warning |
|
783 | # if we use auth token key and don't have access it's a warning | |
766 | log.warning(msg) |
|
784 | log.warning(msg) | |
767 | else: |
|
785 | else: | |
768 | log.debug(msg) |
|
786 | log.debug(msg) | |
769 |
|
787 | |||
770 | return auth_token_access_valid |
|
788 | return auth_token_access_valid | |
771 |
|
789 | |||
772 |
|
790 | |||
773 | class AuthUser(object): |
|
791 | class AuthUser(object): | |
774 | """ |
|
792 | """ | |
775 | A simple object that handles all attributes of user in RhodeCode |
|
793 | A simple object that handles all attributes of user in RhodeCode | |
776 |
|
794 | |||
777 | It does lookup based on API key,given user, or user present in session |
|
795 | It does lookup based on API key,given user, or user present in session | |
778 | Then it fills all required information for such user. It also checks if |
|
796 | Then it fills all required information for such user. It also checks if | |
779 | anonymous access is enabled and if so, it returns default user as logged in |
|
797 | anonymous access is enabled and if so, it returns default user as logged in | |
780 | """ |
|
798 | """ | |
781 | GLOBAL_PERMS = [x[0] for x in Permission.PERMS] |
|
799 | GLOBAL_PERMS = [x[0] for x in Permission.PERMS] | |
782 |
|
800 | |||
783 | def __init__(self, user_id=None, api_key=None, username=None, ip_addr=None): |
|
801 | def __init__(self, user_id=None, api_key=None, username=None, ip_addr=None): | |
784 |
|
802 | |||
785 | self.user_id = user_id |
|
803 | self.user_id = user_id | |
786 | self._api_key = api_key |
|
804 | self._api_key = api_key | |
787 |
|
805 | |||
788 | self.api_key = None |
|
806 | self.api_key = None | |
789 | self.feed_token = '' |
|
807 | self.feed_token = '' | |
790 | self.username = username |
|
808 | self.username = username | |
791 | self.ip_addr = ip_addr |
|
809 | self.ip_addr = ip_addr | |
792 | self.name = '' |
|
810 | self.name = '' | |
793 | self.lastname = '' |
|
811 | self.lastname = '' | |
794 | self.email = '' |
|
812 | self.email = '' | |
795 | self.is_authenticated = False |
|
813 | self.is_authenticated = False | |
796 | self.admin = False |
|
814 | self.admin = False | |
797 | self.inherit_default_permissions = False |
|
815 | self.inherit_default_permissions = False | |
798 | self.password = '' |
|
816 | self.password = '' | |
799 |
|
817 | |||
800 | self.anonymous_user = None # propagated on propagate_data |
|
818 | self.anonymous_user = None # propagated on propagate_data | |
801 | self.propagate_data() |
|
819 | self.propagate_data() | |
802 | self._instance = None |
|
820 | self._instance = None | |
803 | self._permissions_scoped_cache = {} # used to bind scoped calculation |
|
821 | self._permissions_scoped_cache = {} # used to bind scoped calculation | |
804 |
|
822 | |||
805 | @LazyProperty |
|
823 | @LazyProperty | |
806 | def permissions(self): |
|
824 | def permissions(self): | |
807 | return self.get_perms(user=self, cache=False) |
|
825 | return self.get_perms(user=self, cache=False) | |
808 |
|
826 | |||
809 | def permissions_with_scope(self, scope): |
|
827 | def permissions_with_scope(self, scope): | |
810 | """ |
|
828 | """ | |
811 | Call the get_perms function with scoped data. The scope in that function |
|
829 | Call the get_perms function with scoped data. The scope in that function | |
812 | narrows the SQL calls to the given ID of objects resulting in fetching |
|
830 | narrows the SQL calls to the given ID of objects resulting in fetching | |
813 | Just particular permission we want to obtain. If scope is an empty dict |
|
831 | Just particular permission we want to obtain. If scope is an empty dict | |
814 | then it basically narrows the scope to GLOBAL permissions only. |
|
832 | then it basically narrows the scope to GLOBAL permissions only. | |
815 |
|
833 | |||
816 | :param scope: dict |
|
834 | :param scope: dict | |
817 | """ |
|
835 | """ | |
818 | if 'repo_name' in scope: |
|
836 | if 'repo_name' in scope: | |
819 | obj = Repository.get_by_repo_name(scope['repo_name']) |
|
837 | obj = Repository.get_by_repo_name(scope['repo_name']) | |
820 | if obj: |
|
838 | if obj: | |
821 | scope['repo_id'] = obj.repo_id |
|
839 | scope['repo_id'] = obj.repo_id | |
822 | _scope = { |
|
840 | _scope = { | |
823 | 'repo_id': -1, |
|
841 | 'repo_id': -1, | |
824 | 'user_group_id': -1, |
|
842 | 'user_group_id': -1, | |
825 | 'repo_group_id': -1, |
|
843 | 'repo_group_id': -1, | |
826 | } |
|
844 | } | |
827 | _scope.update(scope) |
|
845 | _scope.update(scope) | |
828 | cache_key = "_".join(map(safe_str, reduce(lambda a, b: a+b, |
|
846 | cache_key = "_".join(map(safe_str, reduce(lambda a, b: a+b, | |
829 | _scope.items()))) |
|
847 | _scope.items()))) | |
830 | if cache_key not in self._permissions_scoped_cache: |
|
848 | if cache_key not in self._permissions_scoped_cache: | |
831 | # store in cache to mimic how the @LazyProperty works, |
|
849 | # store in cache to mimic how the @LazyProperty works, | |
832 | # the difference here is that we use the unique key calculated |
|
850 | # the difference here is that we use the unique key calculated | |
833 | # from params and values |
|
851 | # from params and values | |
834 | res = self.get_perms(user=self, cache=False, scope=_scope) |
|
852 | res = self.get_perms(user=self, cache=False, scope=_scope) | |
835 | self._permissions_scoped_cache[cache_key] = res |
|
853 | self._permissions_scoped_cache[cache_key] = res | |
836 | return self._permissions_scoped_cache[cache_key] |
|
854 | return self._permissions_scoped_cache[cache_key] | |
837 |
|
855 | |||
838 | def get_instance(self): |
|
856 | def get_instance(self): | |
839 | return User.get(self.user_id) |
|
857 | return User.get(self.user_id) | |
840 |
|
858 | |||
841 | def update_lastactivity(self): |
|
859 | def update_lastactivity(self): | |
842 | if self.user_id: |
|
860 | if self.user_id: | |
843 | User.get(self.user_id).update_lastactivity() |
|
861 | User.get(self.user_id).update_lastactivity() | |
844 |
|
862 | |||
845 | def propagate_data(self): |
|
863 | def propagate_data(self): | |
846 | """ |
|
864 | """ | |
847 | Fills in user data and propagates values to this instance. Maps fetched |
|
865 | Fills in user data and propagates values to this instance. Maps fetched | |
848 | user attributes to this class instance attributes |
|
866 | user attributes to this class instance attributes | |
849 | """ |
|
867 | """ | |
850 | log.debug('starting data propagation for new potential AuthUser') |
|
868 | log.debug('starting data propagation for new potential AuthUser') | |
851 | user_model = UserModel() |
|
869 | user_model = UserModel() | |
852 | anon_user = self.anonymous_user = User.get_default_user(cache=True) |
|
870 | anon_user = self.anonymous_user = User.get_default_user(cache=True) | |
853 | is_user_loaded = False |
|
871 | is_user_loaded = False | |
854 |
|
872 | |||
855 | # lookup by userid |
|
873 | # lookup by userid | |
856 | if self.user_id is not None and self.user_id != anon_user.user_id: |
|
874 | if self.user_id is not None and self.user_id != anon_user.user_id: | |
857 | log.debug('Trying Auth User lookup by USER ID: `%s`' % self.user_id) |
|
875 | log.debug('Trying Auth User lookup by USER ID: `%s`' % self.user_id) | |
858 | is_user_loaded = user_model.fill_data(self, user_id=self.user_id) |
|
876 | is_user_loaded = user_model.fill_data(self, user_id=self.user_id) | |
859 |
|
877 | |||
860 | # try go get user by api key |
|
878 | # try go get user by api key | |
861 | elif self._api_key and self._api_key != anon_user.api_key: |
|
879 | elif self._api_key and self._api_key != anon_user.api_key: | |
862 | log.debug('Trying Auth User lookup by API KEY: `%s`' % self._api_key) |
|
880 | log.debug('Trying Auth User lookup by API KEY: `%s`' % self._api_key) | |
863 | is_user_loaded = user_model.fill_data(self, api_key=self._api_key) |
|
881 | is_user_loaded = user_model.fill_data(self, api_key=self._api_key) | |
864 |
|
882 | |||
865 | # lookup by username |
|
883 | # lookup by username | |
866 | elif self.username: |
|
884 | elif self.username: | |
867 | log.debug('Trying Auth User lookup by USER NAME: `%s`' % self.username) |
|
885 | log.debug('Trying Auth User lookup by USER NAME: `%s`' % self.username) | |
868 | is_user_loaded = user_model.fill_data(self, username=self.username) |
|
886 | is_user_loaded = user_model.fill_data(self, username=self.username) | |
869 | else: |
|
887 | else: | |
870 | log.debug('No data in %s that could been used to log in' % self) |
|
888 | log.debug('No data in %s that could been used to log in' % self) | |
871 |
|
889 | |||
872 | if not is_user_loaded: |
|
890 | if not is_user_loaded: | |
873 | log.debug('Failed to load user. Fallback to default user') |
|
891 | log.debug('Failed to load user. Fallback to default user') | |
874 | # if we cannot authenticate user try anonymous |
|
892 | # if we cannot authenticate user try anonymous | |
875 | if anon_user.active: |
|
893 | if anon_user.active: | |
876 | user_model.fill_data(self, user_id=anon_user.user_id) |
|
894 | user_model.fill_data(self, user_id=anon_user.user_id) | |
877 | # then we set this user is logged in |
|
895 | # then we set this user is logged in | |
878 | self.is_authenticated = True |
|
896 | self.is_authenticated = True | |
879 | else: |
|
897 | else: | |
880 | # in case of disabled anonymous user we reset some of the |
|
898 | # in case of disabled anonymous user we reset some of the | |
881 | # parameters so such user is "corrupted", skipping the fill_data |
|
899 | # parameters so such user is "corrupted", skipping the fill_data | |
882 | for attr in ['user_id', 'username', 'admin', 'active']: |
|
900 | for attr in ['user_id', 'username', 'admin', 'active']: | |
883 | setattr(self, attr, None) |
|
901 | setattr(self, attr, None) | |
884 | self.is_authenticated = False |
|
902 | self.is_authenticated = False | |
885 |
|
903 | |||
886 | if not self.username: |
|
904 | if not self.username: | |
887 | self.username = 'None' |
|
905 | self.username = 'None' | |
888 |
|
906 | |||
889 | log.debug('Auth User is now %s' % self) |
|
907 | log.debug('Auth User is now %s' % self) | |
890 |
|
908 | |||
891 | def get_perms(self, user, scope=None, explicit=True, algo='higherwin', |
|
909 | def get_perms(self, user, scope=None, explicit=True, algo='higherwin', | |
892 | cache=False): |
|
910 | cache=False): | |
893 | """ |
|
911 | """ | |
894 | Fills user permission attribute with permissions taken from database |
|
912 | Fills user permission attribute with permissions taken from database | |
895 | works for permissions given for repositories, and for permissions that |
|
913 | works for permissions given for repositories, and for permissions that | |
896 | are granted to groups |
|
914 | are granted to groups | |
897 |
|
915 | |||
898 | :param user: instance of User object from database |
|
916 | :param user: instance of User object from database | |
899 | :param explicit: In case there are permissions both for user and a group |
|
917 | :param explicit: In case there are permissions both for user and a group | |
900 | that user is part of, explicit flag will defiine if user will |
|
918 | that user is part of, explicit flag will defiine if user will | |
901 | explicitly override permissions from group, if it's False it will |
|
919 | explicitly override permissions from group, if it's False it will | |
902 | make decision based on the algo |
|
920 | make decision based on the algo | |
903 | :param algo: algorithm to decide what permission should be choose if |
|
921 | :param algo: algorithm to decide what permission should be choose if | |
904 | it's multiple defined, eg user in two different groups. It also |
|
922 | it's multiple defined, eg user in two different groups. It also | |
905 | decides if explicit flag is turned off how to specify the permission |
|
923 | decides if explicit flag is turned off how to specify the permission | |
906 | for case when user is in a group + have defined separate permission |
|
924 | for case when user is in a group + have defined separate permission | |
907 | """ |
|
925 | """ | |
908 | user_id = user.user_id |
|
926 | user_id = user.user_id | |
909 | user_is_admin = user.is_admin |
|
927 | user_is_admin = user.is_admin | |
910 |
|
928 | |||
911 | # inheritance of global permissions like create repo/fork repo etc |
|
929 | # inheritance of global permissions like create repo/fork repo etc | |
912 | user_inherit_default_permissions = user.inherit_default_permissions |
|
930 | user_inherit_default_permissions = user.inherit_default_permissions | |
913 |
|
931 | |||
914 | log.debug('Computing PERMISSION tree for scope %s' % (scope, )) |
|
932 | log.debug('Computing PERMISSION tree for scope %s' % (scope, )) | |
915 | compute = caches.conditional_cache( |
|
933 | compute = caches.conditional_cache( | |
916 | 'short_term', 'cache_desc', |
|
934 | 'short_term', 'cache_desc', | |
917 | condition=cache, func=_cached_perms_data) |
|
935 | condition=cache, func=_cached_perms_data) | |
918 | result = compute(user_id, scope, user_is_admin, |
|
936 | result = compute(user_id, scope, user_is_admin, | |
919 | user_inherit_default_permissions, explicit, algo) |
|
937 | user_inherit_default_permissions, explicit, algo) | |
920 |
|
938 | |||
921 | result_repr = [] |
|
939 | result_repr = [] | |
922 | for k in result: |
|
940 | for k in result: | |
923 | result_repr.append((k, len(result[k]))) |
|
941 | result_repr.append((k, len(result[k]))) | |
924 |
|
942 | |||
925 | log.debug('PERMISSION tree computed %s' % (result_repr,)) |
|
943 | log.debug('PERMISSION tree computed %s' % (result_repr,)) | |
926 | return result |
|
944 | return result | |
927 |
|
945 | |||
928 | @property |
|
946 | @property | |
929 | def is_default(self): |
|
947 | def is_default(self): | |
930 | return self.username == User.DEFAULT_USER |
|
948 | return self.username == User.DEFAULT_USER | |
931 |
|
949 | |||
932 | @property |
|
950 | @property | |
933 | def is_admin(self): |
|
951 | def is_admin(self): | |
934 | return self.admin |
|
952 | return self.admin | |
935 |
|
953 | |||
936 | @property |
|
954 | @property | |
937 | def is_user_object(self): |
|
955 | def is_user_object(self): | |
938 | return self.user_id is not None |
|
956 | return self.user_id is not None | |
939 |
|
957 | |||
940 | @property |
|
958 | @property | |
941 | def repositories_admin(self): |
|
959 | def repositories_admin(self): | |
942 | """ |
|
960 | """ | |
943 | Returns list of repositories you're an admin of |
|
961 | Returns list of repositories you're an admin of | |
944 | """ |
|
962 | """ | |
945 | return [x[0] for x in self.permissions['repositories'].iteritems() |
|
963 | return [ | |
946 | if x[1] == 'repository.admin'] |
|
964 | x[0] for x in self.permissions['repositories'].iteritems() | |
|
965 | if x[1] == 'repository.admin'] | |||
947 |
|
966 | |||
948 | @property |
|
967 | @property | |
949 | def repository_groups_admin(self): |
|
968 | def repository_groups_admin(self): | |
950 | """ |
|
969 | """ | |
951 | Returns list of repository groups you're an admin of |
|
970 | Returns list of repository groups you're an admin of | |
952 | """ |
|
971 | """ | |
953 |
return [ |
|
972 | return [ | |
954 |
|
|
973 | x[0] for x in self.permissions['repositories_groups'].iteritems() | |
955 |
|
|
974 | if x[1] == 'group.admin'] | |
956 |
|
975 | |||
957 | @property |
|
976 | @property | |
958 | def user_groups_admin(self): |
|
977 | def user_groups_admin(self): | |
959 | """ |
|
978 | """ | |
960 | Returns list of user groups you're an admin of |
|
979 | Returns list of user groups you're an admin of | |
961 | """ |
|
980 | """ | |
962 | return [x[0] for x in self.permissions['user_groups'].iteritems() |
|
981 | return [ | |
963 | if x[1] == 'usergroup.admin'] |
|
982 | x[0] for x in self.permissions['user_groups'].iteritems() | |
|
983 | if x[1] == 'usergroup.admin'] | |||
964 |
|
984 | |||
965 | @property |
|
985 | @property | |
966 | def ip_allowed(self): |
|
986 | def ip_allowed(self): | |
967 | """ |
|
987 | """ | |
968 | Checks if ip_addr used in constructor is allowed from defined list of |
|
988 | Checks if ip_addr used in constructor is allowed from defined list of | |
969 | allowed ip_addresses for user |
|
989 | allowed ip_addresses for user | |
970 |
|
990 | |||
971 | :returns: boolean, True if ip is in allowed ip range |
|
991 | :returns: boolean, True if ip is in allowed ip range | |
972 | """ |
|
992 | """ | |
973 | # check IP |
|
993 | # check IP | |
974 | inherit = self.inherit_default_permissions |
|
994 | inherit = self.inherit_default_permissions | |
975 | return AuthUser.check_ip_allowed(self.user_id, self.ip_addr, |
|
995 | return AuthUser.check_ip_allowed(self.user_id, self.ip_addr, | |
976 | inherit_from_default=inherit) |
|
996 | inherit_from_default=inherit) | |
977 | @property |
|
997 | @property | |
978 | def personal_repo_group(self): |
|
998 | def personal_repo_group(self): | |
979 | return RepoGroup.get_user_personal_repo_group(self.user_id) |
|
999 | return RepoGroup.get_user_personal_repo_group(self.user_id) | |
980 |
|
1000 | |||
981 | @classmethod |
|
1001 | @classmethod | |
982 | def check_ip_allowed(cls, user_id, ip_addr, inherit_from_default): |
|
1002 | def check_ip_allowed(cls, user_id, ip_addr, inherit_from_default): | |
983 | allowed_ips = AuthUser.get_allowed_ips( |
|
1003 | allowed_ips = AuthUser.get_allowed_ips( | |
984 | user_id, cache=True, inherit_from_default=inherit_from_default) |
|
1004 | user_id, cache=True, inherit_from_default=inherit_from_default) | |
985 | if check_ip_access(source_ip=ip_addr, allowed_ips=allowed_ips): |
|
1005 | if check_ip_access(source_ip=ip_addr, allowed_ips=allowed_ips): | |
986 | log.debug('IP:%s is in range of %s' % (ip_addr, allowed_ips)) |
|
1006 | log.debug('IP:%s is in range of %s' % (ip_addr, allowed_ips)) | |
987 | return True |
|
1007 | return True | |
988 | else: |
|
1008 | else: | |
989 | log.info('Access for IP:%s forbidden, ' |
|
1009 | log.info('Access for IP:%s forbidden, ' | |
990 | 'not in %s' % (ip_addr, allowed_ips)) |
|
1010 | 'not in %s' % (ip_addr, allowed_ips)) | |
991 | return False |
|
1011 | return False | |
992 |
|
1012 | |||
993 | def __repr__(self): |
|
1013 | def __repr__(self): | |
994 | return "<AuthUser('id:%s[%s] ip:%s auth:%s')>"\ |
|
1014 | return "<AuthUser('id:%s[%s] ip:%s auth:%s')>"\ | |
995 | % (self.user_id, self.username, self.ip_addr, self.is_authenticated) |
|
1015 | % (self.user_id, self.username, self.ip_addr, self.is_authenticated) | |
996 |
|
1016 | |||
997 | def set_authenticated(self, authenticated=True): |
|
1017 | def set_authenticated(self, authenticated=True): | |
998 | if self.user_id != self.anonymous_user.user_id: |
|
1018 | if self.user_id != self.anonymous_user.user_id: | |
999 | self.is_authenticated = authenticated |
|
1019 | self.is_authenticated = authenticated | |
1000 |
|
1020 | |||
1001 | def get_cookie_store(self): |
|
1021 | def get_cookie_store(self): | |
1002 | return { |
|
1022 | return { | |
1003 | 'username': self.username, |
|
1023 | 'username': self.username, | |
1004 | 'password': md5(self.password), |
|
1024 | 'password': md5(self.password), | |
1005 | 'user_id': self.user_id, |
|
1025 | 'user_id': self.user_id, | |
1006 | 'is_authenticated': self.is_authenticated |
|
1026 | 'is_authenticated': self.is_authenticated | |
1007 | } |
|
1027 | } | |
1008 |
|
1028 | |||
1009 | @classmethod |
|
1029 | @classmethod | |
1010 | def from_cookie_store(cls, cookie_store): |
|
1030 | def from_cookie_store(cls, cookie_store): | |
1011 | """ |
|
1031 | """ | |
1012 | Creates AuthUser from a cookie store |
|
1032 | Creates AuthUser from a cookie store | |
1013 |
|
1033 | |||
1014 | :param cls: |
|
1034 | :param cls: | |
1015 | :param cookie_store: |
|
1035 | :param cookie_store: | |
1016 | """ |
|
1036 | """ | |
1017 | user_id = cookie_store.get('user_id') |
|
1037 | user_id = cookie_store.get('user_id') | |
1018 | username = cookie_store.get('username') |
|
1038 | username = cookie_store.get('username') | |
1019 | api_key = cookie_store.get('api_key') |
|
1039 | api_key = cookie_store.get('api_key') | |
1020 | return AuthUser(user_id, api_key, username) |
|
1040 | return AuthUser(user_id, api_key, username) | |
1021 |
|
1041 | |||
1022 | @classmethod |
|
1042 | @classmethod | |
1023 | def get_allowed_ips(cls, user_id, cache=False, inherit_from_default=False): |
|
1043 | def get_allowed_ips(cls, user_id, cache=False, inherit_from_default=False): | |
1024 | _set = set() |
|
1044 | _set = set() | |
1025 |
|
1045 | |||
1026 | if inherit_from_default: |
|
1046 | if inherit_from_default: | |
1027 | default_ips = UserIpMap.query().filter( |
|
1047 | default_ips = UserIpMap.query().filter( | |
1028 | UserIpMap.user == User.get_default_user(cache=True)) |
|
1048 | UserIpMap.user == User.get_default_user(cache=True)) | |
1029 | if cache: |
|
1049 | if cache: | |
1030 | default_ips = default_ips.options(FromCache("sql_cache_short", |
|
1050 | default_ips = default_ips.options(FromCache("sql_cache_short", | |
1031 | "get_user_ips_default")) |
|
1051 | "get_user_ips_default")) | |
1032 |
|
1052 | |||
1033 | # populate from default user |
|
1053 | # populate from default user | |
1034 | for ip in default_ips: |
|
1054 | for ip in default_ips: | |
1035 | try: |
|
1055 | try: | |
1036 | _set.add(ip.ip_addr) |
|
1056 | _set.add(ip.ip_addr) | |
1037 | except ObjectDeletedError: |
|
1057 | except ObjectDeletedError: | |
1038 | # since we use heavy caching sometimes it happens that |
|
1058 | # since we use heavy caching sometimes it happens that | |
1039 | # we get deleted objects here, we just skip them |
|
1059 | # we get deleted objects here, we just skip them | |
1040 | pass |
|
1060 | pass | |
1041 |
|
1061 | |||
1042 | user_ips = UserIpMap.query().filter(UserIpMap.user_id == user_id) |
|
1062 | user_ips = UserIpMap.query().filter(UserIpMap.user_id == user_id) | |
1043 | if cache: |
|
1063 | if cache: | |
1044 | user_ips = user_ips.options(FromCache("sql_cache_short", |
|
1064 | user_ips = user_ips.options(FromCache("sql_cache_short", | |
1045 | "get_user_ips_%s" % user_id)) |
|
1065 | "get_user_ips_%s" % user_id)) | |
1046 |
|
1066 | |||
1047 | for ip in user_ips: |
|
1067 | for ip in user_ips: | |
1048 | try: |
|
1068 | try: | |
1049 | _set.add(ip.ip_addr) |
|
1069 | _set.add(ip.ip_addr) | |
1050 | except ObjectDeletedError: |
|
1070 | except ObjectDeletedError: | |
1051 | # since we use heavy caching sometimes it happens that we get |
|
1071 | # since we use heavy caching sometimes it happens that we get | |
1052 | # deleted objects here, we just skip them |
|
1072 | # deleted objects here, we just skip them | |
1053 | pass |
|
1073 | pass | |
1054 | return _set or set(['0.0.0.0/0', '::/0']) |
|
1074 | return _set or set(['0.0.0.0/0', '::/0']) | |
1055 |
|
1075 | |||
1056 |
|
1076 | |||
1057 | def set_available_permissions(config): |
|
1077 | def set_available_permissions(config): | |
1058 | """ |
|
1078 | """ | |
1059 | This function will propagate pylons globals with all available defined |
|
1079 | This function will propagate pylons globals with all available defined | |
1060 | permission given in db. We don't want to check each time from db for new |
|
1080 | permission given in db. We don't want to check each time from db for new | |
1061 | permissions since adding a new permission also requires application restart |
|
1081 | permissions since adding a new permission also requires application restart | |
1062 | ie. to decorate new views with the newly created permission |
|
1082 | ie. to decorate new views with the newly created permission | |
1063 |
|
1083 | |||
1064 | :param config: current pylons config instance |
|
1084 | :param config: current pylons config instance | |
1065 |
|
1085 | |||
1066 | """ |
|
1086 | """ | |
1067 | log.info('getting information about all available permissions') |
|
1087 | log.info('getting information about all available permissions') | |
1068 | try: |
|
1088 | try: | |
1069 | sa = meta.Session |
|
1089 | sa = meta.Session | |
1070 | all_perms = sa.query(Permission).all() |
|
1090 | all_perms = sa.query(Permission).all() | |
1071 | config['available_permissions'] = [x.permission_name for x in all_perms] |
|
1091 | config['available_permissions'] = [x.permission_name for x in all_perms] | |
1072 | except Exception: |
|
1092 | except Exception: | |
1073 | log.error(traceback.format_exc()) |
|
1093 | log.error(traceback.format_exc()) | |
1074 | finally: |
|
1094 | finally: | |
1075 | meta.Session.remove() |
|
1095 | meta.Session.remove() | |
1076 |
|
1096 | |||
1077 |
|
1097 | |||
1078 | def get_csrf_token(session=None, force_new=False, save_if_missing=True): |
|
1098 | def get_csrf_token(session=None, force_new=False, save_if_missing=True): | |
1079 | """ |
|
1099 | """ | |
1080 | Return the current authentication token, creating one if one doesn't |
|
1100 | Return the current authentication token, creating one if one doesn't | |
1081 | already exist and the save_if_missing flag is present. |
|
1101 | already exist and the save_if_missing flag is present. | |
1082 |
|
1102 | |||
1083 | :param session: pass in the pylons session, else we use the global ones |
|
1103 | :param session: pass in the pylons session, else we use the global ones | |
1084 | :param force_new: force to re-generate the token and store it in session |
|
1104 | :param force_new: force to re-generate the token and store it in session | |
1085 | :param save_if_missing: save the newly generated token if it's missing in |
|
1105 | :param save_if_missing: save the newly generated token if it's missing in | |
1086 | session |
|
1106 | session | |
1087 | """ |
|
1107 | """ | |
1088 | if not session: |
|
1108 | if not session: | |
1089 | from pylons import session |
|
1109 | from pylons import session | |
1090 |
|
1110 | |||
1091 | if (csrf_token_key not in session and save_if_missing) or force_new: |
|
1111 | if (csrf_token_key not in session and save_if_missing) or force_new: | |
1092 | token = hashlib.sha1(str(random.getrandbits(128))).hexdigest() |
|
1112 | token = hashlib.sha1(str(random.getrandbits(128))).hexdigest() | |
1093 | session[csrf_token_key] = token |
|
1113 | session[csrf_token_key] = token | |
1094 | if hasattr(session, 'save'): |
|
1114 | if hasattr(session, 'save'): | |
1095 | session.save() |
|
1115 | session.save() | |
1096 | return session.get(csrf_token_key) |
|
1116 | return session.get(csrf_token_key) | |
1097 |
|
1117 | |||
1098 |
|
1118 | |||
1099 | # CHECK DECORATORS |
|
1119 | # CHECK DECORATORS | |
1100 | class CSRFRequired(object): |
|
1120 | class CSRFRequired(object): | |
1101 | """ |
|
1121 | """ | |
1102 | Decorator for authenticating a form |
|
1122 | Decorator for authenticating a form | |
1103 |
|
1123 | |||
1104 | This decorator uses an authorization token stored in the client's |
|
1124 | This decorator uses an authorization token stored in the client's | |
1105 | session for prevention of certain Cross-site request forgery (CSRF) |
|
1125 | session for prevention of certain Cross-site request forgery (CSRF) | |
1106 | attacks (See |
|
1126 | attacks (See | |
1107 | http://en.wikipedia.org/wiki/Cross-site_request_forgery for more |
|
1127 | http://en.wikipedia.org/wiki/Cross-site_request_forgery for more | |
1108 | information). |
|
1128 | information). | |
1109 |
|
1129 | |||
1110 | For use with the ``webhelpers.secure_form`` helper functions. |
|
1130 | For use with the ``webhelpers.secure_form`` helper functions. | |
1111 |
|
1131 | |||
1112 | """ |
|
1132 | """ | |
1113 | def __init__(self, token=csrf_token_key, header='X-CSRF-Token', |
|
1133 | def __init__(self, token=csrf_token_key, header='X-CSRF-Token', | |
1114 | except_methods=None): |
|
1134 | except_methods=None): | |
1115 | self.token = token |
|
1135 | self.token = token | |
1116 | self.header = header |
|
1136 | self.header = header | |
1117 | self.except_methods = except_methods or [] |
|
1137 | self.except_methods = except_methods or [] | |
1118 |
|
1138 | |||
1119 | def __call__(self, func): |
|
1139 | def __call__(self, func): | |
1120 | return get_cython_compat_decorator(self.__wrapper, func) |
|
1140 | return get_cython_compat_decorator(self.__wrapper, func) | |
1121 |
|
1141 | |||
1122 | def _get_csrf(self, _request): |
|
1142 | def _get_csrf(self, _request): | |
1123 | return _request.POST.get(self.token, _request.headers.get(self.header)) |
|
1143 | return _request.POST.get(self.token, _request.headers.get(self.header)) | |
1124 |
|
1144 | |||
1125 | def check_csrf(self, _request, cur_token): |
|
1145 | def check_csrf(self, _request, cur_token): | |
1126 | supplied_token = self._get_csrf(_request) |
|
1146 | supplied_token = self._get_csrf(_request) | |
1127 | return supplied_token and supplied_token == cur_token |
|
1147 | return supplied_token and supplied_token == cur_token | |
1128 |
|
1148 | |||
1129 | def __wrapper(self, func, *fargs, **fkwargs): |
|
1149 | def __wrapper(self, func, *fargs, **fkwargs): | |
1130 | if request.method in self.except_methods: |
|
1150 | if request.method in self.except_methods: | |
1131 | return func(*fargs, **fkwargs) |
|
1151 | return func(*fargs, **fkwargs) | |
1132 |
|
1152 | |||
1133 | cur_token = get_csrf_token(save_if_missing=False) |
|
1153 | cur_token = get_csrf_token(save_if_missing=False) | |
1134 | if self.check_csrf(request, cur_token): |
|
1154 | if self.check_csrf(request, cur_token): | |
1135 | if request.POST.get(self.token): |
|
1155 | if request.POST.get(self.token): | |
1136 | del request.POST[self.token] |
|
1156 | del request.POST[self.token] | |
1137 | return func(*fargs, **fkwargs) |
|
1157 | return func(*fargs, **fkwargs) | |
1138 | else: |
|
1158 | else: | |
1139 | reason = 'token-missing' |
|
1159 | reason = 'token-missing' | |
1140 | supplied_token = self._get_csrf(request) |
|
1160 | supplied_token = self._get_csrf(request) | |
1141 | if supplied_token and cur_token != supplied_token: |
|
1161 | if supplied_token and cur_token != supplied_token: | |
1142 | reason = 'token-mismatch [%s:%s]' % (cur_token or ''[:6], |
|
1162 | reason = 'token-mismatch [%s:%s]' % (cur_token or ''[:6], | |
1143 | supplied_token or ''[:6]) |
|
1163 | supplied_token or ''[:6]) | |
1144 |
|
1164 | |||
1145 | csrf_message = \ |
|
1165 | csrf_message = \ | |
1146 | ("Cross-site request forgery detected, request denied. See " |
|
1166 | ("Cross-site request forgery detected, request denied. See " | |
1147 | "http://en.wikipedia.org/wiki/Cross-site_request_forgery for " |
|
1167 | "http://en.wikipedia.org/wiki/Cross-site_request_forgery for " | |
1148 | "more information.") |
|
1168 | "more information.") | |
1149 | log.warn('Cross-site request forgery detected, request %r DENIED: %s ' |
|
1169 | log.warn('Cross-site request forgery detected, request %r DENIED: %s ' | |
1150 | 'REMOTE_ADDR:%s, HEADERS:%s' % ( |
|
1170 | 'REMOTE_ADDR:%s, HEADERS:%s' % ( | |
1151 | request, reason, request.remote_addr, request.headers)) |
|
1171 | request, reason, request.remote_addr, request.headers)) | |
1152 |
|
1172 | |||
1153 | raise HTTPForbidden(explanation=csrf_message) |
|
1173 | raise HTTPForbidden(explanation=csrf_message) | |
1154 |
|
1174 | |||
1155 |
|
1175 | |||
1156 | class LoginRequired(object): |
|
1176 | class LoginRequired(object): | |
1157 | """ |
|
1177 | """ | |
1158 | Must be logged in to execute this function else |
|
1178 | Must be logged in to execute this function else | |
1159 | redirect to login page |
|
1179 | redirect to login page | |
1160 |
|
1180 | |||
1161 | :param api_access: if enabled this checks only for valid auth token |
|
1181 | :param api_access: if enabled this checks only for valid auth token | |
1162 | and grants access based on valid token |
|
1182 | and grants access based on valid token | |
1163 | """ |
|
1183 | """ | |
1164 | def __init__(self, auth_token_access=None): |
|
1184 | def __init__(self, auth_token_access=None): | |
1165 | self.auth_token_access = auth_token_access |
|
1185 | self.auth_token_access = auth_token_access | |
1166 |
|
1186 | |||
1167 | def __call__(self, func): |
|
1187 | def __call__(self, func): | |
1168 | return get_cython_compat_decorator(self.__wrapper, func) |
|
1188 | return get_cython_compat_decorator(self.__wrapper, func) | |
1169 |
|
1189 | |||
1170 | def __wrapper(self, func, *fargs, **fkwargs): |
|
1190 | def __wrapper(self, func, *fargs, **fkwargs): | |
1171 | from rhodecode.lib import helpers as h |
|
1191 | from rhodecode.lib import helpers as h | |
1172 | cls = fargs[0] |
|
1192 | cls = fargs[0] | |
1173 | user = cls._rhodecode_user |
|
1193 | user = cls._rhodecode_user | |
1174 | loc = "%s:%s" % (cls.__class__.__name__, func.__name__) |
|
1194 | loc = "%s:%s" % (cls.__class__.__name__, func.__name__) | |
1175 | log.debug('Starting login restriction checks for user: %s' % (user,)) |
|
1195 | log.debug('Starting login restriction checks for user: %s' % (user,)) | |
1176 | # check if our IP is allowed |
|
1196 | # check if our IP is allowed | |
1177 | ip_access_valid = True |
|
1197 | ip_access_valid = True | |
1178 | if not user.ip_allowed: |
|
1198 | if not user.ip_allowed: | |
1179 | h.flash(h.literal(_('IP %s not allowed' % (user.ip_addr,))), |
|
1199 | h.flash(h.literal(_('IP %s not allowed' % (user.ip_addr,))), | |
1180 | category='warning') |
|
1200 | category='warning') | |
1181 | ip_access_valid = False |
|
1201 | ip_access_valid = False | |
1182 |
|
1202 | |||
1183 | # check if we used an APIKEY and it's a valid one |
|
1203 | # check if we used an APIKEY and it's a valid one | |
1184 | # defined white-list of controllers which API access will be enabled |
|
1204 | # defined white-list of controllers which API access will be enabled | |
1185 | _auth_token = request.GET.get( |
|
1205 | _auth_token = request.GET.get( | |
1186 | 'auth_token', '') or request.GET.get('api_key', '') |
|
1206 | 'auth_token', '') or request.GET.get('api_key', '') | |
1187 | auth_token_access_valid = allowed_auth_token_access( |
|
1207 | auth_token_access_valid = allowed_auth_token_access( | |
1188 | loc, auth_token=_auth_token) |
|
1208 | loc, auth_token=_auth_token) | |
1189 |
|
1209 | |||
1190 | # explicit controller is enabled or API is in our whitelist |
|
1210 | # explicit controller is enabled or API is in our whitelist | |
1191 | if self.auth_token_access or auth_token_access_valid: |
|
1211 | if self.auth_token_access or auth_token_access_valid: | |
1192 | log.debug('Checking AUTH TOKEN access for %s' % (cls,)) |
|
1212 | log.debug('Checking AUTH TOKEN access for %s' % (cls,)) | |
1193 | db_user = user.get_instance() |
|
1213 | db_user = user.get_instance() | |
1194 |
|
1214 | |||
1195 | if db_user: |
|
1215 | if db_user: | |
1196 | if self.auth_token_access: |
|
1216 | if self.auth_token_access: | |
1197 | roles = self.auth_token_access |
|
1217 | roles = self.auth_token_access | |
1198 | else: |
|
1218 | else: | |
1199 | roles = [UserApiKeys.ROLE_HTTP] |
|
1219 | roles = [UserApiKeys.ROLE_HTTP] | |
1200 | token_match = db_user.authenticate_by_token( |
|
1220 | token_match = db_user.authenticate_by_token( | |
1201 | _auth_token, roles=roles, include_builtin_token=True) |
|
1221 | _auth_token, roles=roles, include_builtin_token=True) | |
1202 | else: |
|
1222 | else: | |
1203 | log.debug('Unable to fetch db instance for auth user: %s', user) |
|
1223 | log.debug('Unable to fetch db instance for auth user: %s', user) | |
1204 | token_match = False |
|
1224 | token_match = False | |
1205 |
|
1225 | |||
1206 | if _auth_token and token_match: |
|
1226 | if _auth_token and token_match: | |
1207 | auth_token_access_valid = True |
|
1227 | auth_token_access_valid = True | |
1208 | log.debug('AUTH TOKEN ****%s is VALID' % (_auth_token[-4:],)) |
|
1228 | log.debug('AUTH TOKEN ****%s is VALID' % (_auth_token[-4:],)) | |
1209 | else: |
|
1229 | else: | |
1210 | auth_token_access_valid = False |
|
1230 | auth_token_access_valid = False | |
1211 | if not _auth_token: |
|
1231 | if not _auth_token: | |
1212 | log.debug("AUTH TOKEN *NOT* present in request") |
|
1232 | log.debug("AUTH TOKEN *NOT* present in request") | |
1213 | else: |
|
1233 | else: | |
1214 | log.warning( |
|
1234 | log.warning( | |
1215 | "AUTH TOKEN ****%s *NOT* valid" % _auth_token[-4:]) |
|
1235 | "AUTH TOKEN ****%s *NOT* valid" % _auth_token[-4:]) | |
1216 |
|
1236 | |||
1217 | log.debug('Checking if %s is authenticated @ %s' % (user.username, loc)) |
|
1237 | log.debug('Checking if %s is authenticated @ %s' % (user.username, loc)) | |
1218 | reason = 'RHODECODE_AUTH' if user.is_authenticated \ |
|
1238 | reason = 'RHODECODE_AUTH' if user.is_authenticated \ | |
1219 | else 'AUTH_TOKEN_AUTH' |
|
1239 | else 'AUTH_TOKEN_AUTH' | |
1220 |
|
1240 | |||
1221 | if ip_access_valid and ( |
|
1241 | if ip_access_valid and ( | |
1222 | user.is_authenticated or auth_token_access_valid): |
|
1242 | user.is_authenticated or auth_token_access_valid): | |
1223 | log.info( |
|
1243 | log.info( | |
1224 | 'user %s authenticating with:%s IS authenticated on func %s' |
|
1244 | 'user %s authenticating with:%s IS authenticated on func %s' | |
1225 | % (user, reason, loc)) |
|
1245 | % (user, reason, loc)) | |
1226 |
|
1246 | |||
1227 | # update user data to check last activity |
|
1247 | # update user data to check last activity | |
1228 | user.update_lastactivity() |
|
1248 | user.update_lastactivity() | |
1229 | Session().commit() |
|
1249 | Session().commit() | |
1230 | return func(*fargs, **fkwargs) |
|
1250 | return func(*fargs, **fkwargs) | |
1231 | else: |
|
1251 | else: | |
1232 | log.warning( |
|
1252 | log.warning( | |
1233 | 'user %s authenticating with:%s NOT authenticated on ' |
|
1253 | 'user %s authenticating with:%s NOT authenticated on ' | |
1234 | 'func: %s: IP_ACCESS:%s AUTH_TOKEN_ACCESS:%s' |
|
1254 | 'func: %s: IP_ACCESS:%s AUTH_TOKEN_ACCESS:%s' | |
1235 | % (user, reason, loc, ip_access_valid, |
|
1255 | % (user, reason, loc, ip_access_valid, | |
1236 | auth_token_access_valid)) |
|
1256 | auth_token_access_valid)) | |
1237 | # we preserve the get PARAM |
|
1257 | # we preserve the get PARAM | |
1238 | came_from = request.path_qs |
|
1258 | came_from = request.path_qs | |
1239 |
|
1259 | |||
1240 | log.debug('redirecting to login page with %s' % (came_from,)) |
|
1260 | log.debug('redirecting to login page with %s' % (came_from,)) | |
1241 | return redirect( |
|
1261 | return redirect( | |
1242 | h.route_path('login', _query={'came_from': came_from})) |
|
1262 | h.route_path('login', _query={'came_from': came_from})) | |
1243 |
|
1263 | |||
1244 |
|
1264 | |||
1245 | class NotAnonymous(object): |
|
1265 | class NotAnonymous(object): | |
1246 | """ |
|
1266 | """ | |
1247 | Must be logged in to execute this function else |
|
1267 | Must be logged in to execute this function else | |
1248 | redirect to login page""" |
|
1268 | redirect to login page""" | |
1249 |
|
1269 | |||
1250 | def __call__(self, func): |
|
1270 | def __call__(self, func): | |
1251 | return get_cython_compat_decorator(self.__wrapper, func) |
|
1271 | return get_cython_compat_decorator(self.__wrapper, func) | |
1252 |
|
1272 | |||
1253 | def __wrapper(self, func, *fargs, **fkwargs): |
|
1273 | def __wrapper(self, func, *fargs, **fkwargs): | |
1254 | cls = fargs[0] |
|
1274 | cls = fargs[0] | |
1255 | self.user = cls._rhodecode_user |
|
1275 | self.user = cls._rhodecode_user | |
1256 |
|
1276 | |||
1257 | log.debug('Checking if user is not anonymous @%s' % cls) |
|
1277 | log.debug('Checking if user is not anonymous @%s' % cls) | |
1258 |
|
1278 | |||
1259 | anonymous = self.user.username == User.DEFAULT_USER |
|
1279 | anonymous = self.user.username == User.DEFAULT_USER | |
1260 |
|
1280 | |||
1261 | if anonymous: |
|
1281 | if anonymous: | |
1262 | came_from = request.path_qs |
|
1282 | came_from = request.path_qs | |
1263 |
|
1283 | |||
1264 | import rhodecode.lib.helpers as h |
|
1284 | import rhodecode.lib.helpers as h | |
1265 | h.flash(_('You need to be a registered user to ' |
|
1285 | h.flash(_('You need to be a registered user to ' | |
1266 | 'perform this action'), |
|
1286 | 'perform this action'), | |
1267 | category='warning') |
|
1287 | category='warning') | |
1268 | return redirect( |
|
1288 | return redirect( | |
1269 | h.route_path('login', _query={'came_from': came_from})) |
|
1289 | h.route_path('login', _query={'came_from': came_from})) | |
1270 | else: |
|
1290 | else: | |
1271 | return func(*fargs, **fkwargs) |
|
1291 | return func(*fargs, **fkwargs) | |
1272 |
|
1292 | |||
1273 |
|
1293 | |||
1274 | class XHRRequired(object): |
|
1294 | class XHRRequired(object): | |
1275 | def __call__(self, func): |
|
1295 | def __call__(self, func): | |
1276 | return get_cython_compat_decorator(self.__wrapper, func) |
|
1296 | return get_cython_compat_decorator(self.__wrapper, func) | |
1277 |
|
1297 | |||
1278 | def __wrapper(self, func, *fargs, **fkwargs): |
|
1298 | def __wrapper(self, func, *fargs, **fkwargs): | |
1279 | log.debug('Checking if request is XMLHttpRequest (XHR)') |
|
1299 | log.debug('Checking if request is XMLHttpRequest (XHR)') | |
1280 | xhr_message = 'This is not a valid XMLHttpRequest (XHR) request' |
|
1300 | xhr_message = 'This is not a valid XMLHttpRequest (XHR) request' | |
1281 | if not request.is_xhr: |
|
1301 | if not request.is_xhr: | |
1282 | abort(400, detail=xhr_message) |
|
1302 | abort(400, detail=xhr_message) | |
1283 |
|
1303 | |||
1284 | return func(*fargs, **fkwargs) |
|
1304 | return func(*fargs, **fkwargs) | |
1285 |
|
1305 | |||
1286 |
|
1306 | |||
1287 | class HasAcceptedRepoType(object): |
|
1307 | class HasAcceptedRepoType(object): | |
1288 | """ |
|
1308 | """ | |
1289 | Check if requested repo is within given repo type aliases |
|
1309 | Check if requested repo is within given repo type aliases | |
1290 |
|
1310 | |||
1291 | TODO: anderson: not sure where to put this decorator |
|
1311 | TODO: anderson: not sure where to put this decorator | |
1292 | """ |
|
1312 | """ | |
1293 |
|
1313 | |||
1294 | def __init__(self, *repo_type_list): |
|
1314 | def __init__(self, *repo_type_list): | |
1295 | self.repo_type_list = set(repo_type_list) |
|
1315 | self.repo_type_list = set(repo_type_list) | |
1296 |
|
1316 | |||
1297 | def __call__(self, func): |
|
1317 | def __call__(self, func): | |
1298 | return get_cython_compat_decorator(self.__wrapper, func) |
|
1318 | return get_cython_compat_decorator(self.__wrapper, func) | |
1299 |
|
1319 | |||
1300 | def __wrapper(self, func, *fargs, **fkwargs): |
|
1320 | def __wrapper(self, func, *fargs, **fkwargs): | |
1301 | cls = fargs[0] |
|
1321 | cls = fargs[0] | |
1302 | rhodecode_repo = cls.rhodecode_repo |
|
1322 | rhodecode_repo = cls.rhodecode_repo | |
1303 |
|
1323 | |||
1304 | log.debug('%s checking repo type for %s in %s', |
|
1324 | log.debug('%s checking repo type for %s in %s', | |
1305 | self.__class__.__name__, |
|
1325 | self.__class__.__name__, | |
1306 | rhodecode_repo.alias, self.repo_type_list) |
|
1326 | rhodecode_repo.alias, self.repo_type_list) | |
1307 |
|
1327 | |||
1308 | if rhodecode_repo.alias in self.repo_type_list: |
|
1328 | if rhodecode_repo.alias in self.repo_type_list: | |
1309 | return func(*fargs, **fkwargs) |
|
1329 | return func(*fargs, **fkwargs) | |
1310 | else: |
|
1330 | else: | |
1311 | import rhodecode.lib.helpers as h |
|
1331 | import rhodecode.lib.helpers as h | |
1312 | h.flash(h.literal( |
|
1332 | h.flash(h.literal( | |
1313 | _('Action not supported for %s.' % rhodecode_repo.alias)), |
|
1333 | _('Action not supported for %s.' % rhodecode_repo.alias)), | |
1314 | category='warning') |
|
1334 | category='warning') | |
1315 | return redirect( |
|
1335 | return redirect( | |
1316 | url('summary_home', repo_name=cls.rhodecode_db_repo.repo_name)) |
|
1336 | url('summary_home', repo_name=cls.rhodecode_db_repo.repo_name)) | |
1317 |
|
1337 | |||
1318 |
|
1338 | |||
1319 | class PermsDecorator(object): |
|
1339 | class PermsDecorator(object): | |
1320 | """ |
|
1340 | """ | |
1321 | Base class for controller decorators, we extract the current user from |
|
1341 | Base class for controller decorators, we extract the current user from | |
1322 | the class itself, which has it stored in base controllers |
|
1342 | the class itself, which has it stored in base controllers | |
1323 | """ |
|
1343 | """ | |
1324 |
|
1344 | |||
1325 | def __init__(self, *required_perms): |
|
1345 | def __init__(self, *required_perms): | |
1326 | self.required_perms = set(required_perms) |
|
1346 | self.required_perms = set(required_perms) | |
1327 |
|
1347 | |||
1328 | def __call__(self, func): |
|
1348 | def __call__(self, func): | |
1329 | return get_cython_compat_decorator(self.__wrapper, func) |
|
1349 | return get_cython_compat_decorator(self.__wrapper, func) | |
1330 |
|
1350 | |||
1331 | def __wrapper(self, func, *fargs, **fkwargs): |
|
1351 | def __wrapper(self, func, *fargs, **fkwargs): | |
1332 | cls = fargs[0] |
|
1352 | cls = fargs[0] | |
1333 | _user = cls._rhodecode_user |
|
1353 | _user = cls._rhodecode_user | |
1334 |
|
1354 | |||
1335 | log.debug('checking %s permissions %s for %s %s', |
|
1355 | log.debug('checking %s permissions %s for %s %s', | |
1336 | self.__class__.__name__, self.required_perms, cls, _user) |
|
1356 | self.__class__.__name__, self.required_perms, cls, _user) | |
1337 |
|
1357 | |||
1338 | if self.check_permissions(_user): |
|
1358 | if self.check_permissions(_user): | |
1339 | log.debug('Permission granted for %s %s', cls, _user) |
|
1359 | log.debug('Permission granted for %s %s', cls, _user) | |
1340 | return func(*fargs, **fkwargs) |
|
1360 | return func(*fargs, **fkwargs) | |
1341 |
|
1361 | |||
1342 | else: |
|
1362 | else: | |
1343 | log.debug('Permission denied for %s %s', cls, _user) |
|
1363 | log.debug('Permission denied for %s %s', cls, _user) | |
1344 | anonymous = _user.username == User.DEFAULT_USER |
|
1364 | anonymous = _user.username == User.DEFAULT_USER | |
1345 |
|
1365 | |||
1346 | if anonymous: |
|
1366 | if anonymous: | |
1347 | came_from = request.path_qs |
|
1367 | came_from = request.path_qs | |
1348 |
|
1368 | |||
1349 | import rhodecode.lib.helpers as h |
|
1369 | import rhodecode.lib.helpers as h | |
1350 | h.flash(_('You need to be signed in to view this page'), |
|
1370 | h.flash(_('You need to be signed in to view this page'), | |
1351 | category='warning') |
|
1371 | category='warning') | |
1352 | return redirect( |
|
1372 | return redirect( | |
1353 | h.route_path('login', _query={'came_from': came_from})) |
|
1373 | h.route_path('login', _query={'came_from': came_from})) | |
1354 |
|
1374 | |||
1355 | else: |
|
1375 | else: | |
1356 | # redirect with forbidden ret code |
|
1376 | # redirect with forbidden ret code | |
1357 | return abort(403) |
|
1377 | return abort(403) | |
1358 |
|
1378 | |||
1359 | def check_permissions(self, user): |
|
1379 | def check_permissions(self, user): | |
1360 | """Dummy function for overriding""" |
|
1380 | """Dummy function for overriding""" | |
1361 | raise NotImplementedError( |
|
1381 | raise NotImplementedError( | |
1362 | 'You have to write this function in child class') |
|
1382 | 'You have to write this function in child class') | |
1363 |
|
1383 | |||
1364 |
|
1384 | |||
1365 | class HasPermissionAllDecorator(PermsDecorator): |
|
1385 | class HasPermissionAllDecorator(PermsDecorator): | |
1366 | """ |
|
1386 | """ | |
1367 | Checks for access permission for all given predicates. All of them |
|
1387 | Checks for access permission for all given predicates. All of them | |
1368 | have to be meet in order to fulfill the request |
|
1388 | have to be meet in order to fulfill the request | |
1369 | """ |
|
1389 | """ | |
1370 |
|
1390 | |||
1371 | def check_permissions(self, user): |
|
1391 | def check_permissions(self, user): | |
1372 | perms = user.permissions_with_scope({}) |
|
1392 | perms = user.permissions_with_scope({}) | |
1373 | if self.required_perms.issubset(perms['global']): |
|
1393 | if self.required_perms.issubset(perms['global']): | |
1374 | return True |
|
1394 | return True | |
1375 | return False |
|
1395 | return False | |
1376 |
|
1396 | |||
1377 |
|
1397 | |||
1378 | class HasPermissionAnyDecorator(PermsDecorator): |
|
1398 | class HasPermissionAnyDecorator(PermsDecorator): | |
1379 | """ |
|
1399 | """ | |
1380 | Checks for access permission for any of given predicates. In order to |
|
1400 | Checks for access permission for any of given predicates. In order to | |
1381 | fulfill the request any of predicates must be meet |
|
1401 | fulfill the request any of predicates must be meet | |
1382 | """ |
|
1402 | """ | |
1383 |
|
1403 | |||
1384 | def check_permissions(self, user): |
|
1404 | def check_permissions(self, user): | |
1385 | perms = user.permissions_with_scope({}) |
|
1405 | perms = user.permissions_with_scope({}) | |
1386 | if self.required_perms.intersection(perms['global']): |
|
1406 | if self.required_perms.intersection(perms['global']): | |
1387 | return True |
|
1407 | return True | |
1388 | return False |
|
1408 | return False | |
1389 |
|
1409 | |||
1390 |
|
1410 | |||
1391 | class HasRepoPermissionAllDecorator(PermsDecorator): |
|
1411 | class HasRepoPermissionAllDecorator(PermsDecorator): | |
1392 | """ |
|
1412 | """ | |
1393 | Checks for access permission for all given predicates for specific |
|
1413 | Checks for access permission for all given predicates for specific | |
1394 | repository. All of them have to be meet in order to fulfill the request |
|
1414 | repository. All of them have to be meet in order to fulfill the request | |
1395 | """ |
|
1415 | """ | |
1396 |
|
1416 | |||
1397 | def check_permissions(self, user): |
|
1417 | def check_permissions(self, user): | |
1398 | perms = user.permissions |
|
1418 | perms = user.permissions | |
1399 | repo_name = get_repo_slug(request) |
|
1419 | repo_name = get_repo_slug(request) | |
1400 | try: |
|
1420 | try: | |
1401 | user_perms = set([perms['repositories'][repo_name]]) |
|
1421 | user_perms = set([perms['repositories'][repo_name]]) | |
1402 | except KeyError: |
|
1422 | except KeyError: | |
1403 | return False |
|
1423 | return False | |
1404 | if self.required_perms.issubset(user_perms): |
|
1424 | if self.required_perms.issubset(user_perms): | |
1405 | return True |
|
1425 | return True | |
1406 | return False |
|
1426 | return False | |
1407 |
|
1427 | |||
1408 |
|
1428 | |||
1409 | class HasRepoPermissionAnyDecorator(PermsDecorator): |
|
1429 | class HasRepoPermissionAnyDecorator(PermsDecorator): | |
1410 | """ |
|
1430 | """ | |
1411 | Checks for access permission for any of given predicates for specific |
|
1431 | Checks for access permission for any of given predicates for specific | |
1412 | repository. In order to fulfill the request any of predicates must be meet |
|
1432 | repository. In order to fulfill the request any of predicates must be meet | |
1413 | """ |
|
1433 | """ | |
1414 |
|
1434 | |||
1415 | def check_permissions(self, user): |
|
1435 | def check_permissions(self, user): | |
1416 | perms = user.permissions |
|
1436 | perms = user.permissions | |
1417 | repo_name = get_repo_slug(request) |
|
1437 | repo_name = get_repo_slug(request) | |
1418 | try: |
|
1438 | try: | |
1419 | user_perms = set([perms['repositories'][repo_name]]) |
|
1439 | user_perms = set([perms['repositories'][repo_name]]) | |
1420 | except KeyError: |
|
1440 | except KeyError: | |
1421 | return False |
|
1441 | return False | |
1422 |
|
1442 | |||
1423 | if self.required_perms.intersection(user_perms): |
|
1443 | if self.required_perms.intersection(user_perms): | |
1424 | return True |
|
1444 | return True | |
1425 | return False |
|
1445 | return False | |
1426 |
|
1446 | |||
1427 |
|
1447 | |||
1428 | class HasRepoGroupPermissionAllDecorator(PermsDecorator): |
|
1448 | class HasRepoGroupPermissionAllDecorator(PermsDecorator): | |
1429 | """ |
|
1449 | """ | |
1430 | Checks for access permission for all given predicates for specific |
|
1450 | Checks for access permission for all given predicates for specific | |
1431 | repository group. All of them have to be meet in order to |
|
1451 | repository group. All of them have to be meet in order to | |
1432 | fulfill the request |
|
1452 | fulfill the request | |
1433 | """ |
|
1453 | """ | |
1434 |
|
1454 | |||
1435 | def check_permissions(self, user): |
|
1455 | def check_permissions(self, user): | |
1436 | perms = user.permissions |
|
1456 | perms = user.permissions | |
1437 | group_name = get_repo_group_slug(request) |
|
1457 | group_name = get_repo_group_slug(request) | |
1438 | try: |
|
1458 | try: | |
1439 | user_perms = set([perms['repositories_groups'][group_name]]) |
|
1459 | user_perms = set([perms['repositories_groups'][group_name]]) | |
1440 | except KeyError: |
|
1460 | except KeyError: | |
1441 | return False |
|
1461 | return False | |
1442 |
|
1462 | |||
1443 | if self.required_perms.issubset(user_perms): |
|
1463 | if self.required_perms.issubset(user_perms): | |
1444 | return True |
|
1464 | return True | |
1445 | return False |
|
1465 | return False | |
1446 |
|
1466 | |||
1447 |
|
1467 | |||
1448 | class HasRepoGroupPermissionAnyDecorator(PermsDecorator): |
|
1468 | class HasRepoGroupPermissionAnyDecorator(PermsDecorator): | |
1449 | """ |
|
1469 | """ | |
1450 | Checks for access permission for any of given predicates for specific |
|
1470 | Checks for access permission for any of given predicates for specific | |
1451 | repository group. In order to fulfill the request any |
|
1471 | repository group. In order to fulfill the request any | |
1452 | of predicates must be met |
|
1472 | of predicates must be met | |
1453 | """ |
|
1473 | """ | |
1454 |
|
1474 | |||
1455 | def check_permissions(self, user): |
|
1475 | def check_permissions(self, user): | |
1456 | perms = user.permissions |
|
1476 | perms = user.permissions | |
1457 | group_name = get_repo_group_slug(request) |
|
1477 | group_name = get_repo_group_slug(request) | |
1458 | try: |
|
1478 | try: | |
1459 | user_perms = set([perms['repositories_groups'][group_name]]) |
|
1479 | user_perms = set([perms['repositories_groups'][group_name]]) | |
1460 | except KeyError: |
|
1480 | except KeyError: | |
1461 | return False |
|
1481 | return False | |
1462 |
|
1482 | |||
1463 | if self.required_perms.intersection(user_perms): |
|
1483 | if self.required_perms.intersection(user_perms): | |
1464 | return True |
|
1484 | return True | |
1465 | return False |
|
1485 | return False | |
1466 |
|
1486 | |||
1467 |
|
1487 | |||
1468 | class HasUserGroupPermissionAllDecorator(PermsDecorator): |
|
1488 | class HasUserGroupPermissionAllDecorator(PermsDecorator): | |
1469 | """ |
|
1489 | """ | |
1470 | Checks for access permission for all given predicates for specific |
|
1490 | Checks for access permission for all given predicates for specific | |
1471 | user group. All of them have to be meet in order to fulfill the request |
|
1491 | user group. All of them have to be meet in order to fulfill the request | |
1472 | """ |
|
1492 | """ | |
1473 |
|
1493 | |||
1474 | def check_permissions(self, user): |
|
1494 | def check_permissions(self, user): | |
1475 | perms = user.permissions |
|
1495 | perms = user.permissions | |
1476 | group_name = get_user_group_slug(request) |
|
1496 | group_name = get_user_group_slug(request) | |
1477 | try: |
|
1497 | try: | |
1478 | user_perms = set([perms['user_groups'][group_name]]) |
|
1498 | user_perms = set([perms['user_groups'][group_name]]) | |
1479 | except KeyError: |
|
1499 | except KeyError: | |
1480 | return False |
|
1500 | return False | |
1481 |
|
1501 | |||
1482 | if self.required_perms.issubset(user_perms): |
|
1502 | if self.required_perms.issubset(user_perms): | |
1483 | return True |
|
1503 | return True | |
1484 | return False |
|
1504 | return False | |
1485 |
|
1505 | |||
1486 |
|
1506 | |||
1487 | class HasUserGroupPermissionAnyDecorator(PermsDecorator): |
|
1507 | class HasUserGroupPermissionAnyDecorator(PermsDecorator): | |
1488 | """ |
|
1508 | """ | |
1489 | Checks for access permission for any of given predicates for specific |
|
1509 | Checks for access permission for any of given predicates for specific | |
1490 | user group. In order to fulfill the request any of predicates must be meet |
|
1510 | user group. In order to fulfill the request any of predicates must be meet | |
1491 | """ |
|
1511 | """ | |
1492 |
|
1512 | |||
1493 | def check_permissions(self, user): |
|
1513 | def check_permissions(self, user): | |
1494 | perms = user.permissions |
|
1514 | perms = user.permissions | |
1495 | group_name = get_user_group_slug(request) |
|
1515 | group_name = get_user_group_slug(request) | |
1496 | try: |
|
1516 | try: | |
1497 | user_perms = set([perms['user_groups'][group_name]]) |
|
1517 | user_perms = set([perms['user_groups'][group_name]]) | |
1498 | except KeyError: |
|
1518 | except KeyError: | |
1499 | return False |
|
1519 | return False | |
1500 |
|
1520 | |||
1501 | if self.required_perms.intersection(user_perms): |
|
1521 | if self.required_perms.intersection(user_perms): | |
1502 | return True |
|
1522 | return True | |
1503 | return False |
|
1523 | return False | |
1504 |
|
1524 | |||
1505 |
|
1525 | |||
1506 | # CHECK FUNCTIONS |
|
1526 | # CHECK FUNCTIONS | |
1507 | class PermsFunction(object): |
|
1527 | class PermsFunction(object): | |
1508 | """Base function for other check functions""" |
|
1528 | """Base function for other check functions""" | |
1509 |
|
1529 | |||
1510 | def __init__(self, *perms): |
|
1530 | def __init__(self, *perms): | |
1511 | self.required_perms = set(perms) |
|
1531 | self.required_perms = set(perms) | |
1512 | self.repo_name = None |
|
1532 | self.repo_name = None | |
1513 | self.repo_group_name = None |
|
1533 | self.repo_group_name = None | |
1514 | self.user_group_name = None |
|
1534 | self.user_group_name = None | |
1515 |
|
1535 | |||
1516 | def __bool__(self): |
|
1536 | def __bool__(self): | |
1517 | frame = inspect.currentframe() |
|
1537 | frame = inspect.currentframe() | |
1518 | stack_trace = traceback.format_stack(frame) |
|
1538 | stack_trace = traceback.format_stack(frame) | |
1519 | log.error('Checking bool value on a class instance of perm ' |
|
1539 | log.error('Checking bool value on a class instance of perm ' | |
1520 | 'function is not allowed: %s' % ''.join(stack_trace)) |
|
1540 | 'function is not allowed: %s' % ''.join(stack_trace)) | |
1521 | # rather than throwing errors, here we always return False so if by |
|
1541 | # rather than throwing errors, here we always return False so if by | |
1522 | # accident someone checks truth for just an instance it will always end |
|
1542 | # accident someone checks truth for just an instance it will always end | |
1523 | # up in returning False |
|
1543 | # up in returning False | |
1524 | return False |
|
1544 | return False | |
1525 | __nonzero__ = __bool__ |
|
1545 | __nonzero__ = __bool__ | |
1526 |
|
1546 | |||
1527 | def __call__(self, check_location='', user=None): |
|
1547 | def __call__(self, check_location='', user=None): | |
1528 | if not user: |
|
1548 | if not user: | |
1529 | log.debug('Using user attribute from global request') |
|
1549 | log.debug('Using user attribute from global request') | |
1530 | # TODO: remove this someday,put as user as attribute here |
|
1550 | # TODO: remove this someday,put as user as attribute here | |
1531 | user = request.user |
|
1551 | user = request.user | |
1532 |
|
1552 | |||
1533 | # init auth user if not already given |
|
1553 | # init auth user if not already given | |
1534 | if not isinstance(user, AuthUser): |
|
1554 | if not isinstance(user, AuthUser): | |
1535 | log.debug('Wrapping user %s into AuthUser', user) |
|
1555 | log.debug('Wrapping user %s into AuthUser', user) | |
1536 | user = AuthUser(user.user_id) |
|
1556 | user = AuthUser(user.user_id) | |
1537 |
|
1557 | |||
1538 | cls_name = self.__class__.__name__ |
|
1558 | cls_name = self.__class__.__name__ | |
1539 | check_scope = self._get_check_scope(cls_name) |
|
1559 | check_scope = self._get_check_scope(cls_name) | |
1540 | check_location = check_location or 'unspecified location' |
|
1560 | check_location = check_location or 'unspecified location' | |
1541 |
|
1561 | |||
1542 | log.debug('checking cls:%s %s usr:%s %s @ %s', cls_name, |
|
1562 | log.debug('checking cls:%s %s usr:%s %s @ %s', cls_name, | |
1543 | self.required_perms, user, check_scope, check_location) |
|
1563 | self.required_perms, user, check_scope, check_location) | |
1544 | if not user: |
|
1564 | if not user: | |
1545 | log.warning('Empty user given for permission check') |
|
1565 | log.warning('Empty user given for permission check') | |
1546 | return False |
|
1566 | return False | |
1547 |
|
1567 | |||
1548 | if self.check_permissions(user): |
|
1568 | if self.check_permissions(user): | |
1549 | log.debug('Permission to repo:`%s` GRANTED for user:`%s` @ %s', |
|
1569 | log.debug('Permission to repo:`%s` GRANTED for user:`%s` @ %s', | |
1550 | check_scope, user, check_location) |
|
1570 | check_scope, user, check_location) | |
1551 | return True |
|
1571 | return True | |
1552 |
|
1572 | |||
1553 | else: |
|
1573 | else: | |
1554 | log.debug('Permission to repo:`%s` DENIED for user:`%s` @ %s', |
|
1574 | log.debug('Permission to repo:`%s` DENIED for user:`%s` @ %s', | |
1555 | check_scope, user, check_location) |
|
1575 | check_scope, user, check_location) | |
1556 | return False |
|
1576 | return False | |
1557 |
|
1577 | |||
1558 | def _get_check_scope(self, cls_name): |
|
1578 | def _get_check_scope(self, cls_name): | |
1559 | return { |
|
1579 | return { | |
1560 | 'HasPermissionAll': 'GLOBAL', |
|
1580 | 'HasPermissionAll': 'GLOBAL', | |
1561 | 'HasPermissionAny': 'GLOBAL', |
|
1581 | 'HasPermissionAny': 'GLOBAL', | |
1562 | 'HasRepoPermissionAll': 'repo:%s' % self.repo_name, |
|
1582 | 'HasRepoPermissionAll': 'repo:%s' % self.repo_name, | |
1563 | 'HasRepoPermissionAny': 'repo:%s' % self.repo_name, |
|
1583 | 'HasRepoPermissionAny': 'repo:%s' % self.repo_name, | |
1564 | 'HasRepoGroupPermissionAll': 'repo_group:%s' % self.repo_group_name, |
|
1584 | 'HasRepoGroupPermissionAll': 'repo_group:%s' % self.repo_group_name, | |
1565 | 'HasRepoGroupPermissionAny': 'repo_group:%s' % self.repo_group_name, |
|
1585 | 'HasRepoGroupPermissionAny': 'repo_group:%s' % self.repo_group_name, | |
1566 | 'HasUserGroupPermissionAll': 'user_group:%s' % self.user_group_name, |
|
1586 | 'HasUserGroupPermissionAll': 'user_group:%s' % self.user_group_name, | |
1567 | 'HasUserGroupPermissionAny': 'user_group:%s' % self.user_group_name, |
|
1587 | 'HasUserGroupPermissionAny': 'user_group:%s' % self.user_group_name, | |
1568 | }.get(cls_name, '?:%s' % cls_name) |
|
1588 | }.get(cls_name, '?:%s' % cls_name) | |
1569 |
|
1589 | |||
1570 | def check_permissions(self, user): |
|
1590 | def check_permissions(self, user): | |
1571 | """Dummy function for overriding""" |
|
1591 | """Dummy function for overriding""" | |
1572 | raise Exception('You have to write this function in child class') |
|
1592 | raise Exception('You have to write this function in child class') | |
1573 |
|
1593 | |||
1574 |
|
1594 | |||
1575 | class HasPermissionAll(PermsFunction): |
|
1595 | class HasPermissionAll(PermsFunction): | |
1576 | def check_permissions(self, user): |
|
1596 | def check_permissions(self, user): | |
1577 | perms = user.permissions_with_scope({}) |
|
1597 | perms = user.permissions_with_scope({}) | |
1578 | if self.required_perms.issubset(perms.get('global')): |
|
1598 | if self.required_perms.issubset(perms.get('global')): | |
1579 | return True |
|
1599 | return True | |
1580 | return False |
|
1600 | return False | |
1581 |
|
1601 | |||
1582 |
|
1602 | |||
1583 | class HasPermissionAny(PermsFunction): |
|
1603 | class HasPermissionAny(PermsFunction): | |
1584 | def check_permissions(self, user): |
|
1604 | def check_permissions(self, user): | |
1585 | perms = user.permissions_with_scope({}) |
|
1605 | perms = user.permissions_with_scope({}) | |
1586 | if self.required_perms.intersection(perms.get('global')): |
|
1606 | if self.required_perms.intersection(perms.get('global')): | |
1587 | return True |
|
1607 | return True | |
1588 | return False |
|
1608 | return False | |
1589 |
|
1609 | |||
1590 |
|
1610 | |||
1591 | class HasRepoPermissionAll(PermsFunction): |
|
1611 | class HasRepoPermissionAll(PermsFunction): | |
1592 | def __call__(self, repo_name=None, check_location='', user=None): |
|
1612 | def __call__(self, repo_name=None, check_location='', user=None): | |
1593 | self.repo_name = repo_name |
|
1613 | self.repo_name = repo_name | |
1594 | return super(HasRepoPermissionAll, self).__call__(check_location, user) |
|
1614 | return super(HasRepoPermissionAll, self).__call__(check_location, user) | |
1595 |
|
1615 | |||
1596 | def check_permissions(self, user): |
|
1616 | def check_permissions(self, user): | |
1597 | if not self.repo_name: |
|
1617 | if not self.repo_name: | |
1598 | self.repo_name = get_repo_slug(request) |
|
1618 | self.repo_name = get_repo_slug(request) | |
1599 |
|
1619 | |||
1600 | perms = user.permissions |
|
1620 | perms = user.permissions | |
1601 | try: |
|
1621 | try: | |
1602 | user_perms = set([perms['repositories'][self.repo_name]]) |
|
1622 | user_perms = set([perms['repositories'][self.repo_name]]) | |
1603 | except KeyError: |
|
1623 | except KeyError: | |
1604 | return False |
|
1624 | return False | |
1605 | if self.required_perms.issubset(user_perms): |
|
1625 | if self.required_perms.issubset(user_perms): | |
1606 | return True |
|
1626 | return True | |
1607 | return False |
|
1627 | return False | |
1608 |
|
1628 | |||
1609 |
|
1629 | |||
1610 | class HasRepoPermissionAny(PermsFunction): |
|
1630 | class HasRepoPermissionAny(PermsFunction): | |
1611 | def __call__(self, repo_name=None, check_location='', user=None): |
|
1631 | def __call__(self, repo_name=None, check_location='', user=None): | |
1612 | self.repo_name = repo_name |
|
1632 | self.repo_name = repo_name | |
1613 | return super(HasRepoPermissionAny, self).__call__(check_location, user) |
|
1633 | return super(HasRepoPermissionAny, self).__call__(check_location, user) | |
1614 |
|
1634 | |||
1615 | def check_permissions(self, user): |
|
1635 | def check_permissions(self, user): | |
1616 | if not self.repo_name: |
|
1636 | if not self.repo_name: | |
1617 | self.repo_name = get_repo_slug(request) |
|
1637 | self.repo_name = get_repo_slug(request) | |
1618 |
|
1638 | |||
1619 | perms = user.permissions |
|
1639 | perms = user.permissions | |
1620 | try: |
|
1640 | try: | |
1621 | user_perms = set([perms['repositories'][self.repo_name]]) |
|
1641 | user_perms = set([perms['repositories'][self.repo_name]]) | |
1622 | except KeyError: |
|
1642 | except KeyError: | |
1623 | return False |
|
1643 | return False | |
1624 | if self.required_perms.intersection(user_perms): |
|
1644 | if self.required_perms.intersection(user_perms): | |
1625 | return True |
|
1645 | return True | |
1626 | return False |
|
1646 | return False | |
1627 |
|
1647 | |||
1628 |
|
1648 | |||
1629 | class HasRepoGroupPermissionAny(PermsFunction): |
|
1649 | class HasRepoGroupPermissionAny(PermsFunction): | |
1630 | def __call__(self, group_name=None, check_location='', user=None): |
|
1650 | def __call__(self, group_name=None, check_location='', user=None): | |
1631 | self.repo_group_name = group_name |
|
1651 | self.repo_group_name = group_name | |
1632 | return super(HasRepoGroupPermissionAny, self).__call__( |
|
1652 | return super(HasRepoGroupPermissionAny, self).__call__( | |
1633 | check_location, user) |
|
1653 | check_location, user) | |
1634 |
|
1654 | |||
1635 | def check_permissions(self, user): |
|
1655 | def check_permissions(self, user): | |
1636 | perms = user.permissions |
|
1656 | perms = user.permissions | |
1637 | try: |
|
1657 | try: | |
1638 | user_perms = set( |
|
1658 | user_perms = set( | |
1639 | [perms['repositories_groups'][self.repo_group_name]]) |
|
1659 | [perms['repositories_groups'][self.repo_group_name]]) | |
1640 | except KeyError: |
|
1660 | except KeyError: | |
1641 | return False |
|
1661 | return False | |
1642 | if self.required_perms.intersection(user_perms): |
|
1662 | if self.required_perms.intersection(user_perms): | |
1643 | return True |
|
1663 | return True | |
1644 | return False |
|
1664 | return False | |
1645 |
|
1665 | |||
1646 |
|
1666 | |||
1647 | class HasRepoGroupPermissionAll(PermsFunction): |
|
1667 | class HasRepoGroupPermissionAll(PermsFunction): | |
1648 | def __call__(self, group_name=None, check_location='', user=None): |
|
1668 | def __call__(self, group_name=None, check_location='', user=None): | |
1649 | self.repo_group_name = group_name |
|
1669 | self.repo_group_name = group_name | |
1650 | return super(HasRepoGroupPermissionAll, self).__call__( |
|
1670 | return super(HasRepoGroupPermissionAll, self).__call__( | |
1651 | check_location, user) |
|
1671 | check_location, user) | |
1652 |
|
1672 | |||
1653 | def check_permissions(self, user): |
|
1673 | def check_permissions(self, user): | |
1654 | perms = user.permissions |
|
1674 | perms = user.permissions | |
1655 | try: |
|
1675 | try: | |
1656 | user_perms = set( |
|
1676 | user_perms = set( | |
1657 | [perms['repositories_groups'][self.repo_group_name]]) |
|
1677 | [perms['repositories_groups'][self.repo_group_name]]) | |
1658 | except KeyError: |
|
1678 | except KeyError: | |
1659 | return False |
|
1679 | return False | |
1660 | if self.required_perms.issubset(user_perms): |
|
1680 | if self.required_perms.issubset(user_perms): | |
1661 | return True |
|
1681 | return True | |
1662 | return False |
|
1682 | return False | |
1663 |
|
1683 | |||
1664 |
|
1684 | |||
1665 | class HasUserGroupPermissionAny(PermsFunction): |
|
1685 | class HasUserGroupPermissionAny(PermsFunction): | |
1666 | def __call__(self, user_group_name=None, check_location='', user=None): |
|
1686 | def __call__(self, user_group_name=None, check_location='', user=None): | |
1667 | self.user_group_name = user_group_name |
|
1687 | self.user_group_name = user_group_name | |
1668 | return super(HasUserGroupPermissionAny, self).__call__( |
|
1688 | return super(HasUserGroupPermissionAny, self).__call__( | |
1669 | check_location, user) |
|
1689 | check_location, user) | |
1670 |
|
1690 | |||
1671 | def check_permissions(self, user): |
|
1691 | def check_permissions(self, user): | |
1672 | perms = user.permissions |
|
1692 | perms = user.permissions | |
1673 | try: |
|
1693 | try: | |
1674 | user_perms = set([perms['user_groups'][self.user_group_name]]) |
|
1694 | user_perms = set([perms['user_groups'][self.user_group_name]]) | |
1675 | except KeyError: |
|
1695 | except KeyError: | |
1676 | return False |
|
1696 | return False | |
1677 | if self.required_perms.intersection(user_perms): |
|
1697 | if self.required_perms.intersection(user_perms): | |
1678 | return True |
|
1698 | return True | |
1679 | return False |
|
1699 | return False | |
1680 |
|
1700 | |||
1681 |
|
1701 | |||
1682 | class HasUserGroupPermissionAll(PermsFunction): |
|
1702 | class HasUserGroupPermissionAll(PermsFunction): | |
1683 | def __call__(self, user_group_name=None, check_location='', user=None): |
|
1703 | def __call__(self, user_group_name=None, check_location='', user=None): | |
1684 | self.user_group_name = user_group_name |
|
1704 | self.user_group_name = user_group_name | |
1685 | return super(HasUserGroupPermissionAll, self).__call__( |
|
1705 | return super(HasUserGroupPermissionAll, self).__call__( | |
1686 | check_location, user) |
|
1706 | check_location, user) | |
1687 |
|
1707 | |||
1688 | def check_permissions(self, user): |
|
1708 | def check_permissions(self, user): | |
1689 | perms = user.permissions |
|
1709 | perms = user.permissions | |
1690 | try: |
|
1710 | try: | |
1691 | user_perms = set([perms['user_groups'][self.user_group_name]]) |
|
1711 | user_perms = set([perms['user_groups'][self.user_group_name]]) | |
1692 | except KeyError: |
|
1712 | except KeyError: | |
1693 | return False |
|
1713 | return False | |
1694 | if self.required_perms.issubset(user_perms): |
|
1714 | if self.required_perms.issubset(user_perms): | |
1695 | return True |
|
1715 | return True | |
1696 | return False |
|
1716 | return False | |
1697 |
|
1717 | |||
1698 |
|
1718 | |||
1699 | # SPECIAL VERSION TO HANDLE MIDDLEWARE AUTH |
|
1719 | # SPECIAL VERSION TO HANDLE MIDDLEWARE AUTH | |
1700 | class HasPermissionAnyMiddleware(object): |
|
1720 | class HasPermissionAnyMiddleware(object): | |
1701 | def __init__(self, *perms): |
|
1721 | def __init__(self, *perms): | |
1702 | self.required_perms = set(perms) |
|
1722 | self.required_perms = set(perms) | |
1703 |
|
1723 | |||
1704 | def __call__(self, user, repo_name): |
|
1724 | def __call__(self, user, repo_name): | |
1705 | # repo_name MUST be unicode, since we handle keys in permission |
|
1725 | # repo_name MUST be unicode, since we handle keys in permission | |
1706 | # dict by unicode |
|
1726 | # dict by unicode | |
1707 | repo_name = safe_unicode(repo_name) |
|
1727 | repo_name = safe_unicode(repo_name) | |
1708 | user = AuthUser(user.user_id) |
|
1728 | user = AuthUser(user.user_id) | |
1709 | log.debug( |
|
1729 | log.debug( | |
1710 | 'Checking VCS protocol permissions %s for user:%s repo:`%s`', |
|
1730 | 'Checking VCS protocol permissions %s for user:%s repo:`%s`', | |
1711 | self.required_perms, user, repo_name) |
|
1731 | self.required_perms, user, repo_name) | |
1712 |
|
1732 | |||
1713 | if self.check_permissions(user, repo_name): |
|
1733 | if self.check_permissions(user, repo_name): | |
1714 | log.debug('Permission to repo:`%s` GRANTED for user:%s @ %s', |
|
1734 | log.debug('Permission to repo:`%s` GRANTED for user:%s @ %s', | |
1715 | repo_name, user, 'PermissionMiddleware') |
|
1735 | repo_name, user, 'PermissionMiddleware') | |
1716 | return True |
|
1736 | return True | |
1717 |
|
1737 | |||
1718 | else: |
|
1738 | else: | |
1719 | log.debug('Permission to repo:`%s` DENIED for user:%s @ %s', |
|
1739 | log.debug('Permission to repo:`%s` DENIED for user:%s @ %s', | |
1720 | repo_name, user, 'PermissionMiddleware') |
|
1740 | repo_name, user, 'PermissionMiddleware') | |
1721 | return False |
|
1741 | return False | |
1722 |
|
1742 | |||
1723 | def check_permissions(self, user, repo_name): |
|
1743 | def check_permissions(self, user, repo_name): | |
1724 | perms = user.permissions_with_scope({'repo_name': repo_name}) |
|
1744 | perms = user.permissions_with_scope({'repo_name': repo_name}) | |
1725 |
|
1745 | |||
1726 | try: |
|
1746 | try: | |
1727 | user_perms = set([perms['repositories'][repo_name]]) |
|
1747 | user_perms = set([perms['repositories'][repo_name]]) | |
1728 | except Exception: |
|
1748 | except Exception: | |
1729 | log.exception('Error while accessing user permissions') |
|
1749 | log.exception('Error while accessing user permissions') | |
1730 | return False |
|
1750 | return False | |
1731 |
|
1751 | |||
1732 | if self.required_perms.intersection(user_perms): |
|
1752 | if self.required_perms.intersection(user_perms): | |
1733 | return True |
|
1753 | return True | |
1734 | return False |
|
1754 | return False | |
1735 |
|
1755 | |||
1736 |
|
1756 | |||
1737 | # SPECIAL VERSION TO HANDLE API AUTH |
|
1757 | # SPECIAL VERSION TO HANDLE API AUTH | |
1738 | class _BaseApiPerm(object): |
|
1758 | class _BaseApiPerm(object): | |
1739 | def __init__(self, *perms): |
|
1759 | def __init__(self, *perms): | |
1740 | self.required_perms = set(perms) |
|
1760 | self.required_perms = set(perms) | |
1741 |
|
1761 | |||
1742 | def __call__(self, check_location=None, user=None, repo_name=None, |
|
1762 | def __call__(self, check_location=None, user=None, repo_name=None, | |
1743 | group_name=None, user_group_name=None): |
|
1763 | group_name=None, user_group_name=None): | |
1744 | cls_name = self.__class__.__name__ |
|
1764 | cls_name = self.__class__.__name__ | |
1745 | check_scope = 'global:%s' % (self.required_perms,) |
|
1765 | check_scope = 'global:%s' % (self.required_perms,) | |
1746 | if repo_name: |
|
1766 | if repo_name: | |
1747 | check_scope += ', repo_name:%s' % (repo_name,) |
|
1767 | check_scope += ', repo_name:%s' % (repo_name,) | |
1748 |
|
1768 | |||
1749 | if group_name: |
|
1769 | if group_name: | |
1750 | check_scope += ', repo_group_name:%s' % (group_name,) |
|
1770 | check_scope += ', repo_group_name:%s' % (group_name,) | |
1751 |
|
1771 | |||
1752 | if user_group_name: |
|
1772 | if user_group_name: | |
1753 | check_scope += ', user_group_name:%s' % (user_group_name,) |
|
1773 | check_scope += ', user_group_name:%s' % (user_group_name,) | |
1754 |
|
1774 | |||
1755 | log.debug( |
|
1775 | log.debug( | |
1756 | 'checking cls:%s %s %s @ %s' |
|
1776 | 'checking cls:%s %s %s @ %s' | |
1757 | % (cls_name, self.required_perms, check_scope, check_location)) |
|
1777 | % (cls_name, self.required_perms, check_scope, check_location)) | |
1758 | if not user: |
|
1778 | if not user: | |
1759 | log.debug('Empty User passed into arguments') |
|
1779 | log.debug('Empty User passed into arguments') | |
1760 | return False |
|
1780 | return False | |
1761 |
|
1781 | |||
1762 | # process user |
|
1782 | # process user | |
1763 | if not isinstance(user, AuthUser): |
|
1783 | if not isinstance(user, AuthUser): | |
1764 | user = AuthUser(user.user_id) |
|
1784 | user = AuthUser(user.user_id) | |
1765 | if not check_location: |
|
1785 | if not check_location: | |
1766 | check_location = 'unspecified' |
|
1786 | check_location = 'unspecified' | |
1767 | if self.check_permissions(user.permissions, repo_name, group_name, |
|
1787 | if self.check_permissions(user.permissions, repo_name, group_name, | |
1768 | user_group_name): |
|
1788 | user_group_name): | |
1769 | log.debug('Permission to repo:`%s` GRANTED for user:`%s` @ %s', |
|
1789 | log.debug('Permission to repo:`%s` GRANTED for user:`%s` @ %s', | |
1770 | check_scope, user, check_location) |
|
1790 | check_scope, user, check_location) | |
1771 | return True |
|
1791 | return True | |
1772 |
|
1792 | |||
1773 | else: |
|
1793 | else: | |
1774 | log.debug('Permission to repo:`%s` DENIED for user:`%s` @ %s', |
|
1794 | log.debug('Permission to repo:`%s` DENIED for user:`%s` @ %s', | |
1775 | check_scope, user, check_location) |
|
1795 | check_scope, user, check_location) | |
1776 | return False |
|
1796 | return False | |
1777 |
|
1797 | |||
1778 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1798 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1779 | user_group_name=None): |
|
1799 | user_group_name=None): | |
1780 | """ |
|
1800 | """ | |
1781 | implement in child class should return True if permissions are ok, |
|
1801 | implement in child class should return True if permissions are ok, | |
1782 | False otherwise |
|
1802 | False otherwise | |
1783 |
|
1803 | |||
1784 | :param perm_defs: dict with permission definitions |
|
1804 | :param perm_defs: dict with permission definitions | |
1785 | :param repo_name: repo name |
|
1805 | :param repo_name: repo name | |
1786 | """ |
|
1806 | """ | |
1787 | raise NotImplementedError() |
|
1807 | raise NotImplementedError() | |
1788 |
|
1808 | |||
1789 |
|
1809 | |||
1790 | class HasPermissionAllApi(_BaseApiPerm): |
|
1810 | class HasPermissionAllApi(_BaseApiPerm): | |
1791 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1811 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1792 | user_group_name=None): |
|
1812 | user_group_name=None): | |
1793 | if self.required_perms.issubset(perm_defs.get('global')): |
|
1813 | if self.required_perms.issubset(perm_defs.get('global')): | |
1794 | return True |
|
1814 | return True | |
1795 | return False |
|
1815 | return False | |
1796 |
|
1816 | |||
1797 |
|
1817 | |||
1798 | class HasPermissionAnyApi(_BaseApiPerm): |
|
1818 | class HasPermissionAnyApi(_BaseApiPerm): | |
1799 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1819 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1800 | user_group_name=None): |
|
1820 | user_group_name=None): | |
1801 | if self.required_perms.intersection(perm_defs.get('global')): |
|
1821 | if self.required_perms.intersection(perm_defs.get('global')): | |
1802 | return True |
|
1822 | return True | |
1803 | return False |
|
1823 | return False | |
1804 |
|
1824 | |||
1805 |
|
1825 | |||
1806 | class HasRepoPermissionAllApi(_BaseApiPerm): |
|
1826 | class HasRepoPermissionAllApi(_BaseApiPerm): | |
1807 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1827 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1808 | user_group_name=None): |
|
1828 | user_group_name=None): | |
1809 | try: |
|
1829 | try: | |
1810 | _user_perms = set([perm_defs['repositories'][repo_name]]) |
|
1830 | _user_perms = set([perm_defs['repositories'][repo_name]]) | |
1811 | except KeyError: |
|
1831 | except KeyError: | |
1812 | log.warning(traceback.format_exc()) |
|
1832 | log.warning(traceback.format_exc()) | |
1813 | return False |
|
1833 | return False | |
1814 | if self.required_perms.issubset(_user_perms): |
|
1834 | if self.required_perms.issubset(_user_perms): | |
1815 | return True |
|
1835 | return True | |
1816 | return False |
|
1836 | return False | |
1817 |
|
1837 | |||
1818 |
|
1838 | |||
1819 | class HasRepoPermissionAnyApi(_BaseApiPerm): |
|
1839 | class HasRepoPermissionAnyApi(_BaseApiPerm): | |
1820 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1840 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1821 | user_group_name=None): |
|
1841 | user_group_name=None): | |
1822 | try: |
|
1842 | try: | |
1823 | _user_perms = set([perm_defs['repositories'][repo_name]]) |
|
1843 | _user_perms = set([perm_defs['repositories'][repo_name]]) | |
1824 | except KeyError: |
|
1844 | except KeyError: | |
1825 | log.warning(traceback.format_exc()) |
|
1845 | log.warning(traceback.format_exc()) | |
1826 | return False |
|
1846 | return False | |
1827 | if self.required_perms.intersection(_user_perms): |
|
1847 | if self.required_perms.intersection(_user_perms): | |
1828 | return True |
|
1848 | return True | |
1829 | return False |
|
1849 | return False | |
1830 |
|
1850 | |||
1831 |
|
1851 | |||
1832 | class HasRepoGroupPermissionAnyApi(_BaseApiPerm): |
|
1852 | class HasRepoGroupPermissionAnyApi(_BaseApiPerm): | |
1833 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1853 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1834 | user_group_name=None): |
|
1854 | user_group_name=None): | |
1835 | try: |
|
1855 | try: | |
1836 | _user_perms = set([perm_defs['repositories_groups'][group_name]]) |
|
1856 | _user_perms = set([perm_defs['repositories_groups'][group_name]]) | |
1837 | except KeyError: |
|
1857 | except KeyError: | |
1838 | log.warning(traceback.format_exc()) |
|
1858 | log.warning(traceback.format_exc()) | |
1839 | return False |
|
1859 | return False | |
1840 | if self.required_perms.intersection(_user_perms): |
|
1860 | if self.required_perms.intersection(_user_perms): | |
1841 | return True |
|
1861 | return True | |
1842 | return False |
|
1862 | return False | |
1843 |
|
1863 | |||
1844 |
|
1864 | |||
1845 | class HasRepoGroupPermissionAllApi(_BaseApiPerm): |
|
1865 | class HasRepoGroupPermissionAllApi(_BaseApiPerm): | |
1846 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1866 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1847 | user_group_name=None): |
|
1867 | user_group_name=None): | |
1848 | try: |
|
1868 | try: | |
1849 | _user_perms = set([perm_defs['repositories_groups'][group_name]]) |
|
1869 | _user_perms = set([perm_defs['repositories_groups'][group_name]]) | |
1850 | except KeyError: |
|
1870 | except KeyError: | |
1851 | log.warning(traceback.format_exc()) |
|
1871 | log.warning(traceback.format_exc()) | |
1852 | return False |
|
1872 | return False | |
1853 | if self.required_perms.issubset(_user_perms): |
|
1873 | if self.required_perms.issubset(_user_perms): | |
1854 | return True |
|
1874 | return True | |
1855 | return False |
|
1875 | return False | |
1856 |
|
1876 | |||
1857 |
|
1877 | |||
1858 | class HasUserGroupPermissionAnyApi(_BaseApiPerm): |
|
1878 | class HasUserGroupPermissionAnyApi(_BaseApiPerm): | |
1859 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, |
|
1879 | def check_permissions(self, perm_defs, repo_name=None, group_name=None, | |
1860 | user_group_name=None): |
|
1880 | user_group_name=None): | |
1861 | try: |
|
1881 | try: | |
1862 | _user_perms = set([perm_defs['user_groups'][user_group_name]]) |
|
1882 | _user_perms = set([perm_defs['user_groups'][user_group_name]]) | |
1863 | except KeyError: |
|
1883 | except KeyError: | |
1864 | log.warning(traceback.format_exc()) |
|
1884 | log.warning(traceback.format_exc()) | |
1865 | return False |
|
1885 | return False | |
1866 | if self.required_perms.intersection(_user_perms): |
|
1886 | if self.required_perms.intersection(_user_perms): | |
1867 | return True |
|
1887 | return True | |
1868 | return False |
|
1888 | return False | |
1869 |
|
1889 | |||
1870 |
|
1890 | |||
1871 | def check_ip_access(source_ip, allowed_ips=None): |
|
1891 | def check_ip_access(source_ip, allowed_ips=None): | |
1872 | """ |
|
1892 | """ | |
1873 | Checks if source_ip is a subnet of any of allowed_ips. |
|
1893 | Checks if source_ip is a subnet of any of allowed_ips. | |
1874 |
|
1894 | |||
1875 | :param source_ip: |
|
1895 | :param source_ip: | |
1876 | :param allowed_ips: list of allowed ips together with mask |
|
1896 | :param allowed_ips: list of allowed ips together with mask | |
1877 | """ |
|
1897 | """ | |
1878 | log.debug('checking if ip:%s is subnet of %s' % (source_ip, allowed_ips)) |
|
1898 | log.debug('checking if ip:%s is subnet of %s' % (source_ip, allowed_ips)) | |
1879 | source_ip_address = ipaddress.ip_address(source_ip) |
|
1899 | source_ip_address = ipaddress.ip_address(source_ip) | |
1880 | if isinstance(allowed_ips, (tuple, list, set)): |
|
1900 | if isinstance(allowed_ips, (tuple, list, set)): | |
1881 | for ip in allowed_ips: |
|
1901 | for ip in allowed_ips: | |
1882 | try: |
|
1902 | try: | |
1883 | network_address = ipaddress.ip_network(ip, strict=False) |
|
1903 | network_address = ipaddress.ip_network(ip, strict=False) | |
1884 | if source_ip_address in network_address: |
|
1904 | if source_ip_address in network_address: | |
1885 | log.debug('IP %s is network %s' % |
|
1905 | log.debug('IP %s is network %s' % | |
1886 | (source_ip_address, network_address)) |
|
1906 | (source_ip_address, network_address)) | |
1887 | return True |
|
1907 | return True | |
1888 | # for any case we cannot determine the IP, don't crash just |
|
1908 | # for any case we cannot determine the IP, don't crash just | |
1889 | # skip it and log as error, we want to say forbidden still when |
|
1909 | # skip it and log as error, we want to say forbidden still when | |
1890 | # sending bad IP |
|
1910 | # sending bad IP | |
1891 | except Exception: |
|
1911 | except Exception: | |
1892 | log.error(traceback.format_exc()) |
|
1912 | log.error(traceback.format_exc()) | |
1893 | continue |
|
1913 | continue | |
1894 | return False |
|
1914 | return False | |
1895 |
|
1915 | |||
1896 |
|
1916 | |||
1897 | def get_cython_compat_decorator(wrapper, func): |
|
1917 | def get_cython_compat_decorator(wrapper, func): | |
1898 | """ |
|
1918 | """ | |
1899 | Creates a cython compatible decorator. The previously used |
|
1919 | Creates a cython compatible decorator. The previously used | |
1900 | decorator.decorator() function seems to be incompatible with cython. |
|
1920 | decorator.decorator() function seems to be incompatible with cython. | |
1901 |
|
1921 | |||
1902 | :param wrapper: __wrapper method of the decorator class |
|
1922 | :param wrapper: __wrapper method of the decorator class | |
1903 | :param func: decorated function |
|
1923 | :param func: decorated function | |
1904 | """ |
|
1924 | """ | |
1905 | @wraps(func) |
|
1925 | @wraps(func) | |
1906 | def local_wrapper(*args, **kwds): |
|
1926 | def local_wrapper(*args, **kwds): | |
1907 | return wrapper(func, *args, **kwds) |
|
1927 | return wrapper(func, *args, **kwds) | |
1908 | local_wrapper.__wrapped__ = func |
|
1928 | local_wrapper.__wrapped__ = func | |
1909 | return local_wrapper |
|
1929 | return local_wrapper |
@@ -1,598 +1,598 b'' | |||||
1 | ## -*- coding: utf-8 -*- |
|
1 | ## -*- coding: utf-8 -*- | |
2 | <%inherit file="root.mako"/> |
|
2 | <%inherit file="root.mako"/> | |
3 |
|
3 | |||
4 | <div class="outerwrapper"> |
|
4 | <div class="outerwrapper"> | |
5 | <!-- HEADER --> |
|
5 | <!-- HEADER --> | |
6 | <div class="header"> |
|
6 | <div class="header"> | |
7 | <div id="header-inner" class="wrapper"> |
|
7 | <div id="header-inner" class="wrapper"> | |
8 | <div id="logo"> |
|
8 | <div id="logo"> | |
9 | <div class="logo-wrapper"> |
|
9 | <div class="logo-wrapper"> | |
10 | <a href="${h.url('home')}"><img src="${h.asset('images/rhodecode-logo-white-216x60.png')}" alt="RhodeCode"/></a> |
|
10 | <a href="${h.url('home')}"><img src="${h.asset('images/rhodecode-logo-white-216x60.png')}" alt="RhodeCode"/></a> | |
11 | </div> |
|
11 | </div> | |
12 | %if c.rhodecode_name: |
|
12 | %if c.rhodecode_name: | |
13 | <div class="branding">- ${h.branding(c.rhodecode_name)}</div> |
|
13 | <div class="branding">- ${h.branding(c.rhodecode_name)}</div> | |
14 | %endif |
|
14 | %endif | |
15 | </div> |
|
15 | </div> | |
16 | <!-- MENU BAR NAV --> |
|
16 | <!-- MENU BAR NAV --> | |
17 | ${self.menu_bar_nav()} |
|
17 | ${self.menu_bar_nav()} | |
18 | <!-- END MENU BAR NAV --> |
|
18 | <!-- END MENU BAR NAV --> | |
19 | </div> |
|
19 | </div> | |
20 | </div> |
|
20 | </div> | |
21 | ${self.menu_bar_subnav()} |
|
21 | ${self.menu_bar_subnav()} | |
22 | <!-- END HEADER --> |
|
22 | <!-- END HEADER --> | |
23 |
|
23 | |||
24 | <!-- CONTENT --> |
|
24 | <!-- CONTENT --> | |
25 | <div id="content" class="wrapper"> |
|
25 | <div id="content" class="wrapper"> | |
26 | <div class="main"> |
|
26 | <div class="main"> | |
27 | ${next.main()} |
|
27 | ${next.main()} | |
28 | </div> |
|
28 | </div> | |
29 | </div> |
|
29 | </div> | |
30 | <!-- END CONTENT --> |
|
30 | <!-- END CONTENT --> | |
31 |
|
31 | |||
32 | </div> |
|
32 | </div> | |
33 | <!-- FOOTER --> |
|
33 | <!-- FOOTER --> | |
34 | <div id="footer"> |
|
34 | <div id="footer"> | |
35 | <div id="footer-inner" class="title wrapper"> |
|
35 | <div id="footer-inner" class="title wrapper"> | |
36 | <div> |
|
36 | <div> | |
37 | <p class="footer-link-right"> |
|
37 | <p class="footer-link-right"> | |
38 | % if c.visual.show_version: |
|
38 | % if c.visual.show_version: | |
39 | RhodeCode Enterprise ${c.rhodecode_version} ${c.rhodecode_edition} |
|
39 | RhodeCode Enterprise ${c.rhodecode_version} ${c.rhodecode_edition} | |
40 | % endif |
|
40 | % endif | |
41 | © 2010-${h.datetime.today().year}, <a href="${h.url('rhodecode_official')}" target="_blank">RhodeCode GmbH</a>. All rights reserved. |
|
41 | © 2010-${h.datetime.today().year}, <a href="${h.url('rhodecode_official')}" target="_blank">RhodeCode GmbH</a>. All rights reserved. | |
42 | % if c.visual.rhodecode_support_url: |
|
42 | % if c.visual.rhodecode_support_url: | |
43 | <a href="${c.visual.rhodecode_support_url}" target="_blank">${_('Support')}</a> |
|
43 | <a href="${c.visual.rhodecode_support_url}" target="_blank">${_('Support')}</a> | |
44 | % endif |
|
44 | % endif | |
45 | </p> |
|
45 | </p> | |
46 | <% sid = 'block' if request.GET.get('showrcid') else 'none' %> |
|
46 | <% sid = 'block' if request.GET.get('showrcid') else 'none' %> | |
47 | <p class="server-instance" style="display:${sid}"> |
|
47 | <p class="server-instance" style="display:${sid}"> | |
48 | ## display hidden instance ID if specially defined |
|
48 | ## display hidden instance ID if specially defined | |
49 | % if c.rhodecode_instanceid: |
|
49 | % if c.rhodecode_instanceid: | |
50 | ${_('RhodeCode instance id: %s') % c.rhodecode_instanceid} |
|
50 | ${_('RhodeCode instance id: %s') % c.rhodecode_instanceid} | |
51 | % endif |
|
51 | % endif | |
52 | </p> |
|
52 | </p> | |
53 | </div> |
|
53 | </div> | |
54 | </div> |
|
54 | </div> | |
55 | </div> |
|
55 | </div> | |
56 |
|
56 | |||
57 | <!-- END FOOTER --> |
|
57 | <!-- END FOOTER --> | |
58 |
|
58 | |||
59 | ### MAKO DEFS ### |
|
59 | ### MAKO DEFS ### | |
60 |
|
60 | |||
61 | <%def name="menu_bar_subnav()"> |
|
61 | <%def name="menu_bar_subnav()"> | |
62 | </%def> |
|
62 | </%def> | |
63 |
|
63 | |||
64 | <%def name="breadcrumbs(class_='breadcrumbs')"> |
|
64 | <%def name="breadcrumbs(class_='breadcrumbs')"> | |
65 | <div class="${class_}"> |
|
65 | <div class="${class_}"> | |
66 | ${self.breadcrumbs_links()} |
|
66 | ${self.breadcrumbs_links()} | |
67 | </div> |
|
67 | </div> | |
68 | </%def> |
|
68 | </%def> | |
69 |
|
69 | |||
70 | <%def name="admin_menu()"> |
|
70 | <%def name="admin_menu()"> | |
71 | <ul class="admin_menu submenu"> |
|
71 | <ul class="admin_menu submenu"> | |
72 | <li><a href="${h.url('admin_home')}">${_('Admin journal')}</a></li> |
|
72 | <li><a href="${h.url('admin_home')}">${_('Admin journal')}</a></li> | |
73 | <li><a href="${h.url('repos')}">${_('Repositories')}</a></li> |
|
73 | <li><a href="${h.url('repos')}">${_('Repositories')}</a></li> | |
74 | <li><a href="${h.url('repo_groups')}">${_('Repository groups')}</a></li> |
|
74 | <li><a href="${h.url('repo_groups')}">${_('Repository groups')}</a></li> | |
75 | <li><a href="${h.url('users')}">${_('Users')}</a></li> |
|
75 | <li><a href="${h.url('users')}">${_('Users')}</a></li> | |
76 | <li><a href="${h.url('users_groups')}">${_('User groups')}</a></li> |
|
76 | <li><a href="${h.url('users_groups')}">${_('User groups')}</a></li> | |
77 | <li><a href="${h.url('admin_permissions_application')}">${_('Permissions')}</a></li> |
|
77 | <li><a href="${h.url('admin_permissions_application')}">${_('Permissions')}</a></li> | |
78 | <li><a href="${h.route_path('auth_home', traverse='')}">${_('Authentication')}</a></li> |
|
78 | <li><a href="${h.route_path('auth_home', traverse='')}">${_('Authentication')}</a></li> | |
79 | <li><a href="${h.route_path('global_integrations_home')}">${_('Integrations')}</a></li> |
|
79 | <li><a href="${h.route_path('global_integrations_home')}">${_('Integrations')}</a></li> | |
80 | <li><a href="${h.url('admin_defaults_repositories')}">${_('Defaults')}</a></li> |
|
80 | <li><a href="${h.url('admin_defaults_repositories')}">${_('Defaults')}</a></li> | |
81 | <li class="last"><a href="${h.url('admin_settings')}">${_('Settings')}</a></li> |
|
81 | <li class="last"><a href="${h.url('admin_settings')}">${_('Settings')}</a></li> | |
82 | </ul> |
|
82 | </ul> | |
83 | </%def> |
|
83 | </%def> | |
84 |
|
84 | |||
85 |
|
85 | |||
86 | <%def name="dt_info_panel(elements)"> |
|
86 | <%def name="dt_info_panel(elements)"> | |
87 | <dl class="dl-horizontal"> |
|
87 | <dl class="dl-horizontal"> | |
88 | %for dt, dd, title, show_items in elements: |
|
88 | %for dt, dd, title, show_items in elements: | |
89 | <dt>${dt}:</dt> |
|
89 | <dt>${dt}:</dt> | |
90 | <dd title="${title}"> |
|
90 | <dd title="${title}"> | |
91 | %if callable(dd): |
|
91 | %if callable(dd): | |
92 | ## allow lazy evaluation of elements |
|
92 | ## allow lazy evaluation of elements | |
93 | ${dd()} |
|
93 | ${dd()} | |
94 | %else: |
|
94 | %else: | |
95 | ${dd} |
|
95 | ${dd} | |
96 | %endif |
|
96 | %endif | |
97 | %if show_items: |
|
97 | %if show_items: | |
98 | <span class="btn-collapse" data-toggle="item-${h.md5_safe(dt)[:6]}-details">${_('Show More')} </span> |
|
98 | <span class="btn-collapse" data-toggle="item-${h.md5_safe(dt)[:6]}-details">${_('Show More')} </span> | |
99 | %endif |
|
99 | %endif | |
100 | </dd> |
|
100 | </dd> | |
101 |
|
101 | |||
102 | %if show_items: |
|
102 | %if show_items: | |
103 | <div class="collapsable-content" data-toggle="item-${h.md5_safe(dt)[:6]}-details" style="display: none"> |
|
103 | <div class="collapsable-content" data-toggle="item-${h.md5_safe(dt)[:6]}-details" style="display: none"> | |
104 | %for item in show_items: |
|
104 | %for item in show_items: | |
105 | <dt></dt> |
|
105 | <dt></dt> | |
106 | <dd>${item}</dd> |
|
106 | <dd>${item}</dd> | |
107 | %endfor |
|
107 | %endfor | |
108 | </div> |
|
108 | </div> | |
109 | %endif |
|
109 | %endif | |
110 |
|
110 | |||
111 | %endfor |
|
111 | %endfor | |
112 | </dl> |
|
112 | </dl> | |
113 | </%def> |
|
113 | </%def> | |
114 |
|
114 | |||
115 |
|
115 | |||
116 | <%def name="gravatar(email, size=16)"> |
|
116 | <%def name="gravatar(email, size=16)"> | |
117 | <% |
|
117 | <% | |
118 | if (size > 16): |
|
118 | if (size > 16): | |
119 | gravatar_class = 'gravatar gravatar-large' |
|
119 | gravatar_class = 'gravatar gravatar-large' | |
120 | else: |
|
120 | else: | |
121 | gravatar_class = 'gravatar' |
|
121 | gravatar_class = 'gravatar' | |
122 | %> |
|
122 | %> | |
123 | <%doc> |
|
123 | <%doc> | |
124 | TODO: johbo: For now we serve double size images to make it smooth |
|
124 | TODO: johbo: For now we serve double size images to make it smooth | |
125 | for retina. This is how it worked until now. Should be replaced |
|
125 | for retina. This is how it worked until now. Should be replaced | |
126 | with a better solution at some point. |
|
126 | with a better solution at some point. | |
127 | </%doc> |
|
127 | </%doc> | |
128 | <img class="${gravatar_class}" src="${h.gravatar_url(email, size * 2)}" height="${size}" width="${size}"> |
|
128 | <img class="${gravatar_class}" src="${h.gravatar_url(email, size * 2)}" height="${size}" width="${size}"> | |
129 | </%def> |
|
129 | </%def> | |
130 |
|
130 | |||
131 |
|
131 | |||
132 | <%def name="gravatar_with_user(contact, size=16, show_disabled=False)"> |
|
132 | <%def name="gravatar_with_user(contact, size=16, show_disabled=False)"> | |
133 | <% email = h.email_or_none(contact) %> |
|
133 | <% email = h.email_or_none(contact) %> | |
134 | <div class="rc-user tooltip" title="${h.author_string(email)}"> |
|
134 | <div class="rc-user tooltip" title="${h.author_string(email)}"> | |
135 | ${self.gravatar(email, size)} |
|
135 | ${self.gravatar(email, size)} | |
136 | <span class="${'user user-disabled' if show_disabled else 'user'}"> ${h.link_to_user(contact)}</span> |
|
136 | <span class="${'user user-disabled' if show_disabled else 'user'}"> ${h.link_to_user(contact)}</span> | |
137 | </div> |
|
137 | </div> | |
138 | </%def> |
|
138 | </%def> | |
139 |
|
139 | |||
140 |
|
140 | |||
141 | ## admin menu used for people that have some admin resources |
|
141 | ## admin menu used for people that have some admin resources | |
142 | <%def name="admin_menu_simple(repositories=None, repository_groups=None, user_groups=None)"> |
|
142 | <%def name="admin_menu_simple(repositories=None, repository_groups=None, user_groups=None)"> | |
143 | <ul class="submenu"> |
|
143 | <ul class="submenu"> | |
144 | %if repositories: |
|
144 | %if repositories: | |
145 | <li><a href="${h.url('repos')}">${_('Repositories')}</a></li> |
|
145 | <li class="local-admin-repos"><a href="${h.url('repos')}">${_('Repositories')}</a></li> | |
146 | %endif |
|
146 | %endif | |
147 | %if repository_groups: |
|
147 | %if repository_groups: | |
148 | <li><a href="${h.url('repo_groups')}">${_('Repository groups')}</a></li> |
|
148 | <li class="local-admin-repo-groups"><a href="${h.url('repo_groups')}">${_('Repository groups')}</a></li> | |
149 | %endif |
|
149 | %endif | |
150 | %if user_groups: |
|
150 | %if user_groups: | |
151 | <li><a href="${h.url('users_groups')}">${_('User groups')}</a></li> |
|
151 | <li class="local-admin-user-groups"><a href="${h.url('users_groups')}">${_('User groups')}</a></li> | |
152 | %endif |
|
152 | %endif | |
153 | </ul> |
|
153 | </ul> | |
154 | </%def> |
|
154 | </%def> | |
155 |
|
155 | |||
156 | <%def name="repo_page_title(repo_instance)"> |
|
156 | <%def name="repo_page_title(repo_instance)"> | |
157 | <div class="title-content"> |
|
157 | <div class="title-content"> | |
158 | <div class="title-main"> |
|
158 | <div class="title-main"> | |
159 | ## SVN/HG/GIT icons |
|
159 | ## SVN/HG/GIT icons | |
160 | %if h.is_hg(repo_instance): |
|
160 | %if h.is_hg(repo_instance): | |
161 | <i class="icon-hg"></i> |
|
161 | <i class="icon-hg"></i> | |
162 | %endif |
|
162 | %endif | |
163 | %if h.is_git(repo_instance): |
|
163 | %if h.is_git(repo_instance): | |
164 | <i class="icon-git"></i> |
|
164 | <i class="icon-git"></i> | |
165 | %endif |
|
165 | %endif | |
166 | %if h.is_svn(repo_instance): |
|
166 | %if h.is_svn(repo_instance): | |
167 | <i class="icon-svn"></i> |
|
167 | <i class="icon-svn"></i> | |
168 | %endif |
|
168 | %endif | |
169 |
|
169 | |||
170 | ## public/private |
|
170 | ## public/private | |
171 | %if repo_instance.private: |
|
171 | %if repo_instance.private: | |
172 | <i class="icon-repo-private"></i> |
|
172 | <i class="icon-repo-private"></i> | |
173 | %else: |
|
173 | %else: | |
174 | <i class="icon-repo-public"></i> |
|
174 | <i class="icon-repo-public"></i> | |
175 | %endif |
|
175 | %endif | |
176 |
|
176 | |||
177 | ## repo name with group name |
|
177 | ## repo name with group name | |
178 | ${h.breadcrumb_repo_link(c.rhodecode_db_repo)} |
|
178 | ${h.breadcrumb_repo_link(c.rhodecode_db_repo)} | |
179 |
|
179 | |||
180 | </div> |
|
180 | </div> | |
181 |
|
181 | |||
182 | ## FORKED |
|
182 | ## FORKED | |
183 | %if repo_instance.fork: |
|
183 | %if repo_instance.fork: | |
184 | <p> |
|
184 | <p> | |
185 | <i class="icon-code-fork"></i> ${_('Fork of')} |
|
185 | <i class="icon-code-fork"></i> ${_('Fork of')} | |
186 | <a href="${h.url('summary_home',repo_name=repo_instance.fork.repo_name)}">${repo_instance.fork.repo_name}</a> |
|
186 | <a href="${h.url('summary_home',repo_name=repo_instance.fork.repo_name)}">${repo_instance.fork.repo_name}</a> | |
187 | </p> |
|
187 | </p> | |
188 | %endif |
|
188 | %endif | |
189 |
|
189 | |||
190 | ## IMPORTED FROM REMOTE |
|
190 | ## IMPORTED FROM REMOTE | |
191 | %if repo_instance.clone_uri: |
|
191 | %if repo_instance.clone_uri: | |
192 | <p> |
|
192 | <p> | |
193 | <i class="icon-code-fork"></i> ${_('Clone from')} |
|
193 | <i class="icon-code-fork"></i> ${_('Clone from')} | |
194 | <a href="${h.url(h.safe_str(h.hide_credentials(repo_instance.clone_uri)))}">${h.hide_credentials(repo_instance.clone_uri)}</a> |
|
194 | <a href="${h.url(h.safe_str(h.hide_credentials(repo_instance.clone_uri)))}">${h.hide_credentials(repo_instance.clone_uri)}</a> | |
195 | </p> |
|
195 | </p> | |
196 | %endif |
|
196 | %endif | |
197 |
|
197 | |||
198 | ## LOCKING STATUS |
|
198 | ## LOCKING STATUS | |
199 | %if repo_instance.locked[0]: |
|
199 | %if repo_instance.locked[0]: | |
200 | <p class="locking_locked"> |
|
200 | <p class="locking_locked"> | |
201 | <i class="icon-repo-lock"></i> |
|
201 | <i class="icon-repo-lock"></i> | |
202 | ${_('Repository locked by %(user)s') % {'user': h.person_by_id(repo_instance.locked[0])}} |
|
202 | ${_('Repository locked by %(user)s') % {'user': h.person_by_id(repo_instance.locked[0])}} | |
203 | </p> |
|
203 | </p> | |
204 | %elif repo_instance.enable_locking: |
|
204 | %elif repo_instance.enable_locking: | |
205 | <p class="locking_unlocked"> |
|
205 | <p class="locking_unlocked"> | |
206 | <i class="icon-repo-unlock"></i> |
|
206 | <i class="icon-repo-unlock"></i> | |
207 | ${_('Repository not locked. Pull repository to lock it.')} |
|
207 | ${_('Repository not locked. Pull repository to lock it.')} | |
208 | </p> |
|
208 | </p> | |
209 | %endif |
|
209 | %endif | |
210 |
|
210 | |||
211 | </div> |
|
211 | </div> | |
212 | </%def> |
|
212 | </%def> | |
213 |
|
213 | |||
214 | <%def name="repo_menu(active=None)"> |
|
214 | <%def name="repo_menu(active=None)"> | |
215 | <% |
|
215 | <% | |
216 | def is_active(selected): |
|
216 | def is_active(selected): | |
217 | if selected == active: |
|
217 | if selected == active: | |
218 | return "active" |
|
218 | return "active" | |
219 | %> |
|
219 | %> | |
220 |
|
220 | |||
221 | <!--- CONTEXT BAR --> |
|
221 | <!--- CONTEXT BAR --> | |
222 | <div id="context-bar"> |
|
222 | <div id="context-bar"> | |
223 | <div class="wrapper"> |
|
223 | <div class="wrapper"> | |
224 | <ul id="context-pages" class="horizontal-list navigation"> |
|
224 | <ul id="context-pages" class="horizontal-list navigation"> | |
225 | <li class="${is_active('summary')}"><a class="menulink" href="${h.url('summary_home', repo_name=c.repo_name)}"><div class="menulabel">${_('Summary')}</div></a></li> |
|
225 | <li class="${is_active('summary')}"><a class="menulink" href="${h.url('summary_home', repo_name=c.repo_name)}"><div class="menulabel">${_('Summary')}</div></a></li> | |
226 | <li class="${is_active('changelog')}"><a class="menulink" href="${h.url('changelog_home', repo_name=c.repo_name)}"><div class="menulabel">${_('Changelog')}</div></a></li> |
|
226 | <li class="${is_active('changelog')}"><a class="menulink" href="${h.url('changelog_home', repo_name=c.repo_name)}"><div class="menulabel">${_('Changelog')}</div></a></li> | |
227 | <li class="${is_active('files')}"><a class="menulink" href="${h.url('files_home', repo_name=c.repo_name, revision=c.rhodecode_db_repo.landing_rev[1])}"><div class="menulabel">${_('Files')}</div></a></li> |
|
227 | <li class="${is_active('files')}"><a class="menulink" href="${h.url('files_home', repo_name=c.repo_name, revision=c.rhodecode_db_repo.landing_rev[1])}"><div class="menulabel">${_('Files')}</div></a></li> | |
228 | <li class="${is_active('compare')}"> |
|
228 | <li class="${is_active('compare')}"> | |
229 | <a class="menulink" href="${h.url('compare_home',repo_name=c.repo_name)}"><div class="menulabel">${_('Compare')}</div></a> |
|
229 | <a class="menulink" href="${h.url('compare_home',repo_name=c.repo_name)}"><div class="menulabel">${_('Compare')}</div></a> | |
230 | </li> |
|
230 | </li> | |
231 | ## TODO: anderson: ideally it would have a function on the scm_instance "enable_pullrequest() and enable_fork()" |
|
231 | ## TODO: anderson: ideally it would have a function on the scm_instance "enable_pullrequest() and enable_fork()" | |
232 | %if c.rhodecode_db_repo.repo_type in ['git','hg']: |
|
232 | %if c.rhodecode_db_repo.repo_type in ['git','hg']: | |
233 | <li class="${is_active('showpullrequest')}"> |
|
233 | <li class="${is_active('showpullrequest')}"> | |
234 | <a class="menulink" href="${h.url('pullrequest_show_all',repo_name=c.repo_name)}" title="${_('Show Pull Requests for %s') % c.repo_name}"> |
|
234 | <a class="menulink" href="${h.url('pullrequest_show_all',repo_name=c.repo_name)}" title="${_('Show Pull Requests for %s') % c.repo_name}"> | |
235 | %if c.repository_pull_requests: |
|
235 | %if c.repository_pull_requests: | |
236 | <span class="pr_notifications">${c.repository_pull_requests}</span> |
|
236 | <span class="pr_notifications">${c.repository_pull_requests}</span> | |
237 | %endif |
|
237 | %endif | |
238 | <div class="menulabel">${_('Pull Requests')}</div> |
|
238 | <div class="menulabel">${_('Pull Requests')}</div> | |
239 | </a> |
|
239 | </a> | |
240 | </li> |
|
240 | </li> | |
241 | %endif |
|
241 | %endif | |
242 | <li class="${is_active('options')}"> |
|
242 | <li class="${is_active('options')}"> | |
243 | <a class="menulink" href="#" class="dropdown"><div class="menulabel">${_('Options')} <div class="show_more"></div></div></a> |
|
243 | <a class="menulink" href="#" class="dropdown"><div class="menulabel">${_('Options')} <div class="show_more"></div></div></a> | |
244 | <ul class="submenu"> |
|
244 | <ul class="submenu"> | |
245 | %if h.HasRepoPermissionAll('repository.admin')(c.repo_name): |
|
245 | %if h.HasRepoPermissionAll('repository.admin')(c.repo_name): | |
246 | <li><a href="${h.url('edit_repo',repo_name=c.repo_name)}">${_('Settings')}</a></li> |
|
246 | <li><a href="${h.url('edit_repo',repo_name=c.repo_name)}">${_('Settings')}</a></li> | |
247 | %endif |
|
247 | %endif | |
248 | %if c.rhodecode_db_repo.fork: |
|
248 | %if c.rhodecode_db_repo.fork: | |
249 | <li><a href="${h.url('compare_url',repo_name=c.rhodecode_db_repo.fork.repo_name,source_ref_type=c.rhodecode_db_repo.landing_rev[0],source_ref=c.rhodecode_db_repo.landing_rev[1], target_repo=c.repo_name,target_ref_type='branch' if request.GET.get('branch') else c.rhodecode_db_repo.landing_rev[0],target_ref=request.GET.get('branch') or c.rhodecode_db_repo.landing_rev[1], merge=1)}"> |
|
249 | <li><a href="${h.url('compare_url',repo_name=c.rhodecode_db_repo.fork.repo_name,source_ref_type=c.rhodecode_db_repo.landing_rev[0],source_ref=c.rhodecode_db_repo.landing_rev[1], target_repo=c.repo_name,target_ref_type='branch' if request.GET.get('branch') else c.rhodecode_db_repo.landing_rev[0],target_ref=request.GET.get('branch') or c.rhodecode_db_repo.landing_rev[1], merge=1)}"> | |
250 | ${_('Compare fork')}</a></li> |
|
250 | ${_('Compare fork')}</a></li> | |
251 | %endif |
|
251 | %endif | |
252 |
|
252 | |||
253 | <li><a href="${h.url('search_repo_home',repo_name=c.repo_name)}">${_('Search')}</a></li> |
|
253 | <li><a href="${h.url('search_repo_home',repo_name=c.repo_name)}">${_('Search')}</a></li> | |
254 |
|
254 | |||
255 | %if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name) and c.rhodecode_db_repo.enable_locking: |
|
255 | %if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name) and c.rhodecode_db_repo.enable_locking: | |
256 | %if c.rhodecode_db_repo.locked[0]: |
|
256 | %if c.rhodecode_db_repo.locked[0]: | |
257 | <li><a class="locking_del" href="${h.url('toggle_locking',repo_name=c.repo_name)}">${_('Unlock')}</a></li> |
|
257 | <li><a class="locking_del" href="${h.url('toggle_locking',repo_name=c.repo_name)}">${_('Unlock')}</a></li> | |
258 | %else: |
|
258 | %else: | |
259 | <li><a class="locking_add" href="${h.url('toggle_locking',repo_name=c.repo_name)}">${_('Lock')}</a></li> |
|
259 | <li><a class="locking_add" href="${h.url('toggle_locking',repo_name=c.repo_name)}">${_('Lock')}</a></li> | |
260 | %endif |
|
260 | %endif | |
261 | %endif |
|
261 | %endif | |
262 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
262 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
263 | %if c.rhodecode_db_repo.repo_type in ['git','hg']: |
|
263 | %if c.rhodecode_db_repo.repo_type in ['git','hg']: | |
264 | <li><a href="${h.url('repo_fork_home',repo_name=c.repo_name)}">${_('Fork')}</a></li> |
|
264 | <li><a href="${h.url('repo_fork_home',repo_name=c.repo_name)}">${_('Fork')}</a></li> | |
265 | <li><a href="${h.url('pullrequest_home',repo_name=c.repo_name)}">${_('Create Pull Request')}</a></li> |
|
265 | <li><a href="${h.url('pullrequest_home',repo_name=c.repo_name)}">${_('Create Pull Request')}</a></li> | |
266 | %endif |
|
266 | %endif | |
267 | %endif |
|
267 | %endif | |
268 | </ul> |
|
268 | </ul> | |
269 | </li> |
|
269 | </li> | |
270 | </ul> |
|
270 | </ul> | |
271 | </div> |
|
271 | </div> | |
272 | <div class="clear"></div> |
|
272 | <div class="clear"></div> | |
273 | </div> |
|
273 | </div> | |
274 | <!--- END CONTEXT BAR --> |
|
274 | <!--- END CONTEXT BAR --> | |
275 |
|
275 | |||
276 | </%def> |
|
276 | </%def> | |
277 |
|
277 | |||
278 | <%def name="usermenu(active=False)"> |
|
278 | <%def name="usermenu(active=False)"> | |
279 | ## USER MENU |
|
279 | ## USER MENU | |
280 | <li id="quick_login_li" class="${'active' if active else ''}"> |
|
280 | <li id="quick_login_li" class="${'active' if active else ''}"> | |
281 | <a id="quick_login_link" class="menulink childs"> |
|
281 | <a id="quick_login_link" class="menulink childs"> | |
282 | ${gravatar(c.rhodecode_user.email, 20)} |
|
282 | ${gravatar(c.rhodecode_user.email, 20)} | |
283 | <span class="user"> |
|
283 | <span class="user"> | |
284 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
284 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
285 | <span class="menu_link_user">${c.rhodecode_user.username}</span><div class="show_more"></div> |
|
285 | <span class="menu_link_user">${c.rhodecode_user.username}</span><div class="show_more"></div> | |
286 | %else: |
|
286 | %else: | |
287 | <span>${_('Sign in')}</span> |
|
287 | <span>${_('Sign in')}</span> | |
288 | %endif |
|
288 | %endif | |
289 | </span> |
|
289 | </span> | |
290 | </a> |
|
290 | </a> | |
291 |
|
291 | |||
292 | <div class="user-menu submenu"> |
|
292 | <div class="user-menu submenu"> | |
293 | <div id="quick_login"> |
|
293 | <div id="quick_login"> | |
294 | %if c.rhodecode_user.username == h.DEFAULT_USER: |
|
294 | %if c.rhodecode_user.username == h.DEFAULT_USER: | |
295 | <h4>${_('Sign in to your account')}</h4> |
|
295 | <h4>${_('Sign in to your account')}</h4> | |
296 | ${h.form(h.route_path('login', _query={'came_from': h.url.current()}), needs_csrf_token=False)} |
|
296 | ${h.form(h.route_path('login', _query={'came_from': h.url.current()}), needs_csrf_token=False)} | |
297 | <div class="form form-vertical"> |
|
297 | <div class="form form-vertical"> | |
298 | <div class="fields"> |
|
298 | <div class="fields"> | |
299 | <div class="field"> |
|
299 | <div class="field"> | |
300 | <div class="label"> |
|
300 | <div class="label"> | |
301 | <label for="username">${_('Username')}:</label> |
|
301 | <label for="username">${_('Username')}:</label> | |
302 | </div> |
|
302 | </div> | |
303 | <div class="input"> |
|
303 | <div class="input"> | |
304 | ${h.text('username',class_='focus',tabindex=1)} |
|
304 | ${h.text('username',class_='focus',tabindex=1)} | |
305 | </div> |
|
305 | </div> | |
306 |
|
306 | |||
307 | </div> |
|
307 | </div> | |
308 | <div class="field"> |
|
308 | <div class="field"> | |
309 | <div class="label"> |
|
309 | <div class="label"> | |
310 | <label for="password">${_('Password')}:</label> |
|
310 | <label for="password">${_('Password')}:</label> | |
311 | %if h.HasPermissionAny('hg.password_reset.enabled')(): |
|
311 | %if h.HasPermissionAny('hg.password_reset.enabled')(): | |
312 | <span class="forgot_password">${h.link_to(_('(Forgot password?)'),h.route_path('reset_password'), class_='pwd_reset')}</span> |
|
312 | <span class="forgot_password">${h.link_to(_('(Forgot password?)'),h.route_path('reset_password'), class_='pwd_reset')}</span> | |
313 | %endif |
|
313 | %endif | |
314 | </div> |
|
314 | </div> | |
315 | <div class="input"> |
|
315 | <div class="input"> | |
316 | ${h.password('password',class_='focus',tabindex=2)} |
|
316 | ${h.password('password',class_='focus',tabindex=2)} | |
317 | </div> |
|
317 | </div> | |
318 | </div> |
|
318 | </div> | |
319 | <div class="buttons"> |
|
319 | <div class="buttons"> | |
320 | <div class="register"> |
|
320 | <div class="register"> | |
321 | %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')(): |
|
321 | %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')(): | |
322 | ${h.link_to(_("Don't have an account ?"),h.route_path('register'))} |
|
322 | ${h.link_to(_("Don't have an account ?"),h.route_path('register'))} | |
323 | %endif |
|
323 | %endif | |
324 | </div> |
|
324 | </div> | |
325 | <div class="submit"> |
|
325 | <div class="submit"> | |
326 | ${h.submit('sign_in',_('Sign In'),class_="btn btn-small",tabindex=3)} |
|
326 | ${h.submit('sign_in',_('Sign In'),class_="btn btn-small",tabindex=3)} | |
327 | </div> |
|
327 | </div> | |
328 | </div> |
|
328 | </div> | |
329 | </div> |
|
329 | </div> | |
330 | </div> |
|
330 | </div> | |
331 | ${h.end_form()} |
|
331 | ${h.end_form()} | |
332 | %else: |
|
332 | %else: | |
333 | <div class=""> |
|
333 | <div class=""> | |
334 | <div class="big_gravatar">${gravatar(c.rhodecode_user.email, 48)}</div> |
|
334 | <div class="big_gravatar">${gravatar(c.rhodecode_user.email, 48)}</div> | |
335 | <div class="full_name">${c.rhodecode_user.full_name_or_username}</div> |
|
335 | <div class="full_name">${c.rhodecode_user.full_name_or_username}</div> | |
336 | <div class="email">${c.rhodecode_user.email}</div> |
|
336 | <div class="email">${c.rhodecode_user.email}</div> | |
337 | </div> |
|
337 | </div> | |
338 | <div class=""> |
|
338 | <div class=""> | |
339 | <ol class="links"> |
|
339 | <ol class="links"> | |
340 | <li>${h.link_to(_(u'My account'),h.url('my_account'))}</li> |
|
340 | <li>${h.link_to(_(u'My account'),h.url('my_account'))}</li> | |
341 | % if c.rhodecode_user.personal_repo_group: |
|
341 | % if c.rhodecode_user.personal_repo_group: | |
342 | <li>${h.link_to(_(u'My personal group'), h.url('repo_group_home', group_name=c.rhodecode_user.personal_repo_group.group_name))}</li> |
|
342 | <li>${h.link_to(_(u'My personal group'), h.url('repo_group_home', group_name=c.rhodecode_user.personal_repo_group.group_name))}</li> | |
343 | % endif |
|
343 | % endif | |
344 | <li class="logout"> |
|
344 | <li class="logout"> | |
345 | ${h.secure_form(h.route_path('logout'))} |
|
345 | ${h.secure_form(h.route_path('logout'))} | |
346 | ${h.submit('log_out', _(u'Sign Out'),class_="btn btn-primary")} |
|
346 | ${h.submit('log_out', _(u'Sign Out'),class_="btn btn-primary")} | |
347 | ${h.end_form()} |
|
347 | ${h.end_form()} | |
348 | </li> |
|
348 | </li> | |
349 | </ol> |
|
349 | </ol> | |
350 | </div> |
|
350 | </div> | |
351 | %endif |
|
351 | %endif | |
352 | </div> |
|
352 | </div> | |
353 | </div> |
|
353 | </div> | |
354 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
354 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
355 | <div class="pill_container"> |
|
355 | <div class="pill_container"> | |
356 | % if c.unread_notifications == 0: |
|
356 | % if c.unread_notifications == 0: | |
357 | <a class="menu_link_notifications empty" href="${h.url('notifications')}">${c.unread_notifications}</a> |
|
357 | <a class="menu_link_notifications empty" href="${h.url('notifications')}">${c.unread_notifications}</a> | |
358 | % else: |
|
358 | % else: | |
359 | <a class="menu_link_notifications" href="${h.url('notifications')}">${c.unread_notifications}</a> |
|
359 | <a class="menu_link_notifications" href="${h.url('notifications')}">${c.unread_notifications}</a> | |
360 | % endif |
|
360 | % endif | |
361 | </div> |
|
361 | </div> | |
362 | % endif |
|
362 | % endif | |
363 | </li> |
|
363 | </li> | |
364 | </%def> |
|
364 | </%def> | |
365 |
|
365 | |||
366 | <%def name="menu_items(active=None)"> |
|
366 | <%def name="menu_items(active=None)"> | |
367 | <% |
|
367 | <% | |
368 | def is_active(selected): |
|
368 | def is_active(selected): | |
369 | if selected == active: |
|
369 | if selected == active: | |
370 | return "active" |
|
370 | return "active" | |
371 | return "" |
|
371 | return "" | |
372 | %> |
|
372 | %> | |
373 | <ul id="quick" class="main_nav navigation horizontal-list"> |
|
373 | <ul id="quick" class="main_nav navigation horizontal-list"> | |
374 | <!-- repo switcher --> |
|
374 | <!-- repo switcher --> | |
375 | <li class="${is_active('repositories')} repo_switcher_li has_select2"> |
|
375 | <li class="${is_active('repositories')} repo_switcher_li has_select2"> | |
376 | <input id="repo_switcher" name="repo_switcher" type="hidden"> |
|
376 | <input id="repo_switcher" name="repo_switcher" type="hidden"> | |
377 | </li> |
|
377 | </li> | |
378 |
|
378 | |||
379 | ## ROOT MENU |
|
379 | ## ROOT MENU | |
380 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
380 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
381 | <li class="${is_active('journal')}"> |
|
381 | <li class="${is_active('journal')}"> | |
382 | <a class="menulink" title="${_('Show activity journal')}" href="${h.url('journal')}"> |
|
382 | <a class="menulink" title="${_('Show activity journal')}" href="${h.url('journal')}"> | |
383 | <div class="menulabel">${_('Journal')}</div> |
|
383 | <div class="menulabel">${_('Journal')}</div> | |
384 | </a> |
|
384 | </a> | |
385 | </li> |
|
385 | </li> | |
386 | %else: |
|
386 | %else: | |
387 | <li class="${is_active('journal')}"> |
|
387 | <li class="${is_active('journal')}"> | |
388 | <a class="menulink" title="${_('Show Public activity journal')}" href="${h.url('public_journal')}"> |
|
388 | <a class="menulink" title="${_('Show Public activity journal')}" href="${h.url('public_journal')}"> | |
389 | <div class="menulabel">${_('Public journal')}</div> |
|
389 | <div class="menulabel">${_('Public journal')}</div> | |
390 | </a> |
|
390 | </a> | |
391 | </li> |
|
391 | </li> | |
392 | %endif |
|
392 | %endif | |
393 | <li class="${is_active('gists')}"> |
|
393 | <li class="${is_active('gists')}"> | |
394 | <a class="menulink childs" title="${_('Show Gists')}" href="${h.url('gists')}"> |
|
394 | <a class="menulink childs" title="${_('Show Gists')}" href="${h.url('gists')}"> | |
395 | <div class="menulabel">${_('Gists')}</div> |
|
395 | <div class="menulabel">${_('Gists')}</div> | |
396 | </a> |
|
396 | </a> | |
397 | </li> |
|
397 | </li> | |
398 | <li class="${is_active('search')}"> |
|
398 | <li class="${is_active('search')}"> | |
399 | <a class="menulink" title="${_('Search in repositories you have access to')}" href="${h.url('search')}"> |
|
399 | <a class="menulink" title="${_('Search in repositories you have access to')}" href="${h.url('search')}"> | |
400 | <div class="menulabel">${_('Search')}</div> |
|
400 | <div class="menulabel">${_('Search')}</div> | |
401 | </a> |
|
401 | </a> | |
402 | </li> |
|
402 | </li> | |
403 | % if h.HasPermissionAll('hg.admin')('access admin main page'): |
|
403 | % if h.HasPermissionAll('hg.admin')('access admin main page'): | |
404 | <li class="${is_active('admin')}"> |
|
404 | <li class="${is_active('admin')}"> | |
405 | <a class="menulink childs" title="${_('Admin settings')}" href="#" onclick="return false;"> |
|
405 | <a class="menulink childs" title="${_('Admin settings')}" href="#" onclick="return false;"> | |
406 | <div class="menulabel">${_('Admin')} <div class="show_more"></div></div> |
|
406 | <div class="menulabel">${_('Admin')} <div class="show_more"></div></div> | |
407 | </a> |
|
407 | </a> | |
408 | ${admin_menu()} |
|
408 | ${admin_menu()} | |
409 | </li> |
|
409 | </li> | |
410 | % elif c.rhodecode_user.repositories_admin or c.rhodecode_user.repository_groups_admin or c.rhodecode_user.user_groups_admin: |
|
410 | % elif c.rhodecode_user.repositories_admin or c.rhodecode_user.repository_groups_admin or c.rhodecode_user.user_groups_admin: | |
411 | <li class="${is_active('admin')}"> |
|
411 | <li class="${is_active('admin')}"> | |
412 | <a class="menulink childs" title="${_('Delegated Admin settings')}"> |
|
412 | <a class="menulink childs" title="${_('Delegated Admin settings')}"> | |
413 | <div class="menulabel">${_('Admin')} <div class="show_more"></div></div> |
|
413 | <div class="menulabel">${_('Admin')} <div class="show_more"></div></div> | |
414 | </a> |
|
414 | </a> | |
415 | ${admin_menu_simple(c.rhodecode_user.repositories_admin, |
|
415 | ${admin_menu_simple(c.rhodecode_user.repositories_admin, | |
416 | c.rhodecode_user.repository_groups_admin, |
|
416 | c.rhodecode_user.repository_groups_admin, | |
417 | c.rhodecode_user.user_groups_admin or h.HasPermissionAny('hg.usergroup.create.true')())} |
|
417 | c.rhodecode_user.user_groups_admin or h.HasPermissionAny('hg.usergroup.create.true')())} | |
418 | </li> |
|
418 | </li> | |
419 | % endif |
|
419 | % endif | |
420 | % if c.debug_style: |
|
420 | % if c.debug_style: | |
421 | <li class="${is_active('debug_style')}"> |
|
421 | <li class="${is_active('debug_style')}"> | |
422 | <a class="menulink" title="${_('Style')}" href="${h.url('debug_style_home')}"> |
|
422 | <a class="menulink" title="${_('Style')}" href="${h.url('debug_style_home')}"> | |
423 | <div class="menulabel">${_('Style')}</div> |
|
423 | <div class="menulabel">${_('Style')}</div> | |
424 | </a> |
|
424 | </a> | |
425 | </li> |
|
425 | </li> | |
426 | % endif |
|
426 | % endif | |
427 | ## render extra user menu |
|
427 | ## render extra user menu | |
428 | ${usermenu(active=(active=='my_account'))} |
|
428 | ${usermenu(active=(active=='my_account'))} | |
429 | </ul> |
|
429 | </ul> | |
430 |
|
430 | |||
431 | <script type="text/javascript"> |
|
431 | <script type="text/javascript"> | |
432 | var visual_show_public_icon = "${c.visual.show_public_icon}" == "True"; |
|
432 | var visual_show_public_icon = "${c.visual.show_public_icon}" == "True"; | |
433 |
|
433 | |||
434 | /*format the look of items in the list*/ |
|
434 | /*format the look of items in the list*/ | |
435 | var format = function(state, escapeMarkup){ |
|
435 | var format = function(state, escapeMarkup){ | |
436 | if (!state.id){ |
|
436 | if (!state.id){ | |
437 | return state.text; // optgroup |
|
437 | return state.text; // optgroup | |
438 | } |
|
438 | } | |
439 | var obj_dict = state.obj; |
|
439 | var obj_dict = state.obj; | |
440 | var tmpl = ''; |
|
440 | var tmpl = ''; | |
441 |
|
441 | |||
442 | if(obj_dict && state.type == 'repo'){ |
|
442 | if(obj_dict && state.type == 'repo'){ | |
443 | if(obj_dict['repo_type'] === 'hg'){ |
|
443 | if(obj_dict['repo_type'] === 'hg'){ | |
444 | tmpl += '<i class="icon-hg"></i> '; |
|
444 | tmpl += '<i class="icon-hg"></i> '; | |
445 | } |
|
445 | } | |
446 | else if(obj_dict['repo_type'] === 'git'){ |
|
446 | else if(obj_dict['repo_type'] === 'git'){ | |
447 | tmpl += '<i class="icon-git"></i> '; |
|
447 | tmpl += '<i class="icon-git"></i> '; | |
448 | } |
|
448 | } | |
449 | else if(obj_dict['repo_type'] === 'svn'){ |
|
449 | else if(obj_dict['repo_type'] === 'svn'){ | |
450 | tmpl += '<i class="icon-svn"></i> '; |
|
450 | tmpl += '<i class="icon-svn"></i> '; | |
451 | } |
|
451 | } | |
452 | if(obj_dict['private']){ |
|
452 | if(obj_dict['private']){ | |
453 | tmpl += '<i class="icon-lock" ></i> '; |
|
453 | tmpl += '<i class="icon-lock" ></i> '; | |
454 | } |
|
454 | } | |
455 | else if(visual_show_public_icon){ |
|
455 | else if(visual_show_public_icon){ | |
456 | tmpl += '<i class="icon-unlock-alt"></i> '; |
|
456 | tmpl += '<i class="icon-unlock-alt"></i> '; | |
457 | } |
|
457 | } | |
458 | } |
|
458 | } | |
459 | if(obj_dict && state.type == 'commit') { |
|
459 | if(obj_dict && state.type == 'commit') { | |
460 | tmpl += '<i class="icon-tag"></i>'; |
|
460 | tmpl += '<i class="icon-tag"></i>'; | |
461 | } |
|
461 | } | |
462 | if(obj_dict && state.type == 'group'){ |
|
462 | if(obj_dict && state.type == 'group'){ | |
463 | tmpl += '<i class="icon-folder-close"></i> '; |
|
463 | tmpl += '<i class="icon-folder-close"></i> '; | |
464 | } |
|
464 | } | |
465 | tmpl += escapeMarkup(state.text); |
|
465 | tmpl += escapeMarkup(state.text); | |
466 | return tmpl; |
|
466 | return tmpl; | |
467 | }; |
|
467 | }; | |
468 |
|
468 | |||
469 | var formatResult = function(result, container, query, escapeMarkup) { |
|
469 | var formatResult = function(result, container, query, escapeMarkup) { | |
470 | return format(result, escapeMarkup); |
|
470 | return format(result, escapeMarkup); | |
471 | }; |
|
471 | }; | |
472 |
|
472 | |||
473 | var formatSelection = function(data, container, escapeMarkup) { |
|
473 | var formatSelection = function(data, container, escapeMarkup) { | |
474 | return format(data, escapeMarkup); |
|
474 | return format(data, escapeMarkup); | |
475 | }; |
|
475 | }; | |
476 |
|
476 | |||
477 | $("#repo_switcher").select2({ |
|
477 | $("#repo_switcher").select2({ | |
478 | cachedDataSource: {}, |
|
478 | cachedDataSource: {}, | |
479 | minimumInputLength: 2, |
|
479 | minimumInputLength: 2, | |
480 | placeholder: '<div class="menulabel">${_('Go to')} <div class="show_more"></div></div>', |
|
480 | placeholder: '<div class="menulabel">${_('Go to')} <div class="show_more"></div></div>', | |
481 | dropdownAutoWidth: true, |
|
481 | dropdownAutoWidth: true, | |
482 | formatResult: formatResult, |
|
482 | formatResult: formatResult, | |
483 | formatSelection: formatSelection, |
|
483 | formatSelection: formatSelection, | |
484 | containerCssClass: "repo-switcher", |
|
484 | containerCssClass: "repo-switcher", | |
485 | dropdownCssClass: "repo-switcher-dropdown", |
|
485 | dropdownCssClass: "repo-switcher-dropdown", | |
486 | escapeMarkup: function(m){ |
|
486 | escapeMarkup: function(m){ | |
487 | // don't escape our custom placeholder |
|
487 | // don't escape our custom placeholder | |
488 | if(m.substr(0,23) == '<div class="menulabel">'){ |
|
488 | if(m.substr(0,23) == '<div class="menulabel">'){ | |
489 | return m; |
|
489 | return m; | |
490 | } |
|
490 | } | |
491 |
|
491 | |||
492 | return Select2.util.escapeMarkup(m); |
|
492 | return Select2.util.escapeMarkup(m); | |
493 | }, |
|
493 | }, | |
494 | query: $.debounce(250, function(query){ |
|
494 | query: $.debounce(250, function(query){ | |
495 | self = this; |
|
495 | self = this; | |
496 | var cacheKey = query.term; |
|
496 | var cacheKey = query.term; | |
497 | var cachedData = self.cachedDataSource[cacheKey]; |
|
497 | var cachedData = self.cachedDataSource[cacheKey]; | |
498 |
|
498 | |||
499 | if (cachedData) { |
|
499 | if (cachedData) { | |
500 | query.callback({results: cachedData.results}); |
|
500 | query.callback({results: cachedData.results}); | |
501 | } else { |
|
501 | } else { | |
502 | $.ajax({ |
|
502 | $.ajax({ | |
503 | url: "${h.url('goto_switcher_data')}", |
|
503 | url: "${h.url('goto_switcher_data')}", | |
504 | data: {'query': query.term}, |
|
504 | data: {'query': query.term}, | |
505 | dataType: 'json', |
|
505 | dataType: 'json', | |
506 | type: 'GET', |
|
506 | type: 'GET', | |
507 | success: function(data) { |
|
507 | success: function(data) { | |
508 | self.cachedDataSource[cacheKey] = data; |
|
508 | self.cachedDataSource[cacheKey] = data; | |
509 | query.callback({results: data.results}); |
|
509 | query.callback({results: data.results}); | |
510 | }, |
|
510 | }, | |
511 | error: function(data, textStatus, errorThrown) { |
|
511 | error: function(data, textStatus, errorThrown) { | |
512 | alert("Error while fetching entries.\nError code {0} ({1}).".format(data.status, data.statusText)); |
|
512 | alert("Error while fetching entries.\nError code {0} ({1}).".format(data.status, data.statusText)); | |
513 | } |
|
513 | } | |
514 | }) |
|
514 | }) | |
515 | } |
|
515 | } | |
516 | }) |
|
516 | }) | |
517 | }); |
|
517 | }); | |
518 |
|
518 | |||
519 | $("#repo_switcher").on('select2-selecting', function(e){ |
|
519 | $("#repo_switcher").on('select2-selecting', function(e){ | |
520 | e.preventDefault(); |
|
520 | e.preventDefault(); | |
521 | window.location = e.choice.url; |
|
521 | window.location = e.choice.url; | |
522 | }); |
|
522 | }); | |
523 |
|
523 | |||
524 | </script> |
|
524 | </script> | |
525 | <script src="${h.asset('js/rhodecode/base/keyboard-bindings.js', ver=c.rhodecode_version_hash)}"></script> |
|
525 | <script src="${h.asset('js/rhodecode/base/keyboard-bindings.js', ver=c.rhodecode_version_hash)}"></script> | |
526 | </%def> |
|
526 | </%def> | |
527 |
|
527 | |||
528 | <div class="modal" id="help_kb" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> |
|
528 | <div class="modal" id="help_kb" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | |
529 | <div class="modal-dialog"> |
|
529 | <div class="modal-dialog"> | |
530 | <div class="modal-content"> |
|
530 | <div class="modal-content"> | |
531 | <div class="modal-header"> |
|
531 | <div class="modal-header"> | |
532 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
|
532 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
533 | <h4 class="modal-title" id="myModalLabel">${_('Keyboard shortcuts')}</h4> |
|
533 | <h4 class="modal-title" id="myModalLabel">${_('Keyboard shortcuts')}</h4> | |
534 | </div> |
|
534 | </div> | |
535 | <div class="modal-body"> |
|
535 | <div class="modal-body"> | |
536 | <div class="block-left"> |
|
536 | <div class="block-left"> | |
537 | <table class="keyboard-mappings"> |
|
537 | <table class="keyboard-mappings"> | |
538 | <tbody> |
|
538 | <tbody> | |
539 | <tr> |
|
539 | <tr> | |
540 | <th></th> |
|
540 | <th></th> | |
541 | <th>${_('Site-wide shortcuts')}</th> |
|
541 | <th>${_('Site-wide shortcuts')}</th> | |
542 | </tr> |
|
542 | </tr> | |
543 | <% |
|
543 | <% | |
544 | elems = [ |
|
544 | elems = [ | |
545 | ('/', 'Open quick search box'), |
|
545 | ('/', 'Open quick search box'), | |
546 | ('g h', 'Goto home page'), |
|
546 | ('g h', 'Goto home page'), | |
547 | ('g g', 'Goto my private gists page'), |
|
547 | ('g g', 'Goto my private gists page'), | |
548 | ('g G', 'Goto my public gists page'), |
|
548 | ('g G', 'Goto my public gists page'), | |
549 | ('n r', 'New repository page'), |
|
549 | ('n r', 'New repository page'), | |
550 | ('n g', 'New gist page'), |
|
550 | ('n g', 'New gist page'), | |
551 | ] |
|
551 | ] | |
552 | %> |
|
552 | %> | |
553 | %for key, desc in elems: |
|
553 | %for key, desc in elems: | |
554 | <tr> |
|
554 | <tr> | |
555 | <td class="keys"> |
|
555 | <td class="keys"> | |
556 | <span class="key tag">${key}</span> |
|
556 | <span class="key tag">${key}</span> | |
557 | </td> |
|
557 | </td> | |
558 | <td>${desc}</td> |
|
558 | <td>${desc}</td> | |
559 | </tr> |
|
559 | </tr> | |
560 | %endfor |
|
560 | %endfor | |
561 | </tbody> |
|
561 | </tbody> | |
562 | </table> |
|
562 | </table> | |
563 | </div> |
|
563 | </div> | |
564 | <div class="block-left"> |
|
564 | <div class="block-left"> | |
565 | <table class="keyboard-mappings"> |
|
565 | <table class="keyboard-mappings"> | |
566 | <tbody> |
|
566 | <tbody> | |
567 | <tr> |
|
567 | <tr> | |
568 | <th></th> |
|
568 | <th></th> | |
569 | <th>${_('Repositories')}</th> |
|
569 | <th>${_('Repositories')}</th> | |
570 | </tr> |
|
570 | </tr> | |
571 | <% |
|
571 | <% | |
572 | elems = [ |
|
572 | elems = [ | |
573 | ('g s', 'Goto summary page'), |
|
573 | ('g s', 'Goto summary page'), | |
574 | ('g c', 'Goto changelog page'), |
|
574 | ('g c', 'Goto changelog page'), | |
575 | ('g f', 'Goto files page'), |
|
575 | ('g f', 'Goto files page'), | |
576 | ('g F', 'Goto files page with file search activated'), |
|
576 | ('g F', 'Goto files page with file search activated'), | |
577 | ('g p', 'Goto pull requests page'), |
|
577 | ('g p', 'Goto pull requests page'), | |
578 | ('g o', 'Goto repository settings'), |
|
578 | ('g o', 'Goto repository settings'), | |
579 | ('g O', 'Goto repository permissions settings'), |
|
579 | ('g O', 'Goto repository permissions settings'), | |
580 | ] |
|
580 | ] | |
581 | %> |
|
581 | %> | |
582 | %for key, desc in elems: |
|
582 | %for key, desc in elems: | |
583 | <tr> |
|
583 | <tr> | |
584 | <td class="keys"> |
|
584 | <td class="keys"> | |
585 | <span class="key tag">${key}</span> |
|
585 | <span class="key tag">${key}</span> | |
586 | </td> |
|
586 | </td> | |
587 | <td>${desc}</td> |
|
587 | <td>${desc}</td> | |
588 | </tr> |
|
588 | </tr> | |
589 | %endfor |
|
589 | %endfor | |
590 | </tbody> |
|
590 | </tbody> | |
591 | </table> |
|
591 | </table> | |
592 | </div> |
|
592 | </div> | |
593 | </div> |
|
593 | </div> | |
594 | <div class="modal-footer"> |
|
594 | <div class="modal-footer"> | |
595 | </div> |
|
595 | </div> | |
596 | </div><!-- /.modal-content --> |
|
596 | </div><!-- /.modal-content --> | |
597 | </div><!-- /.modal-dialog --> |
|
597 | </div><!-- /.modal-dialog --> | |
598 | </div><!-- /.modal --> |
|
598 | </div><!-- /.modal --> |
@@ -1,221 +1,220 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import os |
|
21 | import os | |
22 |
|
22 | |||
23 | from rhodecode.lib import helpers as h |
|
23 | from rhodecode.lib import helpers as h | |
24 | from rhodecode.model.meta import Session |
|
24 | from rhodecode.model.meta import Session | |
25 | from rhodecode.model.repo_group import RepoGroupModel |
|
25 | from rhodecode.model.repo_group import RepoGroupModel | |
26 | from rhodecode.tests import ( |
|
26 | from rhodecode.tests import ( | |
27 | url, TestController, assert_session_flash, GIT_REPO, HG_REPO, |
|
27 | url, TestController, assert_session_flash, GIT_REPO, HG_REPO, | |
28 | TESTS_TMP_PATH, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
28 | TESTS_TMP_PATH, TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
29 | from rhodecode.tests.fixture import Fixture |
|
29 | from rhodecode.tests.fixture import Fixture | |
30 |
|
30 | |||
31 | fixture = Fixture() |
|
31 | fixture = Fixture() | |
32 |
|
32 | |||
33 |
|
33 | |||
34 | def test_update(app, csrf_token, autologin_user, user_util): |
|
34 | def test_update(app, csrf_token, autologin_user, user_util): | |
35 | repo_group = user_util.create_repo_group() |
|
35 | repo_group = user_util.create_repo_group() | |
36 | description = 'description for newly created repo group' |
|
36 | description = 'description for newly created repo group' | |
37 | Session().commit() |
|
37 | Session().commit() | |
38 | response = app.post( |
|
38 | response = app.post( | |
39 | url('update_repo_group', group_name=repo_group.group_name), |
|
39 | url('update_repo_group', group_name=repo_group.group_name), | |
40 | fixture._get_group_create_params( |
|
40 | fixture._get_group_create_params( | |
41 | group_name=repo_group.group_name, |
|
41 | group_name=repo_group.group_name, | |
42 | group_description=description, |
|
42 | group_description=description, | |
43 | csrf_token=csrf_token, |
|
43 | csrf_token=csrf_token, | |
44 | _method='PUT') |
|
44 | _method='PUT') | |
45 | ) |
|
45 | ) | |
46 | # TODO: anderson: johbo: we believe that this update should return |
|
46 | # TODO: anderson: johbo: we believe that this update should return | |
47 | # a redirect instead of rendering the template. |
|
47 | # a redirect instead of rendering the template. | |
48 | assert response.status_code == 200 |
|
48 | assert response.status_code == 200 | |
49 |
|
49 | |||
50 |
|
50 | |||
51 | def test_edit(app, user_util, autologin_user): |
|
51 | def test_edit(app, user_util, autologin_user): | |
52 | repo_group = user_util.create_repo_group() |
|
52 | repo_group = user_util.create_repo_group() | |
53 | Session().commit() |
|
53 | Session().commit() | |
54 | response = app.get( |
|
54 | response = app.get( | |
55 | url('edit_repo_group', group_name=repo_group.group_name)) |
|
55 | url('edit_repo_group', group_name=repo_group.group_name)) | |
56 | assert response.status_code == 200 |
|
56 | assert response.status_code == 200 | |
57 |
|
57 | |||
58 |
|
58 | |||
59 | def test_edit_repo_group_perms(app, user_util, autologin_user): |
|
59 | def test_edit_repo_group_perms(app, user_util, autologin_user): | |
60 | repo_group = user_util.create_repo_group() |
|
60 | repo_group = user_util.create_repo_group() | |
61 | Session().commit() |
|
61 | Session().commit() | |
62 | response = app.get( |
|
62 | response = app.get( | |
63 | url('edit_repo_group_perms', group_name=repo_group.group_name)) |
|
63 | url('edit_repo_group_perms', group_name=repo_group.group_name)) | |
64 | assert response.status_code == 200 |
|
64 | assert response.status_code == 200 | |
65 |
|
65 | |||
66 |
|
66 | |||
67 | def test_update_fails_when_parent_pointing_to_self( |
|
67 | def test_update_fails_when_parent_pointing_to_self( | |
68 | app, csrf_token, user_util, autologin_user): |
|
68 | app, csrf_token, user_util, autologin_user): | |
69 | group = user_util.create_repo_group() |
|
69 | group = user_util.create_repo_group() | |
70 | response = app.post( |
|
70 | response = app.post( | |
71 | url('update_repo_group', group_name=group.group_name), |
|
71 | url('update_repo_group', group_name=group.group_name), | |
72 | fixture._get_group_create_params( |
|
72 | fixture._get_group_create_params( | |
73 | group_parent_id=group.group_id, |
|
73 | group_parent_id=group.group_id, | |
74 | csrf_token=csrf_token, |
|
74 | csrf_token=csrf_token, | |
75 | _method='PUT') |
|
75 | _method='PUT') | |
76 | ) |
|
76 | ) | |
77 | response.mustcontain( |
|
77 | response.mustcontain( | |
78 | '<select class="medium error" id="group_parent_id"' |
|
78 | '<select class="medium error" id="group_parent_id"' | |
79 | ' name="group_parent_id">') |
|
79 | ' name="group_parent_id">') | |
80 | response.mustcontain('<span class="error-message">Value must be one of:') |
|
80 | response.mustcontain('<span class="error-message">Value must be one of:') | |
81 |
|
81 | |||
82 |
|
82 | |||
83 | class _BaseTest(TestController): |
|
83 | class _BaseTest(TestController): | |
84 |
|
84 | |||
85 | REPO_GROUP = None |
|
85 | REPO_GROUP = None | |
86 | NEW_REPO_GROUP = None |
|
86 | NEW_REPO_GROUP = None | |
87 | REPO = None |
|
87 | REPO = None | |
88 | REPO_TYPE = None |
|
88 | REPO_TYPE = None | |
89 |
|
89 | |||
90 | def test_index(self): |
|
90 | def test_index(self): | |
91 | self.log_user() |
|
91 | self.log_user() | |
92 | response = self.app.get(url('repo_groups')) |
|
92 | response = self.app.get(url('repo_groups')) | |
93 | response.mustcontain('data: []') |
|
93 | response.mustcontain('data: []') | |
94 |
|
94 | |||
95 | def test_index_after_creating_group(self): |
|
95 | def test_index_after_creating_group(self): | |
96 | self.log_user() |
|
96 | self.log_user() | |
97 | fixture.create_repo_group('test_repo_group') |
|
97 | fixture.create_repo_group('test_repo_group') | |
98 | response = self.app.get(url('repo_groups')) |
|
98 | response = self.app.get(url('repo_groups')) | |
99 | response.mustcontain('"name_raw": "test_repo_group"') |
|
99 | response.mustcontain('"name_raw": "test_repo_group"') | |
100 | fixture.destroy_repo_group('test_repo_group') |
|
100 | fixture.destroy_repo_group('test_repo_group') | |
101 |
|
101 | |||
102 | def test_new(self): |
|
102 | def test_new(self): | |
103 | self.log_user() |
|
103 | self.log_user() | |
104 | self.app.get(url('new_repo_group')) |
|
104 | self.app.get(url('new_repo_group')) | |
105 |
|
105 | |||
106 | def test_new_by_regular_user_no_permission(self): |
|
106 | def test_new_by_regular_user_no_permission(self): | |
107 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
107 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
108 | self.app.get(url('new_repo_group'), status=403) |
|
108 | self.app.get(url('new_repo_group'), status=403) | |
109 |
|
109 | |||
110 | def test_create(self): |
|
110 | def test_create(self): | |
111 | self.log_user() |
|
111 | self.log_user() | |
112 | repo_group_name = self.NEW_REPO_GROUP |
|
112 | repo_group_name = self.NEW_REPO_GROUP | |
113 | repo_group_name_unicode = repo_group_name.decode('utf8') |
|
113 | repo_group_name_unicode = repo_group_name.decode('utf8') | |
114 | description = 'description for newly created repo group' |
|
114 | description = 'description for newly created repo group' | |
115 |
|
115 | |||
116 | response = self.app.post( |
|
116 | response = self.app.post( | |
117 | url('repo_groups'), |
|
117 | url('repo_groups'), | |
118 | fixture._get_group_create_params( |
|
118 | fixture._get_group_create_params( | |
119 | group_name=repo_group_name, |
|
119 | group_name=repo_group_name, | |
120 | group_description=description, |
|
120 | group_description=description, | |
121 | csrf_token=self.csrf_token)) |
|
121 | csrf_token=self.csrf_token)) | |
122 |
|
122 | |||
123 | # run the check page that triggers the flash message |
|
123 | # run the check page that triggers the flash message | |
124 | # response = self.app.get(url('repo_check_home', repo_name=repo_name)) |
|
124 | # response = self.app.get(url('repo_check_home', repo_name=repo_name)) | |
125 | # assert response.json == {u'result': True} |
|
125 | # assert response.json == {u'result': True} | |
126 | assert_session_flash( |
|
126 | assert_session_flash( | |
127 | response, |
|
127 | response, | |
128 | u'Created repository group <a href="%s">%s</a>' % ( |
|
128 | u'Created repository group <a href="%s">%s</a>' % ( | |
129 | h.url('repo_group_home', group_name=repo_group_name), |
|
129 | h.url('repo_group_home', group_name=repo_group_name), | |
130 | repo_group_name_unicode)) |
|
130 | repo_group_name_unicode)) | |
131 |
|
131 | |||
132 | # # test if the repo group was created in the database |
|
132 | # # test if the repo group was created in the database | |
133 | new_repo_group = RepoGroupModel()._get_repo_group( |
|
133 | new_repo_group = RepoGroupModel()._get_repo_group( | |
134 | repo_group_name_unicode) |
|
134 | repo_group_name_unicode) | |
135 | assert new_repo_group is not None |
|
135 | assert new_repo_group is not None | |
136 |
|
136 | |||
137 | assert new_repo_group.group_name == repo_group_name_unicode |
|
137 | assert new_repo_group.group_name == repo_group_name_unicode | |
138 | assert new_repo_group.group_description == description |
|
138 | assert new_repo_group.group_description == description | |
139 |
|
139 | |||
140 | # |
|
140 | # test if the repository is visible in the list ? | |
141 | # # test if the repository is visible in the list ? |
|
|||
142 | response = self.app.get( |
|
141 | response = self.app.get( | |
143 | url('repo_group_home', group_name=repo_group_name)) |
|
142 | url('repo_group_home', group_name=repo_group_name)) | |
144 | response.mustcontain(repo_group_name) |
|
143 | response.mustcontain(repo_group_name) | |
145 |
|
144 | |||
146 | # test if the repository group was created on filesystem |
|
145 | # test if the repository group was created on filesystem | |
147 | is_on_filesystem = os.path.isdir( |
|
146 | is_on_filesystem = os.path.isdir( | |
148 | os.path.join(TESTS_TMP_PATH, repo_group_name)) |
|
147 | os.path.join(TESTS_TMP_PATH, repo_group_name)) | |
149 | if not is_on_filesystem: |
|
148 | if not is_on_filesystem: | |
150 | self.fail('no repo group %s in filesystem' % repo_group_name) |
|
149 | self.fail('no repo group %s in filesystem' % repo_group_name) | |
151 |
|
150 | |||
152 | RepoGroupModel().delete(repo_group_name_unicode) |
|
151 | RepoGroupModel().delete(repo_group_name_unicode) | |
153 | Session().commit() |
|
152 | Session().commit() | |
154 |
|
153 | |||
155 | def test_create_subgroup(self, user_util): |
|
154 | def test_create_subgroup(self, user_util): | |
156 | self.log_user() |
|
155 | self.log_user() | |
157 | repo_group_name = self.NEW_REPO_GROUP |
|
156 | repo_group_name = self.NEW_REPO_GROUP | |
158 | parent_group = user_util.create_repo_group() |
|
157 | parent_group = user_util.create_repo_group() | |
159 | parent_group_name = parent_group.group_name |
|
158 | parent_group_name = parent_group.group_name | |
160 |
|
159 | |||
161 | expected_group_name = '{}/{}'.format( |
|
160 | expected_group_name = '{}/{}'.format( | |
162 | parent_group_name, repo_group_name) |
|
161 | parent_group_name, repo_group_name) | |
163 | expected_group_name_unicode = expected_group_name.decode('utf8') |
|
162 | expected_group_name_unicode = expected_group_name.decode('utf8') | |
164 |
|
163 | |||
165 | try: |
|
164 | try: | |
166 | response = self.app.post( |
|
165 | response = self.app.post( | |
167 | url('repo_groups'), |
|
166 | url('repo_groups'), | |
168 | fixture._get_group_create_params( |
|
167 | fixture._get_group_create_params( | |
169 | group_name=repo_group_name, |
|
168 | group_name=repo_group_name, | |
170 | group_parent_id=parent_group.group_id, |
|
169 | group_parent_id=parent_group.group_id, | |
171 | group_description='Test desciption', |
|
170 | group_description='Test desciption', | |
172 | csrf_token=self.csrf_token)) |
|
171 | csrf_token=self.csrf_token)) | |
173 |
|
172 | |||
174 | assert_session_flash( |
|
173 | assert_session_flash( | |
175 | response, |
|
174 | response, | |
176 | u'Created repository group <a href="%s">%s</a>' % ( |
|
175 | u'Created repository group <a href="%s">%s</a>' % ( | |
177 | h.url('repo_group_home', group_name=expected_group_name), |
|
176 | h.url('repo_group_home', group_name=expected_group_name), | |
178 | expected_group_name_unicode)) |
|
177 | expected_group_name_unicode)) | |
179 | finally: |
|
178 | finally: | |
180 | RepoGroupModel().delete(expected_group_name_unicode) |
|
179 | RepoGroupModel().delete(expected_group_name_unicode) | |
181 | Session().commit() |
|
180 | Session().commit() | |
182 |
|
181 | |||
183 | def test_user_with_creation_permissions_cannot_create_subgroups( |
|
182 | def test_user_with_creation_permissions_cannot_create_subgroups( | |
184 | self, user_util): |
|
183 | self, user_util): | |
185 |
|
184 | |||
186 | user_util.grant_user_permission( |
|
185 | user_util.grant_user_permission( | |
187 | TEST_USER_REGULAR_LOGIN, 'hg.repogroup.create.true') |
|
186 | TEST_USER_REGULAR_LOGIN, 'hg.repogroup.create.true') | |
188 | parent_group = user_util.create_repo_group() |
|
187 | parent_group = user_util.create_repo_group() | |
189 | parent_group_id = parent_group.group_id |
|
188 | parent_group_id = parent_group.group_id | |
190 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) |
|
189 | self.log_user(TEST_USER_REGULAR_LOGIN, TEST_USER_REGULAR_PASS) | |
191 | self.app.get( |
|
190 | self.app.get( | |
192 | url('new_repo_group', parent_group=parent_group_id,), |
|
191 | url('new_repo_group', parent_group=parent_group_id,), | |
193 | status=403) |
|
192 | status=403) | |
194 |
|
193 | |||
195 |
|
194 | |||
196 | class TestRepoGroupsControllerGIT(_BaseTest): |
|
195 | class TestRepoGroupsControllerGIT(_BaseTest): | |
197 | REPO_GROUP = None |
|
196 | REPO_GROUP = None | |
198 | NEW_REPO_GROUP = 'git_repo' |
|
197 | NEW_REPO_GROUP = 'git_repo' | |
199 | REPO = GIT_REPO |
|
198 | REPO = GIT_REPO | |
200 | REPO_TYPE = 'git' |
|
199 | REPO_TYPE = 'git' | |
201 |
|
200 | |||
202 |
|
201 | |||
203 | class TestRepoGroupsControllerHG(_BaseTest): |
|
202 | class TestRepoGroupsControllerHG(_BaseTest): | |
204 | REPO_GROUP = None |
|
203 | REPO_GROUP = None | |
205 | NEW_REPO_GROUP = 'hg_repo' |
|
204 | NEW_REPO_GROUP = 'hg_repo' | |
206 | REPO = HG_REPO |
|
205 | REPO = HG_REPO | |
207 | REPO_TYPE = 'hg' |
|
206 | REPO_TYPE = 'hg' | |
208 |
|
207 | |||
209 |
|
208 | |||
210 | class TestRepoGroupsControllerNumericalHG(_BaseTest): |
|
209 | class TestRepoGroupsControllerNumericalHG(_BaseTest): | |
211 | REPO_GROUP = None |
|
210 | REPO_GROUP = None | |
212 | NEW_REPO_GROUP = '12345' |
|
211 | NEW_REPO_GROUP = '12345' | |
213 | REPO = HG_REPO |
|
212 | REPO = HG_REPO | |
214 | REPO_TYPE = 'hg' |
|
213 | REPO_TYPE = 'hg' | |
215 |
|
214 | |||
216 |
|
215 | |||
217 | class TestRepoGroupsControllerNonAsciiHG(_BaseTest): |
|
216 | class TestRepoGroupsControllerNonAsciiHG(_BaseTest): | |
218 | REPO_GROUP = None |
|
217 | REPO_GROUP = None | |
219 | NEW_REPO_GROUP = 'hg_repo_Δ Δ' |
|
218 | NEW_REPO_GROUP = 'hg_repo_Δ Δ' | |
220 | REPO = HG_REPO |
|
219 | REPO = HG_REPO | |
221 | REPO_TYPE = 'hg' |
|
220 | REPO_TYPE = 'hg' |
@@ -1,695 +1,717 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import pytest |
|
21 | import pytest | |
22 |
|
22 | |||
23 | from rhodecode.lib.auth import AuthUser |
|
23 | from rhodecode.lib.auth import AuthUser | |
24 | from rhodecode.model.db import ( |
|
24 | from rhodecode.model.db import ( | |
25 | RepoGroup, User, UserGroupRepoGroupToPerm, Permission, UserToPerm, |
|
25 | RepoGroup, User, UserGroupRepoGroupToPerm, Permission, UserToPerm, | |
26 | UserGroupToPerm) |
|
26 | UserGroupToPerm) | |
27 | from rhodecode.model.meta import Session |
|
27 | from rhodecode.model.meta import Session | |
28 | from rhodecode.model.permission import PermissionModel |
|
28 | from rhodecode.model.permission import PermissionModel | |
29 | from rhodecode.model.repo import RepoModel |
|
29 | from rhodecode.model.repo import RepoModel | |
30 | from rhodecode.model.repo_group import RepoGroupModel |
|
30 | from rhodecode.model.repo_group import RepoGroupModel | |
31 | from rhodecode.model.user import UserModel |
|
31 | from rhodecode.model.user import UserModel | |
32 | from rhodecode.model.user_group import UserGroupModel |
|
32 | from rhodecode.model.user_group import UserGroupModel | |
33 | from rhodecode.tests.fixture import Fixture |
|
33 | from rhodecode.tests.fixture import Fixture | |
34 |
|
34 | |||
35 |
|
35 | |||
36 | fixture = Fixture() |
|
36 | fixture = Fixture() | |
37 |
|
37 | |||
38 |
|
38 | |||
39 | @pytest.fixture |
|
39 | @pytest.fixture | |
40 | def repo_name(backend_hg): |
|
40 | def repo_name(backend_hg): | |
41 | return backend_hg.repo_name |
|
41 | return backend_hg.repo_name | |
42 |
|
42 | |||
43 |
|
43 | |||
44 | class TestPermissions(object): |
|
44 | class TestPermissions(object): | |
45 |
|
45 | |||
46 | @pytest.fixture(scope='class', autouse=True) |
|
46 | @pytest.fixture(scope='class', autouse=True) | |
47 | def default_permissions(self, request, pylonsapp): |
|
47 | def default_permissions(self, request, pylonsapp): | |
48 | # recreate default user to get a clean start |
|
48 | # recreate default user to get a clean start | |
49 | PermissionModel().create_default_user_permissions( |
|
49 | PermissionModel().create_default_user_permissions( | |
50 | user=User.DEFAULT_USER, force=True) |
|
50 | user=User.DEFAULT_USER, force=True) | |
51 | Session().commit() |
|
51 | Session().commit() | |
52 |
|
52 | |||
53 | @pytest.fixture(autouse=True) |
|
53 | @pytest.fixture(autouse=True) | |
54 | def prepare_users(self, request): |
|
54 | def prepare_users(self, request): | |
55 | # TODO: User creation is a duplicate of test_nofitications, check |
|
55 | # TODO: User creation is a duplicate of test_nofitications, check | |
56 | # if that can be unified |
|
56 | # if that can be unified | |
57 | self.u1 = UserModel().create_or_update( |
|
57 | self.u1 = UserModel().create_or_update( | |
58 | username=u'u1', password=u'qweqwe', |
|
58 | username=u'u1', password=u'qweqwe', | |
59 | email=u'u1@rhodecode.org', firstname=u'u1', lastname=u'u1' |
|
59 | email=u'u1@rhodecode.org', firstname=u'u1', lastname=u'u1' | |
60 | ) |
|
60 | ) | |
61 | self.u2 = UserModel().create_or_update( |
|
61 | self.u2 = UserModel().create_or_update( | |
62 | username=u'u2', password=u'qweqwe', |
|
62 | username=u'u2', password=u'qweqwe', | |
63 | email=u'u2@rhodecode.org', firstname=u'u2', lastname=u'u2' |
|
63 | email=u'u2@rhodecode.org', firstname=u'u2', lastname=u'u2' | |
64 | ) |
|
64 | ) | |
65 | self.u3 = UserModel().create_or_update( |
|
65 | self.u3 = UserModel().create_or_update( | |
66 | username=u'u3', password=u'qweqwe', |
|
66 | username=u'u3', password=u'qweqwe', | |
67 | email=u'u3@rhodecode.org', firstname=u'u3', lastname=u'u3' |
|
67 | email=u'u3@rhodecode.org', firstname=u'u3', lastname=u'u3' | |
68 | ) |
|
68 | ) | |
69 | self.anon = User.get_default_user() |
|
69 | self.anon = User.get_default_user() | |
70 | self.a1 = UserModel().create_or_update( |
|
70 | self.a1 = UserModel().create_or_update( | |
71 | username=u'a1', password=u'qweqwe', |
|
71 | username=u'a1', password=u'qweqwe', | |
72 | email=u'a1@rhodecode.org', firstname=u'a1', lastname=u'a1', |
|
72 | email=u'a1@rhodecode.org', firstname=u'a1', lastname=u'a1', | |
73 | admin=True |
|
73 | admin=True | |
74 | ) |
|
74 | ) | |
75 | Session().commit() |
|
75 | Session().commit() | |
76 |
|
76 | |||
77 | request.addfinalizer(self.cleanup) |
|
77 | request.addfinalizer(self.cleanup) | |
78 |
|
78 | |||
79 | def cleanup(self): |
|
79 | def cleanup(self): | |
80 | if hasattr(self, 'test_repo'): |
|
80 | if hasattr(self, 'test_repo'): | |
81 | RepoModel().delete(repo=self.test_repo) |
|
81 | RepoModel().delete(repo=self.test_repo) | |
82 |
|
82 | |||
83 | if hasattr(self, 'g1'): |
|
83 | if hasattr(self, 'g1'): | |
84 | RepoGroupModel().delete(self.g1.group_id) |
|
84 | RepoGroupModel().delete(self.g1.group_id) | |
85 | if hasattr(self, 'g2'): |
|
85 | if hasattr(self, 'g2'): | |
86 | RepoGroupModel().delete(self.g2.group_id) |
|
86 | RepoGroupModel().delete(self.g2.group_id) | |
87 |
|
87 | |||
88 | UserModel().delete(self.u1) |
|
88 | UserModel().delete(self.u1) | |
89 | UserModel().delete(self.u2) |
|
89 | UserModel().delete(self.u2) | |
90 | UserModel().delete(self.u3) |
|
90 | UserModel().delete(self.u3) | |
91 | UserModel().delete(self.a1) |
|
91 | UserModel().delete(self.a1) | |
92 |
|
92 | |||
93 | if hasattr(self, 'ug1'): |
|
93 | if hasattr(self, 'ug1'): | |
94 | UserGroupModel().delete(self.ug1, force=True) |
|
94 | UserGroupModel().delete(self.ug1, force=True) | |
95 |
|
95 | |||
96 | Session().commit() |
|
96 | Session().commit() | |
97 |
|
97 | |||
98 | def test_default_perms_set(self, repo_name): |
|
98 | def test_default_perms_set(self, repo_name): | |
99 | assert repo_perms(self.u1)[repo_name] == 'repository.read' |
|
99 | assert repo_perms(self.u1)[repo_name] == 'repository.read' | |
100 | new_perm = 'repository.write' |
|
100 | new_perm = 'repository.write' | |
101 | RepoModel().grant_user_permission(repo=repo_name, user=self.u1, |
|
101 | RepoModel().grant_user_permission(repo=repo_name, user=self.u1, | |
102 | perm=new_perm) |
|
102 | perm=new_perm) | |
103 | Session().commit() |
|
103 | Session().commit() | |
104 | assert repo_perms(self.u1)[repo_name] == new_perm |
|
104 | assert repo_perms(self.u1)[repo_name] == new_perm | |
105 |
|
105 | |||
106 | def test_default_admin_perms_set(self, repo_name): |
|
106 | def test_default_admin_perms_set(self, repo_name): | |
107 | assert repo_perms(self.a1)[repo_name] == 'repository.admin' |
|
107 | assert repo_perms(self.a1)[repo_name] == 'repository.admin' | |
108 | RepoModel().grant_user_permission(repo=repo_name, user=self.a1, |
|
108 | RepoModel().grant_user_permission(repo=repo_name, user=self.a1, | |
109 | perm='repository.write') |
|
109 | perm='repository.write') | |
110 | Session().commit() |
|
110 | Session().commit() | |
111 | # cannot really downgrade admins permissions !? they still gets set as |
|
111 | # cannot really downgrade admins permissions !? they still gets set as | |
112 | # admin ! |
|
112 | # admin ! | |
113 | assert repo_perms(self.a1)[repo_name] == 'repository.admin' |
|
113 | assert repo_perms(self.a1)[repo_name] == 'repository.admin' | |
114 |
|
114 | |||
115 | def test_default_group_perms(self, repo_name): |
|
115 | def test_default_group_perms(self, repo_name): | |
116 | self.g1 = fixture.create_repo_group('test1', skip_if_exists=True) |
|
116 | self.g1 = fixture.create_repo_group('test1', skip_if_exists=True) | |
117 | self.g2 = fixture.create_repo_group('test2', skip_if_exists=True) |
|
117 | self.g2 = fixture.create_repo_group('test2', skip_if_exists=True) | |
118 |
|
118 | |||
119 | assert repo_perms(self.u1)[repo_name] == 'repository.read' |
|
119 | assert repo_perms(self.u1)[repo_name] == 'repository.read' | |
120 | assert group_perms(self.u1) == { |
|
120 | assert group_perms(self.u1) == { | |
121 | 'test1': 'group.read', 'test2': 'group.read'} |
|
121 | 'test1': 'group.read', 'test2': 'group.read'} | |
122 | assert global_perms(self.u1) == set( |
|
122 | assert global_perms(self.u1) == set( | |
123 | Permission.DEFAULT_USER_PERMISSIONS) |
|
123 | Permission.DEFAULT_USER_PERMISSIONS) | |
124 |
|
124 | |||
125 | def test_default_admin_group_perms(self, repo_name): |
|
125 | def test_default_admin_group_perms(self, repo_name): | |
126 | self.g1 = fixture.create_repo_group('test1', skip_if_exists=True) |
|
126 | self.g1 = fixture.create_repo_group('test1', skip_if_exists=True) | |
127 | self.g2 = fixture.create_repo_group('test2', skip_if_exists=True) |
|
127 | self.g2 = fixture.create_repo_group('test2', skip_if_exists=True) | |
128 |
|
128 | |||
129 | assert repo_perms(self.a1)[repo_name] == 'repository.admin' |
|
129 | assert repo_perms(self.a1)[repo_name] == 'repository.admin' | |
130 | assert group_perms(self.a1) == { |
|
130 | assert group_perms(self.a1) == { | |
131 | 'test1': 'group.admin', 'test2': 'group.admin'} |
|
131 | 'test1': 'group.admin', 'test2': 'group.admin'} | |
132 |
|
132 | |||
133 |
def test_default_owner_ |
|
133 | def test_default_owner_repo_perms(self, backend, user_util, test_repo): | |
134 | # "u1" shall be owner without any special permission assigned |
|
134 | user = user_util.create_user() | |
135 | self.g1 = fixture.create_repo_group('test1') |
|
135 | repo = test_repo('minimal', backend.alias) | |
136 | assert group_perms(self.u1) == {'test1': 'group.read'} |
|
136 | org_owner = repo.user | |
|
137 | assert repo_perms(user)[repo.repo_name] == 'repository.read' | |||
|
138 | ||||
|
139 | repo.user = user | |||
|
140 | assert repo_perms(user)[repo.repo_name] == 'repository.admin' | |||
|
141 | repo.user = org_owner | |||
|
142 | ||||
|
143 | def test_default_owner_repo_group_perms(self, user_util, test_repo_group): | |||
|
144 | user = user_util.create_user() | |||
|
145 | org_owner = test_repo_group.user | |||
137 |
|
146 | |||
138 | # Make him owner, but do not add any special permissions |
|
147 | assert group_perms(user)[test_repo_group.group_name] == 'group.read' | |
139 | self.g1.user = self.u1 |
|
148 | ||
140 | assert group_perms(self.u1) == {'test1': 'group.admin'} |
|
149 | test_repo_group.user = user | |
|
150 | assert group_perms(user)[test_repo_group.group_name] == 'group.admin' | |||
|
151 | test_repo_group.user = org_owner | |||
|
152 | ||||
|
153 | def test_default_owner_user_group_perms(self, user_util, test_user_group): | |||
|
154 | user = user_util.create_user() | |||
|
155 | org_owner = test_user_group.user | |||
|
156 | ||||
|
157 | assert user_group_perms(user)[test_user_group.users_group_name] == 'usergroup.read' | |||
|
158 | ||||
|
159 | test_user_group.user = user | |||
|
160 | assert user_group_perms(user)[test_user_group.users_group_name] == 'usergroup.admin' | |||
|
161 | ||||
|
162 | test_user_group.user = org_owner | |||
141 |
|
163 | |||
142 | def test_propagated_permission_from_users_group_by_explicit_perms_exist( |
|
164 | def test_propagated_permission_from_users_group_by_explicit_perms_exist( | |
143 | self, repo_name): |
|
165 | self, repo_name): | |
144 | # make group |
|
166 | # make group | |
145 | self.ug1 = fixture.create_user_group('G1') |
|
167 | self.ug1 = fixture.create_user_group('G1') | |
146 | UserGroupModel().add_user_to_group(self.ug1, self.u1) |
|
168 | UserGroupModel().add_user_to_group(self.ug1, self.u1) | |
147 |
|
169 | |||
148 | # set permission to lower |
|
170 | # set permission to lower | |
149 | new_perm = 'repository.none' |
|
171 | new_perm = 'repository.none' | |
150 | RepoModel().grant_user_permission( |
|
172 | RepoModel().grant_user_permission( | |
151 | repo=repo_name, user=self.u1, perm=new_perm) |
|
173 | repo=repo_name, user=self.u1, perm=new_perm) | |
152 | Session().commit() |
|
174 | Session().commit() | |
153 | assert repo_perms(self.u1)[repo_name] == new_perm |
|
175 | assert repo_perms(self.u1)[repo_name] == new_perm | |
154 |
|
176 | |||
155 | # grant perm for group this should not override permission from user |
|
177 | # grant perm for group this should not override permission from user | |
156 | # since it has explicitly set |
|
178 | # since it has explicitly set | |
157 | new_perm_gr = 'repository.write' |
|
179 | new_perm_gr = 'repository.write' | |
158 | RepoModel().grant_user_group_permission( |
|
180 | RepoModel().grant_user_group_permission( | |
159 | repo=repo_name, group_name=self.ug1, perm=new_perm_gr) |
|
181 | repo=repo_name, group_name=self.ug1, perm=new_perm_gr) | |
160 |
|
182 | |||
161 | assert repo_perms(self.u1)[repo_name] == new_perm |
|
183 | assert repo_perms(self.u1)[repo_name] == new_perm | |
162 | assert group_perms(self.u1) == {} |
|
184 | assert group_perms(self.u1) == {} | |
163 |
|
185 | |||
164 | def test_propagated_permission_from_users_group(self, repo_name): |
|
186 | def test_propagated_permission_from_users_group(self, repo_name): | |
165 | # make group |
|
187 | # make group | |
166 | self.ug1 = fixture.create_user_group('G1') |
|
188 | self.ug1 = fixture.create_user_group('G1') | |
167 | UserGroupModel().add_user_to_group(self.ug1, self.u3) |
|
189 | UserGroupModel().add_user_to_group(self.ug1, self.u3) | |
168 |
|
190 | |||
169 | # grant perm for group |
|
191 | # grant perm for group | |
170 | # this should override default permission from user |
|
192 | # this should override default permission from user | |
171 | new_perm_gr = 'repository.write' |
|
193 | new_perm_gr = 'repository.write' | |
172 | RepoModel().grant_user_group_permission( |
|
194 | RepoModel().grant_user_group_permission( | |
173 | repo=repo_name, group_name=self.ug1, perm=new_perm_gr) |
|
195 | repo=repo_name, group_name=self.ug1, perm=new_perm_gr) | |
174 |
|
196 | |||
175 | assert repo_perms(self.u3)[repo_name] == new_perm_gr |
|
197 | assert repo_perms(self.u3)[repo_name] == new_perm_gr | |
176 | assert group_perms(self.u3) == {} |
|
198 | assert group_perms(self.u3) == {} | |
177 |
|
199 | |||
178 | def test_propagated_permission_from_users_group_lower_weight( |
|
200 | def test_propagated_permission_from_users_group_lower_weight( | |
179 | self, repo_name): |
|
201 | self, repo_name): | |
180 | # make group with user |
|
202 | # make group with user | |
181 | self.ug1 = fixture.create_user_group('G1') |
|
203 | self.ug1 = fixture.create_user_group('G1') | |
182 | UserGroupModel().add_user_to_group(self.ug1, self.u1) |
|
204 | UserGroupModel().add_user_to_group(self.ug1, self.u1) | |
183 |
|
205 | |||
184 | # set permission to lower |
|
206 | # set permission to lower | |
185 | new_perm_h = 'repository.write' |
|
207 | new_perm_h = 'repository.write' | |
186 | RepoModel().grant_user_permission( |
|
208 | RepoModel().grant_user_permission( | |
187 | repo=repo_name, user=self.u1, perm=new_perm_h) |
|
209 | repo=repo_name, user=self.u1, perm=new_perm_h) | |
188 | Session().commit() |
|
210 | Session().commit() | |
189 |
|
211 | |||
190 | assert repo_perms(self.u1)[repo_name] == new_perm_h |
|
212 | assert repo_perms(self.u1)[repo_name] == new_perm_h | |
191 |
|
213 | |||
192 | # grant perm for group this should NOT override permission from user |
|
214 | # grant perm for group this should NOT override permission from user | |
193 | # since it's lower than granted |
|
215 | # since it's lower than granted | |
194 | new_perm_l = 'repository.read' |
|
216 | new_perm_l = 'repository.read' | |
195 | RepoModel().grant_user_group_permission( |
|
217 | RepoModel().grant_user_group_permission( | |
196 | repo=repo_name, group_name=self.ug1, perm=new_perm_l) |
|
218 | repo=repo_name, group_name=self.ug1, perm=new_perm_l) | |
197 |
|
219 | |||
198 | assert repo_perms(self.u1)[repo_name] == new_perm_h |
|
220 | assert repo_perms(self.u1)[repo_name] == new_perm_h | |
199 | assert group_perms(self.u1) == {} |
|
221 | assert group_perms(self.u1) == {} | |
200 |
|
222 | |||
201 | def test_repo_in_group_permissions(self): |
|
223 | def test_repo_in_group_permissions(self): | |
202 | self.g1 = fixture.create_repo_group('group1', skip_if_exists=True) |
|
224 | self.g1 = fixture.create_repo_group('group1', skip_if_exists=True) | |
203 | self.g2 = fixture.create_repo_group('group2', skip_if_exists=True) |
|
225 | self.g2 = fixture.create_repo_group('group2', skip_if_exists=True) | |
204 | # both perms should be read ! |
|
226 | # both perms should be read ! | |
205 | assert group_perms(self.u1) == \ |
|
227 | assert group_perms(self.u1) == \ | |
206 | {u'group1': u'group.read', u'group2': u'group.read'} |
|
228 | {u'group1': u'group.read', u'group2': u'group.read'} | |
207 |
|
229 | |||
208 | assert group_perms(self.anon) == \ |
|
230 | assert group_perms(self.anon) == \ | |
209 | {u'group1': u'group.read', u'group2': u'group.read'} |
|
231 | {u'group1': u'group.read', u'group2': u'group.read'} | |
210 |
|
232 | |||
211 | # Change perms to none for both groups |
|
233 | # Change perms to none for both groups | |
212 | RepoGroupModel().grant_user_permission( |
|
234 | RepoGroupModel().grant_user_permission( | |
213 | repo_group=self.g1, user=self.anon, perm='group.none') |
|
235 | repo_group=self.g1, user=self.anon, perm='group.none') | |
214 | RepoGroupModel().grant_user_permission( |
|
236 | RepoGroupModel().grant_user_permission( | |
215 | repo_group=self.g2, user=self.anon, perm='group.none') |
|
237 | repo_group=self.g2, user=self.anon, perm='group.none') | |
216 |
|
238 | |||
217 | assert group_perms(self.u1) == \ |
|
239 | assert group_perms(self.u1) == \ | |
218 | {u'group1': u'group.none', u'group2': u'group.none'} |
|
240 | {u'group1': u'group.none', u'group2': u'group.none'} | |
219 | assert group_perms(self.anon) == \ |
|
241 | assert group_perms(self.anon) == \ | |
220 | {u'group1': u'group.none', u'group2': u'group.none'} |
|
242 | {u'group1': u'group.none', u'group2': u'group.none'} | |
221 |
|
243 | |||
222 | # add repo to group |
|
244 | # add repo to group | |
223 | name = RepoGroup.url_sep().join([self.g1.group_name, 'test_perm']) |
|
245 | name = RepoGroup.url_sep().join([self.g1.group_name, 'test_perm']) | |
224 | self.test_repo = fixture.create_repo(name=name, |
|
246 | self.test_repo = fixture.create_repo(name=name, | |
225 | repo_type='hg', |
|
247 | repo_type='hg', | |
226 | repo_group=self.g1, |
|
248 | repo_group=self.g1, | |
227 | cur_user=self.u1,) |
|
249 | cur_user=self.u1,) | |
228 |
|
250 | |||
229 | assert group_perms(self.u1) == \ |
|
251 | assert group_perms(self.u1) == \ | |
230 | {u'group1': u'group.none', u'group2': u'group.none'} |
|
252 | {u'group1': u'group.none', u'group2': u'group.none'} | |
231 | assert group_perms(self.anon) == \ |
|
253 | assert group_perms(self.anon) == \ | |
232 | {u'group1': u'group.none', u'group2': u'group.none'} |
|
254 | {u'group1': u'group.none', u'group2': u'group.none'} | |
233 |
|
255 | |||
234 | # grant permission for u2 ! |
|
256 | # grant permission for u2 ! | |
235 | RepoGroupModel().grant_user_permission( |
|
257 | RepoGroupModel().grant_user_permission( | |
236 | repo_group=self.g1, user=self.u2, perm='group.read') |
|
258 | repo_group=self.g1, user=self.u2, perm='group.read') | |
237 | RepoGroupModel().grant_user_permission( |
|
259 | RepoGroupModel().grant_user_permission( | |
238 | repo_group=self.g2, user=self.u2, perm='group.read') |
|
260 | repo_group=self.g2, user=self.u2, perm='group.read') | |
239 | Session().commit() |
|
261 | Session().commit() | |
240 | assert self.u1 != self.u2 |
|
262 | assert self.u1 != self.u2 | |
241 |
|
263 | |||
242 | # u1 and anon should have not change perms while u2 should ! |
|
264 | # u1 and anon should have not change perms while u2 should ! | |
243 | assert group_perms(self.u1) == \ |
|
265 | assert group_perms(self.u1) == \ | |
244 | {u'group1': u'group.none', u'group2': u'group.none'} |
|
266 | {u'group1': u'group.none', u'group2': u'group.none'} | |
245 | assert group_perms(self.u2) == \ |
|
267 | assert group_perms(self.u2) == \ | |
246 | {u'group1': u'group.read', u'group2': u'group.read'} |
|
268 | {u'group1': u'group.read', u'group2': u'group.read'} | |
247 | assert group_perms(self.anon) == \ |
|
269 | assert group_perms(self.anon) == \ | |
248 | {u'group1': u'group.none', u'group2': u'group.none'} |
|
270 | {u'group1': u'group.none', u'group2': u'group.none'} | |
249 |
|
271 | |||
250 | def test_repo_group_user_as_user_group_member(self): |
|
272 | def test_repo_group_user_as_user_group_member(self): | |
251 | # create Group1 |
|
273 | # create Group1 | |
252 | self.g1 = fixture.create_repo_group('group1', skip_if_exists=True) |
|
274 | self.g1 = fixture.create_repo_group('group1', skip_if_exists=True) | |
253 | assert group_perms(self.anon) == {u'group1': u'group.read'} |
|
275 | assert group_perms(self.anon) == {u'group1': u'group.read'} | |
254 |
|
276 | |||
255 | # set default permission to none |
|
277 | # set default permission to none | |
256 | RepoGroupModel().grant_user_permission( |
|
278 | RepoGroupModel().grant_user_permission( | |
257 | repo_group=self.g1, user=self.anon, perm='group.none') |
|
279 | repo_group=self.g1, user=self.anon, perm='group.none') | |
258 | # make group |
|
280 | # make group | |
259 | self.ug1 = fixture.create_user_group('G1') |
|
281 | self.ug1 = fixture.create_user_group('G1') | |
260 | # add user to group |
|
282 | # add user to group | |
261 | UserGroupModel().add_user_to_group(self.ug1, self.u1) |
|
283 | UserGroupModel().add_user_to_group(self.ug1, self.u1) | |
262 | Session().commit() |
|
284 | Session().commit() | |
263 |
|
285 | |||
264 | # check if user is in the group |
|
286 | # check if user is in the group | |
265 | ug1 = UserGroupModel().get(self.ug1.users_group_id) |
|
287 | ug1 = UserGroupModel().get(self.ug1.users_group_id) | |
266 | members = [x.user_id for x in ug1.members] |
|
288 | members = [x.user_id for x in ug1.members] | |
267 | assert members == [self.u1.user_id] |
|
289 | assert members == [self.u1.user_id] | |
268 | # add some user to that group |
|
290 | # add some user to that group | |
269 |
|
291 | |||
270 | # check his permissions |
|
292 | # check his permissions | |
271 | assert group_perms(self.anon) == {u'group1': u'group.none'} |
|
293 | assert group_perms(self.anon) == {u'group1': u'group.none'} | |
272 | assert group_perms(self.u1) == {u'group1': u'group.none'} |
|
294 | assert group_perms(self.u1) == {u'group1': u'group.none'} | |
273 |
|
295 | |||
274 | # grant ug1 read permissions for |
|
296 | # grant ug1 read permissions for | |
275 | RepoGroupModel().grant_user_group_permission( |
|
297 | RepoGroupModel().grant_user_group_permission( | |
276 | repo_group=self.g1, group_name=self.ug1, perm='group.read') |
|
298 | repo_group=self.g1, group_name=self.ug1, perm='group.read') | |
277 | Session().commit() |
|
299 | Session().commit() | |
278 |
|
300 | |||
279 | # check if the |
|
301 | # check if the | |
280 | obj = Session().query(UserGroupRepoGroupToPerm)\ |
|
302 | obj = Session().query(UserGroupRepoGroupToPerm)\ | |
281 | .filter(UserGroupRepoGroupToPerm.group == self.g1)\ |
|
303 | .filter(UserGroupRepoGroupToPerm.group == self.g1)\ | |
282 | .filter(UserGroupRepoGroupToPerm.users_group == self.ug1)\ |
|
304 | .filter(UserGroupRepoGroupToPerm.users_group == self.ug1)\ | |
283 | .scalar() |
|
305 | .scalar() | |
284 | assert obj.permission.permission_name == 'group.read' |
|
306 | assert obj.permission.permission_name == 'group.read' | |
285 |
|
307 | |||
286 | assert group_perms(self.anon) == {u'group1': u'group.none'} |
|
308 | assert group_perms(self.anon) == {u'group1': u'group.none'} | |
287 | assert group_perms(self.u1) == {u'group1': u'group.read'} |
|
309 | assert group_perms(self.u1) == {u'group1': u'group.read'} | |
288 |
|
310 | |||
289 | def test_inherited_permissions_from_default_on_user_enabled(self): |
|
311 | def test_inherited_permissions_from_default_on_user_enabled(self): | |
290 | # enable fork and create on default user |
|
312 | # enable fork and create on default user | |
291 | _form_result = { |
|
313 | _form_result = { | |
292 | 'default_repo_create': 'hg.create.repository', |
|
314 | 'default_repo_create': 'hg.create.repository', | |
293 | 'default_fork_create': 'hg.fork.repository' |
|
315 | 'default_fork_create': 'hg.fork.repository' | |
294 | } |
|
316 | } | |
295 | PermissionModel().set_new_user_perms( |
|
317 | PermissionModel().set_new_user_perms( | |
296 | User.get_default_user(), _form_result) |
|
318 | User.get_default_user(), _form_result) | |
297 | Session().commit() |
|
319 | Session().commit() | |
298 |
|
320 | |||
299 | # make sure inherit flag is turned on |
|
321 | # make sure inherit flag is turned on | |
300 | self.u1.inherit_default_permissions = True |
|
322 | self.u1.inherit_default_permissions = True | |
301 | Session().commit() |
|
323 | Session().commit() | |
302 |
|
324 | |||
303 | # this user will have inherited permissions from default user |
|
325 | # this user will have inherited permissions from default user | |
304 | assert global_perms(self.u1) == default_perms() |
|
326 | assert global_perms(self.u1) == default_perms() | |
305 |
|
327 | |||
306 | def test_inherited_permissions_from_default_on_user_disabled(self): |
|
328 | def test_inherited_permissions_from_default_on_user_disabled(self): | |
307 | # disable fork and create on default user |
|
329 | # disable fork and create on default user | |
308 | _form_result = { |
|
330 | _form_result = { | |
309 | 'default_repo_create': 'hg.create.none', |
|
331 | 'default_repo_create': 'hg.create.none', | |
310 | 'default_fork_create': 'hg.fork.none' |
|
332 | 'default_fork_create': 'hg.fork.none' | |
311 | } |
|
333 | } | |
312 | PermissionModel().set_new_user_perms( |
|
334 | PermissionModel().set_new_user_perms( | |
313 | User.get_default_user(), _form_result) |
|
335 | User.get_default_user(), _form_result) | |
314 | Session().commit() |
|
336 | Session().commit() | |
315 |
|
337 | |||
316 | # make sure inherit flag is turned on |
|
338 | # make sure inherit flag is turned on | |
317 | self.u1.inherit_default_permissions = True |
|
339 | self.u1.inherit_default_permissions = True | |
318 | Session().commit() |
|
340 | Session().commit() | |
319 |
|
341 | |||
320 | # this user will have inherited permissions from default user |
|
342 | # this user will have inherited permissions from default user | |
321 | expected_perms = default_perms( |
|
343 | expected_perms = default_perms( | |
322 | added=['hg.create.none', 'hg.fork.none'], |
|
344 | added=['hg.create.none', 'hg.fork.none'], | |
323 | removed=['hg.create.repository', 'hg.fork.repository']) |
|
345 | removed=['hg.create.repository', 'hg.fork.repository']) | |
324 | assert global_perms(self.u1) == expected_perms |
|
346 | assert global_perms(self.u1) == expected_perms | |
325 |
|
347 | |||
326 | def test_non_inherited_permissions_from_default_on_user_enabled(self): |
|
348 | def test_non_inherited_permissions_from_default_on_user_enabled(self): | |
327 | user_model = UserModel() |
|
349 | user_model = UserModel() | |
328 | # enable fork and create on default user |
|
350 | # enable fork and create on default user | |
329 | usr = User.DEFAULT_USER |
|
351 | usr = User.DEFAULT_USER | |
330 | user_model.revoke_perm(usr, 'hg.create.none') |
|
352 | user_model.revoke_perm(usr, 'hg.create.none') | |
331 | user_model.grant_perm(usr, 'hg.create.repository') |
|
353 | user_model.grant_perm(usr, 'hg.create.repository') | |
332 | user_model.revoke_perm(usr, 'hg.fork.none') |
|
354 | user_model.revoke_perm(usr, 'hg.fork.none') | |
333 | user_model.grant_perm(usr, 'hg.fork.repository') |
|
355 | user_model.grant_perm(usr, 'hg.fork.repository') | |
334 |
|
356 | |||
335 | # disable global perms on specific user |
|
357 | # disable global perms on specific user | |
336 | user_model.revoke_perm(self.u1, 'hg.create.repository') |
|
358 | user_model.revoke_perm(self.u1, 'hg.create.repository') | |
337 | user_model.grant_perm(self.u1, 'hg.create.none') |
|
359 | user_model.grant_perm(self.u1, 'hg.create.none') | |
338 | user_model.revoke_perm(self.u1, 'hg.fork.repository') |
|
360 | user_model.revoke_perm(self.u1, 'hg.fork.repository') | |
339 | user_model.grant_perm(self.u1, 'hg.fork.none') |
|
361 | user_model.grant_perm(self.u1, 'hg.fork.none') | |
340 |
|
362 | |||
341 | # make sure inherit flag is turned off |
|
363 | # make sure inherit flag is turned off | |
342 | self.u1.inherit_default_permissions = False |
|
364 | self.u1.inherit_default_permissions = False | |
343 | Session().commit() |
|
365 | Session().commit() | |
344 |
|
366 | |||
345 | # this user will have non inherited permissions from he's |
|
367 | # this user will have non inherited permissions from he's | |
346 | # explicitly set permissions |
|
368 | # explicitly set permissions | |
347 | assert global_perms(self.u1) == set([ |
|
369 | assert global_perms(self.u1) == set([ | |
348 | 'hg.create.none', |
|
370 | 'hg.create.none', | |
349 | 'hg.fork.none', |
|
371 | 'hg.fork.none', | |
350 | 'hg.register.manual_activate', |
|
372 | 'hg.register.manual_activate', | |
351 | 'hg.password_reset.enabled', |
|
373 | 'hg.password_reset.enabled', | |
352 | 'hg.extern_activate.auto', |
|
374 | 'hg.extern_activate.auto', | |
353 | 'repository.read', |
|
375 | 'repository.read', | |
354 | 'group.read', |
|
376 | 'group.read', | |
355 | 'usergroup.read', |
|
377 | 'usergroup.read', | |
356 | ]) |
|
378 | ]) | |
357 |
|
379 | |||
358 | def test_non_inherited_permissions_from_default_on_user_disabled(self): |
|
380 | def test_non_inherited_permissions_from_default_on_user_disabled(self): | |
359 | user_model = UserModel() |
|
381 | user_model = UserModel() | |
360 | # disable fork and create on default user |
|
382 | # disable fork and create on default user | |
361 | usr = User.DEFAULT_USER |
|
383 | usr = User.DEFAULT_USER | |
362 | user_model.revoke_perm(usr, 'hg.create.repository') |
|
384 | user_model.revoke_perm(usr, 'hg.create.repository') | |
363 | user_model.grant_perm(usr, 'hg.create.none') |
|
385 | user_model.grant_perm(usr, 'hg.create.none') | |
364 | user_model.revoke_perm(usr, 'hg.fork.repository') |
|
386 | user_model.revoke_perm(usr, 'hg.fork.repository') | |
365 | user_model.grant_perm(usr, 'hg.fork.none') |
|
387 | user_model.grant_perm(usr, 'hg.fork.none') | |
366 |
|
388 | |||
367 | # enable global perms on specific user |
|
389 | # enable global perms on specific user | |
368 | user_model.revoke_perm(self.u1, 'hg.create.none') |
|
390 | user_model.revoke_perm(self.u1, 'hg.create.none') | |
369 | user_model.grant_perm(self.u1, 'hg.create.repository') |
|
391 | user_model.grant_perm(self.u1, 'hg.create.repository') | |
370 | user_model.revoke_perm(self.u1, 'hg.fork.none') |
|
392 | user_model.revoke_perm(self.u1, 'hg.fork.none') | |
371 | user_model.grant_perm(self.u1, 'hg.fork.repository') |
|
393 | user_model.grant_perm(self.u1, 'hg.fork.repository') | |
372 |
|
394 | |||
373 | # make sure inherit flag is turned off |
|
395 | # make sure inherit flag is turned off | |
374 | self.u1.inherit_default_permissions = False |
|
396 | self.u1.inherit_default_permissions = False | |
375 | Session().commit() |
|
397 | Session().commit() | |
376 |
|
398 | |||
377 | # this user will have non inherited permissions from he's |
|
399 | # this user will have non inherited permissions from he's | |
378 | # explicitly set permissions |
|
400 | # explicitly set permissions | |
379 | assert global_perms(self.u1) == set([ |
|
401 | assert global_perms(self.u1) == set([ | |
380 | 'hg.create.repository', |
|
402 | 'hg.create.repository', | |
381 | 'hg.fork.repository', |
|
403 | 'hg.fork.repository', | |
382 | 'hg.register.manual_activate', |
|
404 | 'hg.register.manual_activate', | |
383 | 'hg.password_reset.enabled', |
|
405 | 'hg.password_reset.enabled', | |
384 | 'hg.extern_activate.auto', |
|
406 | 'hg.extern_activate.auto', | |
385 | 'repository.read', |
|
407 | 'repository.read', | |
386 | 'group.read', |
|
408 | 'group.read', | |
387 | 'usergroup.read', |
|
409 | 'usergroup.read', | |
388 | ]) |
|
410 | ]) | |
389 |
|
411 | |||
390 | @pytest.mark.parametrize('perm, expected_perm', [ |
|
412 | @pytest.mark.parametrize('perm, expected_perm', [ | |
391 | ('hg.inherit_default_perms.false', 'repository.none', ), |
|
413 | ('hg.inherit_default_perms.false', 'repository.none', ), | |
392 | ('hg.inherit_default_perms.true', 'repository.read', ), |
|
414 | ('hg.inherit_default_perms.true', 'repository.read', ), | |
393 | ]) |
|
415 | ]) | |
394 | def test_inherited_permissions_on_objects(self, perm, expected_perm): |
|
416 | def test_inherited_permissions_on_objects(self, perm, expected_perm): | |
395 | _form_result = { |
|
417 | _form_result = { | |
396 | 'default_inherit_default_permissions': perm, |
|
418 | 'default_inherit_default_permissions': perm, | |
397 | } |
|
419 | } | |
398 | PermissionModel().set_new_user_perms( |
|
420 | PermissionModel().set_new_user_perms( | |
399 | User.get_default_user(), _form_result) |
|
421 | User.get_default_user(), _form_result) | |
400 | Session().commit() |
|
422 | Session().commit() | |
401 |
|
423 | |||
402 | # make sure inherit flag is turned on |
|
424 | # make sure inherit flag is turned on | |
403 | self.u1.inherit_default_permissions = True |
|
425 | self.u1.inherit_default_permissions = True | |
404 | Session().commit() |
|
426 | Session().commit() | |
405 |
|
427 | |||
406 | # this user will have inherited permissions from default user |
|
428 | # this user will have inherited permissions from default user | |
407 | assert global_perms(self.u1) == set([ |
|
429 | assert global_perms(self.u1) == set([ | |
408 | 'hg.create.none', |
|
430 | 'hg.create.none', | |
409 | 'hg.fork.none', |
|
431 | 'hg.fork.none', | |
410 | 'hg.register.manual_activate', |
|
432 | 'hg.register.manual_activate', | |
411 | 'hg.password_reset.enabled', |
|
433 | 'hg.password_reset.enabled', | |
412 | 'hg.extern_activate.auto', |
|
434 | 'hg.extern_activate.auto', | |
413 | 'repository.read', |
|
435 | 'repository.read', | |
414 | 'group.read', |
|
436 | 'group.read', | |
415 | 'usergroup.read', |
|
437 | 'usergroup.read', | |
416 | 'hg.create.write_on_repogroup.true', |
|
438 | 'hg.create.write_on_repogroup.true', | |
417 | 'hg.usergroup.create.false', |
|
439 | 'hg.usergroup.create.false', | |
418 | 'hg.repogroup.create.false', |
|
440 | 'hg.repogroup.create.false', | |
419 | perm, |
|
441 | perm, | |
420 | ]) |
|
442 | ]) | |
421 |
|
443 | |||
422 | assert set(repo_perms(self.u1).values()) == set([expected_perm]) |
|
444 | assert set(repo_perms(self.u1).values()) == set([expected_perm]) | |
423 |
|
445 | |||
424 | def test_repo_owner_permissions_not_overwritten_by_group(self): |
|
446 | def test_repo_owner_permissions_not_overwritten_by_group(self): | |
425 | # create repo as USER, |
|
447 | # create repo as USER, | |
426 | self.test_repo = fixture.create_repo(name='myownrepo', |
|
448 | self.test_repo = fixture.create_repo(name='myownrepo', | |
427 | repo_type='hg', |
|
449 | repo_type='hg', | |
428 | cur_user=self.u1) |
|
450 | cur_user=self.u1) | |
429 |
|
451 | |||
430 | # he has permissions of admin as owner |
|
452 | # he has permissions of admin as owner | |
431 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' |
|
453 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' | |
432 |
|
454 | |||
433 | # set his permission as user group, he should still be admin |
|
455 | # set his permission as user group, he should still be admin | |
434 | self.ug1 = fixture.create_user_group('G1') |
|
456 | self.ug1 = fixture.create_user_group('G1') | |
435 | UserGroupModel().add_user_to_group(self.ug1, self.u1) |
|
457 | UserGroupModel().add_user_to_group(self.ug1, self.u1) | |
436 | RepoModel().grant_user_group_permission( |
|
458 | RepoModel().grant_user_group_permission( | |
437 | self.test_repo, |
|
459 | self.test_repo, | |
438 | group_name=self.ug1, |
|
460 | group_name=self.ug1, | |
439 | perm='repository.none') |
|
461 | perm='repository.none') | |
440 | Session().commit() |
|
462 | Session().commit() | |
441 |
|
463 | |||
442 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' |
|
464 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' | |
443 |
|
465 | |||
444 | def test_repo_owner_permissions_not_overwritten_by_others(self): |
|
466 | def test_repo_owner_permissions_not_overwritten_by_others(self): | |
445 | # create repo as USER, |
|
467 | # create repo as USER, | |
446 | self.test_repo = fixture.create_repo(name='myownrepo', |
|
468 | self.test_repo = fixture.create_repo(name='myownrepo', | |
447 | repo_type='hg', |
|
469 | repo_type='hg', | |
448 | cur_user=self.u1) |
|
470 | cur_user=self.u1) | |
449 |
|
471 | |||
450 | # he has permissions of admin as owner |
|
472 | # he has permissions of admin as owner | |
451 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' |
|
473 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' | |
452 |
|
474 | |||
453 | # set his permission as user, he should still be admin |
|
475 | # set his permission as user, he should still be admin | |
454 | RepoModel().grant_user_permission( |
|
476 | RepoModel().grant_user_permission( | |
455 | self.test_repo, user=self.u1, perm='repository.none') |
|
477 | self.test_repo, user=self.u1, perm='repository.none') | |
456 | Session().commit() |
|
478 | Session().commit() | |
457 |
|
479 | |||
458 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' |
|
480 | assert repo_perms(self.u1)['myownrepo'] == 'repository.admin' | |
459 |
|
481 | |||
460 | def test_repo_group_owner_permissions_not_overwritten_by_group(self): |
|
482 | def test_repo_group_owner_permissions_not_overwritten_by_group(self): | |
461 | # "u1" shall be owner without any special permission assigned |
|
483 | # "u1" shall be owner without any special permission assigned | |
462 | self.g1 = fixture.create_repo_group('test1') |
|
484 | self.g1 = fixture.create_repo_group('test1') | |
463 |
|
485 | |||
464 | # Make user group and grant a permission to user group |
|
486 | # Make user group and grant a permission to user group | |
465 | self.ug1 = fixture.create_user_group('G1') |
|
487 | self.ug1 = fixture.create_user_group('G1') | |
466 | UserGroupModel().add_user_to_group(self.ug1, self.u1) |
|
488 | UserGroupModel().add_user_to_group(self.ug1, self.u1) | |
467 | RepoGroupModel().grant_user_group_permission( |
|
489 | RepoGroupModel().grant_user_group_permission( | |
468 | repo_group=self.g1, group_name=self.ug1, perm='group.write') |
|
490 | repo_group=self.g1, group_name=self.ug1, perm='group.write') | |
469 |
|
491 | |||
470 | # Verify that user does not get any special permission if he is not |
|
492 | # Verify that user does not get any special permission if he is not | |
471 | # owner |
|
493 | # owner | |
472 | assert group_perms(self.u1) == {'test1': 'group.write'} |
|
494 | assert group_perms(self.u1) == {'test1': 'group.write'} | |
473 |
|
495 | |||
474 | # Make him owner of the repo group |
|
496 | # Make him owner of the repo group | |
475 | self.g1.user = self.u1 |
|
497 | self.g1.user = self.u1 | |
476 | assert group_perms(self.u1) == {'test1': 'group.admin'} |
|
498 | assert group_perms(self.u1) == {'test1': 'group.admin'} | |
477 |
|
499 | |||
478 | def test_repo_group_owner_permissions_not_overwritten_by_others(self): |
|
500 | def test_repo_group_owner_permissions_not_overwritten_by_others(self): | |
479 | # "u1" shall be owner without any special permission assigned |
|
501 | # "u1" shall be owner without any special permission assigned | |
480 | self.g1 = fixture.create_repo_group('test1') |
|
502 | self.g1 = fixture.create_repo_group('test1') | |
481 | RepoGroupModel().grant_user_permission( |
|
503 | RepoGroupModel().grant_user_permission( | |
482 | repo_group=self.g1, user=self.u1, perm='group.write') |
|
504 | repo_group=self.g1, user=self.u1, perm='group.write') | |
483 |
|
505 | |||
484 | # Verify that user does not get any special permission if he is not |
|
506 | # Verify that user does not get any special permission if he is not | |
485 | # owner |
|
507 | # owner | |
486 | assert group_perms(self.u1) == {'test1': 'group.write'} |
|
508 | assert group_perms(self.u1) == {'test1': 'group.write'} | |
487 |
|
509 | |||
488 | # Make him owner of the repo group |
|
510 | # Make him owner of the repo group | |
489 | self.g1.user = self.u1 |
|
511 | self.g1.user = self.u1 | |
490 | assert group_perms(self.u1) == {u'test1': 'group.admin'} |
|
512 | assert group_perms(self.u1) == {u'test1': 'group.admin'} | |
491 |
|
513 | |||
492 | def _test_def_user_perm_equal( |
|
514 | def _test_def_user_perm_equal( | |
493 | self, user, change_factor=0, compare_keys=None): |
|
515 | self, user, change_factor=0, compare_keys=None): | |
494 | perms = UserToPerm.query().filter(UserToPerm.user == user).all() |
|
516 | perms = UserToPerm.query().filter(UserToPerm.user == user).all() | |
495 | assert len(perms) == \ |
|
517 | assert len(perms) == \ | |
496 | len(Permission.DEFAULT_USER_PERMISSIONS) + change_factor |
|
518 | len(Permission.DEFAULT_USER_PERMISSIONS) + change_factor | |
497 | if compare_keys: |
|
519 | if compare_keys: | |
498 | assert set( |
|
520 | assert set( | |
499 | x.permissions.permission_name for x in perms) == compare_keys |
|
521 | x.permissions.permission_name for x in perms) == compare_keys | |
500 |
|
522 | |||
501 | def _test_def_user_group_perm_equal( |
|
523 | def _test_def_user_group_perm_equal( | |
502 | self, user_group, change_factor=0, compare_keys=None): |
|
524 | self, user_group, change_factor=0, compare_keys=None): | |
503 | perms = UserGroupToPerm.query().filter( |
|
525 | perms = UserGroupToPerm.query().filter( | |
504 | UserGroupToPerm.users_group == user_group).all() |
|
526 | UserGroupToPerm.users_group == user_group).all() | |
505 | assert len(perms) == \ |
|
527 | assert len(perms) == \ | |
506 | len(Permission.DEFAULT_USER_PERMISSIONS) + change_factor |
|
528 | len(Permission.DEFAULT_USER_PERMISSIONS) + change_factor | |
507 | if compare_keys: |
|
529 | if compare_keys: | |
508 | assert set( |
|
530 | assert set( | |
509 | x.permissions.permission_name for x in perms) == compare_keys |
|
531 | x.permissions.permission_name for x in perms) == compare_keys | |
510 |
|
532 | |||
511 | def test_set_default_permissions(self): |
|
533 | def test_set_default_permissions(self): | |
512 | PermissionModel().create_default_user_permissions(user=self.u1) |
|
534 | PermissionModel().create_default_user_permissions(user=self.u1) | |
513 | self._test_def_user_perm_equal(user=self.u1) |
|
535 | self._test_def_user_perm_equal(user=self.u1) | |
514 |
|
536 | |||
515 | def test_set_default_permissions_after_one_is_missing(self): |
|
537 | def test_set_default_permissions_after_one_is_missing(self): | |
516 | PermissionModel().create_default_user_permissions(user=self.u1) |
|
538 | PermissionModel().create_default_user_permissions(user=self.u1) | |
517 | self._test_def_user_perm_equal(user=self.u1) |
|
539 | self._test_def_user_perm_equal(user=self.u1) | |
518 | # now we delete one, it should be re-created after another call |
|
540 | # now we delete one, it should be re-created after another call | |
519 | perms = UserToPerm.query().filter(UserToPerm.user == self.u1).all() |
|
541 | perms = UserToPerm.query().filter(UserToPerm.user == self.u1).all() | |
520 | Session().delete(perms[0]) |
|
542 | Session().delete(perms[0]) | |
521 | Session().commit() |
|
543 | Session().commit() | |
522 |
|
544 | |||
523 | self._test_def_user_perm_equal(user=self.u1, change_factor=-1) |
|
545 | self._test_def_user_perm_equal(user=self.u1, change_factor=-1) | |
524 |
|
546 | |||
525 | # create missing one ! |
|
547 | # create missing one ! | |
526 | PermissionModel().create_default_user_permissions(user=self.u1) |
|
548 | PermissionModel().create_default_user_permissions(user=self.u1) | |
527 | self._test_def_user_perm_equal(user=self.u1) |
|
549 | self._test_def_user_perm_equal(user=self.u1) | |
528 |
|
550 | |||
529 | @pytest.mark.parametrize("perm, modify_to", [ |
|
551 | @pytest.mark.parametrize("perm, modify_to", [ | |
530 | ('repository.read', 'repository.none'), |
|
552 | ('repository.read', 'repository.none'), | |
531 | ('group.read', 'group.none'), |
|
553 | ('group.read', 'group.none'), | |
532 | ('usergroup.read', 'usergroup.none'), |
|
554 | ('usergroup.read', 'usergroup.none'), | |
533 | ('hg.create.repository', 'hg.create.none'), |
|
555 | ('hg.create.repository', 'hg.create.none'), | |
534 | ('hg.fork.repository', 'hg.fork.none'), |
|
556 | ('hg.fork.repository', 'hg.fork.none'), | |
535 | ('hg.register.manual_activate', 'hg.register.auto_activate',) |
|
557 | ('hg.register.manual_activate', 'hg.register.auto_activate',) | |
536 | ]) |
|
558 | ]) | |
537 | def test_set_default_permissions_after_modification(self, perm, modify_to): |
|
559 | def test_set_default_permissions_after_modification(self, perm, modify_to): | |
538 | PermissionModel().create_default_user_permissions(user=self.u1) |
|
560 | PermissionModel().create_default_user_permissions(user=self.u1) | |
539 | self._test_def_user_perm_equal(user=self.u1) |
|
561 | self._test_def_user_perm_equal(user=self.u1) | |
540 |
|
562 | |||
541 | old = Permission.get_by_key(perm) |
|
563 | old = Permission.get_by_key(perm) | |
542 | new = Permission.get_by_key(modify_to) |
|
564 | new = Permission.get_by_key(modify_to) | |
543 | assert old is not None |
|
565 | assert old is not None | |
544 | assert new is not None |
|
566 | assert new is not None | |
545 |
|
567 | |||
546 | # now modify permissions |
|
568 | # now modify permissions | |
547 | p = UserToPerm.query().filter( |
|
569 | p = UserToPerm.query().filter( | |
548 | UserToPerm.user == self.u1).filter( |
|
570 | UserToPerm.user == self.u1).filter( | |
549 | UserToPerm.permission == old).one() |
|
571 | UserToPerm.permission == old).one() | |
550 | p.permission = new |
|
572 | p.permission = new | |
551 | Session().add(p) |
|
573 | Session().add(p) | |
552 | Session().commit() |
|
574 | Session().commit() | |
553 |
|
575 | |||
554 | PermissionModel().create_default_user_permissions(user=self.u1) |
|
576 | PermissionModel().create_default_user_permissions(user=self.u1) | |
555 | self._test_def_user_perm_equal(user=self.u1) |
|
577 | self._test_def_user_perm_equal(user=self.u1) | |
556 |
|
578 | |||
557 | def test_clear_user_perms(self): |
|
579 | def test_clear_user_perms(self): | |
558 | PermissionModel().create_default_user_permissions(user=self.u1) |
|
580 | PermissionModel().create_default_user_permissions(user=self.u1) | |
559 | self._test_def_user_perm_equal(user=self.u1) |
|
581 | self._test_def_user_perm_equal(user=self.u1) | |
560 |
|
582 | |||
561 | # now clear permissions |
|
583 | # now clear permissions | |
562 | cleared = PermissionModel()._clear_user_perms(self.u1.user_id) |
|
584 | cleared = PermissionModel()._clear_user_perms(self.u1.user_id) | |
563 | self._test_def_user_perm_equal(user=self.u1, |
|
585 | self._test_def_user_perm_equal(user=self.u1, | |
564 | change_factor=len(cleared)*-1) |
|
586 | change_factor=len(cleared)*-1) | |
565 |
|
587 | |||
566 | def test_clear_user_group_perms(self): |
|
588 | def test_clear_user_group_perms(self): | |
567 | self.ug1 = fixture.create_user_group('G1') |
|
589 | self.ug1 = fixture.create_user_group('G1') | |
568 | PermissionModel().create_default_user_group_permissions( |
|
590 | PermissionModel().create_default_user_group_permissions( | |
569 | user_group=self.ug1) |
|
591 | user_group=self.ug1) | |
570 | self._test_def_user_group_perm_equal(user_group=self.ug1) |
|
592 | self._test_def_user_group_perm_equal(user_group=self.ug1) | |
571 |
|
593 | |||
572 | # now clear permissions |
|
594 | # now clear permissions | |
573 | cleared = PermissionModel()._clear_user_group_perms( |
|
595 | cleared = PermissionModel()._clear_user_group_perms( | |
574 | self.ug1.users_group_id) |
|
596 | self.ug1.users_group_id) | |
575 | self._test_def_user_group_perm_equal(user_group=self.ug1, |
|
597 | self._test_def_user_group_perm_equal(user_group=self.ug1, | |
576 | change_factor=len(cleared)*-1) |
|
598 | change_factor=len(cleared)*-1) | |
577 |
|
599 | |||
578 | @pytest.mark.parametrize("form_result", [ |
|
600 | @pytest.mark.parametrize("form_result", [ | |
579 | {}, |
|
601 | {}, | |
580 | {'default_repo_create': 'hg.create.repository'}, |
|
602 | {'default_repo_create': 'hg.create.repository'}, | |
581 | {'default_repo_create': 'hg.create.repository', |
|
603 | {'default_repo_create': 'hg.create.repository', | |
582 | 'default_repo_perm': 'repository.read'}, |
|
604 | 'default_repo_perm': 'repository.read'}, | |
583 | {'default_repo_create': 'hg.create.none', |
|
605 | {'default_repo_create': 'hg.create.none', | |
584 | 'default_repo_perm': 'repository.write', |
|
606 | 'default_repo_perm': 'repository.write', | |
585 | 'default_fork_create': 'hg.fork.none'}, |
|
607 | 'default_fork_create': 'hg.fork.none'}, | |
586 | ]) |
|
608 | ]) | |
587 | def test_set_new_user_permissions(self, form_result): |
|
609 | def test_set_new_user_permissions(self, form_result): | |
588 | _form_result = {} |
|
610 | _form_result = {} | |
589 | _form_result.update(form_result) |
|
611 | _form_result.update(form_result) | |
590 | PermissionModel().set_new_user_perms(self.u1, _form_result) |
|
612 | PermissionModel().set_new_user_perms(self.u1, _form_result) | |
591 | Session().commit() |
|
613 | Session().commit() | |
592 | change_factor = -1 * (len(Permission.DEFAULT_USER_PERMISSIONS) |
|
614 | change_factor = -1 * (len(Permission.DEFAULT_USER_PERMISSIONS) | |
593 | - len(form_result.keys())) |
|
615 | - len(form_result.keys())) | |
594 | self._test_def_user_perm_equal( |
|
616 | self._test_def_user_perm_equal( | |
595 | self.u1, change_factor=change_factor) |
|
617 | self.u1, change_factor=change_factor) | |
596 |
|
618 | |||
597 | @pytest.mark.parametrize("form_result", [ |
|
619 | @pytest.mark.parametrize("form_result", [ | |
598 | {}, |
|
620 | {}, | |
599 | {'default_repo_create': 'hg.create.repository'}, |
|
621 | {'default_repo_create': 'hg.create.repository'}, | |
600 | {'default_repo_create': 'hg.create.repository', |
|
622 | {'default_repo_create': 'hg.create.repository', | |
601 | 'default_repo_perm': 'repository.read'}, |
|
623 | 'default_repo_perm': 'repository.read'}, | |
602 | {'default_repo_create': 'hg.create.none', |
|
624 | {'default_repo_create': 'hg.create.none', | |
603 | 'default_repo_perm': 'repository.write', |
|
625 | 'default_repo_perm': 'repository.write', | |
604 | 'default_fork_create': 'hg.fork.none'}, |
|
626 | 'default_fork_create': 'hg.fork.none'}, | |
605 | ]) |
|
627 | ]) | |
606 | def test_set_new_user_group_permissions(self, form_result): |
|
628 | def test_set_new_user_group_permissions(self, form_result): | |
607 | _form_result = {} |
|
629 | _form_result = {} | |
608 | _form_result.update(form_result) |
|
630 | _form_result.update(form_result) | |
609 | self.ug1 = fixture.create_user_group('G1') |
|
631 | self.ug1 = fixture.create_user_group('G1') | |
610 | PermissionModel().set_new_user_group_perms(self.ug1, _form_result) |
|
632 | PermissionModel().set_new_user_group_perms(self.ug1, _form_result) | |
611 | Session().commit() |
|
633 | Session().commit() | |
612 | change_factor = -1 * (len(Permission.DEFAULT_USER_PERMISSIONS) |
|
634 | change_factor = -1 * (len(Permission.DEFAULT_USER_PERMISSIONS) | |
613 | - len(form_result.keys())) |
|
635 | - len(form_result.keys())) | |
614 | self._test_def_user_group_perm_equal( |
|
636 | self._test_def_user_group_perm_equal( | |
615 | self.ug1, change_factor=change_factor) |
|
637 | self.ug1, change_factor=change_factor) | |
616 |
|
638 | |||
617 | @pytest.mark.parametrize("group_active, expected_perm", [ |
|
639 | @pytest.mark.parametrize("group_active, expected_perm", [ | |
618 | (True, 'repository.admin'), |
|
640 | (True, 'repository.admin'), | |
619 | (False, 'repository.read'), |
|
641 | (False, 'repository.read'), | |
620 | ]) |
|
642 | ]) | |
621 | def test_get_default_repo_perms_from_user_group_with_active_group( |
|
643 | def test_get_default_repo_perms_from_user_group_with_active_group( | |
622 | self, backend, user_util, group_active, expected_perm): |
|
644 | self, backend, user_util, group_active, expected_perm): | |
623 | repo = backend.create_repo() |
|
645 | repo = backend.create_repo() | |
624 | user = user_util.create_user() |
|
646 | user = user_util.create_user() | |
625 | user_group = user_util.create_user_group( |
|
647 | user_group = user_util.create_user_group( | |
626 | members=[user], users_group_active=group_active) |
|
648 | members=[user], users_group_active=group_active) | |
627 |
|
649 | |||
628 | user_util.grant_user_group_permission_to_repo( |
|
650 | user_util.grant_user_group_permission_to_repo( | |
629 | repo, user_group, 'repository.admin') |
|
651 | repo, user_group, 'repository.admin') | |
630 | permissions = repo_perms(user) |
|
652 | permissions = repo_perms(user) | |
631 | repo_permission = permissions.get(repo.repo_name) |
|
653 | repo_permission = permissions.get(repo.repo_name) | |
632 | assert repo_permission == expected_perm |
|
654 | assert repo_permission == expected_perm | |
633 |
|
655 | |||
634 | @pytest.mark.parametrize("group_active, expected_perm", [ |
|
656 | @pytest.mark.parametrize("group_active, expected_perm", [ | |
635 | (True, 'group.admin'), |
|
657 | (True, 'group.admin'), | |
636 | (False, 'group.read') |
|
658 | (False, 'group.read') | |
637 | ]) |
|
659 | ]) | |
638 | def test_get_default_group_perms_from_user_group_with_active_group( |
|
660 | def test_get_default_group_perms_from_user_group_with_active_group( | |
639 | self, user_util, group_active, expected_perm): |
|
661 | self, user_util, group_active, expected_perm): | |
640 | user = user_util.create_user() |
|
662 | user = user_util.create_user() | |
641 | repo_group = user_util.create_repo_group() |
|
663 | repo_group = user_util.create_repo_group() | |
642 | user_group = user_util.create_user_group( |
|
664 | user_group = user_util.create_user_group( | |
643 | members=[user], users_group_active=group_active) |
|
665 | members=[user], users_group_active=group_active) | |
644 |
|
666 | |||
645 | user_util.grant_user_group_permission_to_repo_group( |
|
667 | user_util.grant_user_group_permission_to_repo_group( | |
646 | repo_group, user_group, 'group.admin') |
|
668 | repo_group, user_group, 'group.admin') | |
647 | permissions = group_perms(user) |
|
669 | permissions = group_perms(user) | |
648 | group_permission = permissions.get(repo_group.name) |
|
670 | group_permission = permissions.get(repo_group.name) | |
649 | assert group_permission == expected_perm |
|
671 | assert group_permission == expected_perm | |
650 |
|
672 | |||
651 | @pytest.mark.parametrize("group_active, expected_perm", [ |
|
673 | @pytest.mark.parametrize("group_active, expected_perm", [ | |
652 | (True, 'usergroup.admin'), |
|
674 | (True, 'usergroup.admin'), | |
653 | (False, 'usergroup.read') |
|
675 | (False, 'usergroup.read') | |
654 | ]) |
|
676 | ]) | |
655 | def test_get_default_user_group_perms_from_user_group_with_active_group( |
|
677 | def test_get_default_user_group_perms_from_user_group_with_active_group( | |
656 | self, user_util, group_active, expected_perm): |
|
678 | self, user_util, group_active, expected_perm): | |
657 | user = user_util.create_user() |
|
679 | user = user_util.create_user() | |
658 | user_group = user_util.create_user_group( |
|
680 | user_group = user_util.create_user_group( | |
659 | members=[user], users_group_active=group_active) |
|
681 | members=[user], users_group_active=group_active) | |
660 | target_user_group = user_util.create_user_group() |
|
682 | target_user_group = user_util.create_user_group() | |
661 |
|
683 | |||
662 | user_util.grant_user_group_permission_to_user_group( |
|
684 | user_util.grant_user_group_permission_to_user_group( | |
663 | target_user_group, user_group, 'usergroup.admin') |
|
685 | target_user_group, user_group, 'usergroup.admin') | |
664 | permissions = user_group_perms(user) |
|
686 | permissions = user_group_perms(user) | |
665 | group_permission = permissions.get(target_user_group.users_group_name) |
|
687 | group_permission = permissions.get(target_user_group.users_group_name) | |
666 | assert group_permission == expected_perm |
|
688 | assert group_permission == expected_perm | |
667 |
|
689 | |||
668 |
|
690 | |||
669 | def repo_perms(user): |
|
691 | def repo_perms(user): | |
670 | auth_user = AuthUser(user_id=user.user_id) |
|
692 | auth_user = AuthUser(user_id=user.user_id) | |
671 | return auth_user.permissions['repositories'] |
|
693 | return auth_user.permissions['repositories'] | |
672 |
|
694 | |||
673 |
|
695 | |||
674 | def group_perms(user): |
|
696 | def group_perms(user): | |
675 | auth_user = AuthUser(user_id=user.user_id) |
|
697 | auth_user = AuthUser(user_id=user.user_id) | |
676 | return auth_user.permissions['repositories_groups'] |
|
698 | return auth_user.permissions['repositories_groups'] | |
677 |
|
699 | |||
678 |
|
700 | |||
679 | def user_group_perms(user): |
|
701 | def user_group_perms(user): | |
680 | auth_user = AuthUser(user_id=user.user_id) |
|
702 | auth_user = AuthUser(user_id=user.user_id) | |
681 | return auth_user.permissions['user_groups'] |
|
703 | return auth_user.permissions['user_groups'] | |
682 |
|
704 | |||
683 |
|
705 | |||
684 | def global_perms(user): |
|
706 | def global_perms(user): | |
685 | auth_user = AuthUser(user_id=user.user_id) |
|
707 | auth_user = AuthUser(user_id=user.user_id) | |
686 | return auth_user.permissions['global'] |
|
708 | return auth_user.permissions['global'] | |
687 |
|
709 | |||
688 |
|
710 | |||
689 | def default_perms(added=None, removed=None): |
|
711 | def default_perms(added=None, removed=None): | |
690 | expected_perms = set(Permission.DEFAULT_USER_PERMISSIONS) |
|
712 | expected_perms = set(Permission.DEFAULT_USER_PERMISSIONS) | |
691 | if removed: |
|
713 | if removed: | |
692 | expected_perms.difference_update(removed) |
|
714 | expected_perms.difference_update(removed) | |
693 | if added: |
|
715 | if added: | |
694 | expected_perms.update(added) |
|
716 | expected_perms.update(added) | |
695 | return expected_perms |
|
717 | return expected_perms |
General Comments 0
You need to be logged in to leave comments.
Login now