Files @ 4565e655ea2a
Branch filter:

Location: kallithea/rhodecode/controllers/api/api.py - annotation

Marcin Kuzminski
API: Added option to rescann repositories via api call
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
89efedac4e6c
256e729a94cd
256e729a94cd
256e729a94cd
c78f6bf52e9c
9dae92a65e40
12ceeda33339
4565e655ea2a
48d4fcf04a29
c78f6bf52e9c
3338a0994472
2ccb32ddcfd7
2ccb32ddcfd7
473794943022
48d4fcf04a29
92a4f7c496a5
256e729a94cd
c78f6bf52e9c
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
92a4f7c496a5
c78f6bf52e9c
c78f6bf52e9c
3338a0994472
3338a0994472
c78f6bf52e9c
c78f6bf52e9c
3338a0994472
c78f6bf52e9c
3338a0994472
3338a0994472
3338a0994472
c78f6bf52e9c
3338a0994472
c78f6bf52e9c
c78f6bf52e9c
92a4f7c496a5
473794943022
c78f6bf52e9c
c78f6bf52e9c
3338a0994472
473794943022
473794943022
c78f6bf52e9c
c78f6bf52e9c
473794943022
8898a79ac628
c78f6bf52e9c
473794943022
473794943022
473794943022
c78f6bf52e9c
473794943022
473794943022
473794943022
473794943022
c78f6bf52e9c
92a4f7c496a5
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
4565e655ea2a
14dffcfebb02
8898a79ac628
8898a79ac628
8898a79ac628
631caf880b87
473794943022
8898a79ac628
c78f6bf52e9c
473794943022
473794943022
473794943022
473794943022
631caf880b87
631caf880b87
631caf880b87
631caf880b87
631caf880b87
631caf880b87
631caf880b87
631caf880b87
631caf880b87
631caf880b87
473794943022
473794943022
2ccb32ddcfd7
2ccb32ddcfd7
92a4f7c496a5
473794943022
473794943022
473794943022
473794943022
256e729a94cd
bdc0ad168006
3338a0994472
256e729a94cd
256e729a94cd
473794943022
256e729a94cd
473794943022
256e729a94cd
3338a0994472
3338a0994472
3338a0994472
256e729a94cd
307ec693bdf2
473794943022
473794943022
473794943022
473794943022
473794943022
9ddbfaeefb73
9ddbfaeefb73
9ddbfaeefb73
9ddbfaeefb73
9ddbfaeefb73
256e729a94cd
b902baeaa494
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
0771f0f5ab28
473794943022
0771f0f5ab28
473794943022
473794943022
0771f0f5ab28
256e729a94cd
92a4f7c496a5
473794943022
8898a79ac628
92a4f7c496a5
473794943022
473794943022
473794943022
473794943022
473794943022
bdc0ad168006
bdc0ad168006
bdc0ad168006
bdc0ad168006
473794943022
bdc0ad168006
bdc0ad168006
473794943022
bdc0ad168006
bdc0ad168006
bdc0ad168006
bdc0ad168006
473794943022
bdc0ad168006
473794943022
473794943022
473794943022
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
bdc0ad168006
bdc0ad168006
473794943022
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
001c7e2ae986
473794943022
bdc0ad168006
374693af2849
473794943022
bdc0ad168006
bdc0ad168006
bdc0ad168006
473794943022
b902baeaa494
b902baeaa494
b902baeaa494
b902baeaa494
b902baeaa494
b902baeaa494
b902baeaa494
473794943022
b902baeaa494
473794943022
b902baeaa494
b902baeaa494
b902baeaa494
473794943022
b902baeaa494
473794943022
473794943022
b902baeaa494
b902baeaa494
b902baeaa494
473794943022
473794943022
bdc0ad168006
bdc0ad168006
473794943022
8898a79ac628
473794943022
8898a79ac628
631caf880b87
473794943022
8898a79ac628
473794943022
8898a79ac628
473794943022
c78f6bf52e9c
8898a79ac628
8898a79ac628
8898a79ac628
473794943022
473794943022
473794943022
8898a79ac628
92a4f7c496a5
92a4f7c496a5
3338a0994472
8898a79ac628
3338a0994472
631caf880b87
3338a0994472
2ccb32ddcfd7
3338a0994472
473794943022
473794943022
3338a0994472
3338a0994472
92a4f7c496a5
473794943022
256e729a94cd
256e729a94cd
3338a0994472
473794943022
0771f0f5ab28
256e729a94cd
256e729a94cd
2ccb32ddcfd7
473794943022
473794943022
307ec693bdf2
256e729a94cd
473794943022
0771f0f5ab28
473794943022
473794943022
473794943022
473794943022
473794943022
256e729a94cd
92a4f7c496a5
473794943022
3338a0994472
92a4f7c496a5
473794943022
3338a0994472
ee45677c4edc
3338a0994472
631caf880b87
473794943022
473794943022
3338a0994472
473794943022
473794943022
3338a0994472
2ccb32ddcfd7
92a4f7c496a5
0f87c784756e
473794943022
473794943022
473794943022
0f87c784756e
473794943022
0f87c784756e
0f87c784756e
0f87c784756e
0f87c784756e
0f87c784756e
8898a79ac628
92a4f7c496a5
473794943022
473794943022
473794943022
473794943022
473794943022
0f87c784756e
0f87c784756e
473794943022
0f87c784756e
0f87c784756e
0f87c784756e
473794943022
473794943022
473794943022
0f87c784756e
473794943022
473794943022
0f87c784756e
0f87c784756e
473794943022
473794943022
473794943022
473794943022
473794943022
0f87c784756e
473794943022
0f87c784756e
0f87c784756e
0f87c784756e
473794943022
473794943022
473794943022
473794943022
473794943022
8898a79ac628
92a4f7c496a5
14dffcfebb02
8898a79ac628
8898a79ac628
8898a79ac628
631caf880b87
473794943022
8898a79ac628
473794943022
3338a0994472
8898a79ac628
8898a79ac628
8898a79ac628
8898a79ac628
473794943022
473794943022
473794943022
473794943022
473794943022
8898a79ac628
8898a79ac628
8898a79ac628
473794943022
473794943022
473794943022
473794943022
3338a0994472
473794943022
473794943022
473794943022
8898a79ac628
92a4f7c496a5
92a4f7c496a5
2ccb32ddcfd7
8898a79ac628
2ccb32ddcfd7
631caf880b87
2ccb32ddcfd7
8898a79ac628
2ccb32ddcfd7
473794943022
473794943022
2ccb32ddcfd7
2ccb32ddcfd7
203af05539e0
473794943022
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
473794943022
203af05539e0
203af05539e0
203af05539e0
203af05539e0
473794943022
203af05539e0
473794943022
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
203af05539e0
473794943022
473794943022
473794943022
473794943022
473794943022
203af05539e0
92a4f7c496a5
473794943022
473794943022
473794943022
3338a0994472
34d009e5147a
473794943022
473794943022
3338a0994472
631caf880b87
0771f0f5ab28
473794943022
473794943022
631caf880b87
631caf880b87
34d009e5147a
473794943022
3338a0994472
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
3338a0994472
2ccb32ddcfd7
473794943022
d5527cebf76a
307ec693bdf2
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
631caf880b87
473794943022
473794943022
0771f0f5ab28
0771f0f5ab28
473794943022
473794943022
0771f0f5ab28
0771f0f5ab28
3338a0994472
92a4f7c496a5
473794943022
473794943022
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
8be70a4d72c7
3338a0994472
92a4f7c496a5
473794943022
7dfcdf4c7dd2
7dfcdf4c7dd2
7dfcdf4c7dd2
473794943022
473794943022
7dfcdf4c7dd2
473794943022
473794943022
7dfcdf4c7dd2
473794943022
473794943022
7dfcdf4c7dd2
473794943022
473794943022
7dfcdf4c7dd2
7dfcdf4c7dd2
7dfcdf4c7dd2
473794943022
473794943022
473794943022
7dfcdf4c7dd2
7dfcdf4c7dd2
473794943022
2ccb32ddcfd7
87f0800abc7b
87f0800abc7b
3338a0994472
473794943022
473794943022
631caf880b87
2ccb32ddcfd7
473794943022
473794943022
473794943022
2ccb32ddcfd7
2ccb32ddcfd7
2ccb32ddcfd7
87f0800abc7b
87f0800abc7b
473794943022
631caf880b87
473794943022
473794943022
473794943022
473794943022
631caf880b87
2ccb32ddcfd7
92a4f7c496a5
631caf880b87
473794943022
473794943022
631caf880b87
631caf880b87
631caf880b87
631caf880b87
473794943022
87f0800abc7b
87f0800abc7b
87f0800abc7b
473794943022
473794943022
473794943022
631caf880b87
87f0800abc7b
473794943022
473794943022
87f0800abc7b
473794943022
473794943022
87f0800abc7b
473794943022
87f0800abc7b
473794943022
473794943022
473794943022
473794943022
87f0800abc7b
87f0800abc7b
87f0800abc7b
87f0800abc7b
473794943022
473794943022
87f0800abc7b
87f0800abc7b
87f0800abc7b
87f0800abc7b
473794943022
473794943022
87f0800abc7b
87f0800abc7b
87f0800abc7b
87f0800abc7b
473794943022
473794943022
473794943022
631caf880b87
631caf880b87
473794943022
473794943022
473794943022
631caf880b87
631caf880b87
473794943022
473794943022
87f0800abc7b
87f0800abc7b
473794943022
631caf880b87
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
631caf880b87
631caf880b87
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
473794943022
631caf880b87
631caf880b87
631caf880b87
473794943022
473794943022
473794943022
631caf880b87
631caf880b87
# -*- coding: utf-8 -*-
"""
    rhodecode.controllers.api
    ~~~~~~~~~~~~~~~~~~~~~~~~~

    API controller for RhodeCode

    :created_on: Aug 20, 2011
    :author: marcink
    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
    :license: GPLv3, see COPYING for more details.
"""
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License or (at your opinion) any later version of the license.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA  02110-1301, USA.

