轨道与设计:两步确认路线错误 [英] Rails & Devise: Two-step confirmation route error

查看:160
本文介绍了轨道与设计:两步确认路线错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我的路线:



我正在尝试使用Devise进行两步确认,如heroku。 pre> devise_for:user,:controllers => {:confirmations => confirmations,:registrations => registration}
putconfirm_account,:to => 确认#confirm_account

这是我的备用确认控制器:

  class ConfirmationsController< Devise :: ConfirmationsController 
def show
@account = User.find_by_confirmation_token(params [:confirmation_token])
if !@account.present?
render_with_scope:new
end
end

def confirm_account
@account = User.find(params [:account] [:confirmation_token])
if @ account.update_attributes(params [:account])和@ account.password_match?
@account = User.confirm_by_token(@ account.confirmation_token)
set_flash_message:通知,:已确认
sign_in_and_redirect(user,@account)
else
呈现: action => show
end
end

end

这是我的 show.html.erb

 <%= form_for(resource,:as => resource_name,:url => confirm_account_path(resource_name))do | f | %GT; 
<%= f.label:email%>
<%= @ account.email%>
<%= f.hidden_​​field:confirmation_token%>
<%= f.label:password%>
<%= f.password_field:password%>
<%= f.label:password_confirmation%>
<%= f.password_field:password_confirmation%>
<%= f.submit'确认帐户'%>
<%= link_to'Home',root_url%>
<%= render:partial => 'devise / shared / links'%>
<%end%>

当我点击确认密码(在确认邮件中点击确认后)。我被路由到 /confirm_account.user 这很奇怪,对吧?导致这个问题的原因是什么?



修改



rake路线返回:

  new_user_session GET /user/sign_in(.:format){: action =>new,:controller =>devise / sessions} 
user_session POST /user/sign_in(.:format){:action =>create,:controller => devise / sessions}
destroy_user_session GET /user/sign_out(.:format){:action =>destroy,:controller =>devise / sessions}
user_password POST / user /密码(。格式){:action =>创建,:controller =>devise / passwords}
new_user_password GET /user/password/new(.:format){:action => new,:controller =>devise / passwords}
edit_user_password GET /user/password/edit(.:format){:action =>edit,:controller =>devise /密码}
PUT /user/password(.:format){:action =>update,:controller =>devise / passwords}
cancel_user_registration GET /user/cancel(.:format){:action = >取消,:控制器=>注册}
user_registration POST /user(.:format){:action =>创建,:控制器=>注册}
new_user_registration GET /user/sign_up(.:format){:action =>new,:controller =>registrations}
edit_user_registration GET /user/edit(.:format){:action = "edit,:controller =>registrationrations}
PUT /user(.:format){:action =>update,:controller =>registrationrations}
DELETE /user(.:format){:action =>destroy,:controller =>registrations}
user_confirmation POST /user/confirmation(.:format){:ac =>=>=>=>=&确认}
GET /user/confirmation(.:format){:action =>show,:controller =>confirmations}
user_unlock POST /user/unlock(.:format ){:action =>create,:controller =>devise / unlocks}
new_user_unlock GET /user/unlock/new(.:format){:action =>new controller =>devise / unlocks}
GET /user/unlock(.:format){:action =>show,:controller =>devise / unlocks}
confirm_account PUT /confirm_account(.:format){:action =>confirm_account,:controller =>confirmations}
editreject_admin GET /admin/:id/editreject(.:format){:action => ;editreject,:controller =>admin}
reject_admin GET /admin/:id/reject(.:format){:action =>reject,:controller =>admin}
accept_admin GET /admin/:id/accept(.:format ){:action =>accept,:controller =>admin}
entries_admin_index GET /admin/entries(.:format){:action =>entries,:controller => admin}
preferences_admin_index GET /admin/preferences(.:format){:action =>preferences,:controller =>admin}
admin_index GET /admin(.:format ){:action =>index,:controller =>admin}
about_entries GET /entries/about(.:format){:action =>about,:controller => entries}
all_entries GET /entries/all(.:format){:action =>all,:controller =>entries}
myentries_entries GET / entries / myentries(。 :format){:action =>myentries,:contr oller =>entries}
rate_entry GET /entries/:id/rate(.:format){:action =>rate,:controller =>entries}
submit_entry PUT /entries/:id/submit(.:format){:action =>submit,:controller =>entries}
entry_comments POST /entries/:entry_id/comments(.:format) {:action =>create,:controller =>comments}
entry_comment DELETE /entries/:entry_id/comments/:id(.:format){:action =>destroy :控制器=>注释}
条目GET /entries(.:format){:action =>index,:controller =>entries}
POST / entries(。 :format){:action =>create,:controller =>entries}
new_entry GET /entries/new(.:format){:action =>new >entries}
edit_entry GET /entries/:id/edit(.:format) {:action =>edit,:controller =>entries}
entry GET /entries/:id(.:format){:action =>show,:controller => entries}
PUT /entries/:id(.:format){:action =>update,:controller =>entries}
DELETE / entries /:id :format){:action =>destroy,:controller =>entries}
/auth/:service/callback(.:format){:controller =>services,,action =>create}
服务GET /services(.:format){:action =>index,:controller =>services}
POST /services(.:format ){:action =>create,:controller =>services}
root /(.:format){:controller =>entries,:action =>index}
offline /offline(.:f ormat){:controller =>application,,action =>offline}

