2023-03-11 12:04:29 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Zend Framework (http://framework.zend.com/)
|
|
|
|
*
|
|
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
2023-04-01 09:03:34 +03:00
|
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
2023-03-11 12:04:29 +03:00
|
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Zend\Ldap\Node;
|
|
|
|
|
|
|
|
use Zend\Ldap;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Zend\Ldap\Node\RootDse provides a simple data-container for the RootDse node.
|
|
|
|
*/
|
|
|
|
class RootDse extends AbstractNode
|
|
|
|
{
|
|
|
|
const SERVER_TYPE_GENERIC = 1;
|
|
|
|
const SERVER_TYPE_OPENLDAP = 2;
|
|
|
|
const SERVER_TYPE_ACTIVEDIRECTORY = 3;
|
|
|
|
const SERVER_TYPE_EDIRECTORY = 4;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory method to create the RootDse.
|
|
|
|
*
|
|
|
|
* @param \Zend\Ldap\Ldap $ldap
|
|
|
|
* @return RootDse
|
|
|
|
*/
|
|
|
|
public static function create(Ldap\Ldap $ldap)
|
|
|
|
{
|
|
|
|
$dn = Ldap\Dn::fromString('');
|
|
|
|
$data = $ldap->getEntry($dn, array('*', '+'), true);
|
|
|
|
if (isset($data['domainfunctionality'])) {
|
|
|
|
return new RootDse\ActiveDirectory($dn, $data);
|
|
|
|
} elseif (isset($data['dsaname'])) {
|
|
|
|
return new RootDse\eDirectory($dn, $data);
|
|
|
|
} elseif (isset($data['structuralobjectclass'])
|
|
|
|
&& $data['structuralobjectclass'][0] === 'OpenLDAProotDSE'
|
|
|
|
) {
|
|
|
|
return new RootDse\OpenLdap($dn, $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new static($dn, $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* Constructor is protected to enforce the use of factory methods.
|
|
|
|
*
|
|
|
|
* @param \Zend\Ldap\Dn $dn
|
|
|
|
* @param array $data
|
|
|
|
*/
|
|
|
|
protected function __construct(Ldap\Dn $dn, array $data)
|
|
|
|
{
|
|
|
|
parent::__construct($dn, $data, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the namingContexts.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getNamingContexts()
|
|
|
|
{
|
|
|
|
return $this->getAttribute('namingContexts', null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the subschemaSubentry.
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
|
|
|
public function getSubschemaSubentry()
|
|
|
|
{
|
|
|
|
return $this->getAttribute('subschemaSubentry', 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if the version is supported
|
|
|
|
*
|
|
|
|
* @param string|int|array $versions version(s) to check
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function supportsVersion($versions)
|
|
|
|
{
|
|
|
|
return $this->attributeHasValue('supportedLDAPVersion', $versions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if the sasl mechanism is supported
|
|
|
|
*
|
|
|
|
* @param string|array $mechlist SASL mechanisms to check
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function supportsSaslMechanism($mechlist)
|
|
|
|
{
|
|
|
|
return $this->attributeHasValue('supportedSASLMechanisms', $mechlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the server type
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getServerType()
|
|
|
|
{
|
|
|
|
return self::SERVER_TYPE_GENERIC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the schema DN
|
|
|
|
*
|
|
|
|
* @return \Zend\Ldap\Dn
|
|
|
|
*/
|
|
|
|
public function getSchemaDn()
|
|
|
|
{
|
|
|
|
$schemaDn = $this->getSubschemaSubentry();
|
|
|
|
return Ldap\Dn::fromString($schemaDn);
|
|
|
|
}
|
|
|
|
}
|