remove request_hash argument
[sfa.git] / sfa / methods / get_credential.py
1 ### $Id$
2 ### $URL$
3
4 from sfa.trust.credential import *
5 from sfa.trust.rights import *
6 from sfa.util.faults import *
7 from sfa.util.method import Method
8 from sfa.util.parameter import Parameter, Mixed
9 from sfa.trust.auth import Auth
10 from sfa.trust.gid import GID
11 from sfa.util.record import GeniRecord
12 from sfa.util.genitable import *
13 from sfa.util.debug import log
14
15 class get_credential(Method):
16     """
17     Retrive a credential for an object
18     If cred == Nonee then the behavior reverts to get_self_credential
19
20     @param cred credential object specifying rights of the caller
21     @param type type of object (user | slice | sa | ma | node)
22     @param hrn human readable name of object
23
24     @return the string representation of a credential object  
25     """
26
27     interfaces = ['registry']
28     
29     accepts = [
30         Mixed(Parameter(str, "credential"),
31               Parameter(None, "No credential")),  
32         Parameter(str, "Human readable name (hrn)")
33         ]
34
35     returns = Parameter(str, "String representation of a credential object")
36
37     def call(self, cred, type, hrn):
38
39         self.api.auth.check(cred, 'getcredential')
40         self.api.auth.verify_object_belongs_to_me(hrn)
41         auth_hrn = self.api.auth.get_authority(hrn)
42
43         # Is this a root or sub authority 
44         if not auth_hrn or hrn == self.api.config.SFA_INTERFACE_HRN:
45             auth_hrn = hrn
46
47         # get record info
48         auth_info = self.api.auth.get_auth_info(auth_hrn)
49         table = GeniTable()
50         records = table.find({'type': type, 'hrn': hrn})
51         if not records:
52             raise RecordNotFound(hrn)
53         record = records[0]
54         
55         # verify_cancreate_credential requires that the member lists
56         # (researchers, pis, etc) be filled in
57         self.api.fill_record_info(record)
58
59         caller_hrn = self.api.auth.client_cred.get_gid_caller().get_hrn()
60         object_hrn = self.api.auth.client_cred.get_gid_object().get_hrn()
61         rights = self.api.auth.determine_user_rights(caller_hrn, record)
62         # make sure caller has rights to this object
63         if rights.is_empty():
64             raise PermissionError(object_hrn + " has no rights to " + record['name'])
65         
66         gid = record['gid']
67         gid_object = GID(string=gid)
68         new_cred = Credential(subject = gid_object.get_subject())
69         new_cred.set_gid_caller(self.api.auth.client_gid)
70         new_cred.set_gid_object(gid_object)
71         new_cred.set_issuer(key=auth_info.get_pkey_object(), subject=auth_hrn)
72         new_cred.set_pubkey(gid_object.get_pubkey())
73         new_cred.set_privileges(rights)
74         new_cred.set_delegate(True)
75
76         auth_kind = "authority,ma,sa"
77         new_cred.set_parent(self.api.auth.hierarchy.get_auth_cred(auth_hrn, kind=auth_kind))
78
79         new_cred.encode()
80         new_cred.sign()
81
82         return new_cred.save_to_string(save_parents=True)
83