81c5e081f2e674c5976c1d9e3ff6aeb67444b101
[sfa.git] / geni / methods / list.py
1 from geni.util.faults import *
2 from geni.util.excep import *
3 from geni.util.method import Method
4 from geni.util.parameter import Parameter, Mixed
5 from geni.util.auth import Auth
6 from geni.util.record import GeniRecord
7 from geni.registry import Registries
8
9 class list(Method):
10     """
11     List the records in an authority. 
12
13     @param cred credential string specifying the rights of the caller
14     @param hrn human readable name of authority to list
15     @return list of record dictionaries         
16     """
17
18     interfaces = ['registry']
19     
20     accepts = [
21         Parameter(str, "Credential string"),
22         Parameter(str, "Human readable name (hrn)")
23         ]
24
25     returns = [GeniRecord]
26     
27     def call(self, cred, hrn):
28         
29         self.api.auth.check(cred, 'list')
30         try:
31             if not self.api.auth.hierarchy.auth_exists(hrn):
32                 raise MissingAuthority(hrn)
33             table = self.api.auth.get_auth_table(hrn)   
34             records = table.list()
35         except MissingAuthority:
36             # is this a foreign authority
37             registries = Registries(self.api)
38             credential = self.api.getCredential()
39             for registry in registries:
40                 if hrn.startswith(registry) and registry not in [self.api.hrn]:
41                     records = registries[registry].list(credential, hrn)
42                     return records
43         
44         return records