add a non-primary interface : user to select for virtual or physical interface (set...
[plewww.git] / planetlab / nodes / interface.php
1 <?php
2
3 // $Id$ 
4
5 // Require login
6 require_once 'plc_login.php';
7
8 // Get session and API handles
9 require_once 'plc_session.php';
10 global $plc, $api;
11
12 // Common functions
13 require_once 'plc_functions.php';
14 require_once 'linetabs.php';
15 require_once 'details.php';
16 require_once 'table.php';
17 require_once 'toggle.php';
18
19 require_once 'plc_drupal.php';
20 include 'plc_header.php';
21
22 // purpose : display, update or add an interface
23
24 // interface:
25 // updating : _GET['id'] :  
26 //      if id is set: display the interface, allows to update/add a new if the user has privileges
27 // adding: _GET['node_id']: 
28 //      otherwise, node_id is needed and the form only allows to add
29
30 if ( isset ($_GET['id'])) {
31   $mode='update';
32   $interface_id=intval($_GET['id']);
33   $interfaces=$api->GetInterfaces(array('interface_id'=>$interface_id));
34   $interface=$interfaces[0];
35   $node_id=$interface['node_id'];
36   $title=('Updating interface ' . $interface['ip']);
37  } else if (isset ($_GET['node_id'])) {
38   $mode='add';
39   $interface=array();
40   $node_id=$_GET['node_id'];
41   $title=('Adding interface');
42  } 
43 // check
44 if ( ! $node_id) {
45   drupal_set_error('Malformed URL in interface.php, need id or node_id');
46   plc_redirect(l_nodes());
47   return;
48  }
49
50 $tabs=array();
51 $tabs[] = array('label'=>'Back to node', 'url'=>l_node($node_id), 
52                 'values' => array('show_details'=>False,'show_interfaces'=>True),
53                 'bubble'=>'Cancel pending changes');
54 plekit_linetabs($tabs);
55
56 $fields=array( 'method', 'type', 'ip', 'gateway', 'network', 'broadcast', 'netmask', 
57                'dns1', 'dns2', 'hostname', 'mac', 'bwlimit', 'node_id' );
58
59 //////////////////////////////
60 $node_columns = array( 'node_id', 'hostname', 'site_id', 'interface_ids' );
61 $nodes= $api->GetNodes( array( intval($node_id) ), $node_columns);
62 $node= $nodes[0];
63 $site_id=$node['site_id'];
64
65 $can_update= plc_is_admin() || ( plc_in_site ($site_id) && ( plc_is_pi() || plc_is_tech()));
66
67 drupal_set_title($title . " on " . $node['hostname']);
68
69 // include javacsript helpers
70 require_once 'prototype.php';
71 drupal_set_html_head ('
72 <script type="text/javascript" src="/planetlab/nodes/interface.js"></script>
73 ');
74
75 $nifty_id = ($mode == 'add' ) ? 'add-interface' : 'interface';
76 $toggle = new PlekitToggle ($nifty_id,"Details",
77                             array('bubble'=>'Display and modify details for that interface',
78                                   'visible'=>get_arg('show_details',true)));
79 $toggle->start();
80
81 $details=new PlekitDetails($can_update);
82
83 // xxx hardwire network type for now
84 $form_variables = array('node_id'=>$node_id,'type'=>"ipv4");
85 if ($mode == "update") $form_variables['interface_id']=$interface_id;
86 $form=$details->form_start(l_actions(),$form_variables,
87                            array('onSubmit'=>'return interfaceSubmit()'));
88
89 $details->start();
90
91 if ($mode == 'add') 
92   // would have preferred 'dhcp' as a default but could not figure how to trigger updateMethodFields on startup
93   $method_default = 'static';
94 else
95   $method_default = $interface['method'];
96 $method_select = $form->select_html ("method",
97                                      interface_method_selectors($api,$method_default,false),
98                                      array('id'=>'method','onChange'=>'updateMethodFields()'));
99 $details->th_td("Method",$method_select,"method",array('input_type'=>'select','value'=>$interface['method']));
100
101 // dont display the 'type' selector as it contains only ipv4
102 //>>> GetNetworkTypes()
103 //[u'ipv4']
104
105 $details->th_td("IP",$interface['ip'],"ip",array('width'=>15,
106                                                  'onKeyup'=>'networkHelper()',
107                                                  'onChange'=>'networkHelper()'));
108 $details->th_td("Netmask",$interface['netmask'],"netmask",array('width'=>15,
109                                                                 'onKeyup'=>'networkHelper()',
110                                                                 'onChange'=>'networkHelper()'));
111 $details->th_td("Network",$interface['network'],"network",array('width'=>15));
112 $details->th_td("Broadcast",$interface['broadcast'],"broadcast",array('width'=>15));
113 $details->th_td("Gateway",$interface['gateway'],"gateway",array('width'=>15,
114                                                                 'onChange'=>'subnetChecker("gateway",false)'));
115 $details->th_td("DNS 1",$interface['dns1'],"dns1",array('width'=>15,
116                                                                 'onChange'=>'subnetChecker("dns1",false)'));
117 $details->th_td("DNS 2",$interface['dns2'],"dns2",array('width'=>15,
118                                                                 'onChange'=>'subnetChecker("dns2",true)'));
119 $details->space();
120 $details->th_td("BW limit (bps)",$interface['bwlimit'],"bwlimit",array('width'=>11));
121 $details->th_td("Hostname",$interface['hostname'],"hostname");
122 $details->th_td("Mac address",$interface['mac'],"mac", array('onChange'=>'macChecker("mac", true)'));
123
124 // the buttons
125 $update_button = $form->submit_html ("update-interface","Update");
126 $add_button = $form->submit_html ("add-interface","Add as new",
127                                   array('onSubmit'=>'interfaceSubmit()'));
128 switch ($mode) {
129  case 'add':
130    // primary interfaces can't be virtual
131    $is_primary = (count($node['interface_ids']) == 0);
132    if ( ! $is_primary) {
133      // default is to create virtual interfaces
134      $details->th_th($form->checkbox_html('is-virtual','yes',array('checked'=>'checked')),
135                      "Virtual Interface");
136      $details->th_td("Interface name","eth0",'ifname');
137      $details->th_td("alias (leave empty if unsure)","",'alias');
138    }
139    $details->tr($add_button,"right");
140    break;
141  case 'update':
142    $details->tr($update_button . "&nbsp" . $add_button,"right");
143    break;
144  }
145
146 $details->end();
147 $form->end();
148 $toggle->end();
149
150 // no tags if the interface has not been created yet
151 if ($mode == 'add') return;
152
153
154 //////////////////////////////////////// tags
155 $tags=$api->GetInterfaceTags (array('interface_id'=>$interface_id));
156 $toggle=new PlekitToggle ('tags',count_english($tags,'tag'),
157                           array('visible'=>get_arg('show_tags',true)));
158 $toggle->start();
159
160 $form = new PlekitForm (l_actions(),array('interface_id'=>$interface_id));
161 $form->start();
162
163 function get_tagname ($tag) { return $tag['tagname'];}
164 $tagnames = array_map ("get_tagname",$tags);
165   
166
167 $headers=array("Name"=>"string",
168                "Value"=>"string",
169                );
170 if ($can_update) $headers[plc_delete_icon()]="none";
171   
172 $table_options=array("notes_area"=>false,"pagesize_area"=>false,"search_width"=>10);
173 $table=new PlekitTable("interface_tags",$headers,0,$table_options);
174 $table->start();
175 if ($tags) foreach ($tags as $tag) {
176   $table->row_start();
177   $table->cell(l_tag_obj($tag));
178   $table->cell($tag['value']);
179   // the remove checkbox
180   if ($can_update) $table->cell ($form->checkbox_html('interface_tag_ids[]',$tag['interface_tag_id']));
181   $table->row_end();
182 }
183   
184 if ($can_update) {
185   $table->tfoot_start();
186
187   // remove tag 
188   $table->row_start();
189   $table->cell($form->submit_html("delete-interface-tags","Remove Tags"),
190                // use the whole columns and right adjust
191                array('hfill'=>true,'align'=>'right'));
192   $table->row_end();
193
194   // set tag area
195   $table->row_start();
196   // get list of tag names in the interface/* category    
197   $all_tags= $api->GetTagTypes( array ("category"=>"interface*"), array("tagname","tag_type_id"));
198   // xxx cannot use onchange=submit() - would need to somehow pass action name 
199   function tag_selector ($tag) { return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']); }
200   $selector=array_map("tag_selector",$all_tags);
201   $table->cell($form->select_html("tag_type_id",$selector,array('label'=>"Choose")));
202   $table->cell($form->text_html("value","",array('width'=>8)));
203   //cell-xxx
204   $table->cell($form->submit_html("set-tag-on-interface","Set Tag"),2,"left");
205   $table->row_end();
206  }
207   
208 $table->end();
209 $form->end();
210 $toggle->end();
211
212 //plekit_linetabs ($tabs,"bottom");
213
214 // Print footer
215 include 'plc_footer.php';
216
217 ?>