review the registration process to mark with ext_consortium_id=0 the pending sites
[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        if ( intval($interface[$field]) != 0 ) {
422            $interface[$field]= intval( $interface[$field]);
423        } elseif ($field=='bwlimit' ) {
424            $interface[$field] = NULL;
425        }
426      }
427    }
428    $result=$api->UpdateInterface( intval( $interface_id ), $interface );
429    if ($result == 1 ) 
430      drupal_set_message ("Interface $interface_id updated");
431    else
432      drupal_set_error ("Could not update interface");
433    plc_redirect (l_interface($interface_id));
434  }
435    
436 //////////////////////////////////////////////////////////// sites
437  case 'delete-site': {
438    $site_id = intval($_POST['site_id']);
439    if ($api->DeleteSite($site_id) ==1) 
440      drupal_set_message ("Site $site_id deleted");
441    else
442      drupal_set_error("Failed to delete site $site_id");
443    plc_redirect (l_sites());
444    break;
445  }
446
447  case 'expire-all-slices-in-site': {
448    // xxx todo
449    drupal_set_message("action $action not implemented in actions.php -- need tweaks and test");
450    return;
451
452    //// old code from sites/expire.php
453    $sites = $api->GetSites( array( intval( $site_id )));
454    $site=$sites[0];
455    // xxx why not 'now?'
456    $expiration= strtotime( $_POST['expires'] );
457    // loop through all slices for site
458    foreach ($site['slice_ids'] as $slice_id) {
459      $api->UpdateSlice( $slice_id, array( "expires" => $expiration ) );
460    }
461    // update site to not allow slice creation or renewal
462    $api->UpdateSite( $site_id, array( "max_slices" => 0 )) ;
463    plc_redirect (l_site($site_id));
464    break;
465  }
466
467  case 'update-site': {
468    $site_id=intval($_POST['site_id']);
469    $name= $_POST['name'];
470    $abbreviated_name= $_POST['abbreviated_name'];
471    $url= $_POST['url'];
472    $latitude= floatval($_POST['latitude']);
473    $longitude= floatval($_POST['longitude']);
474    //$max_slivers= $_POST['max_slivers'];
475    
476    $fields= array( "name" => $name, 
477                    "abbreviated_name" => $abbreviated_name, 
478                    "url" => $url, 
479                    "latitude" => floatval( $latitude ), 
480                    "longitude" => floatval( $longitude ));
481
482    if ($_POST['login_base']) 
483      $fields['login_base'] = $_POST['login_base'];
484    if (isset($_POST['max_slices']))
485      $fields['max_slices'] = intval($_POST['max_slices']);
486    if (isset($_POST['enabled'])) {
487      $fields['enabled'] = (bool)$_POST['enabled'];
488    }
489    
490    $retcod=$api->UpdateSite( intval( $site_id ), $fields );
491    if ($retcod == 1) 
492      drupal_set_message("Site $name updated");
493    else 
494      drupal_set_error ("Could not update site $site_id");
495      
496    plc_redirect(l_site($site_id));
497    break;
498  }
499
500 //////////////////////////////////////////////////////////// slices
501  case 'delete-slice': {
502    $slice_id = $_POST['slice_id'];
503    if ($api->DeleteSlice( intval( $slice_id )) == 1 ) {
504      drupal_set_message("Slice $slice_id deleted");
505      plc_redirect(l_slices());
506    } else {
507      drupal_set_error("Could not delete slice $slice_id " . $api->error());
508    }
509    break;
510  }
511      
512  case 'update-slice': {
513    $slice_id = $_POST['slice_id'];
514    $name = $_POST['name'];
515    $description= $_POST['description'];
516    $url= $_POST['url'];
517
518    $fields= array( "description"=>$description, "url"=>$url );
519    $api->UpdateSlice( intval( $slice_id ), $fields );
520    $error= $api->error();
521
522    if( empty( $error ) ) {
523      drupal_set_message("Update slice $name");
524      plc_redirect(l_slice($slice_id));
525    } else {
526      drupal_set_error($error);
527    }
528    break;
529  }
530
531  case 'renew-slice': {
532    $slice_id = intval ($_POST['slice_id']);     
533    $expires = intval ($_POST['expires']);
534    // 8 weeks from now
535    // xxx
536    $now=mktime();
537    $WEEK=7*24*3600;
538    $WEEKS=8;
539    $MAX_FUTURE=$WEEKS*$WEEK;
540    if ( ($expires-$now) > $MAX_FUTURE) {
541      drupal_set_error("Cannot renew slice that far in the future, max is $WEEKS weeks from now");
542      plc_redirect(l_slice($slice_id));
543    }
544    if ($api->UpdateSlice ($slice_id, array('expires'=>$expires)) == 1)
545      drupal_set_message("Slice renewed");
546    else
547      drupal_set_error("Could not update slice $slice_id");
548    plc_redirect(l_slice($slice_id));
549    break;
550  }
551
552  case 'remove-persons-from-slice': {
553    $slice_id = intval ($_POST['slice_id']);     
554    $person_ids = $_POST['person_ids'];
555    
556    $slice_name = "";
557    $tmp_slices = $api->GetSlices($slice_id, array("name"));
558    if (count($tmp_slices) > 0) {
559        $tmp_slice = $tmp_slices[0];
560        $slice_name = $tmp_slice["name"];
561    }
562    $notify_subject = "Removed from slice: " . $slice_name;
563    $notify_body = sprintf("You have been removed from the slice %s.
564
565 Our support team will be glad to answer any question that you might have.
566 ",$slice_name);
567    $notify_person_ids = array();
568    
569    $success=true;
570    $counter=0;
571    foreach( $person_ids as $person_id ) {
572      if ($api->DeletePersonFromSlice(intval($person_id),$slice_id) != 1) 
573        $success=false;
574      else {
575          array_push($notify_person_ids, intval($person_id));
576        $counter++;
577      }
578    }
579    if ($success) {
580      $api->NotifyPersons($notify_person_ids,$notify_subject,$notify_body);
581      drupal_set_message ("Deleted $counter person(s)");
582    }
583    else
584      drupal_set_error ("Could not delete all selected persons, only $counter were removed");
585    plc_redirect(l_slice($slice_id) . " &show_persons=true");
586    break;
587  }
588
589  case 'add-persons-in-slice': {
590    $slice_id = intval ($_POST['slice_id']);     
591    $person_ids = $_POST['person_ids'];
592
593    $slice_name = "";
594    $tmp_slices = $api->GetSlices($slice_id, array("name"));
595    if (count($tmp_slices) > 0) {
596      $tmp_slice = $tmp_slices[0];
597      $slice_name = $tmp_slice["name"];
598    }
599    $notify_subject = "Added to slice: " . $slice_name;
600    $notify_body = sprintf("You have been added to the slice %s as a user.
601
602 You can go to your slice page following the link below:
603 https://%s:%d/db/slices/index.php?id=%d
604
605 Our support team will be glad to answer any question that you might have.
606 ",$slice_name,PLC_WWW_HOST,PLC_WWW_SSL_PORT,$slice_id);
607    $notify_person_ids = array();
608    
609    $success=true;
610    $counter=0;
611    foreach ($person_ids as $person_id) {
612      if ($api->AddPersonToSlice(intval($person_id),$slice_id) != 1) 
613        $success=false;
614      else {
615        array_push($notify_person_ids, intval($person_id));
616        $counter++;
617      }
618    }
619    if ($success) {
620      $api->NotifyPersons($notify_person_ids,$notify_subject,$notify_body);
621      drupal_set_message ("Added $counter person(s)");
622    }
623    else
624      drupal_set_error ("Could not add all selected persons, only $counter were added");
625    plc_redirect(l_slice($slice_id) . "&show_persons=true" );
626    break;
627  }
628
629  case 'remove-nodes-from-slice': {
630    $slice_id = intval ($_POST['slice_id']);     
631    $node_ids = array_map("intval",$_POST['node_ids']);
632    $count=count($node_ids);
633    
634    if ($api->DeleteSliceFromNodes($slice_id,$node_ids) == 1) 
635      drupal_set_message ("Removed $count node(s)");
636    else
637      drupal_set_error ("Could not remove selected nodes");
638    plc_redirect(l_slice($slice_id) . " &show_nodes=true");
639    break;
640  }
641
642  case 'add-nodes-in-slice': {
643    $slice_id = intval ($_POST['slice_id']);     
644    $node_ids = array_map("intval",$_POST['node_ids']);
645    $count=count($node_ids);
646    if ($api->AddSliceToNodes($slice_id,$node_ids) == 1) 
647      drupal_set_message ("Added $count node(s)");
648    else
649      drupal_set_error ("Could not add all selected nodes");
650    plc_redirect(l_slice($slice_id) . "&show_nodes=true" );
651    break;
652  }
653
654  case 'delete-slice-tags': {
655    $slice_id = intval($_POST['slice_id']);
656    $slice_tag_ids = array_map("intval", $_POST['slice_tag_ids']);
657    $count = 0;
658    $success = true;
659    foreach($slice_tag_ids as $slice_tag_id) {
660      if ($api->DeleteSliceTag($slice_tag_id)) $count += 1;
661      else {
662        drupal_set_error("Could not delete slice tag: slice_tag_id = $slice_tag_id");
663        $success = false;
664      }
665    }
666    if ($success)
667      drupal_set_message ("Deleted $count slice tag(s)");
668    plc_redirect(l_slice($slice_id) . "&show_tags=true" );
669    break;
670  }
671   
672  case 'add-slice-tag': {
673    $slice_id = intval($_POST['slice_id']);
674    $tag_type_id = intval($_POST['tag_type_id']);
675    $value = $_POST['value'];
676    $node_id = intval($_POST['node_id']);
677    $nodegroup_id = intval($_POST['nodegroup_id']);
678   
679    $result = null;
680    if ($node_id) {
681      $result = $api->AddSliceTag($slice_id, $tag_type_id, $value, $node_id);
682    } elseif ($nodegroup_id) {
683      $result = $api->AddSliceTag($slice_id, $tag_type_id, $value, null, $nodegroup_id);
684    } else {
685      $result = $api->AddSliceTag($slice_id, $tag_type_id, $value);
686    }
687    if ($result)
688      drupal_set_message ("Added slice tag.");
689    else 
690        drupal_set_error("Could not add slice tag");
691    if ($_POST['sliver_action'])
692        plc_redirect(l_sliver($node_id,$slice_id));
693    else
694        plc_redirect(l_slice($slice_id) . "&show_tags=true" );
695    break;
696  }
697
698 //////////////////////////////////////////////////////////// tag types
699
700  case 'update-tag-type': {
701   // get post vars 
702    $tag_type_id= intval( $_POST['tag_type_id'] );
703    $tagname = $_POST['tagname'];
704    $min_role_id= intval( $_POST['min_role_id'] );
705    $description= $_POST['description'];  
706    $category= $_POST['category'];
707   
708    // make tag_type_fields dict
709    $tag_type_fields= array( "min_role_id" => $min_role_id, 
710                             "tagname" => $tagname, 
711                             "description" => $description,
712                             "category" => $category,
713                             );
714
715    if ($api->UpdateTagType( $tag_type_id, $tag_type_fields ) == 1) 
716      drupal_set_message ("Tag type $tagname updated");
717    else 
718      drupal_set_error ("Could not update tag type $tag_type_id\n".$api->error());
719    plc_redirect(l_tag($tag_type_id));
720  }
721
722  case 'add-tag-type': {
723   // get post vars 
724    $tagname = $_POST['tagname'];
725    $min_role_id= intval( $_POST['min_role_id'] );
726    $description= $_POST['description'];  
727    $category= $_POST['category'];  
728   
729    // make tag_type_fields dict
730    $tag_type_fields= array( "min_role_id" => $min_role_id, 
731                             "tagname" => $tagname, 
732                             "description" => $description,
733                             "category" => $category,
734                             );
735
736   // Add it!
737    $tag_type_id=$api->AddTagType( $tag_type_fields );
738    if ($tag_type_id > 0) 
739      drupal_set_message ("tag type $tag_type_id created");
740    else
741      drupal_set_error ("Could not create tag type $tagname");
742    plc_redirect( l_tags());
743  }
744
745  case 'delete-tag-types': {
746    $tag_type_ids = $_POST['tag_type_ids'];
747    if ( ! $tag_type_ids) {
748      drupal_set_message("action=$action - No tag selected");
749      return;
750    }
751    $success=true;
752    $counter=0;
753    foreach ($tag_type_ids as $tag_type_id) 
754      if ($api->DeleteTagType(intval($tag_type_id)) != 1) 
755        $success=false;
756      else
757        $counter++;
758    if ($success) 
759      drupal_set_message ("Deleted $counter tag(s)");
760    else
761      drupal_set_error ("Could not delete all selected tags, only $counter were removed");
762    plc_redirect (l_tags());
763    break;
764  }
765
766 //////////////////////////////////////// tags   
767  case 'set-tag-on-node': 
768  case 'set-tag-on-interface': {
769    
770    $node_mode = false;
771    if ($action == 'set-tag-on-node') $node_mode=true;
772
773    if ($node_mode)
774      $node_id = intval($_POST['node_id']);
775    else 
776      $interface_id=intval($_POST['interface_id']);
777    $tag_type_id = intval($_POST['tag_type_id']);
778    $value = $_POST['value'];
779
780    $tag_types=$api->GetTagTypes(array($tag_type_id));
781    if (count ($tag_types) != 1) {
782      drupal_set_error ("Could not locate tag_type_id $tag_type_id </br> Tag not set.");
783    } else {
784      if ($node_mode) 
785        $tags = $api->GetNodeTags (array('node_id'=>$node_id, 'tag_type_id'=> $tag_type_id));
786      else
787        $tags = $api->GetInterfaceTags (array('interface_id'=>$interface_id, 'tag_type_id'=> $tag_type_id));
788      if ( count ($tags) == 1) {
789        $tag=$tags[0];
790        if ($node_mode) {
791          $tag_id=$tag['node_tag_id'];
792          $result=$api->UpdateNodeTag($tag_id,$value);
793        } else {
794          $tag_id=$tag['interface_tag_id'];
795          $result=$api->UpdateInterfaceTag($tag_id,$value);
796        }
797        if ($result == 1) 
798          drupal_set_message ("Updated tag, new value = $value");
799        else
800          drupal_set_error ("Could not update tag");
801      } else {
802        if ($node_mode)
803          $tag_id = $api->AddNodeTag($node_id,$tag_type_id,$value);
804        else
805          $tag_id = $api->AddInterfaceTag($interface_id,$tag_type_id,$value);
806        if ($tag_id) 
807          drupal_set_message ("Created tag, new value = $value");
808        else
809          drupal_set_error ("Could not create tag");
810      }
811    }
812    
813    if ($node_mode)
814      plc_redirect (l_node($node_id));
815    else
816      plc_redirect (l_interface($interface_id));
817  }
818
819  case 'delete-node-tags' : 
820  case 'delete-interface-tags' : {
821
822    $node_mode = false;
823    if ($action == 'delete-node-tags') $node_mode=true;
824
825    if ($node_mode)
826      $tag_ids=$_POST['node_tag_ids'];
827    else
828      $tag_ids=$_POST['interface_tag_ids'];
829
830    if ( ! $tag_ids) {
831      drupal_set_message("action=$action - No tag selected");
832      return;
833    }
834    $success=true;
835    $counter=0;
836    foreach( $tag_ids as $tag_id ) {
837      if ($node_mode)
838        $retcod = $api->DeleteNodeTag( intval( $tag_id ));
839      else
840        $retcod = $api->DeleteInterfaceTag( intval( $tag_id ));
841      if ($retcod != 1) 
842        $success=false;
843      else
844        $counter++;
845    }
846    if ($success) 
847      drupal_set_message ("Deleted $counter tag(s)");
848    else
849      drupal_set_error ("Could not delete all selected tags, only $counter were removed");
850    if ($node_mode)
851      plc_redirect(l_node($_POST['node_id']));
852    else
853      plc_redirect(l_interface($_POST['interface_id']));
854  }
855
856
857 ////////////////////////////////////////
858
859  case 'debug': {
860    plc_debug('GET',$_GET);
861    plc_debug('POST',$_POST);
862    plc_debug('FILES',$_FILES);
863    return;
864  }
865
866  default: {
867    plc_error ("Unknown action $action in actions.php");
868    return;
869  }
870
871  }
872
873 ?>