Sha256: 676089b9aa6a9e4bf42b15d9a3a9ed3224644e4eccd1adcead15a463e9d0c877

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

module BulletTrain
  module Api
    class StrongParametersReporter
      def initialize(model, strong_params_module)
        @model = model
        @module = strong_params_module
        @filters = []
        extend @module
      end

      def require(namespace)
        @namespace = namespace
        self
      end

      def permit(*filters)
        @filters = filters
      end

      def params
        self
      end

      def permitted_fields
        defined?(super) ? super : []
      end

      def permitted_arrays
        defined?(super) ? super : {}
      end

      def process_params(params)
      end

      # def method_missing(method_name, *args)
      #   if method_name.match?(/^assign_/)
      #     # It's typically the second argument that represents the parameter that would be set.
      #     @filters << args[1]
      #   else
      #     raise NoMethodError, message
      #   end
      # end

      def report(method_type = nil)
        method_type = ["create", "update"].include?(method_type) ? method_type : nil
        base_method_name = @model.name.split("::").last.underscore

        # if available in the controller, it will use the 'update' strong params instead of the default strong params.
        @filters = if method_type == "update" && respond_to?(:"#{base_method_name}_#{method_type}_params", true)
          send(:"#{base_method_name}_#{method_type}_params")
        else
          send(:"#{base_method_name}_params")
        end

        # There's a reason I'm doing it this way.
        @filters
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bullet_train-api-1.15.0 lib/bullet_train/api/strong_parameters_reporter.rb
bullet_train-api-1.14.2 lib/bullet_train/api/strong_parameters_reporter.rb
bullet_train-api-1.14.1 lib/bullet_train/api/strong_parameters_reporter.rb
bullet_train-api-1.14.0 lib/bullet_train/api/strong_parameters_reporter.rb