summaryrefslogtreecommitdiffstats
path: root/moonclient/moonclient/subject_scopes.py
blob: 90cc5dccdb295a523b1c4cf478eb61c336241a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# 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 SubjectScopesList(Lister):
    """List all subject scopes."""

    log = logging.getLogger(__name__)

    def get_parser(self, prog_name):
        parser = super(SubjectScopesList, self).get_parser(prog_name)
        parser.add_argument(
            'subject_category_id',
            metavar='<subject-category-uuid>',
            help='Subject category 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(self.app.url_prefix+"/intra_extensions/{}/subject_scopes/{}".format(
            parsed_args.intraextension,
            parsed_args.subject_category_id),
            authtoken=True)
        return (
            ("id", "name", "description"),
            ((_id, data[_id]["name"], data[_id]["description"]) for _id in data)
        )


class SubjectScopesAdd(Command):
    """Add a new subject scope."""

    log = logging.getLogger(__name__)

    def get_parser(self, prog_name):
        parser = super(SubjectScopesAdd, self).get_parser(prog_name)
        parser.add_argument(
            'subject_category_id',
            metavar='<subject-category-uuid>',
            help='Subject category UUID',
        )
        parser.add_argument(
            'subject_scope_name',
            metavar='<subject-scope-str>',
            help='Subject scope Name',
        )
        parser.add_argument(
            '--description',
            metavar='<description-str>',
            help='Description',
        )
        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(self.app.url_prefix+"/intra_extensions/{}/subject_scopes/{}".format(
            parsed_args.intraextension, parsed_args.subject_category_id),
            post_data={
                "subject_scope_name": parsed_args.subject_scope_name,
                "subject_scope_description": parsed_args.description,
            },
            authtoken=True)
        return (
            ("id", "name", "description"),
            ((_id, data[_id]["name"], data[_id]["description"]) for _id in data)
        )


class SubjectScopesDelete(Command):
    """Delete a subject scope."""

    log = logging.getLogger(__name__)

    def get_parser(self, prog_name):
        parser = super(SubjectScopesDelete, self).get_parser(prog_name)
        parser.add_argument(
            'subject_category_id',
            metavar='<subject-category-uuid>',
            help='Subject category  UUID',
        )
        parser.add_argument(
            'subject_scope_id',
            metavar='<subject-scope-uuid>',
            help='Subject scope 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(self.app.url_prefix+"/intra_extensions/{}/subject_scopes/{}/{}".format(
            parsed_args.intraextension,
            parsed_args.subject_category_id,
            parsed_args.subject_scope_id
        ),
            method="DELETE",
            authtoken=True
        )