编辑3
更改

  devise_for:user,:controllers => {:confirmations => confirmations,:registrations => registration} do 
match/ confirm_account,:to => 确认#confirm_account
end

我收到:


当您没有
期望时,您有一个零对象!您可能预期一个
实例的Array。 $ {pre pre pre pre pre pre pre pre pre $ "â,
authenticity_token="dsG / e8Tw2Oi6zEDb07R / L0yDOKFEFlse + IgLbfz3Lo0 =,
user=> {confirmation_token=& $ bpassword=>[FILTERED],
password_confirmation=>[FILTERED]},
commit=>确认帐户}

虽然...确实有一个令牌,虽然...这实际上是去某个地方,虽然!

解决方案

看起来像我 confirm_account_path 不存在?



如果您没有手动设置路由,则可以在 config / routes.rb 文件中将其设置为确认#confirm_account



或者,如果您设置Devise使用您的 ConfirmationsController ,使用 new_user_confirmation_path 可能也可以(也可能不)。在控制台中键入 rake route 以查看可用的路由。他们应该导致 ConfirmationsController confirm_account 操作。



编辑:尝试编辑您的路线文件如下。

  devise_for:user,:controllers => {:confirmations => confirmations,:registrations => registration} do 
match/ confirm_account=> 确认#confirm_account
end

我想斜杠在 confirm_account 之前很重要,因为它现在位于 devise_for 块之内(与$ code> devise_scope相同) )。否则可能会转到 users / confirm_account



EDIT2:使用 params [:user ] [:confirmation_token] ,而不是 params [:account] [:confirmation_token] 在控制器中。但目前看来,确认令牌是空白的。


I'm trying to make a two-step confirmation like heroku using Devise.

My routes:

  devise_for :user, :controllers => {:confirmations => "confirmations", :registrations => "registrations" }
    put "confirm_account", :to => "confirmations#confirm_account"

Here's my alternate confirmation controller:

class ConfirmationsController < Devise::ConfirmationsController
  def show
    @account = User.find_by_confirmation_token(params[:confirmation_token])
    if !@account.present?
      render_with_scope :new
    end
  end

  def confirm_account
    @account = User.find(params[:account][:confirmation_token])
    if @account.update_attributes(params[:account]) and @account.password_match?
      @account = User.confirm_by_token(@account.confirmation_token)
      set_flash_message :notice, :confirmed      
      sign_in_and_redirect("user", @account)
    else
      render :action => "show"
    end
  end

end

Here's my show.html.erb:

<%= form_for(resource, :as => resource_name, :url => confirm_account_path(resource_name)) do |f| %>
    <%= f.label :email %>
    <%= @account.email %>
    <%= f.hidden_field :confirmation_token %>
    <%= f.label :password %>
    <%= f.password_field :password %>
    <%= f.label :password_confirmation %>
    <%= f.password_field :password_confirmation %>
    <%= f.submit 'Confirm Account' %>
    <%= link_to 'Home', root_url %>
    <%= render :partial => 'devise/shared/links' %>
<% end %>

When I click confirm after filling out the password (after clicking confirm in the confirmation email). I'm routed to /confirm_account.user That's pretty weird, right? What's going on to cause this problem?

Edit

rake routes returns:

        new_user_session GET    /user/sign_in(.:format)                   {:action=>"new", :controller=>"devise/sessions"}
            user_session POST   /user/sign_in(.:format)                   {:action=>"create", :controller=>"devise/sessions"}
    destroy_user_session GET    /user/sign_out(.:format)                  {:action=>"destroy", :controller=>"devise/sessions"}
           user_password POST   /user/password(.:format)                  {:action=>"create", :controller=>"devise/passwords"}
       new_user_password GET    /user/password/new(.:format)              {:action=>"new", :controller=>"devise/passwords"}
      edit_user_password GET    /user/password/edit(.:format)             {:action=>"edit", :controller=>"devise/passwords"}
                         PUT    /user/password(.:format)                  {:action=>"update", :controller=>"devise/passwords"}
