针对 Perl CGI::Application 身份验证系统的建议
我正在使用 CGI::Application 构建一个 Perl 应用程序来显示软件工具,并希望允许用户添加对工具的评级和评论。理想情况下,用户需要注册才能发帖。我确信这是一个相当常见的请求,并且必须有现有的“开箱即用”解决方案,我可以使用它来节省自己的一些编码和重新发明轮子。如果没有,我有三种可能的解决方案:
1)在此处扩展代码:http://www.perlmonks。 org/?node_id=622071 添加身份验证系统缺失的部分
2) 使用我们的 wiki;让用户登录并在 wiki 上发布评论,或者只是利用登录系统来确保只有注册的 wiki 用户才能发布
3) 使用其他身份验证协议并从头开始推出我自己的协议。
有人对这些选项有什么想法或经验吗?
I am building a Perl app with CGI::Application to display software tools, and would like to allow users to add ratings and comments on the tools. Ideally users would need to be registered to post. I'm sure this is a fairly common request and that there must be existing "out of the box" solutions I could use to save myself some coding and reinvention of the wheel. If not, I have three possible solutions:
1) extend the code here: http://www.perlmonks.org/?node_id=622071 to add the missing parts of an authentication system
2) make use of our wiki; have users log into it and either post the comments on the wiki OR just leverage the login system to ensure that only registered wiki users can post
3) Use some other authentication protocol and roll my own from scratch.
Does anyone have any thoughts about or experience of any of these options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CGI::Application 有一个处理身份验证的插件。
CGI::应用程序::插件::身份验证。
一旦集成,就会有一个授权插件来确定谁可以做什么。
There's a plugin for CGI::Application that deals with Authentication.
CGI::Application::Plugin::Authentication.
Once your integrated that there's an authorization plugin to determine who can do what.