Skip to content
This repository was archived by the owner on Aug 17, 2017. It is now read-only.

Empty all protected attributes when integrate strong_parameters #111

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lib/active_model/forbidden_attributes_protection.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
require 'active_support/concern'

module ActiveModel
class ForbiddenAttributes < StandardError
end

module ForbiddenAttributesProtection
extend ActiveSupport::Concern

def sanitize_for_mass_assignment(*options)
new_attributes = options.first
if !new_attributes.respond_to?(:permitted?) || new_attributes.permitted?
Expand All @@ -11,5 +15,11 @@ def sanitize_for_mass_assignment(*options)
raise ActiveModel::ForbiddenAttributes
end
end

module ClassMethods
def attributes_protected_by_default
[]
end
end
end
end
12 changes: 9 additions & 3 deletions test/active_model_mass_assignment_taint_protection_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
require 'test_helper'

class Person
class Base
def self.attributes_protected_by_default
['id', 'type']
end
end

class Person < Base
include ActiveModel::MassAssignmentSecurity
include ActiveModel::ForbiddenAttributesProtection

Expand All @@ -23,8 +29,8 @@ class ActiveModelMassUpdateProtectionTest < ActiveSupport::TestCase

test "regular attributes should still be allowed" do
assert_nothing_raised do
assert_equal({ :a => "b" },
Person.new.sanitize_for_mass_assignment(:a => "b"))
assert_equal({ :a => "b", :id => 1, :type => 'Type' },
Person.new.sanitize_for_mass_assignment(:a => "b", :id => 1, :type => 'Type'))
end
end
end