基于 Doctrine 的 CodeIgniter 身份验证/acl 系统
我正在开发基于 CodeIgniter/Doctrine 的网络应用程序。我测试了几个身份验证库,但它们都使用 ActiveRecord。有没有使用 Doctrine 或可以适配 Doctrine 的插件/库?!或者我可以在项目中同时使用 Doctrine 和 CodeIgniter 吗?!
I'm working on web app based on CodeIgniter/Doctrine. I've tested several auth libraries, but all of them use ActiveRecord. Is there a plugin/library that uses Doctrine, or can be adapted to Doctrine?! Or can I use both Doctrine and CodeIgniter in a project?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调整任何身份验证插件/库以使用 Doctrine 而不是 ActiveRecord。挖掘代码可能需要做很多工作,但本质上你必须弄清楚插件/库试图对记录执行什么操作(访问、修改等),然后使用原则声明复制它并返回插件/lib 所期望的数据。
我没有在 Doctrine 中使用任何 Auth 库/插件,但我使用与 Doctrine 配合使用的钩子(预控制器或后控制器效果很好)为我的应用程序构建了一个 ACL。
You can adapt any auth plugin/library to use Doctrine instead of ActiveRecord. It might be a lot of work to dig through the code, but essentially you'll have to figure out what the plugin/lib is attempting to do with a record (access, modify etc) and then replicate that with a doctrine statement and return the data as expected by the plugin/lib.
I've not used any Auth library/plugin with Doctrine but I've built an ACL for my app using hooks (pre-controller or post-controller works nicely) that works with Doctrine.