Code

update: gosa-si with trigger_reload_syslog_config handling
[gosa.git] / gosa-si / server / events / opsi_com.pm
1 ## @file
2 # @details A GOsa-SI-server event module containing all functions for message handling.
3 # @brief Implementation of an event module for GOsa-SI-server. 
6 package opsi_com;
7 use Exporter;
8 @ISA = qw(Exporter);
9 my @events = (
10     "get_events",
11     "opsi_install_client",
12     "opsi_get_netboot_products",  
13     "opsi_get_local_products",
14     "opsi_get_client_hardware",
15     "opsi_get_client_software",
16     "opsi_get_product_properties",
17     "opsi_set_product_properties",
18     "opsi_list_clients",
19     "opsi_del_client",
20     "opsi_add_client",
21     "opsi_modify_client",
22     "opsi_add_product_to_client",
23     "opsi_del_product_from_client",
24    );
25 @EXPORT = @events;
27 use strict;
28 use warnings;
29 use GOSA::GosaSupportDaemon;
30 use Data::Dumper;
31 use XML::Quote qw(:all);
34 BEGIN {}
36 END {}
38 ## @method get_events()
39 # A brief function returning a list of functions which are exported by importing the module.
40 # @return List of all provided functions
41 sub get_events {
42     return \@events;
43 }
45 ## @method opsi_add_product_to_client
46 # Adds an Opsi product to an Opsi client.
47 # @param msg - STRING - xml message with tags hostId and productId
48 # @param msg_hash - HASHREF - message information parsed into a hash
49 # @param session_id - INTEGER - POE session id of the processing of this message
50 # @return out_msg - STRING - feedback to GOsa in success and error case
51 sub opsi_add_product_to_client {
52     my ($msg, $msg_hash, $session_id) = @_;
53     my $header = @{$msg_hash->{'header'}}[0];
54     my $source = @{$msg_hash->{'source'}}[0];
55     my $target = @{$msg_hash->{'target'}}[0];
56     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
57     my ($hostId, $productId);
58     my $error = 0;
60     # Build return message
61     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
62     if (defined $forward_to_gosa) {
63         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
64     }
66     # Sanity check of needed parameter
67     if ((not exists $msg_hash->{'hostId'}) || (@{$msg_hash->{'hostId'}} != 1))  {
68         $error++;
69         &add_content2xml_hash($out_hash, "error_string", "no hostId specified or hostId tag invalid");
70         &add_content2xml_hash($out_hash, "error", "hostId");
71         &main::daemon_log("$session_id ERROR: no hostId specified or hostId tag invalid: $msg", 1); 
73     }
74     if ((not exists $msg_hash->{'productId'}) || (@{$msg_hash->{'productId'}} != 1)) {
75         $error++;
76         &add_content2xml_hash($out_hash, "error_string", "no productId specified or productId tag invalid");
77         &add_content2xml_hash($out_hash, "error", "productId");
78         &main::daemon_log("$session_id ERROR: no productId specified or procutId tag invalid: $msg", 1); 
79     }
81     if (not $error) {
82         # Get hostID
83         $hostId = @{$msg_hash->{'hostId'}}[0];
84         &add_content2xml_hash($out_hash, "hostId", $hostId);
86         # Get productID
87         $productId = @{$msg_hash->{'productId'}}[0];
88         &add_content2xml_hash($out_hash, "productId", $productId);
90         # Do an action request for all these -> "setup".
91         my $callobj = {
92             method  => 'setProductActionRequest',
93             params  => [ $productId, $hostId, "setup" ],
94             id  => 1, }; 
96         my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
97         my ($sres_err, $sres_err_string) = &check_opsi_res($sres);
98         if ($sres_err){
99             &main::daemon_log("$session_id ERROR: cannot add product: ".$sres_err_string, 1);
100             &add_content2xml_hash($out_hash, "error", $sres_err_string);
101         }
102     } 
104     # return message
105     return ( &create_xml_string($out_hash) );
108 ## @method opsi_del_product_from_client
109 # Deletes an Opsi-product from an Opsi-client. 
110 # @param msg - STRING - xml message with tags hostId and productId
111 # @param msg_hash - HASHREF - message information parsed into a hash
112 # @param session_id - INTEGER - POE session id of the processing of this message
113 # @return out_msg - STRING - feedback to GOsa in success and error case
114 sub opsi_del_product_from_client {
115     my ($msg, $msg_hash, $session_id) = @_;
116     my $header = @{$msg_hash->{'header'}}[0];
117     my $source = @{$msg_hash->{'source'}}[0];
118     my $target = @{$msg_hash->{'target'}}[0];
119     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
120     my ($hostId, $productId);
121     my $error = 0;
122     my ($sres, $sres_err, $sres_err_string);
124     # Build return message
125     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
126     if (defined $forward_to_gosa) {
127         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
128     }
130     # Sanity check of needed parameter
131     if ((not exists $msg_hash->{'hostId'}) || (@{$msg_hash->{'hostId'}} != 1))  {
132         $error++;
133         &add_content2xml_hash($out_hash, "error_string", "no hostId specified or hostId tag invalid");
134         &add_content2xml_hash($out_hash, "error", "hostId");
135         &main::daemon_log("$session_id ERROR: no hostId specified or hostId tag invalid: $msg", 1); 
137     }
138     if ((not exists $msg_hash->{'productId'}) || (@{$msg_hash->{'productId'}} != 1)) {
139         $error++;
140         &add_content2xml_hash($out_hash, "error_string", "no productId specified or productId tag invalid");
141         &add_content2xml_hash($out_hash, "error", "productId");
142         &main::daemon_log("$session_id ERROR: no productId specified or procutId tag invalid: $msg", 1); 
143     }
145     # All parameter available
146     if (not $error) {
147         # Get hostID
148         $hostId = @{$msg_hash->{'hostId'}}[0];
149         &add_content2xml_hash($out_hash, "hostId", $hostId);
151         # Get productID
152         $productId = @{$msg_hash->{'productId'}}[0];
153         &add_content2xml_hash($out_hash, "productId", $productId);
156         #TODO: check the results for more than one entry which is currently installed
157         #$callobj = {
158         #    method  => 'getProductDependencies_listOfHashes',
159         #    params  => [ $productId ],
160         #    id  => 1, };
161         #
162         #my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
163         #my ($sres_err, $sres_err_string) = &check_opsi_res($sres);
164         #if ($sres_err){
165         #  &main::daemon_log("ERROR: cannot perform dependency check: ".$sres_err_string, 1);
166         #  &add_content2xml_hash($out_hash, "error", $sres_err_string);
167         #  return ( &create_xml_string($out_hash) );
168         #}
171     # Check to get product action list 
172         my $callobj = {
173             method  => 'getPossibleProductActions_list',
174             params  => [ $productId ],
175             id  => 1, };
176         $sres = $main::opsi_client->call($main::opsi_url, $callobj);
177         ($sres_err, $sres_err_string) = &check_opsi_res($sres);
178         if ($sres_err){
179             &main::daemon_log("$session_id ERROR: cannot get product action list: ".$sres_err_string, 1);
180             &add_content2xml_hash($out_hash, "error", $sres_err_string);
181             $error++;
182         }
183     }
185     # Check action uninstall of product
186     if (not $error) {
187         my $uninst_possible= 0;
188         foreach my $r (@{$sres->result}) {
189             if ($r eq 'uninstall') {
190                 $uninst_possible= 1;
191             }
192         }
193         if (!$uninst_possible){
194             &main::daemon_log("$session_id ERROR: cannot uninstall product '$productId', product do not has the action 'uninstall'", 1);
195             &add_content2xml_hash($out_hash, "error", "cannot uninstall product '$productId', product do not has the action 'uninstall'");
196             $error++;
197         }
198     }
200     # Set product state to "none"
201     # Do an action request for all these -> "setup".
202     if (not $error) {
203         my $callobj = {
204             method  => 'setProductActionRequest',
205             params  => [ $productId, $hostId, "none" ],
206             id  => 1, 
207         }; 
208         $sres = $main::opsi_client->call($main::opsi_url, $callobj);
209         ($sres_err, $sres_err_string) = &check_opsi_res($sres);
210         if ($sres_err){
211             &main::daemon_log("$session_id ERROR: cannot delete product: ".$sres_err_string, 1);
212             &add_content2xml_hash($out_hash, "error", $sres_err_string);
213         }
214     }
216     # Return message
217     return ( &create_xml_string($out_hash) );
220 ## @method opsi_add_client
221 # Adds an Opsi client to Opsi.
222 # @param msg - STRING - xml message with tags hostId and macaddress
223 # @param msg_hash - HASHREF - message information parsed into a hash
224 # @param session_id - INTEGER - POE session id of the processing of this message
225 # @return out_msg - STRING - feedback to GOsa in success and error case
226 sub opsi_add_client {
227     my ($msg, $msg_hash, $session_id) = @_;
228     my $header = @{$msg_hash->{'header'}}[0];
229     my $source = @{$msg_hash->{'source'}}[0];
230     my $target = @{$msg_hash->{'target'}}[0];
231     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
232     my ($hostId, $mac);
233     my $error = 0;
234     my ($sres, $sres_err, $sres_err_string);
236     # Build return message with twisted target and source
237     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
238     if (defined $forward_to_gosa) {
239         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
240     }
242     # Sanity check of needed parameter
243     if ((not exists $msg_hash->{'hostId'}) || (@{$msg_hash->{'hostId'}} != 1))  {
244         $error++;
245         &add_content2xml_hash($out_hash, "error_string", "no hostId specified or hostId tag invalid");
246         &add_content2xml_hash($out_hash, "error", "hostId");
247         &main::daemon_log("$session_id ERROR: no hostId specified or hostId tag invalid: $msg", 1); 
248     }
249     if ((not exists $msg_hash->{'macaddress'}) || (@{$msg_hash->{'macaddress'}} != 1))  {
250         $error++;
251         &add_content2xml_hash($out_hash, "error_string", "no macaddress specified or macaddress tag invalid");
252         &add_content2xml_hash($out_hash, "error", "macaddress");
253         &main::daemon_log("$session_id ERROR: no macaddress specified or macaddress tag invalid: $msg", 1); 
254     }
256     if (not $error) {
257         # Get hostID
258         $hostId = @{$msg_hash->{'hostId'}}[0];
259         &add_content2xml_hash($out_hash, "hostId", $hostId);
261         # Get macaddress
262         $mac = @{$msg_hash->{'macaddress'}}[0];
263         &add_content2xml_hash($out_hash, "macaddress", $mac);
265         my $name= $hostId;
266         $name=~ s/^([^.]+).*$/$1/;
267         my $domain= $hostId;
268         $domain=~ s/^[^.]+\.(.*)$/$1/;
269         my ($description, $notes, $ip);
271         if (defined @{$msg_hash->{'description'}}[0]){
272             $description = @{$msg_hash->{'description'}}[0];
273         }
274         if (defined @{$msg_hash->{'notes'}}[0]){
275             $notes = @{$msg_hash->{'notes'}}[0];
276         }
277         if (defined @{$msg_hash->{'ip'}}[0]){
278             $ip = @{$msg_hash->{'ip'}}[0];
279         }
281         my $callobj;
282         $callobj = {
283             method  => 'createClient',
284             params  => [ $name, $domain, $description, $notes, $ip, $mac ],
285             id  => 1,
286         };
288         $sres = $main::opsi_client->call($main::opsi_url, $callobj);
289         ($sres_err, $sres_err_string) = &check_opsi_res($sres);
290         if ($sres_err){
291             &main::daemon_log("$session_id ERROR: cannot create client: ".$sres_err_string, 1);
292             &add_content2xml_hash($out_hash, "error", $sres_err_string);
293         } else {
294             &main::daemon_log("$session_id INFO: add opsi client '$hostId' with mac '$mac'", 5); 
295         }
296     }
298     # Return message
299     return ( &create_xml_string($out_hash) );
302 ## @method opsi_modify_client
303 # Modifies the parameters description, mac or notes for an Opsi client if the corresponding message tags are given.
304 # @param msg - STRING - xml message with tag hostId and optional description, mac or notes
305 # @param msg_hash - HASHREF - message information parsed into a hash
306 # @param session_id - INTEGER - POE session id of the processing of this message    
307 # @return out_msg - STRING - feedback to GOsa in success and error case
308 sub opsi_modify_client {
309     my ($msg, $msg_hash, $session_id) = @_;
310     my $header = @{$msg_hash->{'header'}}[0];
311     my $source = @{$msg_hash->{'source'}}[0];
312     my $target = @{$msg_hash->{'target'}}[0];
313     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
314     my $hostId;
315     my $error = 0;
316     my ($sres, $sres_err, $sres_err_string);
318     # Build return message with twisted target and source
319     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
320     if (defined $forward_to_gosa) {
321         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
322     }
324     # Sanity check of needed parameter
325     if ((not exists $msg_hash->{'hostId'}) || (@{$msg_hash->{'hostId'}} != 1))  {
326         $error++;
327         &add_content2xml_hash($out_hash, "error_string", "no hostId specified or hostId tag invalid");
328         &add_content2xml_hash($out_hash, "error", "hostId");
329         &main::daemon_log("$session_id ERROR: no hostId specified or hostId tag invalid: $msg", 1); 
330     }
332     if (not $error) {
333         # Get hostID
334         $hostId = @{$msg_hash->{'hostId'}}[0];
335         &add_content2xml_hash($out_hash, "hostId", $hostId);
336         my $name= $hostId;
337         $name=~ s/^([^.]+).*$/$1/;
338         my $domain= $hostId;
339         $domain=~ s/^[^.]+(.*)$/$1/;
341         # Modify description, notes or mac if defined
342         my ($description, $notes, $mac);
343         my $callobj;
344         if ((exists $msg_hash->{'description'}) && (@{$msg_hash->{'description'}} == 1) ){
345             $description = @{$msg_hash->{'description'}}[0];
346             $callobj = {
347                 method  => 'setHostDescription',
348                 params  => [ $hostId, $description ],
349                 id  => 1,
350             };
351             my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
352             my ($sres_err, $sres_err_string) = &check_opsi_res($sres);
353             if ($sres_err){
354                 &main::daemon_log("ERROR: cannot set description: ".$sres_err_string, 1);
355                 &add_content2xml_hash($out_hash, "error", $sres_err_string);
356             }
357         }
358         if ((exists $msg_hash->{'notes'}) && (@{$msg_hash->{'notes'}} == 1)) {
359             $notes = @{$msg_hash->{'notes'}}[0];
360             $callobj = {
361                 method  => 'setHostNotes',
362                 params  => [ $hostId, $notes ],
363                 id  => 1,
364             };
365             my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
366             my ($sres_err, $sres_err_string) = &check_opsi_res($sres);
367             if ($sres_err){
368                 &main::daemon_log("ERROR: cannot set notes: ".$sres_err_string, 1);
369                 &add_content2xml_hash($out_hash, "error", $sres_err_string);
370             }
371         }
372         if ((exists $msg_hash->{'mac'}) && (@{$msg_hash->{'mac'}} == 1)){
373             $mac = @{$msg_hash->{'mac'}}[0];
374             $callobj = {
375                 method  => 'setMacAddress',
376                 params  => [ $hostId, $mac ],
377                 id  => 1,
378             };
379             my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
380             my ($sres_err, $sres_err_string) = &check_opsi_res($sres);
381             if ($sres_err){
382                 &main::daemon_log("ERROR: cannot set mac address: ".$sres_err_string, 1);
383                 &add_content2xml_hash($out_hash, "error", $sres_err_string);
384             }
385         }
386     }
388     # Return message
389     return ( &create_xml_string($out_hash) );
392     
393 ## @method opsi_get_netboot_products
394 # Get netboot products for specific host.
395 # @param msg - STRING - xml message with tag hostId
396 # @param msg_hash - HASHREF - message information parsed into a hash
397 # @param session_id - INTEGER - POE session id of the processing of this message
398 # @return out_msg - STRING - feedback to GOsa in success and error case
399 sub opsi_get_netboot_products {
400     my ($msg, $msg_hash, $session_id) = @_;
401     my $header = @{$msg_hash->{'header'}}[0];
402     my $source = @{$msg_hash->{'source'}}[0];
403     my $target = @{$msg_hash->{'target'}}[0];
404     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
405     my $hostId;
406     my $xml_msg;
408     # Build return message with twisted target and source
409     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
410     if (defined $forward_to_gosa) {
411         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
412     }
414     # Get hostID if defined
415     if ((exists $msg_hash->{'hostId'}) && (@{$msg_hash->{'hostId'}} == 1))  {
416         $hostId = @{$msg_hash->{'hostId'}}[0];
417         &add_content2xml_hash($out_hash, "hostId", $hostId);
418     }
420     &add_content2xml_hash($out_hash, "xxx", "");
421     $xml_msg= &create_xml_string($out_hash);
423     # For hosts, only return the products that are or get installed
424     my $callobj;
425     $callobj = {
426         method  => 'getNetBootProductIds_list',
427         params  => [ ],
428         id  => 1,
429     };
431     my $res = $main::opsi_client->call($main::opsi_url, $callobj);
432     my %r = ();
433     for (@{$res->result}) { $r{$_} = 1 }
435     if (not &check_opsi_res($res)){
437         if (defined $hostId){
438             $callobj = {
439                 method  => 'getProductStates_hash',
440                 params  => [ $hostId ],
441                 id  => 1,
442             };
444             my $hres = $main::opsi_client->call($main::opsi_url, $callobj);
445             if (not &check_opsi_res($hres)){
446                 my $htmp= $hres->result->{$hostId};
448                 # check state != not_installed or action == setup -> load and add
449                 foreach my $product (@{$htmp}){
451                     if (!defined ($r{$product->{'productId'}})){
452                         next;
453                     }
455                     # Now we've a couple of hashes...
456                     if ($product->{'installationStatus'} ne "not_installed" or
457                             $product->{'actionRequest'} eq "setup"){
458                         my $state= "<state>".$product->{'installationStatus'}."</state><action>".$product->{'actionRequest'}."</action>";
460                         $callobj = {
461                             method  => 'getProduct_hash',
462                             params  => [ $product->{'productId'} ],
463                             id  => 1,
464                         };
466                         my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
467                         if (not &check_opsi_res($sres)){
468                             my $tres= $sres->result;
470                             my $name= xml_quote($tres->{'name'});
471                             my $r= $product->{'productId'};
472                             my $description= xml_quote($tres->{'description'});
473                             $name=~ s/\//\\\//;
474                             $description=~ s/\//\\\//;
475                             $xml_msg=~ s/<xxx><\/xxx>/\n<item><productId>$r<\/productId><name><\/name><description>$description<\/description><\/item>$state<xxx><\/xxx>/;
476                         }
477                     }
478                 }
480             }
482         } else {
483             foreach my $r (@{$res->result}) {
484                 $callobj = {
485                     method  => 'getProduct_hash',
486                     params  => [ $r ],
487                     id  => 1,
488                 };
490                 my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
491                 if (not &check_opsi_res($sres)){
492                     my $tres= $sres->result;
494                     my $name= xml_quote($tres->{'name'});
495                     my $description= xml_quote($tres->{'description'});
496                     $name=~ s/\//\\\//;
497                     $description=~ s/\//\\\//;
498                     $xml_msg=~ s/<xxx><\/xxx>/\n<item><productId>$r<\/productId><name><\/name><description>$description<\/description><\/item><xxx><\/xxx>/;
499                 }
500             }
502         }
503     }
504     $xml_msg=~ s/<xxx><\/xxx>//;
506     # Return message
507     return ( $xml_msg );
511 ## @method opsi_get_product_properties
512 # Get product properties for a product and a specific host or gobally for a product.
513 # @param msg - STRING - xml message with tags productId and optional hostId
514 # @param msg_hash - HASHREF - message information parsed into a hash
515 # @param session_id - INTEGER - POE session id of the processing of this message
516 # @return out_msg - STRING - feedback to GOsa in success and error case
517 sub opsi_get_product_properties {
518     my ($msg, $msg_hash, $session_id) = @_;
519     my $header = @{$msg_hash->{'header'}}[0];
520     my $source = @{$msg_hash->{'source'}}[0];
521     my $target = @{$msg_hash->{'target'}}[0];
522     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
523     my ($hostId, $productId);
524     my $xml_msg;
526     # Build return message with twisted target and source
527     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
528     if (defined $forward_to_gosa) {
529         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
530     }
532     # Sanity check of needed parameter
533     if ((not exists $msg_hash->{'productId'}) || (@{$msg_hash->{'productId'}} != 1))  {
534         &add_content2xml_hash($out_hash, "error_string", "no productId specified or productId tag invalid");
535         &add_content2xml_hash($out_hash, "error", "productId");
536         &main::daemon_log("$session_id ERROR: no productId specified or productId tag invalid: $msg", 1); 
538         # Return message
539         return ( &create_xml_string($out_hash) );
540     }
542     # Get productid
543     $productId = @{$msg_hash->{'productId'}}[0];
544     &add_content2xml_hash($out_hash, "producId", "$productId");
546     # Get hostID if defined
547     if (defined @{$msg_hash->{'hostId'}}[0]){
548       $hostId = @{$msg_hash->{'hostId'}}[0];
549       &add_content2xml_hash($out_hash, "hostId", $hostId);
550     }
552     # Load actions
553     my $callobj = {
554       method  => 'getPossibleProductActions_list',
555       params  => [ $productId ],
556       id  => 1,
557     };
558     my $res = $main::opsi_client->call($main::opsi_url, $callobj);
559     if (not &check_opsi_res($res)){
560       foreach my $action (@{$res->result}){
561         &add_content2xml_hash($out_hash, "action", $action);
562       }
563     }
565     # Add place holder
566     &add_content2xml_hash($out_hash, "xxx", "");
568     # Move to XML string
569     $xml_msg= &create_xml_string($out_hash);
571     # JSON Query
572     if (defined $hostId){
573       $callobj = {
574           method  => 'getProductProperties_hash',
575           params  => [ $productId, $hostId ],
576           id  => 1,
577       };
578     } else {
579       $callobj = {
580           method  => 'getProductProperties_hash',
581           params  => [ $productId ],
582           id  => 1,
583       };
584     }
586     $res = $main::opsi_client->call($main::opsi_url, $callobj);
587     if (not &check_opsi_res($res)){
588         my $r= $res->result;
589         foreach my $key (keys %{$r}) {
590             my $item= "\n<item>";
591             my $value= $r->{$key};
592             if (UNIVERSAL::isa( $value, "ARRAY" )){
593                 foreach my $subval (@{$value}){
594                     $item.= "<$key>".xml_quote($subval)."</$key>";
595                 }
596             } else {
597                 $item.= "<$key>".xml_quote($value)."</$key>";
598             }
599             $item.= "</item>";
600             $xml_msg=~ s/<xxx><\/xxx>/$item<xxx><\/xxx>/;
601         }
602     }
604     $xml_msg=~ s/<xxx><\/xxx>//;
606     # Return message
607     return ( $xml_msg );
611 ## @method opsi_set_product_properties
612 # Set product properities for a specific host or globaly. Message needs one xml tag 'item' and within one xml tag 'name' and 'value'. The xml tags action and state are optional.
613 # @param msg - STRING - xml message with tags productId, action, state and optional hostId, action and state
614 # @param msg_hash - HASHREF - message information parsed into a hash
615 # @param session_id - INTEGER - POE session id of the processing of this message
616 # @return out_msg - STRING - feedback to GOsa in success and error case
617 sub opsi_set_product_properties {
618     my ($msg, $msg_hash, $session_id) = @_;
619     my $header = @{$msg_hash->{'header'}}[0];
620     my $source = @{$msg_hash->{'source'}}[0];
621     my $target = @{$msg_hash->{'target'}}[0];
622     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
623     my ($productId, $hostId);
625     # Build return message with twisted target and source
626     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
627     if (defined $forward_to_gosa) {
628         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
629     }
631     # Sanity check of needed parameter
632     if ((not exists $msg_hash->{'productId'}) || (@{$msg_hash->{'productId'}} != 1))  {
633         &add_content2xml_hash($out_hash, "error_string", "no productId specified or productId tag invalid");
634         &add_content2xml_hash($out_hash, "error", "productId");
635         &main::daemon_log("$session_id ERROR: no productId specified or productId tag invalid: $msg", 1); 
636         return ( &create_xml_string($out_hash) );
637     }
638     if (not exists $msg_hash->{'item'}) {
639         &add_content2xml_hash($out_hash, "error_string", "message needs one xml-tag 'item' and within the xml-tags 'name' and 'value'");
640         &add_content2xml_hash($out_hash, "error", "item");
641         &main::daemon_log("$session_id ERROR: message needs one xml-tag 'item' and within the xml-tags 'name' and 'value': $msg", 1); 
642         return ( &create_xml_string($out_hash) );
643     } else {
644         if ((not exists @{$msg_hash->{'item'}}[0]->{'name'}) || (@{@{$msg_hash->{'item'}}[0]->{'name'}} != 1 )) {
645             &add_content2xml_hash($out_hash, "error_string", "message needs within the xml-tag 'item' one xml-tags 'name'");
646             &add_content2xml_hash($out_hash, "error", "name");
647             &main::daemon_log("$session_id ERROR: message needs within the xml-tag 'item' one xml-tags 'name': $msg", 1); 
648             return ( &create_xml_string($out_hash) );
649         }
650         if ((not exists @{$msg_hash->{'item'}}[0]->{'value'}) || (@{@{$msg_hash->{'item'}}[0]->{'value'}} != 1 )) {
651             &add_content2xml_hash($out_hash, "error_string", "message needs within the xml-tag 'item' one xml-tags 'value'");
652             &add_content2xml_hash($out_hash, "error", "value");
653             &main::daemon_log("$session_id ERROR: message needs within the xml-tag 'item' one xml-tags 'value': $msg", 1); 
654             return ( &create_xml_string($out_hash) );
655         }
656     }
657     if ((exists $msg_hash->{'hostId'}) && (@{$msg_hash->{'hostId'}} != 1))  {
658         &add_content2xml_hash($out_hash, "error_string", "hostId contains no or more than one values");
659         &add_content2xml_hash($out_hash, "error", "hostId");
660         &main::daemon_log("$session_id ERROR: hostId contains no or more than one values: $msg", 1); 
661         return ( &create_xml_string($out_hash) );
662     }
664         
665     # Get productId
666     $productId =  @{$msg_hash->{'productId'}}[0];
667     &add_content2xml_hash($out_hash, "productId", $productId);
669     # Get hostID if defined
670     if (exists $msg_hash->{'hostId'}){
671         $hostId = @{$msg_hash->{'hostId'}}[0];
672         &add_content2xml_hash($out_hash, "hostId", $hostId);
673     }
675     # Set product states if requested
676     if (defined @{$msg_hash->{'action'}}[0]){
677         &_set_action($productId, @{$msg_hash->{'action'}}[0], $hostId);
678     }
679     if (defined @{$msg_hash->{'state'}}[0]){
680         &_set_state($productId, @{$msg_hash->{'state'}}[0], $hostId);
681     }
683     # Find properties
684     foreach my $item (@{$msg_hash->{'item'}}){
685         # JSON Query
686         my $callobj;
688         if (defined $hostId){
689             $callobj = {
690                 method  => 'setProductProperty',
691                 params  => [ $productId, $item->{'name'}[0], $item->{'value'}[0], $hostId ],
692                 id  => 1,
693             };
694         } else {
695             $callobj = {
696                 method  => 'setProductProperty',
697                 params  => [ $productId, $item->{'name'}[0], $item->{'value'}[0] ],
698                 id  => 1,
699             };
700         }
702         my $res = $main::opsi_client->call($main::opsi_url, $callobj);
703         my ($res_err, $res_err_string) = &check_opsi_res($res);
705         if ($res_err){
706             &man::daemon_log("$session_id ERROR: communication failed while setting '".$item->{'name'}[0]."': ".$res_err_string, 1);
707             &add_content2xml_hash($out_hash, "error", $res_err_string);
708         }
709     }
712     # Return message
713     return ( &create_xml_string($out_hash) );
717 ## @method opsi_get_client_hardware
718 # Reports client hardware inventory.
719 # @param msg - STRING - xml message with tag hostId
720 # @param msg_hash - HASHREF - message information parsed into a hash
721 # @param session_id - INTEGER - POE session id of the processing of this message
722 # @return out_msg - STRING - feedback to GOsa in success and error case
723 sub opsi_get_client_hardware {
724     my ($msg, $msg_hash, $session_id) = @_;
725     my $header = @{$msg_hash->{'header'}}[0];
726     my $source = @{$msg_hash->{'source'}}[0];
727     my $target = @{$msg_hash->{'target'}}[0];
728     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
729     my $hostId;
730     my $error = 0;
731     my $xml_msg;
733     # Build return message with twisted target and source
734     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
735     if (defined $forward_to_gosa) {
736       &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
737     }
739     # Sanity check of needed parameter
740     if ((exists $msg_hash->{'hostId'}) && (@{$msg_hash->{'hostId'}} != 1))  {
741         $error++;
742         &add_content2xml_hash($out_hash, "error_string", "hostId contains no or more than one values");
743         &add_content2xml_hash($out_hash, "error", "hostId");
744         &main::daemon_log("$session_id ERROR: hostId contains no or more than one values: $msg", 1); 
745     }
747     if (not $error) {
749     # Get hostID
750         $hostId = @{$msg_hash->{'hostId'}}[0];
751         &add_content2xml_hash($out_hash, "hostId", "$hostId");
752         &add_content2xml_hash($out_hash, "xxx", "");
753     }    
755     # Move to XML string
756     $xml_msg= &create_xml_string($out_hash);
757     
758     if (not $error) {
760     # JSON Query
761         my $callobj = {
762             method  => 'getHardwareInformation_hash',
763             params  => [ $hostId ],
764             id  => 1,
765         };
767         my $res = $main::opsi_client->call($main::opsi_url, $callobj);
768         if (not &check_opsi_res($res)){
769             my $result= $res->result;
770             foreach my $r (keys %{$result}){
771                 my $item= "\n<item><id>".xml_quote($r)."</id>";
772                 my $value= $result->{$r};
773                 foreach my $sres (@{$value}){
775                     foreach my $dres (keys %{$sres}){
776                         if (defined $sres->{$dres}){
777                             $item.= "<$dres>".xml_quote($sres->{$dres})."</$dres>";
778                         }
779                     }
781                 }
782                 $item.= "</item>";
783                 $xml_msg=~ s%<xxx></xxx>%$item<xxx></xxx>%;
785             }
786         }
788         $xml_msg=~ s/<xxx><\/xxx>//;
790     }
792     # Return message
793     return ( $xml_msg );
797 ## @method opsi_list_clients
798 # Reports all Opsi clients. 
799 # @param msg - STRING - xml message 
800 # @param msg_hash - HASHREF - message information parsed into a hash
801 # @param session_id - INTEGER - POE session id of the processing of this message
802 # @return out_msg - STRING - feedback to GOsa in success and error case
803 sub opsi_list_clients {
804     my ($msg, $msg_hash, $session_id) = @_;
805     my $header = @{$msg_hash->{'header'}}[0];
806     my $source = @{$msg_hash->{'source'}}[0];
807     my $target = @{$msg_hash->{'target'}}[0];
808     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
810     # Build return message with twisted target and source
811     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
812     if (defined $forward_to_gosa) {
813       &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
814     }
815     &add_content2xml_hash($out_hash, "xxx", "");
817     # Move to XML string
818     my $xml_msg= &create_xml_string($out_hash);
820     # JSON Query
821     my $callobj = {
822         method  => 'getClients_listOfHashes',
823         params  => [ ],
824         id  => 1,
825     };
826     my $res = $main::opsi_client->call($main::opsi_url, $callobj);
827     if (not &check_opsi_res($res)){
828         foreach my $host (@{$res->result}){
829             my $item= "<item><name>".$host->{'hostId'}."</name>";
830             if (defined($host->{'description'})){
831                 $item.= "<description>".xml_quote($host->{'description'})."</description>";
832             }
833             if (defined($host->{'notes'})){
834                 $item.= "<notes>".xml_quote($host->{'notes'})."</notes>";
835             }
837             $callobj = {
838               method  => 'getIpAddress',
839               params  => [ $host->{'hostId'} ],
840               id  => 1,
841             };
842             my $sres= $main::opsi_client->call($main::opsi_url, $callobj);
843             if ( not &check_opsi_res($sres)){
844               $item.= "<ip>".xml_quote($sres->result)."</ip>";
845             }
847             $callobj = {
848               method  => 'getMacAddress',
849               params  => [ $host->{'hostId'} ],
850               id  => 1,
851             };
852             $sres= $main::opsi_client->call($main::opsi_url, $callobj);
853             if ( not &check_opsi_res($sres)){
854                 $item.= "<mac>".xml_quote($sres->result)."</mac>";
855             }
856             $item.= "</item>";
857             $xml_msg=~ s%<xxx></xxx>%$item<xxx></xxx>%;
858         }
859     }
861     $xml_msg=~ s/<xxx><\/xxx>//;
862     return ( $xml_msg );
866 ## @method opsi_get_client_software
867 # Reports client software inventory.
868 # @param msg - STRING - xml message with tag hostId
869 # @param msg_hash - HASHREF - message information parsed into a hash
870 # @param session_id - INTEGER - POE session id of the processing of this message
871 # @return out_msg - STRING - feedback to GOsa in success and error case
872 sub opsi_get_client_software {
873     my ($msg, $msg_hash, $session_id) = @_;
874     my $header = @{$msg_hash->{'header'}}[0];
875     my $source = @{$msg_hash->{'source'}}[0];
876     my $target = @{$msg_hash->{'target'}}[0];
877     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
878     my $error = 0;
879     my $hostId;
880     my $xml_msg;
882     # Build return message with twisted target and source
883     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
884     if (defined $forward_to_gosa) {
885       &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
886     }
888     # Sanity check of needed parameter
889     if ((exists $msg_hash->{'hostId'}) && (@{$msg_hash->{'hostId'}} != 1))  {
890         $error++;
891         &add_content2xml_hash($out_hash, "error_string", "hostId contains no or more than one values");
892         &add_content2xml_hash($out_hash, "error", "hostId");
893         &main::daemon_log("$session_id ERROR: hostId contains no or more than one values: $msg", 1); 
894     }
896     if (not $error) {
898     # Get hostID
899         $hostId = @{$msg_hash->{'hostId'}}[0];
900         &add_content2xml_hash($out_hash, "hostId", "$hostId");
901         &add_content2xml_hash($out_hash, "xxx", "");
902     }
904     $xml_msg= &create_xml_string($out_hash);
906     if (not $error) {
908     # JSON Query
909         my $callobj = {
910             method  => 'getSoftwareInformation_hash',
911             params  => [ $hostId ],
912             id  => 1,
913         };
915         my $res = $main::opsi_client->call($main::opsi_url, $callobj);
916         if (not &check_opsi_res($res)){
917             my $result= $res->result;
918 # TODO : Ist das hier schon fertig???   
919         }
921         $xml_msg=~ s/<xxx><\/xxx>//;
923     }
925     # Return message
926     return ( $xml_msg );
930 ## @method opsi_get_local_products
931 # Reports product for given hostId or globally.
932 # @param msg - STRING - xml message with optional tag hostId
933 # @param msg_hash - HASHREF - message information parsed into a hash
934 # @param session_id - INTEGER - POE session id of the processing of this message
935 # @return out_msg - STRING - feedback to GOsa in success and error case
936 sub opsi_get_local_products {
937     my ($msg, $msg_hash, $session_id) = @_;
938     my $header = @{$msg_hash->{'header'}}[0];
939     my $source = @{$msg_hash->{'source'}}[0];
940     my $target = @{$msg_hash->{'target'}}[0];
941     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
942     my $hostId;
944     # Build return message with twisted target and source
945     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
946     if (defined $forward_to_gosa) {
947         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
948     }
949     &add_content2xml_hash($out_hash, "xxx", "");
951     # Get hostID if defined
952     if ((exists $msg_hash->{'hostId'}) && (@{$msg_hash->{'hostId'}} == 1))  {
953         $hostId = @{$msg_hash->{'hostId'}}[0];
954         &add_content2xml_hash($out_hash, "hostId", $hostId);
955     }
957     # Move to XML string
958     my $xml_msg= &create_xml_string($out_hash);
960     # For hosts, only return the products that are or get installed
961     my $callobj;
962     $callobj = {
963         method  => 'getLocalBootProductIds_list',
964         params  => [ ],
965         id  => 1,
966     };
968     my $res = $main::opsi_client->call($main::opsi_url, $callobj);
969     my %r = ();
970     for (@{$res->result}) { $r{$_} = 1 }
972     if (not &check_opsi_res($res)){
974         if (defined $hostId){
975             $callobj = {
976                 method  => 'getProductStates_hash',
977                 params  => [ $hostId ],
978                 id  => 1,
979             };
981             my $hres = $main::opsi_client->call($main::opsi_url, $callobj);
982             if (not &check_opsi_res($hres)){
983                 my $htmp= $hres->result->{$hostId};
985                 # Check state != not_installed or action == setup -> load and add
986                 foreach my $product (@{$htmp}){
988                     if (!defined ($r{$product->{'productId'}})){
989                         next;
990                     }
992                     # Now we've a couple of hashes...
993                     if ($product->{'installationStatus'} ne "not_installed" or
994                             $product->{'actionRequest'} eq "setup"){
995                         my $state= "<state>".$product->{'installationStatus'}."</state><action>".$product->{'actionRequest'}."</action>";
997                         $callobj = {
998                             method  => 'getProduct_hash',
999                             params  => [ $product->{'productId'} ],
1000                             id  => 1,
1001                         };
1003                         my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
1004                         if (not &check_opsi_res($sres)){
1005                             my $tres= $sres->result;
1007                             my $name= xml_quote($tres->{'name'});
1008                             my $r= $product->{'productId'};
1009                             my $description= xml_quote($tres->{'description'});
1010                             $name=~ s/\//\\\//;
1011                             $description=~ s/\//\\\//;
1012                             $xml_msg=~ s/<xxx><\/xxx>/\n<item><productId>$r<\/productId><name><\/name><description>$description<\/description><\/item>$state<xxx><\/xxx>/;
1013                         }
1015                     }
1016                 }
1018             }
1020         } else {
1021             foreach my $r (@{$res->result}) {
1022                 $callobj = {
1023                     method  => 'getProduct_hash',
1024                     params  => [ $r ],
1025                     id  => 1,
1026                 };
1028                 my $sres = $main::opsi_client->call($main::opsi_url, $callobj);
1029                 if (not &check_opsi_res($sres)){
1030                     my $tres= $sres->result;
1032                     my $name= xml_quote($tres->{'name'});
1033                     my $description= xml_quote($tres->{'description'});
1034                     $name=~ s/\//\\\//;
1035                     $description=~ s/\//\\\//;
1036                     $xml_msg=~ s/<xxx><\/xxx>/\n<item><productId>$r<\/productId><name><\/name><description>$description<\/description><\/item><xxx><\/xxx>/;
1037                 }
1039             }
1041         }
1042     }
1044     $xml_msg=~ s/<xxx><\/xxx>//;
1046     # Retrun Message
1047     return ( $xml_msg );
1051 ## @method opsi_del_client
1052 # Deletes a client from Opsi.
1053 # @param msg - STRING - xml message with tag hostId
1054 # @param msg_hash - HASHREF - message information parsed into a hash
1055 # @param session_id - INTEGER - POE session id of the processing of this message
1056 # @return out_msg - STRING - feedback to GOsa in success and error case
1057 sub opsi_del_client {
1058     my ($msg, $msg_hash, $session_id) = @_;
1059     my $header = @{$msg_hash->{'header'}}[0];
1060     my $source = @{$msg_hash->{'source'}}[0];
1061     my $target = @{$msg_hash->{'target'}}[0];
1062     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
1063     my $hostId;
1064     my $error = 0;
1066     # Build return message with twisted target and source
1067     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
1068     if (defined $forward_to_gosa) {
1069       &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
1070     }
1072     # Sanity check of needed parameter
1073     if ((exists $msg_hash->{'hostId'}) && (@{$msg_hash->{'hostId'}} != 1))  {
1074         $error++;
1075         &add_content2xml_hash($out_hash, "error_string", "hostId contains no or more than one values");
1076         &add_content2xml_hash($out_hash, "error", "hostId");
1077         &main::daemon_log("$session_id ERROR: hostId contains no or more than one values: $msg", 1); 
1078     }
1080     if (not $error) {
1082     # Get hostID
1083         $hostId = @{$msg_hash->{'hostId'}}[0];
1084         &add_content2xml_hash($out_hash, "hostId", "$hostId");
1086     # JSON Query
1087         my $callobj = {
1088             method  => 'deleteClient',
1089             params  => [ $hostId ],
1090             id  => 1,
1091         };
1092         my $res = $main::opsi_client->call($main::opsi_url, $callobj);
1093     }
1095     # Move to XML string
1096     my $xml_msg= &create_xml_string($out_hash);
1098     # Return message
1099     return ( $xml_msg );
1103 ## @method opsi_install_client
1104 # Set a client in Opsi to install and trigger a wake on lan message (WOL).  
1105 # @param msg - STRING - xml message with tags hostId, macaddress
1106 # @param msg_hash - HASHREF - message information parsed into a hash
1107 # @param session_id - INTEGER - POE session id of the processing of this message
1108 # @return out_msg - STRING - feedback to GOsa in success and error case
1109 sub opsi_install_client {
1110     my ($msg, $msg_hash, $session_id) = @_;
1111     my $header = @{$msg_hash->{'header'}}[0];
1112     my $source = @{$msg_hash->{'source'}}[0];
1113     my $target = @{$msg_hash->{'target'}}[0];
1114     my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
1117     my ($hostId, $macaddress);
1119     my $error = 0;
1120     my @out_msg_l;
1122     # Build return message with twisted target and source
1123     my $out_hash = &main::create_xml_hash("answer_$header", $main::server_address, $source);
1124     if (defined $forward_to_gosa) {
1125         &add_content2xml_hash($out_hash, "forward_to_gosa", $forward_to_gosa);
1126     }
1128     # Sanity check of needed parameter
1129     if ((not exists $msg_hash->{'hostId'}) || (@{$msg_hash->{'hostId'}} != 1))  {
1130         $error++;
1131         &add_content2xml_hash($out_hash, "error_string", "no hostId specified or hostId tag invalid");
1132         &add_content2xml_hash($out_hash, "error", "hostId");
1133         &main::daemon_log("$session_id ERROR: no hostId specified or hostId tag invalid: $msg", 1); 
1134     }
1135     if ((not exists $msg_hash->{'macaddress'}) || (@{$msg_hash->{'macaddress'}} != 1))  {
1136         $error++;
1137         &add_content2xml_hash($out_hash, "error_string", "no macaddress specified or macaddress tag invalid");
1138         &add_content2xml_hash($out_hash, "error", "macaddress");
1139         &main::daemon_log("$session_id ERROR: no macaddress specified or macaddress tag invalid: $msg", 1); 
1140     } else {
1141         if ((exists $msg_hash->{'macaddress'}) && 
1142                 ($msg_hash->{'macaddress'}[0] =~ /^([0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2})$/i)) {  
1143             $macaddress = $1; 
1144         } else { 
1145             $error ++; 
1146             &add_content2xml_hash($out_hash, "error_string", "given mac address is not correct");
1147             &add_content2xml_hash($out_hash, "error", "macaddress");
1148             &main::daemon_log("$session_id ERROR: given mac address is not correct: $msg", 1); 
1149         }
1150     }
1152     if (not $error) {
1154     # Get hostId
1155         $hostId = @{$msg_hash->{'hostId'}}[0];
1156         &add_content2xml_hash($out_hash, "hostId", "$hostId");
1158         # Load all products for this host with status != "not_installed" or actionRequest != "none"
1159         my $callobj = {
1160             method  => 'getProductStates_hash',
1161             params  => [ $hostId ],
1162             id  => 1,
1163         };
1165         my $hres = $main::opsi_client->call($main::opsi_url, $callobj);
1166         if (not &check_opsi_res($hres)){
1167             my $htmp= $hres->result->{$hostId};
1169             # check state != not_installed or action == setup -> load and add
1170             foreach my $product (@{$htmp}){
1171                 # Now we've a couple of hashes...
1172                 if ($product->{'installationStatus'} ne "not_installed" or
1173                         $product->{'actionRequest'} ne "none"){
1175                     # Do an action request for all these -> "setup".
1176                     $callobj = {
1177                         method  => 'setProductActionRequest',
1178                         params  => [ $product->{'productId'}, $hostId, "setup" ],
1179                         id  => 1,
1180                     };
1181                     my $res = $main::opsi_client->call($main::opsi_url, $callobj);
1182                     my ($res_err, $res_err_string) = &check_opsi_res($res);
1183                     if ($res_err){
1184                         &main::daemon_log("$session_id ERROR: cannot set product action request for '$hostId': ".$product->{'productId'}, 1);
1185                     } else {
1186                         &main::daemon_log("$session_id INFO: requesting 'setup' for '".$product->{'productId'}."' on $hostId", 1);
1187                     }
1188                 }
1189             }
1190         }
1191         push(@out_msg_l, &create_xml_string($out_hash));
1192     
1194     # Build wakeup message for client
1195         if (not $error) {
1196             my $wakeup_hash = &create_xml_hash("trigger_wake", "GOSA", "KNOWN_SERVER");
1197             &add_content2xml_hash($wakeup_hash, 'macAddress', $macaddress);
1198             my $wakeup_msg = &create_xml_string($wakeup_hash);
1199             push(@out_msg_l, $wakeup_msg);
1201             # invoke trigger wake for this gosa-si-server
1202             &main::server_server_com::trigger_wake($wakeup_msg, $wakeup_hash, $session_id);
1203         }
1204     }
1205     
1206     # Return messages
1207     return @out_msg_l;
1211 ## @method _set_action
1212 # Set action for an Opsi client
1213 # @param product - STRING - Opsi product
1214 # @param action - STRING - action
1215 # @param hostId - STRING - Opsi hostId
1216 sub _set_action {
1217   my $product= shift;
1218   my $action = shift;
1219   my $hostId = shift;
1220   my $callobj;
1222   $callobj = {
1223     method  => 'setProductActionRequest',
1224     params  => [ $product, $hostId, $action],
1225     id  => 1,
1226   };
1228   $main::opsi_client->call($main::opsi_url, $callobj);
1231 ## @method _set_state
1232 # Set state for an Opsi client
1233 # @param product - STRING - Opsi product
1234 # @param action - STRING - state
1235 # @param hostId - STRING - Opsi hostId
1236 sub _set_state {
1237   my $product = shift;
1238   my $state = shift;
1239   my $hostId = shift;
1240   my $callobj;
1242   $callobj = {
1243     method  => 'setProductState',
1244     params  => [ $product, $hostId, $state ],
1245     id  => 1,
1246   };
1248   $main::opsi_client->call($main::opsi_url, $callobj);
1251 1;