fd53dcd5c722fb4ef04e071a12d7d1f446d80a28
[plcapi.git] / PLC / Methods / GetNodeTags.py
1 #
2 # Thierry Parmentelat - INRIA
3 #
4 # $Revision: 9423 $
5 #
6 from PLC.Faults import *
7 from PLC.Method import Method
8 from PLC.Parameter import Parameter, Mixed
9 from PLC.Filter import Filter
10 from PLC.Auth import Auth
11
12 from PLC.NodeTags import NodeTag, NodeTags
13 from PLC.Sites import Site, Sites
14 from PLC.Nodes import Node, Nodes
15
16 class GetNodeTags(Method):
17     """
18     Returns an array of structs containing details about
19     nodes and related tags.
20
21     If node_tag_filter is specified and is an array of
22     node tag identifiers, only node tags matching
23     the filter will be returned. If return_fields is specified, only
24     the specified details will be returned.
25     """
26
27     roles = ['admin', 'pi', 'user', 'node']
28
29     accepts = [
30         Auth(),
31         Mixed([NodeTag.fields['node_tag_id']],
32               Parameter(int,"Node tag id"),
33               Filter(NodeTag.fields)),
34         Parameter([str], "List of fields to return", nullok = True)
35         ]
36
37     returns = [NodeTag.fields]
38     
39
40     def call(self, auth, node_tag_filter = None, return_fields = None):
41
42         node_tags = NodeTags(self.api, node_tag_filter, return_fields)
43
44         return node_tags