Files
sysPass/lib/SP/Providers/Auth/Ldap/LdapParams.php
nuxsmin 3504e66c9c * [MOD] Improved LDAP import
* [ADD] Groups import from LDAP
* [MOD] Improved LDAP auth behavior
* [MOD] Config data is always cloned on every request
* [MOD] Improved non RSA encrypted data detection
* [MOD] Code refactoring
2018-03-01 00:49:00 +01:00

200 lines
3.6 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\Providers\Auth\Ldap;
/**
* Class LdapParams
*
* @package SP\Providers\Auth\Ldap
*/
class LdapParams
{
/**
* @var string
*/
protected $server;
/**
* @var int
*/
protected $port;
/**
* @var string
*/
protected $searchBase;
/**
* @var string
*/
protected $bindDn;
/**
* @var string
*/
protected $bindPass;
/**
* @var string
*/
protected $group;
/**
* @var bool
*/
protected $ads;
/**
* Devolver el puerto del servidor si está establecido
*
* @param $server
* @return array|false
*/
public static function getServerAndPort($server)
{
return preg_match('/(?P<server>[\w\.]+)(:(?P<port>\d+))?/', $server, $matches) ? $matches : false;
}
/**
* @return int
*/
public function getPort()
{
return $this->port;
}
/**
* @param int $port
* @return LdapParams
*/
public function setPort($port)
{
$this->port = $port;
return $this;
}
/**
* @return string
*/
public function getSearchBase()
{
return $this->searchBase;
}
/**
* @param string $searchBase
* @return LdapParams
*/
public function setSearchBase($searchBase)
{
$this->searchBase = $searchBase;
return $this;
}
/**
* @return string
*/
public function getBindDn()
{
return $this->bindDn;
}
/**
* @param string $bindDn
* @return LdapParams
*/
public function setBindDn($bindDn)
{
$this->bindDn = $bindDn;
return $this;
}
/**
* @return string
*/
public function getBindPass()
{
return $this->bindPass;
}
/**
* @param string $bindPass
* @return LdapParams
*/
public function setBindPass($bindPass)
{
$this->bindPass = $bindPass;
return $this;
}
/**
* @return string
*/
public function getGroup()
{
return $this->group;
}
/**
* @param string $group
* @return LdapParams
*/
public function setGroup($group)
{
$this->group = $group;
return $this;
}
/**
* @return string
*/
public function getServer()
{
return $this->server;
}
/**
* @param string $server
* @return LdapParams
*/
public function setServer($server)
{
$this->server = $server;
return $this;
}
/**
* @return bool
*/
public function isAds()
{
return $this->ads;
}
/**
* @param bool $ads
* @return LdapParams
*/
public function setAds($ads)
{
$this->ads = (bool)$ads;
return $this;
}
}