Files
sysPass/lib/SP/Providers/Auth/Ldap/LdapParams.php
Rubén D 1c8fb0ea1a refactor: [WIP] Use hexagonal architecture and implement interfaces for services and repositories.
Controllers are being splited into commands to better dependency management.

Signed-off-by: Rubén D <nuxsmin@syspass.org>
2022-06-06 08:17:34 +02:00

358 lines
7.5 KiB
PHP

<?php
/*
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2021, 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\Providers\Auth\Ldap;
use SP\Core\Exceptions\ValidationException;
use SP\Domain\Config\In\ConfigDataInterface;
/**
* Class LdapParams
*
* @package SP\Providers\Auth\Ldap
*/
final class LdapParams
{
private const REGEX_SERVER = '(?<server>(?:(?<proto>ldap|ldaps):\/\/)?[\w\.\-]+)(?::(?<port>\d+))?';
/**
* @var string
*/
protected string $server;
/**
* @var int
*/
protected int $port = 389;
/**
* @var string
*/
protected string $searchBase;
/**
* @var string
*/
protected string $bindDn;
/**
* @var string
*/
protected string $bindPass;
/**
* @var string
*/
protected string $group;
/**
* @var int
*/
protected int $type;
/**
* @var bool
*/
protected bool $tlsEnabled = false;
/**
* @var string
*/
protected string $filterUserObject;
/**
* @var string
*/
protected string $filterGroupObject;
/**
* @var array
*/
protected array $filterUserAttributes;
/**
* @var array
*/
protected array $filterGroupAttributes;
/**
* @throws \SP\Core\Exceptions\ValidationException
*/
public static function getFrom(ConfigDataInterface $configData): LdapParams
{
$data = self::getServerAndPort($configData->getLdapServer());
if (count($data) === 0) {
throw new ValidationException(__u('Wrong LDAP parameters'));
}
$ldapParams = new self();
$ldapParams->setServer($data['server']);
$ldapParams->setPort($data['port'] ?? 389);
$ldapParams->setSearchBase($configData->getLdapBase());
$ldapParams->setGroup($configData->getLdapGroup());
$ldapParams->setBindDn($configData->getLdapBindUser());
$ldapParams->setBindPass($configData->getLdapBindPass());
$ldapParams->setType($configData->getLdapType());
$ldapParams->setFilterUserObject($configData->getLdapFilterUserObject());
$ldapParams->setFilterGroupObject($configData->getLdapFilterGroupObject());
$ldapParams->setFilterUserAttributes($configData->getLdapFilterUserAttributes());
$ldapParams->setFilterGroupAttributes($configData->getLdapFilterGroupAttributes());
return $ldapParams;
}
/**
* Devolver el puerto del servidor si está establecido
*
* @param $server
*
* @return array
*/
public static function getServerAndPort($server): array
{
return preg_match(
'#'.self::REGEX_SERVER.'#i',
$server,
$matches
) ? $matches : [];
}
/**
* @return string
*/
public function getFilterUserObject(): ?string
{
return $this->filterUserObject;
}
/**
* @param string|null $filterUserObject
*/
public function setFilterUserObject(?string $filterUserObject = null): void
{
if (!empty($filterUserObject)) {
$this->filterUserObject = $filterUserObject;
}
}
/**
* @return string
*/
public function getFilterGroupObject(): ?string
{
return $this->filterGroupObject;
}
/**
* @param string|null $filterGroupObject
*/
public function setFilterGroupObject(?string $filterGroupObject = null): void
{
if (!empty($filterGroupObject)) {
$this->filterGroupObject = $filterGroupObject;
}
}
/**
* @return array
*/
public function getFilterUserAttributes(): ?array
{
return $this->filterUserAttributes;
}
/**
* @param array|null $filterUserAttributes
*/
public function setFilterUserAttributes(?array $filterUserAttributes = null): void
{
$this->filterUserAttributes = $filterUserAttributes;
}
/**
* @return array
*/
public function getFilterGroupAttributes(): ?array
{
return $this->filterGroupAttributes;
}
/**
* @param array|null $filterGroupAttributes
*/
public function setFilterGroupAttributes(?array $filterGroupAttributes = null): void
{
$this->filterGroupAttributes = $filterGroupAttributes;
}
/**
* @return int
*/
public function getPort(): int
{
return $this->port;
}
/**
* @param int $port
*
* @return LdapParams
*/
public function setPort(int $port): LdapParams
{
$this->port = $port;
return $this;
}
/**
* @return string
*/
public function getSearchBase(): ?string
{
return $this->searchBase;
}
/**
* @param string $searchBase
*
* @return LdapParams
*/
public function setSearchBase(string $searchBase): LdapParams
{
$this->searchBase = $searchBase;
return $this;
}
/**
* @return string
*/
public function getBindDn(): ?string
{
return $this->bindDn;
}
/**
* @param string $bindDn
*
* @return LdapParams
*/
public function setBindDn(string $bindDn): LdapParams
{
$this->bindDn = $bindDn;
return $this;
}
/**
* @return string
*/
public function getBindPass(): ?string
{
return $this->bindPass;
}
/**
* @param string $bindPass
*
* @return LdapParams
*/
public function setBindPass(string $bindPass): LdapParams
{
$this->bindPass = $bindPass;
return $this;
}
/**
* @return string
*/
public function getGroup(): ?string
{
return $this->group;
}
/**
* @param string $group
*
* @return LdapParams
*/
public function setGroup(string $group): LdapParams
{
$this->group = $group;
return $this;
}
/**
* @return string|null
*/
public function getServer(): ?string
{
return $this->server;
}
/**
* @param string $server
*
* @return LdapParams
*/
public function setServer(string $server): LdapParams
{
$this->server = $server;
return $this;
}
/**
* @return int
*/
public function getType(): ?int
{
return $this->type;
}
/**
* @param int $type
*
* @return LdapParams
*/
public function setType(int $type): LdapParams
{
$this->type = $type;
return $this;
}
/**
* @return bool
*/
public function isTlsEnabled(): bool
{
return $this->tlsEnabled;
}
/**
* @param bool $tlsEnabled
*
* @return LdapParams
*/
public function setTlsEnabled(bool $tlsEnabled): LdapParams
{
$this->tlsEnabled = $tlsEnabled;
return $this;
}
}