rails 3 warden NameError(uncaught throw`warden’):

这是它应该如何工作:我登录管理面板,转到汽车/新的,填写字段,按创建,我应该在我的列表中有一辆新车。 www.autozeep.com

问题是,在按下“创建”按钮创建新车之前,它可以正常运行,服务器日志显示:

NameError (uncaught throw `warden'): app/controllers/application_controller.rb:9:in `login_required' app/middleware/flash_session_cookie_middleware.rb:17:in `call' 

在开发模式下,这工作正常,在生产模式的服务器上它不是,它是相同的代码,没有任何改变。 更多服务器日志: http : //pastie.org/3028350

 application_controller class ApplicationController < ActionController::Base protect_from_forgery # filter def login_required return true if authenticated? warden.authenticate! end 

users_controller: http : //pastie.org/3028586

我可以编辑汽车,它工作正常,所以来自cars_controller的更新和编辑function都可以,我检查了新的并从cars_controller创建函数,但我无法解决任何会让我知道发生了什么的事情。 Cars_controller: http ://pastie.org/3028452

请帮忙,我已经运行了这个应用程序,等待这个问题的客户端只能解决。 非常感谢你们。

编辑

 NameError in CarsController#create uncaught throw `warden' Rails.root: /u/apps/zeepauto/releases/20111123173432 Application Trace | Framework Trace | Full Trace app/controllers/application_controller.rb:9:in `login_required' app/middleware/flash_session_cookie_middleware.rb:17:in `call' ENV DUMP ... .... rack.url_scheme: "http" rack.version: [1, 0] warden: Warden::Proxy:-621456458 @config={:default_strategies=>{:_all=>[:database]}, :failure_app=>UsersController, :default_scope=>:default, :scope_defaults=>{}, :intercept_401=>true} warden.options: {:attempted_path=>"/cars", :action=>"unauthenticated"} 

我只有在添加新车时才会出现此错误,我可以编辑汽车,新闻,联系人。 汽车以外的一切。

问题解决了

这个问题是由一些jquery库引起的,我在这种forms下使用dynamic_form,所以当我在下一个select_box中选择汽车名时,只显示所选汽车的型号。 检查问题(我的老师,我自己也不会想到)我们看到当我选择汽车时,日志中会运行一个名为“dynamic_carmodels”的进程来更新carmodels列表,此时还会显示会话密钥由另一个更改,通常如果会话密钥更改,我登录时开始的会话不再有效,这就是我得到“未经身份validation的错误”的原因。 仍然不知道jquery究竟是什么导致了这个问题,但最后我得到了解决,这不是因为监狱长的配置。

好的,我会向你解释为什么这个例外发生得非常小心,但我无法为你解决。

Warden使用catch(:warden)块来保护你的应用程序,你可以在下面看到:

 # Invoke the application guarding for throw :warden. # If this is downstream from another warden instance, don't do anything. # :api: private def call(env) # :nodoc: return @app.call(env) if env['warden'] && env['warden'].manager != self env['warden'] = Proxy.new(env, self) result = catch(:warden) do @app.call(env) end 

您的应用程序在@ app.call(env)中调用,如果您的应用程序抛出(:warden),它就会被捕获。 这是throw,catch的工作原理,这是一个例子:

 def authenticate!() throw :warden end catch(:warden) do puts "Calling authenticate!" authenticate!() end puts "Succesfully called authenticate!" #outside of catch(:) guard authenticate!() puts "this never gets executed" 

如果我执行它,它将执行:

  ruby exc.rb Calling authenticate! Succesfully called authenticate! exc.rb:2:in `throw': uncaught throw :warden (ArgumentError) from exc.rb:2:in `initialize!' from exc.rb:12:in `
'

如您所见,我第二次打电话进行身份validation! 我在catch(:warden)区域之外,所以当我抛出时:看守没有抓住它来阻挡它,exception发生。

这就是发生在你身上的事,看看warden#authenticate!

 def authenticate!(*args) user, opts = _perform_authentication(*args) throw(:warden, opts) unless user user end 

看看throw(:warden,opts)? 如果该throw在catch(:warden)块之外,则引发exception。 Warden应该在catch区域保护你的整个应用程序,这样你就可以随时抛出:warden。 但由于某些原因,zeepauto上没有发生这种情况。

你的问题是warden没有正确设置(没有config/initializers/warden.rb )和call (env)所以你的catch(:warden)守卫从未设置过。

你的答案在这里: https : //github.com/hassox/warden/wiki/Setup

只需自己完成设置即可。 你可以随时抛出一个:warden来测试你的开发环境。 只需编写一个测试:

 it "warden should catch the throw :warden at any point" do throw(:warden) end 

如果你想更快地获得这个东西,只需在railscasts.com上获得一个专业帐户并观看: http ://railscasts.com/episodes/305-authentication-with-warden该剧集将引导您完成设置。