Created
September 26, 2011 17:03
-
-
Save ceritium/1242744 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Project | |
include Mongoid::Document | |
include Mongoid::Timestamps | |
embeds_many :histories | |
has_many :invitations | |
field :name, type: String | |
validates_presence_of :name | |
has_and_belongs_to_many :users | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# work | |
def create | |
@project = Project.new(params[:project]) | |
if @project.save | |
@project.users << current_user | |
redirect_to project_path(@project), :notice => 'Project created' | |
else | |
render 'new' | |
end | |
end | |
# no work | |
def create | |
@project = current_user.projects.build(params[:project]) | |
if @project.save | |
redirect_to project_path(@project), :notice => 'Project created' | |
else | |
render 'new' | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User | |
include Mongoid::Document | |
# Include default devise modules. Others available are: | |
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable | |
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable | |
field :name | |
validates_presence_of :name | |
validates_uniqueness_of :name, :email, :case_sensitive => false | |
attr_accessible :name, :email, :password, :password_confirmation, :remember_me | |
has_and_belongs_to_many :projects | |
end |
The same result :(
PS: Thanks
This is the result in console with "build" and a direct "create".
ruby-1.9.2-p290 :015 > u = User.last
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: []>
ruby-1.9.2-p290 :016 > u.projects
=> []
ruby-1.9.2-p290 :017 > p = u.projects.build(:name => 'test')
=> #<Project _id: 4e80d68a94fed4360f000002, _type: nil, created_at: nil, updated_at: nil, user_ids: [BSON::ObjectId('4e80aeb894fed428d7000006')], name: "test">
ruby-1.9.2-p290 :018 > u
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80d68a94fed4360f000002')]>
ruby-1.9.2-p290 :019 > p.save
=> true
ruby-1.9.2-p290 :020 > u
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80d68a94fed4360f000002')]>
ruby-1.9.2-p290 :021 > u.reload
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: []>
ruby-1.9.2-p290 :022 > p = u.projects.create(:name => 'test2')
=> #<Project _id: 4e80d6a694fed4360f000003, _type: nil, created_at: 2011-09-26 19:46:46 UTC, updated_at: 2011-09-26 19:46:46 UTC, user_ids: [BSON::ObjectId('4e80aeb894fed428d7000006')], name: "test2">
ruby-1.9.2-p290 :023 > u
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80d6a694fed4360f000003')]>
ruby-1.9.2-p290 :024 > u.reload
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80d6a694fed4360f000003')]>
Mmm, it seems that project
is not being marked as dirty
and so is not being saved.
What happen if you save from the User side?
ruby-1.9.2-p290 :015 > u = User.last
ruby-1.9.2-p290 :016 > u.projects
ruby-1.9.2-p290 :017 > p = u.projects.build(:name => 'test')
ruby-1.9.2-p290 :018 > u.save
ruby-1.9.2-p290 :049 > u = User.last
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: []>
ruby-1.9.2-p290 :050 > u.projects
=> []
ruby-1.9.2-p290 :051 > p = u.projects.build(:name => 'test')
=> #<Project _id: 4e80dbd594fed4360f000005, _type: nil, created_at: nil, updated_at: nil, user_ids: [BSON::ObjectId('4e80aeb894fed428d7000006')], name: "test">
ruby-1.9.2-p290 :052 > u.save
=> true
ruby-1.9.2-p290 :053 >
ruby-1.9.2-p290 :054 >
ruby-1.9.2-p290 :055 >
ruby-1.9.2-p290 :056 > u
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80dbd594fed4360f000005')]>
ruby-1.9.2-p290 :057 > u.reload
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80dbd594fed4360f000005')]>
ruby-1.9.2-p290 :058 > u
=> #<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80dbd594fed4360f000005')]>
ruby-1.9.2-p290 :059 > u.projects
=> []
ruby-1.9.2-p290 :060 > p
=> #<Project _id: 4e80dbd594fed4360f000005, _type: nil, created_at: nil, updated_at: nil, user_ids: [BSON::ObjectId('4e80aeb894fed428d7000006')], name: "test">
ruby-1.9.2-p290 :062 > p.users
=> [#<User _id: 4e80aeb894fed428d7000006, _type: nil, email: "[email protected]", encrypted_password: "$2a$10$x293r.HK19do3f2H113nT.vdFZcrHRPvvPL6p5cBXoBzkMNasJB4O", remember_created_at: nil, reset_password_token: nil, reset_password_sent_at: nil, sign_in_count: 1, current_sign_in_at: 2011-09-26 16:56:24 UTC, last_sign_in_at: 2011-09-26 16:56:24 UTC, current_sign_in_ip: "127.0.0.1", last_sign_in_ip: "127.0.0.1", name: "joselito", project_ids: [BSON::ObjectId('4e80dbd594fed4360f000005')]>]
ruby-1.9.2-p290 :063 > p.reload
Mongoid::Errors::DocumentNotFound: No se encontró ningún documento para la clase Project con los id(s) 4e80dbd594fed4360f000005.
from /Users/ceritium/.rvm/gems/ruby-1.9.2-p290@scrum/gems/mongoid-2.2.1/lib/mongoid/document.rb:149:in `reload'
from (irb):63
from /Users/ceritium/.rvm/gems/ruby-1.9.2-p290@scrum/gems/railties-3.1.0/lib/rails/commands/console.rb:45:in `start'
from /Users/ceritium/.rvm/gems/ruby-1.9.2-p290@scrum/gems/railties-3.1.0/lib/rails/commands/console.rb:8:in `start'
from /Users/ceritium/.rvm/gems/ruby-1.9.2-p290@scrum/gems/railties-3.1.0/lib/rails/commands.rb:40:in `<top (required)>'
from script/rails:6:in `require'
from script/rails:6:in `<main>'
Exactly, project
is not being marked as dirty
and thus is not saved automatically. As to why, I don't know :)
This should work:
def create
@project = current_user.projects.new(params[:project])
if @project.save && current_user.save
redirect_to project_path(@project), :notice => 'Project created'
else
render 'new'
end
@Nerian But if for some reason @project.save
works but current_user.save
blows up, you will end with a corrupted relationship. I think that is safer to go with something like
def create
@project = current_user.create!(params[:project])
redirect_to @project, :notice => 'Project created'
rescue Mongoid::Errors::Validations
# You can check for sanity here
render 'new'
end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What happens if you do:
@project = current_user.projects.new(params[:project])
?