X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FRegister.py;h=e95d60fa371c78fc9117bb4bf4045e43b90f8a70;hb=fd395e1944dcd49f10a4d5b27ce4983ad389fb96;hp=87f9a0f8c0aecbdec0de04b65f1e81d9ee58b0ff;hpb=9b9ffbbb64ae96d969005cffd1d65aa993731f56;p=sfa.git diff --git a/sfa/methods/Register.py b/sfa/methods/Register.py index 87f9a0f8..e95d60fa 100644 --- a/sfa/methods/Register.py +++ b/sfa/methods/Register.py @@ -1,41 +1,45 @@ from sfa.util.method import Method +from sfa.util.sfalogging import logger from sfa.trust.credential import Credential from sfa.storage.parameter import Parameter, Mixed + class Register(Method): """ Register an object with the registry. In addition to being stored in the SFA database, the appropriate records will also be created in the PLC databases - + @param cred credential string @param record_dict dictionary containing record fields - + @return gid string representation """ interfaces = ['registry'] - + accepts = [ Parameter(dict, "Record dictionary containing record fields"), Mixed(Parameter(str, "Credential string"), Parameter(type([str]), "List of credentials")), - ] + ] returns = Parameter(int, "String representation of gid object") - + def call(self, record, creds): - # validate cred + # 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() - self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) - + # log the call + origin_hrn = Credential( + string=valid_creds[0]).get_gid_caller().get_hrn() + logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s" % + (self.api.interface, origin_hrn, hrn, self.name)) + return self.api.manager.Register(self.api, record)