librenms/includes/discovery/toner.inc.php
Neil Lathwood 7d27b4ec9a fix: Fix toner detection discovery #5391 (#5410)
* fix: Fix toner detection

* final fix for toner detection

* update $sql variable
2017-01-13 09:30:39 -06:00

82 lines
2.7 KiB
PHP

<?php
$valid_toner = array();
if ($device['os_group'] == 'printer') {
echo 'Toner: ';
$oids = snmpwalk_cache_oid($device, 'prtMarkerColorantMarkerIndex', array(), 'Printer-MIB');
if (empty($oids)) {
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesMarkerIndex', $oids, 'Printer-MIB');
}
if (!empty($oids)) {
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesLevel', $oids, 'Printer-MIB');
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesMaxCapacity', $oids, 'Printer-MIB');
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesDescription', $oids, 'Printer-MIB', null, '-OQUsa');
$oids = snmpwalk_cache_oid($device, 'prtMarkerColorantValue', $oids, 'Printer-MIB', null, '-OQUsa');
}
foreach ($oids as $index => $data) {
$last_index = substr($index, strrpos($index, '.') + 1);
$raw_toner = $data['prtMarkerSuppliesLevel'];
$descr = $data['prtMarkerSuppliesDescription'];
$raw_capacity = $data['prtMarkerSuppliesMaxCapacity'];
$raw_toner = $data['prtMarkerSuppliesLevel'];
$toner_oid = ".1.3.6.1.2.1.43.11.1.1.9.$index";
$capacity_oid = ".1.3.6.1.2.1.43.11.1.1.8.$index";
if (empty($raw_toner)) {
$toner_oid = ".1.3.6.1.4.1.367.3.2.1.2.24.1.1.5.$last_index";
$raw_toner = snmp_get($device, $toner_oid, '-Oqv');
}
if (empty($descr)) {
$descr_oid = ".1.3.6.1.4.1.367.3.2.1.2.24.1.1.3.$last_index";
$descr = snmp_get($device, $descr_oid, '-Oqva');
}
if (empty($raw_toner)) {
$raw_toner = snmp_get($device, $toner_oid, '-Oqv');
}
if (!empty($data['prtMarkerColorantValue'])) {
$descr = ucfirst($data['prtMarkerColorantValue']);
}
$type = 'jetdirect';
$capacity = get_toner_capacity($data['prtMarkerSuppliesMaxCapacity']);
$current = get_toner_levels($device, $raw_toner, $capacity);
discover_toner(
$valid_toner,
$device,
$toner_oid,
$last_index,
$type,
$descr,
$capacity_oid,
$capacity,
$current
);
}
}
// Delete removed toners
d_echo("\n Checking valid toner ... \n");
d_echo($valid_toner);
$toners = dbFetchRows("SELECT * FROM toner WHERE device_id = '" . $device['device_id'] . "'");
d_echo($toners);
foreach ($toners as $test_toner) {
$toner_oid = $test_toner['toner_oid'];
$toner_type = $test_toner['toner_type'];
if (!$valid_toner[$toner_type][$toner_oid]) {
echo '-';
dbDelete('toner', '`toner_id` = ?', array($test_toner['toner_id']));
}
}
unset($valid_toner);
echo PHP_EOL;