2009-12-09 10:09:53 -06:00
|
|
|
# Authors:
|
|
|
|
# Jason Gerard DeRose <jderose@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06: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.
|
2009-12-09 10:09:53 -06: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 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
"""
|
|
|
|
Simple description of return values.
|
|
|
|
"""
|
2015-09-11 06:43:28 -05:00
|
|
|
import six
|
|
|
|
|
2015-07-31 03:15:01 -05:00
|
|
|
from ipalib.plugable import ReadOnly, lock
|
|
|
|
from ipalib.capabilities import client_has_capability
|
|
|
|
from ipalib.text import _
|
2009-12-09 10:09:53 -06:00
|
|
|
|
2015-09-11 06:43:28 -05:00
|
|
|
if six.PY3:
|
|
|
|
unicode = str
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
class Output(ReadOnly):
|
|
|
|
"""
|
|
|
|
Simple description of a member in the return value ``dict``.
|
2010-02-12 15:34:21 -06:00
|
|
|
|
|
|
|
This class controls both the type of object being returned by
|
|
|
|
a command as well as how the output will be displayed.
|
|
|
|
|
|
|
|
For example, this class defines two return results: an entry
|
|
|
|
and a value.
|
|
|
|
|
|
|
|
>>> from ipalib import crud, output
|
|
|
|
>>> class user(crud.Update):
|
|
|
|
...
|
|
|
|
... has_output = (
|
|
|
|
... output.Entry('result'),
|
|
|
|
... output.value,
|
|
|
|
... )
|
|
|
|
|
|
|
|
The order of the values in has_output controls the order of output.
|
|
|
|
If you have values that you don't want to be printed then add
|
|
|
|
``'no_display'`` to flags.
|
|
|
|
|
2012-06-05 08:11:34 -05:00
|
|
|
The difference between ``'no_display'`` and ``'no_output'`` is
|
|
|
|
that ``'no_output'`` will prevent a Param value from being returned
|
2010-02-12 15:34:21 -06:00
|
|
|
at all. ``'no_display'`` will cause the API to return a value, it
|
|
|
|
simply won't be displayed to the user. This is so some things may
|
|
|
|
be returned that while not interesting to us, but may be to others.
|
|
|
|
|
|
|
|
>>> from ipalib import crud, output
|
|
|
|
>>> myvalue = output.Output('myvalue', unicode,
|
|
|
|
... 'Do not print this value', flags=['no_display'],
|
|
|
|
... )
|
|
|
|
>>> class user(crud.Update):
|
|
|
|
...
|
|
|
|
... has_output = (
|
|
|
|
... output.Entry('result'),
|
|
|
|
... myvalue,
|
|
|
|
... )
|
2009-12-09 10:09:53 -06:00
|
|
|
"""
|
|
|
|
|
|
|
|
type = None
|
|
|
|
validate = None
|
|
|
|
doc = None
|
2010-02-12 15:34:21 -06:00
|
|
|
flags = []
|
2009-12-09 10:09:53 -06:00
|
|
|
|
2010-02-12 15:34:21 -06:00
|
|
|
def __init__(self, name, type=None, doc=None, flags=[]):
|
2009-12-09 10:09:53 -06:00
|
|
|
self.name = name
|
|
|
|
if type is not None:
|
2015-07-15 14:10:14 -05:00
|
|
|
if not isinstance(type, tuple):
|
|
|
|
type = (type,)
|
2009-12-09 10:09:53 -06:00
|
|
|
self.type = type
|
|
|
|
if doc is not None:
|
|
|
|
self.doc = doc
|
2010-02-12 15:34:21 -06:00
|
|
|
self.flags = flags
|
2009-12-09 10:09:53 -06:00
|
|
|
lock(self)
|
|
|
|
|
|
|
|
def __repr__(self):
|
2015-07-15 14:10:14 -05:00
|
|
|
return '%s(%s)' % (
|
|
|
|
self.__class__.__name__,
|
|
|
|
', '.join(self.__repr_iter())
|
2009-12-09 10:09:53 -06:00
|
|
|
)
|
|
|
|
|
2015-07-15 14:10:14 -05:00
|
|
|
def __repr_iter(self):
|
|
|
|
yield repr(self.name)
|
|
|
|
for key in ('type', 'doc', 'flags'):
|
|
|
|
value = self.__dict__.get(key)
|
|
|
|
if not value:
|
|
|
|
continue
|
|
|
|
if isinstance(value, tuple):
|
|
|
|
value = repr(list(value))
|
|
|
|
else:
|
|
|
|
value = repr(value)
|
|
|
|
yield '%s=%s' % (key, value)
|
|
|
|
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
class Entry(Output):
|
|
|
|
type = dict
|
2010-03-05 15:11:21 -06:00
|
|
|
doc = _('A dictionary representing an LDAP entry')
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
|
|
|
|
emsg = """%s.validate_output() => %s.validate():
|
|
|
|
output[%r][%d]: need a %r; got a %r: %r"""
|
|
|
|
|
|
|
|
class ListOfEntries(Output):
|
|
|
|
type = (list, tuple)
|
2010-03-05 15:11:21 -06:00
|
|
|
doc = _('A list of LDAP entries')
|
2009-12-09 10:09:53 -06:00
|
|
|
|
2014-03-27 08:04:00 -05:00
|
|
|
def validate(self, cmd, entries, version):
|
2009-12-09 10:09:53 -06:00
|
|
|
assert isinstance(entries, self.type)
|
|
|
|
for (i, entry) in enumerate(entries):
|
|
|
|
if not isinstance(entry, dict):
|
|
|
|
raise TypeError(emsg % (cmd.name, self.__class__.__name__,
|
|
|
|
self.name, i, dict, type(entry), entry)
|
|
|
|
)
|
|
|
|
|
2014-03-27 08:04:00 -05:00
|
|
|
class PrimaryKey(Output):
|
|
|
|
def validate(self, cmd, value, version):
|
|
|
|
if client_has_capability(version, 'primary_key_types'):
|
|
|
|
if hasattr(cmd, 'obj') and cmd.obj and cmd.obj.primary_key:
|
|
|
|
types = cmd.obj.primary_key.allowed_types
|
|
|
|
else:
|
|
|
|
types = (unicode,)
|
2015-09-17 10:56:45 -05:00
|
|
|
types = types + (type(None),)
|
2014-03-27 08:04:00 -05:00
|
|
|
else:
|
|
|
|
types = (unicode,)
|
|
|
|
if not isinstance(value, types):
|
|
|
|
raise TypeError(
|
|
|
|
"%s.validate_output() => %s.validate():\n"
|
|
|
|
" output[%r]: need %r; got %r: %r" % (
|
|
|
|
cmd.name, self.__class__.__name__, self.name,
|
|
|
|
types[0], type(value), value))
|
|
|
|
|
|
|
|
class ListOfPrimaryKeys(Output):
|
|
|
|
def validate(self, cmd, values, version):
|
|
|
|
if client_has_capability(version, 'primary_key_types'):
|
|
|
|
types = (tuple, list)
|
|
|
|
else:
|
|
|
|
types = (unicode,)
|
|
|
|
if not isinstance(values, types):
|
|
|
|
raise TypeError(
|
|
|
|
"%s.validate_output() => %s.validate():\n"
|
|
|
|
" output[%r]: need %r; got %r: %r" % (
|
|
|
|
cmd.name, self.__class__.__name__, self.name,
|
|
|
|
types[0], type(values), values))
|
|
|
|
|
|
|
|
if client_has_capability(version, 'primary_key_types'):
|
|
|
|
if hasattr(cmd, 'obj') and cmd.obj and cmd.obj.primary_key:
|
|
|
|
types = cmd.obj.primary_key.allowed_types
|
|
|
|
else:
|
|
|
|
types = (unicode,)
|
|
|
|
for (i, value) in enumerate(values):
|
|
|
|
if not isinstance(value, types):
|
|
|
|
raise TypeError(emsg % (
|
|
|
|
cmd.name, self.__class__.__name__, i, self.name,
|
|
|
|
types[0], type(value), value))
|
|
|
|
|
2009-12-09 10:09:53 -06:00
|
|
|
|
2010-03-05 15:11:21 -06:00
|
|
|
result = Output('result', doc=_('All commands should at least have a result'))
|
2009-12-09 10:09:53 -06:00
|
|
|
|
2015-09-17 10:56:45 -05:00
|
|
|
summary = Output('summary', (unicode, type(None)),
|
2012-02-10 04:27:24 -06:00
|
|
|
_('User-friendly description of action performed')
|
2009-12-09 10:09:53 -06:00
|
|
|
)
|
|
|
|
|
2014-03-27 08:04:00 -05:00
|
|
|
value = PrimaryKey('value', None,
|
2012-02-10 04:27:24 -06:00
|
|
|
_("The primary_key value of the entry, e.g. 'jdoe' for a user"),
|
2010-02-12 15:34:21 -06:00
|
|
|
flags=['no_display'],
|
2009-12-09 10:09:53 -06:00
|
|
|
)
|
|
|
|
|
2010-02-12 15:34:21 -06:00
|
|
|
standard = (summary, result)
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
standard_entry = (
|
2010-02-12 15:34:21 -06:00
|
|
|
summary,
|
2009-12-09 10:09:53 -06:00
|
|
|
Entry('result'),
|
|
|
|
value,
|
|
|
|
)
|
|
|
|
|
|
|
|
standard_list_of_entries = (
|
2010-02-12 15:34:21 -06:00
|
|
|
summary,
|
2009-12-09 10:09:53 -06:00
|
|
|
ListOfEntries('result'),
|
2012-02-10 04:27:24 -06:00
|
|
|
Output('count', int, _('Number of entries returned')),
|
|
|
|
Output('truncated', bool, _('True if not all results were returned')),
|
2009-12-09 10:09:53 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
standard_delete = (
|
2011-01-07 10:17:55 -06:00
|
|
|
summary,
|
2012-02-10 04:27:24 -06:00
|
|
|
Output('result', dict, _('List of deletions that failed')),
|
2011-01-07 10:17:55 -06:00
|
|
|
value,
|
|
|
|
)
|
|
|
|
|
2014-03-27 08:04:00 -05:00
|
|
|
standard_multi_delete = (
|
|
|
|
summary,
|
|
|
|
Output('result', dict, _('List of deletions that failed')),
|
|
|
|
ListOfPrimaryKeys('value', flags=['no_display']),
|
|
|
|
)
|
|
|
|
|
2011-01-07 10:17:55 -06:00
|
|
|
standard_boolean = (
|
2010-02-12 15:34:21 -06:00
|
|
|
summary,
|
2012-02-10 04:27:24 -06:00
|
|
|
Output('result', bool, _('True means the operation was successful')),
|
2009-12-09 10:09:53 -06:00
|
|
|
value,
|
|
|
|
)
|
|
|
|
|
2011-01-07 10:17:55 -06:00
|
|
|
standard_value = standard_boolean
|
2016-06-15 01:02:30 -05:00
|
|
|
|
|
|
|
simple_value = (
|
|
|
|
summary,
|
|
|
|
Output('result', bool, _('True means the operation was successful')),
|
|
|
|
Output('value', unicode, flags=['no_display']),
|
|
|
|
)
|
2016-07-18 06:18:44 -05:00
|
|
|
|
|
|
|
# custom shim for commands like `trustconfig-show`,
|
|
|
|
# `automember-default-group-*` which put stuff into output['value'] despite not
|
|
|
|
# having primary key themselves. Designing commands like this is not a very
|
|
|
|
# good practice, so please do not use this for new code.
|
|
|
|
simple_entry = (
|
|
|
|
summary,
|
|
|
|
Entry('result'),
|
|
|
|
Output('value', unicode, flags=['no_display']),
|
|
|
|
)
|