more detailed info passed when raising an exception
[plcapi.git] / PLC / Methods / AddNodeToNodeGroup.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.NodeGroups import NodeGroup, NodeGroups
5 from PLC.Nodes import Node, Nodes
6 from PLC.Auth import Auth
7
8 class AddNodeToNodeGroup(Method):
9     """
10     Add a node to the specified node group. If the node is
11     already a member of the nodegroup, no errors are returned.
12
13     Returns 1 if successful, faults otherwise.
14     """
15
16     roles = ['admin']
17
18     accepts = [
19         Auth(),
20         Mixed(Node.fields['node_id'],
21               Node.fields['hostname']),
22         Mixed(NodeGroup.fields['nodegroup_id'],
23               NodeGroup.fields['name']),
24         ]
25
26     returns = Parameter(int, '1 if successful')
27
28     event_type = 'AddTo'
29     object_type = 'NodeGroup'
30
31     def call(self, auth, node_id_or_hostname, nodegroup_id_or_name):
32         # Get node info
33         nodes = Nodes(self.api, [node_id_or_hostname])
34         if not nodes:
35                 raise PLCInvalidArgument, "No such node"
36         node = nodes[0]
37
38         # Get nodegroup info
39         nodegroups = NodeGroups(self.api, [nodegroup_id_or_name])
40         if not nodegroups:
41             raise PLCInvalidArgument, "No such nodegroup"
42
43         nodegroup = nodegroups[0]
44         
45         # add node to nodegroup
46         if node['node_id'] not in nodegroup['node_ids']:
47             nodegroup.add_node(node)
48         self.object_ids = [nodegroup['nodegroup_id']]
49
50         return 1