Show More
@@ -1,3 +1,30 b'' | |||
|
1 | # -*- coding: utf-8 -*- | |
|
2 | """ | |
|
3 | rhodecode.controllers.api | |
|
4 | ~~~~~~~~~~~~~~~~~~~~~~~~~ | |
|
5 | ||
|
6 | API controller for RhodeCode | |
|
7 | ||
|
8 | :created_on: Aug 20, 2011 | |
|
9 | :author: marcink | |
|
10 | :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com> | |
|
11 | :license: GPLv3, see COPYING for more details. | |
|
12 | """ | |
|
13 | # This program is free software; you can redistribute it and/or | |
|
14 | # modify it under the terms of the GNU General Public License | |
|
15 | # as published by the Free Software Foundation; version 2 | |
|
16 | # of the License or (at your opinion) any later version of the license. | |
|
17 | # | |
|
18 | # This program is distributed in the hope that it will be useful, | |
|
19 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
21 | # GNU General Public License for more details. | |
|
22 | # | |
|
23 | # You should have received a copy of the GNU General Public License | |
|
24 | # along with this program; if not, write to the Free Software | |
|
25 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
|
26 | # MA 02110-1301, USA. | |
|
27 | ||
|
1 | 28 | import traceback |
|
2 | 29 | import logging |
|
3 | 30 | |
@@ -15,6 +42,7 b' from rhodecode.model import users_group' | |||
|
15 | 42 | from rhodecode.model.repos_group import ReposGroupModel |
|
16 | 43 | from sqlalchemy.orm.exc import NoResultFound |
|
17 | 44 | |
|
45 | ||
|
18 | 46 | log = logging.getLogger(__name__) |
|
19 | 47 | |
|
20 | 48 | |
@@ -58,41 +86,47 b' class ApiController(JSONRPCController):' | |||
|
58 | 86 | """" |
|
59 | 87 | Get a user by username |
|
60 | 88 | |
|
61 | :param apiuser | |
|
62 | :param username | |
|
89 | :param apiuser: | |
|
90 | :param username: | |
|
63 | 91 | """ |
|
64 | 92 | |
|
65 | 93 | user = User.get_by_username(username) |
|
66 | 94 | if not user: |
|
67 | 95 | return None |
|
68 | 96 | |
|
69 |
return dict( |
|
|
97 | return dict( | |
|
98 | id=user.user_id, | |
|
70 | 99 |
|
|
71 | 100 |
|
|
72 | 101 |
|
|
73 | 102 |
|
|
74 | 103 |
|
|
75 | 104 |
|
|
76 |
|
|
|
105 | ldap=user.ldap_dn | |
|
106 | ) | |
|
77 | 107 | |
|
78 | 108 | @HasPermissionAllDecorator('hg.admin') |
|
79 | 109 | def get_users(self, apiuser): |
|
80 | 110 | """" |
|
81 | 111 | Get all users |
|
82 | 112 | |
|
83 | :param apiuser | |
|
113 | :param apiuser: | |
|
84 | 114 | """ |
|
85 | 115 | |
|
86 | 116 | result = [] |
|
87 | 117 | for user in User.getAll(): |
|
88 |
result.append( |
|
|
118 | result.append( | |
|
119 | dict( | |
|
120 | id=user.user_id, | |
|
89 | 121 |
|
|
90 | 122 |
|
|
91 | 123 |
|
|
92 | 124 |
|
|
93 | 125 |
|
|
94 | 126 |
|
|
95 |
|
|
|
127 | ldap=user.ldap_dn | |
|
128 | ) | |
|
129 | ) | |
|
96 | 130 | return result |
|
97 | 131 | |
|
98 | 132 | @HasPermissionAllDecorator('hg.admin') |
@@ -112,7 +146,7 b' class ApiController(JSONRPCController):' | |||
|
112 | 146 | :param ldap_dn: |
|
113 | 147 | """ |
|
114 | 148 | |
|
115 |
if |
|
|
149 | if User.get_by_username(username): | |
|
116 | 150 | raise JSONRPCError("user %s already exist" % username) |
|
117 | 151 | |
|
118 | 152 | try: |
@@ -135,8 +169,8 b' class ApiController(JSONRPCController):' | |||
|
135 | 169 | """" |
|
136 | 170 | Get users group by name |
|
137 | 171 | |
|
138 | :param apiuser | |
|
139 | :param group_name | |
|
172 | :param apiuser: | |
|
173 | :param group_name: | |
|
140 | 174 | """ |
|
141 | 175 | |
|
142 | 176 | users_group = UsersGroup.get_by_group_name(group_name) |
@@ -165,7 +199,7 b' class ApiController(JSONRPCController):' | |||
|
165 | 199 | """" |
|
166 | 200 | Get all users groups |
|
167 | 201 | |
|
168 | :param apiuser | |
|
202 | :param apiuser: | |
|
169 | 203 | """ |
|
170 | 204 | |
|
171 | 205 | result = [] |
@@ -239,7 +273,7 b' class ApiController(JSONRPCController):' | |||
|
239 | 273 | raise JSONRPCError('failed to create users group member') |
|
240 | 274 | |
|
241 | 275 | @HasPermissionAnyDecorator('hg.admin') |
|
242 |
def get_repo(self, apiuser, |
|
|
276 | def get_repo(self, apiuser, name): | |
|
243 | 277 | """" |
|
244 | 278 | Get repository by name |
|
245 | 279 | |
@@ -248,7 +282,7 b' class ApiController(JSONRPCController):' | |||
|
248 | 282 | """ |
|
249 | 283 | |
|
250 | 284 | try: |
|
251 |
repo = Repository.get_by_repo_name( |
|
|
285 | repo = Repository.get_by_repo_name(name) | |
|
252 | 286 | except NoResultFound: |
|
253 | 287 | return None |
|
254 | 288 | |
@@ -256,7 +290,9 b' class ApiController(JSONRPCController):' | |||
|
256 | 290 | for user in repo.repo_to_perm: |
|
257 | 291 | perm = user.permission.permission_name |
|
258 | 292 | user = user.user |
|
259 |
members.append( |
|
|
293 | members.append( | |
|
294 | dict( | |
|
295 | type_="user", | |
|
260 | 296 |
|
|
261 | 297 |
|
|
262 | 298 |
|
@@ -265,21 +301,29 b' class ApiController(JSONRPCController):' | |||
|
265 | 301 |
|
|
266 | 302 |
|
|
267 | 303 |
|
|
268 |
|
|
|
304 | permission=perm | |
|
305 | ) | |
|
306 | ) | |
|
269 | 307 | for users_group in repo.users_group_to_perm: |
|
270 | 308 | perm = users_group.permission.permission_name |
|
271 | 309 | users_group = users_group.users_group |
|
272 |
members.append( |
|
|
310 | members.append( | |
|
311 | dict( | |
|
312 | type_="users_group", | |
|
273 | 313 |
|
|
274 | 314 |
|
|
275 | 315 |
|
|
276 |
|
|
|
316 | permission=perm | |
|
317 | ) | |
|
318 | ) | |
|
277 | 319 | |
|
278 |
return dict( |
|
|
320 | return dict( | |
|
321 | id=repo.repo_id, | |
|
279 | 322 |
|
|
280 | 323 |
|
|
281 | 324 |
|
|
282 |
|
|
|
325 | members=members | |
|
326 | ) | |
|
283 | 327 | |
|
284 | 328 | @HasPermissionAnyDecorator('hg.admin') |
|
285 | 329 | def get_repos(self, apiuser): |
@@ -291,10 +335,14 b' class ApiController(JSONRPCController):' | |||
|
291 | 335 | |
|
292 | 336 | result = [] |
|
293 | 337 | for repository in Repository.getAll(): |
|
294 |
result.append( |
|
|
338 | result.append( | |
|
339 | dict( | |
|
340 | id=repository.repo_id, | |
|
295 | 341 |
|
|
296 | 342 |
|
|
297 |
|
|
|
343 | description=repository.description | |
|
344 | ) | |
|
345 | ) | |
|
298 | 346 | return result |
|
299 | 347 | |
|
300 | 348 | @HasPermissionAnyDecorator('hg.admin', 'hg.create.repository') |
General Comments 0
You need to be logged in to leave comments.
Login now