1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-03-23 02:42:02 +01:00
Files
CheckServer/lib/OSS_SNMP-master/src/OSS_SNMP/Platform.php
2020-10-04 17:14:00 +02:00

286 lines
6.4 KiB
PHP

<?php
/*
Copyright (c) 2012 - 2013, Open Source Solutions Limited, Dublin, Ireland
All rights reserved.
Contact: Barry O'Donovan - barry (at) opensolutions (dot) ie
http://www.opensolutions.ie/
This file is part of the OSS_SNMP package.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Open Source Solutions Limited nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
namespace OSS_SNMP;
/**
* A class for parsing device / host / platform details
*
* @copyright Copyright (c) 2012 - 2013, Open Source Solutions Limited, Dublin, Ireland
* @author Barry O'Donovan <barry@opensolutions.ie>
*/
class Platform
{
/**
* The platform vendor
*
* @var string The platform vendor
*/
protected $_vendor = 'Unknown';
/**
* The platform model
*
* @var string The platform model
*/
protected $_model = 'Unknown';
/**
* The platform operating system
*
* @var string The platform operating system
*/
protected $_os = 'Unknown';
/**
* The platform operating system version
*
* @var string The platform operating system version
*/
protected $_osver = 'Unknown';
/**
* The platform operating system (compile) date
*
* @var string The platform operating system (compile) date
*/
protected $_osdate = null;
/**
* The platform serial number
*
* @var string The platform serial number
*/
protected $_serial = '(not implemented)';
/**
* The \OSS_SNMP\SNMP object
*
* @var string The \OSS_SNMP\SNMP object
*/
protected $_snmpHost;
/**
* The constructor.
*
* @param SNMP $snmpHost The SNMP Host object
* @return Platform An instance of $this (for fluent interfaces)
*/
public function __construct( $snmpHost )
{
$this->setSNMPHost( $snmpHost );
$this->parse();
return $this;
}
public function parse()
{
// query the platform for it's description and parse it for details
$sysDescr = $this->getSNMPHost()->useSystem()->description();
try {
$sysObjectId = $this->getSNMPHost()->useSystem()->systemObjectID();
} catch( Exception $e ){
$sysObjectId = null;
}
// there's possibly a better way to do this...?
foreach( glob( __DIR__ . '/Platforms/vendor_*.php' ) as $f )
include( $f );
}
/**
* Set the SNMPT Host
*
* @param \OSS_SNMP\SNMP $s The SNMP Host object
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setSNMPHost( $s )
{
$this->_snmpHost = $s;
return $this;
}
/**
* Get the SNMPHost object
*
* @return \OSS_SNMP\SNMP The SNMP object
*/
public function getSNMPHost()
{
return $this->_snmpHost;
}
/**
* Set vendor
*
* @param string $s
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setVendor( $s )
{
$this->_vendor = $s;
return $this;
}
/**
* Set model
*
* @param string $s
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setModel( $s )
{
$this->_model = $s;
return $this;
}
/**
* Set operating system
*
* @param string $s
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setOs( $s )
{
$this->_os = $s;
return $this;
}
/**
* Set OS version
*
* @param string $s
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setOsVersion( $s )
{
$this->_osver = $s;
return $this;
}
/**
* Set OS date
*
* @param string $s
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setOsDate( $s )
{
$this->_osdate = $s;
return $this;
}
/**
* Set the serial number
*
* @param string $s
* @return \OSS_SNMP\Platform For fluent interfaces
*/
public function setSerialNumber( $s )
{
$this->_serial = $s;
return $this;
}
/**
* Get vendor
*
* @return string
*/
public function getVendor()
{
return $this->_vendor;
}
/**
* Get model
*
* @return string
*/
public function getModel()
{
return $this->_model;
}
/**
* Get operating system
*
* @return string
*/
public function getOs()
{
return $this->_os;
}
/**
* Get OS version
*
* @return string
*/
public function getOsVersion()
{
return $this->_osver;
}
/**
* Get OS date
*
* return \DateTime
*/
public function getOsDate()
{
return $this->_osdate;
}
/**
* Get the serial number
*
* return string
*/
public function getSerialNumber()
{
return $this->_serial;
}
}