2

因此,我帮助一位朋友将 Omniauth 添加到他的应用程序中,但由于某种原因,omniauth 只能在第一次工作。

但现在,它又回来了:

     PG::Error: ERROR: duplicate key value violates 
    unique constraint "index_users_on_email" 
DETAIL: Key (email)=() already exists. : INSERT INTO "users" 
("created_at", "provider", "uid", "updated_at", "username") 
VALUES ($1, $2, $3, $4, $5) RETURNING "id"

就像它只接受一个,然后说“已经存在”。我们怎样才能让这个工作?

用户.rb

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable, :omniauthable,
         :recoverable, :rememberable, :trackable, :validatable

  has_many :songs
  has_many :comments

  acts_as_voter

  def self.from_omniauth(auth)
    where(auth.slice(:provider, :uid)).first_or_create do |user|
      user.provider = auth.provider
      user.uid = auth.uid
      user.username = auth.info.nickname
    end
  end

  def self.new_with_session(params, session)
    if session["devise.user_attributes"]
      new session["devise.user_attributes"] do |user|
          user.attributes = params
        user.valid?
      end
    else
      super
    end
  end

  def password_required?
    super && provider.blank?
  end

  def update_with_password(params, *options)
    if encrypted_password.blank?
      update_attributes(params, *options)
    else
      super
    end
  end

  def email_required?
    super && provider.blank?
  end


end

模式片段

 create_table "users", force: true do |t|
    t.string   "email",                  default: "", null: false
    t.string   "encrypted_password",     default: "", null: false
    t.string   "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.integer  "sign_in_count",          default: 0
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string   "current_sign_in_ip"
    t.string   "last_sign_in_ip"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.boolean  "admin"
    t.string   "provider"
    t.string   "uid"
    t.string   "username"
  end

全向控制器

class OmniauthCallbacksController < Devise::OmniauthCallbacksController
  def all
    user = User.from_omniauth(request.env["omniauth.auth"])
    if user.persisted?
      flash.notice = "Signed in!"
      sign_in_and_redirect user
    else
      session["devise.user_attributes"] = user.attributes
      redirect_to new_user_registration_url
    end
  end
  alias_method :twitter, :all
end

所有访问密钥都按照 railscasts 的最新 ep 正确设置。

4

3 回答 3

2

更简单的解释可能是这是由于您的测试数据是在没有唯一电子邮件的情况下生成的。如果您看到类似以下内容,请尝试查看 /test/fixtures/users.yml:

one: {
}
two: {
}

然后将其更改为

one: {
  email: tester1@stack.com
}
one: {
  email: tester2@stack.com
}

或者您可以删除文件的内容。

于 2014-01-14T15:47:01.343 回答
2

您对电子邮件字段有唯一的约束。因为该字段被定义为不可为空并且具有默认值“”(空字符串)。这意味着如果您不指定电子邮件,您的 DBMS 会将此字段设置为“”。当然,因为它有一个唯一的约束,你只能添加两个没有电子邮件的用户,因为只有一个可以有空字符串 email。

如果您没有手动创建约束,那么我假设 rails 已经为您创建了它(因为电子邮件字段上显然也有一个索引)假设第一个字段是表主键,因为您没有指定任何内容。这使它在其上同时创建索引和唯一约束。

于 2013-08-09T07:40:47.593 回答
1

您可以从电子邮件中删除索引,因为设计将其设置为唯一。根据默认情况下设计的设置方式,您不能有重复的空白电子邮件地址。这是一个迁移示例。

class ChangeEmail < ActiveRecord::Migration
  def change
    remove_index :users, :email
  end
end
于 2014-10-02T10:00:42.650 回答