aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/support/stubs/strong_parameters.rb
blob: da8f9892f9cdfb4a947abdb06865663d01bacd6a (plain) (tree)
1
2
3
4
5
6
7
8
9

                             




                                                             

                                                    
                      


                





                     

     



                    


                    










                                                             
   
# frozen_string_literal: true

require "active_support/core_ext/hash/indifferent_access"

class ProtectedParams
  delegate :keys, :key?, :has_key?, :empty?, to: :@parameters

  def initialize(parameters = {})
    @parameters = parameters.with_indifferent_access
    @permitted = false
  end

  def permitted?
    @permitted
  end

  def permit!
    @permitted = true
    self
  end

  def [](key)
    @parameters[key]
  end

  def to_h
    @parameters.to_h
  end
  alias to_unsafe_h to_h

  def stringify_keys
    dup
  end

  def dup
    super.tap do |duplicate|
      duplicate.instance_variable_set :@permitted, @permitted
    end
  end
end