0

我按照 Railscasts #235 和 #236 设置使用omniauth 创建用户身份验证。 http://railscasts.com/episodes/235-omniauth-part-1 http://railscasts.com/episodes/236-omniauth-part-2

我在名为 :facebok_share 和 :twitter_share 的用户模型上有 2 个布尔属性,我想在创建新身份验证时将其设置为 true。

当我创建一个新用户时,我可以为我工作,但是如果现有用户添加了身份验证,我无法将布尔值更新为 true。

当调用 apply_omniauth(omniauth) 时,它会在我的用户模型中设置 self.facebook_share = true 或 self.twitter_share = true。

我试图添加一个名为 apply_share 的新方法,它根据提供者更改布尔值,我试图调用 current_user.apply_share(omniauth) 但数据库中没有发生任何事情。

我究竟做错了什么?谢谢!

## 身份验证控制器

class AuthenticationsController < ApplicationController

  def index
    @title = "Authentications"
    @authentications = current_user.authentications if current_user
  end

  def create
    # creates omniauth hash and looks for an previously established authentication
    omniauth = request.env["omniauth.auth"]
    authentication = Authentication.find_by_provider_and_uid(omniauth['provider'], omniauth['uid'])
    # if previous authentication found, sign in user
    if authentication
      flash[:notice] = "Signed in successfully"
      sign_in_and_redirect(:user, authentication.user)
    #  for users already signed in (current_user), create a new authentication for the user
    elsif current_user
      current_user.apply_share(omniauth)
      current_user.authentications.create(:provider => omniauth['provider'], :uid => omniauth['uid'], :token => (omniauth['credentials']['token'] rescue nil),
                                           :secret => (omniauth['credentials']['secret'] rescue nil))
      flash[:notice] = "authentications successful"
      redirect_to authentications_url
    # new user is created and authentications are built through apply_omniauth(omniauth)
    else
      user = User.new
      user.apply_omniauth(omniauth)
      if user.save
        flash[:notice] = "Signed in successfully"
        sign_in_and_redirect(:user, user)
      # if validations fail to save user, redirects to new user registration page 
      # new twitter authentications redirect so user can enter their password
      else
        session[:omniauth] = omniauth
        redirect_to new_user_registration_url
      end
     end
   end

  def destroy
    @authentication = current_user.authentications.find(params[:id])
    @authentication.destroy
    flash[:notice] = "Successfully destroyed authentication."
    redirect_to authentications_url
  end

end

## user model

 # set share booleans to true depending on 'provider' type
  def apply_share(omniauth)
    case omniauth['provider']
      when 'facebook'
        self.facebook_share = true
      when 'twitter'
        self.twitter_share = true
     end
   end

 # from authentications controller, new user split into type of provider
 def apply_omniauth(omniauth)
   case omniauth['provider']
   when 'facebook'
     self.apply_facebook(omniauth)
   when 'twitter'
     self.apply_twitter(omniauth)
   end
   # builds authentication with provider, uid, token, and secret
   authentications.build(hash_from_omniauth(omniauth))
  end

 protected

 # sets new user attributes from facebook
 def apply_facebook(omniauth)
   self.name = omniauth['user_info']['name']
   self.email = omniauth['user_info']['email'] if email.blank?
   self.facebook_share = true
 end

 # sets new user attributes from twitter 
 def apply_twitter(omniauth)
   if (extra = omniauth['extra']['user_hash'] rescue false)
     # Example fetching extra data. Needs migration to User model:
     # self.firstname = (extra['name'] rescue '')
     self.name = (extra['name'] rescue '')
     self.bio = (extra['description'] rescue '') 
   end
   self.twitter_share = true

 end

 # set authentication attributes to those from 'omniauth' hash
 def hash_from_omniauth(omniauth)
   {
     :provider => omniauth['provider'],
     :uid => omniauth['uid'],
     :token => (omniauth['credentials']['token'] rescue nil),
     :secret => (omniauth['credentials']['secret'] rescue nil)
   }
 end
end


## new methid with :before add => :apply_share
def apply_share(authentication) 
  case authentication['provider'] 
    when 'facebook' 
      self.facebook_share = true 
    when 'twitter'
      self.twitter_share = true 
    end 
  self.save
end
4

2 回答 2

2

我相信您从未真正保存过 current_user。因此,您将属性设置为 true,然后重定向。关联存储在身份验证模型中,因此 Rails 试图提供帮助,不会更新 current_user,只是更新身份验证的新实例

尝试:

current_user.apply_share(omniauth)
current_user.save

看看是否可以解决它。现在,如果确实如此,我强烈建议您改用回调。看看这里:

http://guides.rubyonrails.org/association_basics.html

第 4.5 节关于关联回调。您可以在 has_many 身份验证关联上执行 before_add 回调,以从控制器中删除该代码,因为它变得非常臃肿。

   class User < ActiveRecord::Base
     has_many :authentications, :before_add => :apply_share

     def apply_share(authentication)
      #update attributes
      #save model
     end
   end
于 2011-06-25T04:07:08.433 回答
1

您需要#saveUser设置属性后调用对象*_share

将新项目添加到has_many集合会自动保存集合项目,但不会触发对父项 ( belongs_to) 的保存操作。

于 2011-06-25T04:09:05.610 回答