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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org)
Copyright (C) 2010 Antoine Gallavardin
Copyright (C) 2011-2016 FusionDirectory project
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
class dashboardNetwork extends simplePlugin
{
/* Return plugin information for acl handling */
static function plInfo()
{
return array(
'plShortName' => _('Network'),
'plDescription' => _('Statistics and various information'),
'plObjectType' => array('dashboard'),
'plProvidedAcls' => array()
);
}
static function getAttributesInfo()
{
return array(
'dhcp' => array(
'name' => _('DHCP'),
'attrs' => array(new FakeAttribute('dhcp_infos')),
'template' => get_template_path('network_dhcp.tpl', TRUE, dirname(__FILE__)),
),
'dns' => array(
'name' => _('DNS'),
'attrs' => array(new FakeAttribute('dns_infos')),
'template' => get_template_path('network_dhcp.tpl', TRUE, dirname(__FILE__)),
),
);
}
function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
{
parent::__construct($dn, $object, $parent, $mainTab);
$this->dhcp_infos = $this->dhcp_infos();
if (empty($this->dhcp_infos)) {
unset($this->attributesInfo['dhcp']);
}
$this->dns_infos = $this->dns_infos();
if (empty($this->dns_infos)) {
unset($this->attributesInfo['dns']);
}
}
function dhcp_infos()
{
global $config;
if (!class_available("dhcpService")) {
return array();
}
$ldap = $config->get_ldap_link();
$ldap->cd($config->current['BASE']);
$ldap->search("(objectClass=dhcpServer)", array("cn","dhcpServiceDN"));
$servers = array();
while ($attrs = $ldap->fetch()) {
$zones = array();
$ldap_zone = $config->get_ldap_link();
$ldap_zone->cd($attrs['dhcpServiceDN'][0]);
$ldap_zone->search("(objectClass=dhcpSubnet)", array("cn","dhcpNetMask"));
while ($attrs_zone = $ldap_zone->fetch()) {
$zones[] = array(
'text' => $attrs_zone['cn'][0]."/".$attrs_zone['dhcpNetMask'][0]
);
}
$servers[] = array(
'name' => $attrs['cn'][0],
'link' => objects::link($attrs['dn'], 'server', 'service_serviceDHCP', $attrs, FALSE),
'zones' => $zones
);
}
return $servers;
}
function dns_infos()
{
global $config;
if (!class_available('dnsZone')) {
return array();
}
$servers = array();
$zones = objects::ls('dnsZone', array('zoneName' => 1, 'sOARecord' => 1));
foreach ($zones as $zonedn => $zone) {
list ($fqdn) = explode(' ', $zone['sOARecord']);
list ($cn) = explode('.', $fqdn);
$search = objects::ls('server', NULL, NULL, '(&(cn='.$cn.')(fdDNSZoneDn='.$zonedn.'))');
foreach ($search as $dn => $name) {
if (!isset($servers[$dn])) {
$servers[$dn] = array(
'name' => $name,
'link' => objects::link($dn, 'server', 'tab_dnsHost', $name, FALSE),
'zones' => array()
);
}
$servers[$dn]['zones'][] = array(
'link' => objects::link($zonedn, 'dnsZone', '', $zone['zoneName'], FALSE)
);
}
}
return array_values($servers);
}
}
?>
|