Merge from HEAD. Signed off by tmack.
[plcapi.git] / PLC / Methods / AddConfFileToNode.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.ConfFiles import ConfFile, ConfFiles
5 from PLC.Nodes import Node, Nodes
6 from PLC.Auth import Auth
7
8 class AddConfFileToNode(Method):
9     """
10     Adds a configuration file to the specified node. If the node is
11     already linked to the configuration file, no errors are returned.
12
13     Returns 1 if successful, faults otherwise.
14     """
15
16     roles = ['admin']
17
18     accepts = [
19         Auth(),
20         ConfFile.fields['conf_file_id'],
21         Mixed(Node.fields['node_id'],
22               Node.fields['hostname'])
23         ]
24
25     returns = Parameter(int, '1 if successful')
26
27     def call(self, auth, conf_file_id, node_id_or_hostname):
28         # Get configuration file
29         conf_files = ConfFiles(self.api, [conf_file_id])
30         if not conf_files:
31             raise PLCInvalidArgument, "No such configuration file"
32         conf_file = conf_files[0]
33
34         # Get node
35         nodes = Nodes(self.api, [node_id_or_hostname])
36         if not nodes:
37                 raise PLCInvalidArgument, "No such node"
38         node = nodes[0]
39
40         if node['peer_id'] is not None:
41             raise PLCInvalidArgument, "Not a local node"
42         
43         # Link configuration file to node
44         if node['node_id'] not in conf_file['node_ids']:
45             conf_file.add_node(node)
46
47         # Log affected objects
48         self.event_objects = {'ConfFile': [conf_file_id], 
49                               'Node': [node['node_id']] }
50
51         return 1