table.align = 'l'
print(table)
+@cli.command(name='ns-op-list')
+@click.argument('name')
+@click.pass_context
+def ns_op_list(ctx, name):
+ '''shows the history of operations over a NS instance
+
+ NAME: name or ID of the NS instance
+ '''
+ try:
+ check_client_version(ctx.obj, ctx.command.name)
+ resp = ctx.obj.ns.list_op(name)
+ except ClientException as inst:
+ print(inst.message)
+ exit(1)
+
+ table = PrettyTable(['id', 'operation', 'status'])
+ for op in resp:
+ table.add_row([op['id'], op['lcmOperationType'],
+ op['operationState']])
+ table.align = 'l'
+ print(table)
####################
# SHOW operations
table.align = 'l'
print(table)
+@cli.command(name='ns-op-show', short_help='shows the info of an operation')
+@click.argument('id')
+@click.option('--filter', default=None)
+@click.pass_context
+def ns_op_show(ctx, id, filter):
+ '''shows the detailed info of an operation
+
+ ID: operation identifier
+ '''
+ try:
+ check_client_version(ctx.obj, ctx.command.name)
+ op_info = ctx.obj.ns.get_op(id)
+ except ClientException as inst:
+ print(inst.message)
+ exit(1)
+
+ table = PrettyTable(['field', 'value'])
+ for k, v in op_info.items():
+ if filter is None or filter in k:
+ table.add_row([k, json.dumps(v, indent=2)])
+ table.align = 'l'
+ print(table)
+
####################
# CREATE operations
print(table)
+@cli.command(name='ns-action')
+@click.argument('ns_name')
+@click.option('--vnf_name', default=None)
+@click.option('--action_name', prompt=True)
+@click.option('--params', prompt=True)
+@click.pass_context
+def ns_action(ctx,
+ ns_name,
+ vnf_name,
+ params):
+ '''executes an action/primitive over a NS instance
+
+ NS_NAME: name or ID of the NS instance
+ '''
+ try:
+ check_client_version(ctx.obj, ctx.command.name)
+ op_data={}
+ if vnf_name:
+ op_data['vnf_member_index'] = vnf_name
+ op_data['primitive'] = action_name
+ op_data['primitive_params'] = yaml.load(params)
+ ctx.obj.ns.exec_op(ns_name, op_name='action', op_data=op_data)
+
+ except ClientException as inst:
+ print(inst.message)
+ exit(1)
+
+
if __name__ == '__main__':
cli()
curl_cmd.setopt(pycurl.HTTPGET, 1)
curl_cmd.setopt(pycurl.WRITEFUNCTION, data.write)
curl_cmd.perform()
+ http_code = curl_cmd.getinfo(pycurl.HTTP_CODE)
curl_cmd.close()
- return data.getvalue()
+ if data.getvalue():
+ return http_code, data.getvalue()
+ return http_code, None
from osmclient.common.exceptions import ClientException
from osmclient.common.exceptions import NotFound
import yaml
+import json
class Ns(object):
self._apiResource = '/ns_instances_content'
self._apiBase = '{}{}{}'.format(self._apiName,
self._apiVersion, self._apiResource)
- #print resp
resp = self._http.post_cmd(endpoint=self._apiBase,
postfields_dict=ns)
+ #print 'RESP: {}'.format(resp)
if not resp or 'id' not in resp:
raise ClientException('unexpected response from server: '.format(
resp))
exc.message)
raise ClientException(message)
+ def list_op(self, name, filter=None):
+ """Returns the list of operations of a NS
+ """
+ ns = self.get(name)
+ try:
+ self._apiResource = '/ns_lcm_op_occs'
+ self._apiBase = '{}{}{}'.format(self._apiName,
+ self._apiVersion, self._apiResource)
+ filter_string = ''
+ if filter:
+ filter_string = '&{}'.format(filter)
+ http_code, resp = self._http.get2_cmd('{}?nsInstanceId={}'.format(self._apiBase, ns['_id'],
+ filter_string) )
+ resp = json.loads(resp.decode())
+ #print 'RESP: {}'.format(resp)
+ if http_code == 200:
+ return resp
+ else:
+ raise ClientException('{}'.format(resp['detail']))
+
+ except ClientException as exc:
+ message="failed to get operation list of NS {}:\nerror:\n{}".format(
+ name,
+ exc.message)
+ raise ClientException(message)
+
+ def get_op(self, operationId):
+ """Returns the status of an operation
+ """
+ try:
+ self._apiResource = '/ns_lcm_op_occs'
+ self._apiBase = '{}{}{}'.format(self._apiName,
+ self._apiVersion, self._apiResource)
+ http_code, resp = self._http.get2_cmd('{}/{}'.format(self._apiBase, operationId))
+ resp = json.loads(resp.decode())
+ #print 'RESP: {}'.format(resp)
+ if http_code == 200:
+ return resp
+ else:
+ raise ClientException("{}".format(resp['detail']))
+ except ClientException as exc:
+ message="failed to get status of operation {}:\nerror:\n{}".format(
+ operationId,
+ exc.message)
+ raise ClientException(message)
+
+ def exec_op(self, name, op_name, op_data=None):
+ """Executes an operation on a NS
+ """
+ ns = self.get(name)
+ try:
+ self._apiResource = '/ns_instances'
+ self._apiBase = '{}{}{}'.format(self._apiName,
+ self._apiVersion, self._apiResource)
+ endpoint = '{}/{}/{}'.format(self._apiBase, ns['_id'], op_name)
+ #print 'OP_NAME: {}'.format(op_name)
+ #print 'OP_DATA: {}'.format(json.dumps(op_data))
+ resp = self._http.post_cmd(endpoint=endpoint, postfields_dict=op_data)
+ #print 'RESP: {}'.format(resp)
+ if not resp or 'id' not in resp:
+ raise ClientException('unexpected response from server: '.format(
+ resp))
+ else:
+ print resp['id']
+ except ClientException as exc:
+ message="failed to exec operation {}:\nerror:\n{}".format(
+ name,
+ exc.message)
+ raise ClientException(message)
+
nsd = self.get(name)
headers = self._client._headers
headers['Accept'] = 'application/binary'
- resp2 = self._http.get2_cmd('{}/{}/{}'.format(self._apiBase, nsd['_id'], thing))
+ http_code, resp2 = self._http.get2_cmd('{}/{}/{}'.format(self._apiBase, nsd['_id'], thing))
#print yaml.safe_dump(resp2)
if resp2:
#store in a file
vnfd = self.get(name)
headers = self._client._headers
headers['Accept'] = 'application/binary'
- resp2 = self._http.get2_cmd('{}/{}/{}'.format(self._apiBase, vnfd['_id'], thing))
+ http_code, resp2 = self._http.get2_cmd('{}/{}/{}'.format(self._apiBase, vnfd['_id'], thing))
#print yaml.safe_dump(resp2)
if resp2:
#store in a file