centreon-plugins/network/fritzbox/mode/libgetdata.pm

77 lines
2.1 KiB
Perl
Raw Normal View History

#
2019-01-09 09:57:11 +01:00
# Copyright 2019 Centreon (http://www.centreon.com/)
2015-07-21 11:51:02 +02:00
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
2014-03-22 18:10:38 +01:00
package network::fritzbox::mode::libgetdata;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
2014-03-24 19:06:49 +01:00
use SOAP::Lite;
2014-03-24 19:04:23 +01:00
my $soap;
my $response;
2014-03-24 19:04:23 +01:00
sub init {
my ($self, %options) = @_;
my $proxy = 'http://' . $self->{option_results}->{hostname} . ':' . $self->{option_results}->{port} . $options{pfad};
$soap = SOAP::Lite->new(
2014-03-24 19:04:23 +01:00
proxy => $proxy,
uri => $options{uri},
timeout => $self->{option_results}->{timeout}
);
2014-03-24 19:04:23 +01:00
$soap->on_fault(
sub { # SOAP fault handler
my $soap = shift;
my $res = shift;
2014-03-24 19:04:23 +01:00
if(ref($res)) {
chomp( my $err = $res->faultstring );
$self->{output}->output_add(severity => 'UNKNOWN',
short_msg => "SOAP Fault: $err");
} else {
chomp( my $err = $soap->transport->status );
$self->{output}->output_add(severity => 'UNKNOWN',
short_msg => "Transport error: $err");
}
$self->{output}->display();
$self->{output}->exit();
}
);
}
2014-03-24 19:04:23 +01:00
sub call {
my ($self, %options) = @_;
my $method = $options{soap_method};
$response = $soap->$method();
}
2014-03-24 19:04:23 +01:00
sub value {
my ($self, %options) = @_;
my $value = $response->valueof($options{path});
return $value;
}
1;