0

このチュートリアルに従って、ベータ招待システムを作成しました。http://railscasts.com/episodes/124-beta-invitations。ユーザーは、Rails アプリで相互にフォローすることもできます。

サインアップ時に招待した人を招待者にフォローさせるにはどうすればよいですか?

現在、メソッドを使用してユーザー モデルでこれを確立しようとしていますが、sender_id/user_id を介して招待者が招待者をフォローできるようにするメソッドの作成に問題があります。

これは私がこれまでに使用したコードです。

スキーマ

  create_table "users", :force => true do |t|
    t.string   "name"
    t.string   "email"
    t.integer  "invitation_id"
    t.integer  "invitation_limit"
    t.timestamp "created_at",                                :null => false
    t.timestamp "updated_at",                                :null => false
    t.string    "password_reset_token"
    t.timestamp "password_reset_sent_at"
  end

  create_table "invitations", :force => true do |t|
    t.integer  "sender_id"
    t.string   "recipient_email"
    t.string   "token"
    t.datetime "sent_at"
    t.datetime "created_at",      :null => false
    t.datetime "updated_at",      :null => false
  end

モデル

ユーザー

class User < ActiveRecord::Base
  attr_accessible :name, :email, :password, :password_confirmation, :invitation_token

  has_many :relationships, foreign_key: "follower_id", dependent: :destroy
  has_many :followed_users, through: :relationships, source: :followed

  has_many :reverse_relationships, foreign_key: "followed_id",
                               class_name:  "Relationship",
                               dependent:   :destroy
  has_many :followers, through: :reverse_relationships, source: :follower

  has_many :sent_invitations, :class_name => 'Invitations', :foreign_key => 'sender_id'

  belongs_to :invitation

  after_create :follow_inviter      #---------- HERE!!

  def follow_inviter                #---------- HERE!!
    inviters = Invitation.find_by_sender_id
    inviters.each do |invite|
      self.follow!(invite)
    end
  end

  def invitation_token
    invitation.token if invitation
  end

  def invitation_token=(token)
    self.invitation = Invitation.find_by_token(token)
  end

  def following?(other_user)
    relationships.find_by_followed_id(other_user.id)
  end

 def follow!(other_user)
    relationships.create!(followed_id: other_user.id)
  end

  def unfollow!(other_user)
    relationships.find_by_followed_id(other_user.id).destroy
  end

end

関係

class Relationship < ActiveRecord::Base

  attr_accessible :followed_id

  belongs_to :follower, class_name: "User"
  belongs_to :followed, class_name: "User"

  validates :follower_id, presence: true
  validates :followed_id, presence: true
end

招待

class Invitation < ActiveRecord::Base
  attr_accessible :recipient_email, :sender_id, :sent_at, :token

  belongs_to :sender, :class_name => "User"
  has_one :recipient, :class_name => "User"

  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i

  before_create :generate_token

  private

    def generate_token
      self.token = Digest::SHA1.hexdigest([Time.now, rand].join)
    end

end
4

3 に答える 3

1

これはうまくいくはずです。

def follow_inviter
  if invitation = Invitation.find_by_recipient_email(email)
    follow!(invitation.sender)
  end
end

しかし、モデルの関連付けは明確に定義されていません。たとえばhas_one :recipient, :class_name => "User"、表に がInvitationあると予想されrecipient_idますが、そうではありません。そこを見直すべきです。

于 2013-09-14T08:16:36.987 に答える
1

私は間違っているかもしれません。私はジュニア レール開発者ですが、招待状を送信した人の ID はどこにあるのinviters = Invitation.find_by_sender_idでしょうか。inviters = Invitation.find_by_sender_id(id_of_sender)id_of_sender

は 1 つのfind_by_sender_id引数 (検出される送信者の ID) を取り、エラーが発生するのはそのためですwrong number of arguments (0 for 1)

find_by_*_idまた、価値があることについては、 * がデータベース内のモデルであるメソッドが非推奨になっていることは間違いありません。Rails 4 は のようなものを使用しますInvitation.find(id_of_sender)findアクティブなレコード モデルでメソッドを呼び出すと、id がパラメータとして取りられます。

Invitation.find_by(email: 'user@example.com')を使用して、指定したプロパティに基づいてレコードを検索することもできます。

于 2013-09-14T05:44:37.690 に答える
0

私があなたの質問を誤解している場合はお詫びします...あるユーザーが別のユーザーを「お気に入り」ユーザーとしてマークできるという同様の要件があります(つまり、ユーザーテーブルには自己関係があります)

user_favoriteこれを実装するために、次のようなテーブルを追加しました。

db\schema.rb

  create_table "user_favorites", :id => false, :force => true do |t|
    t.integer "user_id"
    t.integer "favorite_user_id"
  end

  add_index "user_favorites", ["user_id"], :name => "index_user_favorites_on_user_id"

app\models\user.rb

class User < ActiveRecord::Base
  has_and_belongs_to_many       :favorite_users, :class_name => 'User', :join_table => "user_favorites", :foreign_key => "user_id", :association_foreign_key => "favorite_user_id"

  def is_favorite?(user)
    self.favorite_users.include?(user)
  end

  def toggle_favorite(favorite_user)
    if favorite_user
      if self.favorite_users.include?(favorite_user)
        self.favorite_users.delete favorite_user
      else
        self.favorite_users << favorite_user
      end
    end  
  end
end
于 2013-09-14T06:16:13.593 に答える