6b1e785048c63ce09bddddd954866551bbe26816
[sfa.git] / sfa / methods / ListResources.py
1 import zlib
2
3 from sfa.util.xrn import urn_to_hrn
4 from sfa.util.method import Method
5 from sfa.util.parameter import Parameter, Mixed
6 from sfa.trust.credential import Credential
7 from sfa.util.sfatablesRuntime import run_sfatables
8
9 class ListResources(Method):
10     """
11     Returns information about available resources or resources allocated to this slice
12     @param credential list
13     @param options dictionary
14     @return string
15     """
16     interfaces = ['aggregate', 'slicemgr']
17     accepts = [
18         Mixed(Parameter(str, "Credential string"), 
19               Parameter(type([str]), "List of credentials")),
20         Parameter(dict, "Options")
21         ]
22     returns = Parameter(str, "List of resources")
23
24     def call(self, creds, options={}):
25         self.api.logger.info("interface: %s\tmethod-name: %s" % (self.api.interface, self.name))
26         
27         # get slice's hrn from options    
28         xrn = options.get('geni_slice_urn', '')
29         (hrn, _) = urn_to_hrn(xrn)
30
31         # Find the valid credentials
32         valid_creds = self.api.auth.checkCredentials(creds, 'listnodes', hrn)
33
34         # get hrn of the original caller 
35         origin_hrn = options.get('origin_hrn', None)
36         if not origin_hrn:
37             origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn()
38         rspec = self.api.manager.ListResources(self.api, creds, options)
39
40         # filter rspec through sfatables 
41         if self.api.interface in ['aggregate']:
42             chain_name = 'OUTGOING'
43         elif self.api.interface in ['slicemgr']: 
44             chain_name = 'FORWARD-OUTGOING'
45         self.api.logger.debug("ListResources: sfatables on chain %s"%chain_name)
46         filtered_rspec = run_sfatables(chain_name, hrn, origin_hrn, rspec) 
47  
48         if options.has_key('geni_compressed') and options['geni_compressed'] == True:
49             filtered_rspec = zlib.compress(filtered_rspec).encode('base64')
50
51         return filtered_rspec  
52     
53