mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
98 lines
2.9 KiB
Plaintext
98 lines
2.9 KiB
Plaintext
|
#!/usr/bin/env python
|
||
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
||
|
|
||
|
# Copyright 2017 Lenovo
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
__author__ = 'alin37'
|
||
|
|
||
|
import optparse
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
path = os.path.dirname(os.path.realpath(__file__))
|
||
|
path = os.path.realpath(os.path.join(path, '..', 'lib', 'python'))
|
||
|
if path.startswith('/opt'):
|
||
|
sys.path.append(path)
|
||
|
|
||
|
import confluent.client as client
|
||
|
|
||
|
argparser = optparse.OptionParser(
|
||
|
usage='''\n %prog [options] \
|
||
|
\n %prog [options] nodegroup [list of attributes] \
|
||
|
\n %prog [options] nodegroup group=value1,value2 \
|
||
|
\n %prog [options] nodegroup group=value1,value2
|
||
|
\n ''')
|
||
|
argparser.add_option('-b', '--blame', action='store_true',
|
||
|
help='Show information about how attributes inherited')
|
||
|
argparser.add_option('-c', '--clear', action='store_true',
|
||
|
help='Clear variables')
|
||
|
(options, args) = argparser.parse_args()
|
||
|
|
||
|
|
||
|
#setting minimal output to only output current information
|
||
|
showtype = 'current'
|
||
|
requestargs=None
|
||
|
nodetype="nodegroups"
|
||
|
|
||
|
try:
|
||
|
nodegroups = args[0]
|
||
|
nodelist = '/{0}/{1}/'.format(nodetype,nodegroups)
|
||
|
except IndexError:
|
||
|
nodelist = '/nodegroups/'
|
||
|
session = client.Command()
|
||
|
exitcode = 0
|
||
|
|
||
|
#Sets attributes
|
||
|
|
||
|
if len(args) > 1:
|
||
|
exitcode=client.updateattrib(session,args,nodetype, nodegroups, options)
|
||
|
try:
|
||
|
# setting user output to what the user inputs
|
||
|
if args[1] == 'all':
|
||
|
showtype = 'all'
|
||
|
elif args[1] == 'current':
|
||
|
showtype = 'current'
|
||
|
|
||
|
requestargs=args[1:]
|
||
|
except Exception as e:
|
||
|
print str(e)
|
||
|
|
||
|
if exitcode != 0:
|
||
|
sys.exit(exitcode)
|
||
|
|
||
|
# Lists all attributes
|
||
|
if len(args) > 0:
|
||
|
# setting output to all so it can search since if we do have something to search, we want to show all outputs even if it is blank.
|
||
|
if requestargs is None:
|
||
|
showtype = 'current'
|
||
|
elif requestargs == []:
|
||
|
#showtype already set
|
||
|
pass
|
||
|
else:
|
||
|
try:
|
||
|
requestargs.remove('all')
|
||
|
requestargs.remove('current')
|
||
|
except ValueError:
|
||
|
pass
|
||
|
exitcode = client.printgroupattributes(session, requestargs, showtype,nodetype, nodegroups, options)
|
||
|
else:
|
||
|
for res in session.read(nodelist):
|
||
|
if 'error' in res:
|
||
|
sys.stderr.write(res['error'] + '\n')
|
||
|
exitcode = 1
|
||
|
else:
|
||
|
print res['item']['href'].replace('/', '')
|
||
|
|
||
|
sys.exit(exitcode)
|