1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
###############################################################################
## Copyright 2005-2016 OCSInventory-NG/OCSInventory-Server contributors.
## See the Contributors file for more details about them.
##
## This file is part of OCSInventory-NG/OCSInventory-ocsreports.
##
## OCSInventory-NG/OCSInventory-Server is free software: you can redistribute
## it and/or modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation, either version 2 of the License,
## or (at your option) any later version.
##
## OCSInventory-NG/OCSInventory-Server is distributed in the hope that it
## will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with OCSInventory-NG/OCSInventory-ocsreports. if not, write to the
## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
## MA 02110-1301, USA.
################################################################################
package Apache::Ocsinventory::Interface::Ipdiscover;
use Apache::Ocsinventory::Map;
use Apache::Ocsinventory::Interface::Database;
use Apache::Ocsinventory::Interface::Internals;
use XML::Simple;
use strict;
require Exporter;
our @ISA = qw /Exporter/;
our @EXPORT = qw /
get_ipdiscover_devices
ipdiscover_tag
ipdiscover_untag
ipdiscover_remove
ipdiscover_add_type
ipdiscover_del_type
/;
sub get_ipdiscover_devices{
my ($date, $offset, $nInv ) = @_;
$offset = $offset*$ENV{OCS_OPT_WEB_SERVICE_RESULTS_LIMIT};
my $sth;
if( !$nInv ){
$sth = get_sth("SELECT * FROM netmap WHERE DATE>? ORDER BY DATE LIMIT $offset, $ENV{OCS_OPT_WEB_SERVICE_RESULTS_LIMIT}", $date);
}
else{
$sth = get_sth("
SELECT *
FROM netmap nm
LEFT JOIN networks nw ON nm.MAC=nw.MACADDR
LEFT JOIN network_devices nd ON nd.MACADDR=nm.MAC
WHERE nd.MACADDR IS NULL AND nw.MACADDR IS NULL
AND DATE>?
ORDER BY nm.DATE
LIMIT $offset, $ENV{OCS_OPT_WEB_SERVICE_RESULTS_LIMIT}", $date);
}
my @result;
while( my $row = $sth->fetchrow_hashref() ){
push @result, &build_xml( $row->{MAC}, $row->{IP}, $row->{MASK}, $row->{DATE}, $row->{NAME} );
}
return XMLout( { IFACE => \@result }, rootName => 'RESULT' );
}
sub ipdiscover_tag {
my ( $device, $description, $type, $user ) = @_;
return send_error('BAD_TYPE') if do_sql('SELECT * FROM devicetype WHERE NAME=?', $type) == 0E0;
return send_error('BAD_USER') if do_sql('SELECT * FROM operators WHERE ID=?', $user) == 0E0;
return do_sql('INSERT INTO network_devices(DESCRIPTION,TYPE,MACADDR,USER) VALUES(?,?,?,?)', ($description, $type, $device, $user ) );
}
sub ipdiscover_untag{
my $device = shift;
return do_sql('DELETE FROM network_devices WHERE MACADDR=?', $device);
}
sub ipdiscover_remove{
my $device = shift;
return do_sql('DELETE FROM network_devices WHERE MACADDR=?', $device);
}
sub ipdiscover_add_type{
my $type = shift;
return 0 if do_sql( 'SELECT * FROM devicetype WHERE NAME=?', $type )!=0E0;
return do_sql( 'INSERT INTO devicetype(NAME) VALUES(?)', $type );
}
sub ipdiscover_del_type{
my $type = shift;
return do_sql( 'DELETE FROM devicetype WHERE NAME=?', $type );
}
sub build_xml{
my ( $mac, $ip, $mask, $date, $name ) = @_;
return {
MAC => [ $mac ],
IP => [ $ip ],
MASK => [ $mask ],
DATE => [ $date ],
NAME => [ $name ]
};
}
1;
|