Authlogic::Session::Activation::NotActivatedError user_sessions_controller.rbuser_session.rbapplication_controller.rbuser.rbroutes.rbGemfilenew.html.erb表单迁移表

问题描述

使用 authlogic gem 在浏览器中验证用户登录,但收到“您的帐户处于非活动状态错误”我已经尝试了所有可以在网络上找到的解决方案,但似乎没有一个有效。

在创建会话之前调用命令 Authlogic::Session::Base.controller = Authlogic::ControllerAdapters::RailsAdapter.new(controller) 至少可以解决 irb 中的问题。

UserSessionsController 中做同样的事情会让你到任何地方。我尝试在 before_action :activate_authlogic调用 UserSessionsController,而将所述函数的定义放在 application_controller.rb

这是我的代码

user_sessions_controller.rb

class   UserSessionsController < ApplicationController
  def new
    @user_session = UserSession.new
  end

  def create
    @user_session = UserSession.new(user_session_params.to_h)
    if @user_session.save
      redirect_to root_url
    else
      render :action => :new
    end
  end

  def destroy
    current_user_session.destroy
    redirect_to new_user_session_url
  end

  private

  def user_session_params
    params.require(:user_session).permit(:login,:password,:remember_me)
  end

end

user_session.rb

class UserSession < Authlogic::Session::Base
end

application_controller.rb

class ApplicationController < ActionController::Base
  helper_method :current_user_session,:current_user

  private
    def current_user_session
      return @current_user_session if defined?(@current_user_session)
      @current_user_session = UserSession.find
    end

    def current_user
      return @current_user if defined?(@current_user)
      @current_user = current_user_session && current_user_session.user
    end

    # def activate_authlogic
    #   Authlogic::Session::Base.controller = Authlogic::ControllerAdapters::RailsAdapter.new(self)
    # end
end

user.rb

class User < ApplicationRecord
  has_one :user_profile

  acts_as_authentic do |c|
    c.crypto_provider = ::Authlogic::CryptoProviders::SCrypt
  end

  validates :email,format: {
      with: /@/,message: "should look like an email address."
    },length: { maximum: 100 },uniqueness: {
      case_sensitive: false,if: :will_save_change_to_email?
    }

  validates :login,format: {
      with: /\A[a-z0-9]+\z/,message: "should use only letters and numbers."
    },length: { within: 8..100 },if: :will_save_change_to_login?
    }

  validates :password,confirmation: { if: :require_password? },length: {
      minimum: 8,if: :require_password?
    }
  validates_presence_of :password_confirmation
    length: {
      minimum: 8,if: :require_password?
  }
end

以防万一

routes.rb

Rails.application.routes.draw do
  # For details on the DSL available within this file,see https://guides.rubyonrails.org/routing.html
  root "home_page#index"
  get "/home",to: "home_page#index"

  resources :users do
    resource :user_profile
  end

  resource :user_session
end

我确实认为这是一个错误,所以我将 authlogic gem 从 6.4.0 更新到 6.4.1。不用说它也没有帮助。

这里是

Gemfile

source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.7.2'

# Bundle edge Rails instead: gem 'rails',github: 'rails/rails'
gem 'rails','~> 6.1.1'
# Use postgresql as the database for Active Record
gem 'pg','~> 1.1'
# Use Puma as the app server
gem 'puma','~> 5.0'
# Use SCSS for stylesheets
gem 'sass-rails','>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker','~> 5.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks','~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder','~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis','~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt','~> 3.1.7'
gem 'authlogic'

# Use Active Storage variant
# gem 'image_processing','~> 1.2'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap','>= 1.4.4',require: false

gem "scrypt","~> 3.0"

group :development,:test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug',platforms: [:mri,:mingw,:x64_mingw]
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console','>= 4.1.0'
  # display performance information such as sql time and flame graphs for each request in your browser.
  # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
  gem 'rack-mini-profiler','~> 2.0'

  gem 'rspec-rails','~> 4.0.2'

  gem 'capybara'
end

# Windows does not include zoneinfo files,so bundle the tzinfo-data gem
gem 'tzinfo-data',platforms: [:mingw,:mswin,:x64_mingw,:jruby]

new.html.erb(表单)

<%= form_for @user_session,url: user_session_url do |f| %>
  <% if @user_session.errors.any? %>
  <div id="error_explanation">
    <h2><%= pluralize(@user_session.errors.count,"error") %> prohibited:</h2>
    <ul>
      <% @user_session.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
    </ul>
  </div>
  <% end %>
  <%= f.label :login %><br />
  <%= f.text_field :login %><br />
  <br />
  <%= f.label :password %><br />
  <%= f.password_field :password %><br />
  <br />
  <%= f.label :remember_me %><br />
  <%= f.check_Box :remember_me %><br />
  <br />
  <%= f.submit "Login" %>
<% end %>

迁移表

class createusers < ActiveRecord::Migration[6.1]
  def change
    create_table :users do |t|
      # Authlogic::ActsAsAuthentic::Email
      t.string    :email
      t.index     :email,unique: true

      # Authlogic::ActsAsAuthentic::Login
      t.string    :login

      # Authlogic::ActsAsAuthentic::Password
      t.string    :crypted_password
      t.string    :password_salt

      # Authlogic::ActsAsAuthentic::Persistencetoken
      t.string    :persistence_token
      t.index     :persistence_token,unique: true

      # Authlogic::ActsAsAuthentic::SingleAccesstoken
      t.string    :single_access_token
      t.index     :single_access_token,unique: true

      # Authlogic::ActsAsAuthentic::Perishabletoken
      t.string    :perishable_token
      t.index     :perishable_token,unique: true

      # See "Magic Columns" in Authlogic::Session::Base
      t.integer   :login_count,default: 0,null: false
      t.integer   :Failed_login_count,null: false
      t.datetime  :last_request_at
      t.datetime  :current_login_at
      t.datetime  :last_login_at
      t.string    :current_login_ip
      t.string    :last_login_ip

      # See "Magic States" in Authlogic::Session::Base
      t.boolean   :active,default: false
      t.boolean   :approved,default: false
      t.boolean   :confirmed,default: false

      t.timestamps
    end
  end
end

解决方法

Your account in not active error 那是因为您的迁移文件添加了 Magic States 字段:

# See "Magic States" in Authlogic::Session::Base
t.boolean   :active,default: false
t.boolean   :approved,default: false
t.boolean   :confirmed,default: false

这意味着您必须先将这些字段设置为 true,然后才能让用户登录。

因此,如果您不需要这些字段,您可以在新迁移中删除它们。

def change
  change_table :users do |t|
    t.remove :title,:active
    t.remove :title,:approved
    t.remove :title,:confirmed
  end
end