Class: Hanami::Action::Params

Inherits:
BaseParams show all
Includes:
Validations::Form
Defined in:
lib/hanami/action/params.rb

Overview

A set of params requested by the client

It’s able to extract the relevant params from a Rack env of from an Hash.

There are three scenarios:

* When used with Hanami::Router: it contains only the params from the request
* When used standalone: it contains all the Rack env
* Default: it returns the given hash as it is. It's useful for testing purposes.

Since:

  • 0.1.0

Constant Summary

Constants inherited from BaseParams

BaseParams::RACK_INPUT, BaseParams::RACK_SESSION, BaseParams::ROUTER_PARAMS

Instance Attribute Summary

Attributes inherited from BaseParams

#env

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseParams

#[], #each, #get

Constructor Details

#initialize(env) ⇒ Params

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Initialize the params and freeze them.

Parameters:

  • env (Hash)

    a Rack env or an hash of params.

Since:

  • 0.1.0



69
70
71
72
73
74
75
# File 'lib/hanami/action/params.rb', line 69

def initialize(env)
  @env = env
  super(_extract_params)
  @result = validate
  @params = _params
  freeze
end

Class Method Details

._base_rulesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This is a Hanami::Validations extension point

Since:

  • 0.7.0



23
24
25
26
27
# File 'lib/hanami/action/params.rb', line 23

def self._base_rules
  lambda do
    optional(:_csrf_token).filled(:str?)
  end
end

.params(&blk) ⇒ Object

Define params validations

Examples:

class Signup
  MEGABYTE = 1024 ** 2
  include Hanami::Action

  params do
    required(:first_name).filled(:str?)
    required(:last_name).filled(:str?)
    required(:email).filled?(:str?, format?: /\A.+@.+\z/)
    required(:password).filled(:str?).confirmation
    required(:terms_of_service).filled(:bool?)
    required(:age).filled(:int?, included_in?: 18..99)
    optional(:avatar).filled(size?: 1..(MEGABYTE * 3))
  end

  def call(params)
    halt 400 unless params.valid?
    # ...
  end
end

Parameters:

  • blk (Proc)

    the validations definitions

See Also:

Since:

  • 0.7.0



57
58
59
# File 'lib/hanami/action/params.rb', line 57

def self.params(&blk)
  validations(&blk || ->() {})
end

Instance Method Details

#error_messages(error_set = errors) ⇒ Array

Returns flat collection of full error messages

Examples:

params.error_messages
  # => ["Email is missing", "Email is in invalid format", "Name is missing", "Tos is missing", "Age is missing", "Address is missing"]

Returns:

  • (Array)

Since:

  • 0.7.0



108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/hanami/action/params.rb', line 108

def error_messages(error_set = errors)
  error_set.each_with_object([]) do |(key, messages), result|
    k = Utils::String.new(key).titleize

    _messages = if messages.is_a?(Hash)
      error_messages(messages)
    else
      messages.map { |message| "#{k} #{message}" }
    end

    result.concat(_messages)
  end
end

#errorsHash

Returns structured error messages

Examples:

params.errors
  # => {:email=>["is missing", "is in invalid format"], :name=>["is missing"], :tos=>["is missing"], :age=>["is missing"], :address=>["is missing"]}

Returns:

  • (Hash)

Since:

  • 0.7.0



95
96
97
# File 'lib/hanami/action/params.rb', line 95

def errors
  @result.messages
end

#rawHash

Returns raw params from Rack env

Returns:

  • (Hash)

Since:

  • 0.3.2



82
83
84
# File 'lib/hanami/action/params.rb', line 82

def raw
  @input
end

#to_h::Hash Also known as: to_hash

Serialize params to Hash

Returns:

  • (::Hash)

Since:

  • 0.3.0



140
141
142
# File 'lib/hanami/action/params.rb', line 140

def to_h
  @params
end

#valid?TrueClass, FalseClass

Returns true if no validation errors are found, false otherwise.

Examples:

params.valid? # => true

Returns:

  • (TrueClass, FalseClass)

Since:

  • 0.7.0



131
132
133
# File 'lib/hanami/action/params.rb', line 131

def valid?
  @result.success?
end