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