refactored registry methods to use the registry manager module
[sfa.git] / sfa / methods / get_gid.py
1 # * require certificate as an argument
2 # * lookup gid in db
3 # * get pubkey from gid
4 # * if certifacate matches pubkey from gid, return gid, else raise exception
5 #  if not peer.is_pubkey(gid.get_pubkey()):
6 #            raise ConnectionKeyGIDMismatch(gid.get_subject())
7
8 from sfa.util.faults import *
9 from sfa.util.method import Method
10 from sfa.util.parameter import Parameter, Mixed
11 from sfa.trust.auth import Auth
12 from sfa.trust.gid import GID
13 from sfa.trust.certificate import Certificate
14 from sfa.util.genitable import GeniTable
15
16 class get_gid(Method):
17     """
18     Returns the client's gid if one exists      
19
20     @param cert certificate string 
21     @return client gid  
22     """
23
24     interfaces = ['registry']
25     
26     accepts = [
27         Parameter(str, "Certificate string"),
28         Parameter(str, "Human readable name (hrn)"), 
29         Parameter(str, "Object type") 
30         ]
31
32     returns = Parameter(str, "GID string")
33     
34     def call(self, cert, hrn, type):
35       
36         self.api.auth.verify_object_belongs_to_me(hrn)
37         certificate = Certificate(string=cert) 
38         table = GeniTable()
39         records = table.find({'hrn': hrn, 'type': type})
40         if not records:
41             raise RecordNotFound(hrn)
42         record = records[0]
43         gidStr = record['gid']
44         gid = GID(string=gidStr)
45          
46         if not certificate.is_pubkey(gid.get_pubkey()):
47             raise ConnectionKeyGIDMismatch(gid.get_subject())
48         
49         return gidStr