phpcodemaker/ci4-authldap
Composer 安装命令:
composer require phpcodemaker/ci4-authldap
包简介
CodeIgniter4 Authenticate User using LDAP protocol
关键字:
README 文档
README
[CodeIgniter4.0.3 LDAP Authentication]
composer require phpcodemaker/ci4-authldap:1.0
Thanks to the Forumsys Site to make LDAP connection testing
https://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server
To check your LDAP connection in local, Execute the below command in Terminal
/var/www/html$ ldapsearch -W -h ldap.forumsys.com -D "uid=riemann,dc=example,dc=com" -b "dc=example,dc=com"
#Public Methods
Authenticate User by UserName and Password
AuthLdap::authenticate($userName, $password);
Retrieve All Users from LDAP directory
AuthLdap::getAllUsers();
Retrieve All Groups from LDAP directory
AuthLdap::getAllGroups();
Create your Own User Controller for login and logout as follows,
<?php
namespace App\Controllers;
use AuthLdap\Libraries\AuthLdap;
use CodeIgniter\View\View;
/**
* Class User
* @package App\Controllers
* @author Karthikeyan C <karthikn.mca@gmail.com>
*/
class User extends BaseController
{
/**
* @var AuthLdap $authLdap
*/
private $authLdap;
/**
* If Already declared Session in BaseController,
* then comment the below declaration
* @var \CodeIgniter\Session\Session
*/
private $session;
/**
* User constructor.
*/
public function __construct()
{
/**
* If Already declared Session in BaseController,
* then comment the below declaration
*/
$this->session = \Config\Services::session();
}
/**
* @return \CodeIgniter\HTTP\RedirectResponse|View (postlogin redirect | pre-login template)
* @author Karthikeyan C <karthikn.mca@gmail.com>
*/
public function login()
{
if (null !== $this->request->getPost('username')
&& null !== $this->request->getPost('password'))
{
$this->authLdap = new AuthLdap();
if (is_object($this->authLdap)
&& method_exists($this->authLdap, 'authenticate'))
{
$authenticatedUserData = $this->authLdap->authenticate(
trim($this->request->getPost('username')),
trim($this->request->getPost('password'))
);
if (!empty($authenticatedUserData))
{
$this->session->set($authenticatedUserData);
return redirect()->to('/user/dashboard');
}
else {
// report login failure
}
}
else {
//report about ldap error
}
}
return view('user/login');
}
/**
* @return string
* @author Karthikeyan C <karthikn.mca@gmail.com>
*/
public function logout()
{
$this->session->destroy();
return view('user/logout');
}
/**
* @author Karthikeyan C <karthikn.mca@gmail.com>
*/
public function dashboard()
{
// do your own stuff here
}
}
[login]
login : http://localhost/user/login
logout : http://localhost/user/logout
[Test Credentials]
username : riemann
password : password
phpcodemaker/ci4-authldap 适用场景与选型建议
phpcodemaker/ci4-authldap 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 420 次下载、GitHub Stars 达 7, 最近一次更新时间为 2020 年 05 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「codeigniter4 ldap」 「codeigniter4 ldap authenticate」 「codeigniter4 ldap authentication」 「ci4 ldap authenticate」 「ci4 ldap authentication」 「ci4 ldap」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 phpcodemaker/ci4-authldap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 phpcodemaker/ci4-authldap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 phpcodemaker/ci4-authldap 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple Cake3 plugin to authenticate users with Cookies.
CakePHP plugin that performs Remember-me authentication with the new cookie algorithm of version 3.5 or later
Google Authentication in Laravel
LDAP user provider bundle for Symfony 6.4
MvcCore - Extension - Auth - authentication module with automatic authentication module type detection by loaded classes.
Map group membership from a directory service to MediaWiki.
统计信息
- 总下载量: 420
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-17