Tagging module PLCAPI - PLCAPI-5.0-1
[plcapi.git] / PLC / Methods / GetIlinks.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.Ilinks import Ilink, Ilinks
13 from PLC.Sites import Site, Sites
14 from PLC.Nodes import Node, Nodes
15
16 class GetIlinks(Method):
17     """
18     Returns an array of structs containing details about
19     nodes and related tags.
20
21     If ilink_filter is specified and is an array of
22     ilink identifiers, only ilinks 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([Ilink.fields['ilink_id']],
32               Parameter(int,"ilink id"),
33               Filter(Ilink.fields)),
34         Parameter([str], "List of fields to return", nullok = True)
35         ]
36
37     returns = [Ilink.fields]
38     
39
40     def call(self, auth, ilink_filter = None, return_fields = None):
41
42         ilinks = Ilinks(self.api, ilink_filter, return_fields)
43
44         return ilinks