mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-16 11:21:56 -06:00
395 lines
11 KiB
Python
395 lines
11 KiB
Python
|
#
|
||
|
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
|
||
|
#
|
||
|
|
||
|
# pylint: disable=unused-import
|
||
|
import six
|
||
|
|
||
|
from . import Command, Method, Object
|
||
|
from ipalib import api, parameters, output
|
||
|
from ipalib.parameters import DefaultFrom
|
||
|
from ipalib.plugable import Registry
|
||
|
from ipalib.text import _
|
||
|
from ipapython.dn import DN
|
||
|
from ipapython.dnsutil import DNSName
|
||
|
|
||
|
if six.PY3:
|
||
|
unicode = str
|
||
|
|
||
|
__doc__ = _("""
|
||
|
Sudo Commands
|
||
|
|
||
|
Commands used as building blocks for sudo
|
||
|
|
||
|
EXAMPLES:
|
||
|
|
||
|
Create a new command
|
||
|
ipa sudocmd-add --desc='For reading log files' /usr/bin/less
|
||
|
|
||
|
Remove a command
|
||
|
ipa sudocmd-del /usr/bin/less
|
||
|
""")
|
||
|
|
||
|
register = Registry()
|
||
|
|
||
|
|
||
|
@register()
|
||
|
class sudocmd(Object):
|
||
|
takes_params = (
|
||
|
parameters.Str(
|
||
|
'sudocmd',
|
||
|
primary_key=True,
|
||
|
label=_(u'Sudo Command'),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'description',
|
||
|
required=False,
|
||
|
label=_(u'Description'),
|
||
|
doc=_(u'A description of this command'),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'memberof_sudocmdgroup',
|
||
|
required=False,
|
||
|
label=_(u'Sudo Command Groups'),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
|
||
|
@register()
|
||
|
class sudocmd_add(Method):
|
||
|
__doc__ = _("Create new Sudo Command.")
|
||
|
|
||
|
takes_args = (
|
||
|
parameters.Str(
|
||
|
'sudocmd',
|
||
|
cli_name='command',
|
||
|
label=_(u'Sudo Command'),
|
||
|
),
|
||
|
)
|
||
|
takes_options = (
|
||
|
parameters.Str(
|
||
|
'description',
|
||
|
required=False,
|
||
|
cli_name='desc',
|
||
|
label=_(u'Description'),
|
||
|
doc=_(u'A description of this command'),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'setattr',
|
||
|
required=False,
|
||
|
multivalue=True,
|
||
|
doc=_(u'Set an attribute to a name/value pair. Format is attr=value.\nFor multi-valued attributes, the command replaces the values already present.'),
|
||
|
exclude=('webui',),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'addattr',
|
||
|
required=False,
|
||
|
multivalue=True,
|
||
|
doc=_(u'Add an attribute/value pair. Format is attr=value. The attribute\nmust be part of the schema.'),
|
||
|
exclude=('webui',),
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'all',
|
||
|
doc=_(u'Retrieve and print all attributes from the server. Affects command output.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'raw',
|
||
|
doc=_(u'Print entries as stored on the server. Only affects output format.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'no_members',
|
||
|
doc=_(u'Suppress processing of membership attributes.'),
|
||
|
exclude=('webui', 'cli'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
)
|
||
|
has_output = (
|
||
|
output.Output(
|
||
|
'summary',
|
||
|
(unicode, type(None)),
|
||
|
doc=_(u'User-friendly description of action performed'),
|
||
|
),
|
||
|
output.Entry(
|
||
|
'result',
|
||
|
),
|
||
|
output.PrimaryKey(
|
||
|
'value',
|
||
|
doc=_(u"The primary_key value of the entry, e.g. 'jdoe' for a user"),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
|
||
|
@register()
|
||
|
class sudocmd_del(Method):
|
||
|
__doc__ = _("Delete Sudo Command.")
|
||
|
|
||
|
takes_args = (
|
||
|
parameters.Str(
|
||
|
'sudocmd',
|
||
|
multivalue=True,
|
||
|
cli_name='command',
|
||
|
label=_(u'Sudo Command'),
|
||
|
),
|
||
|
)
|
||
|
takes_options = (
|
||
|
parameters.Flag(
|
||
|
'continue',
|
||
|
doc=_(u"Continuous mode: Don't stop on errors."),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
)
|
||
|
has_output = (
|
||
|
output.Output(
|
||
|
'summary',
|
||
|
(unicode, type(None)),
|
||
|
doc=_(u'User-friendly description of action performed'),
|
||
|
),
|
||
|
output.Output(
|
||
|
'result',
|
||
|
dict,
|
||
|
doc=_(u'List of deletions that failed'),
|
||
|
),
|
||
|
output.ListOfPrimaryKeys(
|
||
|
'value',
|
||
|
),
|
||
|
)
|
||
|
|
||
|
|
||
|
@register()
|
||
|
class sudocmd_find(Method):
|
||
|
__doc__ = _("Search for Sudo Commands.")
|
||
|
|
||
|
takes_args = (
|
||
|
parameters.Str(
|
||
|
'criteria',
|
||
|
required=False,
|
||
|
doc=_(u'A string searched in all relevant object attributes'),
|
||
|
),
|
||
|
)
|
||
|
takes_options = (
|
||
|
parameters.Str(
|
||
|
'sudocmd',
|
||
|
required=False,
|
||
|
cli_name='command',
|
||
|
label=_(u'Sudo Command'),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'description',
|
||
|
required=False,
|
||
|
cli_name='desc',
|
||
|
label=_(u'Description'),
|
||
|
doc=_(u'A description of this command'),
|
||
|
),
|
||
|
parameters.Int(
|
||
|
'timelimit',
|
||
|
required=False,
|
||
|
label=_(u'Time Limit'),
|
||
|
doc=_(u'Time limit of search in seconds (0 is unlimited)'),
|
||
|
),
|
||
|
parameters.Int(
|
||
|
'sizelimit',
|
||
|
required=False,
|
||
|
label=_(u'Size Limit'),
|
||
|
doc=_(u'Maximum number of entries returned (0 is unlimited)'),
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'all',
|
||
|
doc=_(u'Retrieve and print all attributes from the server. Affects command output.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'raw',
|
||
|
doc=_(u'Print entries as stored on the server. Only affects output format.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'no_members',
|
||
|
doc=_(u'Suppress processing of membership attributes.'),
|
||
|
exclude=('webui', 'cli'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'pkey_only',
|
||
|
required=False,
|
||
|
label=_(u'Primary key only'),
|
||
|
doc=_(u'Results should contain primary key attribute only ("command")'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
)
|
||
|
has_output = (
|
||
|
output.Output(
|
||
|
'summary',
|
||
|
(unicode, type(None)),
|
||
|
doc=_(u'User-friendly description of action performed'),
|
||
|
),
|
||
|
output.ListOfEntries(
|
||
|
'result',
|
||
|
),
|
||
|
output.Output(
|
||
|
'count',
|
||
|
int,
|
||
|
doc=_(u'Number of entries returned'),
|
||
|
),
|
||
|
output.Output(
|
||
|
'truncated',
|
||
|
bool,
|
||
|
doc=_(u'True if not all results were returned'),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
|
||
|
@register()
|
||
|
class sudocmd_mod(Method):
|
||
|
__doc__ = _("Modify Sudo Command.")
|
||
|
|
||
|
takes_args = (
|
||
|
parameters.Str(
|
||
|
'sudocmd',
|
||
|
cli_name='command',
|
||
|
label=_(u'Sudo Command'),
|
||
|
),
|
||
|
)
|
||
|
takes_options = (
|
||
|
parameters.Str(
|
||
|
'description',
|
||
|
required=False,
|
||
|
cli_name='desc',
|
||
|
label=_(u'Description'),
|
||
|
doc=_(u'A description of this command'),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'setattr',
|
||
|
required=False,
|
||
|
multivalue=True,
|
||
|
doc=_(u'Set an attribute to a name/value pair. Format is attr=value.\nFor multi-valued attributes, the command replaces the values already present.'),
|
||
|
exclude=('webui',),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'addattr',
|
||
|
required=False,
|
||
|
multivalue=True,
|
||
|
doc=_(u'Add an attribute/value pair. Format is attr=value. The attribute\nmust be part of the schema.'),
|
||
|
exclude=('webui',),
|
||
|
),
|
||
|
parameters.Str(
|
||
|
'delattr',
|
||
|
required=False,
|
||
|
multivalue=True,
|
||
|
doc=_(u'Delete an attribute/value pair. The option will be evaluated\nlast, after all sets and adds.'),
|
||
|
exclude=('webui',),
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'rights',
|
||
|
label=_(u'Rights'),
|
||
|
doc=_(u'Display the access rights of this entry (requires --all). See ipa man page for details.'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'all',
|
||
|
doc=_(u'Retrieve and print all attributes from the server. Affects command output.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'raw',
|
||
|
doc=_(u'Print entries as stored on the server. Only affects output format.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'no_members',
|
||
|
doc=_(u'Suppress processing of membership attributes.'),
|
||
|
exclude=('webui', 'cli'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
)
|
||
|
has_output = (
|
||
|
output.Output(
|
||
|
'summary',
|
||
|
(unicode, type(None)),
|
||
|
doc=_(u'User-friendly description of action performed'),
|
||
|
),
|
||
|
output.Entry(
|
||
|
'result',
|
||
|
),
|
||
|
output.PrimaryKey(
|
||
|
'value',
|
||
|
doc=_(u"The primary_key value of the entry, e.g. 'jdoe' for a user"),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
|
||
|
@register()
|
||
|
class sudocmd_show(Method):
|
||
|
__doc__ = _("Display Sudo Command.")
|
||
|
|
||
|
takes_args = (
|
||
|
parameters.Str(
|
||
|
'sudocmd',
|
||
|
cli_name='command',
|
||
|
label=_(u'Sudo Command'),
|
||
|
),
|
||
|
)
|
||
|
takes_options = (
|
||
|
parameters.Flag(
|
||
|
'rights',
|
||
|
label=_(u'Rights'),
|
||
|
doc=_(u'Display the access rights of this entry (requires --all). See ipa man page for details.'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'all',
|
||
|
doc=_(u'Retrieve and print all attributes from the server. Affects command output.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'raw',
|
||
|
doc=_(u'Print entries as stored on the server. Only affects output format.'),
|
||
|
exclude=('webui',),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
parameters.Flag(
|
||
|
'no_members',
|
||
|
doc=_(u'Suppress processing of membership attributes.'),
|
||
|
exclude=('webui', 'cli'),
|
||
|
default=False,
|
||
|
autofill=True,
|
||
|
),
|
||
|
)
|
||
|
has_output = (
|
||
|
output.Output(
|
||
|
'summary',
|
||
|
(unicode, type(None)),
|
||
|
doc=_(u'User-friendly description of action performed'),
|
||
|
),
|
||
|
output.Entry(
|
||
|
'result',
|
||
|
),
|
||
|
output.PrimaryKey(
|
||
|
'value',
|
||
|
doc=_(u"The primary_key value of the entry, e.g. 'jdoe' for a user"),
|
||
|
),
|
||
|
)
|