aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_one_association.rb
diff options
context:
space:
mode:
authorTobias Lütke <tobias.luetke@gmail.com>2006-12-06 00:13:31 +0000
committerTobias Lütke <tobias.luetke@gmail.com>2006-12-06 00:13:31 +0000
commitcdad2d41e18977dd66518efddcb83c2107f0e057 (patch)
treebc7b29ec491f534cd2ca91385658d404e3382452 /activerecord/lib/active_record/associations/has_one_association.rb
parent8dea60b0c3a965c169127e0f1f4777bfbbc5e16d (diff)
downloadrails-cdad2d41e18977dd66518efddcb83c2107f0e057.tar.gz
rails-cdad2d41e18977dd66518efddcb83c2107f0e057.tar.bz2
rails-cdad2d41e18977dd66518efddcb83c2107f0e057.zip
Consolidated different create and create! versions to call through to the base class with scope. This fixes inconsistencies, especially related to protected attribtues.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5684 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations/has_one_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_one_association.rb33
1 files changed, 30 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/associations/has_one_association.rb b/activerecord/lib/active_record/associations/has_one_association.rb
index 4ccd725ebd..9beddb2ac9 100644
--- a/activerecord/lib/active_record/associations/has_one_association.rb
+++ b/activerecord/lib/active_record/associations/has_one_association.rb
@@ -6,9 +6,29 @@ module ActiveRecord
construct_sql
end
- def create(attributes = {}, replace_existing = true)
- record = build(attributes, replace_existing)
- record.save
+ def create(attrs = {}, replace_existing = true)
+ record = @reflection.klass.with_scope(construct_scope) { @reflection.klass.create(attrs) }
+
+ if replace_existing
+ replace(record, true)
+ else
+ record[@reflection.primary_key_name] = @owner.id unless @owner.new_record?
+ self.target = record
+ end
+
+ record
+ end
+
+ def create!(attrs = {}, replace_existing = true)
+ record = @reflection.klass.with_scope(construct_scope) { @reflection.klass.create!(attrs) }
+
+ if replace_existing
+ replace(record, true)
+ else
+ record[@reflection.primary_key_name] = @owner.id unless @owner.new_record?
+ self.target = record
+ end
+
record
end
@@ -75,6 +95,13 @@ module ActiveRecord
end
@finder_sql << " AND (#{conditions})" if conditions
end
+
+ def construct_scope
+ create_scoping = {}
+ set_belongs_to_association_for(create_scoping)
+ { :create => create_scoping }
+ end
+
end
end
end