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