cancel_user_registration GET    /user/cancel(.:format)                    {:action=>"cancel", :controller=>"registrations"}
       user_registration POST   /user(.:format)                           {:action=>"create", :controller=>"registrations"}
   new_user_registration GET    /user/sign_up(.:format)                   {:action=>"new", :controller=>"registrations"}
  edit_user_registration GET    /user/edit(.:format)                      {:action=>"edit", :controller=>"registrations"}
                         PUT    /user(.:format)                           {:action=>"update", :controller=>"registrations"}
                         DELETE /user(.:format)                           {:action=>"destroy", :controller=>"registrations"}
       user_confirmation POST   /user/confirmation(.:format)              {:action=>"create", :controller=>"confirmations"}
   new_user_confirmation GET    /user/confirmation/new(.:format)          {:action=>"new", :controller=>"confirmations"}
                         GET    /user/confirmation(.:format)              {:action=>"show", :controller=>"confirmations"}
             user_unlock POST   /user/unlock(.:format)                    {:action=>"create", :controller=>"devise/unlocks"}
         new_user_unlock GET    /user/unlock/new(.:format)                {:action=>"new", :controller=>"devise/unlocks"}
                         GET    /user/unlock(.:format)                    {:action=>"show", :controller=>"devise/unlocks"}
         confirm_account PUT    /confirm_account(.:format)                {:action=>"confirm_account", :controller=>"confirmations"}
        editreject_admin GET    /admin/:id/editreject(.:format)           {:action=>"editreject", :controller=>"admin"}
            reject_admin GET    /admin/:id/reject(.:format)               {:action=>"reject", :controller=>"admin"}
            accept_admin GET    /admin/:id/accept(.:format)               {:action=>"accept", :controller=>"admin"}
     entries_admin_index GET    /admin/entries(.:format)                  {:action=>"entries", :controller=>"admin"}
 preferences_admin_index GET    /admin/preferences(.:format)              {:action=>"preferences", :controller=>"admin"}
             admin_index GET    /admin(.:format)                          {:action=>"index", :controller=>"admin"}
           about_entries GET    /entries/about(.:format)                  {:action=>"about", :controller=>"entries"}
             all_entries GET    /entries/all(.:format)                    {:action=>"all", :controller=>"entries"}
       myentries_entries GET    /entries/myentries(.:format)              {:action=>"myentries", :controller=>"entries"}
              rate_entry GET    /entries/:id/rate(.:format)               {:action=>"rate", :controller=>"entries"}
            submit_entry PUT    /entries/:id/submit(.:format)             {:action=>"submit", :controller=>"entries"}
          entry_comments POST   /entries/:entry_id/comments(.:format)     {:action=>"create", :controller=>"comments"}
           entry_comment DELETE /entries/:entry_id/comments/:id(.:format) {:action=>"destroy", :controller=>"comments"}
                 entries GET    /entries(.:format)                        {:action=>"index", :controller=>"entries"}
                         POST   /entries(.:format)                        {:action=>"create", :controller=>"entries"}
               new_entry GET    /entries/new(.:format)                    {:action=>"new", :controller=>"entries"}
              edit_entry GET    /entries/:id/edit(.:format)               {:action=>"edit", :controller=>"entries"}
                   entry GET    /entries/:id(.:format)                    {:action=>"show", :controller=>"entries"}
                         PUT    /entries/:id(.:format)                    {:action=>"update", :controller=>"entries"}
                         DELETE /entries/:id(.:format)                    {:action=>"destroy", :controller=>"entries"}
                                /auth/:service/callback(.:format)         {:controller=>"services", :action=>"create"}
                services GET    /services(.:format)                       {:action=>"index", :controller=>"services"}
                         POST   /services(.:format)                       {:action=>"create", :controller=>"services"}
                    root        /(.:format)                               {:controller=>"entries", :action=>"index"}
                 offline        /offline(.:format)                        {:controller=>"application", :action=>"offline"}

Edit 3 In changing

  devise_for :user, :controllers => {:confirmations => "confirmations", :registrations => "registrations" } do
        match "/confirm_account", :to => "confirmations#confirm_account"
    end

I'm receiving :

You have a nil object when you didn't expect it! You might have expected an instance of Array. The error occurred while evaluating nil.[]

{"utf8"=>"âœ"",
 "authenticity_token"=>"dsG/e8Tw2Oi6zEDb07R/L0yDOKFEFlse+IgLbfz3Lo0=",
 "user"=>{"confirmation_token"=>"",
 "password"=>"[FILTERED]",
 "password_confirmation"=>"[FILTERED]"},
 "commit"=>"Confirm Account"}

There's definitely a token in the url, though...This is actually going somewhere, though!

解决方案

It looks to me like confirm_account_path doesn't exist?

If you didn't set up your routes manually, you can go ahead and set that in the config/routes.rb file, to confirmations#confirm_account.

Or, if you set Devise to use your ConfirmationsController, using new_user_confirmation_path may work too (and may not). Type rake routes in the console to see available routes. They should lead to the ConfirmationsController and the confirm_account action.

EDIT: Try editing your routes file as follows.

devise_for :user, :controllers => {:confirmations => "confirmations", :registrations => "registrations" } do
    match "/confirm_account" => "confirmations#confirm_account"
end

I think the slash is important before confirm_account because it is now inside the devise_for block (which is identical to devise_scope). Otherwise it may go to users/confirm_account.

EDIT2: Use params[:user][:confirmation_token], not params[:account][:confirmation_token] in the controller. But currently it looks like the confirmation token is blank.

这篇关于轨道与设计:两步确认路线错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