Merge remote-tracking branch 'origin/pycurl' into planetlab-4_0-branch
[plcapi.git] / PLC / Methods / AdmAddNodeGroup.py
index 3468cf1..6bbb59e 100644 (file)
@@ -1,43 +1,22 @@
-
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
-from PLC.Nodes import Node, Nodes
 from PLC.NodeGroups import NodeGroup, NodeGroups
-#from PLC.Sites import Site, Sites
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
+from PLC.Methods.AddNodeGroup import AddNodeGroup
 
-class AdmAddNodeGroup(Method):
+class AdmAddNodeGroup(AddNodeGroup):
     """
-    Adds a new node group. Any values specified in optional_vals are used,
-    otherwise defaults are used.
-
-    Returns the new nodegroup_id (> 0) if successful, faults otherwise.
+    Deprecated. See AddNodeGroup.
     """
 
-    roles = ['admin']
+    status = "deprecated"
 
-    can_update = lambda (field, value): field in \
-                 ['name', 'description', 'is_custom']
-    update_fields = dict(filter(can_update, NodeGroup.fields.items()))
-       
     accepts = [
-        PasswordAuth(),
+        Auth(),
         NodeGroup.fields['name'],
-        NodeGroup.fields['description'],
-        update_fields
+        NodeGroup.fields['description']
         ]
 
-    returns = Parameter(int, 'New nodegroup_id (> 0) if successful')
-
-    def call(self, auth, name, description, optional_vals = {}):
-        if filter(lambda field: field not in self.update_fields, optional_vals):
-            raise PLCInvalidArgument, "Invalid fields specified"
-
-       # Create node group
-        node_group = NodeGroup(self.api, optional_vals)
-        node_group['name'] = name
-        node_group['description'] = description
-        node_group.flush()
-
-        return node_group['nodegroup_id']
+    def call(self, auth, name, description):
+        return AddNodeGroup.call(self, auth, {'name': name, 'description': description})