From 09089b7cecf89a0fa3f807c466f774683c29f221 Mon Sep 17 00:00:00 2001 From: Anil-Kumar Vengalil Date: Wed, 3 Feb 2010 10:18:25 +0000 Subject: [PATCH] call traceability for get_credential --- sfa/methods/get_credential.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sfa/methods/get_credential.py b/sfa/methods/get_credential.py index fd3e7bb9..f788eadc 100644 --- a/sfa/methods/get_credential.py +++ b/sfa/methods/get_credential.py @@ -8,6 +8,7 @@ from sfa.util.namespace import * from sfa.util.method import Method from sfa.util.parameter import Parameter, Mixed from sfa.util.debug import log +from sfa.trust.credential import Credential class get_credential(Method): """ @@ -31,12 +32,17 @@ class get_credential(Method): returns = Parameter(str, "String representation of a credential object") - def call(self, cred, type, xrn): + def call(self, cred, type, xrn, origin_hrn=None): if type: hrn = urn_to_hrn(xrn)[0] else: hrn, type = urn_to_hrn(xrn) + #log the call + if not origin_hrn: + origin_hrn = Credential(string=cred).get_gid_caller().get_hrn() + self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) + self.api.auth.check(cred, 'getcredential') self.api.auth.verify_object_belongs_to_me(hrn) -- 2.43.0