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