Files
freeipa/ipaserver/plugins/delegation.py
T

220 lines
6.2 KiB
Python
Raw Normal View History

2010-12-10 13:31:58 -05:00
# Authors:
# Rob Crittenden <rcritten@redhat.com>
# Martin Kosek <mkosek@redhat.com>
2010-12-10 13:31:58 -05:00
#
# Copyright (C) 2010 Red Hat
# see file 'COPYING' for use and warranty information
#
2010-12-09 13:59:11 +01:00
# 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, either version 3 of the License, or
# (at your option) any later version.
2010-12-10 13:31:58 -05:00
#
# 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
2010-12-09 13:59:11 +01:00
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-12-16 16:06:03 +01:00
from ipalib import _, ngettext
from ipalib import Str
from ipalib import api, crud
from ipalib import output
2015-12-16 16:06:03 +01:00
from ipalib import Object
from ipalib.plugable import Registry
from .baseldap import gen_pkey_only_option, pkey_to_value
__doc__ = _("""
2010-12-10 13:31:58 -05:00
Group to Group Delegation
A permission enables fine-grained delegation of permissions. Access Control
Rules, or instructions (ACIs), grant permission to permissions to perform
given tasks such as adding a user, modifying a group, etc.
Group to Group Delegations grants the members of one group to update a set
of attributes of members of another group.
EXAMPLES:
Add a delegation rule to allow managers to edit employee's addresses:
ipa delegation-add --attrs=street --group=managers --membergroup=employees "managers edit employees' street"
2010-12-10 13:31:58 -05:00
When managing the list of attributes you need to include all attributes
2011-01-28 07:33:04 -05:00
in the list, including existing ones. Add postalCode to the list:
ipa delegation-mod --attrs=street --attrs=postalCode --group=managers --membergroup=employees "managers edit employees' street"
2010-12-10 13:31:58 -05:00
Display our updated rule:
ipa delegation-show "managers edit employees' street"
2010-12-10 13:31:58 -05:00
Delete a rule:
ipa delegation-del "managers edit employees' street"
""")
2010-12-10 13:31:58 -05:00
register = Registry()
2011-01-21 09:20:01 +01:00
ACI_PREFIX=u"delegation"
2012-02-02 21:28:15 +01:00
@register()
2010-12-10 13:31:58 -05:00
class delegation(Object):
"""
Delegation object.
"""
bindable = False
object_name = _('delegation')
object_name_plural = _('delegations')
2011-06-24 11:39:48 -05:00
label = _('Delegations')
2011-07-13 21:10:47 -05:00
label_singular = _('Delegation')
2010-12-10 13:31:58 -05:00
takes_params = (
Str('aciname',
cli_name='name',
label=_('Delegation name'),
doc=_('Delegation name'),
primary_key=True,
),
Str('permissions*',
2010-12-10 13:31:58 -05:00
cli_name='permissions',
label=_('Permissions'),
doc=_('Permissions to grant (read, write). Default is write.'),
2010-12-10 13:31:58 -05:00
),
Str('attrs+',
2010-12-10 13:31:58 -05:00
cli_name='attrs',
label=_('Attributes'),
doc=_('Attributes to which the delegation applies'),
normalizer=lambda value: value.lower(),
2010-12-10 13:31:58 -05:00
),
Str('memberof',
cli_name='membergroup',
label=_('Member user group'),
doc=_('User group to apply delegation to'),
),
Str('group',
cli_name='group',
label=_('User group'),
doc=_('User group ACI grants access to'),
),
2016-06-30 06:37:16 +02:00
Str('aci',
label=_('ACI'),
flags={'no_create', 'no_update', 'no_search'},
),
2010-12-10 13:31:58 -05:00
)
def __json__(self):
json_friendly_attributes = (
2011-06-23 19:48:50 -05:00
'label', 'label_singular', 'takes_params', 'bindable', 'name',
'object_name', 'object_name_plural',
)
json_dict = dict(
(a, getattr(self, a)) for a in json_friendly_attributes
)
2010-10-25 19:55:57 -04:00
json_dict['primary_key'] = self.primary_key.name
2019-10-18 22:56:47 +03:00
json_dict['methods'] = list(self.methods)
return json_dict
2012-02-02 21:28:15 +01:00
def postprocess_result(self, result):
try:
# do not include prefix in result
del result['aciprefix']
except KeyError:
pass
2010-12-10 13:31:58 -05:00
@register()
2010-12-10 13:31:58 -05:00
class delegation_add(crud.Create):
__doc__ = _('Add a new delegation.')
2010-12-10 13:31:58 -05:00
msg_summary = _('Added delegation "%(value)s"')
def execute(self, aciname, **kw):
2016-06-03 10:05:34 +02:00
if 'permissions' not in kw:
2010-12-10 13:31:58 -05:00
kw['permissions'] = (u'write',)
2011-01-21 09:20:01 +01:00
kw['aciprefix'] = ACI_PREFIX
2010-12-10 13:31:58 -05:00
result = api.Command['aci_add'](aciname, **kw)['result']
2012-02-02 21:28:15 +01:00
self.obj.postprocess_result(result)
2010-12-10 13:31:58 -05:00
return dict(
result=result,
value=pkey_to_value(aciname, kw),
2010-12-10 13:31:58 -05:00
)
@register()
2010-12-10 13:31:58 -05:00
class delegation_del(crud.Delete):
__doc__ = _('Delete a delegation.')
2010-12-10 13:31:58 -05:00
has_output = output.standard_boolean
2010-12-10 13:31:58 -05:00
msg_summary = _('Deleted delegation "%(value)s"')
def execute(self, aciname, **kw):
2011-01-21 09:20:01 +01:00
kw['aciprefix'] = ACI_PREFIX
2010-12-10 13:31:58 -05:00
result = api.Command['aci_del'](aciname, **kw)
2012-02-02 21:28:15 +01:00
self.obj.postprocess_result(result)
2010-12-10 13:31:58 -05:00
return dict(
result=True,
value=pkey_to_value(aciname, kw),
2010-12-10 13:31:58 -05:00
)
@register()
2010-12-10 13:31:58 -05:00
class delegation_mod(crud.Update):
__doc__ = _('Modify a delegation.')
2010-12-10 13:31:58 -05:00
msg_summary = _('Modified delegation "%(value)s"')
def execute(self, aciname, **kw):
2011-01-21 09:20:01 +01:00
kw['aciprefix'] = ACI_PREFIX
2010-12-10 13:31:58 -05:00
result = api.Command['aci_mod'](aciname, **kw)['result']
2012-02-02 21:28:15 +01:00
self.obj.postprocess_result(result)
2010-12-10 13:31:58 -05:00
return dict(
result=result,
value=pkey_to_value(aciname, kw),
2010-12-10 13:31:58 -05:00
)
@register()
2010-12-10 13:31:58 -05:00
class delegation_find(crud.Search):
__doc__ = _('Search for delegations.')
2010-12-10 13:31:58 -05:00
msg_summary = ngettext(
2011-02-23 16:47:49 -05:00
'%(count)d delegation matched', '%(count)d delegations matched', 0
2010-12-10 13:31:58 -05:00
)
takes_options = (gen_pkey_only_option("name"),)
def execute(self, term=None, **kw):
2011-01-21 09:20:01 +01:00
kw['aciprefix'] = ACI_PREFIX
results = api.Command['aci_find'](term, **kw)['result']
for aci in results:
2012-02-02 21:28:15 +01:00
self.obj.postprocess_result(aci)
2010-12-10 13:31:58 -05:00
return dict(
result=results,
count=len(results),
truncated=False,
)
@register()
2010-12-10 13:31:58 -05:00
class delegation_show(crud.Retrieve):
__doc__ = _('Display information about a delegation.')
2010-12-10 13:31:58 -05:00
def execute(self, aciname, **kw):
2012-02-02 21:28:15 +01:00
result = api.Command['aci_show'](aciname, aciprefix=ACI_PREFIX, **kw)['result']
self.obj.postprocess_result(result)
2010-12-10 13:31:58 -05:00
return dict(
result=result,
value=pkey_to_value(aciname, kw),
2010-12-10 13:31:58 -05:00
)