fixed up the names of new site names/slices to be more PLC compatible
[sfa.git] / sfa / methods / get_gids.py
index 444cd98..c54af0a 100644 (file)
@@ -1,20 +1,12 @@
-# * require certificate as an argument
-# * lookup gid in db
-# * get pubkey from gid
-# * if certifacate matches pubkey from gid, return gid, else raise exception
-#  if not peer.is_pubkey(gid.get_pubkey()):
-#            raise ConnectionKeyGIDMismatch(gid.get_subject())
-
 from sfa.util.faults import *
 from sfa.util.method import Method
 from sfa.util.parameter import Parameter, Mixed
-from sfa.trust.auth import Auth
-from sfa.trust.gid import GID
-from sfa.trust.certificate import Certificate
-from sfa.util.genitable import GeniTable
+from sfa.methods.GetGids import GetGids
 
-class get_gids(Method):
+class get_gids(GetGids):
     """
+    Deprecated. Use GetGids instead.
+
     Get a list of record information (hrn, gid and type) for 
     the specified hrns.
 
@@ -27,18 +19,12 @@ class get_gids(Method):
     
     accepts = [
         Parameter(str, "Certificate string"),
-        Mixed(Parameter(str, "Human readable name (hrn)"), 
-              Parameter(type([str]), "List of Human readable names (hrn)")) 
+        Mixed(Parameter(str, "Human readable name (hrn or xrn)"), 
+              Parameter(type([str]), "List of Human readable names (hrn or xrn)")) 
         ]
 
     returns = [Parameter(dict, "Dictionary of gids keyed on hrn")]
     
-    def call(self, cred, hrns):
-        # validate the credential
-        self.api.auth.check(cred, 'getgids')
-        table = GeniTable()
-        if not isinstance(hrns, list):
-            hrns = [hrns]
-        records = table.find({'hrn': hrns}, columns=['hrn','type','gid'])
+    def call(self, cred, xrns):
         
-        return records 
+        return GetGids.call(self, xrns, cred)