2010-10-22 14:08:29 -05:00
|
|
|
# Authors:
|
|
|
|
# Adam Young <ayoung@redhat.com>
|
|
|
|
# Rob Crittenden <rcritten@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (c) 2010 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.
|
2010-10-22 14:08:29 -05:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
2010-12-09 06:59:11 -06:00
|
|
|
# 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.
|
2010-10-22 14:08:29 -05:00
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-10-22 14:08:29 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
Plugin to make multiple ipa calls via one remote procedure call
|
|
|
|
|
|
|
|
To run this code in the lite-server
|
|
|
|
|
2011-05-04 03:26:18 -05:00
|
|
|
curl -H "Content-Type:application/json" -H "Accept:application/json" -H "Accept-Language:en" --negotiate -u : --cacert /etc/ipa/ca.crt -d @batch_request.json -X POST http://localhost:8888/ipa/json
|
2010-10-22 14:08:29 -05:00
|
|
|
|
2011-05-04 03:26:18 -05:00
|
|
|
where the contents of the file batch_request.json follow the below example
|
2010-10-22 14:08:29 -05:00
|
|
|
|
|
|
|
{"method":"batch","params":[[
|
|
|
|
{"method":"group_find","params":[[],{}]},
|
|
|
|
{"method":"user_find","params":[[],{"whoami":"true","all":"true"}]},
|
|
|
|
{"method":"user_show","params":[["admin"],{"all":true}]}
|
|
|
|
],{}],"id":1}
|
|
|
|
|
2011-01-13 13:29:16 -06:00
|
|
|
The format of the response is nested the same way. At the top you will see
|
2010-10-22 14:08:29 -05:00
|
|
|
"error": null,
|
|
|
|
"id": 1,
|
|
|
|
"result": {
|
|
|
|
"count": 3,
|
|
|
|
"results": [
|
|
|
|
|
|
|
|
|
|
|
|
And then a nested response for each IPA command method sent in the request
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
from ipalib import api, errors
|
|
|
|
from ipalib import Command
|
|
|
|
from ipalib import Str, List
|
|
|
|
from ipalib.output import Output
|
|
|
|
from ipalib import output
|
|
|
|
from ipalib.text import _
|
2011-01-13 13:29:16 -06:00
|
|
|
from ipapython.version import API_VERSION
|
2010-10-22 14:08:29 -05:00
|
|
|
|
|
|
|
class batch(Command):
|
2011-01-20 14:07:43 -06:00
|
|
|
NO_CLI = True
|
2010-10-22 14:08:29 -05:00
|
|
|
|
|
|
|
takes_args = (
|
|
|
|
List('methods?',
|
|
|
|
doc=_('Nested Methods to execute'),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2011-01-13 13:29:16 -06:00
|
|
|
take_options = (
|
|
|
|
Str('version',
|
|
|
|
cli_name='version',
|
|
|
|
doc=_('Client version. Used to determine if server will accept request.'),
|
|
|
|
exclude='webui',
|
|
|
|
flags=['no_option', 'no_output'],
|
|
|
|
default=API_VERSION,
|
|
|
|
autofill=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2010-10-22 14:08:29 -05:00
|
|
|
has_output = (
|
2011-02-23 15:47:49 -06:00
|
|
|
Output('count', int, doc=''),
|
|
|
|
Output('results', list, doc='')
|
2010-10-22 14:08:29 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
def execute(self, *args, **options):
|
|
|
|
results=[]
|
|
|
|
for arg in args[0]:
|
|
|
|
try:
|
|
|
|
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)
|
|
|
|
result['error']=None
|
|
|
|
except Exception, e:
|
|
|
|
result = dict()
|
|
|
|
result['error'] = unicode(e)
|
|
|
|
results.append(result)
|
|
|
|
return dict(count=len(results) , results=results)
|
|
|
|
|
|
|
|
api.register(batch)
|