import traceback
import logging

from rhodecode.controllers.api import JSONRPCController, JSONRPCError
from rhodecode.lib.auth import HasPermissionAllDecorator, \
    HasPermissionAnyDecorator, PasswordGenerator, AuthUser
from rhodecode.lib.utils import map_groups, repo2db_mapper
from rhodecode.model.meta import Session
from rhodecode.model.scm import ScmModel
from rhodecode.model.repo import RepoModel
from rhodecode.model.user import UserModel
from rhodecode.model.users_group import UsersGroupModel
from rhodecode.model.permission import PermissionModel

log = logging.getLogger(__name__)


class Optional(object):
    """
    Defines an optional parameter::

        param = param.getval() if isinstance(param, Optional) else param
        param = param() if isinstance(param, Optional) else param

    is equivalent of::

        param = Optional.extract(param)

    """
    def __init__(self, type_):
        self.type_ = type_

    def __repr__(self):
        return '<Optional:%s>' % self.type_.__repr__()

    def __call__(self):
        return self.getval()

    def getval(self):
        """
        returns value from this Optional instance
        """
        return self.type_

    @classmethod
    def extract(cls, val):
        if isinstance(val, cls):
            return val.getval()
        return val


def get_user_or_error(userid):
    """
    Get user by id or name or return JsonRPCError if not found

    :param userid:
    """
    user = UserModel().get_user(userid)
    if user is None:
        raise JSONRPCError("user `%s` does not exist" % userid)
    return user


