如何在 symfony 中的 sfGuard 会话超时时调用自定义函数
我在我的项目中使用 sfGuard 作为身份验证插件。我想调用某些客户端&会话超时时的服务器端脚本。我能做到这一点的最好方法是什么。
请帮忙! 多谢。
I am using sfGuard as the authentication plugin in my project. I want to invoke certain client side & server side scripts on session timeout. What is the best way I can do this.
Please help!
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我一直在阅读 sfGuardSecurityUser ,它扩展了 sfBasicSecurityUser 类,该类处理用户身份验证、配置文件、凭据等。
所以,我在 中找到了一个函数sfBasicSecurityUser 确定用户会话是否定时,称为
isTimedOut
和setTimedOut
。如果您想在用户会话超时时执行某些操作,至少在服务器端,您应该监听发生这种情况时引发的事件。检查此方法:
这可以在
symfony_core_root_dir/lib/user/sfBasicSecurityUser.class.php
中找到。对于客户端,您可能会开始考虑 HTML 5 和 Javascript Workers。这个想法可能是在页面加载时设置一个工作人员,并告诉他计数到
session_time_out
,然后重定向到登录页面或其他页面。Well I've been reading the
sfGuardSecurityUser
and it extends thesfBasicSecurityUser
class, which handles user authentication, profile, credentials, etc.So, I found a function in
sfBasicSecurityUser
that determines whether a users sessions is timed put calledisTimedOut
, and alsosetTimedOut
.If you want to do something when user's session times out, at least on server side, you should listen to the event that is throw when this happens. Check this method:
This could be found in the
symfony_core_root_dir/lib/user/sfBasicSecurityUser.class.php
For client side, you might start thinking about HTML 5 and Javascript Workers. The idea could be setting a worker when page loads, and telling him count till
session_time_out
, then redirecting to a login page or something.