X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FMethods%2FAddNodeGroup.py;h=8ea74330942014cf73189a4414f3dd8e8468ad05;hb=58f0088e538ef9fec4a063e6759c5e0a7297a2ae;hp=74ba22272f528b2947bf3bbb2a2910650f1adea5;hpb=fdf4d5908a3345d7765e3927403b14a52d3b0ecf;p=plcapi.git diff --git a/PLC/Methods/AddNodeGroup.py b/PLC/Methods/AddNodeGroup.py index 74ba222..8ea7433 100644 --- a/PLC/Methods/AddNodeGroup.py +++ b/PLC/Methods/AddNodeGroup.py @@ -2,29 +2,39 @@ from PLC.Faults import * from PLC.Method import Method from PLC.Parameter import Parameter, Mixed from PLC.NodeGroups import NodeGroup, NodeGroups -from PLC.Auth import PasswordAuth +from PLC.Auth import Auth + +can_update = lambda (field, value): field in \ + ['name', 'description'] class AddNodeGroup(Method): """ - Adds a new node group. Any values specified in optional_vals are used, - otherwise defaults are used. + Adds a new node group. Any values specified in nodegroup_fields + are used, otherwise defaults are used. Returns the new nodegroup_id (> 0) if successful, faults otherwise. """ roles = ['admin'] + nodegroup_fields = dict(filter(can_update, NodeGroup.fields.items())) + accepts = [ - PasswordAuth(), - NodeGroup.fields['name'], - NodeGroup.fields['description'] + Auth(), + nodegroup_fields ] returns = Parameter(int, 'New nodegroup_id (> 0) if successful') - def call(self, auth, name, description): - # Create node group - nodegroup = NodeGroup(self.api, {'name': name, 'description': description}) + event_type = 'Add' + object_type = 'NodeGroup' + object_ids = [] + + def call(self, auth, nodegroup_fields): + nodegroup_fields = dict(filter(can_update, nodegroup_fields.items())) + nodegroup = NodeGroup(self.api, nodegroup_fields) nodegroup.sync() + self.object_ids = [nodegroup['nodegroup_id']] + return nodegroup['nodegroup_id']