X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FMethods%2FAddNodeToPCU.py;h=ff40541323081a993ec5da67e67ff17cb085575d;hb=594b41a1dfd7525730fb20d7f7ee3593f6f93e96;hp=53789872b27ca499978d188a028d4e67b28e1602;hpb=f8e0c71d96dce99eff25e5bb6bdf941468e897a2;p=plcapi.git diff --git a/PLC/Methods/AddNodeToPCU.py b/PLC/Methods/AddNodeToPCU.py index 5378987..ff40541 100644 --- a/PLC/Methods/AddNodeToPCU.py +++ b/PLC/Methods/AddNodeToPCU.py @@ -3,7 +3,7 @@ from PLC.Method import Method from PLC.Parameter import Parameter, Mixed from PLC.Nodes import Node, Nodes from PLC.PCUs import PCU, PCUs -from PLC.Auth import PasswordAuth +from PLC.Auth import Auth class AddNodeToPCU(Method): """ @@ -18,7 +18,7 @@ class AddNodeToPCU(Method): roles = ['admin', 'pi', 'tech'] accepts = [ - PasswordAuth(), + Auth(), Mixed(Node.fields['node_id'], Node.fields['hostname']), PCU.fields['pcu_id'], @@ -26,28 +26,26 @@ class AddNodeToPCU(Method): ] returns = Parameter(int, '1 if successful') - event_type = 'AddTo' - object_type = 'PCU' - object_ids = [] def call(self, auth, node_id_or_hostname, pcu_id, port): # Get node nodes = Nodes(self.api, [node_id_or_hostname]) if not nodes: raise PLCInvalidArgument, "No such node" + node = nodes[0] - node = nodes.values()[0] + if node['peer_id'] is not None: + raise PLCInvalidArgument, "Not a local node" # Get PCU pcus = PCUs(self.api, [pcu_id]) if not pcus: raise PLCInvalidArgument, "No such PCU" - - pcu = pcus.values()[0] + pcu = pcus[0] if 'admin' not in self.caller['roles']: ok = False - sites = Sites(self.api, self.caller['site_ids']).values() + sites = Sites(self.api, self.caller['site_ids']) for site in sites: if pcu['pcu_id'] in site['pcu_ids']: ok = True @@ -59,10 +57,16 @@ class AddNodeToPCU(Method): if node['node_id'] in pcu['node_ids']: raise PLCInvalidArgument, "Node already controlled by PCU" + if node['site_id'] != pcu['site_id']: + raise PLCInvalidArgument, "Node is at a different site than this PCU" + if port in pcu['ports']: raise PLCInvalidArgument, "PCU port already in use" pcu.add_node(node, port) - self.object_ids = [pcu['pcu_id']] + # Logging variables + self.object_ids = [node['node_id'], pcu['pcu_id']] + self.message = 'Node %d added to pcu %d on port %d' % \ + (node['node_id'], pcu['pcu_id'], port) return 1