From my understanding of Ruby on Rails and ActiveRecord, I am able to use the ActiveRecord model itself instead of its ID when a parameter is looking for an ID. For example, if I have a Foo model that belongs_to a Bar model, then I could write bar = Bar.new(foo_id: foo) instead of bar = Bar.new(foo_id: foo.id). However, in the model I am making now (for a Go game application), this does not seem to be the case.
Here is the relevant code from the model:
class User < ActiveRecord::Base
.
.
.
has_many :participations, dependent: :destroy
has_many :games, through: :participations
end
class Game < ActiveRecord::Base
attr_accessible :height, :width
has_many :participations, dependent: :destroy
has_many :users, through: :participations
def black_player
self.users.joins(:participations).where("participations.color = ?", false).first
end
def white_player
self.users.joins(:participations).where("participations.color = ?", true).first
end
end
class Participation < ActiveRecord::Base
attr_accessible :game_id, :user_id, :color
belongs_to :game
belongs_to :user
validates_uniqueness_of :color, scope: :game_id
validates_uniqueness_of :user_id, scope: :game_id
end
(color is a boolean where false=black, true=white)
If I have created two Users, black_player (id=1) and white_player (id=2), and a Game game, I can do this:
game.participations.create(user_id: black_player, color: false)
And game.participations and black_player.participations both show this new Participation:
=> #<Participation id: 1, game_id: 1, user_id: 1, color: false, created_at: "2012-10-10 20:07:23", updated_at: "2012-10-10 20:07:23">
However, if I then try:
game.participations.create(user_id: white_player, color: true)
then the new Participation has a user_id of 1 (black_player's id). As I validate against duplicate players in the same game, this is not a valid Participation and is not added to the database:
=> #<Participation id: nil, game_id: 1, user_id: 1, color: true, created_at: nil, updated_at: nil>
However, if I do:
game.participations.create(user_id: white_player.id, color: true)
Then it does work:
=> #<Participation id: 2, game_id: 1, user_id: 2, color: true, created_at: "2012-10-10 20:34:03", updated_at: "2012-10-10 20:34:03">
What is the cause of this behavior?