X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FRegister.py;h=619ed00bbaaf86b19ae315b3d945295f93e587c5;hb=57b6a99255d4a88be9c0f910f8524677e34ff4bc;hp=4f5a452ca0e66b03e0c60094927285d90071268b;hpb=1cc10fee55cf95760ade2f6e4dd570d7dd60d969;p=sfa.git diff --git a/sfa/methods/Register.py b/sfa/methods/Register.py index 4f5a452c..619ed00b 100644 --- a/sfa/methods/Register.py +++ b/sfa/methods/Register.py @@ -1,15 +1,5 @@ -### $Id: register.py 16477 2010-01-05 16:31:37Z thierry $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/register.py $ - -from sfa.trust.certificate import Keypair, convert_public_key -from sfa.trust.gid import * -from sfa.util.faults import * from sfa.util.method import Method from sfa.util.parameter import Parameter, Mixed -from sfa.util.record import SfaRecord -from sfa.util.debug import log -from sfa.trust.auth import Auth -from sfa.trust.gid import create_uuid from sfa.trust.credential import Credential class Register(Method): @@ -35,15 +25,15 @@ class Register(Method): returns = Parameter(int, "String representation of gid object") def call(self, record, creds): - + # validate cred valid_creds = self.api.auth.checkCredentials(creds, 'register') + + # verify permissions + hrn = record.get('hrn', '') + self.api.auth.verify_object_permission(hrn) #log the call origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() - - hrn = None - if 'hrn' in record: - hrn = record['hrn'] self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) manager = self.api.get_interface_manager()