1

実際、私は認証にソーサリーを使用しており、次の設定があります。

  • レール3.2.3
  • postgresql 9.1.3
  • カンカン

アクティベーションリンクをクリックすると、次のエラーが発生します。

ActiveRecord::RecordNotFound in UsersController#activate 

Couldn't find User with id=pJycxPPmoBQw9D2mfW6W

users_controllers.rb

#カンカン

before_filter :require_login, :except => [:not_authenticated, :new, :create, :activate]
load_and_authorize_resource 
skip_authorization_check :only => [:new, :create, :activate]
skip_authorize_resource  :only => [:new, :create, :activate]

#activateメソッド

def activate
    if (@user = User.load_from_activation_token(params[:id]))
      @user.activate!
      redirect_to(login_path, :notice => 'Your account is activated.')
    else
      not_authenticated
    end
  end

トークンを生成する

def generate_token(column)
    begin
      self[column] = SecureRandom.urlsafe_base64
    end while User.exists?(column => self[column])
end

ソーサリーソースコードのload_from_activation_token

def load_from_activation_token(token)
  token_attr_name = @sorcery_config.activation_token_attribute_name
  token_expiration_date_attr = @sorcery_config.activation_token_expires_at_attribute_name
  load_from_token(token, token_attr_name, token_expiration_date_attr)
end

助けてもらえますか?

4

1 に答える 1

2

ああ、問題はここにあると思います:

load_and_authorize_resource

どうやら、params[:id]リクエスト#activateはユーザーIDではなく、トークンです。Cancanはこれを使用してユーザーをロードしようとしますが、(予想どおり)失敗します。このアクションのロードもスキップする必要があります(すでに承認をスキップする方法と同様の方法で)。

skip_load_and_authorize_resource  :only => [:new, :create, :activate]
于 2012-05-26T22:43:07.117 に答える