在 Rails 中间件中使用 request.env

发布于 2024-11-17 08:35:37 字数 358 浏览 2 评论 0原文

我正在尝试在 Rails 中间件中使用 Passenger 的请求变量,以便我可以将信息发送到 OmniAuth 策略:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :casmate, {
    :setup => true,
    :dn    => request.env['SSL_CLIENT_S_DN']
  }
end

但中间件中无法识别“请求”。有没有办法在中间件中执行此操作,或者有没有办法在控制器中调用中间件并传递相同的符号(:casmate、:setup、:dn)?

感谢您的帮助。

I am trying to use Passenger's request variable within my Rails middleware so I can send information to an OmniAuth strategy:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :casmate, {
    :setup => true,
    :dn    => request.env['SSL_CLIENT_S_DN']
  }
end

but "request" isn't recognized within the middleware. Is there a way to do this within the middleware, or is there a way to invoke the middleware in a controller and pass in the same symbols (:casmate, :setup, :dn)?

Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开雨落又逢春i 2024-11-24 08:35:37

我不知道如何在中间件初始化程序中使用 request.env 变量,但如果您想发送任何信息,您可以在

request.env['omniauth.strategy'].options[:dn] = request.env['SSL_CLIENT_S_DN']

控制器内部的 options hash by: 中执行此操作。

I don't know how to use the request.env variable within a middleware initializer, but if you want to send any information, you can do so within the options hash by:

request.env['omniauth.strategy'].options[:dn] = request.env['SSL_CLIENT_S_DN']

inside of your controller.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文