Automatically add the ifname and alias InterfaceTags to extra interfaces.
[plewww.git] / planetlab / common / actions.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;
9
10 //print header
11 require_once 'plc_drupal.php';
12
13 // Common functions
14 require_once 'plc_functions.php';
15
16 $known_actions=array();
17 ////////////////////////////////////////////////////////////
18 // interface :
19 // (*) use POST 
20 // (*) set 'action' to one of the following
21 //////////////////////////////////////// persons
22 $known_actions []= "add-person-to-site";
23 //      expects:        person_id & site_id
24 $known_actions []= "remove-person-from-sites";
25 //      expects:        person_id & site_ids
26 $known_actions []= "remove-roles-from-person";
27 //      expects:        person_id & role_ids
28 $known_actions []= "add-role-to-person";
29 //      expects:        role_person_id & id
30 $known_actions []= "enable-person";
31 //      expects:        person_id
32 $known_actions []= "disable-person";
33 //      expects:        person_id
34 $known_actions []= "become-person";
35 //      expects:        person_id
36 $known_actions []= "delete-person";
37 //      expects:        person_id
38 $known_actions []= "delete-keys";
39 //      expects:        key_ids & person_id (for redirecting to the person's page)
40 $known_actions []= "upload-key";
41 //      expects:        person_id & $_FILES['key']
42 $known_actions []= "update-person";
43 //      expects:        person_id & first_name last_name title email phone url bio + [password1 password2]
44
45 //////////////////////////////////////// nodes
46 $known_actions []= "node-boot-state";   
47 //      expects:        node_id boot_state
48 $known_actions []= "delete-node";       
49 //      expects:        node_id
50 $known_actions []= "update-node";       
51 //      expects:        node_id, hostname, model
52 $known_actions []= "attach-pcu";
53 //      expects:        node_id, pcu_id, port (pcu_id <0 means detach)
54
55 //////////////////////////////////////// interfaces
56 $known_actions []= "delete-interfaces"; 
57 //      expects:        interface_ids
58 $known_actions []="add-interface";
59 //      expects:        node_id & interface details
60 $known_actions []="new-interface";
61 //      expects:        node_id 
62 $known_actions []="update-interface";
63 //      expects:        interface_id & interface details
64
65 //////////////////////////////////////// sites
66 $known_actions []= "delete-site";       
67 //      expects:        site_id
68 $known_actions []= "expire-all-slices-in-site";
69 //      expects:        slice_ids
70 $known_actions []= "update-site";
71 //      expects:        site_id & name abbreviated_name url latitude longitude [login_base max_slices]
72
73 //////////////////////////////////////// slices
74 $known_actions []= "delete-slice";
75 //      expects:        slice_id
76 $known_actions []= "update-slice";      
77 //      expects:        slice_id, name, description, url
78 $known_actions []= "renew-slice";
79 //      expects:        slice_id & expires
80 $known_actions []= 'remove-persons-from-slice';
81 //      expects:        slice_id & person_ids
82 $known_actions []= 'add-persons-in-slice';
83 //      expects:        slice_id & person_ids
84 $known_actions []= 'remove-nodes-from-slice';
85 //      expects:        slice_id & node_ids
86 $known_actions []= 'add-nodes-in-slice';
87 //      expects:        slice_id & node_ids
88 $known_actions []= 'delete-slice-tags';
89 //      expects:        slice_tag_id
90 $known_actions []= 'add-slice-tag';
91 //      expects:        slice_id & tag_type_id & node_id & nodegroup_id
92
93 //////////////////////////////////////// tag types
94 $known_actions []= "update-tag-type";
95 //      expects:        tag_type_id & name & description & category & min_role_id  
96 $known_actions []= "add-tag-type";
97 //      expects:        tag_type_id & tagname & description & category & min_role_id  
98 $known_actions []= "delete-tag-types";
99 //      expects:        tag_type_ids
100
101 //////////////////////////////////////// tags
102 $known_actions []= "set-tag-on-node";
103 //      expects:        node_id tagname value
104 $known_actions []= "set-tag-on-interface";
105 //      expects:        interface_id tagname value
106 $known_actions []= "delete-node-tags";
107 //      expects:        node_id & node_tag_ids
108 $known_actions []= "delete-interface-tags";
109 //      expects:        interface_id & interface_tag_ids
110
111 ////////////////////////////////////////////////////////////
112 $interface_details= array ('method','type', 'ip', 'gateway', 'network', 
113                            'broadcast', 'netmask', 'dns1', 'dns2', 
114                            'hostname', 'mac', 'bwlimit' );
115
116 //////////////////////////////
117 // sometimes we don't set 'action', but use the submit button name instead
118 // so if 'action' not set, see if $_POST has one of the actions as a key
119 if ($_POST['action']) 
120   $action=$_POST['action'];
121 else 
122   foreach ($known_actions as $known_action) 
123     if ($_POST[$known_action]) {
124       $action=$known_action;
125       break;
126     }
127
128 //uncomment for debugging incoming data
129 //$action='debug';
130
131 $person_id = $_POST['person_id'];       // usually needed
132
133 if ( ! $action ) {
134   drupal_set_message ("actions.php: action not set or not in known_actions");
135   plc_debug('POST',$_POST);
136   return;
137  }
138
139 switch ($action) {
140
141  case 'add-person-to-site': {
142    $site_id = $_POST['site_id'];
143    $api->AddPersonToSite( intval( $person_id ), intval( $site_id ) );
144    plc_redirect (l_person($person_id));
145  }
146
147  case 'remove-person-from-sites': {
148    $site_ids = $_POST['site_ids'];
149    if ( ! $site_ids) {
150      drupal_set_message("action=$action - No site selected");
151      return;
152    }
153    foreach ( $site_ids as $site_id ) {
154      $api->DeletePersonFromSite( intval( $person_id ), intval( $site_id ) );
155    }
156    plc_redirect (l_person($person_id));
157  }
158
159  case 'remove-roles-from-person' : {
160    $role_ids=$_POST['role_ids'];
161    if ( ! $role_ids) {
162      drupal_set_message("action=$action - No role selected");
163      return;
164    }
165    foreach( $role_ids as $role_id)  {
166      $api->DeleteRoleFromPerson( intval( $role_id ), intval( $person_id ) );
167    }
168    plc_redirect (l_person($person_id));
169  }
170      
171  case 'add-role-to-person' : {
172    $role_id=$_POST['role_id'];
173    $api->AddRoleToPerson( intval( $role_id ), intval( $person_id ) );
174    plc_redirect (l_person($person_id));
175  }
176
177  case 'enable-person' : {
178    $fields = array( "enabled"=>true );
179    $api->UpdatePerson( intval( $person_id ), $fields );
180    plc_redirect (l_person($person_id));
181  }
182
183  case 'disable-person' : {
184    $fields = array( "enabled"=>false );
185    $api->UpdatePerson( intval( $person_id ), $fields );
186    plc_redirect (l_person($person_id));
187  }
188
189  case 'become-person' : {
190    $plc->BecomePerson (intval($person_id));
191    plc_redirect (l_person(intval($person_id)));
192  }
193
194  case 'delete-person' : {
195   $api->DeletePerson( intval( $person_id ) );
196    plc_redirect (l_persons());
197  }
198
199  case 'delete-keys' : {
200    $key_ids=$_POST['key_ids'];
201    if ( ! $key_ids) {
202      drupal_set_message("action=$action - No key selected");
203      return;
204    }
205    $success=true;
206    $counter=0;
207    foreach( $key_ids as $key_id ) {
208      if ($api->DeleteKey( intval( $key_id )) != 1) 
209        $success=false;
210      else
211        $counter++;
212    }
213    if ($success) 
214      drupal_set_message ("Deleted $counter key(s)");
215    else
216      drupal_set_error ("Could not delete all selected keys, only $counter were removed");
217    plc_redirect(l_person($person_id));
218  }
219
220
221  case 'upload-key' : {
222    if ( ! isset( $_FILES['key'] ) ) {
223      drupal_set_message ("action=$action, no key file set");
224      return;
225    }
226    
227    $key_file= $_FILES['key']['tmp_name'];
228    if ( ! $key_file ) {
229      plc_error("Please select a valid SSH key file to upload");
230      return;
231    } 
232    $fp = fopen( $key_file, "r" );
233    $key = "";
234    if( ! $fp ) {
235      plc_error("Unable to open key file $key_file");
236      return;
237    }
238    // opened the key file, read the one line of contents
239    // The POST operation always creates a file even if the filename
240    // the user specified was garbage.  If there was some problem
241    // with the source file, we'll get a zero length read here.
242    $key = fread($fp, filesize($key_file));
243    fclose($fp);
244    
245    $key_id = $api->AddPersonKey( intval( $person_id ), array( "key_type"=> 'ssh', "key"=> $key ) );
246    
247    if ( $key_id >= 1) 
248      drupal_set_message ("New key added");
249    else
250      drupal_set_error("Could not add key, please verify your SSH file content\n" . $api->error());
251    
252    plc_redirect(l_person($person_id));
253  }
254
255  case 'update-person': {
256    $person_id=$_POST['person_id'];
257    // attempt to update this person
258    $first_name= $_POST['first_name'];
259    $last_name= $_POST['last_name'];
260    $title= $_POST['title'];
261    $email= $_POST['email'];
262    $phone= $_POST['phone'];
263    $url= $_POST['url'];
264    $bio= str_replace("\r", "", $_POST['bio']);
265    $password1= $_POST['password1'];
266    $password2= $_POST['password2'];
267
268    if( $password1 != $password2 ) {
269      drupal_set_error ("The passwords do not match");
270      plc_redirect(l_person($person_id));
271   }
272
273    $fields= array();
274    $fields['first_name']= $first_name;
275    $fields['last_name']= $last_name;
276    $fields['title']= $title;
277    $fields['email']= $email;
278    $fields['phone']= $phone;
279    $fields['url']= $url;
280    $fields['bio']= $bio;
281                 
282    if ( $password1 != "" )
283      $fields['password']= $password1;
284     
285     if ( $api->UpdatePerson( intval( $person_id ), $fields) == 1 )
286       drupal_set_message("$first_name $last_name updated");
287     else 
288       drupal_set_error ("Could not update person $person_id" . $api->error());
289
290     plc_redirect(l_person($person_id));
291     break;
292   }
293
294 //////////////////////////////////////////////////////////// nodes
295  case 'node-boot-state': {
296    $node_id=intval($_POST['node_id']);
297    $boot_state=$_POST['boot_state'];
298    $result=$api->UpdateNode( $node_id, array( "boot_state" => $boot_state ) );
299    if ($result==1) {
300      drupal_set_message("boot state updated");
301      plc_redirect (l_node($node_id));
302    } else {
303      drupal_set_error("Could not set boot_state '$boot_state'");
304    }
305    break;
306  }
307
308  case 'delete-node': {
309    $node_id=intval($_POST['node_id']);
310    $result=$api->DeleteNode( intval( $node_id ) );
311    if ($api==1) {
312      drupal_set_message("Node $node_id deleted");
313      plc_redirect (l_nodes());
314    } else {
315      drupal_set_error ("Could not delete node $node_id");
316    }
317    break;
318  }
319
320  case 'update-node': {
321    $node_id=intval($_POST['node_id']);
322    $hostname= $_POST['hostname'];
323    $model= $_POST['model'];
324
325    $fields= array( "hostname"=>$hostname, "model"=>$model );
326    $api->UpdateNode( $node_id, $fields );
327    $error= $api->error();
328
329    if( empty( $error ) ) {
330      drupal_set_message("Update node $hostname");
331      plc_redirect(l_node($node_id));
332    } else {
333      drupal_set_error($error);
334    }
335    break;
336  }
337
338  // this code will ensure that at most one PCU gets attached to the node
339  case 'attach-pcu': {
340    $node_id=intval($_POST['node_id']);
341    $pcu_id=intval($_POST['pcu_id']);
342    $port=intval($_POST['port']);
343    // always start with deleting former PCUs
344    $nodes = $api->GetNodes(array($node_id),array('pcu_ids'));
345    $former_pcu_ids = $nodes[0]['pcu_ids'];
346    if ($former_pcu_ids) foreach ($former_pcu_ids as $former_pcu_id) {
347        if ($api->DeleteNodeFromPCU($node_id,$former_pcu_id) == 1) 
348          drupal_set_message ('Detached node ' . $node_id . ' from PCU ' . $pcu_id);
349        else 
350          drupal_set_error ('Could not detach node ' . $node_id . ' from PCU ' . $pcu_id);
351      }
352    // re-attach only if provided pcu_id >=0
353    if ($pcu_id >= 0) {
354      if ($api->AddNodeToPCU($node_id,$pcu_id,$port) == 1)
355        drupal_set_message ('Attached node ' . $node_id . ' to PCU ' . $pcu_id . ' on port ' . $port);
356      else
357        drupal_set_error ('Failed to attach node ' . $node_id . ' to PCU ' . $pcu_id . ' on port ' . $port);
358    } else {
359      drupal_set_message ('Detached node from all PCUs');
360    }
361    
362    plc_redirect(l_node($node_id));
363    break;
364  }
365    
366
367 //////////////////////////////////////////////////////////// interfaces
368  case 'delete-interfaces' : {
369    $interface_ids=$_POST['interface_ids'];
370    if ( ! $interface_ids) {
371      drupal_set_message("action=$action - No interface selected");
372      return;
373    }
374    $success=true;
375    $counter=0;
376    foreach( $interface_ids as $interface_id ) {
377      if ($api->DeleteInterface( intval( $interface_id )) != 1) 
378        $success=false;
379      else
380        $counter++;
381    }
382    if ($success) 
383      drupal_set_message ("Deleted $counter interface(s)");
384    else
385      drupal_set_error ("Could not delete all selected interfaces, only $counter were removed");
386    plc_redirect(l_node($_POST['node_id']));
387  }
388  case 'new-interface': {
389    plc_redirect(l_interface_add($_POST['node_id']));
390  }
391  case 'add-interface': {
392    $node_id=$_POST['node_id'];
393    foreach ($interface_details as $field) {
394      $interface[$field]= $_POST[$field];
395      if( in_array( $field, array( 'bwlimit', 'node_id' ) ) ) {
396        $interface[$field]= intval( $interface[$field] );
397      }
398    }
399    $interface_id =$api->AddInterface( intval( $node_id ), $interface );
400    if ($interface_id >0 ) {
401      $api->begin();
402          $api->AddInterfaceTag($interface_id,"alias",strval($interface_id));
403          $api->AddInterfaceTag($interface_id,"ifname","eth0");
404      list($id1, $id2) = $api->commit();
405      if ( $id1 > 0 && $id2 > 0 ) {
406          drupal_set_message ("Interface $interface_id added into node $node_id");
407      } else {
408          drupal_set_error ("Could not add interface tags to interface $interface_id");
409      }
410    } else {
411      drupal_set_error ("Could not create interface");
412    }
413    plc_redirect (l_node($node_id));
414  }
415    
416  case 'update-interface': {
417    $interface_id=$_POST['interface_id'];
418    foreach ($interface_details as $field) {
419      $interface[$field]= $_POST[$field];
420      if( in_array( $field, array( 'bwlimit', 'node_id' ) ) ) {
421        $interface[$field]= intval( $interface[$field] );
422      }
423    }
424    $result=$api->UpdateInterface( intval( $interface_id ), $interface );
425    if ($result == 1 ) 
426      drupal_set_message ("Interface $interface_id updated");
427    else
428      drupal_set_error ("Could not update interface");
429    plc_redirect (l_interface($interface_id));
430  }
431    
432 //////////////////////////////////////////////////////////// sites
433  case 'delete-site': {
434    $site_id = intval($_POST['site_id']);
435    if ($api->DeleteSite($site_id) ==1) 
436      drupal_set_message ("Site $site_id deleted");
437    else
438      drupal_set_error("Failed to delete site $site_id");
439    plc_redirect (l_sites());
440    break;
441  }
442
443  case 'expire-all-slices-in-site': {
444    // xxx todo
445    drupal_set_message("action $action not implemented in actions.php -- need tweaks and test");
446    return;
447
448    //// old code from sites/expire.php
449    $sites = $api->GetSites( array( intval( $site_id )));
450    $site=$sites[0];
451    // xxx why not 'now?'
452    $expiration= strtotime( $_POST['expires'] );
453    // loop through all slices for site
454    foreach ($site['slice_ids'] as $slice_id) {
455      $api->UpdateSlice( $slice_id, array( "expires" => $expiration ) );
456    }
457    // update site to not allow slice creation or renewal
458    $api->UpdateSite( $site_id, array( "max_slices" => 0 )) ;
459    plc_redirect (l_site($site_id));
460    break;
461  }
462
463  case 'update-site': {
464    $site_id=intval($_POST['site_id']);
465    $name= $_POST['name'];
466    $abbreviated_name= $_POST['abbreviated_name'];
467    $url= $_POST['url'];
468    $latitude= floatval($_POST['latitude']);
469    $longitude= floatval($_POST['longitude']);
470    //$max_slivers= $_POST['max_slivers'];
471    
472    $fields= array( "name" => $name, 
473                    "abbreviated_name" => $abbreviated_name, 
474                    "url" => $url, 
475                    "latitude" => floatval( $latitude ), 
476                    "longitude" => floatval( $longitude ));
477
478    if ($_POST['login_base']) 
479      $fields['login_base'] = $_POST['login_base'];
480    if ($_POST['max_slices']) 
481      $fields['max_slices'] = intval($_POST['max_slices']);
482    if (isset($_POST['enabled'])) {
483      $fields['enabled'] = (bool)$_POST['enabled'];
484    }
485    
486    $retcod=$api->UpdateSite( intval( $site_id ), $fields );
487    if ($retcod == 1) 
488      drupal_set_message("Site $name updated");
489    else 
490      drupal_set_error ("Could not update site $site_id");
491      
492    plc_redirect(l_site($site_id));
493    break;
494  }
495
496 //////////////////////////////////////////////////////////// slices
497  case 'delete-slice': {
498    $slice_id = $_POST['slice_id'];
499    if ($api->DeleteSlice( intval( $slice_id )) == 1 ) {
500      drupal_set_message("Slice $slice_id deleted");
501      plc_redirect(l_slices());
502    } else {
503      drupal_set_error("Could not delete slice $slice_id " . $api->error());
504    }
505    break;
506  }
507      
508  case 'update-slice': {
509    $slice_id = $_POST['slice_id'];
510    $name = $_POST['name'];
511    $description= $_POST['description'];
512    $url= $_POST['url'];
513
514    $fields= array( "description"=>$description, "url"=>$url );
515    $api->UpdateSlice( intval( $slice_id ), $fields );
516    $error= $api->error();
517
518    if( empty( $error ) ) {
519      drupal_set_message("Update slice $name");
520      plc_redirect(l_slice($slice_id));
521    } else {
522      drupal_set_error($error);
523    }
524    break;
525  }
526
527  case 'renew-slice': {
528    $slice_id = intval ($_POST['slice_id']);     
529    $expires = intval ($_POST['expires']);
530    // 8 weeks from now
531    // xxx
532    $now=mktime();
533    $WEEK=7*24*3600;
534    $WEEKS=8;
535    $MAX_FUTURE=$WEEKS*$WEEK;
536    if ( ($expires-$now) > $MAX_FUTURE) {
537      drupal_set_error("Cannot renew slice that far in the future, max is $WEEKS weeks from now");
538      plc_redirect(l_slice($slice_id));
539    }
540    plc_debug('slice_id',$slice_id);
541    plc_debug('expires',$expires);
542    if ($api->UpdateSlice ($slice_id, array('expires'=>$expires)) == 1)
543      drupal_set_message("Slice renewed");
544    else
545      drupal_set_error("Could not update slice $slice_id");
546    plc_redirect(l_slice($slice_id));
547    break;
548  }
549
550  case 'remove-persons-from-slice': {
551    $slice_id = intval ($_POST['slice_id']);     
552    $person_ids = $_POST['person_ids'];
553    
554    $slice_name = "";
555    $tmp_slices = $api->GetSlices($slice_id, array("name"));
556    if (count($tmp_slices) > 0) {
557        $tmp_slice = $tmp_slices[0];
558        $slice_name = $tmp_slice["name"];
559    }
560    $notify_subject = "Removed from slice: " . $slice_name;
561    $notify_body = sprintf("You have been removed from the slice %s.
562
563 Our support team will be glad to answer any question that you might have.
564 ",$slice_name);
565    $notify_person_ids = array();
566    
567    $success=true;
568    $counter=0;
569    foreach( $person_ids as $person_id ) {
570      if ($api->DeletePersonFromSlice(intval($person_id),$slice_id) != 1) 
571        $success=false;
572      else {
573          array_push($notify_person_ids, intval($person_id));
574        $counter++;
575      }
576    }
577    if ($success) {
578      $api->NotifyPersons($notify_person_ids,$notify_subject,$notify_body);
579      drupal_set_message ("Deleted $counter person(s)");
580    }
581    else
582      drupal_set_error ("Could not delete all selected persons, only $counter were removed");
583    plc_redirect(l_slice($slice_id) . " &show_persons=true");
584    break;
585  }
586
587  case 'add-persons-in-slice': {
588    $slice_id = intval ($_POST['slice_id']);     
589    $person_ids = $_POST['person_ids'];
590
591    $slice_name = "";
592    $tmp_slices = $api->GetSlices($slice_id, array("name"));
593    if (count($tmp_slices) > 0) {
594      $tmp_slice = $tmp_slices[0];
595      $slice_name = $tmp_slice["name"];
596    }
597    $notify_subject = "Added to slice: " . $slice_name;
598    $notify_body = sprintf("You have been added to the slice %s as a user.
599
600 You can go to your slice page following the link below:
601 https://%s:%d/db/slices/index.php?id=%d
602
603 Our support team will be glad to answer any question that you might have.
604 ",$slice_name,PLC_WWW_HOST,PLC_WWW_SSL_PORT,$slice_id);
605    $notify_person_ids = array();
606    
607    $success=true;
608    $counter=0;
609    foreach ($person_ids as $person_id) {
610      if ($api->AddPersonToSlice(intval($person_id),$slice_id) != 1) 
611        $success=false;
612      else {
613        array_push($notify_person_ids, intval($person_id));
614        $counter++;
615      }
616    }
617    if ($success) {
618      $api->NotifyPersons($notify_person_ids,$notify_subject,$notify_body);
619      drupal_set_message ("Added $counter person(s)");
620    }
621    else
622      drupal_set_error ("Could not add all selected persons, only $counter were added");
623    plc_redirect(l_slice($slice_id) . "&show_persons=true" );
624    break;
625  }
626
627  case 'remove-nodes-from-slice': {
628    $slice_id = intval ($_POST['slice_id']);     
629    $node_ids = array_map("intval",$_POST['node_ids']);
630    $count=count($node_ids);
631    
632    if ($api->DeleteSliceFromNodes($slice_id,$node_ids) == 1) 
633      drupal_set_message ("Removed $count node(s)");
634    else
635      drupal_set_error ("Could not remove selected nodes");
636    plc_redirect(l_slice($slice_id) . " &show_nodes=true");
637    break;
638  }
639
640  case 'add-nodes-in-slice': {
641    $slice_id = intval ($_POST['slice_id']);     
642    $node_ids = array_map("intval",$_POST['node_ids']);
643    $count=count($node_ids);
644    if ($api->AddSliceToNodes($slice_id,$node_ids) == 1) 
645      drupal_set_message ("Added $count node(s)");
646    else
647      drupal_set_error ("Could not add all selected nodes");
648    plc_redirect(l_slice($slice_id) . "&show_nodes=true" );
649    break;
650  }
651
652  case 'delete-slice-tags': {
653    $slice_id = intval($_POST['slice_id']);
654    $slice_tag_ids = array_map("intval", $_POST['slice_tag_ids']);
655    $count = 0;
656    $success = true;
657    foreach($slice_tag_ids as $slice_tag_id) {
658      if ($api->DeleteSliceTag($slice_tag_id)) $count += 1;
659      else {
660        drupal_set_error("Could not delete slice tag: slice_tag_id = $slice_tag_id");
661        $success = false;
662      }
663    }
664    if ($success)
665      drupal_set_message ("Deleted $count slice tag(s)");
666    plc_redirect(l_slice($slice_id) . "&show_tags=true" );
667    break;
668  }
669   
670  case 'add-slice-tag': {
671    $slice_id = intval($_POST['slice_id']);
672    $tag_type_id = intval($_POST['tag_type_id']);
673    $value = $_POST['value'];
674    $node_id = intval($_POST['node_id']);
675    $nodegroup_id = intval($_POST['nodegroup_id']);
676   
677    $result = null;
678    if ($node_id) {
679      $result = $api->AddSliceTag($slice_id, $tag_type_id, $value, $node_id);
680    } elseif ($nodegroup_id) {
681      $result = $api->AddSliceTag($slice_id, $tag_type_id, $value, null, $nodegroup_id);
682    } else {
683      $result = $api->AddSliceTag($slice_id, $tag_type_id, $value);
684    }
685    if ($result)
686      drupal_set_message ("Added slice tag.");
687    else 
688        drupal_set_error("Could not add slice tag");
689    if ($_POST['sliver_action'])
690        plc_redirect(l_sliver($node_id,$slice_id));
691    else
692        plc_redirect(l_slice($slice_id) . "&show_tags=true" );
693    break;
694  }
695
696 //////////////////////////////////////////////////////////// tag types
697
698  case 'update-tag-type': {
699   // get post vars 
700    $tag_type_id= intval( $_POST['tag_type_id'] );
701    $tagname = $_POST['tagname'];
702    $min_role_id= intval( $_POST['min_role_id'] );
703    $description= $_POST['description'];  
704    $category= $_POST['category'];
705   
706    // make tag_type_fields dict
707    $tag_type_fields= array( "min_role_id" => $min_role_id, 
708                             "tagname" => $tagname, 
709                             "description" => $description,
710                             "category" => $category,
711                             );
712
713    if ($api->UpdateTagType( $tag_type_id, $tag_type_fields ) == 1) 
714      drupal_set_message ("Tag type $tagname updated");
715    else 
716      drupal_set_error ("Could not update tag type $tag_type_id\n".$api->error());
717    plc_redirect(l_tag($tag_type_id));
718  }
719
720  case 'add-tag-type': {
721   // get post vars 
722    $tagname = $_POST['tagname'];
723    $min_role_id= intval( $_POST['min_role_id'] );
724    $description= $_POST['description'];  
725    $category= $_POST['category'];  
726   
727    // make tag_type_fields dict
728    $tag_type_fields= array( "min_role_id" => $min_role_id, 
729                             "tagname" => $tagname, 
730                             "description" => $description,
731                             "category" => $category,
732                             );
733
734   // Add it!
735    $tag_type_id=$api->AddTagType( $tag_type_fields );
736    if ($tag_type_id > 0) 
737      drupal_set_message ("tag type $tag_type_id created");
738    else
739      drupal_set_error ("Could not create tag type $tagname");
740    plc_redirect( l_tags());
741  }
742
743  case 'delete-tag-types': {
744    $tag_type_ids = $_POST['tag_type_ids'];
745    if ( ! $tag_type_ids) {
746      drupal_set_message("action=$action - No tag selected");
747      return;
748    }
749    $success=true;
750    $counter=0;
751    foreach ($tag_type_ids as $tag_type_id) 
752      if ($api->DeleteTagType(intval($tag_type_id)) != 1) 
753        $success=false;
754      else
755        $counter++;
756    if ($success) 
757      drupal_set_message ("Deleted $counter tag(s)");
758    else
759      drupal_set_error ("Could not delete all selected tags, only $counter were removed");
760    plc_redirect (l_tags());
761    break;
762  }
763
764 //////////////////////////////////////// tags   
765  case 'set-tag-on-node': 
766  case 'set-tag-on-interface': {
767    
768    $node_mode = false;
769    if ($action == 'set-tag-on-node') $node_mode=true;
770
771    if ($node_mode)
772      $node_id = intval($_POST['node_id']);
773    else 
774      $interface_id=intval($_POST['interface_id']);
775    $tag_type_id = intval($_POST['tag_type_id']);
776    $value = $_POST['value'];
777
778    $tag_types=$api->GetTagTypes(array($tag_type_id));
779    if (count ($tag_types) != 1) {
780      drupal_set_error ("Could not locate tag_type_id $tag_type_id </br> Tag not set.");
781    } else {
782      if ($node_mode) 
783        $tags = $api->GetNodeTags (array('node_id'=>$node_id, 'tag_type_id'=> $tag_type_id));
784      else
785        $tags = $api->GetInterfaceTags (array('interface_id'=>$interface_id, 'tag_type_id'=> $tag_type_id));
786      if ( count ($tags) == 1) {
787        $tag=$tags[0];
788        if ($node_mode) {
789          $tag_id=$tag['node_tag_id'];
790          $result=$api->UpdateNodeTag($tag_id,$value);
791        } else {
792          $tag_id=$tag['interface_tag_id'];
793          $result=$api->UpdateInterfaceTag($tag_id,$value);
794        }
795        if ($result == 1) 
796          drupal_set_message ("Updated tag, new value = $value");
797        else
798          drupal_set_error ("Could not update tag");
799      } else {
800        if ($node_mode)
801          $tag_id = $api->AddNodeTag($node_id,$tag_type_id,$value);
802        else
803          $tag_id = $api->AddInterfaceTag($interface_id,$tag_type_id,$value);
804        if ($tag_id) 
805          drupal_set_message ("Created tag, new value = $value");
806        else
807          drupal_set_error ("Could not create tag");
808      }
809    }
810    
811    if ($node_mode)
812      plc_redirect (l_node($node_id));
813    else
814      plc_redirect (l_interface($interface_id));
815  }
816
817  case 'delete-node-tags' : 
818  case 'delete-interface-tags' : {
819
820    $node_mode = false;
821    if ($action == 'delete-node-tags') $node_mode=true;
822
823    if ($node_mode)
824      $tag_ids=$_POST['node_tag_ids'];
825    else
826      $tag_ids=$_POST['interface_tag_ids'];
827
828    if ( ! $tag_ids) {
829      drupal_set_message("action=$action - No tag selected");
830      return;
831    }
832    $success=true;
833    $counter=0;
834    foreach( $tag_ids as $tag_id ) {
835      if ($node_mode)
836        $retcod = $api->DeleteNodeTag( intval( $tag_id ));
837      else
838        $retcod = $api->DeleteInterfaceTag( intval( $tag_id ));
839      if ($retcod != 1) 
840        $success=false;
841      else
842        $counter++;
843    }
844    if ($success) 
845      drupal_set_message ("Deleted $counter tag(s)");
846    else
847      drupal_set_error ("Could not delete all selected tags, only $counter were removed");
848    if ($node_mode)
849      plc_redirect(l_node($_POST['node_id']));
850    else
851      plc_redirect(l_interface($_POST['interface_id']));
852  }
853
854
855 ////////////////////////////////////////
856
857  case 'debug': {
858    plc_debug('GET',$_GET);
859    plc_debug('POST',$_POST);
860    plc_debug('FILES',$_FILES);
861    return;
862  }
863
864  default: {
865    plc_error ("Unknown action $action in actions.php");
866    return;
867  }
868
869  }
870
871 ?>