2019-01-09 18:28:49 +01:00
|
|
|
#
|
2021-02-08 09:55:50 +01:00
|
|
|
# Copyright 2021 Centreon (http://www.centreon.com/)
|
2019-01-09 18:28:49 +01: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.
|
|
|
|
#
|
|
|
|
|
|
|
|
package network::cisco::vcs::restapi::custom::xmlapi;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use centreon::plugins::http;
|
2020-09-25 14:44:30 +02:00
|
|
|
use XML::LibXML::Simple;
|
2019-01-09 18:28:49 +01:00
|
|
|
|
|
|
|
sub new {
|
|
|
|
my ($class, %options) = @_;
|
|
|
|
my $self = {};
|
|
|
|
bless $self, $class;
|
|
|
|
|
|
|
|
if (!defined($options{output})) {
|
|
|
|
print "Class Custom: Need to specify 'output' argument.\n";
|
|
|
|
exit 3;
|
|
|
|
}
|
|
|
|
if (!defined($options{options})) {
|
|
|
|
$options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument.");
|
|
|
|
$options{output}->option_exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!defined($options{noptions})) {
|
2019-03-06 16:47:46 +01:00
|
|
|
$options{options}->add_options(arguments => {
|
2020-09-25 14:44:30 +02:00
|
|
|
'hostname:s' => { name => 'hostname' },
|
|
|
|
'port:s' => { name => 'port' },
|
|
|
|
'proto:s' => { name => 'proto' },
|
|
|
|
'api-username:s' => { name => 'api_username' },
|
|
|
|
'api-password:s' => { name => 'api_password' },
|
|
|
|
'timeout:s' => { name => 'timeout' },
|
|
|
|
'unknown-http-status:s' => { name => 'unknown_http_status' },
|
|
|
|
'warning-http-status:s' => { name => 'warning_http_status' },
|
|
|
|
'critical-http-status:s' => { name => 'critical_http_status' }
|
2019-03-06 16:47:46 +01:00
|
|
|
});
|
2019-01-09 18:28:49 +01:00
|
|
|
}
|
|
|
|
$options{options}->add_help(package => __PACKAGE__, sections => 'XMLAPI OPTIONS', once => 1);
|
|
|
|
|
|
|
|
$self->{output} = $options{output};
|
2019-03-06 16:47:46 +01:00
|
|
|
$self->{http} = centreon::plugins::http->new(%options);
|
2019-01-09 18:28:49 +01:00
|
|
|
|
|
|
|
return $self;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub set_options {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
$self->{option_results} = $options{option_results};
|
|
|
|
}
|
|
|
|
|
2020-07-01 18:15:11 +02:00
|
|
|
sub set_defaults {}
|
2019-01-09 18:28:49 +01:00
|
|
|
|
|
|
|
sub check_options {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
2020-09-25 14:44:30 +02:00
|
|
|
$self->{hostname} = (defined($self->{option_results}->{hostname})) ? $self->{option_results}->{hostname} : '';
|
2019-01-09 18:28:49 +01:00
|
|
|
$self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443;
|
|
|
|
$self->{proto} = (defined($self->{option_results}->{proto})) ? $self->{option_results}->{proto} : 'https';
|
2020-09-25 14:44:30 +02:00
|
|
|
$self->{api_username} = (defined($self->{option_results}->{api_username})) ? $self->{option_results}->{api_username} : '';
|
|
|
|
$self->{api_password} = (defined($self->{option_results}->{api_password})) ? $self->{option_results}->{api_password} : '';
|
|
|
|
$self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 20;
|
|
|
|
$self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status})) ? $self->{option_results}->{unknown_http_status} : '%{http_code} < 200 or %{http_code} >= 300';
|
|
|
|
$self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status})) ? $self->{option_results}->{warning_http_status} : '';
|
|
|
|
$self->{critical_http_status} = (defined($self->{option_results}->{critical_http_status})) ? $self->{option_results}->{critical_http_status} : '';
|
|
|
|
|
|
|
|
if ($self->{hostname} eq '') {
|
2019-01-09 18:28:49 +01:00
|
|
|
$self->{output}->add_option_msg(short_msg => "Need to specify --hostname option.");
|
|
|
|
$self->{output}->option_exit();
|
|
|
|
}
|
2020-09-25 14:44:30 +02:00
|
|
|
if ($self->{api_username} eq '') {
|
|
|
|
$self->{output}->add_option_msg(short_msg => "Need to specify --api-username option.");
|
2019-01-09 18:28:49 +01:00
|
|
|
$self->{output}->option_exit();
|
|
|
|
}
|
2020-09-25 14:44:30 +02:00
|
|
|
if ($self->{api_password} eq '') {
|
|
|
|
$self->{output}->add_option_msg(short_msg => "Need to specify --api-password option.");
|
2019-01-09 18:28:49 +01:00
|
|
|
$self->{output}->option_exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub build_options_for_httplib {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
$self->{option_results}->{hostname} = $self->{hostname};
|
|
|
|
$self->{option_results}->{timeout} = $self->{timeout};
|
|
|
|
$self->{option_results}->{port} = $self->{port};
|
|
|
|
$self->{option_results}->{proto} = $self->{proto};
|
2020-09-25 14:44:30 +02:00
|
|
|
$self->{option_results}->{username} = $self->{api_username};
|
|
|
|
$self->{option_results}->{password} = $self->{api_password};
|
2019-01-09 18:28:49 +01:00
|
|
|
$self->{option_results}->{credentials} = 1;
|
|
|
|
$self->{option_results}->{basic} = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub settings {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
$self->build_options_for_httplib();
|
|
|
|
$self->{http}->set_options(%{$self->{option_results}});
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_hostname {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
return $self->{hostname};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_port {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
|
|
|
return $self->{port};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_endpoint {
|
|
|
|
my ($self, %options) = @_;
|
|
|
|
|
2020-09-25 14:44:30 +02:00
|
|
|
$self->settings();
|
|
|
|
my $content = $self->{http}->request(
|
|
|
|
url_path => $options{endpoint},
|
|
|
|
unknown_status => $self->{unknown_http_status},
|
|
|
|
warning_status => $self->{warning_http_status},
|
|
|
|
critical_status => $self->{critical_http_status}
|
|
|
|
);
|
2019-01-09 18:28:49 +01:00
|
|
|
|
|
|
|
my $xml_result;
|
|
|
|
eval {
|
2020-09-29 11:16:51 +02:00
|
|
|
$SIG{__WARN__} = sub {};
|
2020-09-25 14:44:30 +02:00
|
|
|
$xml_result = XMLin($content, ForceArray => $options{force_array}, KeyAttr => []);
|
2019-01-09 18:28:49 +01:00
|
|
|
};
|
|
|
|
if ($@) {
|
|
|
|
$self->{output}->add_option_msg(short_msg => "Cannot decode xml response: $@");
|
|
|
|
$self->{output}->option_exit();
|
|
|
|
}
|
|
|
|
if (defined($xml_result->{XPathError})) {
|
|
|
|
$self->{output}->add_option_msg(short_msg => "Api return error: " . $xml_result->{XPathError}->{Reason});
|
|
|
|
$self->{output}->option_exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $xml_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
__END__
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Cisco VCS XML API
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
Cisco VCS XML API
|
|
|
|
|
|
|
|
=head1 XMLAPI OPTIONS
|
|
|
|
|
|
|
|
=over 8
|
|
|
|
|
|
|
|
=item B<--hostname>
|
|
|
|
|
|
|
|
API hostname.
|
|
|
|
|
|
|
|
=item B<--port>
|
|
|
|
|
|
|
|
API port (Default: 443)
|
|
|
|
|
|
|
|
=item B<--proto>
|
|
|
|
|
|
|
|
Specify https if needed (Default: 'https')
|
|
|
|
|
2020-09-25 14:44:30 +02:00
|
|
|
=item B<--api-username>
|
2019-01-09 18:28:49 +01:00
|
|
|
|
|
|
|
Set API username
|
|
|
|
|
2020-09-25 14:44:30 +02:00
|
|
|
=item B<--api-password>
|
2019-01-09 18:28:49 +01:00
|
|
|
|
|
|
|
Set API password
|
|
|
|
|
|
|
|
=item B<--timeout>
|
|
|
|
|
|
|
|
Set HTTP timeout
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
B<custom>.
|
|
|
|
|
|
|
|
=cut
|