巫术宝石 - 如何使用redirect_or_back_to方法

时间:2015-02-18 14:45:28

标签: ruby-on-rails redirect sorcery

当未登录的用户点击此页面上的“Deja Tu Opinion”按钮时:

https://github.com/Yorkshireman/pamplona_english_teacher2/blob/create_testimonials/app/views/static_pages/home.html.erb

...用户被重定向到登录页面,并显示“您必须先登录或注册才能继续”。我做到了 - 这里没问题。

'Deja Tu Opinion'按钮指向new_testimonial_path。但是,如果他们未登录,则会将其重定向到登录页面。我通过编写“require_login”方法并放入应用程序控制器来实现这一目的:

class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception


  private
  def require_login
    if !logged_in?
      redirect_to('/user_sessions/new')
      flash[:notice] = "Necesitas entrar o salir antes de continuar"
    end
  end

end

然后我在我的推荐控制器中宣布:

class TestimonialsController < ApplicationController

  before_action :set_testimonial, only: [:show, :edit, :update, :destroy]
  # before_action :correct_user, only: [:edit, :update, :destroy]
  before_action :require_login, except: [:index, :show]

当他们登录时,他们会被重定向到root_path:

class UserSessionsController < ApplicationController

  # skip_before_filter :require_login, except: [:destroy]

  def new
    @user = User.new
  end

  def create
    if @user = login(params[:email], params[:password])
      redirect_to root_url, notice: 'Login successful!'
    else
      flash.now[:alert] = 'Login failed'
      render action: 'new'
    end
  end

  def destroy
    logout
    redirect_to(root_url, notice: 'Logged out!')
  end
end

但是......我想要发生的事情是在这种情况下将它们定向到new_testimonial_path,而不仅仅是回到root_path。

因此,总而言之,未登录的用户点击“Deja tu opinion”按钮(这意味着“编写您自己的推荐”),并且由于他们未登录,因此会将他们定向到new_user_session_path 。然后他们登录并返回root_path,然后他们将再次向下滚动页面并点击“Deja tu opinion”按钮,然后将它们带到new_testimonial_path。

想要发生的事情是非登录用户点击“Deja tu opinion”按钮,因为他们没有登录,会被定向到new_user_session_path。然后他们登录并被定向到new_testimonial_path(因为这是他们首先想要的)。

我使用了Sorcery gem,我很确定有一种方法可以达到这个目的,称为'redirect_back_or_to',但我无法弄清楚如何在文档中使用它。

这里的整个应用程序代码(create_testimonials分支):https://github.com/Yorkshireman/pamplona_english_teacher2/tree/create_testimonials

Sorcery的文件: https://github.com/NoamB/sorcery

希望你能帮忙!

1 个答案:

答案 0 :(得分:4)

解决:

Sorcery有自己的方法require_login,所以我的require_login方法似乎阻止了redirect_back_or_to方法正常运行。因此,我只是删除了我的require_login方法。

当在before_filter(或'before_action' - 同样的事情)中触发redirect_back_or_to方法时,Sorcery会调用另一个本机方法:not_authenticated。它的默认操作似乎是引导您进入root_path。您可以在Application Controller中覆盖它(只需在私有部分中编写一个名为'not_authenticated'的方法并告诉它该做什么(在我的例子中,“redirect_to new_user_session”)。

这些变化达到了预期的效果。

这里有一些很棒的信息: http://railscasts.com/episodes/283-authentication-with-sorcery?view=asciicast