662d7fdd62c1db2136e4cf5d3aec5ac6be0c517e
[plcapi.git] / PLC / Methods / AddInterface.py
1 # $Id$
2 from PLC.Faults import *
3 from PLC.Auth import Auth
4 from PLC.Method import Method
5 from PLC.Parameter import Parameter, Mixed
6 from PLC.Table import Row
7
8 from PLC.Nodes import Node, Nodes
9 from PLC.Interfaces import Interface, Interfaces
10 from PLC.TagTypes import TagTypes
11 from PLC.InterfaceTags import InterfaceTags
12 from PLC.Methods.AddInterfaceTag import AddInterfaceTag
13 from PLC.Methods.UpdateInterfaceTag import UpdateInterfaceTag
14
15 can_update = ['interface_id', 'node_id']
16
17 class AddInterface(Method):
18     """
19
20     Adds a new network for a node. Any values specified in
21     interface_fields are used, otherwise defaults are
22     used. 
23
24     If type is static, then ip, gateway, network, broadcast, netmask,
25     and dns1 must all be specified in interface_fields. If type is
26     dhcp, these parameters, even if specified, are ignored.
27
28     PIs and techs may only add interfaces to their own nodes. Admins may
29     add interfaces to any node.
30
31     Returns the new interface_id (> 0) if successful, faults otherwise.
32     """
33
34     roles = ['admin', 'pi', 'tech']
35
36     accepted_fields = Row.accepted_fields(can_update, [Interface.fields,Interface.tags], exclude=True)
37
38     accepts = [
39         Auth(),
40         Mixed(Node.fields['node_id'],
41               Node.fields['hostname']),
42         accepted_fields
43         ]
44
45     returns = Parameter(int, 'New interface_id (> 0) if successful')
46
47     
48     def call(self, auth, node_id_or_hostname, interface_fields):
49
50         interface_fields = Row.check_fields (interface_fields, self.accepted_fields)
51
52         [native,tags,rejected]=Row.split_fields(interface_fields,[Interface.fields,Interface.tags])
53         if rejected:
54             raise PLCInvalidArgument, "Cannot add Interface with column(s) %r"%rejected
55
56         # Check if node exists
57         nodes = Nodes(self.api, [node_id_or_hostname])
58         if not nodes:
59             raise PLCInvalidArgument, "No such node %r"%node_id_or_hostname
60         node = nodes[0]
61
62         # Authenticated function
63         assert self.caller is not None
64
65         # If we are not an admin, make sure that the caller is a
66         # member of the site where the node exists.
67         if 'admin' not in self.caller['roles']:
68             if node['site_id'] not in self.caller['site_ids']:
69                 raise PLCPermissionDenied, "Not allowed to add an interface to the specified node"
70
71         # Add interface
72         interface = Interface(self.api, native)
73         interface['node_id'] = node['node_id']
74         # if this is the first interface, make it primary
75         if not node['interface_ids']:
76                 interface['is_primary'] = True
77         interface.sync()
78         
79         # Logging variables
80         self.object_objects = { 'Node': [node['node_id']], 
81                                 'Interface' : [interface['interface_id']] }
82         self.message = "Interface %d added" % interface['interface_id']
83
84         for (tagname,value) in tags.iteritems():
85             # the tagtype instance is assumed to exist, just check that
86             if not TagTypes(self.api,{'tagname':tagname}):
87                 raise PLCInvalidArgument,"No such TagType %s"%tagname
88             interface_tags=InterfaceTags(self.api,{'tagname':tagname,'interface_id':interface['interface_id']})
89             if not interface_tags:
90                 AddInterfaceTag(self.api).__call__(auth,interface['interface_id'],tagname,value)
91             else:
92                 UpdateInterfaceTag(self.api).__call__(auth,interface_tags[0]['interface_tag_id'],value)
93
94         return interface['interface_id']