taking out debug lines from the previous commit
[sfa.git] / sfa / methods / get_slices.py
1 ### $Id$
2 ### $URL$
3
4 from sfa.util.faults import *
5 from sfa.util.misc import *
6 from sfa.util.method import Method
7 from sfa.util.parameter import Parameter, Mixed
8 from sfa.trust.auth import Auth
9 from sfa.plc.slices import Slices
10 from sfa.trust.credential import Credential
11
12 class get_slices(Method):
13     """
14     Get a list of instantiated slices at this authority.      
15
16     @param cred credential string specifying the rights of the caller
17     @return list of human readable slice names (hrn).  
18     """
19
20     interfaces = ['aggregate', 'slicemgr']
21     
22     accepts = [
23         Parameter(str, "Credential string"),
24         Mixed(Parameter(str, "Request hash"),
25               Parameter(None, "Request hash not specified")),
26         Parameter(str, "Callers credential string")
27         ]
28
29     returns = [Parameter(str, "Human readable slice name (hrn)")]
30     
31     def call(self, cred, request_hash=None, caller_cred=None):
32         self.api.auth.authenticateCred(cred, [cred], request_hash) 
33         self.api.auth.check(cred, 'listslices')
34         if caller_cred==None:
35            caller_cred=cred
36         
37         #log the call
38         self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, Credential(string=caller_cred).get_gid_caller().get_hrn(), None, self.name))
39         slices = Slices(self.api)
40         slices.refresh()
41         return slices['hrn']