blob: cad732c46781d6458d8187be2276df1b45a5ace2 (
plain)
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
|
<?php
namespace Kanboard\Group;
use LogicException;
use Kanboard\Core\Base;
use Kanboard\Core\Group\GroupBackendProviderInterface;
use Kanboard\Core\Ldap\Client as LdapClient;
use Kanboard\Core\Ldap\ClientException as LdapException;
use Kanboard\Core\Ldap\Group as LdapGroup;
/**
* LDAP Backend Group Provider
*
* @package group
* @author Frederic Guillot
*/
class LdapBackendGroupProvider extends Base implements GroupBackendProviderInterface
{
/**
* Find a group from a search query
*
* @access public
* @param string $input
* @return LdapGroupProvider[]
*/
public function find($input)
{
try {
$ldap = LdapClient::connect();
return LdapGroup::getGroups($ldap, $this->getLdapGroupPattern($input));
} catch (LdapException $e) {
$this->logger->error($e->getMessage());
return array();
}
}
/**
* Get LDAP group pattern
*
* @access public
* @param string $input
* @return string
*/
public function getLdapGroupPattern($input)
{
if (LDAP_GROUP_FILTER === '') {
throw new LogicException('LDAP group filter empty, check the parameter LDAP_GROUP_FILTER');
}
return sprintf(LDAP_GROUP_FILTER, $input);
}
}
|