设计覆盖会话控制器

时间:2014-11-18 13:11:57

标签: ruby-on-rails devise

我想在用户尝试登录时添加消息并且未确认,我想在通知部分显示此消息,基本上设计需要向我们提供此消息但在这种情况下我没有看到任何消息。所以我决定从会话控制器手动添加它,这是我的代码:

class SessionsController < Devise::SessionsController

  def new
    super
  end

  def create
    user = User.find_by_email(params[:user][:email])

    self.resource = warden.authenticate!(auth_options)
    set_flash_message(:notice, :signed_in) if is_flashing_format?
    sign_in(resource_name, resource)

    if user.confirmed_at.nil?
      flash[:notice] = "my message here"
    end
    yield resource if block_given?

    respond_with resource, location: after_sign_in_path_for(resource)
  end

end

问题是flash [:notice]在执行操作后为空,在控制台中我有

Started POST "/users/sign_in" for 127.0.0.1 at 2014-11-18 15:07:21 +0200
Processing by SessionsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"xC86tz4kZjcSMqXOL/+qpwlh5VlSbnsvLj93N5jb3NI=", "user"=>{"email"=>"pers.maki.5@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
   (0.2ms)  SELECT COUNT(*) FROM "landing_page_reports" 
  LandingPageReport Load (0.2ms)  SELECT "landing_page_reports".* FROM "landing_page_reports" ORDER BY "landing_page_reports"."id" DESC LIMIT 1
  User Load (0.4ms)  SELECT "users".* FROM "users" WHERE "users"."email" = 'pers.maki.5@gmail.com' LIMIT 1
  CACHE (0.0ms)  SELECT "users".* FROM "users" WHERE "users"."email" = 'pers.maki.5@gmail.com' LIMIT 1
   (0.1ms)  begin transaction
   (0.2ms)  commit transaction
Completed 401 Unauthorized in 193ms

如何显示此消息?

1 个答案:

答案 0 :(得分:0)

更简单的做法是在application_controller中添加before_filter:confirmation_notice并检查current_user.confirmed是否正确?或不。

ex ::

before_filter :confirmation_notice

def confirmation_notice
  flash[:notice] = "my message here" unless current_user.confirmed?
end

不要忘记配置您的视图以显示此Flash通知。

This了解如何配置您的观点。