04e5d3b486f404a7778fa6084d2f021a22d9c652
[plcapi.git] / PLC / Methods / AddSliceToNodes.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.Nodes import Node, Nodes
5 from PLC.Slices import Slice, Slices
6 from PLC.Auth import Auth
7
8 class AddSliceToNodes(Method):
9     """
10     Adds the specified slice to the specified nodes. Nodes may be
11     either local or foreign nodes.
12
13     If the slice is already associated with a node, no errors are
14     returned.
15
16     Returns 1 if successful, faults otherwise.
17     """
18
19     roles = ['admin', 'pi', 'user']
20
21     accepts = [
22         Auth(),
23         Mixed(Slice.fields['slice_id'],
24               Slice.fields['name']),
25         [Mixed(Node.fields['node_id'],
26                Node.fields['hostname'])]
27         ]
28
29     returns = Parameter(int, '1 if successful')
30
31
32     def call(self, auth, slice_id_or_name, node_id_or_hostname_list):
33         # Get slice information
34         slices = Slices(self.api, [slice_id_or_name])
35         if not slices:
36             raise PLCInvalidArgument, "No such slice"
37         slice = slices[0]
38
39         if slice['peer_id'] is not None:
40             raise PLCInvalidArgument, "Not a local slice"
41
42         if 'admin' not in self.caller['roles']:
43             if self.caller['person_id'] in slice['person_ids']:
44                 pass
45             elif 'pi' not in self.caller['roles']:
46                 raise PLCPermissionDenied, "Not a member of the specified slice"
47             elif slice['site_id'] not in self.caller['site_ids']:
48                 raise PLCPermissionDenied, "Specified slice not associated with any of your sites"
49         
50         # Get specified nodes, add them to the slice         
51         nodes = Nodes(self.api, node_id_or_hostname_list)
52         for node in nodes:
53             if slice['slice_id'] not in node['slice_ids']:
54                 slice.add_node(node, commit = False)
55
56         slice.sync()
57
58         self.object_ids = [node['node_id'] for node in nodes]
59
60         return 1