def get_repo_or_error(repoid):
    """
    Get repo by id or name or return JsonRPCError if not found

    :param userid:
    """
    repo = RepoModel().get_repo(repoid)
    if repo is None:
        raise JSONRPCError('repository `%s` does not exist' % (repoid))
    return repo


def get_users_group_or_error(usersgroupid):
    """
    Get users group by id or name or return JsonRPCError if not found

    :param userid:
    """
    users_group = UsersGroupModel().get_group(usersgroupid)
    if users_group is None:
        raise JSONRPCError('users group `%s` does not exist' % usersgroupid)
    return users_group


def get_perm_or_error(permid):
    """
    Get permission by id or name or return JsonRPCError if not found

    :param userid:
    """
    perm = PermissionModel().get_permission_by_name(permid)
    if perm is None:
        raise JSONRPCError('permission `%s` does not exist' % (permid))
    return perm


class ApiController(JSONRPCController):
    """
    API Controller


    Each method needs to have USER as argument this is then based on given
    API_KEY propagated as instance of user object

    Preferably this should be first argument also


    Each function should also **raise** JSONRPCError for any
    errors that happens

    """

    @HasPermissionAllDecorator('hg.admin')
    def pull(self, apiuser, repoid):
        """
        Dispatch pull action on given repo

        :param apiuser:
        :param repoid:
        """

        repo = get_repo_or_error(repoid)

        try:
            ScmModel().pull_changes(repo.repo_name,
                                    self.rhodecode_user.username)
            return 'Pulled from `%s`' % repo.repo_name
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'Unable to pull changes from `%s`' % repo.repo_name
            )

    @HasPermissionAllDecorator('hg.admin')
    def rescan_repos(self, apiuser, remove_obsolete=Optional(False)):
        """
        Dispatch rescan repositories action. If remove_obsolete is set
        than also delete repos that are in database but not in the filesystem.
        aka "clean zombies"

        :param apiuser:
        :param remove_obsolete:
        """

        try:
            rm_obsolete = Optional.extract(remove_obsolete)
            added, removed = repo2db_mapper(ScmModel().repo_scan(),
                                            remove_obsolete=rm_obsolete)
            return {'added': added, 'removed': removed}
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'Unable to rescan repositories'
            )

    @HasPermissionAllDecorator('hg.admin')
    def get_user(self, apiuser, userid):
        """"
        Get a user by username

        :param apiuser:
        :param userid:
        """

        user = get_user_or_error(userid)
        data = user.get_api_data()
        data['permissions'] = AuthUser(user_id=user.user_id).permissions
        return data

    @HasPermissionAllDecorator('hg.admin')
    def get_users(self, apiuser):
        """"
        Get all users

        :param apiuser:
        """

        result = []
        for user in UserModel().get_all():
            result.append(user.get_api_data())
        return result

    @HasPermissionAllDecorator('hg.admin')
    def create_user(self, apiuser, username, email, password,
                    firstname=Optional(None), lastname=Optional(None),
                    active=Optional(True), admin=Optional(False),
                    ldap_dn=Optional(None)):
        """
        Create new user

        :param apiuser:
        :param username:
        :param email:
        :param password:
        :param firstname:
        :param lastname:
        :param active:
        :param admin:
        :param ldap_dn:
        """

        if UserModel().get_by_username(username):
            raise JSONRPCError("user `%s` already exist" % username)

        if UserModel().get_by_email(email, case_insensitive=True):
            raise JSONRPCError("email `%s` already exist" % email)

        if ldap_dn:
            # generate temporary password if ldap_dn
            password = PasswordGenerator().gen_password(length=8)

        try:
            user = UserModel().create_or_update(
                username=Optional.extract(username),
                password=Optional.extract(password),
                email=Optional.extract(email),
                firstname=Optional.extract(firstname),
                lastname=Optional.extract(lastname),
                active=Optional.extract(active),
                admin=Optional.extract(admin),
                ldap_dn=Optional.extract(ldap_dn)
            )
            Session().commit()
            return dict(
                msg='created new user `%s`' % username,
                user=user.get_api_data()
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError('failed to create user `%s`' % username)

    @HasPermissionAllDecorator('hg.admin')
    def update_user(self, apiuser, userid, username=Optional(None),
                    email=Optional(None), firstname=Optional(None),
                    lastname=Optional(None), active=Optional(None),
                    admin=Optional(None), ldap_dn=Optional(None),
                    password=Optional(None)):
        """
        Updates given user

        :param apiuser:
        :param userid:
        :param username:
        :param email:
        :param firstname:
        :param lastname:
        :param active:
        :param admin:
        :param ldap_dn:
        :param password:
        """

        user = get_user_or_error(userid)

        # call function and store only updated arguments
        updates = {}

        def store_update(attr, name):
            if not isinstance(attr, Optional):
                updates[name] = attr

        try:

            store_update(username, 'username')
            store_update(password, 'password')
            store_update(email, 'email')
            store_update(firstname, 'name')
            store_update(lastname, 'lastname')
            store_update(active, 'active')
            store_update(admin, 'admin')
            store_update(ldap_dn, 'ldap_dn')

            user = UserModel().update_user(user, **updates)
            Session().commit()
            return dict(
                msg='updated user ID:%s %s' % (user.user_id, user.username),
                user=user.get_api_data()
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError('failed to update user `%s`' % userid)

    @HasPermissionAllDecorator('hg.admin')
    def delete_user(self, apiuser, userid):
        """"
        Deletes an user

        :param apiuser:
        :param userid:
        """
        user = get_user_or_error(userid)

        try:
            UserModel().delete(userid)
            Session().commit()
            return dict(
                msg='deleted user ID:%s %s' % (user.user_id, user.username),
                user=None
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError('failed to delete ID:%s %s' % (user.user_id,
                                                              user.username))

    @HasPermissionAllDecorator('hg.admin')
    def get_users_group(self, apiuser, usersgroupid):
        """"
        Get users group by name or id

        :param apiuser:
        :param usersgroupid:
        """
        users_group = get_users_group_or_error(usersgroupid)

        data = users_group.get_api_data()

        members = []
        for user in users_group.members:
            user = user.user
            members.append(user.get_api_data())
        data['members'] = members
        return data

    @HasPermissionAllDecorator('hg.admin')
    def get_users_groups(self, apiuser):
        """"
        Get all users groups

        :param apiuser:
        """

        result = []
        for users_group in UsersGroupModel().get_all():
            result.append(users_group.get_api_data())
        return result

    @HasPermissionAllDecorator('hg.admin')
    def create_users_group(self, apiuser, group_name, active=Optional(True)):
        """
        Creates an new usergroup

        :param apiuser:
        :param group_name:
        :param active:
        """

        if UsersGroupModel().get_by_name(group_name):
            raise JSONRPCError("users group `%s` already exist" % group_name)

        try:
            active = Optional.extract(active)
            ug = UsersGroupModel().create(name=group_name, active=active)
            Session().commit()
            return dict(
                msg='created new users group `%s`' % group_name,
                users_group=ug.get_api_data()
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError('failed to create group `%s`' % group_name)

    @HasPermissionAllDecorator('hg.admin')
    def add_user_to_users_group(self, apiuser, usersgroupid, userid):
        """"
        Add a user to a users group

        :param apiuser:
        :param usersgroupid:
        :param userid:
        """
        user = get_user_or_error(userid)
        users_group = get_users_group_or_error(usersgroupid)

        try:
            ugm = UsersGroupModel().add_user_to_group(users_group, user)
            success = True if ugm != True else False
            msg = 'added member `%s` to users group `%s`' % (
                        user.username, users_group.users_group_name
                    )
            msg = msg if success else 'User is already in that group'
            Session().commit()

            return dict(
                success=success,
                msg=msg
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to add member to users group `%s`' % (
                    users_group.users_group_name
                )
            )

    @HasPermissionAllDecorator('hg.admin')
    def remove_user_from_users_group(self, apiuser, usersgroupid, userid):
        """
        Remove user from a group

        :param apiuser:
        :param usersgroupid:
        :param userid:
        """
        user = get_user_or_error(userid)
        users_group = get_users_group_or_error(usersgroupid)

        try:
            success = UsersGroupModel().remove_user_from_group(users_group,
                                                               user)
            msg = 'removed member `%s` from users group `%s`' % (
                        user.username, users_group.users_group_name
                    )
            msg = msg if success else "User wasn't in group"
            Session().commit()
            return dict(success=success, msg=msg)
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to remove member from users group `%s`' % (
                        users_group.users_group_name
                    )
            )

    @HasPermissionAnyDecorator('hg.admin')
    def get_repo(self, apiuser, repoid):
        """"
        Get repository by name

        :param apiuser:
        :param repoid:
        """
        repo = get_repo_or_error(repoid)

        members = []
        for user in repo.repo_to_perm:
            perm = user.permission.permission_name
            user = user.user
            user_data = user.get_api_data()
            user_data['type'] = "user"
            user_data['permission'] = perm
            members.append(user_data)

        for users_group in repo.users_group_to_perm:
            perm = users_group.permission.permission_name
            users_group = users_group.users_group
            users_group_data = users_group.get_api_data()
            users_group_data['type'] = "users_group"
            users_group_data['permission'] = perm
            members.append(users_group_data)

        data = repo.get_api_data()
        data['members'] = members
        return data

    @HasPermissionAnyDecorator('hg.admin')
    def get_repos(self, apiuser):
        """"
        Get all repositories

        :param apiuser:
        """

        result = []
        for repo in RepoModel().get_all():
            result.append(repo.get_api_data())
        return result

    @HasPermissionAnyDecorator('hg.admin')
    def get_repo_nodes(self, apiuser, repoid, revision, root_path,
                       ret_type='all'):
        """
        returns a list of nodes and it's children
        for a given path at given revision. It's possible to specify ret_type
        to show only files or dirs

        :param apiuser:
        :param repoid: name or id of repository
        :param revision: revision for which listing should be done
        :param root_path: path from which start displaying
        :param ret_type: return type 'all|files|dirs' nodes
        """
        repo = get_repo_or_error(repoid)
        try:
            _d, _f = ScmModel().get_nodes(repo, revision, root_path,
                                          flat=False)
            _map = {
                'all': _d + _f,
                'files': _f,
                'dirs': _d,
            }
            return _map[ret_type]
        except KeyError:
            raise JSONRPCError('ret_type must be one of %s' % _map.keys())
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to get repo: `%s` nodes' % repo.repo_name
            )

    @HasPermissionAnyDecorator('hg.admin', 'hg.create.repository')
    def create_repo(self, apiuser, repo_name, owner, repo_type,
                    description=Optional(''), private=Optional(False),
                    clone_uri=Optional(None), landing_rev=Optional('tip')):
        """
        Create repository, if clone_url is given it makes a remote clone
        if repo_name is withina  group name the groups will be created
        automatically if they aren't present

        :param apiuser:
        :param repo_name:
        :param onwer:
        :param repo_type:
        :param description:
        :param private:
        :param clone_uri:
        :param landing_rev:
        """
        owner = get_user_or_error(owner)

        if RepoModel().get_by_repo_name(repo_name):
            raise JSONRPCError("repo `%s` already exist" % repo_name)

        private = Optional.extract(private)
        clone_uri = Optional.extract(clone_uri)
        description = Optional.extract(description)
        landing_rev = Optional.extract(landing_rev)

        try:
            # create structure of groups and return the last group
            group = map_groups(repo_name)

            repo = RepoModel().create_repo(
                repo_name=repo_name,
                repo_type=repo_type,
                description=description,
                owner=owner,
                private=private,
                clone_uri=clone_uri,
                repos_group=group,
                landing_rev=landing_rev,
            )

            Session().commit()

            return dict(
                msg="Created new repository `%s`" % (repo.repo_name),
                repo=repo.get_api_data()
            )

        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError('failed to create repository `%s`' % repo_name)

    @HasPermissionAnyDecorator('hg.admin')
    def fork_repo(self, apiuser, repoid, fork_name, owner,
                  description=Optional(''), copy_permissions=Optional(False),
                  private=Optional(False), landing_rev=Optional('tip')):
        repo = get_repo_or_error(repoid)
        repo_name = repo.repo_name
        owner = get_user_or_error(owner)

        _repo = RepoModel().get_by_repo_name(fork_name)
        if _repo:
            type_ = 'fork' if _repo.fork else 'repo'
            raise JSONRPCError("%s `%s` already exist" % (type_, fork_name))

        try:
            # create structure of groups and return the last group
            group = map_groups(fork_name)

            form_data = dict(
                repo_name=fork_name,
                repo_name_full=fork_name,
                repo_group=group,
                repo_type=repo.repo_type,
                description=Optional.extract(description),
                private=Optional.extract(private),
                copy_permissions=Optional.extract(copy_permissions),
                landing_rev=Optional.extract(landing_rev),
                update_after_clone=False,
                fork_parent_id=repo.repo_id,
            )
            RepoModel().create_fork(form_data, cur_user=owner)
            return dict(
                msg='Created fork of `%s` as `%s`' % (repo.repo_name,
                                                      fork_name),
                success=True  # cannot return the repo data here since fork
                              # cann be done async
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to fork repository `%s` as `%s`' % (repo_name,
                                                            fork_name)
            )

    @HasPermissionAnyDecorator('hg.admin')
    def delete_repo(self, apiuser, repoid):
        """
        Deletes a given repository

        :param apiuser:
        :param repoid:
        """
        repo = get_repo_or_error(repoid)

        try:
            RepoModel().delete(repo)
            Session().commit()
            return dict(
                msg='Deleted repository `%s`' % repo.repo_name,
                success=True
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to delete repository `%s`' % repo.repo_name
            )

    @HasPermissionAnyDecorator('hg.admin')
    def grant_user_permission(self, apiuser, repoid, userid, perm):
        """
        Grant permission for user on given repository, or update existing one
        if found

        :param repoid:
        :param userid:
        :param perm:
        """
        repo = get_repo_or_error(repoid)
        user = get_user_or_error(userid)
        perm = get_perm_or_error(perm)

        try:

            RepoModel().grant_user_permission(repo=repo, user=user, perm=perm)

            Session().commit()
            return dict(
                msg='Granted perm: `%s` for user: `%s` in repo: `%s`' % (
                    perm.permission_name, user.username, repo.repo_name
                ),
                success=True
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to edit permission for user: `%s` in repo: `%s`' % (
                    userid, repoid
                )
            )

    @HasPermissionAnyDecorator('hg.admin')
    def revoke_user_permission(self, apiuser, repoid, userid):
        """
        Revoke permission for user on given repository

        :param apiuser:
        :param repoid:
        :param userid:
        """

        repo = get_repo_or_error(repoid)
        user = get_user_or_error(userid)
        try:

            RepoModel().revoke_user_permission(repo=repo, user=user)

            Session().commit()
            return dict(
                msg='Revoked perm for user: `%s` in repo: `%s`' % (
                    user.username, repo.repo_name
                ),
                success=True
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to edit permission for user: `%s` in repo: `%s`' % (
                    userid, repoid
                )
            )

    @HasPermissionAnyDecorator('hg.admin')
    def grant_users_group_permission(self, apiuser, repoid, usersgroupid,
                                     perm):
        """
        Grant permission for users group on given repository, or update
        existing one if found

        :param apiuser:
        :param repoid:
        :param usersgroupid:
        :param perm:
        """
        repo = get_repo_or_error(repoid)
        perm = get_perm_or_error(perm)
        users_group = get_users_group_or_error(usersgroupid)

        try:
            RepoModel().grant_users_group_permission(repo=repo,
                                                     group_name=users_group,
                                                     perm=perm)

            Session().commit()
            return dict(
                msg='Granted perm: `%s` for users group: `%s` in '
                    'repo: `%s`' % (
                    perm.permission_name, users_group.users_group_name,
                    repo.repo_name
                ),
                success=True
            )
        except Exception:
            print traceback.format_exc()
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to edit permission for users group: `%s` in '
                'repo: `%s`' % (
                    usersgroupid, repo.repo_name
                )
            )

    @HasPermissionAnyDecorator('hg.admin')
    def revoke_users_group_permission(self, apiuser, repoid, usersgroupid):
        """
        Revoke permission for users group on given repository

        :param apiuser:
        :param repoid:
        :param usersgroupid:
        """
        repo = get_repo_or_error(repoid)
        users_group = get_users_group_or_error(usersgroupid)

        try:
            RepoModel().revoke_users_group_permission(repo=repo,
                                                      group_name=users_group)

            Session().commit()
            return dict(
                msg='Revoked perm for users group: `%s` in repo: `%s`' % (
                    users_group.users_group_name, repo.repo_name
                ),
                success=True
            )
        except Exception:
            log.error(traceback.format_exc())
            raise JSONRPCError(
                'failed to edit permission for users group: `%s` in '
                'repo: `%s`' % (
                    users_group.users_group_name, repo.repo_name
                )
            )