a0fffcd814d72b76e0327c291449e2124c91c3be
[plewww.git] / planetlab / sites / pcu.php
1 <?php
2
3 // Require login
4 require_once 'plc_login.php';
5
6 // Get session and API handles
7 require_once 'plc_session.php';
8 global $plc, $api, $adm;
9
10 // Print header
11 require_once 'plc_drupal.php';
12 // set default
13 drupal_set_title('Sites');
14 include 'plc_header.php';
15
16 // Common functions
17 require_once 'plc_functions.php';
18
19 // find person roles
20 $_person= $plc->person;
21 $_roles= $_person['role_ids'];
22
23
24 // if no id: add, else: display(update)
25 if( !$_GET['id'] ) {
26   if( $_POST['submitted'] ) {
27     // get person's site id
28     $site_id= $_person['site_ids'][0];
29     
30     // build dict
31     $fields= array( 'protocol'=>$_POST['protocol'], 'hostname'=>$_POST['hostname'], 'model'=>$_POST['model'], 'username'=>$_POST['username'], 'password'=>$_POST['password'], 'notes'=>$_POST['notes'], 'ip'=>$_POST['ip'] );
32     
33     $pcu_id= $api->AddPCU( $site_id, $fields );
34     
35     if( $pcu_id != 0 ) {
36       // xxx is l_pcu defined & effective ?
37       plc_redirect( l_pcu($pcu_id));
38       exit();
39     } else {
40       $error= $api->error();
41     }
42   }
43   
44   if( !empty( $error ) )
45     echo '<div class="plc-warning">' . $error . '.</div>';
46   
47   echo "<h3>Add a PCU</h3>\n
48 <form action='/db/sites/pcu.php' method=post>\n
49 <p><table border=0 cellpadding=3><tbody>\n
50 <tr><th>Protocol: </th><td><input type=text name='protocol' value=''></td></tr>\n
51 <tr><th>Hostname: </th><td><input type=text name='hostname' size=40 value=''></td></tr>\n
52 <tr><th>IP Address: </th><td><input type=text name='ip' size=40 value=''></td></tr>\n
53 <tr><th>Model: </th><td><input type=text name='model' value=''></td></tr>\n
54 <tr><th>Username: </th><td><input type=text name='username' value=''></td></tr>\n
55 <tr><th>Password: </th><td><input type=text name='password' value=''></td></tr>\n
56 <tr><th>Notes: </th><td><input type=text name='notes' size=40 value=''></td></tr>\n
57 </tbody></table>\n
58 <br /><p><input type=submit name='submitted' value='Add New PCU'>\n";
59 } else {
60   // get PCU info
61   $pcu_id= intval( $_GET['id'] );
62   $pcu_info= $api->GetPCUs( array( intval( $pcu_id ) ) );
63   
64   // if remove is set remove the node from the pcu
65   if( $_GET['remove'] ) {
66     $rem_id= $_GET['remove'];
67     
68     $api->DeleteNodeFromPCU( intval( $rem_id ), $pcu_id );
69     
70     plc_redirect (l_pcu ($pcu_id));
71     
72   }
73   
74   //if submitted, update node info
75   if( $_POST['submitted'] ) {
76     $protocol= $_POST['protocol'];
77     $username= $_POST['username'];
78     $hostname= $_POST['hostname'];
79     $ipaddress= $_POST['ip'];
80     $model= $_POST['model'];
81     $password= $_POST['password'];
82     $notes= $_POST['notes'];
83     
84     $api->UpdatePCU( $pcu_id, array( "protocol"=>$protocol, "hostname"=>$hostname, "model"=>$model, "password"=>$password, "notes"=>$notes, "ip"=>$ipaddress ) );
85                 
86     plc_redirect (l_pcu($pcu_id));
87                 
88   }
89         
90   if( in_array( 10, $_roles ) || ( in_array( 20, $_roles ) && in_array( $pcu_info[0]['site_id'], $_person['site_ids'] ) ) || ( in_array( 40, $_roles ) && in_array( $pcu_info[0]['site_id'], $_person['site_ids'] ) ) )
91     $pcu_controller= true;
92
93   // get PCU node info
94   $node_info= $api->GetNodes( $pcu_info[0]['node_ids'], array( "hostname", "node_id", "boot_state" ) );
95   echo "<form action='/db/sites/pcu.php?id=$pcu_id' method=post>\n
96 <h3>PCU: ". $pcu_info[0]['hostname'] ."</h3>\n
97 <p><table border=0 cellpadding=3><tbody>\n
98 <tr><th>Protocol: </th><td>";
99
100   if( $pcu_controller )
101     echo "<input type=text name='protocol' value='";
102   
103   echo $pcu_info[0]['protocol'];
104   
105   if( $pcu_controller )
106     echo "'>";
107   
108   echo "</td></tr>\n
109         <tr><th>Hostname: </th><td>";
110   
111   if( $pcu_controller )
112     echo "<input type=text name='hostname' size=40 value='";
113   
114   echo $pcu_info[0]['hostname'];
115   
116   echo "'>";
117   
118   echo "</td></tr>\n
119         <tr><th>IP Address: </th><td>";
120   if( $pcu_controller )
121     echo "<input type=text name='ip' value='";
122   
123   echo $pcu_info[0]['ip'];
124   
125   echo "'>";
126   
127   if( $pcu_controller )
128     echo "</td></tr>\n
129           <tr><th>Model: </th><td>";
130   
131   if( $pcu_controller )
132     echo "<input type=text name='model' value='";
133                 
134   echo $pcu_info[0]['model'];
135   
136   if( $pcu_controller )
137     echo "'>";
138   
139   echo "</td></tr>\n
140         <tr><th>Username: </th><td>";
141         
142   if( $pcu_controller )
143     echo "<input type=text name='username' value='";
144   
145   echo $pcu_info[0]['username'];
146   
147   if( $pcu_controller )
148     echo "'>";
149   
150   echo "</td></tr>\n
151         <tr><th>Password: </th><td>";
152         
153   if( $pcu_controller )
154     echo "<input type=text name='password' value='";
155                 
156   echo $pcu_info[0]['password'];
157   
158   if( $pcu_controller )
159     echo "'>";
160   
161   echo "</td></tr>\n
162         <tr><th>Notes: </th><td>";
163   
164   if( $pcu_controller )
165     echo "<input type=text name='notes' size=40 value='";
166                 
167   echo $pcu_info[0]['notes'];
168   
169   if( $pcu_controller )
170     echo "'>";
171                 
172   echo "</td></tr>\n
173         </tbody></table>\n";
174                 
175   if( $pcu_controller )
176     echo "<br /><p><input type=submit name='submitted' value='Update PCU'>\n";
177         
178   if( !empty( $node_info ) ) {
179     echo "<p><table border=0 cellpadding=3>\n<caption>Nodes</caption>\n<thead><tr><th></th><th>Hostname</td><th>State</th><th></th>";
180     
181     // if user can control PCU add table cells
182     if( $pcu_controller )
183       echo "<th></th>\n";
184     
185     echo "</tr></thead><tbody>\n";
186     
187     // for port numbers
188     $count= 0;
189     
190     foreach( $node_info as $node ) {
191       echo "<tr><td>". $pcu_info[0]['ports'][$count] ."</td><td><a href='/db/nodes/index.php?id=". $node['node_id'] ."'>". $node['hostname'] ."</a></td><td class='list_set'>". $node['boot_state'] ."</td>";
192
193       if( $pcu_controller )
194         echo "<td><a href='/db/sites/pcu.php?id=$pcu_id&remove=". $node['node_id'] ."' onclick=\"javascript:return confirm('Are you sure you want to remove node ". $node['hostname'] ." from this PCU?')\">remove</a></td>\n";
195
196       echo "</tr>\n";
197                         
198       $count++;
199         
200     }
201     echo "</tbody></table><br />\n";
202     
203   } else {
204     echo "<p>No nodes on PCU.";
205   }
206
207   
208   echo "<br /><p><a href='/db/sites/index.php?id=". $pcu_info[0]['site_id'] ."'>Back to Site</a>\n";
209
210 }
211
212
213
214 // Print footer
215 include 'plc_footer.php';
216
217 ?>