X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=sfa%2Fmethods%2FRemove.py;h=413d140c87dcc64864e350f0b6bee296761150b5;hp=f13c95df5afc24185c095f5d47dccc7dbf8914a2;hb=HEAD;hpb=3109c266ca3a5df2364e52502479adcc2f995d68 diff --git a/sfa/methods/Remove.py b/sfa/methods/Remove.py index f13c95df..413d140c 100644 --- a/sfa/methods/Remove.py +++ b/sfa/methods/Remove.py @@ -1,51 +1,47 @@ -### $Id: remove.py 16497 2010-01-07 03:33:24Z tmack $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/remove.py $ - -from sfa.util.faults import * -from sfa.util.namespace import urn_to_hrn +from sfa.util.xrn import Xrn from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed +from sfa.util.sfalogging import logger + from sfa.trust.credential import Credential +from sfa.storage.parameter import Parameter, Mixed + + class Remove(Method): """ Remove an object from the registry. If the object represents a PLC object, then the PLC records will also be removed. - + @param cred credential string @param type record type @param xrn human readable name of record to remove (hrn or urn) - @return 1 if successful, faults otherwise + @return 1 if successful, faults otherwise """ interfaces = ['registry'] - + accepts = [ Parameter(str, "Human readable name of slice to instantiate (hrn or urn)"), Mixed(Parameter(str, "Credential string"), Parameter(type([str]), "List of credentials")), Mixed(Parameter(str, "Record type"), Parameter(None, "Type not specified")), - ] + ] returns = Parameter(int, "1 if successful") - + def call(self, xrn, creds, type): - if not type: - hrn = urn_to_hrn(xrn)[0] - else: - hrn, type = urn_to_hrn(xrn) - + xrn = Xrn(xrn, type=type) + # validate the cred valid_creds = self.api.auth.checkCredentials(creds, "remove") - 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)) - + self.api.auth.verify_object_permission(xrn.get_hrn()) - manager = self.api.get_interface_manager() + # log the call + origin_hrn = Credential( + string=valid_creds[0]).get_gid_caller().get_hrn() + logger.info("interface: %s\tmethod-name: %s\tcaller-hrn: %s\ttarget-urn: %s" % ( + self.api.interface, self.name, origin_hrn, xrn.get_urn())) - return manager.remove(self.api, xrn, type) + return self.api.manager.Remove(self.api, xrn)