diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-08-19 16:20:01 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-08-19 01:21:22 -0400 |
commit | 92780658b8149b87f1c0cab373b814c09de68975 (patch) | |
tree | a6ee7c6b700f895822d5319db7d82e14e0fb10aa /ipalib/plugins | |
parent | b8d4f8ad9fc5e12785ae7eae0f7b773259b7bec1 (diff) | |
download | freeipa-92780658b8149b87f1c0cab373b814c09de68975.tar.gz freeipa-92780658b8149b87f1c0cab373b814c09de68975.tar.xz freeipa-92780658b8149b87f1c0cab373b814c09de68975.zip |
Log each command in a batch separately.
This also fixes command logging in general, it wasn't working in most
cases as a regression in ticket 1322.
https://fedorahosted.org/freeipa/ticket/1598
Diffstat (limited to 'ipalib/plugins')
-rw-r--r-- | ipalib/plugins/batch.py | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/ipalib/plugins/batch.py b/ipalib/plugins/batch.py index 973526a6..b95e5d02 100644 --- a/ipalib/plugins/batch.py +++ b/ipalib/plugins/batch.py @@ -51,6 +51,7 @@ from ipalib import Str, List from ipalib.output import Output from ipalib import output from ipalib.text import _ +from ipalib.request import context from ipapython.version import API_VERSION class batch(Command): @@ -81,17 +82,40 @@ class batch(Command): def execute(self, *args, **options): results=[] for arg in args[0]: + params = dict() + name = None try: + if 'method' not in arg: + raise errors.RequirementError(name='method') + if 'params' not in arg: + raise errors.RequirementError(name='params') + name = arg['method'] + if name not in self.Command: + raise errors.CommandError(name=name) a = arg['params'][0] kw = arg['params'][1] newkw = {} for k in kw: newkw[str(k)] = kw[k] - result = api.Command[arg['method']](*a, **newkw) + params = api.Command[name].args_options_2_params(*a, **newkw) + + result = api.Command[name](*a, **newkw) + self.info( + 'batch: %s(%s): SUCCESS', name, ', '.join(api.Command[name]._repr_iter(**params)) + ) result['error']=None except Exception, e: result = dict() result['error'] = unicode(e) + if isinstance(e, errors.RequirementError) or \ + isinstance(e, errors.CommandError): + self.info( + '%s: batch: %s', context.principal, e.__class__.__name__ + ) + else: + self.info( + '%s: batch: %s(%s): %s', context.principal, name, ', '.join(api.Command[name]._repr_iter(**params)), e.__class__.__name__ + ) results.append(result) return dict(count=len(results) , results=results) |