44

在我的网络应用程序上使用 Rails 4 和 Devise 3.1.0。我写了一个 Cucumber 测试来测试用户注册;当从电子邮件中单击“确认我的帐户”链接时,它会失败。

Scenario: User signs up with valid data                                                           # features/users/sign_up.feature:9
    When I sign up with valid user data                                                             # features/step_definitions/user_steps.rb:87
    Then I should receive an email                                                                  # features/step_definitions/email_steps.rb:51
    When I open the email                                                                           # features/step_definitions/email_steps.rb:76
    Then I should see the email delivered from "no-reply@mysite.com"                                # features/step_definitions/email_steps.rb:116
    And I should see "You can confirm your account email through the link below:" in the email body # features/step_definitions/email_steps.rb:108
    When I follow "Confirm my account" in the email                                                 # features/step_definitions/email_steps.rb:178
    Then I should be signed in                                                                      # features/step_definitions/user_steps.rb:142
      expected to find text "Logout" in "...Confirmation token is invalid..." (RSpec::Expectations::ExpectationNotMetError)
     ./features/step_definitions/user_steps.rb:143:in `/^I should be signed in$

当我也通过 Web 服务器手动注册时,此错误是可重现的,因此它似乎不是 Cucumber 问题。

我想:

  • 用户能够通过此电子邮件的链接一键确认他们的帐户
  • 让用户在确认其帐户后保持登录状态

我有设置:

  • 最新的设计代码,来自 GitHub (3.1.0, ref 041fcf90807df5efded5fdcd53ced80544e7430f)
  • 一个User实现的类confirmable
  • 使用“默认”确认控制器(我还没有定义自己的自定义控制器。)

我读过这些帖子:

并尝试过:

  • 在我的 Devise 初始化程序中设置config.allow_insecure_tokens_lookup = true,它在启动时会引发“未知方法”错误。另外,这听起来应该只是一个临时修复,所以我想避免使用它。
  • 清除我的数据库并从头开始(因此不存在旧令牌)

更新:

检查User注册后存储的确认令牌。emails 令牌与 DBs 令牌匹配。根据上面的帖子,新的设计行为说不应该,而是应该根据电子邮件的令牌生成第二个令牌。这是可疑的。运行User.confirm_by_token('[EMAIL_CONFIRMATION_TOKEN]')返回的用户设置了错误“@messages={:confirmation_token=>["is invalid"]}”,这似乎是问题的根源。

不匹配的代币似乎是问题的核心;在控制台中运行以下代码以手动更改用户的确认令牌会导致确认成功:

new_token = Devise.token_generator.digest(User, :confirmation_token, '[EMAIL_TOKEN]')
u = User.first
u.confirmation_token = new_token
u.save
User.confirm_by_token('[EMAIL_TOKEN]') # Succeeds

那么为什么它首先将错误的确认令牌保存到数据库中呢?我正在使用自定义注册控制器......也许其中有一些东西导致它设置不正确?

路线.rb

  devise_for  :users,
          :path => '',
          :path_names => {
            :sign_in => 'login',
            :sign_out => 'logout',
            :sign_up => 'register'
            },
          :controllers => {
            :registrations => "users/registrations",
            :sessions => "users/sessions"
          }

用户/registrations_controller.rb

class Users::RegistrationsController < Devise::RegistrationsController

  def create
    # Custom code to fix DateTime issue
    Utils::convert_params_date_select params[:user][:profile_attributes], :birthday, nil, true

    super
  end

  def sign_up_params
    # TODO: Still need to fix this. Strong parameters with nested attributes not working.
    #       Permitting all is a security hazard.
    params.require(:user).permit!
    #params.require(:user).permit(:email, :password, :password_confirmation, :profile_attributes)
  end
  private :sign_up_params
end
4

3 回答 3

97

因此,升级到 Devise 3.1.0 在我有一段时间没有触及的视图中留下了一些“笨拙”的东西。

根据这篇博客文章,您需要更改您的设计邮件以使用@token而不是旧的@resource.confirmation_token

找到它app/views/<user>/mailer/confirmation_instructions.html.erb并将其更改为:

<p>Welcome <%= @resource.email %>!</p>
<p>You can confirm your account email through the link below:</p>
<p><%= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @token) %></p>

这应该可以解决您遇到的任何基于令牌的确认问题。这也可能解决任何解锁或重置密码令牌问题。

于 2013-09-07T15:57:29.023 回答
0

从设计 3.5.2 开始,确认令牌不再在确认过程中被消化。这意味着电子邮件中的令牌将与数据库中的令牌匹配。

在弄清楚这一点后,我仍然无法确认,但在我的情况下,它原来是我在覆盖时引入的错误find_first_by_auth_conditions。通过修复我在该方法中引入的错误,我通过确认修复了我的错误。

于 2018-03-01T18:21:57.633 回答
0

我的一个朋友刚刚发现了这个问题并给我发了电子邮件询问我是否已经解决了这个问题,这提醒我我从未提交过自己的答案,所以这里是 :)

我最终重置了令牌并使用send来获取原始令牌。这很丑陋,但它适用于devise (3.5.1).

26   it "should auto create org" do
27     email = FG.generate :email
28     visit new_user_registration_path
29     fill_in :user_name, with: 'Ryan Angilly'
30     fill_in :user_user_provided_email, with: email
31     fill_in :user_password, with: '1234567890'
32 
33     expect do
34       click_button 'Continue'
35     end.to change { Organization.count }.by(1)
36 
37     expect(page.current_path).to eq(confirmation_required_path)
38     u = User.where(email: email).first
39     u.send :generate_confirmation_token
40     email_token = u.instance_variable_get(:@raw_confirmation_token)
41     u.save!
42     os = u.organizations
43     expect(os.size).to eq(1)
44     visit user_confirmation_path(confirmation_token: email_token)
45     o = os.first
46 
47     u.reload
48     expect(u.confirmed?)
49     expect(page.current_url).to eq(organization_getting_started_url(o))
50   end
于 2015-12-20T19:49:24.640 回答