X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2Fget_trusted_certs.py;h=3cfc51d721b1d7e6148c53cb7252fa3cc6ca1f41;hb=fd395e1944dcd49f10a4d5b27ce4983ad389fb96;hp=c0871a119a9252d0df432bba5d0639cc732ee3f8;hpb=0cf0d31c313a366e3f272f830bdb4f2a7308e11f;p=sfa.git diff --git a/sfa/methods/get_trusted_certs.py b/sfa/methods/get_trusted_certs.py index c0871a11..3cfc51d7 100644 --- a/sfa/methods/get_trusted_certs.py +++ b/sfa/methods/get_trusted_certs.py @@ -1,39 +1,42 @@ -from sfa.util.faults import * from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed +from sfa.util.sfalogging import logger + from sfa.trust.auth import Auth from sfa.trust.credential import Credential +from sfa.storage.parameter import Parameter, Mixed + + class get_trusted_certs(Method): """ @param cred credential string specifying the rights of the caller - @return list of gid strings + @return list of gid strings """ interfaces = ['registry', 'aggregate', 'slicemgr'] - + accepts = [ Mixed(Parameter(str, "Credential string"), Parameter(None, "Credential not specified")) - ] + ] returns = Parameter(type([str]), "List of GID strings") - - def call(self, cred = None): + + def call(self, cred=None): # If cred is not specified just return the gid for this interface. # This is true when when a peer is attempting to initiate federation - # with this interface - sfaloging.logger.debug("get_trusted_certs: %r"%cred) + # with this interface + logger.debug("get_trusted_certs: %r" % cred) if not cred: gid_strings = [] for gid in self.api.auth.trusted_cert_list: if gid.get_hrn() == self.api.config.SFA_INTERFACE_HRN: - gid_strings.append(gid.save_to_string(save_parents=True)) + gid_strings.append(gid.save_to_string(save_parents=True)) return gid_strings # authenticate the cred self.api.auth.check(cred, 'gettrustedcerts') - gid_strings = [gid.save_to_string(save_parents=True) for \ - gid in self.api.auth.trusted_cert_list] - - return gid_strings + gid_strings = [gid.save_to_string(save_parents=True) for + gid in self.api.auth.trusted_cert_list] + + return gid_strings