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

Permit ActionController::AnyParam on hashes #193

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
7 changes: 7 additions & 0 deletions lib/action_controller/parameters.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ def initialize(params)
end
end

class AnyParam; end

class Parameters < ActiveSupport::HashWithIndifferentAccess
attr_accessor :permitted
alias :permitted? :permitted
Expand Down Expand Up @@ -191,6 +193,11 @@ def hash_filter(params, filter)
slice(*filter.keys).each do |key, value|
next unless value

if filter[key] == ActionController::AnyParam
params[key] = value
return
end

if filter[key] == []
# Declaration {:comment_ids => []}.
array_of_permitted_scalars_filter(params, key)
Expand Down
44 changes: 44 additions & 0 deletions test/parameters_permit_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -346,4 +346,48 @@ def assert_filtered_out(params, key)
assert !hash.permitted?
end
end

test 'any param permitted in the root' do
initial_hash = {
:book => {
:title => "Romeo and Juliet",
:authors => [{
:name => "William Shakespeare",
:born => "1564-04-26"
}]
}
}

params = ActionController::Parameters.new(initial_hash)

permitted = params.permit({ :book => ActionController::AnyParam })
assert_equal initial_hash.with_indifferent_access, permitted
end

test 'any param permitted in a nested hash' do
initial_hash = {
:book => {
:title => "Romeo and Juliet",
:authors => [{
:name => "William Shakespeare",
:born => "1564-04-26"
}]
}
}

params = ActionController::Parameters.new(initial_hash)
expected_hash = {
"book" => {
"authors" => [
{
"name" => "William Shakespeare",
"born" => "1564-04-26"
}
]
}
}

permitted = params.permit({ :book => [ authors: ActionController::AnyParam ] })
assert_equal expected_hash, permitted
end
end