phpds/ldap
Composer 安装命令:
composer require phpds/ldap
包简介
A Pure PHP LDAP library
README 文档
README
FreeDSx LDAP is a pure PHP LDAP library. It has no requirement on the core PHP LDAP extension. This library currently implements most client functionality described in RFC 4511 and some very limited LDAP server functionality. It also implements some other client features from various RFCs:
- Paging Control Support (RFC 2696)
- VLV Control Support (draft-ietf-ldapext-ldapv3-vlv-09)
- Server Side Sort Control (RFC 2891)
- Password Modify Request (RFC 3062)
- String Representation of Search Filters (RFC 4515)
- SASL authentication / integrity layer support for certain mechanisms (RFC 4513)
It supports encryption of the LDAP connection through TLS via the OpenSSL extension if available.
Documentation
Getting Started
Install via composer:
composer require freedsx/ldap
Use the LdapClient class and the helper classes:
use FreeDSx\Ldap\LdapClient; use FreeDSx\Ldap\Operations; use FreeDSx\Ldap\Search\Filters; $ldap = new LdapClient([ # Servers are tried in order until one connects 'servers' => ['dc1', 'dc2'], # The base_dn is used as the default for searches 'base_dn' => 'dc=example,dc=local' ]); # Encrypt the connection prior to binding $ldap->startTls(); # Bind to LDAP with a specific user. $ldap->bind('user@example.local', '12345'); # Build up a LDAP filter using the helper methods $filter = Filters::and( Filters::equal('objectClass', 'user'), Filters::startsWith('cn', 'S'), # Add a filter object based off a raw string filter... Filters::raw('(telephoneNumber=*)') ); # Create a search operation to be used based on the above filter $search = Operations::search($filter, 'cn'); # Create a paged search, 100 results at a time $paging = $ldap->paging($search, 100); while ($paging->hasEntries()) { $entries = $paging->getEntries(); var_dump(count($entries)); foreach ($entries as $entry) { echo "Entry: ".$entry->getDn().PHP_EOL; } }
CRUD Operations:
Create
use FreeDSx\Ldap\Entry\Entry; use FreeDSx\Ldap\Exception\OperationException; # Create a new LDAP entry object $entry = (new Entry('cn=foo,dc=domain,dc=local')) ->set('objectClass','top', 'group') ->set('sAMAccountName', 'foo'); # Create the entry with the LDAP client try { $ldap->create($entry); } catch (OperationException $e) { echo sprintf('Error adding entry (%s): %s', $e->getCode(), $e->getMessage()).PHP_EOL; }
Read
# Use the read() method of the LDAP client to search for a specific entry. # Optionally pass an array of attributes to select as the second argument. $entry = $ldap->read('cn=foo,dc=domain,dc=local'); # Entry will be null if it doesn't exist if ($entry) { echo $entry.PHP_EOL; var_dump($entry->toArray()); }
Update
use FreeDSx\Ldap\Exception\OperationException; # Search for an entry object to get its current attributes / values $entry = $ldap->read('cn=foo,dc=domain,dc=local'); # Add a value to an attribute if (!$entry->get('telephoneNumber')) { $entry->add('telephoneNumber', '555-5555'); } # Remove any values an attribute may have if ($entry->has('title')) { $entry->reset('title'); } # Delete a specific value for an attribute if ($entry->get('ipPhone')->has('12345')) { $entry->delete('ipPhone', '12345'); } # Set a value for an attribute. This replaces any value it may, or may not, have. $entry->set('description', 'Employee'); # Send the built up changes back to LDAP to update the entry via the LDAP client update method. try { $ldap->update($entry); } catch (OperationException $e) { echo sprintf('Error modifying entry (%s): %s', $e->getCode(), $e->getMessage()).PHP_EOL;; }
Delete
use FreeDSx\Ldap\Exception\OperationException; # Search for the entry object to delete $entry = $ldap->read('cn=foo,dc=domain,dc=local'); # Pass the entry object to the delete method of the LDAP client if it was found. # You could also pass a DN object or a simple DN as a string. if ($entry) { try { $ldap->delete($entry); } catch (OperationException $e) { echo sprintf('Error deleting entry (%s): %s', $e->getCode(), $e->getMessage()).PHP_EOL;; } }
phpds/ldap 适用场景与选型建议
phpds/ldap 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 76 次下载、GitHub Stars 达 157, 最近一次更新时间为 2017 年 10 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「ldap」 「openldap」 「activedirectory」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 phpds/ldap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 phpds/ldap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 phpds/ldap 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Pure PHP LDAP library
Ldap
LDAP user provider bundle for Symfony 6.4
Map group membership from a directory service to MediaWiki.
A local API to connect to the Astatine LDAP
Mapper for accessing resources in KWCMS
统计信息
- 总下载量: 76
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 157
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-10-23