summaryrefslogtreecommitdiffstats
path: root/moonclient/moonclient/action_categories.py
diff options
context:
space:
mode:
authorWuKong <rebirthmonkey@gmail.com>2015-07-01 09:01:11 +0200
committerWuKong <rebirthmonkey@gmail.com>2015-07-01 09:01:11 +0200
commit96b35f38008c73c70fb598d29515a4cce5e48edc (patch)
treed24795c0a917ec7dab59389f5fce8cdfb9c85dfc /moonclient/moonclient/action_categories.py
parent03bf0c32a0c656d4b91bebedc87a005e6d7563bb (diff)
migrate moonclient from github to opnfv
Change-Id: I024ad1136f50d1c2898d30e05be48131d02b6932 Signed-off-by: WuKong <rebirthmonkey@gmail.com>
Diffstat (limited to 'moonclient/moonclient/action_categories.py')
-rw-r--r--moonclient/moonclient/action_categories.py99
1 files changed, 99 insertions, 0 deletions
diff --git a/moonclient/moonclient/action_categories.py b/moonclient/moonclient/action_categories.py
new file mode 100644
index 00000000..33875f56
--- /dev/null
+++ b/moonclient/moonclient/action_categories.py
@@ -0,0 +1,99 @@
+# Copyright 2015 Open Platform for NFV Project, Inc. and its contributors
+# This software is distributed under the terms and conditions of the 'Apache-2.0'
+# license which can be found in the file 'LICENSE' in this package distribution
+# or at 'http://www.apache.org/licenses/LICENSE-2.0'.
+
+import logging
+
+from cliff.lister import Lister
+from cliff.command import Command
+
+
+class ActionCategoriesList(Lister):
+ """List all Intra_Extensions."""
+
+ log = logging.getLogger(__name__)
+
+ def get_parser(self, prog_name):
+ parser = super(ActionCategoriesList, self).get_parser(prog_name)
+ parser.add_argument(
+ '--intraextension',
+ metavar='<intraextension-uuid>',
+ help='IntraExtension UUID',
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ if not parsed_args.intraextension:
+ parsed_args.intraextension = self.app.intraextension
+ data = self.app.get_url("/v3/OS-MOON/intra_extensions/{}/action_categories".format(parsed_args.intraextension),
+ authtoken=True)
+ if "action_categories" not in data:
+ raise Exception("Error in command {}: {}".format("ActionCategoriesList", data))
+ return (
+ ("action_categories",),
+ ((_uuid, ) for _uuid in data["action_categories"])
+ )
+
+
+class ActionCategoriesAdd(Command):
+ """List all Intra_Extensions."""
+
+ log = logging.getLogger(__name__)
+
+ def get_parser(self, prog_name):
+ parser = super(ActionCategoriesAdd, self).get_parser(prog_name)
+ parser.add_argument(
+ 'action_category',
+ metavar='<action_category-uuid>',
+ help='Action UUID',
+ )
+ parser.add_argument(
+ '--intraextension',
+ metavar='<intraextension-uuid>',
+ help='IntraExtension UUID',
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ if not parsed_args.intraextension:
+ parsed_args.intraextension = self.app.intraextension
+ data = self.app.get_url("/v3/OS-MOON/intra_extensions/{}/action_categories".format(parsed_args.intraextension),
+ post_data={"action_category_id": parsed_args.action_category},
+ authtoken=True)
+ if "action_categories" not in data:
+ raise Exception("Error in command {}".format(data))
+ return (
+ ("action_categories",),
+ ((_uuid, ) for _uuid in data["action_categories"])
+ )
+
+
+class ActionCategoriesDelete(Command):
+ """List all Intra_Extensions."""
+
+ log = logging.getLogger(__name__)
+
+ def get_parser(self, prog_name):
+ parser = super(ActionCategoriesDelete, self).get_parser(prog_name)
+ parser.add_argument(
+ 'action_category',
+ metavar='<action_category-uuid>',
+ help='Action UUID',
+ )
+ parser.add_argument(
+ '--intraextension',
+ metavar='<intraextension-uuid>',
+ help='IntraExtension UUID',
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ if not parsed_args.intraextension:
+ parsed_args.intraextension = self.app.intraextension
+ self.app.get_url("/v3/OS-MOON/intra_extensions/{}/action_categories/{}".format(
+ parsed_args.intraextension,
+ parsed_args.action_category
+ ),
+ method="DELETE",
+ authtoken=True) \ No newline at end of file