Add notification plugin support to AddSliceToNodes and DeleteSliceFromNodes
[plcapi.git] / PLC / Methods / AddSliceToNodes.py
index 0601ac5..a7124d8 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -7,6 +5,7 @@ from PLC.Nodes import Node, Nodes
 from PLC.Slices import Slice, Slices
 from PLC.Persons import Person, Persons
 from PLC.Auth import Auth
+from PLC.Plugins import PluginManager
 
 class AddSliceToNodes(Method):
     """
@@ -50,11 +49,12 @@ class AddSliceToNodes(Method):
                 raise PLCPermissionDenied, "Specified slice not associated with any of your sites"
 
         # Get specified nodes, add them to the slice
-        nodes = Nodes(self.api, node_id_or_hostname_list, ['node_id', 'hostname', 'slice_ids', 'slice_ids_whitelist', 'site_id'])
+        nodes = Nodes(self.api, node_id_or_hostname_list, 
+                      ['node_id', 'hostname', 'slice_ids', 'slice_ids_whitelist', 'site_id'])
 
         for node in nodes:
             # check the slice whitelist on each node first
-            # allow  users at site to add node to slice, ignoring whitelist
+            # allow users at site to add node to slice, ignoring whitelist
             if node['slice_ids_whitelist'] and \
                slice['slice_id'] not in node['slice_ids_whitelist'] and \
                not set(self.caller['site_ids']).intersection([node['site_id']]):
@@ -70,4 +70,6 @@ class AddSliceToNodes(Method):
                               'Slice': [slice['slice_id']]}
         self.message = 'Slice %d added to nodes %s' % (slice['slice_id'], nodeids)
 
+        PluginManager(self.api, auth).notify("slice.AddToNodes", self.event_objects)
+
         return 1