shouldn't specify an hrn when validating credentials for this operation
[sfa.git] / sfa / methods / GetCredential.py
1 ### $Id: get_credential.py 17576 2010-04-05 20:56:15Z tmack $
2 ### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/get_credential.py $
3
4 from sfa.trust.credential import *
5 from sfa.trust.rights import *
6 from sfa.util.faults import *
7 from sfa.util.namespace import *
8 from sfa.util.method import Method
9 from sfa.util.parameter import Parameter, Mixed
10 from sfa.util.debug import log
11 from sfa.trust.credential import Credential
12
13 class GetCredential(Method):
14     """
15     Retrive a credential for an object
16     If cred == Nonee then the behavior reverts to get_self_credential
17
18     @param hrn human readable name of object (hrn or urn)
19     @param cred credential object specifying rights of the caller
20     @param type type of object (user | slice | node | authority )
21
22     @return the string representation of a credential object  
23     """
24
25     interfaces = ['registry']
26     
27     accepts = [
28         Mixed(Parameter(str, "Credential string"),
29               Parameter(type([str]), "List of credentials")), 
30         Parameter(str, "Human readable name (hrn or urn)"),
31         Parameter(str, "Object type")
32         ]
33
34     returns = Parameter(str, "String representation of a credential object")
35
36     def call(self, creds, xrn, type):
37     
38         if type:
39             hrn = urn_to_hrn(xrn)[0]
40         else:
41             hrn, type = urn_to_hrn(xrn)
42
43         # check creds
44         valid_creds = self.api.auth.checkCredentials(creds, 'getcredential')
45         self.api.auth.verify_object_belongs_to_me(hrn)
46
47         #log the call
48         origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn()
49         self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) 
50
51         manager = self.api.get_interface_manager()
52         
53         return manager.get_credential(self.api, xrn, type)
54