Files
sysPass/lib/SP/Services/Ldap/LdapCheckService.php
nuxsmin 3e26a1df71 * [ADD] Unit testing. Work in progress
* [MOD] Code refactoring
* [MOD] Make classes final for performance improvements and avoid some side behaviours
2018-07-28 19:15:11 +02:00

135 lines
3.5 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2018, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass 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 3 of the License, or
* (at your option) any later version.
*
* sysPass 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 sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Services\Ldap;
use SP\Providers\Auth\Ldap\LdapBase;
use SP\Providers\Auth\Ldap\LdapMsAds;
use SP\Providers\Auth\Ldap\LdapParams;
use SP\Providers\Auth\Ldap\LdapStd;
use SP\Services\Service;
/**
* Class LdapCheckService
*
* @package SP\Services\Ldap
*/
final class LdapCheckService extends Service
{
/**
* @var LdapBase
*/
protected $ldap;
/**
* @param LdapParams $ldapParams
*
* @throws \SP\Providers\Auth\Ldap\LdapException
*/
public function checkConnection(LdapParams $ldapParams)
{
if ($ldapParams->isAds()) {
$this->ldap = new LdapMsAds($ldapParams, $this->eventDispatcher, true);
} else {
$this->ldap = new LdapStd($ldapParams, $this->eventDispatcher, true);
}
$this->ldap->checkConnection();
}
/**
* @param bool $includeGroups
*
* @return array
* @throws \SP\Providers\Auth\Ldap\LdapException
*/
public function getObjects($includeGroups = true)
{
$data = ['count' => 0, 'results' => []];
$data['results'][] = [
'icon' => 'person',
'items' => $this->ldapResultsMapper($this->ldap->findUsersByGroupFilter(['dn']))
];
if ($includeGroups) {
$data['results'][] = [
'icon' => 'group',
'items' => $this->ldapResultsMapper($this->ldap->findGroups(['dn']))
];
}
array_walk($data['results'], function ($value) use (&$data) {
$data['count'] += count($value['items']);
});
return $data;
}
/**
* Obtener los datos de una búsqueda de LDAP de un atributo
*
* @param array $data
* @param string $attribute
*
* @return array
*/
public function ldapResultsMapper($data, $attribute = 'dn')
{
$out = [];
foreach ($data as $result) {
if (is_array($result)) {
foreach ($result as $ldapAttribute => $value) {
if (strtolower($ldapAttribute) === $attribute) {
$out[] = $value;
}
}
}
}
return $out;
}
/**
* @param $filter
*
* @return array
* @throws \SP\Providers\Auth\Ldap\LdapException
*/
public function getObjectsByFilter($filter)
{
$objects = $this->ldapResultsMapper($this->ldap->findObjectsByFilter($filter, ['dn']));
return [
'count' => count($objects),
'results' => [
[
'icon' => '',
'items' => $objects
]
]
];
}
}